kopia lustrzana https://github.com/transitive-bullshit/chatgpt-api
pull/715/head
rodzic
092ce0fc8e
commit
26cfbc5da0
|
@ -310,32 +310,18 @@ export interface paths {
|
||||||
export type webhooks = Record<string, never>;
|
export type webhooks = Record<string, never>;
|
||||||
export interface components {
|
export interface components {
|
||||||
schemas: {
|
schemas: {
|
||||||
AuthProviderType: "github" | "google" | "spotify" | "twitter" | "linkedin" | "stripe";
|
|
||||||
AuthProvider: {
|
|
||||||
provider: components["schemas"]["AuthProviderType"];
|
|
||||||
id: string;
|
|
||||||
username?: string;
|
|
||||||
scope?: string;
|
|
||||||
};
|
|
||||||
AuthProviders: {
|
|
||||||
[key: string]: components["schemas"]["AuthProvider"];
|
|
||||||
};
|
|
||||||
User: {
|
User: {
|
||||||
id: string;
|
id: string;
|
||||||
createdAt: string;
|
createdAt: string | null;
|
||||||
updatedAt: string;
|
updatedAt: string | null;
|
||||||
deletedAt?: string;
|
name: string;
|
||||||
username: string;
|
email: string;
|
||||||
|
emailVerified: boolean;
|
||||||
|
image?: string;
|
||||||
|
username?: string;
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
role: "user" | "admin";
|
role: "user" | "admin";
|
||||||
email?: string;
|
|
||||||
firstName?: string;
|
|
||||||
lastName?: string;
|
|
||||||
image?: string;
|
|
||||||
emailConfirmed: boolean;
|
|
||||||
emailConfirmedAt?: string;
|
|
||||||
isStripeConnectEnabledByDefault: boolean;
|
isStripeConnectEnabledByDefault: boolean;
|
||||||
authProviders: components["schemas"]["AuthProviders"];
|
|
||||||
stripeCustomerId?: string;
|
stripeCustomerId?: string;
|
||||||
};
|
};
|
||||||
Team: {
|
Team: {
|
||||||
|
@ -618,10 +604,8 @@ export interface operations {
|
||||||
requestBody: {
|
requestBody: {
|
||||||
content: {
|
content: {
|
||||||
"application/json": {
|
"application/json": {
|
||||||
firstName?: string;
|
name?: string;
|
||||||
lastName?: string;
|
|
||||||
image?: string;
|
image?: string;
|
||||||
password?: string;
|
|
||||||
isStripeConnectEnabledByDefault?: boolean;
|
isStripeConnectEnabledByDefault?: boolean;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Ładowanie…
Reference in New Issue