@supernova-studio/client 1.42.2 → 1.42.4
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 +708 -576
- package/dist/index.d.ts +708 -576
- package/dist/index.js +90 -91
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +90 -91
- 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
|
|
|
@@ -81648,6 +81324,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81648
81324
|
afterFeatureId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
|
|
81649
81325
|
initialMessage: z__default.ZodObject<Pick<{
|
|
81650
81326
|
id: z__default.ZodString;
|
|
81327
|
+
threadId: z__default.ZodString;
|
|
81651
81328
|
sender: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
81652
81329
|
type: z__default.ZodLiteral<"User">;
|
|
81653
81330
|
userId: z__default.ZodString;
|
|
@@ -81659,10 +81336,13 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81659
81336
|
userId: string;
|
|
81660
81337
|
}>, z__default.ZodObject<{
|
|
81661
81338
|
type: z__default.ZodLiteral<"Agent">;
|
|
81339
|
+
agentType: z__default.ZodEnum<["Ask", "Document", "Prototype", "ReleaseNotes"]>;
|
|
81662
81340
|
}, "strip", z__default.ZodTypeAny, {
|
|
81663
81341
|
type: "Agent";
|
|
81342
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
81664
81343
|
}, {
|
|
81665
81344
|
type: "Agent";
|
|
81345
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
81666
81346
|
}>, z__default.ZodObject<{
|
|
81667
81347
|
type: z__default.ZodLiteral<"System">;
|
|
81668
81348
|
onBehalfOfUserId: z__default.ZodString;
|
|
@@ -81680,21 +81360,103 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81680
81360
|
agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
81681
81361
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
81682
81362
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
81363
|
+
files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
|
|
81364
|
+
id: z__default.ZodString;
|
|
81365
|
+
name: z__default.ZodString;
|
|
81366
|
+
deduplicationKey: z__default.ZodString;
|
|
81367
|
+
pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
81368
|
+
storagePath: z__default.ZodString;
|
|
81369
|
+
url: z__default.ZodString;
|
|
81370
|
+
size: z__default.ZodNumber;
|
|
81371
|
+
source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
81372
|
+
type: z__default.ZodLiteral<"UserUpload">;
|
|
81373
|
+
userId: z__default.ZodString;
|
|
81374
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
81375
|
+
type: "UserUpload";
|
|
81376
|
+
userId: string;
|
|
81377
|
+
}, {
|
|
81378
|
+
type: "UserUpload";
|
|
81379
|
+
userId: string;
|
|
81380
|
+
}>, z__default.ZodObject<{
|
|
81381
|
+
type: z__default.ZodLiteral<"Figma">;
|
|
81382
|
+
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
81383
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
81384
|
+
type: "Figma";
|
|
81385
|
+
renderMode: "Image" | "HTML";
|
|
81386
|
+
}, {
|
|
81387
|
+
type: "Figma";
|
|
81388
|
+
renderMode: "Image" | "HTML";
|
|
81389
|
+
}>]>>;
|
|
81390
|
+
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
81391
|
+
id: string;
|
|
81392
|
+
url: string;
|
|
81393
|
+
source?: {
|
|
81394
|
+
type: "UserUpload";
|
|
81395
|
+
userId: string;
|
|
81396
|
+
} | {
|
|
81397
|
+
type: "Figma";
|
|
81398
|
+
renderMode: "Image" | "HTML";
|
|
81399
|
+
} | undefined;
|
|
81400
|
+
}, {
|
|
81401
|
+
id: string;
|
|
81402
|
+
url: string;
|
|
81403
|
+
source?: {
|
|
81404
|
+
type: "UserUpload";
|
|
81405
|
+
userId: string;
|
|
81406
|
+
} | {
|
|
81407
|
+
type: "Figma";
|
|
81408
|
+
renderMode: "Image" | "HTML";
|
|
81409
|
+
} | undefined;
|
|
81410
|
+
}>, "many">>;
|
|
81683
81411
|
}, "strip", z__default.ZodTypeAny, {
|
|
81412
|
+
files?: {
|
|
81413
|
+
id: string;
|
|
81414
|
+
url: string;
|
|
81415
|
+
source?: {
|
|
81416
|
+
type: "UserUpload";
|
|
81417
|
+
userId: string;
|
|
81418
|
+
} | {
|
|
81419
|
+
type: "Figma";
|
|
81420
|
+
renderMode: "Image" | "HTML";
|
|
81421
|
+
} | undefined;
|
|
81422
|
+
}[] | undefined;
|
|
81684
81423
|
iterationId?: string | undefined;
|
|
81685
81424
|
}, {
|
|
81425
|
+
files?: {
|
|
81426
|
+
id: string;
|
|
81427
|
+
url: string;
|
|
81428
|
+
source?: {
|
|
81429
|
+
type: "UserUpload";
|
|
81430
|
+
userId: string;
|
|
81431
|
+
} | {
|
|
81432
|
+
type: "Figma";
|
|
81433
|
+
renderMode: "Image" | "HTML";
|
|
81434
|
+
} | undefined;
|
|
81435
|
+
}[] | undefined;
|
|
81686
81436
|
iterationId?: string | undefined;
|
|
81687
81437
|
}>>;
|
|
81688
81438
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
81689
81439
|
createdAt: z__default.ZodString;
|
|
81690
81440
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
81691
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"
|
|
81441
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
81442
|
+
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
81443
|
+
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
81444
|
+
fileIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
81445
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
81446
|
+
fileIds?: string[] | undefined;
|
|
81447
|
+
iterationId?: string | undefined;
|
|
81448
|
+
}, {
|
|
81449
|
+
fileIds?: string[] | undefined;
|
|
81450
|
+
iterationId?: string | undefined;
|
|
81451
|
+
}>>;
|
|
81452
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
81692
81453
|
id: string;
|
|
81693
81454
|
body: string;
|
|
81694
81455
|
isPrompt?: boolean | undefined;
|
|
81695
81456
|
startsNewThread?: boolean | undefined;
|
|
81696
81457
|
parentMessageId?: string | undefined;
|
|
81697
81458
|
attachments?: {
|
|
81459
|
+
fileIds?: string[] | undefined;
|
|
81698
81460
|
iterationId?: string | undefined;
|
|
81699
81461
|
} | undefined;
|
|
81700
81462
|
}, {
|
|
@@ -81704,6 +81466,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81704
81466
|
startsNewThread?: boolean | undefined;
|
|
81705
81467
|
parentMessageId?: string | undefined;
|
|
81706
81468
|
attachments?: {
|
|
81469
|
+
fileIds?: string[] | undefined;
|
|
81707
81470
|
iterationId?: string | undefined;
|
|
81708
81471
|
} | undefined;
|
|
81709
81472
|
}>;
|
|
@@ -81717,6 +81480,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81717
81480
|
startsNewThread?: boolean | undefined;
|
|
81718
81481
|
parentMessageId?: string | undefined;
|
|
81719
81482
|
attachments?: {
|
|
81483
|
+
fileIds?: string[] | undefined;
|
|
81720
81484
|
iterationId?: string | undefined;
|
|
81721
81485
|
} | undefined;
|
|
81722
81486
|
};
|
|
@@ -81733,6 +81497,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81733
81497
|
startsNewThread?: boolean | undefined;
|
|
81734
81498
|
parentMessageId?: string | undefined;
|
|
81735
81499
|
attachments?: {
|
|
81500
|
+
fileIds?: string[] | undefined;
|
|
81736
81501
|
iterationId?: string | undefined;
|
|
81737
81502
|
} | undefined;
|
|
81738
81503
|
};
|
|
@@ -81752,6 +81517,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81752
81517
|
startsNewThread?: boolean | undefined;
|
|
81753
81518
|
parentMessageId?: string | undefined;
|
|
81754
81519
|
attachments?: {
|
|
81520
|
+
fileIds?: string[] | undefined;
|
|
81755
81521
|
iterationId?: string | undefined;
|
|
81756
81522
|
} | undefined;
|
|
81757
81523
|
};
|
|
@@ -81771,6 +81537,7 @@ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
|
|
|
81771
81537
|
startsNewThread?: boolean | undefined;
|
|
81772
81538
|
parentMessageId?: string | undefined;
|
|
81773
81539
|
attachments?: {
|
|
81540
|
+
fileIds?: string[] | undefined;
|
|
81774
81541
|
iterationId?: string | undefined;
|
|
81775
81542
|
} | undefined;
|
|
81776
81543
|
};
|
|
@@ -82327,6 +82094,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82327
82094
|
afterFeatureId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
|
|
82328
82095
|
initialMessage: z__default.ZodObject<Pick<{
|
|
82329
82096
|
id: z__default.ZodString;
|
|
82097
|
+
threadId: z__default.ZodString;
|
|
82330
82098
|
sender: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
82331
82099
|
type: z__default.ZodLiteral<"User">;
|
|
82332
82100
|
userId: z__default.ZodString;
|
|
@@ -82338,10 +82106,13 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82338
82106
|
userId: string;
|
|
82339
82107
|
}>, z__default.ZodObject<{
|
|
82340
82108
|
type: z__default.ZodLiteral<"Agent">;
|
|
82109
|
+
agentType: z__default.ZodEnum<["Ask", "Document", "Prototype", "ReleaseNotes"]>;
|
|
82341
82110
|
}, "strip", z__default.ZodTypeAny, {
|
|
82342
82111
|
type: "Agent";
|
|
82112
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
82343
82113
|
}, {
|
|
82344
82114
|
type: "Agent";
|
|
82115
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
82345
82116
|
}>, z__default.ZodObject<{
|
|
82346
82117
|
type: z__default.ZodLiteral<"System">;
|
|
82347
82118
|
onBehalfOfUserId: z__default.ZodString;
|
|
@@ -82359,21 +82130,103 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82359
82130
|
agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
82360
82131
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
82361
82132
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
82133
|
+
files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
|
|
82134
|
+
id: z__default.ZodString;
|
|
82135
|
+
name: z__default.ZodString;
|
|
82136
|
+
deduplicationKey: z__default.ZodString;
|
|
82137
|
+
pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
82138
|
+
storagePath: z__default.ZodString;
|
|
82139
|
+
url: z__default.ZodString;
|
|
82140
|
+
size: z__default.ZodNumber;
|
|
82141
|
+
source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
82142
|
+
type: z__default.ZodLiteral<"UserUpload">;
|
|
82143
|
+
userId: z__default.ZodString;
|
|
82144
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
82145
|
+
type: "UserUpload";
|
|
82146
|
+
userId: string;
|
|
82147
|
+
}, {
|
|
82148
|
+
type: "UserUpload";
|
|
82149
|
+
userId: string;
|
|
82150
|
+
}>, z__default.ZodObject<{
|
|
82151
|
+
type: z__default.ZodLiteral<"Figma">;
|
|
82152
|
+
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
82153
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
82154
|
+
type: "Figma";
|
|
82155
|
+
renderMode: "Image" | "HTML";
|
|
82156
|
+
}, {
|
|
82157
|
+
type: "Figma";
|
|
82158
|
+
renderMode: "Image" | "HTML";
|
|
82159
|
+
}>]>>;
|
|
82160
|
+
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
82161
|
+
id: string;
|
|
82162
|
+
url: string;
|
|
82163
|
+
source?: {
|
|
82164
|
+
type: "UserUpload";
|
|
82165
|
+
userId: string;
|
|
82166
|
+
} | {
|
|
82167
|
+
type: "Figma";
|
|
82168
|
+
renderMode: "Image" | "HTML";
|
|
82169
|
+
} | undefined;
|
|
82170
|
+
}, {
|
|
82171
|
+
id: string;
|
|
82172
|
+
url: string;
|
|
82173
|
+
source?: {
|
|
82174
|
+
type: "UserUpload";
|
|
82175
|
+
userId: string;
|
|
82176
|
+
} | {
|
|
82177
|
+
type: "Figma";
|
|
82178
|
+
renderMode: "Image" | "HTML";
|
|
82179
|
+
} | undefined;
|
|
82180
|
+
}>, "many">>;
|
|
82362
82181
|
}, "strip", z__default.ZodTypeAny, {
|
|
82182
|
+
files?: {
|
|
82183
|
+
id: string;
|
|
82184
|
+
url: string;
|
|
82185
|
+
source?: {
|
|
82186
|
+
type: "UserUpload";
|
|
82187
|
+
userId: string;
|
|
82188
|
+
} | {
|
|
82189
|
+
type: "Figma";
|
|
82190
|
+
renderMode: "Image" | "HTML";
|
|
82191
|
+
} | undefined;
|
|
82192
|
+
}[] | undefined;
|
|
82363
82193
|
iterationId?: string | undefined;
|
|
82364
82194
|
}, {
|
|
82195
|
+
files?: {
|
|
82196
|
+
id: string;
|
|
82197
|
+
url: string;
|
|
82198
|
+
source?: {
|
|
82199
|
+
type: "UserUpload";
|
|
82200
|
+
userId: string;
|
|
82201
|
+
} | {
|
|
82202
|
+
type: "Figma";
|
|
82203
|
+
renderMode: "Image" | "HTML";
|
|
82204
|
+
} | undefined;
|
|
82205
|
+
}[] | undefined;
|
|
82365
82206
|
iterationId?: string | undefined;
|
|
82366
82207
|
}>>;
|
|
82367
82208
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
82368
82209
|
createdAt: z__default.ZodString;
|
|
82369
82210
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
82370
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"
|
|
82211
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
82212
|
+
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
82213
|
+
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
82214
|
+
fileIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
82215
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
82216
|
+
fileIds?: string[] | undefined;
|
|
82217
|
+
iterationId?: string | undefined;
|
|
82218
|
+
}, {
|
|
82219
|
+
fileIds?: string[] | undefined;
|
|
82220
|
+
iterationId?: string | undefined;
|
|
82221
|
+
}>>;
|
|
82222
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
82371
82223
|
id: string;
|
|
82372
82224
|
body: string;
|
|
82373
82225
|
isPrompt?: boolean | undefined;
|
|
82374
82226
|
startsNewThread?: boolean | undefined;
|
|
82375
82227
|
parentMessageId?: string | undefined;
|
|
82376
82228
|
attachments?: {
|
|
82229
|
+
fileIds?: string[] | undefined;
|
|
82377
82230
|
iterationId?: string | undefined;
|
|
82378
82231
|
} | undefined;
|
|
82379
82232
|
}, {
|
|
@@ -82383,6 +82236,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82383
82236
|
startsNewThread?: boolean | undefined;
|
|
82384
82237
|
parentMessageId?: string | undefined;
|
|
82385
82238
|
attachments?: {
|
|
82239
|
+
fileIds?: string[] | undefined;
|
|
82386
82240
|
iterationId?: string | undefined;
|
|
82387
82241
|
} | undefined;
|
|
82388
82242
|
}>;
|
|
@@ -82396,6 +82250,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82396
82250
|
startsNewThread?: boolean | undefined;
|
|
82397
82251
|
parentMessageId?: string | undefined;
|
|
82398
82252
|
attachments?: {
|
|
82253
|
+
fileIds?: string[] | undefined;
|
|
82399
82254
|
iterationId?: string | undefined;
|
|
82400
82255
|
} | undefined;
|
|
82401
82256
|
};
|
|
@@ -82412,6 +82267,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82412
82267
|
startsNewThread?: boolean | undefined;
|
|
82413
82268
|
parentMessageId?: string | undefined;
|
|
82414
82269
|
attachments?: {
|
|
82270
|
+
fileIds?: string[] | undefined;
|
|
82415
82271
|
iterationId?: string | undefined;
|
|
82416
82272
|
} | undefined;
|
|
82417
82273
|
};
|
|
@@ -82431,6 +82287,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82431
82287
|
startsNewThread?: boolean | undefined;
|
|
82432
82288
|
parentMessageId?: string | undefined;
|
|
82433
82289
|
attachments?: {
|
|
82290
|
+
fileIds?: string[] | undefined;
|
|
82434
82291
|
iterationId?: string | undefined;
|
|
82435
82292
|
} | undefined;
|
|
82436
82293
|
};
|
|
@@ -82450,6 +82307,7 @@ declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDi
|
|
|
82450
82307
|
startsNewThread?: boolean | undefined;
|
|
82451
82308
|
parentMessageId?: string | undefined;
|
|
82452
82309
|
attachments?: {
|
|
82310
|
+
fileIds?: string[] | undefined;
|
|
82453
82311
|
iterationId?: string | undefined;
|
|
82454
82312
|
} | undefined;
|
|
82455
82313
|
};
|
|
@@ -138387,6 +138245,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138387
138245
|
afterFeatureId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
|
|
138388
138246
|
initialMessage: z__default.ZodObject<Pick<{
|
|
138389
138247
|
id: z__default.ZodString;
|
|
138248
|
+
threadId: z__default.ZodString;
|
|
138390
138249
|
sender: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
138391
138250
|
type: z__default.ZodLiteral<"User">;
|
|
138392
138251
|
userId: z__default.ZodString;
|
|
@@ -138398,10 +138257,13 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138398
138257
|
userId: string;
|
|
138399
138258
|
}>, z__default.ZodObject<{
|
|
138400
138259
|
type: z__default.ZodLiteral<"Agent">;
|
|
138260
|
+
agentType: z__default.ZodEnum<["Ask", "Document", "Prototype", "ReleaseNotes"]>;
|
|
138401
138261
|
}, "strip", z__default.ZodTypeAny, {
|
|
138402
138262
|
type: "Agent";
|
|
138263
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
138403
138264
|
}, {
|
|
138404
138265
|
type: "Agent";
|
|
138266
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
138405
138267
|
}>, z__default.ZodObject<{
|
|
138406
138268
|
type: z__default.ZodLiteral<"System">;
|
|
138407
138269
|
onBehalfOfUserId: z__default.ZodString;
|
|
@@ -138419,21 +138281,103 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138419
138281
|
agentResponseTrackerId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
138420
138282
|
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
138421
138283
|
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
138284
|
+
files: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<Pick<{
|
|
138285
|
+
id: z__default.ZodString;
|
|
138286
|
+
name: z__default.ZodString;
|
|
138287
|
+
deduplicationKey: z__default.ZodString;
|
|
138288
|
+
pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
138289
|
+
storagePath: z__default.ZodString;
|
|
138290
|
+
url: z__default.ZodString;
|
|
138291
|
+
size: z__default.ZodNumber;
|
|
138292
|
+
source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
138293
|
+
type: z__default.ZodLiteral<"UserUpload">;
|
|
138294
|
+
userId: z__default.ZodString;
|
|
138295
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
138296
|
+
type: "UserUpload";
|
|
138297
|
+
userId: string;
|
|
138298
|
+
}, {
|
|
138299
|
+
type: "UserUpload";
|
|
138300
|
+
userId: string;
|
|
138301
|
+
}>, z__default.ZodObject<{
|
|
138302
|
+
type: z__default.ZodLiteral<"Figma">;
|
|
138303
|
+
renderMode: z__default.ZodEnum<["Image", "HTML"]>;
|
|
138304
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
138305
|
+
type: "Figma";
|
|
138306
|
+
renderMode: "Image" | "HTML";
|
|
138307
|
+
}, {
|
|
138308
|
+
type: "Figma";
|
|
138309
|
+
renderMode: "Image" | "HTML";
|
|
138310
|
+
}>]>>;
|
|
138311
|
+
}, "id" | "url" | "source">, "strip", z__default.ZodTypeAny, {
|
|
138312
|
+
id: string;
|
|
138313
|
+
url: string;
|
|
138314
|
+
source?: {
|
|
138315
|
+
type: "UserUpload";
|
|
138316
|
+
userId: string;
|
|
138317
|
+
} | {
|
|
138318
|
+
type: "Figma";
|
|
138319
|
+
renderMode: "Image" | "HTML";
|
|
138320
|
+
} | undefined;
|
|
138321
|
+
}, {
|
|
138322
|
+
id: string;
|
|
138323
|
+
url: string;
|
|
138324
|
+
source?: {
|
|
138325
|
+
type: "UserUpload";
|
|
138326
|
+
userId: string;
|
|
138327
|
+
} | {
|
|
138328
|
+
type: "Figma";
|
|
138329
|
+
renderMode: "Image" | "HTML";
|
|
138330
|
+
} | undefined;
|
|
138331
|
+
}>, "many">>;
|
|
138422
138332
|
}, "strip", z__default.ZodTypeAny, {
|
|
138333
|
+
files?: {
|
|
138334
|
+
id: string;
|
|
138335
|
+
url: string;
|
|
138336
|
+
source?: {
|
|
138337
|
+
type: "UserUpload";
|
|
138338
|
+
userId: string;
|
|
138339
|
+
} | {
|
|
138340
|
+
type: "Figma";
|
|
138341
|
+
renderMode: "Image" | "HTML";
|
|
138342
|
+
} | undefined;
|
|
138343
|
+
}[] | undefined;
|
|
138423
138344
|
iterationId?: string | undefined;
|
|
138424
138345
|
}, {
|
|
138346
|
+
files?: {
|
|
138347
|
+
id: string;
|
|
138348
|
+
url: string;
|
|
138349
|
+
source?: {
|
|
138350
|
+
type: "UserUpload";
|
|
138351
|
+
userId: string;
|
|
138352
|
+
} | {
|
|
138353
|
+
type: "Figma";
|
|
138354
|
+
renderMode: "Image" | "HTML";
|
|
138355
|
+
} | undefined;
|
|
138356
|
+
}[] | undefined;
|
|
138425
138357
|
iterationId?: string | undefined;
|
|
138426
138358
|
}>>;
|
|
138427
138359
|
replyToMessageId: z__default.ZodOptional<z__default.ZodString>;
|
|
138428
138360
|
createdAt: z__default.ZodString;
|
|
138429
138361
|
updatedAt: z__default.ZodOptional<z__default.ZodString>;
|
|
138430
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"
|
|
138362
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
138363
|
+
attachments: z__default.ZodOptional<z__default.ZodObject<{
|
|
138364
|
+
iterationId: z__default.ZodOptional<z__default.ZodString>;
|
|
138365
|
+
fileIds: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
138366
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
138367
|
+
fileIds?: string[] | undefined;
|
|
138368
|
+
iterationId?: string | undefined;
|
|
138369
|
+
}, {
|
|
138370
|
+
fileIds?: string[] | undefined;
|
|
138371
|
+
iterationId?: string | undefined;
|
|
138372
|
+
}>>;
|
|
138373
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
138431
138374
|
id: string;
|
|
138432
138375
|
body: string;
|
|
138433
138376
|
isPrompt?: boolean | undefined;
|
|
138434
138377
|
startsNewThread?: boolean | undefined;
|
|
138435
138378
|
parentMessageId?: string | undefined;
|
|
138436
138379
|
attachments?: {
|
|
138380
|
+
fileIds?: string[] | undefined;
|
|
138437
138381
|
iterationId?: string | undefined;
|
|
138438
138382
|
} | undefined;
|
|
138439
138383
|
}, {
|
|
@@ -138443,6 +138387,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138443
138387
|
startsNewThread?: boolean | undefined;
|
|
138444
138388
|
parentMessageId?: string | undefined;
|
|
138445
138389
|
attachments?: {
|
|
138390
|
+
fileIds?: string[] | undefined;
|
|
138446
138391
|
iterationId?: string | undefined;
|
|
138447
138392
|
} | undefined;
|
|
138448
138393
|
}>;
|
|
@@ -138456,6 +138401,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138456
138401
|
startsNewThread?: boolean | undefined;
|
|
138457
138402
|
parentMessageId?: string | undefined;
|
|
138458
138403
|
attachments?: {
|
|
138404
|
+
fileIds?: string[] | undefined;
|
|
138459
138405
|
iterationId?: string | undefined;
|
|
138460
138406
|
} | undefined;
|
|
138461
138407
|
};
|
|
@@ -138472,6 +138418,7 @@ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
|
|
|
138472
138418
|
startsNewThread?: boolean | undefined;
|
|
138473
138419
|
parentMessageId?: string | undefined;
|
|
138474
138420
|
attachments?: {
|
|
138421
|
+
fileIds?: string[] | undefined;
|
|
138475
138422
|
iterationId?: string | undefined;
|
|
138476
138423
|
} | undefined;
|
|
138477
138424
|
};
|
|
@@ -214618,6 +214565,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
214618
214565
|
afterFeatureId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
214619
214566
|
initialMessage: z$1.ZodObject<Pick<{
|
|
214620
214567
|
id: z$1.ZodString;
|
|
214568
|
+
threadId: z$1.ZodString;
|
|
214621
214569
|
sender: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
214622
214570
|
type: z$1.ZodLiteral<"User">;
|
|
214623
214571
|
userId: z$1.ZodString;
|
|
@@ -214629,10 +214577,13 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
214629
214577
|
userId: string;
|
|
214630
214578
|
}>, z$1.ZodObject<{
|
|
214631
214579
|
type: z$1.ZodLiteral<"Agent">;
|
|
214580
|
+
agentType: z$1.ZodEnum<["Ask", "Document", "Prototype", "ReleaseNotes"]>;
|
|
214632
214581
|
}, "strip", z$1.ZodTypeAny, {
|
|
214633
214582
|
type: "Agent";
|
|
214583
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
214634
214584
|
}, {
|
|
214635
214585
|
type: "Agent";
|
|
214586
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
214636
214587
|
}>, z$1.ZodObject<{
|
|
214637
214588
|
type: z$1.ZodLiteral<"System">;
|
|
214638
214589
|
onBehalfOfUserId: z$1.ZodString;
|
|
@@ -214650,21 +214601,103 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
214650
214601
|
agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
|
|
214651
214602
|
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
214652
214603
|
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
214604
|
+
files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<Pick<{
|
|
214605
|
+
id: z$1.ZodString;
|
|
214606
|
+
name: z$1.ZodString;
|
|
214607
|
+
deduplicationKey: z$1.ZodString;
|
|
214608
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
214609
|
+
storagePath: z$1.ZodString;
|
|
214610
|
+
url: z$1.ZodString;
|
|
214611
|
+
size: z$1.ZodNumber;
|
|
214612
|
+
source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
214613
|
+
type: z$1.ZodLiteral<"UserUpload">;
|
|
214614
|
+
userId: z$1.ZodString;
|
|
214615
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
214616
|
+
type: "UserUpload";
|
|
214617
|
+
userId: string;
|
|
214618
|
+
}, {
|
|
214619
|
+
type: "UserUpload";
|
|
214620
|
+
userId: string;
|
|
214621
|
+
}>, z$1.ZodObject<{
|
|
214622
|
+
type: z$1.ZodLiteral<"Figma">;
|
|
214623
|
+
renderMode: z$1.ZodEnum<["Image", "HTML"]>;
|
|
214624
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
214625
|
+
type: "Figma";
|
|
214626
|
+
renderMode: "Image" | "HTML";
|
|
214627
|
+
}, {
|
|
214628
|
+
type: "Figma";
|
|
214629
|
+
renderMode: "Image" | "HTML";
|
|
214630
|
+
}>]>>;
|
|
214631
|
+
}, "id" | "url" | "source">, "strip", z$1.ZodTypeAny, {
|
|
214632
|
+
id: string;
|
|
214633
|
+
url: string;
|
|
214634
|
+
source?: {
|
|
214635
|
+
type: "UserUpload";
|
|
214636
|
+
userId: string;
|
|
214637
|
+
} | {
|
|
214638
|
+
type: "Figma";
|
|
214639
|
+
renderMode: "Image" | "HTML";
|
|
214640
|
+
} | undefined;
|
|
214641
|
+
}, {
|
|
214642
|
+
id: string;
|
|
214643
|
+
url: string;
|
|
214644
|
+
source?: {
|
|
214645
|
+
type: "UserUpload";
|
|
214646
|
+
userId: string;
|
|
214647
|
+
} | {
|
|
214648
|
+
type: "Figma";
|
|
214649
|
+
renderMode: "Image" | "HTML";
|
|
214650
|
+
} | undefined;
|
|
214651
|
+
}>, "many">>;
|
|
214653
214652
|
}, "strip", z$1.ZodTypeAny, {
|
|
214653
|
+
files?: {
|
|
214654
|
+
id: string;
|
|
214655
|
+
url: string;
|
|
214656
|
+
source?: {
|
|
214657
|
+
type: "UserUpload";
|
|
214658
|
+
userId: string;
|
|
214659
|
+
} | {
|
|
214660
|
+
type: "Figma";
|
|
214661
|
+
renderMode: "Image" | "HTML";
|
|
214662
|
+
} | undefined;
|
|
214663
|
+
}[] | undefined;
|
|
214654
214664
|
iterationId?: string | undefined;
|
|
214655
214665
|
}, {
|
|
214666
|
+
files?: {
|
|
214667
|
+
id: string;
|
|
214668
|
+
url: string;
|
|
214669
|
+
source?: {
|
|
214670
|
+
type: "UserUpload";
|
|
214671
|
+
userId: string;
|
|
214672
|
+
} | {
|
|
214673
|
+
type: "Figma";
|
|
214674
|
+
renderMode: "Image" | "HTML";
|
|
214675
|
+
} | undefined;
|
|
214676
|
+
}[] | undefined;
|
|
214656
214677
|
iterationId?: string | undefined;
|
|
214657
214678
|
}>>;
|
|
214658
214679
|
replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
214659
214680
|
createdAt: z$1.ZodString;
|
|
214660
214681
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
214661
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"
|
|
214682
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
214683
|
+
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
214684
|
+
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
214685
|
+
fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
214686
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
214687
|
+
fileIds?: string[] | undefined;
|
|
214688
|
+
iterationId?: string | undefined;
|
|
214689
|
+
}, {
|
|
214690
|
+
fileIds?: string[] | undefined;
|
|
214691
|
+
iterationId?: string | undefined;
|
|
214692
|
+
}>>;
|
|
214693
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
214662
214694
|
id: string;
|
|
214663
214695
|
body: string;
|
|
214664
214696
|
isPrompt?: boolean | undefined;
|
|
214665
214697
|
startsNewThread?: boolean | undefined;
|
|
214666
214698
|
parentMessageId?: string | undefined;
|
|
214667
214699
|
attachments?: {
|
|
214700
|
+
fileIds?: string[] | undefined;
|
|
214668
214701
|
iterationId?: string | undefined;
|
|
214669
214702
|
} | undefined;
|
|
214670
214703
|
}, {
|
|
@@ -214674,6 +214707,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
214674
214707
|
startsNewThread?: boolean | undefined;
|
|
214675
214708
|
parentMessageId?: string | undefined;
|
|
214676
214709
|
attachments?: {
|
|
214710
|
+
fileIds?: string[] | undefined;
|
|
214677
214711
|
iterationId?: string | undefined;
|
|
214678
214712
|
} | undefined;
|
|
214679
214713
|
}>;
|
|
@@ -214687,6 +214721,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
214687
214721
|
startsNewThread?: boolean | undefined;
|
|
214688
214722
|
parentMessageId?: string | undefined;
|
|
214689
214723
|
attachments?: {
|
|
214724
|
+
fileIds?: string[] | undefined;
|
|
214690
214725
|
iterationId?: string | undefined;
|
|
214691
214726
|
} | undefined;
|
|
214692
214727
|
};
|
|
@@ -214703,6 +214738,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
214703
214738
|
startsNewThread?: boolean | undefined;
|
|
214704
214739
|
parentMessageId?: string | undefined;
|
|
214705
214740
|
attachments?: {
|
|
214741
|
+
fileIds?: string[] | undefined;
|
|
214706
214742
|
iterationId?: string | undefined;
|
|
214707
214743
|
} | undefined;
|
|
214708
214744
|
};
|
|
@@ -214924,6 +214960,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
214924
214960
|
startsNewThread?: boolean | undefined;
|
|
214925
214961
|
parentMessageId?: string | undefined;
|
|
214926
214962
|
attachments?: {
|
|
214963
|
+
fileIds?: string[] | undefined;
|
|
214927
214964
|
iterationId?: string | undefined;
|
|
214928
214965
|
} | undefined;
|
|
214929
214966
|
};
|
|
@@ -214976,6 +215013,7 @@ declare const DTOForgeProjectCreate: z$1.ZodObject<Pick<{
|
|
|
214976
215013
|
startsNewThread?: boolean | undefined;
|
|
214977
215014
|
parentMessageId?: string | undefined;
|
|
214978
215015
|
attachments?: {
|
|
215016
|
+
fileIds?: string[] | undefined;
|
|
214979
215017
|
iterationId?: string | undefined;
|
|
214980
215018
|
} | undefined;
|
|
214981
215019
|
};
|
|
@@ -215029,6 +215067,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
215029
215067
|
afterFeatureId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
215030
215068
|
initialMessage: z$1.ZodObject<Pick<{
|
|
215031
215069
|
id: z$1.ZodString;
|
|
215070
|
+
threadId: z$1.ZodString;
|
|
215032
215071
|
sender: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
215033
215072
|
type: z$1.ZodLiteral<"User">;
|
|
215034
215073
|
userId: z$1.ZodString;
|
|
@@ -215040,10 +215079,13 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
215040
215079
|
userId: string;
|
|
215041
215080
|
}>, z$1.ZodObject<{
|
|
215042
215081
|
type: z$1.ZodLiteral<"Agent">;
|
|
215082
|
+
agentType: z$1.ZodEnum<["Ask", "Document", "Prototype", "ReleaseNotes"]>;
|
|
215043
215083
|
}, "strip", z$1.ZodTypeAny, {
|
|
215044
215084
|
type: "Agent";
|
|
215085
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
215045
215086
|
}, {
|
|
215046
215087
|
type: "Agent";
|
|
215088
|
+
agentType: "Ask" | "Document" | "Prototype" | "ReleaseNotes";
|
|
215047
215089
|
}>, z$1.ZodObject<{
|
|
215048
215090
|
type: z$1.ZodLiteral<"System">;
|
|
215049
215091
|
onBehalfOfUserId: z$1.ZodString;
|
|
@@ -215061,21 +215103,103 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
215061
215103
|
agentResponseTrackerId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
|
|
215062
215104
|
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
215063
215105
|
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
215106
|
+
files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<Pick<{
|
|
215107
|
+
id: z$1.ZodString;
|
|
215108
|
+
name: z$1.ZodString;
|
|
215109
|
+
deduplicationKey: z$1.ZodString;
|
|
215110
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
215111
|
+
storagePath: z$1.ZodString;
|
|
215112
|
+
url: z$1.ZodString;
|
|
215113
|
+
size: z$1.ZodNumber;
|
|
215114
|
+
source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
215115
|
+
type: z$1.ZodLiteral<"UserUpload">;
|
|
215116
|
+
userId: z$1.ZodString;
|
|
215117
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
215118
|
+
type: "UserUpload";
|
|
215119
|
+
userId: string;
|
|
215120
|
+
}, {
|
|
215121
|
+
type: "UserUpload";
|
|
215122
|
+
userId: string;
|
|
215123
|
+
}>, z$1.ZodObject<{
|
|
215124
|
+
type: z$1.ZodLiteral<"Figma">;
|
|
215125
|
+
renderMode: z$1.ZodEnum<["Image", "HTML"]>;
|
|
215126
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
215127
|
+
type: "Figma";
|
|
215128
|
+
renderMode: "Image" | "HTML";
|
|
215129
|
+
}, {
|
|
215130
|
+
type: "Figma";
|
|
215131
|
+
renderMode: "Image" | "HTML";
|
|
215132
|
+
}>]>>;
|
|
215133
|
+
}, "id" | "url" | "source">, "strip", z$1.ZodTypeAny, {
|
|
215134
|
+
id: string;
|
|
215135
|
+
url: string;
|
|
215136
|
+
source?: {
|
|
215137
|
+
type: "UserUpload";
|
|
215138
|
+
userId: string;
|
|
215139
|
+
} | {
|
|
215140
|
+
type: "Figma";
|
|
215141
|
+
renderMode: "Image" | "HTML";
|
|
215142
|
+
} | undefined;
|
|
215143
|
+
}, {
|
|
215144
|
+
id: string;
|
|
215145
|
+
url: string;
|
|
215146
|
+
source?: {
|
|
215147
|
+
type: "UserUpload";
|
|
215148
|
+
userId: string;
|
|
215149
|
+
} | {
|
|
215150
|
+
type: "Figma";
|
|
215151
|
+
renderMode: "Image" | "HTML";
|
|
215152
|
+
} | undefined;
|
|
215153
|
+
}>, "many">>;
|
|
215064
215154
|
}, "strip", z$1.ZodTypeAny, {
|
|
215155
|
+
files?: {
|
|
215156
|
+
id: string;
|
|
215157
|
+
url: string;
|
|
215158
|
+
source?: {
|
|
215159
|
+
type: "UserUpload";
|
|
215160
|
+
userId: string;
|
|
215161
|
+
} | {
|
|
215162
|
+
type: "Figma";
|
|
215163
|
+
renderMode: "Image" | "HTML";
|
|
215164
|
+
} | undefined;
|
|
215165
|
+
}[] | undefined;
|
|
215065
215166
|
iterationId?: string | undefined;
|
|
215066
215167
|
}, {
|
|
215168
|
+
files?: {
|
|
215169
|
+
id: string;
|
|
215170
|
+
url: string;
|
|
215171
|
+
source?: {
|
|
215172
|
+
type: "UserUpload";
|
|
215173
|
+
userId: string;
|
|
215174
|
+
} | {
|
|
215175
|
+
type: "Figma";
|
|
215176
|
+
renderMode: "Image" | "HTML";
|
|
215177
|
+
} | undefined;
|
|
215178
|
+
}[] | undefined;
|
|
215067
215179
|
iterationId?: string | undefined;
|
|
215068
215180
|
}>>;
|
|
215069
215181
|
replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
215070
215182
|
createdAt: z$1.ZodString;
|
|
215071
215183
|
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
215072
|
-
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"
|
|
215184
|
+
}, "id" | "body" | "isPrompt" | "startsNewThread" | "parentMessageId"> & {
|
|
215185
|
+
attachments: z$1.ZodOptional<z$1.ZodObject<{
|
|
215186
|
+
iterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
215187
|
+
fileIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
215188
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
215189
|
+
fileIds?: string[] | undefined;
|
|
215190
|
+
iterationId?: string | undefined;
|
|
215191
|
+
}, {
|
|
215192
|
+
fileIds?: string[] | undefined;
|
|
215193
|
+
iterationId?: string | undefined;
|
|
215194
|
+
}>>;
|
|
215195
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
215073
215196
|
id: string;
|
|
215074
215197
|
body: string;
|
|
215075
215198
|
isPrompt?: boolean | undefined;
|
|
215076
215199
|
startsNewThread?: boolean | undefined;
|
|
215077
215200
|
parentMessageId?: string | undefined;
|
|
215078
215201
|
attachments?: {
|
|
215202
|
+
fileIds?: string[] | undefined;
|
|
215079
215203
|
iterationId?: string | undefined;
|
|
215080
215204
|
} | undefined;
|
|
215081
215205
|
}, {
|
|
@@ -215085,6 +215209,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
215085
215209
|
startsNewThread?: boolean | undefined;
|
|
215086
215210
|
parentMessageId?: string | undefined;
|
|
215087
215211
|
attachments?: {
|
|
215212
|
+
fileIds?: string[] | undefined;
|
|
215088
215213
|
iterationId?: string | undefined;
|
|
215089
215214
|
} | undefined;
|
|
215090
215215
|
}>;
|
|
@@ -215098,6 +215223,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
215098
215223
|
startsNewThread?: boolean | undefined;
|
|
215099
215224
|
parentMessageId?: string | undefined;
|
|
215100
215225
|
attachments?: {
|
|
215226
|
+
fileIds?: string[] | undefined;
|
|
215101
215227
|
iterationId?: string | undefined;
|
|
215102
215228
|
} | undefined;
|
|
215103
215229
|
};
|
|
@@ -215114,6 +215240,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
215114
215240
|
startsNewThread?: boolean | undefined;
|
|
215115
215241
|
parentMessageId?: string | undefined;
|
|
215116
215242
|
attachments?: {
|
|
215243
|
+
fileIds?: string[] | undefined;
|
|
215117
215244
|
iterationId?: string | undefined;
|
|
215118
215245
|
} | undefined;
|
|
215119
215246
|
};
|
|
@@ -215333,6 +215460,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
215333
215460
|
startsNewThread?: boolean | undefined;
|
|
215334
215461
|
parentMessageId?: string | undefined;
|
|
215335
215462
|
attachments?: {
|
|
215463
|
+
fileIds?: string[] | undefined;
|
|
215336
215464
|
iterationId?: string | undefined;
|
|
215337
215465
|
} | undefined;
|
|
215338
215466
|
};
|
|
@@ -215381,6 +215509,7 @@ declare const DTOForgeProjectUpdate: z$1.ZodObject<{
|
|
|
215381
215509
|
startsNewThread?: boolean | undefined;
|
|
215382
215510
|
parentMessageId?: string | undefined;
|
|
215383
215511
|
attachments?: {
|
|
215512
|
+
fileIds?: string[] | undefined;
|
|
215384
215513
|
iterationId?: string | undefined;
|
|
215385
215514
|
} | undefined;
|
|
215386
215515
|
};
|
|
@@ -235548,10 +235677,13 @@ declare const DTOThreadMessageAttachmentsCreateInput: z__default.ZodObject<{
|
|
|
235548
235677
|
type DTOThreadMessageAttachmentsCreateInput = z__default.infer<typeof DTOThreadMessageAttachmentsCreateInput>;
|
|
235549
235678
|
declare const DTOThreadMessageFinalizeInput: z__default.ZodObject<{
|
|
235550
235679
|
messageId: z__default.ZodString;
|
|
235680
|
+
agentMessageBody: z__default.ZodOptional<z__default.ZodString>;
|
|
235551
235681
|
}, "strip", z__default.ZodTypeAny, {
|
|
235552
235682
|
messageId: string;
|
|
235683
|
+
agentMessageBody?: string | undefined;
|
|
235553
235684
|
}, {
|
|
235554
235685
|
messageId: string;
|
|
235686
|
+
agentMessageBody?: string | undefined;
|
|
235555
235687
|
}>;
|
|
235556
235688
|
type DTOThreadMessageFinalizeInput = z__default.infer<typeof DTOThreadMessageFinalizeInput>;
|
|
235557
235689
|
declare const DTOThreadMessageCreateInput: z__default.ZodObject<Pick<{
|
|
@@ -259366,51 +259498,6 @@ declare class DesignSystemsEndpoint {
|
|
|
259366
259498
|
}>;
|
|
259367
259499
|
}
|
|
259368
259500
|
|
|
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
259501
|
declare class ForgeAgentsEndpoint {
|
|
259415
259502
|
private readonly requestExecutor;
|
|
259416
259503
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -264493,207 +264580,6 @@ declare class ForgeProjectIterationsEndpoint {
|
|
|
264493
264580
|
}>;
|
|
264494
264581
|
}
|
|
264495
264582
|
|
|
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
264583
|
declare class WorkspaceChatThreadsEndpoint {
|
|
264698
264584
|
private readonly requestExecutor;
|
|
264699
264585
|
readonly messages: ChatThreadMessagesEndpoint;
|
|
@@ -265555,6 +265441,59 @@ declare class WorkspacesEndpoint {
|
|
|
265555
265441
|
}>;
|
|
265556
265442
|
}
|
|
265557
265443
|
|
|
265444
|
+
declare class FilesEndpoint {
|
|
265445
|
+
private readonly requestExecutor;
|
|
265446
|
+
constructor(requestExecutor: RequestExecutor);
|
|
265447
|
+
upload(body: DTOFileUploadBulkPayload): Promise<{
|
|
265448
|
+
files: {
|
|
265449
|
+
id: string;
|
|
265450
|
+
name: string;
|
|
265451
|
+
url: string;
|
|
265452
|
+
size: number;
|
|
265453
|
+
deduplicationKey: string;
|
|
265454
|
+
storagePath: string;
|
|
265455
|
+
source?: {
|
|
265456
|
+
type: "UserUpload";
|
|
265457
|
+
userId: string;
|
|
265458
|
+
} | {
|
|
265459
|
+
type: "Figma";
|
|
265460
|
+
renderMode: "Image" | "HTML";
|
|
265461
|
+
} | undefined;
|
|
265462
|
+
pendingUpload?: boolean | undefined;
|
|
265463
|
+
}[];
|
|
265464
|
+
uploadUrls: {
|
|
265465
|
+
fileId: string;
|
|
265466
|
+
uploadUrl: string;
|
|
265467
|
+
}[];
|
|
265468
|
+
}>;
|
|
265469
|
+
finalizeUpload(body: DTOFileFinalizeBulkPayload): Promise<{
|
|
265470
|
+
files: {
|
|
265471
|
+
id: string;
|
|
265472
|
+
name: string;
|
|
265473
|
+
url: string;
|
|
265474
|
+
size: number;
|
|
265475
|
+
deduplicationKey: string;
|
|
265476
|
+
storagePath: string;
|
|
265477
|
+
source?: {
|
|
265478
|
+
type: "UserUpload";
|
|
265479
|
+
userId: string;
|
|
265480
|
+
} | {
|
|
265481
|
+
type: "Figma";
|
|
265482
|
+
renderMode: "Image" | "HTML";
|
|
265483
|
+
} | undefined;
|
|
265484
|
+
pendingUpload?: boolean | undefined;
|
|
265485
|
+
}[];
|
|
265486
|
+
}>;
|
|
265487
|
+
}
|
|
265488
|
+
|
|
265489
|
+
declare class LiveblocksEndpoint {
|
|
265490
|
+
private readonly requestExecutor;
|
|
265491
|
+
constructor(requestExecutor: RequestExecutor);
|
|
265492
|
+
auth(body: DTOLiveblocksAuthRequest): Promise<{
|
|
265493
|
+
token: string;
|
|
265494
|
+
}>;
|
|
265495
|
+
}
|
|
265496
|
+
|
|
265558
265497
|
declare class ThreadsEndpoint {
|
|
265559
265498
|
private readonly requestExecutor;
|
|
265560
265499
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -265661,6 +265600,199 @@ declare class ThreadsEndpoint {
|
|
|
265661
265600
|
}>;
|
|
265662
265601
|
}
|
|
265663
265602
|
|
|
265603
|
+
declare class UsersEndpoint {
|
|
265604
|
+
private readonly requestExecutor;
|
|
265605
|
+
constructor(requestExecutor: RequestExecutor);
|
|
265606
|
+
getMe(): Promise<{
|
|
265607
|
+
user: {
|
|
265608
|
+
id: string;
|
|
265609
|
+
createdAt: Date;
|
|
265610
|
+
email: string;
|
|
265611
|
+
profile: {
|
|
265612
|
+
name: string;
|
|
265613
|
+
nickname?: string | undefined;
|
|
265614
|
+
avatar?: string | undefined;
|
|
265615
|
+
onboarding?: {
|
|
265616
|
+
companyName?: string | undefined;
|
|
265617
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
265618
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
265619
|
+
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
265620
|
+
jobTitle?: string | undefined;
|
|
265621
|
+
phase?: string | undefined;
|
|
265622
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
265623
|
+
designSystemName?: string | undefined;
|
|
265624
|
+
defaultDestination?: string | undefined;
|
|
265625
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
265626
|
+
} | undefined;
|
|
265627
|
+
theme?: {
|
|
265628
|
+
backgroundColor?: string | undefined;
|
|
265629
|
+
accentColor?: string | undefined;
|
|
265630
|
+
contrast?: number | undefined;
|
|
265631
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
265632
|
+
secondaryBackgroundColor?: string | undefined;
|
|
265633
|
+
secondaryContrast?: number | undefined;
|
|
265634
|
+
isEditorWhite?: boolean | undefined;
|
|
265635
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
265636
|
+
} | undefined;
|
|
265637
|
+
};
|
|
265638
|
+
loggedOutAt?: Date | undefined;
|
|
265639
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
265640
|
+
};
|
|
265641
|
+
}>;
|
|
265642
|
+
listWorkspaces(uid: string): Promise<{
|
|
265643
|
+
membership: {
|
|
265644
|
+
workspace: {
|
|
265645
|
+
id: string;
|
|
265646
|
+
profile: {
|
|
265647
|
+
name: string;
|
|
265648
|
+
color: string;
|
|
265649
|
+
handle: string;
|
|
265650
|
+
avatar?: string | undefined;
|
|
265651
|
+
billingDetails?: {
|
|
265652
|
+
address?: {
|
|
265653
|
+
state?: string | undefined;
|
|
265654
|
+
street1?: string | undefined;
|
|
265655
|
+
street2?: string | undefined;
|
|
265656
|
+
city?: string | undefined;
|
|
265657
|
+
postal?: string | undefined;
|
|
265658
|
+
country?: string | undefined;
|
|
265659
|
+
} | undefined;
|
|
265660
|
+
email?: string | undefined;
|
|
265661
|
+
notes?: string | undefined;
|
|
265662
|
+
companyName?: string | undefined;
|
|
265663
|
+
companyId?: string | undefined;
|
|
265664
|
+
vat?: string | undefined;
|
|
265665
|
+
poNumber?: string | undefined;
|
|
265666
|
+
} | undefined;
|
|
265667
|
+
};
|
|
265668
|
+
subscription: {
|
|
265669
|
+
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
265670
|
+
seats: number;
|
|
265671
|
+
seatLimit: number;
|
|
265672
|
+
planPriceId: string;
|
|
265673
|
+
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
265674
|
+
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
265675
|
+
card?: {
|
|
265676
|
+
name?: string | null | undefined;
|
|
265677
|
+
cardId?: string | null | undefined;
|
|
265678
|
+
last4?: string | null | undefined;
|
|
265679
|
+
expiryMonth?: string | null | undefined;
|
|
265680
|
+
expiryYear?: string | null | undefined;
|
|
265681
|
+
brand?: string | null | undefined;
|
|
265682
|
+
} | undefined;
|
|
265683
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
265684
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
265685
|
+
builderSeatLimit?: number | undefined;
|
|
265686
|
+
fullSeatLimit?: number | undefined;
|
|
265687
|
+
builderSeats?: number | undefined;
|
|
265688
|
+
fullSeats?: number | undefined;
|
|
265689
|
+
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
265690
|
+
internalStatus?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
265691
|
+
stripeSubscriptionId?: string | undefined;
|
|
265692
|
+
stripeCustomerId?: string | undefined;
|
|
265693
|
+
currentPeriodStart?: string | undefined;
|
|
265694
|
+
currentPeriodEnd?: string | undefined;
|
|
265695
|
+
cancelAt?: string | undefined;
|
|
265696
|
+
fullSeatPriceId?: string | undefined;
|
|
265697
|
+
builderSeatPriceId?: string | undefined;
|
|
265698
|
+
subscriptionStatusUpdatedAt?: string | undefined;
|
|
265699
|
+
};
|
|
265700
|
+
aiFeaturesEnabled: boolean;
|
|
265701
|
+
aiAskFeaturesEnabled: boolean;
|
|
265702
|
+
npmRegistry?: {
|
|
265703
|
+
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
265704
|
+
registryUrl: string;
|
|
265705
|
+
proxyUrl: string;
|
|
265706
|
+
authType: "Custom" | "None" | "Basic" | "Bearer";
|
|
265707
|
+
enabledScopes: string[];
|
|
265708
|
+
bypassProxy: boolean;
|
|
265709
|
+
accessToken?: string | undefined;
|
|
265710
|
+
username?: string | undefined;
|
|
265711
|
+
customRegistryUrl?: string | undefined;
|
|
265712
|
+
password?: string | undefined;
|
|
265713
|
+
} | undefined;
|
|
265714
|
+
aiCustomInstruction?: string | undefined;
|
|
265715
|
+
};
|
|
265716
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
265717
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
265718
|
+
seatType: "Full" | "Builder" | "None";
|
|
265719
|
+
effectiveSeatType: "Full" | "Builder" | "None";
|
|
265720
|
+
}[];
|
|
265721
|
+
}>;
|
|
265722
|
+
delete(uid: string): Promise<{
|
|
265723
|
+
user: {
|
|
265724
|
+
id: string;
|
|
265725
|
+
createdAt: Date;
|
|
265726
|
+
email: string;
|
|
265727
|
+
profile: {
|
|
265728
|
+
name: string;
|
|
265729
|
+
nickname?: string | undefined;
|
|
265730
|
+
avatar?: string | undefined;
|
|
265731
|
+
onboarding?: {
|
|
265732
|
+
companyName?: string | undefined;
|
|
265733
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
265734
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
265735
|
+
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
265736
|
+
jobTitle?: string | undefined;
|
|
265737
|
+
phase?: string | undefined;
|
|
265738
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
265739
|
+
designSystemName?: string | undefined;
|
|
265740
|
+
defaultDestination?: string | undefined;
|
|
265741
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
265742
|
+
} | undefined;
|
|
265743
|
+
theme?: {
|
|
265744
|
+
backgroundColor?: string | undefined;
|
|
265745
|
+
accentColor?: string | undefined;
|
|
265746
|
+
contrast?: number | undefined;
|
|
265747
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
265748
|
+
secondaryBackgroundColor?: string | undefined;
|
|
265749
|
+
secondaryContrast?: number | undefined;
|
|
265750
|
+
isEditorWhite?: boolean | undefined;
|
|
265751
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
265752
|
+
} | undefined;
|
|
265753
|
+
};
|
|
265754
|
+
loggedOutAt?: Date | undefined;
|
|
265755
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
265756
|
+
};
|
|
265757
|
+
}>;
|
|
265758
|
+
updateProfile(uid: string, body: DTOUserProfileUpdate): Promise<{
|
|
265759
|
+
user: {
|
|
265760
|
+
id: string;
|
|
265761
|
+
createdAt: Date;
|
|
265762
|
+
email: string;
|
|
265763
|
+
profile: {
|
|
265764
|
+
name: string;
|
|
265765
|
+
nickname?: string | undefined;
|
|
265766
|
+
avatar?: string | undefined;
|
|
265767
|
+
onboarding?: {
|
|
265768
|
+
companyName?: string | undefined;
|
|
265769
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
265770
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
265771
|
+
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
265772
|
+
jobTitle?: string | undefined;
|
|
265773
|
+
phase?: string | undefined;
|
|
265774
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
265775
|
+
designSystemName?: string | undefined;
|
|
265776
|
+
defaultDestination?: string | undefined;
|
|
265777
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
265778
|
+
} | undefined;
|
|
265779
|
+
theme?: {
|
|
265780
|
+
backgroundColor?: string | undefined;
|
|
265781
|
+
accentColor?: string | undefined;
|
|
265782
|
+
contrast?: number | undefined;
|
|
265783
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
265784
|
+
secondaryBackgroundColor?: string | undefined;
|
|
265785
|
+
secondaryContrast?: number | undefined;
|
|
265786
|
+
isEditorWhite?: boolean | undefined;
|
|
265787
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
265788
|
+
} | undefined;
|
|
265789
|
+
};
|
|
265790
|
+
loggedOutAt?: Date | undefined;
|
|
265791
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
265792
|
+
};
|
|
265793
|
+
}>;
|
|
265794
|
+
}
|
|
265795
|
+
|
|
265664
265796
|
type SupernovaApiClientConfig = {
|
|
265665
265797
|
host: string;
|
|
265666
265798
|
accessToken: string;
|
|
@@ -268417,4 +268549,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
268417
268549
|
reason: ValidationErrorReason | undefined;
|
|
268418
268550
|
};
|
|
268419
268551
|
|
|
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 };
|
|
268552
|
+
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 };
|