@supernova-studio/client 1.52.1 → 1.52.2
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 +926 -37
- package/dist/index.d.ts +926 -37
- package/dist/index.js +101 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +181 -86
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -126440,16 +126440,16 @@ declare const DTOFeatureArtifact: z$1.ZodObject<{
|
|
|
126440
126440
|
type DTOFeatureArtifact = z$1.infer<typeof DTOFeatureArtifact>;
|
|
126441
126441
|
declare const DTOFeatureIterationState: z$1.ZodEnum<["InProgress", "Success", "Error", "Timeout"]>;
|
|
126442
126442
|
type DTOFeatureIterationState = z$1.infer<typeof DTOFeatureIterationState>;
|
|
126443
|
-
declare const DTOFeatureIterationErrorType: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown"]>;
|
|
126443
|
+
declare const DTOFeatureIterationErrorType: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown", "Runtime"]>;
|
|
126444
126444
|
type DTOFeatureIterationErrorType = z$1.infer<typeof DTOFeatureIterationErrorType>;
|
|
126445
126445
|
declare const DTOFeatureIterationError: z$1.ZodObject<{
|
|
126446
126446
|
description: z$1.ZodString;
|
|
126447
|
-
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown"]>;
|
|
126447
|
+
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown", "Runtime"]>;
|
|
126448
126448
|
}, "strip", z$1.ZodTypeAny, {
|
|
126449
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
126449
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
126450
126450
|
description: string;
|
|
126451
126451
|
}, {
|
|
126452
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
126452
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
126453
126453
|
description: string;
|
|
126454
126454
|
}>;
|
|
126455
126455
|
type DTOFeatureIterationError = z$1.infer<typeof DTOFeatureIterationError>;
|
|
@@ -126496,12 +126496,12 @@ declare const DTOFeatureIteration: z$1.ZodObject<{
|
|
|
126496
126496
|
*/
|
|
126497
126497
|
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
126498
126498
|
description: z$1.ZodString;
|
|
126499
|
-
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown"]>;
|
|
126499
|
+
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown", "Runtime"]>;
|
|
126500
126500
|
}, "strip", z$1.ZodTypeAny, {
|
|
126501
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
126501
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
126502
126502
|
description: string;
|
|
126503
126503
|
}, {
|
|
126504
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
126504
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
126505
126505
|
description: string;
|
|
126506
126506
|
}>>;
|
|
126507
126507
|
/**
|
|
@@ -126596,7 +126596,7 @@ declare const DTOFeatureIteration: z$1.ZodObject<{
|
|
|
126596
126596
|
updatedAt?: string | undefined;
|
|
126597
126597
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
126598
126598
|
error?: {
|
|
126599
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
126599
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
126600
126600
|
description: string;
|
|
126601
126601
|
} | undefined;
|
|
126602
126602
|
thumbnailUrl?: string | undefined;
|
|
@@ -126631,7 +126631,7 @@ declare const DTOFeatureIteration: z$1.ZodObject<{
|
|
|
126631
126631
|
updatedAt?: string | undefined;
|
|
126632
126632
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
126633
126633
|
error?: {
|
|
126634
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
126634
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
126635
126635
|
description: string;
|
|
126636
126636
|
} | undefined;
|
|
126637
126637
|
thumbnailUrl?: string | undefined;
|
|
@@ -126952,12 +126952,12 @@ declare const DTOFeatureIterationCreateInput: z$1.ZodObject<Pick<{
|
|
|
126952
126952
|
*/
|
|
126953
126953
|
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
126954
126954
|
description: z$1.ZodString;
|
|
126955
|
-
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown"]>;
|
|
126955
|
+
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown", "Runtime"]>;
|
|
126956
126956
|
}, "strip", z$1.ZodTypeAny, {
|
|
126957
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
126957
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
126958
126958
|
description: string;
|
|
126959
126959
|
}, {
|
|
126960
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
126960
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
126961
126961
|
description: string;
|
|
126962
126962
|
}>>;
|
|
126963
126963
|
/**
|
|
@@ -127963,12 +127963,12 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
127963
127963
|
*/
|
|
127964
127964
|
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
127965
127965
|
description: z$1.ZodString;
|
|
127966
|
-
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown"]>;
|
|
127966
|
+
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown", "Runtime"]>;
|
|
127967
127967
|
}, "strip", z$1.ZodTypeAny, {
|
|
127968
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
127968
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
127969
127969
|
description: string;
|
|
127970
127970
|
}, {
|
|
127971
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
127971
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
127972
127972
|
description: string;
|
|
127973
127973
|
}>>;
|
|
127974
127974
|
/**
|
|
@@ -128063,7 +128063,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
128063
128063
|
updatedAt?: string | undefined;
|
|
128064
128064
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
128065
128065
|
error?: {
|
|
128066
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
128066
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
128067
128067
|
description: string;
|
|
128068
128068
|
} | undefined;
|
|
128069
128069
|
thumbnailUrl?: string | undefined;
|
|
@@ -128098,7 +128098,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
128098
128098
|
updatedAt?: string | undefined;
|
|
128099
128099
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
128100
128100
|
error?: {
|
|
128101
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
128101
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
128102
128102
|
description: string;
|
|
128103
128103
|
} | undefined;
|
|
128104
128104
|
thumbnailUrl?: string | undefined;
|
|
@@ -128135,7 +128135,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
128135
128135
|
updatedAt?: string | undefined;
|
|
128136
128136
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
128137
128137
|
error?: {
|
|
128138
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
128138
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
128139
128139
|
description: string;
|
|
128140
128140
|
} | undefined;
|
|
128141
128141
|
thumbnailUrl?: string | undefined;
|
|
@@ -128172,7 +128172,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
128172
128172
|
updatedAt?: string | undefined;
|
|
128173
128173
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
128174
128174
|
error?: {
|
|
128175
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
128175
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
128176
128176
|
description: string;
|
|
128177
128177
|
} | undefined;
|
|
128178
128178
|
thumbnailUrl?: string | undefined;
|
|
@@ -128212,24 +128212,24 @@ declare const DTOFeatureIterationValidateResponse: z$1.ZodDiscriminatedUnion<"su
|
|
|
128212
128212
|
success: z$1.ZodLiteral<false>;
|
|
128213
128213
|
error: z$1.ZodObject<{
|
|
128214
128214
|
description: z$1.ZodString;
|
|
128215
|
-
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown"]>;
|
|
128215
|
+
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown", "Runtime"]>;
|
|
128216
128216
|
}, "strip", z$1.ZodTypeAny, {
|
|
128217
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
128217
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
128218
128218
|
description: string;
|
|
128219
128219
|
}, {
|
|
128220
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
128220
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
128221
128221
|
description: string;
|
|
128222
128222
|
}>;
|
|
128223
128223
|
}, "strip", z$1.ZodTypeAny, {
|
|
128224
128224
|
success: false;
|
|
128225
128225
|
error: {
|
|
128226
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
128226
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
128227
128227
|
description: string;
|
|
128228
128228
|
};
|
|
128229
128229
|
}, {
|
|
128230
128230
|
success: false;
|
|
128231
128231
|
error: {
|
|
128232
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
128232
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
128233
128233
|
description: string;
|
|
128234
128234
|
};
|
|
128235
128235
|
}>]>;
|
|
@@ -128278,12 +128278,12 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
128278
128278
|
*/
|
|
128279
128279
|
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
128280
128280
|
description: z$1.ZodString;
|
|
128281
|
-
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown"]>;
|
|
128281
|
+
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown", "Runtime"]>;
|
|
128282
128282
|
}, "strip", z$1.ZodTypeAny, {
|
|
128283
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
128283
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
128284
128284
|
description: string;
|
|
128285
128285
|
}, {
|
|
128286
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
128286
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
128287
128287
|
description: string;
|
|
128288
128288
|
}>>;
|
|
128289
128289
|
/**
|
|
@@ -128378,7 +128378,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
128378
128378
|
updatedAt?: string | undefined;
|
|
128379
128379
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
128380
128380
|
error?: {
|
|
128381
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
128381
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
128382
128382
|
description: string;
|
|
128383
128383
|
} | undefined;
|
|
128384
128384
|
thumbnailUrl?: string | undefined;
|
|
@@ -128413,7 +128413,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
128413
128413
|
updatedAt?: string | undefined;
|
|
128414
128414
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
128415
128415
|
error?: {
|
|
128416
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
128416
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
128417
128417
|
description: string;
|
|
128418
128418
|
} | undefined;
|
|
128419
128419
|
thumbnailUrl?: string | undefined;
|
|
@@ -128450,7 +128450,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
128450
128450
|
updatedAt?: string | undefined;
|
|
128451
128451
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
128452
128452
|
error?: {
|
|
128453
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
128453
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
128454
128454
|
description: string;
|
|
128455
128455
|
} | undefined;
|
|
128456
128456
|
thumbnailUrl?: string | undefined;
|
|
@@ -128487,7 +128487,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
128487
128487
|
updatedAt?: string | undefined;
|
|
128488
128488
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
128489
128489
|
error?: {
|
|
128490
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
128490
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
128491
128491
|
description: string;
|
|
128492
128492
|
} | undefined;
|
|
128493
128493
|
thumbnailUrl?: string | undefined;
|
|
@@ -264261,6 +264261,14 @@ declare const DTORemoveForgeProjectMember: z.ZodObject<Pick<{
|
|
|
264261
264261
|
userId: string;
|
|
264262
264262
|
}>;
|
|
264263
264263
|
type DTORemoveForgeProjectMember = z.infer<typeof DTORemoveForgeProjectMember>;
|
|
264264
|
+
declare const DTOForgeProjectMemberListQuery: z.ZodObject<{
|
|
264265
|
+
includeImplicitMembers: z.ZodOptional<z.ZodBoolean>;
|
|
264266
|
+
}, "strip", z.ZodTypeAny, {
|
|
264267
|
+
includeImplicitMembers?: boolean | undefined;
|
|
264268
|
+
}, {
|
|
264269
|
+
includeImplicitMembers?: boolean | undefined;
|
|
264270
|
+
}>;
|
|
264271
|
+
type DTOForgeProjectMemberListQuery = z.infer<typeof DTOForgeProjectMemberListQuery>;
|
|
264264
264272
|
declare const DTOForgeProjectMembersListResponse: z.ZodObject<{
|
|
264265
264273
|
members: z.ZodArray<z.ZodObject<{
|
|
264266
264274
|
userId: z.ZodString;
|
|
@@ -333249,10 +333257,13 @@ declare const DTOThreadMessageFinalizeInput: z$1.ZodObject<{
|
|
|
333249
333257
|
type DTOThreadMessageFinalizeInput = z$1.infer<typeof DTOThreadMessageFinalizeInput>;
|
|
333250
333258
|
declare const DTOThreadMessageRetryInput: z$1.ZodObject<{
|
|
333251
333259
|
agentMessageId: z$1.ZodString;
|
|
333260
|
+
runtimeError: z$1.ZodOptional<z$1.ZodString>;
|
|
333252
333261
|
}, "strip", z$1.ZodTypeAny, {
|
|
333253
333262
|
agentMessageId: string;
|
|
333263
|
+
runtimeError?: string | undefined;
|
|
333254
333264
|
}, {
|
|
333255
333265
|
agentMessageId: string;
|
|
333266
|
+
runtimeError?: string | undefined;
|
|
333256
333267
|
}>;
|
|
333257
333268
|
type DTOThreadMessageRetryInput = z$1.infer<typeof DTOThreadMessageRetryInput>;
|
|
333258
333269
|
declare const DTOThreadMessageCreateInput: z$1.ZodObject<Pick<{
|
|
@@ -341602,6 +341613,92 @@ declare const DTOWorkspaceMember: z.ZodObject<{
|
|
|
341602
341613
|
seatType: z.ZodEnum<["Full", "Builder", "None"]>;
|
|
341603
341614
|
effectiveSeatType: z.ZodEnum<["Full", "Builder", "None"]>;
|
|
341604
341615
|
isDeactivated: z.ZodBoolean;
|
|
341616
|
+
notificationSettings: z.ZodObject<{
|
|
341617
|
+
ChatMention: z.ZodObject<{
|
|
341618
|
+
enabled: z.ZodBoolean;
|
|
341619
|
+
email: z.ZodBoolean;
|
|
341620
|
+
}, "strip", z.ZodTypeAny, {
|
|
341621
|
+
email: boolean;
|
|
341622
|
+
enabled: boolean;
|
|
341623
|
+
}, {
|
|
341624
|
+
email: boolean;
|
|
341625
|
+
enabled: boolean;
|
|
341626
|
+
}>;
|
|
341627
|
+
ProjectDocumentComment: z.ZodObject<{
|
|
341628
|
+
enabled: z.ZodBoolean;
|
|
341629
|
+
email: z.ZodBoolean;
|
|
341630
|
+
}, "strip", z.ZodTypeAny, {
|
|
341631
|
+
email: boolean;
|
|
341632
|
+
enabled: boolean;
|
|
341633
|
+
}, {
|
|
341634
|
+
email: boolean;
|
|
341635
|
+
enabled: boolean;
|
|
341636
|
+
}>;
|
|
341637
|
+
ProjectInvitation: z.ZodObject<{
|
|
341638
|
+
enabled: z.ZodBoolean;
|
|
341639
|
+
email: z.ZodBoolean;
|
|
341640
|
+
}, "strip", z.ZodTypeAny, {
|
|
341641
|
+
email: boolean;
|
|
341642
|
+
enabled: boolean;
|
|
341643
|
+
}, {
|
|
341644
|
+
email: boolean;
|
|
341645
|
+
enabled: boolean;
|
|
341646
|
+
}>;
|
|
341647
|
+
DesignDocumentComment: z.ZodObject<Omit<{
|
|
341648
|
+
enabled: z.ZodBoolean;
|
|
341649
|
+
email: z.ZodBoolean;
|
|
341650
|
+
}, "enabled">, "strip", z.ZodTypeAny, {
|
|
341651
|
+
email: boolean;
|
|
341652
|
+
}, {
|
|
341653
|
+
email: boolean;
|
|
341654
|
+
}>;
|
|
341655
|
+
} & {
|
|
341656
|
+
liveblocksNotificationSettings: z.ZodObject<{
|
|
341657
|
+
sendCommentNotificationEmails: z.ZodBoolean;
|
|
341658
|
+
}, "strip", z.ZodTypeAny, {
|
|
341659
|
+
sendCommentNotificationEmails: boolean;
|
|
341660
|
+
}, {
|
|
341661
|
+
sendCommentNotificationEmails: boolean;
|
|
341662
|
+
}>;
|
|
341663
|
+
}, "strip", z.ZodTypeAny, {
|
|
341664
|
+
DesignDocumentComment: {
|
|
341665
|
+
email: boolean;
|
|
341666
|
+
};
|
|
341667
|
+
ChatMention: {
|
|
341668
|
+
email: boolean;
|
|
341669
|
+
enabled: boolean;
|
|
341670
|
+
};
|
|
341671
|
+
ProjectDocumentComment: {
|
|
341672
|
+
email: boolean;
|
|
341673
|
+
enabled: boolean;
|
|
341674
|
+
};
|
|
341675
|
+
ProjectInvitation: {
|
|
341676
|
+
email: boolean;
|
|
341677
|
+
enabled: boolean;
|
|
341678
|
+
};
|
|
341679
|
+
liveblocksNotificationSettings: {
|
|
341680
|
+
sendCommentNotificationEmails: boolean;
|
|
341681
|
+
};
|
|
341682
|
+
}, {
|
|
341683
|
+
DesignDocumentComment: {
|
|
341684
|
+
email: boolean;
|
|
341685
|
+
};
|
|
341686
|
+
ChatMention: {
|
|
341687
|
+
email: boolean;
|
|
341688
|
+
enabled: boolean;
|
|
341689
|
+
};
|
|
341690
|
+
ProjectDocumentComment: {
|
|
341691
|
+
email: boolean;
|
|
341692
|
+
enabled: boolean;
|
|
341693
|
+
};
|
|
341694
|
+
ProjectInvitation: {
|
|
341695
|
+
email: boolean;
|
|
341696
|
+
enabled: boolean;
|
|
341697
|
+
};
|
|
341698
|
+
liveblocksNotificationSettings: {
|
|
341699
|
+
sendCommentNotificationEmails: boolean;
|
|
341700
|
+
};
|
|
341701
|
+
}>;
|
|
341605
341702
|
}, "strip", z.ZodTypeAny, {
|
|
341606
341703
|
user: {
|
|
341607
341704
|
email: string;
|
|
@@ -341659,6 +341756,26 @@ declare const DTOWorkspaceMember: z.ZodObject<{
|
|
|
341659
341756
|
seatType: "Full" | "Builder" | "None";
|
|
341660
341757
|
effectiveSeatType: "Full" | "Builder" | "None";
|
|
341661
341758
|
membershipId: string;
|
|
341759
|
+
notificationSettings: {
|
|
341760
|
+
DesignDocumentComment: {
|
|
341761
|
+
email: boolean;
|
|
341762
|
+
};
|
|
341763
|
+
ChatMention: {
|
|
341764
|
+
email: boolean;
|
|
341765
|
+
enabled: boolean;
|
|
341766
|
+
};
|
|
341767
|
+
ProjectDocumentComment: {
|
|
341768
|
+
email: boolean;
|
|
341769
|
+
enabled: boolean;
|
|
341770
|
+
};
|
|
341771
|
+
ProjectInvitation: {
|
|
341772
|
+
email: boolean;
|
|
341773
|
+
enabled: boolean;
|
|
341774
|
+
};
|
|
341775
|
+
liveblocksNotificationSettings: {
|
|
341776
|
+
sendCommentNotificationEmails: boolean;
|
|
341777
|
+
};
|
|
341778
|
+
};
|
|
341662
341779
|
}, {
|
|
341663
341780
|
user: {
|
|
341664
341781
|
email: string;
|
|
@@ -341716,6 +341833,26 @@ declare const DTOWorkspaceMember: z.ZodObject<{
|
|
|
341716
341833
|
seatType: "Full" | "Builder" | "None";
|
|
341717
341834
|
effectiveSeatType: "Full" | "Builder" | "None";
|
|
341718
341835
|
membershipId: string;
|
|
341836
|
+
notificationSettings: {
|
|
341837
|
+
DesignDocumentComment: {
|
|
341838
|
+
email: boolean;
|
|
341839
|
+
};
|
|
341840
|
+
ChatMention: {
|
|
341841
|
+
email: boolean;
|
|
341842
|
+
enabled: boolean;
|
|
341843
|
+
};
|
|
341844
|
+
ProjectDocumentComment: {
|
|
341845
|
+
email: boolean;
|
|
341846
|
+
enabled: boolean;
|
|
341847
|
+
};
|
|
341848
|
+
ProjectInvitation: {
|
|
341849
|
+
email: boolean;
|
|
341850
|
+
enabled: boolean;
|
|
341851
|
+
};
|
|
341852
|
+
liveblocksNotificationSettings: {
|
|
341853
|
+
sendCommentNotificationEmails: boolean;
|
|
341854
|
+
};
|
|
341855
|
+
};
|
|
341719
341856
|
}>;
|
|
341720
341857
|
type DTOWorkspaceMember = z.infer<typeof DTOWorkspaceMember>;
|
|
341721
341858
|
declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
@@ -342835,6 +342972,92 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
|
|
|
342835
342972
|
seatType: z.ZodEnum<["Full", "Builder", "None"]>;
|
|
342836
342973
|
effectiveSeatType: z.ZodEnum<["Full", "Builder", "None"]>;
|
|
342837
342974
|
isDeactivated: z.ZodBoolean;
|
|
342975
|
+
notificationSettings: z.ZodObject<{
|
|
342976
|
+
ChatMention: z.ZodObject<{
|
|
342977
|
+
enabled: z.ZodBoolean;
|
|
342978
|
+
email: z.ZodBoolean;
|
|
342979
|
+
}, "strip", z.ZodTypeAny, {
|
|
342980
|
+
email: boolean;
|
|
342981
|
+
enabled: boolean;
|
|
342982
|
+
}, {
|
|
342983
|
+
email: boolean;
|
|
342984
|
+
enabled: boolean;
|
|
342985
|
+
}>;
|
|
342986
|
+
ProjectDocumentComment: z.ZodObject<{
|
|
342987
|
+
enabled: z.ZodBoolean;
|
|
342988
|
+
email: z.ZodBoolean;
|
|
342989
|
+
}, "strip", z.ZodTypeAny, {
|
|
342990
|
+
email: boolean;
|
|
342991
|
+
enabled: boolean;
|
|
342992
|
+
}, {
|
|
342993
|
+
email: boolean;
|
|
342994
|
+
enabled: boolean;
|
|
342995
|
+
}>;
|
|
342996
|
+
ProjectInvitation: z.ZodObject<{
|
|
342997
|
+
enabled: z.ZodBoolean;
|
|
342998
|
+
email: z.ZodBoolean;
|
|
342999
|
+
}, "strip", z.ZodTypeAny, {
|
|
343000
|
+
email: boolean;
|
|
343001
|
+
enabled: boolean;
|
|
343002
|
+
}, {
|
|
343003
|
+
email: boolean;
|
|
343004
|
+
enabled: boolean;
|
|
343005
|
+
}>;
|
|
343006
|
+
DesignDocumentComment: z.ZodObject<Omit<{
|
|
343007
|
+
enabled: z.ZodBoolean;
|
|
343008
|
+
email: z.ZodBoolean;
|
|
343009
|
+
}, "enabled">, "strip", z.ZodTypeAny, {
|
|
343010
|
+
email: boolean;
|
|
343011
|
+
}, {
|
|
343012
|
+
email: boolean;
|
|
343013
|
+
}>;
|
|
343014
|
+
} & {
|
|
343015
|
+
liveblocksNotificationSettings: z.ZodObject<{
|
|
343016
|
+
sendCommentNotificationEmails: z.ZodBoolean;
|
|
343017
|
+
}, "strip", z.ZodTypeAny, {
|
|
343018
|
+
sendCommentNotificationEmails: boolean;
|
|
343019
|
+
}, {
|
|
343020
|
+
sendCommentNotificationEmails: boolean;
|
|
343021
|
+
}>;
|
|
343022
|
+
}, "strip", z.ZodTypeAny, {
|
|
343023
|
+
DesignDocumentComment: {
|
|
343024
|
+
email: boolean;
|
|
343025
|
+
};
|
|
343026
|
+
ChatMention: {
|
|
343027
|
+
email: boolean;
|
|
343028
|
+
enabled: boolean;
|
|
343029
|
+
};
|
|
343030
|
+
ProjectDocumentComment: {
|
|
343031
|
+
email: boolean;
|
|
343032
|
+
enabled: boolean;
|
|
343033
|
+
};
|
|
343034
|
+
ProjectInvitation: {
|
|
343035
|
+
email: boolean;
|
|
343036
|
+
enabled: boolean;
|
|
343037
|
+
};
|
|
343038
|
+
liveblocksNotificationSettings: {
|
|
343039
|
+
sendCommentNotificationEmails: boolean;
|
|
343040
|
+
};
|
|
343041
|
+
}, {
|
|
343042
|
+
DesignDocumentComment: {
|
|
343043
|
+
email: boolean;
|
|
343044
|
+
};
|
|
343045
|
+
ChatMention: {
|
|
343046
|
+
email: boolean;
|
|
343047
|
+
enabled: boolean;
|
|
343048
|
+
};
|
|
343049
|
+
ProjectDocumentComment: {
|
|
343050
|
+
email: boolean;
|
|
343051
|
+
enabled: boolean;
|
|
343052
|
+
};
|
|
343053
|
+
ProjectInvitation: {
|
|
343054
|
+
email: boolean;
|
|
343055
|
+
enabled: boolean;
|
|
343056
|
+
};
|
|
343057
|
+
liveblocksNotificationSettings: {
|
|
343058
|
+
sendCommentNotificationEmails: boolean;
|
|
343059
|
+
};
|
|
343060
|
+
}>;
|
|
342838
343061
|
}, "strip", z.ZodTypeAny, {
|
|
342839
343062
|
user: {
|
|
342840
343063
|
email: string;
|
|
@@ -342892,6 +343115,26 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
|
|
|
342892
343115
|
seatType: "Full" | "Builder" | "None";
|
|
342893
343116
|
effectiveSeatType: "Full" | "Builder" | "None";
|
|
342894
343117
|
membershipId: string;
|
|
343118
|
+
notificationSettings: {
|
|
343119
|
+
DesignDocumentComment: {
|
|
343120
|
+
email: boolean;
|
|
343121
|
+
};
|
|
343122
|
+
ChatMention: {
|
|
343123
|
+
email: boolean;
|
|
343124
|
+
enabled: boolean;
|
|
343125
|
+
};
|
|
343126
|
+
ProjectDocumentComment: {
|
|
343127
|
+
email: boolean;
|
|
343128
|
+
enabled: boolean;
|
|
343129
|
+
};
|
|
343130
|
+
ProjectInvitation: {
|
|
343131
|
+
email: boolean;
|
|
343132
|
+
enabled: boolean;
|
|
343133
|
+
};
|
|
343134
|
+
liveblocksNotificationSettings: {
|
|
343135
|
+
sendCommentNotificationEmails: boolean;
|
|
343136
|
+
};
|
|
343137
|
+
};
|
|
342895
343138
|
}, {
|
|
342896
343139
|
user: {
|
|
342897
343140
|
email: string;
|
|
@@ -342949,6 +343192,26 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
|
|
|
342949
343192
|
seatType: "Full" | "Builder" | "None";
|
|
342950
343193
|
effectiveSeatType: "Full" | "Builder" | "None";
|
|
342951
343194
|
membershipId: string;
|
|
343195
|
+
notificationSettings: {
|
|
343196
|
+
DesignDocumentComment: {
|
|
343197
|
+
email: boolean;
|
|
343198
|
+
};
|
|
343199
|
+
ChatMention: {
|
|
343200
|
+
email: boolean;
|
|
343201
|
+
enabled: boolean;
|
|
343202
|
+
};
|
|
343203
|
+
ProjectDocumentComment: {
|
|
343204
|
+
email: boolean;
|
|
343205
|
+
enabled: boolean;
|
|
343206
|
+
};
|
|
343207
|
+
ProjectInvitation: {
|
|
343208
|
+
email: boolean;
|
|
343209
|
+
enabled: boolean;
|
|
343210
|
+
};
|
|
343211
|
+
liveblocksNotificationSettings: {
|
|
343212
|
+
sendCommentNotificationEmails: boolean;
|
|
343213
|
+
};
|
|
343214
|
+
};
|
|
342952
343215
|
}>, "many">;
|
|
342953
343216
|
}, "strip", z.ZodTypeAny, {
|
|
342954
343217
|
members: {
|
|
@@ -343008,6 +343271,26 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
|
|
|
343008
343271
|
seatType: "Full" | "Builder" | "None";
|
|
343009
343272
|
effectiveSeatType: "Full" | "Builder" | "None";
|
|
343010
343273
|
membershipId: string;
|
|
343274
|
+
notificationSettings: {
|
|
343275
|
+
DesignDocumentComment: {
|
|
343276
|
+
email: boolean;
|
|
343277
|
+
};
|
|
343278
|
+
ChatMention: {
|
|
343279
|
+
email: boolean;
|
|
343280
|
+
enabled: boolean;
|
|
343281
|
+
};
|
|
343282
|
+
ProjectDocumentComment: {
|
|
343283
|
+
email: boolean;
|
|
343284
|
+
enabled: boolean;
|
|
343285
|
+
};
|
|
343286
|
+
ProjectInvitation: {
|
|
343287
|
+
email: boolean;
|
|
343288
|
+
enabled: boolean;
|
|
343289
|
+
};
|
|
343290
|
+
liveblocksNotificationSettings: {
|
|
343291
|
+
sendCommentNotificationEmails: boolean;
|
|
343292
|
+
};
|
|
343293
|
+
};
|
|
343011
343294
|
}[];
|
|
343012
343295
|
}, {
|
|
343013
343296
|
members: {
|
|
@@ -343067,6 +343350,26 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
|
|
|
343067
343350
|
seatType: "Full" | "Builder" | "None";
|
|
343068
343351
|
effectiveSeatType: "Full" | "Builder" | "None";
|
|
343069
343352
|
membershipId: string;
|
|
343353
|
+
notificationSettings: {
|
|
343354
|
+
DesignDocumentComment: {
|
|
343355
|
+
email: boolean;
|
|
343356
|
+
};
|
|
343357
|
+
ChatMention: {
|
|
343358
|
+
email: boolean;
|
|
343359
|
+
enabled: boolean;
|
|
343360
|
+
};
|
|
343361
|
+
ProjectDocumentComment: {
|
|
343362
|
+
email: boolean;
|
|
343363
|
+
enabled: boolean;
|
|
343364
|
+
};
|
|
343365
|
+
ProjectInvitation: {
|
|
343366
|
+
email: boolean;
|
|
343367
|
+
enabled: boolean;
|
|
343368
|
+
};
|
|
343369
|
+
liveblocksNotificationSettings: {
|
|
343370
|
+
sendCommentNotificationEmails: boolean;
|
|
343371
|
+
};
|
|
343372
|
+
};
|
|
343070
343373
|
}[];
|
|
343071
343374
|
}>;
|
|
343072
343375
|
type DTOWorkspaceMembersListResponse = z.infer<typeof DTOWorkspaceMembersListResponse>;
|
|
@@ -348196,6 +348499,374 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
348196
348499
|
}>;
|
|
348197
348500
|
type DTOWorkspaceResponse = z.infer<typeof DTOWorkspaceResponse>;
|
|
348198
348501
|
|
|
348502
|
+
declare const DTOUserNotificationSettings: z.ZodObject<{
|
|
348503
|
+
ChatMention: z.ZodObject<{
|
|
348504
|
+
enabled: z.ZodBoolean;
|
|
348505
|
+
email: z.ZodBoolean;
|
|
348506
|
+
}, "strip", z.ZodTypeAny, {
|
|
348507
|
+
email: boolean;
|
|
348508
|
+
enabled: boolean;
|
|
348509
|
+
}, {
|
|
348510
|
+
email: boolean;
|
|
348511
|
+
enabled: boolean;
|
|
348512
|
+
}>;
|
|
348513
|
+
ProjectDocumentComment: z.ZodObject<{
|
|
348514
|
+
enabled: z.ZodBoolean;
|
|
348515
|
+
email: z.ZodBoolean;
|
|
348516
|
+
}, "strip", z.ZodTypeAny, {
|
|
348517
|
+
email: boolean;
|
|
348518
|
+
enabled: boolean;
|
|
348519
|
+
}, {
|
|
348520
|
+
email: boolean;
|
|
348521
|
+
enabled: boolean;
|
|
348522
|
+
}>;
|
|
348523
|
+
ProjectInvitation: z.ZodObject<{
|
|
348524
|
+
enabled: z.ZodBoolean;
|
|
348525
|
+
email: z.ZodBoolean;
|
|
348526
|
+
}, "strip", z.ZodTypeAny, {
|
|
348527
|
+
email: boolean;
|
|
348528
|
+
enabled: boolean;
|
|
348529
|
+
}, {
|
|
348530
|
+
email: boolean;
|
|
348531
|
+
enabled: boolean;
|
|
348532
|
+
}>;
|
|
348533
|
+
DesignDocumentComment: z.ZodObject<Omit<{
|
|
348534
|
+
enabled: z.ZodBoolean;
|
|
348535
|
+
email: z.ZodBoolean;
|
|
348536
|
+
}, "enabled">, "strip", z.ZodTypeAny, {
|
|
348537
|
+
email: boolean;
|
|
348538
|
+
}, {
|
|
348539
|
+
email: boolean;
|
|
348540
|
+
}>;
|
|
348541
|
+
} & {
|
|
348542
|
+
liveblocksNotificationSettings: z.ZodObject<{
|
|
348543
|
+
sendCommentNotificationEmails: z.ZodBoolean;
|
|
348544
|
+
}, "strip", z.ZodTypeAny, {
|
|
348545
|
+
sendCommentNotificationEmails: boolean;
|
|
348546
|
+
}, {
|
|
348547
|
+
sendCommentNotificationEmails: boolean;
|
|
348548
|
+
}>;
|
|
348549
|
+
}, "strip", z.ZodTypeAny, {
|
|
348550
|
+
DesignDocumentComment: {
|
|
348551
|
+
email: boolean;
|
|
348552
|
+
};
|
|
348553
|
+
ChatMention: {
|
|
348554
|
+
email: boolean;
|
|
348555
|
+
enabled: boolean;
|
|
348556
|
+
};
|
|
348557
|
+
ProjectDocumentComment: {
|
|
348558
|
+
email: boolean;
|
|
348559
|
+
enabled: boolean;
|
|
348560
|
+
};
|
|
348561
|
+
ProjectInvitation: {
|
|
348562
|
+
email: boolean;
|
|
348563
|
+
enabled: boolean;
|
|
348564
|
+
};
|
|
348565
|
+
liveblocksNotificationSettings: {
|
|
348566
|
+
sendCommentNotificationEmails: boolean;
|
|
348567
|
+
};
|
|
348568
|
+
}, {
|
|
348569
|
+
DesignDocumentComment: {
|
|
348570
|
+
email: boolean;
|
|
348571
|
+
};
|
|
348572
|
+
ChatMention: {
|
|
348573
|
+
email: boolean;
|
|
348574
|
+
enabled: boolean;
|
|
348575
|
+
};
|
|
348576
|
+
ProjectDocumentComment: {
|
|
348577
|
+
email: boolean;
|
|
348578
|
+
enabled: boolean;
|
|
348579
|
+
};
|
|
348580
|
+
ProjectInvitation: {
|
|
348581
|
+
email: boolean;
|
|
348582
|
+
enabled: boolean;
|
|
348583
|
+
};
|
|
348584
|
+
liveblocksNotificationSettings: {
|
|
348585
|
+
sendCommentNotificationEmails: boolean;
|
|
348586
|
+
};
|
|
348587
|
+
}>;
|
|
348588
|
+
type DTOUserNotificationSettings = z.infer<typeof DTOUserNotificationSettings>;
|
|
348589
|
+
declare const DTONotificationType: z.ZodEnum<["DesignDocumentComment", "ChatMention", "ProjectDocumentComment", "ProjectInvitation"]>;
|
|
348590
|
+
type DTONotificationType = z.infer<typeof DTONotificationType>;
|
|
348591
|
+
declare const DTONotificationChannel: z.ZodEnum<["Email", "InApp"]>;
|
|
348592
|
+
type DTONotificationChannel = z.infer<typeof DTONotificationChannel>;
|
|
348593
|
+
|
|
348594
|
+
declare const DTONotificationCreateInput: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
348595
|
+
type: z.ZodLiteral<"ChatMention">;
|
|
348596
|
+
activityData: z.ZodObject<{
|
|
348597
|
+
messageAuthorId: z.ZodString;
|
|
348598
|
+
messageText: z.ZodString;
|
|
348599
|
+
messageId: z.ZodString;
|
|
348600
|
+
parentMessageId: z.ZodOptional<z.ZodString>;
|
|
348601
|
+
workspaceId: z.ZodString;
|
|
348602
|
+
projectId: z.ZodString;
|
|
348603
|
+
subjectType: z.ZodString;
|
|
348604
|
+
threadSubjectId: z.ZodString;
|
|
348605
|
+
subjectName: z.ZodString;
|
|
348606
|
+
}, "strip", z.ZodTypeAny, {
|
|
348607
|
+
workspaceId: string;
|
|
348608
|
+
projectId: string;
|
|
348609
|
+
messageId: string;
|
|
348610
|
+
subjectType: string;
|
|
348611
|
+
messageAuthorId: string;
|
|
348612
|
+
messageText: string;
|
|
348613
|
+
threadSubjectId: string;
|
|
348614
|
+
subjectName: string;
|
|
348615
|
+
parentMessageId?: string | undefined;
|
|
348616
|
+
}, {
|
|
348617
|
+
workspaceId: string;
|
|
348618
|
+
projectId: string;
|
|
348619
|
+
messageId: string;
|
|
348620
|
+
subjectType: string;
|
|
348621
|
+
messageAuthorId: string;
|
|
348622
|
+
messageText: string;
|
|
348623
|
+
threadSubjectId: string;
|
|
348624
|
+
subjectName: string;
|
|
348625
|
+
parentMessageId?: string | undefined;
|
|
348626
|
+
}>;
|
|
348627
|
+
}, "strip", z.ZodTypeAny, {
|
|
348628
|
+
type: "ChatMention";
|
|
348629
|
+
activityData: {
|
|
348630
|
+
workspaceId: string;
|
|
348631
|
+
projectId: string;
|
|
348632
|
+
messageId: string;
|
|
348633
|
+
subjectType: string;
|
|
348634
|
+
messageAuthorId: string;
|
|
348635
|
+
messageText: string;
|
|
348636
|
+
threadSubjectId: string;
|
|
348637
|
+
subjectName: string;
|
|
348638
|
+
parentMessageId?: string | undefined;
|
|
348639
|
+
};
|
|
348640
|
+
}, {
|
|
348641
|
+
type: "ChatMention";
|
|
348642
|
+
activityData: {
|
|
348643
|
+
workspaceId: string;
|
|
348644
|
+
projectId: string;
|
|
348645
|
+
messageId: string;
|
|
348646
|
+
subjectType: string;
|
|
348647
|
+
messageAuthorId: string;
|
|
348648
|
+
messageText: string;
|
|
348649
|
+
threadSubjectId: string;
|
|
348650
|
+
subjectName: string;
|
|
348651
|
+
parentMessageId?: string | undefined;
|
|
348652
|
+
};
|
|
348653
|
+
}>, z.ZodObject<{
|
|
348654
|
+
type: z.ZodLiteral<"ProjectInvitation">;
|
|
348655
|
+
activityData: z.ZodObject<{
|
|
348656
|
+
workspaceId: z.ZodString;
|
|
348657
|
+
projectId: z.ZodString;
|
|
348658
|
+
projectTitle: z.ZodString;
|
|
348659
|
+
invitedByUserId: z.ZodString;
|
|
348660
|
+
invitationRole: z.ZodString;
|
|
348661
|
+
}, "strip", z.ZodTypeAny, {
|
|
348662
|
+
workspaceId: string;
|
|
348663
|
+
projectId: string;
|
|
348664
|
+
projectTitle: string;
|
|
348665
|
+
invitedByUserId: string;
|
|
348666
|
+
invitationRole: string;
|
|
348667
|
+
}, {
|
|
348668
|
+
workspaceId: string;
|
|
348669
|
+
projectId: string;
|
|
348670
|
+
projectTitle: string;
|
|
348671
|
+
invitedByUserId: string;
|
|
348672
|
+
invitationRole: string;
|
|
348673
|
+
}>;
|
|
348674
|
+
}, "strip", z.ZodTypeAny, {
|
|
348675
|
+
type: "ProjectInvitation";
|
|
348676
|
+
activityData: {
|
|
348677
|
+
workspaceId: string;
|
|
348678
|
+
projectId: string;
|
|
348679
|
+
projectTitle: string;
|
|
348680
|
+
invitedByUserId: string;
|
|
348681
|
+
invitationRole: string;
|
|
348682
|
+
};
|
|
348683
|
+
}, {
|
|
348684
|
+
type: "ProjectInvitation";
|
|
348685
|
+
activityData: {
|
|
348686
|
+
workspaceId: string;
|
|
348687
|
+
projectId: string;
|
|
348688
|
+
projectTitle: string;
|
|
348689
|
+
invitedByUserId: string;
|
|
348690
|
+
invitationRole: string;
|
|
348691
|
+
};
|
|
348692
|
+
}>, z.ZodObject<{
|
|
348693
|
+
type: z.ZodLiteral<"ProjectDocumentComment">;
|
|
348694
|
+
activityData: z.ZodObject<{
|
|
348695
|
+
documentId: z.ZodString;
|
|
348696
|
+
entityTitle: z.ZodString;
|
|
348697
|
+
projectId: z.ZodString;
|
|
348698
|
+
workspaceId: z.ZodString;
|
|
348699
|
+
threadId: z.ZodString;
|
|
348700
|
+
commentId: z.ZodString;
|
|
348701
|
+
commentCreatedAt: z.ZodString;
|
|
348702
|
+
commentAuthorId: z.ZodString;
|
|
348703
|
+
commentBody: z.ZodString;
|
|
348704
|
+
}, "strip", z.ZodTypeAny, {
|
|
348705
|
+
workspaceId: string;
|
|
348706
|
+
projectId: string;
|
|
348707
|
+
threadId: string;
|
|
348708
|
+
documentId: string;
|
|
348709
|
+
entityTitle: string;
|
|
348710
|
+
commentId: string;
|
|
348711
|
+
commentCreatedAt: string;
|
|
348712
|
+
commentAuthorId: string;
|
|
348713
|
+
commentBody: string;
|
|
348714
|
+
}, {
|
|
348715
|
+
workspaceId: string;
|
|
348716
|
+
projectId: string;
|
|
348717
|
+
threadId: string;
|
|
348718
|
+
documentId: string;
|
|
348719
|
+
entityTitle: string;
|
|
348720
|
+
commentId: string;
|
|
348721
|
+
commentCreatedAt: string;
|
|
348722
|
+
commentAuthorId: string;
|
|
348723
|
+
commentBody: string;
|
|
348724
|
+
}>;
|
|
348725
|
+
}, "strip", z.ZodTypeAny, {
|
|
348726
|
+
type: "ProjectDocumentComment";
|
|
348727
|
+
activityData: {
|
|
348728
|
+
workspaceId: string;
|
|
348729
|
+
projectId: string;
|
|
348730
|
+
threadId: string;
|
|
348731
|
+
documentId: string;
|
|
348732
|
+
entityTitle: string;
|
|
348733
|
+
commentId: string;
|
|
348734
|
+
commentCreatedAt: string;
|
|
348735
|
+
commentAuthorId: string;
|
|
348736
|
+
commentBody: string;
|
|
348737
|
+
};
|
|
348738
|
+
}, {
|
|
348739
|
+
type: "ProjectDocumentComment";
|
|
348740
|
+
activityData: {
|
|
348741
|
+
workspaceId: string;
|
|
348742
|
+
projectId: string;
|
|
348743
|
+
threadId: string;
|
|
348744
|
+
documentId: string;
|
|
348745
|
+
entityTitle: string;
|
|
348746
|
+
commentId: string;
|
|
348747
|
+
commentCreatedAt: string;
|
|
348748
|
+
commentAuthorId: string;
|
|
348749
|
+
commentBody: string;
|
|
348750
|
+
};
|
|
348751
|
+
}>]>, z.ZodObject<{
|
|
348752
|
+
userId: z.ZodString;
|
|
348753
|
+
subjectId: z.ZodString;
|
|
348754
|
+
roomId: z.ZodOptional<z.ZodString>;
|
|
348755
|
+
workspaceId: z.ZodString;
|
|
348756
|
+
}, "strip", z.ZodTypeAny, {
|
|
348757
|
+
userId: string;
|
|
348758
|
+
workspaceId: string;
|
|
348759
|
+
subjectId: string;
|
|
348760
|
+
roomId?: string | undefined;
|
|
348761
|
+
}, {
|
|
348762
|
+
userId: string;
|
|
348763
|
+
workspaceId: string;
|
|
348764
|
+
subjectId: string;
|
|
348765
|
+
roomId?: string | undefined;
|
|
348766
|
+
}>>;
|
|
348767
|
+
type DTONotificationCreateInput = z.infer<typeof DTONotificationCreateInput>;
|
|
348768
|
+
declare const DTONotificationChatMentionPayload: z.ZodObject<{
|
|
348769
|
+
messageAuthorId: z.ZodString;
|
|
348770
|
+
messageText: z.ZodString;
|
|
348771
|
+
messageId: z.ZodString;
|
|
348772
|
+
parentMessageId: z.ZodOptional<z.ZodString>;
|
|
348773
|
+
workspaceId: z.ZodString;
|
|
348774
|
+
projectId: z.ZodString;
|
|
348775
|
+
subjectType: z.ZodString;
|
|
348776
|
+
threadSubjectId: z.ZodString;
|
|
348777
|
+
subjectName: z.ZodString;
|
|
348778
|
+
}, "strip", z.ZodTypeAny, {
|
|
348779
|
+
workspaceId: string;
|
|
348780
|
+
projectId: string;
|
|
348781
|
+
messageId: string;
|
|
348782
|
+
subjectType: string;
|
|
348783
|
+
messageAuthorId: string;
|
|
348784
|
+
messageText: string;
|
|
348785
|
+
threadSubjectId: string;
|
|
348786
|
+
subjectName: string;
|
|
348787
|
+
parentMessageId?: string | undefined;
|
|
348788
|
+
}, {
|
|
348789
|
+
workspaceId: string;
|
|
348790
|
+
projectId: string;
|
|
348791
|
+
messageId: string;
|
|
348792
|
+
subjectType: string;
|
|
348793
|
+
messageAuthorId: string;
|
|
348794
|
+
messageText: string;
|
|
348795
|
+
threadSubjectId: string;
|
|
348796
|
+
subjectName: string;
|
|
348797
|
+
parentMessageId?: string | undefined;
|
|
348798
|
+
}>;
|
|
348799
|
+
type DTONotificationChatMentionPayload = z.infer<typeof DTONotificationChatMentionPayload>;
|
|
348800
|
+
declare const DTONotificationProjectInvitationPayload: z.ZodObject<{
|
|
348801
|
+
workspaceId: z.ZodString;
|
|
348802
|
+
projectId: z.ZodString;
|
|
348803
|
+
projectTitle: z.ZodString;
|
|
348804
|
+
invitedByUserId: z.ZodString;
|
|
348805
|
+
invitationRole: z.ZodString;
|
|
348806
|
+
}, "strip", z.ZodTypeAny, {
|
|
348807
|
+
workspaceId: string;
|
|
348808
|
+
projectId: string;
|
|
348809
|
+
projectTitle: string;
|
|
348810
|
+
invitedByUserId: string;
|
|
348811
|
+
invitationRole: string;
|
|
348812
|
+
}, {
|
|
348813
|
+
workspaceId: string;
|
|
348814
|
+
projectId: string;
|
|
348815
|
+
projectTitle: string;
|
|
348816
|
+
invitedByUserId: string;
|
|
348817
|
+
invitationRole: string;
|
|
348818
|
+
}>;
|
|
348819
|
+
type DTONotificationProjectInvitationPayload = z.infer<typeof DTONotificationProjectInvitationPayload>;
|
|
348820
|
+
declare const DTONotificationProjectDocumentCommentPayload: z.ZodObject<{
|
|
348821
|
+
documentId: z.ZodString;
|
|
348822
|
+
entityTitle: z.ZodString;
|
|
348823
|
+
projectId: z.ZodString;
|
|
348824
|
+
workspaceId: z.ZodString;
|
|
348825
|
+
threadId: z.ZodString;
|
|
348826
|
+
commentId: z.ZodString;
|
|
348827
|
+
commentCreatedAt: z.ZodString;
|
|
348828
|
+
commentAuthorId: z.ZodString;
|
|
348829
|
+
commentBody: z.ZodString;
|
|
348830
|
+
}, "strip", z.ZodTypeAny, {
|
|
348831
|
+
workspaceId: string;
|
|
348832
|
+
projectId: string;
|
|
348833
|
+
threadId: string;
|
|
348834
|
+
documentId: string;
|
|
348835
|
+
entityTitle: string;
|
|
348836
|
+
commentId: string;
|
|
348837
|
+
commentCreatedAt: string;
|
|
348838
|
+
commentAuthorId: string;
|
|
348839
|
+
commentBody: string;
|
|
348840
|
+
}, {
|
|
348841
|
+
workspaceId: string;
|
|
348842
|
+
projectId: string;
|
|
348843
|
+
threadId: string;
|
|
348844
|
+
documentId: string;
|
|
348845
|
+
entityTitle: string;
|
|
348846
|
+
commentId: string;
|
|
348847
|
+
commentCreatedAt: string;
|
|
348848
|
+
commentAuthorId: string;
|
|
348849
|
+
commentBody: string;
|
|
348850
|
+
}>;
|
|
348851
|
+
type DTONotificationProjectDocumentCommentPayload = z.infer<typeof DTONotificationProjectDocumentCommentPayload>;
|
|
348852
|
+
declare const DTONotificationBase: z.ZodObject<{
|
|
348853
|
+
userId: z.ZodString;
|
|
348854
|
+
subjectId: z.ZodString;
|
|
348855
|
+
roomId: z.ZodOptional<z.ZodString>;
|
|
348856
|
+
workspaceId: z.ZodString;
|
|
348857
|
+
}, "strip", z.ZodTypeAny, {
|
|
348858
|
+
userId: string;
|
|
348859
|
+
workspaceId: string;
|
|
348860
|
+
subjectId: string;
|
|
348861
|
+
roomId?: string | undefined;
|
|
348862
|
+
}, {
|
|
348863
|
+
userId: string;
|
|
348864
|
+
workspaceId: string;
|
|
348865
|
+
subjectId: string;
|
|
348866
|
+
roomId?: string | undefined;
|
|
348867
|
+
}>;
|
|
348868
|
+
type DTONotificationBase = z.infer<typeof DTONotificationBase>;
|
|
348869
|
+
|
|
348199
348870
|
type PageAnalyticsInput = {
|
|
348200
348871
|
pagePersistentId: string;
|
|
348201
348872
|
priorDataPoints: PublishedDocPageVisitsEntry[];
|
|
@@ -352149,6 +352820,45 @@ type DTOLiveblocksAuthRequest = z.infer<typeof DTOLiveblocksAuthRequest>;
|
|
|
352149
352820
|
|
|
352150
352821
|
declare const DTOUpdateUserNotificationSettingsPayload: z.ZodObject<{
|
|
352151
352822
|
notificationSettings: z.ZodObject<{
|
|
352823
|
+
ChatMention: z.ZodObject<{
|
|
352824
|
+
enabled: z.ZodBoolean;
|
|
352825
|
+
email: z.ZodBoolean;
|
|
352826
|
+
}, "strip", z.ZodTypeAny, {
|
|
352827
|
+
email: boolean;
|
|
352828
|
+
enabled: boolean;
|
|
352829
|
+
}, {
|
|
352830
|
+
email: boolean;
|
|
352831
|
+
enabled: boolean;
|
|
352832
|
+
}>;
|
|
352833
|
+
ProjectDocumentComment: z.ZodObject<{
|
|
352834
|
+
enabled: z.ZodBoolean;
|
|
352835
|
+
email: z.ZodBoolean;
|
|
352836
|
+
}, "strip", z.ZodTypeAny, {
|
|
352837
|
+
email: boolean;
|
|
352838
|
+
enabled: boolean;
|
|
352839
|
+
}, {
|
|
352840
|
+
email: boolean;
|
|
352841
|
+
enabled: boolean;
|
|
352842
|
+
}>;
|
|
352843
|
+
ProjectInvitation: z.ZodObject<{
|
|
352844
|
+
enabled: z.ZodBoolean;
|
|
352845
|
+
email: z.ZodBoolean;
|
|
352846
|
+
}, "strip", z.ZodTypeAny, {
|
|
352847
|
+
email: boolean;
|
|
352848
|
+
enabled: boolean;
|
|
352849
|
+
}, {
|
|
352850
|
+
email: boolean;
|
|
352851
|
+
enabled: boolean;
|
|
352852
|
+
}>;
|
|
352853
|
+
DesignDocumentComment: z.ZodObject<Omit<{
|
|
352854
|
+
enabled: z.ZodBoolean;
|
|
352855
|
+
email: z.ZodBoolean;
|
|
352856
|
+
}, "enabled">, "strip", z.ZodTypeAny, {
|
|
352857
|
+
email: boolean;
|
|
352858
|
+
}, {
|
|
352859
|
+
email: boolean;
|
|
352860
|
+
}>;
|
|
352861
|
+
} & {
|
|
352152
352862
|
liveblocksNotificationSettings: z.ZodObject<{
|
|
352153
352863
|
sendCommentNotificationEmails: z.ZodBoolean;
|
|
352154
352864
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -352157,22 +352867,82 @@ declare const DTOUpdateUserNotificationSettingsPayload: z.ZodObject<{
|
|
|
352157
352867
|
sendCommentNotificationEmails: boolean;
|
|
352158
352868
|
}>;
|
|
352159
352869
|
}, "strip", z.ZodTypeAny, {
|
|
352870
|
+
DesignDocumentComment: {
|
|
352871
|
+
email: boolean;
|
|
352872
|
+
};
|
|
352873
|
+
ChatMention: {
|
|
352874
|
+
email: boolean;
|
|
352875
|
+
enabled: boolean;
|
|
352876
|
+
};
|
|
352877
|
+
ProjectDocumentComment: {
|
|
352878
|
+
email: boolean;
|
|
352879
|
+
enabled: boolean;
|
|
352880
|
+
};
|
|
352881
|
+
ProjectInvitation: {
|
|
352882
|
+
email: boolean;
|
|
352883
|
+
enabled: boolean;
|
|
352884
|
+
};
|
|
352160
352885
|
liveblocksNotificationSettings: {
|
|
352161
352886
|
sendCommentNotificationEmails: boolean;
|
|
352162
352887
|
};
|
|
352163
352888
|
}, {
|
|
352889
|
+
DesignDocumentComment: {
|
|
352890
|
+
email: boolean;
|
|
352891
|
+
};
|
|
352892
|
+
ChatMention: {
|
|
352893
|
+
email: boolean;
|
|
352894
|
+
enabled: boolean;
|
|
352895
|
+
};
|
|
352896
|
+
ProjectDocumentComment: {
|
|
352897
|
+
email: boolean;
|
|
352898
|
+
enabled: boolean;
|
|
352899
|
+
};
|
|
352900
|
+
ProjectInvitation: {
|
|
352901
|
+
email: boolean;
|
|
352902
|
+
enabled: boolean;
|
|
352903
|
+
};
|
|
352164
352904
|
liveblocksNotificationSettings: {
|
|
352165
352905
|
sendCommentNotificationEmails: boolean;
|
|
352166
352906
|
};
|
|
352167
352907
|
}>;
|
|
352168
352908
|
}, "strip", z.ZodTypeAny, {
|
|
352169
352909
|
notificationSettings: {
|
|
352910
|
+
DesignDocumentComment: {
|
|
352911
|
+
email: boolean;
|
|
352912
|
+
};
|
|
352913
|
+
ChatMention: {
|
|
352914
|
+
email: boolean;
|
|
352915
|
+
enabled: boolean;
|
|
352916
|
+
};
|
|
352917
|
+
ProjectDocumentComment: {
|
|
352918
|
+
email: boolean;
|
|
352919
|
+
enabled: boolean;
|
|
352920
|
+
};
|
|
352921
|
+
ProjectInvitation: {
|
|
352922
|
+
email: boolean;
|
|
352923
|
+
enabled: boolean;
|
|
352924
|
+
};
|
|
352170
352925
|
liveblocksNotificationSettings: {
|
|
352171
352926
|
sendCommentNotificationEmails: boolean;
|
|
352172
352927
|
};
|
|
352173
352928
|
};
|
|
352174
352929
|
}, {
|
|
352175
352930
|
notificationSettings: {
|
|
352931
|
+
DesignDocumentComment: {
|
|
352932
|
+
email: boolean;
|
|
352933
|
+
};
|
|
352934
|
+
ChatMention: {
|
|
352935
|
+
email: boolean;
|
|
352936
|
+
enabled: boolean;
|
|
352937
|
+
};
|
|
352938
|
+
ProjectDocumentComment: {
|
|
352939
|
+
email: boolean;
|
|
352940
|
+
enabled: boolean;
|
|
352941
|
+
};
|
|
352942
|
+
ProjectInvitation: {
|
|
352943
|
+
email: boolean;
|
|
352944
|
+
enabled: boolean;
|
|
352945
|
+
};
|
|
352176
352946
|
liveblocksNotificationSettings: {
|
|
352177
352947
|
sendCommentNotificationEmails: boolean;
|
|
352178
352948
|
};
|
|
@@ -352183,6 +352953,45 @@ declare const DTOUserNotificationSettingsResponse: z.ZodObject<{
|
|
|
352183
352953
|
userId: z.ZodString;
|
|
352184
352954
|
workspaceId: z.ZodString;
|
|
352185
352955
|
notificationSettings: z.ZodObject<{
|
|
352956
|
+
ChatMention: z.ZodObject<{
|
|
352957
|
+
enabled: z.ZodBoolean;
|
|
352958
|
+
email: z.ZodBoolean;
|
|
352959
|
+
}, "strip", z.ZodTypeAny, {
|
|
352960
|
+
email: boolean;
|
|
352961
|
+
enabled: boolean;
|
|
352962
|
+
}, {
|
|
352963
|
+
email: boolean;
|
|
352964
|
+
enabled: boolean;
|
|
352965
|
+
}>;
|
|
352966
|
+
ProjectDocumentComment: z.ZodObject<{
|
|
352967
|
+
enabled: z.ZodBoolean;
|
|
352968
|
+
email: z.ZodBoolean;
|
|
352969
|
+
}, "strip", z.ZodTypeAny, {
|
|
352970
|
+
email: boolean;
|
|
352971
|
+
enabled: boolean;
|
|
352972
|
+
}, {
|
|
352973
|
+
email: boolean;
|
|
352974
|
+
enabled: boolean;
|
|
352975
|
+
}>;
|
|
352976
|
+
ProjectInvitation: z.ZodObject<{
|
|
352977
|
+
enabled: z.ZodBoolean;
|
|
352978
|
+
email: z.ZodBoolean;
|
|
352979
|
+
}, "strip", z.ZodTypeAny, {
|
|
352980
|
+
email: boolean;
|
|
352981
|
+
enabled: boolean;
|
|
352982
|
+
}, {
|
|
352983
|
+
email: boolean;
|
|
352984
|
+
enabled: boolean;
|
|
352985
|
+
}>;
|
|
352986
|
+
DesignDocumentComment: z.ZodObject<Omit<{
|
|
352987
|
+
enabled: z.ZodBoolean;
|
|
352988
|
+
email: z.ZodBoolean;
|
|
352989
|
+
}, "enabled">, "strip", z.ZodTypeAny, {
|
|
352990
|
+
email: boolean;
|
|
352991
|
+
}, {
|
|
352992
|
+
email: boolean;
|
|
352993
|
+
}>;
|
|
352994
|
+
} & {
|
|
352186
352995
|
liveblocksNotificationSettings: z.ZodObject<{
|
|
352187
352996
|
sendCommentNotificationEmails: z.ZodBoolean;
|
|
352188
352997
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -352191,10 +353000,40 @@ declare const DTOUserNotificationSettingsResponse: z.ZodObject<{
|
|
|
352191
353000
|
sendCommentNotificationEmails: boolean;
|
|
352192
353001
|
}>;
|
|
352193
353002
|
}, "strip", z.ZodTypeAny, {
|
|
353003
|
+
DesignDocumentComment: {
|
|
353004
|
+
email: boolean;
|
|
353005
|
+
};
|
|
353006
|
+
ChatMention: {
|
|
353007
|
+
email: boolean;
|
|
353008
|
+
enabled: boolean;
|
|
353009
|
+
};
|
|
353010
|
+
ProjectDocumentComment: {
|
|
353011
|
+
email: boolean;
|
|
353012
|
+
enabled: boolean;
|
|
353013
|
+
};
|
|
353014
|
+
ProjectInvitation: {
|
|
353015
|
+
email: boolean;
|
|
353016
|
+
enabled: boolean;
|
|
353017
|
+
};
|
|
352194
353018
|
liveblocksNotificationSettings: {
|
|
352195
353019
|
sendCommentNotificationEmails: boolean;
|
|
352196
353020
|
};
|
|
352197
353021
|
}, {
|
|
353022
|
+
DesignDocumentComment: {
|
|
353023
|
+
email: boolean;
|
|
353024
|
+
};
|
|
353025
|
+
ChatMention: {
|
|
353026
|
+
email: boolean;
|
|
353027
|
+
enabled: boolean;
|
|
353028
|
+
};
|
|
353029
|
+
ProjectDocumentComment: {
|
|
353030
|
+
email: boolean;
|
|
353031
|
+
enabled: boolean;
|
|
353032
|
+
};
|
|
353033
|
+
ProjectInvitation: {
|
|
353034
|
+
email: boolean;
|
|
353035
|
+
enabled: boolean;
|
|
353036
|
+
};
|
|
352198
353037
|
liveblocksNotificationSettings: {
|
|
352199
353038
|
sendCommentNotificationEmails: boolean;
|
|
352200
353039
|
};
|
|
@@ -352203,6 +353042,21 @@ declare const DTOUserNotificationSettingsResponse: z.ZodObject<{
|
|
|
352203
353042
|
userId: string;
|
|
352204
353043
|
workspaceId: string;
|
|
352205
353044
|
notificationSettings: {
|
|
353045
|
+
DesignDocumentComment: {
|
|
353046
|
+
email: boolean;
|
|
353047
|
+
};
|
|
353048
|
+
ChatMention: {
|
|
353049
|
+
email: boolean;
|
|
353050
|
+
enabled: boolean;
|
|
353051
|
+
};
|
|
353052
|
+
ProjectDocumentComment: {
|
|
353053
|
+
email: boolean;
|
|
353054
|
+
enabled: boolean;
|
|
353055
|
+
};
|
|
353056
|
+
ProjectInvitation: {
|
|
353057
|
+
email: boolean;
|
|
353058
|
+
enabled: boolean;
|
|
353059
|
+
};
|
|
352206
353060
|
liveblocksNotificationSettings: {
|
|
352207
353061
|
sendCommentNotificationEmails: boolean;
|
|
352208
353062
|
};
|
|
@@ -352211,6 +353065,21 @@ declare const DTOUserNotificationSettingsResponse: z.ZodObject<{
|
|
|
352211
353065
|
userId: string;
|
|
352212
353066
|
workspaceId: string;
|
|
352213
353067
|
notificationSettings: {
|
|
353068
|
+
DesignDocumentComment: {
|
|
353069
|
+
email: boolean;
|
|
353070
|
+
};
|
|
353071
|
+
ChatMention: {
|
|
353072
|
+
email: boolean;
|
|
353073
|
+
enabled: boolean;
|
|
353074
|
+
};
|
|
353075
|
+
ProjectDocumentComment: {
|
|
353076
|
+
email: boolean;
|
|
353077
|
+
enabled: boolean;
|
|
353078
|
+
};
|
|
353079
|
+
ProjectInvitation: {
|
|
353080
|
+
email: boolean;
|
|
353081
|
+
enabled: boolean;
|
|
353082
|
+
};
|
|
352214
353083
|
liveblocksNotificationSettings: {
|
|
352215
353084
|
sendCommentNotificationEmails: boolean;
|
|
352216
353085
|
};
|
|
@@ -359356,7 +360225,7 @@ declare class ForgeFeatureArtifactsEndpoint {
|
|
|
359356
360225
|
updatedAt?: string | undefined;
|
|
359357
360226
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
359358
360227
|
error?: {
|
|
359359
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
360228
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
359360
360229
|
description: string;
|
|
359361
360230
|
} | undefined;
|
|
359362
360231
|
thumbnailUrl?: string | undefined;
|
|
@@ -359411,7 +360280,7 @@ declare class ForgeFeatureIterationsEndpoint {
|
|
|
359411
360280
|
updatedAt?: string | undefined;
|
|
359412
360281
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
359413
360282
|
error?: {
|
|
359414
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
360283
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
359415
360284
|
description: string;
|
|
359416
360285
|
} | undefined;
|
|
359417
360286
|
thumbnailUrl?: string | undefined;
|
|
@@ -359449,7 +360318,7 @@ declare class ForgeFeatureIterationsEndpoint {
|
|
|
359449
360318
|
updatedAt?: string | undefined;
|
|
359450
360319
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
359451
360320
|
error?: {
|
|
359452
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
360321
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
359453
360322
|
description: string;
|
|
359454
360323
|
} | undefined;
|
|
359455
360324
|
thumbnailUrl?: string | undefined;
|
|
@@ -359483,7 +360352,7 @@ declare class ForgeFeatureIterationsEndpoint {
|
|
|
359483
360352
|
} | {
|
|
359484
360353
|
success: false;
|
|
359485
360354
|
error: {
|
|
359486
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
360355
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
359487
360356
|
description: string;
|
|
359488
360357
|
};
|
|
359489
360358
|
}>;
|
|
@@ -359681,7 +360550,7 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
359681
360550
|
updatedAt?: string | undefined;
|
|
359682
360551
|
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
359683
360552
|
error?: {
|
|
359684
|
-
type: "Unknown" | "Build" | "PackageInstall" | "Compile";
|
|
360553
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
359685
360554
|
description: string;
|
|
359686
360555
|
} | undefined;
|
|
359687
360556
|
thumbnailUrl?: string | undefined;
|
|
@@ -369088,6 +369957,26 @@ declare class WorkspaceMembersEndpoint {
|
|
|
369088
369957
|
seatType: "Full" | "Builder" | "None";
|
|
369089
369958
|
effectiveSeatType: "Full" | "Builder" | "None";
|
|
369090
369959
|
membershipId: string;
|
|
369960
|
+
notificationSettings: {
|
|
369961
|
+
DesignDocumentComment: {
|
|
369962
|
+
email: boolean;
|
|
369963
|
+
};
|
|
369964
|
+
ChatMention: {
|
|
369965
|
+
email: boolean;
|
|
369966
|
+
enabled: boolean;
|
|
369967
|
+
};
|
|
369968
|
+
ProjectDocumentComment: {
|
|
369969
|
+
email: boolean;
|
|
369970
|
+
enabled: boolean;
|
|
369971
|
+
};
|
|
369972
|
+
ProjectInvitation: {
|
|
369973
|
+
email: boolean;
|
|
369974
|
+
enabled: boolean;
|
|
369975
|
+
};
|
|
369976
|
+
liveblocksNotificationSettings: {
|
|
369977
|
+
sendCommentNotificationEmails: boolean;
|
|
369978
|
+
};
|
|
369979
|
+
};
|
|
369091
369980
|
}[];
|
|
369092
369981
|
}>;
|
|
369093
369982
|
update(workspaceId: string, body: UpdateMembershipRolesInput): Promise<{
|
|
@@ -373161,4 +374050,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
373161
374050
|
reason: ValidationErrorReason | undefined;
|
|
373162
374051
|
};
|
|
373163
374052
|
|
|
373164
|
-
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, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFeatureUpdateThemeInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, 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, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, 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, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageRetryInput, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, 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, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceDefaultProjectAccessMode, DTOWorkspaceDefaultProjectRole, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceRoomEvent, 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, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeMemoryEndpoint, 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, MCPStreamsEndpoint, 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, SandboxTemplateBuildsEndpoint, SandboxTemplatesEndpoint, SandboxesEndpoint, 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, WorkspaceBillingEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, 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, zodQueryBoolean };
|
|
374053
|
+
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, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFeatureUpdateThemeInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, 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, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberListQuery, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONotificationBase, DTONotificationChannel, DTONotificationChatMentionPayload, DTONotificationCreateInput, DTONotificationProjectDocumentCommentPayload, DTONotificationProjectInvitationPayload, DTONotificationType, 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, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageRetryInput, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, 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, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettings, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceDefaultProjectAccessMode, DTOWorkspaceDefaultProjectRole, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceRoomEvent, 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, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeMemoryEndpoint, 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, MCPStreamsEndpoint, 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, SandboxTemplateBuildsEndpoint, SandboxTemplatesEndpoint, SandboxesEndpoint, 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, WorkspaceBillingEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, 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, zodQueryBoolean };
|