kopia lustrzana https://github.com/transitive-bullshit/chatgpt-api
pull/715/head
rodzic
2c82bf28a6
commit
6d6557c720
|
@ -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;
|
||||||
/**
|
/**
|
||||||
|
|
Ładowanie…
Reference in New Issue