pull/715/head
Travis Fischer 2025-05-24 22:05:58 +07:00
rodzic 2c82bf28a6
commit 6d6557c720
1 zmienionych plików z 12 dodań i 8 usunięć

Wyświetl plik

@ -312,15 +312,16 @@ export interface components {
schemas: { schemas: {
User: { User: {
id: string; id: string;
createdAt: string | null; createdAt: string;
updatedAt: string | null; updatedAt: string;
name: string; deletedAt?: string;
username: string;
/** @enum {string} */
role: "user" | "admin";
name?: string;
email: string; email: string;
emailVerified: boolean; emailVerified: boolean;
image?: string; image?: string;
username?: string;
/** @enum {string} */
role: "user" | "admin";
isStripeConnectEnabledByDefault: boolean; isStripeConnectEnabledByDefault: boolean;
stripeCustomerId?: string; stripeCustomerId?: string;
}; };
@ -461,7 +462,7 @@ export interface components {
slug: components["schemas"]["slug"]; slug: components["schemas"]["slug"];
interval?: components["schemas"]["PricingInterval"]; interval?: components["schemas"]["PricingInterval"];
desc?: string; desc?: string;
features: string[]; features?: string[];
trialPeriodDays?: number; trialPeriodDays?: number;
lineItems: components["schemas"]["PricingPlanLineItem"][]; lineItems: components["schemas"]["PricingPlanLineItem"][];
}; };
@ -478,6 +479,7 @@ export interface components {
description: string; description: string;
readme: string; readme: string;
iconUrl?: string; iconUrl?: string;
sourceUrl?: string;
/** @description User id (e.g. "user_tz4a98xxat96iws9zmbrgj3a") */ /** @description User id (e.g. "user_tz4a98xxat96iws9zmbrgj3a") */
userId: string; userId: string;
/** @description Team id (e.g. "team_tz4a98xxat96iws9zmbrgj3a") */ /** @description Team id (e.g. "team_tz4a98xxat96iws9zmbrgj3a") */
@ -1272,9 +1274,11 @@ export interface operations {
readme?: string; readme?: string;
/** /**
* Format: uri * Format: uri
* @description Logo image URL to use for this delpoyment. Logos should have a square aspect ratio. * @description Logo image URL to use for this deployment. Logos should have a square aspect ratio.
*/ */
iconUrl?: string; iconUrl?: string;
/** Format: uri */
sourceUrl?: string;
/** @description Project id (e.g. "proj_tz4a98xxat96iws9zmbrgj3a") */ /** @description Project id (e.g. "proj_tz4a98xxat96iws9zmbrgj3a") */
projectId: string; projectId: string;
/** /**