@supernova-studio/client 1.42.2 → 1.42.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +250 -571
- package/dist/index.d.ts +250 -571
- package/dist/index.js +86 -90
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +86 -90
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -71182,169 +71182,6 @@ declare const DTOFeatureEventReactionsDeleted: z__default.ZodObject<{
|
|
|
71182
71182
|
};
|
|
71183
71183
|
}>;
|
|
71184
71184
|
type DTOFeatureEventReactionsDeleted = z__default.infer<typeof DTOFeatureEventReactionsDeleted>;
|
|
71185
|
-
declare const DTOFeatureEventAgentResponseFinished: z__default.ZodObject<{
|
|
71186
|
-
type: z__default.ZodLiteral<"AgentResponseFinished">;
|
|
71187
|
-
data: z__default.ZodObject<{
|
|
71188
|
-
id: z__default.ZodString;
|
|
71189
|
-
/**
|
|
71190
|
-
* Describes where the message came from
|
|
71191
|
-
*/
|
|
71192
|
-
sender: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
71193
|
-
type: z__default.ZodLiteral<"User">;
|
|
71194
|
-
userId: z__default.ZodString;
|
|
71195
|
-
}, "strip", z__default.ZodTypeAny, {
|
|
71196
|
-
type: "User";
|
|
71197
|
-
userId: string;
|
|
71198
|
-
}, {
|
|
71199
|
-
type: "User";
|
|
71200
|
-
userId: string;
|
|
71201
|
-
}>, z__default.ZodObject<{
|
|
71202
|
-
type: z__default.ZodLiteral<"Agent">;
|
|
71203
|
-
}, "strip", z__default.ZodTypeAny, {
|
|
71204
|
-
type: "Agent";
|
|
71205
|
-
}, {
|
|
71206
|
-
type: "Agent";
|
|
71207
|
-
}>, z__default.ZodObject<{
|
|
71208
|
-
type: z__default.ZodLiteral<"System">;
|
|
71209
|
-
onBehalfOfUserId: z__default.ZodString;
|
|
71210
|
-
}, "strip", z__default.ZodTypeAny, {
|
|
71211
|
-
type: "System";
|
|
71212
|
-
onBehalfOfUserId: string;
|
|
71213
|
-
}, {
|
|
71214
|
-
type: "System";
|
|
71215
|
-
onBehalfOfUserId: string;
|
|
71216
|
-
}>]>;
|
|
71217
|
-
/**
|
|
71218
|
-
* Content of the message
|
|
71219
|
-
*/
|
|
71220
|
-
body: z__default.ZodString;
|
|
71221
|
-
/**
|
|
71222
|
-
* Indicates if the message was sent in the agentic mode, if so this message will cause an
|
|
71223
|
-
* AI agent to generate a response and perform an action within the feature
|
|
71224
|
-
*/
|
|
71225
|
-
isPrompt: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
71226
|
-
/**
|
|
71227
|
-
* Indicates if the sender requested agent to reply in a thread
|
|
71228
|
-
*/
|
|
71229
|
-
startsNewThread: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
71230
|
-
/**
|
|
71231
|
-
* If defined, this message is considered to be a reply in a thread under parent message id
|
|
71232
|
-
*/
|
|
71233
|
-
parentMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
71234
|
-
/**
|
|
71235
|
-
* Link agent response object describing current state of
|
|
71236
|
-
*/
|
|
71237
|
-
agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
71238
|
-
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
71239
|
-
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
71240
|
-
}, "strip", z__default.ZodTypeAny, {
|
|
71241
|
-
iterationId?: string | undefined;
|
|
71242
|
-
}, {
|
|
71243
|
-
iterationId?: string | undefined;
|
|
71244
|
-
}>>;
|
|
71245
|
-
/**
|
|
71246
|
-
* If defined, this message is considered to be a reply to different message
|
|
71247
|
-
*/
|
|
71248
|
-
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
71249
|
-
createdAt: z__default.ZodString;
|
|
71250
|
-
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
71251
|
-
}, "strip", z__default.ZodTypeAny, {
|
|
71252
|
-
id: string;
|
|
71253
|
-
createdAt: string;
|
|
71254
|
-
sender: {
|
|
71255
|
-
type: "User";
|
|
71256
|
-
userId: string;
|
|
71257
|
-
} | {
|
|
71258
|
-
type: "Agent";
|
|
71259
|
-
} | {
|
|
71260
|
-
type: "System";
|
|
71261
|
-
onBehalfOfUserId: string;
|
|
71262
|
-
};
|
|
71263
|
-
body: string;
|
|
71264
|
-
updatedAt?: string | undefined;
|
|
71265
|
-
isPrompt?: boolean | undefined;
|
|
71266
|
-
startsNewThread?: boolean | undefined;
|
|
71267
|
-
parentMessageId?: string | undefined;
|
|
71268
|
-
agentResponseTrackerId?: string | null | undefined;
|
|
71269
|
-
attachments?: {
|
|
71270
|
-
iterationId?: string | undefined;
|
|
71271
|
-
} | undefined;
|
|
71272
|
-
replyToMessageId?: string | undefined;
|
|
71273
|
-
}, {
|
|
71274
|
-
id: string;
|
|
71275
|
-
createdAt: string;
|
|
71276
|
-
sender: {
|
|
71277
|
-
type: "User";
|
|
71278
|
-
userId: string;
|
|
71279
|
-
} | {
|
|
71280
|
-
type: "Agent";
|
|
71281
|
-
} | {
|
|
71282
|
-
type: "System";
|
|
71283
|
-
onBehalfOfUserId: string;
|
|
71284
|
-
};
|
|
71285
|
-
body: string;
|
|
71286
|
-
updatedAt?: string | undefined;
|
|
71287
|
-
isPrompt?: boolean | undefined;
|
|
71288
|
-
startsNewThread?: boolean | undefined;
|
|
71289
|
-
parentMessageId?: string | undefined;
|
|
71290
|
-
agentResponseTrackerId?: string | null | undefined;
|
|
71291
|
-
attachments?: {
|
|
71292
|
-
iterationId?: string | undefined;
|
|
71293
|
-
} | undefined;
|
|
71294
|
-
replyToMessageId?: string | undefined;
|
|
71295
|
-
}>;
|
|
71296
|
-
}, "strip", z__default.ZodTypeAny, {
|
|
71297
|
-
type: "AgentResponseFinished";
|
|
71298
|
-
data: {
|
|
71299
|
-
id: string;
|
|
71300
|
-
createdAt: string;
|
|
71301
|
-
sender: {
|
|
71302
|
-
type: "User";
|
|
71303
|
-
userId: string;
|
|
71304
|
-
} | {
|
|
71305
|
-
type: "Agent";
|
|
71306
|
-
} | {
|
|
71307
|
-
type: "System";
|
|
71308
|
-
onBehalfOfUserId: string;
|
|
71309
|
-
};
|
|
71310
|
-
body: string;
|
|
71311
|
-
updatedAt?: string | undefined;
|
|
71312
|
-
isPrompt?: boolean | undefined;
|
|
71313
|
-
startsNewThread?: boolean | undefined;
|
|
71314
|
-
parentMessageId?: string | undefined;
|
|
71315
|
-
agentResponseTrackerId?: string | null | undefined;
|
|
71316
|
-
attachments?: {
|
|
71317
|
-
iterationId?: string | undefined;
|
|
71318
|
-
} | undefined;
|
|
71319
|
-
replyToMessageId?: string | undefined;
|
|
71320
|
-
};
|
|
71321
|
-
}, {
|
|
71322
|
-
type: "AgentResponseFinished";
|
|
71323
|
-
data: {
|
|
71324
|
-
id: string;
|
|
71325
|
-
createdAt: string;
|
|
71326
|
-
sender: {
|
|
71327
|
-
type: "User";
|
|
71328
|
-
userId: string;
|
|
71329
|
-
} | {
|
|
71330
|
-
type: "Agent";
|
|
71331
|
-
} | {
|
|
71332
|
-
type: "System";
|
|
71333
|
-
onBehalfOfUserId: string;
|
|
71334
|
-
};
|
|
71335
|
-
body: string;
|
|
71336
|
-
updatedAt?: string | undefined;
|
|
71337
|
-
isPrompt?: boolean | undefined;
|
|
71338
|
-
startsNewThread?: boolean | undefined;
|
|
71339
|
-
parentMessageId?: string | undefined;
|
|
71340
|
-
agentResponseTrackerId?: string | null | undefined;
|
|
71341
|
-
attachments?: {
|
|
71342
|
-
iterationId?: string | undefined;
|
|
71343
|
-
} | undefined;
|
|
71344
|
-
replyToMessageId?: string | undefined;
|
|
71345
|
-
};
|
|
71346
|
-
}>;
|
|
71347
|
-
type DTOFeatureEventAgentResponseFinished = z__default.infer<typeof DTOFeatureEventAgentResponseFinished>;
|
|
71348
71185
|
declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
71349
71186
|
type: z__default.ZodLiteral<"MessagesSent">;
|
|
71350
71187
|
data: z__default.ZodArray<z__default.ZodObject<{
|
|
@@ -71574,167 +71411,6 @@ declare const DTOFeatureEvent: z__default.ZodDiscriminatedUnion<"type", [z__defa
|
|
|
71574
71411
|
userId: string;
|
|
71575
71412
|
messageId: string;
|
|
71576
71413
|
};
|
|
71577
|
-
}>, z__default.ZodObject<{
|
|
71578
|
-
type: z__default.ZodLiteral<"AgentResponseFinished">;
|
|
71579
|
-
data: z__default.ZodObject<{
|
|
71580
|
-
id: z__default.ZodString;
|
|
71581
|
-
/**
|
|
71582
|
-
* Describes where the message came from
|
|
71583
|
-
*/
|
|
71584
|
-
sender: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
71585
|
-
type: z__default.ZodLiteral<"User">;
|
|
71586
|
-
userId: z__default.ZodString;
|
|
71587
|
-
}, "strip", z__default.ZodTypeAny, {
|
|
71588
|
-
type: "User";
|
|
71589
|
-
userId: string;
|
|
71590
|
-
}, {
|
|
71591
|
-
type: "User";
|
|
71592
|
-
userId: string;
|
|
71593
|
-
}>, z__default.ZodObject<{
|
|
71594
|
-
type: z__default.ZodLiteral<"Agent">;
|
|
71595
|
-
}, "strip", z__default.ZodTypeAny, {
|
|
71596
|
-
type: "Agent";
|
|
71597
|
-
}, {
|
|
71598
|
-
type: "Agent";
|
|
71599
|
-
}>, z__default.ZodObject<{
|
|
71600
|
-
type: z__default.ZodLiteral<"System">;
|
|
71601
|
-
onBehalfOfUserId: z__default.ZodString;
|
|
71602
|
-
}, "strip", z__default.ZodTypeAny, {
|
|
71603
|
-
type: "System";
|
|
71604
|
-
onBehalfOfUserId: string;
|
|
71605
|
-
}, {
|
|
71606
|
-
type: "System";
|
|
71607
|
-
onBehalfOfUserId: string;
|
|
71608
|
-
}>]>;
|
|
71609
|
-
/**
|
|
71610
|
-
* Content of the message
|
|
71611
|
-
*/
|
|
71612
|
-
body: z__default.ZodString;
|
|
71613
|
-
/**
|
|
71614
|
-
* Indicates if the message was sent in the agentic mode, if so this message will cause an
|
|
71615
|
-
* AI agent to generate a response and perform an action within the feature
|
|
71616
|
-
*/
|
|
71617
|
-
isPrompt: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
71618
|
-
/**
|
|
71619
|
-
* Indicates if the sender requested agent to reply in a thread
|
|
71620
|
-
*/
|
|
71621
|
-
startsNewThread: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
71622
|
-
/**
|
|
71623
|
-
* If defined, this message is considered to be a reply in a thread under parent message id
|
|
71624
|
-
*/
|
|
71625
|
-
parentMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
71626
|
-
/**
|
|
71627
|
-
* Link agent response object describing current state of
|
|
71628
|
-
*/
|
|
71629
|
-
agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
71630
|
-
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
71631
|
-
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
71632
|
-
}, "strip", z__default.ZodTypeAny, {
|
|
71633
|
-
iterationId?: string | undefined;
|
|
71634
|
-
}, {
|
|
71635
|
-
iterationId?: string | undefined;
|
|
71636
|
-
}>>;
|
|
71637
|
-
/**
|
|
71638
|
-
* If defined, this message is considered to be a reply to different message
|
|
71639
|
-
*/
|
|
71640
|
-
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
71641
|
-
createdAt: z__default.ZodString;
|
|
71642
|
-
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
71643
|
-
}, "strip", z__default.ZodTypeAny, {
|
|
71644
|
-
id: string;
|
|
71645
|
-
createdAt: string;
|
|
71646
|
-
sender: {
|
|
71647
|
-
type: "User";
|
|
71648
|
-
userId: string;
|
|
71649
|
-
} | {
|
|
71650
|
-
type: "Agent";
|
|
71651
|
-
} | {
|
|
71652
|
-
type: "System";
|
|
71653
|
-
onBehalfOfUserId: string;
|
|
71654
|
-
};
|
|
71655
|
-
body: string;
|
|
71656
|
-
updatedAt?: string | undefined;
|
|
71657
|
-
isPrompt?: boolean | undefined;
|
|
71658
|
-
startsNewThread?: boolean | undefined;
|
|
71659
|
-
parentMessageId?: string | undefined;
|
|
71660
|
-
agentResponseTrackerId?: string | null | undefined;
|
|
71661
|
-
attachments?: {
|
|
71662
|
-
iterationId?: string | undefined;
|
|
71663
|
-
} | undefined;
|
|
71664
|
-
replyToMessageId?: string | undefined;
|
|
71665
|
-
}, {
|
|
71666
|
-
id: string;
|
|
71667
|
-
createdAt: string;
|
|
71668
|
-
sender: {
|
|
71669
|
-
type: "User";
|
|
71670
|
-
userId: string;
|
|
71671
|
-
} | {
|
|
71672
|
-
type: "Agent";
|
|
71673
|
-
} | {
|
|
71674
|
-
type: "System";
|
|
71675
|
-
onBehalfOfUserId: string;
|
|
71676
|
-
};
|
|
71677
|
-
body: string;
|
|
71678
|
-
updatedAt?: string | undefined;
|
|
71679
|
-
isPrompt?: boolean | undefined;
|
|
71680
|
-
startsNewThread?: boolean | undefined;
|
|
71681
|
-
parentMessageId?: string | undefined;
|
|
71682
|
-
agentResponseTrackerId?: string | null | undefined;
|
|
71683
|
-
attachments?: {
|
|
71684
|
-
iterationId?: string | undefined;
|
|
71685
|
-
} | undefined;
|
|
71686
|
-
replyToMessageId?: string | undefined;
|
|
71687
|
-
}>;
|
|
71688
|
-
}, "strip", z__default.ZodTypeAny, {
|
|
71689
|
-
type: "AgentResponseFinished";
|
|
71690
|
-
data: {
|
|
71691
|
-
id: string;
|
|
71692
|
-
createdAt: string;
|
|
71693
|
-
sender: {
|
|
71694
|
-
type: "User";
|
|
71695
|
-
userId: string;
|
|
71696
|
-
} | {
|
|
71697
|
-
type: "Agent";
|
|
71698
|
-
} | {
|
|
71699
|
-
type: "System";
|
|
71700
|
-
onBehalfOfUserId: string;
|
|
71701
|
-
};
|
|
71702
|
-
body: string;
|
|
71703
|
-
updatedAt?: string | undefined;
|
|
71704
|
-
isPrompt?: boolean | undefined;
|
|
71705
|
-
startsNewThread?: boolean | undefined;
|
|
71706
|
-
parentMessageId?: string | undefined;
|
|
71707
|
-
agentResponseTrackerId?: string | null | undefined;
|
|
71708
|
-
attachments?: {
|
|
71709
|
-
iterationId?: string | undefined;
|
|
71710
|
-
} | undefined;
|
|
71711
|
-
replyToMessageId?: string | undefined;
|
|
71712
|
-
};
|
|
71713
|
-
}, {
|
|
71714
|
-
type: "AgentResponseFinished";
|
|
71715
|
-
data: {
|
|
71716
|
-
id: string;
|
|
71717
|
-
createdAt: string;
|
|
71718
|
-
sender: {
|
|
71719
|
-
type: "User";
|
|
71720
|
-
userId: string;
|
|
71721
|
-
} | {
|
|
71722
|
-
type: "Agent";
|
|
71723
|
-
} | {
|
|
71724
|
-
type: "System";
|
|
71725
|
-
onBehalfOfUserId: string;
|
|
71726
|
-
};
|
|
71727
|
-
body: string;
|
|
71728
|
-
updatedAt?: string | undefined;
|
|
71729
|
-
isPrompt?: boolean | undefined;
|
|
71730
|
-
startsNewThread?: boolean | undefined;
|
|
71731
|
-
parentMessageId?: string | undefined;
|
|
71732
|
-
agentResponseTrackerId?: string | null | undefined;
|
|
71733
|
-
attachments?: {
|
|
71734
|
-
iterationId?: string | undefined;
|
|
71735
|
-
} | undefined;
|
|
71736
|
-
replyToMessageId?: string | undefined;
|
|
71737
|
-
};
|
|
71738
71414
|
}>]>;
|
|
71739
71415
|
type DTOFeatureEvent = z__default.infer<typeof DTOFeatureEvent>;
|
|
71740
71416
|
|
|
@@ -235548,10 +235224,13 @@ declare const DTOThreadMessageAttachmentsCreateInput: z__default.ZodObject<{
|
|
|
235548
235224
|
type DTOThreadMessageAttachmentsCreateInput = z__default.infer<typeof DTOThreadMessageAttachmentsCreateInput>;
|
|
235549
235225
|
declare const DTOThreadMessageFinalizeInput: z__default.ZodObject<{
|
|
235550
235226
|
messageId: z__default.ZodString;
|
|
235227
|
+
agentMessageBody: z__default.ZodOptional<z__default.ZodString>;
|
|
235551
235228
|
}, "strip", z__default.ZodTypeAny, {
|
|
235552
235229
|
messageId: string;
|
|
235230
|
+
agentMessageBody?: string | undefined;
|
|
235553
235231
|
}, {
|
|
235554
235232
|
messageId: string;
|
|
235233
|
+
agentMessageBody?: string | undefined;
|
|
235555
235234
|
}>;
|
|
235556
235235
|
type DTOThreadMessageFinalizeInput = z__default.infer<typeof DTOThreadMessageFinalizeInput>;
|
|
235557
235236
|
declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
|
|
@@ -259366,51 +259045,6 @@ declare class DesignSystemsEndpoint {
|
|
|
259366
259045
|
}>;
|
|
259367
259046
|
}
|
|
259368
259047
|
|
|
259369
|
-
declare class FilesEndpoint {
|
|
259370
|
-
private readonly requestExecutor;
|
|
259371
|
-
constructor(requestExecutor: RequestExecutor);
|
|
259372
|
-
upload(body: DTOFileUploadBulkPayload): Promise<{
|
|
259373
|
-
files: {
|
|
259374
|
-
id: string;
|
|
259375
|
-
name: string;
|
|
259376
|
-
url: string;
|
|
259377
|
-
size: number;
|
|
259378
|
-
deduplicationKey: string;
|
|
259379
|
-
storagePath: string;
|
|
259380
|
-
source?: {
|
|
259381
|
-
type: "UserUpload";
|
|
259382
|
-
userId: string;
|
|
259383
|
-
} | {
|
|
259384
|
-
type: "Figma";
|
|
259385
|
-
renderMode: "Image" | "HTML";
|
|
259386
|
-
} | undefined;
|
|
259387
|
-
pendingUpload?: boolean | undefined;
|
|
259388
|
-
}[];
|
|
259389
|
-
uploadUrls: {
|
|
259390
|
-
fileId: string;
|
|
259391
|
-
uploadUrl: string;
|
|
259392
|
-
}[];
|
|
259393
|
-
}>;
|
|
259394
|
-
finalizeUpload(body: DTOFileFinalizeBulkPayload): Promise<{
|
|
259395
|
-
files: {
|
|
259396
|
-
id: string;
|
|
259397
|
-
name: string;
|
|
259398
|
-
url: string;
|
|
259399
|
-
size: number;
|
|
259400
|
-
deduplicationKey: string;
|
|
259401
|
-
storagePath: string;
|
|
259402
|
-
source?: {
|
|
259403
|
-
type: "UserUpload";
|
|
259404
|
-
userId: string;
|
|
259405
|
-
} | {
|
|
259406
|
-
type: "Figma";
|
|
259407
|
-
renderMode: "Image" | "HTML";
|
|
259408
|
-
} | undefined;
|
|
259409
|
-
pendingUpload?: boolean | undefined;
|
|
259410
|
-
}[];
|
|
259411
|
-
}>;
|
|
259412
|
-
}
|
|
259413
|
-
|
|
259414
259048
|
declare class ForgeAgentsEndpoint {
|
|
259415
259049
|
private readonly requestExecutor;
|
|
259416
259050
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -264493,207 +264127,6 @@ declare class ForgeProjectIterationsEndpoint {
|
|
|
264493
264127
|
}>;
|
|
264494
264128
|
}
|
|
264495
264129
|
|
|
264496
|
-
declare class LiveblocksEndpoint {
|
|
264497
|
-
private readonly requestExecutor;
|
|
264498
|
-
constructor(requestExecutor: RequestExecutor);
|
|
264499
|
-
auth(body: DTOLiveblocksAuthRequest): Promise<{
|
|
264500
|
-
token: string;
|
|
264501
|
-
}>;
|
|
264502
|
-
}
|
|
264503
|
-
|
|
264504
|
-
declare class UsersEndpoint {
|
|
264505
|
-
private readonly requestExecutor;
|
|
264506
|
-
constructor(requestExecutor: RequestExecutor);
|
|
264507
|
-
getMe(): Promise<{
|
|
264508
|
-
user: {
|
|
264509
|
-
id: string;
|
|
264510
|
-
createdAt: Date;
|
|
264511
|
-
email: string;
|
|
264512
|
-
profile: {
|
|
264513
|
-
name: string;
|
|
264514
|
-
nickname?: string | undefined;
|
|
264515
|
-
avatar?: string | undefined;
|
|
264516
|
-
onboarding?: {
|
|
264517
|
-
companyName?: string | undefined;
|
|
264518
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
264519
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
264520
|
-
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
264521
|
-
jobTitle?: string | undefined;
|
|
264522
|
-
phase?: string | undefined;
|
|
264523
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
264524
|
-
designSystemName?: string | undefined;
|
|
264525
|
-
defaultDestination?: string | undefined;
|
|
264526
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
264527
|
-
} | undefined;
|
|
264528
|
-
theme?: {
|
|
264529
|
-
backgroundColor?: string | undefined;
|
|
264530
|
-
accentColor?: string | undefined;
|
|
264531
|
-
contrast?: number | undefined;
|
|
264532
|
-
isSecondaryEnabled?: boolean | undefined;
|
|
264533
|
-
secondaryBackgroundColor?: string | undefined;
|
|
264534
|
-
secondaryContrast?: number | undefined;
|
|
264535
|
-
isEditorWhite?: boolean | undefined;
|
|
264536
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
264537
|
-
} | undefined;
|
|
264538
|
-
};
|
|
264539
|
-
loggedOutAt?: Date | undefined;
|
|
264540
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
264541
|
-
};
|
|
264542
|
-
}>;
|
|
264543
|
-
listWorkspaces(uid: string): Promise<{
|
|
264544
|
-
membership: {
|
|
264545
|
-
workspace: {
|
|
264546
|
-
id: string;
|
|
264547
|
-
profile: {
|
|
264548
|
-
name: string;
|
|
264549
|
-
color: string;
|
|
264550
|
-
handle: string;
|
|
264551
|
-
avatar?: string | undefined;
|
|
264552
|
-
billingDetails?: {
|
|
264553
|
-
address?: {
|
|
264554
|
-
state?: string | undefined;
|
|
264555
|
-
street1?: string | undefined;
|
|
264556
|
-
street2?: string | undefined;
|
|
264557
|
-
city?: string | undefined;
|
|
264558
|
-
postal?: string | undefined;
|
|
264559
|
-
country?: string | undefined;
|
|
264560
|
-
} | undefined;
|
|
264561
|
-
email?: string | undefined;
|
|
264562
|
-
notes?: string | undefined;
|
|
264563
|
-
companyName?: string | undefined;
|
|
264564
|
-
companyId?: string | undefined;
|
|
264565
|
-
vat?: string | undefined;
|
|
264566
|
-
poNumber?: string | undefined;
|
|
264567
|
-
} | undefined;
|
|
264568
|
-
};
|
|
264569
|
-
subscription: {
|
|
264570
|
-
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
264571
|
-
seats: number;
|
|
264572
|
-
seatLimit: number;
|
|
264573
|
-
planPriceId: string;
|
|
264574
|
-
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
264575
|
-
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
264576
|
-
card?: {
|
|
264577
|
-
name?: string | null | undefined;
|
|
264578
|
-
cardId?: string | null | undefined;
|
|
264579
|
-
last4?: string | null | undefined;
|
|
264580
|
-
expiryMonth?: string | null | undefined;
|
|
264581
|
-
expiryYear?: string | null | undefined;
|
|
264582
|
-
brand?: string | null | undefined;
|
|
264583
|
-
} | undefined;
|
|
264584
|
-
monthlyCreditGrantAnchor?: string | undefined;
|
|
264585
|
-
monthlyCreditGrantAmount?: number | undefined;
|
|
264586
|
-
builderSeatLimit?: number | undefined;
|
|
264587
|
-
fullSeatLimit?: number | undefined;
|
|
264588
|
-
builderSeats?: number | undefined;
|
|
264589
|
-
fullSeats?: number | undefined;
|
|
264590
|
-
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
264591
|
-
internalStatus?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
264592
|
-
stripeSubscriptionId?: string | undefined;
|
|
264593
|
-
stripeCustomerId?: string | undefined;
|
|
264594
|
-
currentPeriodStart?: string | undefined;
|
|
264595
|
-
currentPeriodEnd?: string | undefined;
|
|
264596
|
-
cancelAt?: string | undefined;
|
|
264597
|
-
fullSeatPriceId?: string | undefined;
|
|
264598
|
-
builderSeatPriceId?: string | undefined;
|
|
264599
|
-
subscriptionStatusUpdatedAt?: string | undefined;
|
|
264600
|
-
};
|
|
264601
|
-
aiFeaturesEnabled: boolean;
|
|
264602
|
-
aiAskFeaturesEnabled: boolean;
|
|
264603
|
-
npmRegistry?: {
|
|
264604
|
-
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
264605
|
-
registryUrl: string;
|
|
264606
|
-
proxyUrl: string;
|
|
264607
|
-
authType: "Custom" | "None" | "Basic" | "Bearer";
|
|
264608
|
-
enabledScopes: string[];
|
|
264609
|
-
bypassProxy: boolean;
|
|
264610
|
-
accessToken?: string | undefined;
|
|
264611
|
-
username?: string | undefined;
|
|
264612
|
-
customRegistryUrl?: string | undefined;
|
|
264613
|
-
password?: string | undefined;
|
|
264614
|
-
} | undefined;
|
|
264615
|
-
aiCustomInstruction?: string | undefined;
|
|
264616
|
-
};
|
|
264617
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
264618
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
264619
|
-
seatType: "Full" | "Builder" | "None";
|
|
264620
|
-
effectiveSeatType: "Full" | "Builder" | "None";
|
|
264621
|
-
}[];
|
|
264622
|
-
}>;
|
|
264623
|
-
delete(uid: string): Promise<{
|
|
264624
|
-
user: {
|
|
264625
|
-
id: string;
|
|
264626
|
-
createdAt: Date;
|
|
264627
|
-
email: string;
|
|
264628
|
-
profile: {
|
|
264629
|
-
name: string;
|
|
264630
|
-
nickname?: string | undefined;
|
|
264631
|
-
avatar?: string | undefined;
|
|
264632
|
-
onboarding?: {
|
|
264633
|
-
companyName?: string | undefined;
|
|
264634
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
264635
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
264636
|
-
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
264637
|
-
jobTitle?: string | undefined;
|
|
264638
|
-
phase?: string | undefined;
|
|
264639
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
264640
|
-
designSystemName?: string | undefined;
|
|
264641
|
-
defaultDestination?: string | undefined;
|
|
264642
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
264643
|
-
} | undefined;
|
|
264644
|
-
theme?: {
|
|
264645
|
-
backgroundColor?: string | undefined;
|
|
264646
|
-
accentColor?: string | undefined;
|
|
264647
|
-
contrast?: number | undefined;
|
|
264648
|
-
isSecondaryEnabled?: boolean | undefined;
|
|
264649
|
-
secondaryBackgroundColor?: string | undefined;
|
|
264650
|
-
secondaryContrast?: number | undefined;
|
|
264651
|
-
isEditorWhite?: boolean | undefined;
|
|
264652
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
264653
|
-
} | undefined;
|
|
264654
|
-
};
|
|
264655
|
-
loggedOutAt?: Date | undefined;
|
|
264656
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
264657
|
-
};
|
|
264658
|
-
}>;
|
|
264659
|
-
updateProfile(uid: string, body: DTOUserProfileUpdate): Promise<{
|
|
264660
|
-
user: {
|
|
264661
|
-
id: string;
|
|
264662
|
-
createdAt: Date;
|
|
264663
|
-
email: string;
|
|
264664
|
-
profile: {
|
|
264665
|
-
name: string;
|
|
264666
|
-
nickname?: string | undefined;
|
|
264667
|
-
avatar?: string | undefined;
|
|
264668
|
-
onboarding?: {
|
|
264669
|
-
companyName?: string | undefined;
|
|
264670
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
264671
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
264672
|
-
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
264673
|
-
jobTitle?: string | undefined;
|
|
264674
|
-
phase?: string | undefined;
|
|
264675
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
264676
|
-
designSystemName?: string | undefined;
|
|
264677
|
-
defaultDestination?: string | undefined;
|
|
264678
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
264679
|
-
} | undefined;
|
|
264680
|
-
theme?: {
|
|
264681
|
-
backgroundColor?: string | undefined;
|
|
264682
|
-
accentColor?: string | undefined;
|
|
264683
|
-
contrast?: number | undefined;
|
|
264684
|
-
isSecondaryEnabled?: boolean | undefined;
|
|
264685
|
-
secondaryBackgroundColor?: string | undefined;
|
|
264686
|
-
secondaryContrast?: number | undefined;
|
|
264687
|
-
isEditorWhite?: boolean | undefined;
|
|
264688
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
264689
|
-
} | undefined;
|
|
264690
|
-
};
|
|
264691
|
-
loggedOutAt?: Date | undefined;
|
|
264692
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
264693
|
-
};
|
|
264694
|
-
}>;
|
|
264695
|
-
}
|
|
264696
|
-
|
|
264697
264130
|
declare class WorkspaceChatThreadsEndpoint {
|
|
264698
264131
|
private readonly requestExecutor;
|
|
264699
264132
|
readonly messages: ChatThreadMessagesEndpoint;
|
|
@@ -265555,6 +264988,59 @@ declare class WorkspacesEndpoint {
|
|
|
265555
264988
|
}>;
|
|
265556
264989
|
}
|
|
265557
264990
|
|
|
264991
|
+
declare class FilesEndpoint {
|
|
264992
|
+
private readonly requestExecutor;
|
|
264993
|
+
constructor(requestExecutor: RequestExecutor);
|
|
264994
|
+
upload(body: DTOFileUploadBulkPayload): Promise<{
|
|
264995
|
+
files: {
|
|
264996
|
+
id: string;
|
|
264997
|
+
name: string;
|
|
264998
|
+
url: string;
|
|
264999
|
+
size: number;
|
|
265000
|
+
deduplicationKey: string;
|
|
265001
|
+
storagePath: string;
|
|
265002
|
+
source?: {
|
|
265003
|
+
type: "UserUpload";
|
|
265004
|
+
userId: string;
|
|
265005
|
+
} | {
|
|
265006
|
+
type: "Figma";
|
|
265007
|
+
renderMode: "Image" | "HTML";
|
|
265008
|
+
} | undefined;
|
|
265009
|
+
pendingUpload?: boolean | undefined;
|
|
265010
|
+
}[];
|
|
265011
|
+
uploadUrls: {
|
|
265012
|
+
fileId: string;
|
|
265013
|
+
uploadUrl: string;
|
|
265014
|
+
}[];
|
|
265015
|
+
}>;
|
|
265016
|
+
finalizeUpload(body: DTOFileFinalizeBulkPayload): Promise<{
|
|
265017
|
+
files: {
|
|
265018
|
+
id: string;
|
|
265019
|
+
name: string;
|
|
265020
|
+
url: string;
|
|
265021
|
+
size: number;
|
|
265022
|
+
deduplicationKey: string;
|
|
265023
|
+
storagePath: string;
|
|
265024
|
+
source?: {
|
|
265025
|
+
type: "UserUpload";
|
|
265026
|
+
userId: string;
|
|
265027
|
+
} | {
|
|
265028
|
+
type: "Figma";
|
|
265029
|
+
renderMode: "Image" | "HTML";
|
|
265030
|
+
} | undefined;
|
|
265031
|
+
pendingUpload?: boolean | undefined;
|
|
265032
|
+
}[];
|
|
265033
|
+
}>;
|
|
265034
|
+
}
|
|
265035
|
+
|
|
265036
|
+
declare class LiveblocksEndpoint {
|
|
265037
|
+
private readonly requestExecutor;
|
|
265038
|
+
constructor(requestExecutor: RequestExecutor);
|
|
265039
|
+
auth(body: DTOLiveblocksAuthRequest): Promise<{
|
|
265040
|
+
token: string;
|
|
265041
|
+
}>;
|
|
265042
|
+
}
|
|
265043
|
+
|
|
265558
265044
|
declare class ThreadsEndpoint {
|
|
265559
265045
|
private readonly requestExecutor;
|
|
265560
265046
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -265661,6 +265147,199 @@ declare class ThreadsEndpoint {
|
|
|
265661
265147
|
}>;
|
|
265662
265148
|
}
|
|
265663
265149
|
|
|
265150
|
+
declare class UsersEndpoint {
|
|
265151
|
+
private readonly requestExecutor;
|
|
265152
|
+
constructor(requestExecutor: RequestExecutor);
|
|
265153
|
+
getMe(): Promise<{
|
|
265154
|
+
user: {
|
|
265155
|
+
id: string;
|
|
265156
|
+
createdAt: Date;
|
|
265157
|
+
email: string;
|
|
265158
|
+
profile: {
|
|
265159
|
+
name: string;
|
|
265160
|
+
nickname?: string | undefined;
|
|
265161
|
+
avatar?: string | undefined;
|
|
265162
|
+
onboarding?: {
|
|
265163
|
+
companyName?: string | undefined;
|
|
265164
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
265165
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
265166
|
+
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
265167
|
+
jobTitle?: string | undefined;
|
|
265168
|
+
phase?: string | undefined;
|
|
265169
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
265170
|
+
designSystemName?: string | undefined;
|
|
265171
|
+
defaultDestination?: string | undefined;
|
|
265172
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
265173
|
+
} | undefined;
|
|
265174
|
+
theme?: {
|
|
265175
|
+
backgroundColor?: string | undefined;
|
|
265176
|
+
accentColor?: string | undefined;
|
|
265177
|
+
contrast?: number | undefined;
|
|
265178
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
265179
|
+
secondaryBackgroundColor?: string | undefined;
|
|
265180
|
+
secondaryContrast?: number | undefined;
|
|
265181
|
+
isEditorWhite?: boolean | undefined;
|
|
265182
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
265183
|
+
} | undefined;
|
|
265184
|
+
};
|
|
265185
|
+
loggedOutAt?: Date | undefined;
|
|
265186
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
265187
|
+
};
|
|
265188
|
+
}>;
|
|
265189
|
+
listWorkspaces(uid: string): Promise<{
|
|
265190
|
+
membership: {
|
|
265191
|
+
workspace: {
|
|
265192
|
+
id: string;
|
|
265193
|
+
profile: {
|
|
265194
|
+
name: string;
|
|
265195
|
+
color: string;
|
|
265196
|
+
handle: string;
|
|
265197
|
+
avatar?: string | undefined;
|
|
265198
|
+
billingDetails?: {
|
|
265199
|
+
address?: {
|
|
265200
|
+
state?: string | undefined;
|
|
265201
|
+
street1?: string | undefined;
|
|
265202
|
+
street2?: string | undefined;
|
|
265203
|
+
city?: string | undefined;
|
|
265204
|
+
postal?: string | undefined;
|
|
265205
|
+
country?: string | undefined;
|
|
265206
|
+
} | undefined;
|
|
265207
|
+
email?: string | undefined;
|
|
265208
|
+
notes?: string | undefined;
|
|
265209
|
+
companyName?: string | undefined;
|
|
265210
|
+
companyId?: string | undefined;
|
|
265211
|
+
vat?: string | undefined;
|
|
265212
|
+
poNumber?: string | undefined;
|
|
265213
|
+
} | undefined;
|
|
265214
|
+
};
|
|
265215
|
+
subscription: {
|
|
265216
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
265217
|
+
seats: number;
|
|
265218
|
+
seatLimit: number;
|
|
265219
|
+
planPriceId: string;
|
|
265220
|
+
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
265221
|
+
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
265222
|
+
card?: {
|
|
265223
|
+
name?: string | null | undefined;
|
|
265224
|
+
cardId?: string | null | undefined;
|
|
265225
|
+
last4?: string | null | undefined;
|
|
265226
|
+
expiryMonth?: string | null | undefined;
|
|
265227
|
+
expiryYear?: string | null | undefined;
|
|
265228
|
+
brand?: string | null | undefined;
|
|
265229
|
+
} | undefined;
|
|
265230
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
265231
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
265232
|
+
builderSeatLimit?: number | undefined;
|
|
265233
|
+
fullSeatLimit?: number | undefined;
|
|
265234
|
+
builderSeats?: number | undefined;
|
|
265235
|
+
fullSeats?: number | undefined;
|
|
265236
|
+
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
265237
|
+
internalStatus?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
265238
|
+
stripeSubscriptionId?: string | undefined;
|
|
265239
|
+
stripeCustomerId?: string | undefined;
|
|
265240
|
+
currentPeriodStart?: string | undefined;
|
|
265241
|
+
currentPeriodEnd?: string | undefined;
|
|
265242
|
+
cancelAt?: string | undefined;
|
|
265243
|
+
fullSeatPriceId?: string | undefined;
|
|
265244
|
+
builderSeatPriceId?: string | undefined;
|
|
265245
|
+
subscriptionStatusUpdatedAt?: string | undefined;
|
|
265246
|
+
};
|
|
265247
|
+
aiFeaturesEnabled: boolean;
|
|
265248
|
+
aiAskFeaturesEnabled: boolean;
|
|
265249
|
+
npmRegistry?: {
|
|
265250
|
+
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
265251
|
+
registryUrl: string;
|
|
265252
|
+
proxyUrl: string;
|
|
265253
|
+
authType: "Custom" | "None" | "Basic" | "Bearer";
|
|
265254
|
+
enabledScopes: string[];
|
|
265255
|
+
bypassProxy: boolean;
|
|
265256
|
+
accessToken?: string | undefined;
|
|
265257
|
+
username?: string | undefined;
|
|
265258
|
+
customRegistryUrl?: string | undefined;
|
|
265259
|
+
password?: string | undefined;
|
|
265260
|
+
} | undefined;
|
|
265261
|
+
aiCustomInstruction?: string | undefined;
|
|
265262
|
+
};
|
|
265263
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
265264
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
265265
|
+
seatType: "Full" | "Builder" | "None";
|
|
265266
|
+
effectiveSeatType: "Full" | "Builder" | "None";
|
|
265267
|
+
}[];
|
|
265268
|
+
}>;
|
|
265269
|
+
delete(uid: string): Promise<{
|
|
265270
|
+
user: {
|
|
265271
|
+
id: string;
|
|
265272
|
+
createdAt: Date;
|
|
265273
|
+
email: string;
|
|
265274
|
+
profile: {
|
|
265275
|
+
name: string;
|
|
265276
|
+
nickname?: string | undefined;
|
|
265277
|
+
avatar?: string | undefined;
|
|
265278
|
+
onboarding?: {
|
|
265279
|
+
companyName?: string | undefined;
|
|
265280
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
265281
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
265282
|
+
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
265283
|
+
jobTitle?: string | undefined;
|
|
265284
|
+
phase?: string | undefined;
|
|
265285
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
265286
|
+
designSystemName?: string | undefined;
|
|
265287
|
+
defaultDestination?: string | undefined;
|
|
265288
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
265289
|
+
} | undefined;
|
|
265290
|
+
theme?: {
|
|
265291
|
+
backgroundColor?: string | undefined;
|
|
265292
|
+
accentColor?: string | undefined;
|
|
265293
|
+
contrast?: number | undefined;
|
|
265294
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
265295
|
+
secondaryBackgroundColor?: string | undefined;
|
|
265296
|
+
secondaryContrast?: number | undefined;
|
|
265297
|
+
isEditorWhite?: boolean | undefined;
|
|
265298
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
265299
|
+
} | undefined;
|
|
265300
|
+
};
|
|
265301
|
+
loggedOutAt?: Date | undefined;
|
|
265302
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
265303
|
+
};
|
|
265304
|
+
}>;
|
|
265305
|
+
updateProfile(uid: string, body: DTOUserProfileUpdate): Promise<{
|
|
265306
|
+
user: {
|
|
265307
|
+
id: string;
|
|
265308
|
+
createdAt: Date;
|
|
265309
|
+
email: string;
|
|
265310
|
+
profile: {
|
|
265311
|
+
name: string;
|
|
265312
|
+
nickname?: string | undefined;
|
|
265313
|
+
avatar?: string | undefined;
|
|
265314
|
+
onboarding?: {
|
|
265315
|
+
companyName?: string | undefined;
|
|
265316
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
265317
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
265318
|
+
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
265319
|
+
jobTitle?: string | undefined;
|
|
265320
|
+
phase?: string | undefined;
|
|
265321
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
265322
|
+
designSystemName?: string | undefined;
|
|
265323
|
+
defaultDestination?: string | undefined;
|
|
265324
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
265325
|
+
} | undefined;
|
|
265326
|
+
theme?: {
|
|
265327
|
+
backgroundColor?: string | undefined;
|
|
265328
|
+
accentColor?: string | undefined;
|
|
265329
|
+
contrast?: number | undefined;
|
|
265330
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
265331
|
+
secondaryBackgroundColor?: string | undefined;
|
|
265332
|
+
secondaryContrast?: number | undefined;
|
|
265333
|
+
isEditorWhite?: boolean | undefined;
|
|
265334
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
265335
|
+
} | undefined;
|
|
265336
|
+
};
|
|
265337
|
+
loggedOutAt?: Date | undefined;
|
|
265338
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
265339
|
+
};
|
|
265340
|
+
}>;
|
|
265341
|
+
}
|
|
265342
|
+
|
|
265664
265343
|
type SupernovaApiClientConfig = {
|
|
265665
265344
|
host: string;
|
|
265666
265345
|
accessToken: string;
|
|
@@ -268417,4 +268096,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
268417
268096
|
reason: ValidationErrorReason | undefined;
|
|
268418
268097
|
};
|
|
268419
268098
|
|
|
268420
|
-
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemePreset, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
|
|
268099
|
+
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemePreset, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy };
|