@supernova-studio/client 1.52.1 → 1.52.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +926 -37
- package/dist/index.d.ts +926 -37
- package/dist/index.js +277 -182
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +534 -439
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
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.ZodEffects<z.ZodOptional<z.ZodString>, boolean | undefined, string | undefined>>;
|
|
264266
|
+
}, "strip", z.ZodTypeAny, {
|
|
264267
|
+
includeImplicitMembers?: boolean | undefined;
|
|
264268
|
+
}, {
|
|
264269
|
+
includeImplicitMembers?: string | 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;
|
|
@@ -313439,6 +313447,374 @@ declare const DTOMCPStreamResponse: z$1.ZodObject<{
|
|
|
313439
313447
|
}>;
|
|
313440
313448
|
type DTOMCPStreamResponse = z$1.infer<typeof DTOMCPStreamResponse>;
|
|
313441
313449
|
|
|
313450
|
+
declare const DTONotificationCreateInput: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
313451
|
+
type: z.ZodLiteral<"ChatMention">;
|
|
313452
|
+
activityData: z.ZodObject<{
|
|
313453
|
+
messageAuthorId: z.ZodString;
|
|
313454
|
+
messageText: z.ZodString;
|
|
313455
|
+
messageId: z.ZodString;
|
|
313456
|
+
parentMessageId: z.ZodOptional<z.ZodString>;
|
|
313457
|
+
workspaceId: z.ZodString;
|
|
313458
|
+
projectId: z.ZodString;
|
|
313459
|
+
subjectType: z.ZodString;
|
|
313460
|
+
threadSubjectId: z.ZodString;
|
|
313461
|
+
subjectName: z.ZodString;
|
|
313462
|
+
}, "strip", z.ZodTypeAny, {
|
|
313463
|
+
workspaceId: string;
|
|
313464
|
+
projectId: string;
|
|
313465
|
+
messageId: string;
|
|
313466
|
+
subjectType: string;
|
|
313467
|
+
messageAuthorId: string;
|
|
313468
|
+
messageText: string;
|
|
313469
|
+
threadSubjectId: string;
|
|
313470
|
+
subjectName: string;
|
|
313471
|
+
parentMessageId?: string | undefined;
|
|
313472
|
+
}, {
|
|
313473
|
+
workspaceId: string;
|
|
313474
|
+
projectId: string;
|
|
313475
|
+
messageId: string;
|
|
313476
|
+
subjectType: string;
|
|
313477
|
+
messageAuthorId: string;
|
|
313478
|
+
messageText: string;
|
|
313479
|
+
threadSubjectId: string;
|
|
313480
|
+
subjectName: string;
|
|
313481
|
+
parentMessageId?: string | undefined;
|
|
313482
|
+
}>;
|
|
313483
|
+
}, "strip", z.ZodTypeAny, {
|
|
313484
|
+
type: "ChatMention";
|
|
313485
|
+
activityData: {
|
|
313486
|
+
workspaceId: string;
|
|
313487
|
+
projectId: string;
|
|
313488
|
+
messageId: string;
|
|
313489
|
+
subjectType: string;
|
|
313490
|
+
messageAuthorId: string;
|
|
313491
|
+
messageText: string;
|
|
313492
|
+
threadSubjectId: string;
|
|
313493
|
+
subjectName: string;
|
|
313494
|
+
parentMessageId?: string | undefined;
|
|
313495
|
+
};
|
|
313496
|
+
}, {
|
|
313497
|
+
type: "ChatMention";
|
|
313498
|
+
activityData: {
|
|
313499
|
+
workspaceId: string;
|
|
313500
|
+
projectId: string;
|
|
313501
|
+
messageId: string;
|
|
313502
|
+
subjectType: string;
|
|
313503
|
+
messageAuthorId: string;
|
|
313504
|
+
messageText: string;
|
|
313505
|
+
threadSubjectId: string;
|
|
313506
|
+
subjectName: string;
|
|
313507
|
+
parentMessageId?: string | undefined;
|
|
313508
|
+
};
|
|
313509
|
+
}>, z.ZodObject<{
|
|
313510
|
+
type: z.ZodLiteral<"ProjectInvitation">;
|
|
313511
|
+
activityData: z.ZodObject<{
|
|
313512
|
+
workspaceId: z.ZodString;
|
|
313513
|
+
projectId: z.ZodString;
|
|
313514
|
+
projectTitle: z.ZodString;
|
|
313515
|
+
invitedByUserId: z.ZodString;
|
|
313516
|
+
invitationRole: z.ZodString;
|
|
313517
|
+
}, "strip", z.ZodTypeAny, {
|
|
313518
|
+
workspaceId: string;
|
|
313519
|
+
projectId: string;
|
|
313520
|
+
projectTitle: string;
|
|
313521
|
+
invitedByUserId: string;
|
|
313522
|
+
invitationRole: string;
|
|
313523
|
+
}, {
|
|
313524
|
+
workspaceId: string;
|
|
313525
|
+
projectId: string;
|
|
313526
|
+
projectTitle: string;
|
|
313527
|
+
invitedByUserId: string;
|
|
313528
|
+
invitationRole: string;
|
|
313529
|
+
}>;
|
|
313530
|
+
}, "strip", z.ZodTypeAny, {
|
|
313531
|
+
type: "ProjectInvitation";
|
|
313532
|
+
activityData: {
|
|
313533
|
+
workspaceId: string;
|
|
313534
|
+
projectId: string;
|
|
313535
|
+
projectTitle: string;
|
|
313536
|
+
invitedByUserId: string;
|
|
313537
|
+
invitationRole: string;
|
|
313538
|
+
};
|
|
313539
|
+
}, {
|
|
313540
|
+
type: "ProjectInvitation";
|
|
313541
|
+
activityData: {
|
|
313542
|
+
workspaceId: string;
|
|
313543
|
+
projectId: string;
|
|
313544
|
+
projectTitle: string;
|
|
313545
|
+
invitedByUserId: string;
|
|
313546
|
+
invitationRole: string;
|
|
313547
|
+
};
|
|
313548
|
+
}>, z.ZodObject<{
|
|
313549
|
+
type: z.ZodLiteral<"ProjectDocumentComment">;
|
|
313550
|
+
activityData: z.ZodObject<{
|
|
313551
|
+
documentId: z.ZodString;
|
|
313552
|
+
entityTitle: z.ZodString;
|
|
313553
|
+
projectId: z.ZodString;
|
|
313554
|
+
workspaceId: z.ZodString;
|
|
313555
|
+
threadId: z.ZodString;
|
|
313556
|
+
commentId: z.ZodString;
|
|
313557
|
+
commentCreatedAt: z.ZodString;
|
|
313558
|
+
commentAuthorId: z.ZodString;
|
|
313559
|
+
commentBody: z.ZodString;
|
|
313560
|
+
}, "strip", z.ZodTypeAny, {
|
|
313561
|
+
workspaceId: string;
|
|
313562
|
+
projectId: string;
|
|
313563
|
+
threadId: string;
|
|
313564
|
+
documentId: string;
|
|
313565
|
+
entityTitle: string;
|
|
313566
|
+
commentId: string;
|
|
313567
|
+
commentCreatedAt: string;
|
|
313568
|
+
commentAuthorId: string;
|
|
313569
|
+
commentBody: string;
|
|
313570
|
+
}, {
|
|
313571
|
+
workspaceId: string;
|
|
313572
|
+
projectId: string;
|
|
313573
|
+
threadId: string;
|
|
313574
|
+
documentId: string;
|
|
313575
|
+
entityTitle: string;
|
|
313576
|
+
commentId: string;
|
|
313577
|
+
commentCreatedAt: string;
|
|
313578
|
+
commentAuthorId: string;
|
|
313579
|
+
commentBody: string;
|
|
313580
|
+
}>;
|
|
313581
|
+
}, "strip", z.ZodTypeAny, {
|
|
313582
|
+
type: "ProjectDocumentComment";
|
|
313583
|
+
activityData: {
|
|
313584
|
+
workspaceId: string;
|
|
313585
|
+
projectId: string;
|
|
313586
|
+
threadId: string;
|
|
313587
|
+
documentId: string;
|
|
313588
|
+
entityTitle: string;
|
|
313589
|
+
commentId: string;
|
|
313590
|
+
commentCreatedAt: string;
|
|
313591
|
+
commentAuthorId: string;
|
|
313592
|
+
commentBody: string;
|
|
313593
|
+
};
|
|
313594
|
+
}, {
|
|
313595
|
+
type: "ProjectDocumentComment";
|
|
313596
|
+
activityData: {
|
|
313597
|
+
workspaceId: string;
|
|
313598
|
+
projectId: string;
|
|
313599
|
+
threadId: string;
|
|
313600
|
+
documentId: string;
|
|
313601
|
+
entityTitle: string;
|
|
313602
|
+
commentId: string;
|
|
313603
|
+
commentCreatedAt: string;
|
|
313604
|
+
commentAuthorId: string;
|
|
313605
|
+
commentBody: string;
|
|
313606
|
+
};
|
|
313607
|
+
}>]>, z.ZodObject<{
|
|
313608
|
+
userId: z.ZodString;
|
|
313609
|
+
subjectId: z.ZodString;
|
|
313610
|
+
roomId: z.ZodOptional<z.ZodString>;
|
|
313611
|
+
workspaceId: z.ZodString;
|
|
313612
|
+
}, "strip", z.ZodTypeAny, {
|
|
313613
|
+
userId: string;
|
|
313614
|
+
workspaceId: string;
|
|
313615
|
+
subjectId: string;
|
|
313616
|
+
roomId?: string | undefined;
|
|
313617
|
+
}, {
|
|
313618
|
+
userId: string;
|
|
313619
|
+
workspaceId: string;
|
|
313620
|
+
subjectId: string;
|
|
313621
|
+
roomId?: string | undefined;
|
|
313622
|
+
}>>;
|
|
313623
|
+
type DTONotificationCreateInput = z.infer<typeof DTONotificationCreateInput>;
|
|
313624
|
+
declare const DTONotificationChatMentionPayload: z.ZodObject<{
|
|
313625
|
+
messageAuthorId: z.ZodString;
|
|
313626
|
+
messageText: z.ZodString;
|
|
313627
|
+
messageId: z.ZodString;
|
|
313628
|
+
parentMessageId: z.ZodOptional<z.ZodString>;
|
|
313629
|
+
workspaceId: z.ZodString;
|
|
313630
|
+
projectId: z.ZodString;
|
|
313631
|
+
subjectType: z.ZodString;
|
|
313632
|
+
threadSubjectId: z.ZodString;
|
|
313633
|
+
subjectName: z.ZodString;
|
|
313634
|
+
}, "strip", z.ZodTypeAny, {
|
|
313635
|
+
workspaceId: string;
|
|
313636
|
+
projectId: string;
|
|
313637
|
+
messageId: string;
|
|
313638
|
+
subjectType: string;
|
|
313639
|
+
messageAuthorId: string;
|
|
313640
|
+
messageText: string;
|
|
313641
|
+
threadSubjectId: string;
|
|
313642
|
+
subjectName: string;
|
|
313643
|
+
parentMessageId?: string | undefined;
|
|
313644
|
+
}, {
|
|
313645
|
+
workspaceId: string;
|
|
313646
|
+
projectId: string;
|
|
313647
|
+
messageId: string;
|
|
313648
|
+
subjectType: string;
|
|
313649
|
+
messageAuthorId: string;
|
|
313650
|
+
messageText: string;
|
|
313651
|
+
threadSubjectId: string;
|
|
313652
|
+
subjectName: string;
|
|
313653
|
+
parentMessageId?: string | undefined;
|
|
313654
|
+
}>;
|
|
313655
|
+
type DTONotificationChatMentionPayload = z.infer<typeof DTONotificationChatMentionPayload>;
|
|
313656
|
+
declare const DTONotificationProjectInvitationPayload: z.ZodObject<{
|
|
313657
|
+
workspaceId: z.ZodString;
|
|
313658
|
+
projectId: z.ZodString;
|
|
313659
|
+
projectTitle: z.ZodString;
|
|
313660
|
+
invitedByUserId: z.ZodString;
|
|
313661
|
+
invitationRole: z.ZodString;
|
|
313662
|
+
}, "strip", z.ZodTypeAny, {
|
|
313663
|
+
workspaceId: string;
|
|
313664
|
+
projectId: string;
|
|
313665
|
+
projectTitle: string;
|
|
313666
|
+
invitedByUserId: string;
|
|
313667
|
+
invitationRole: string;
|
|
313668
|
+
}, {
|
|
313669
|
+
workspaceId: string;
|
|
313670
|
+
projectId: string;
|
|
313671
|
+
projectTitle: string;
|
|
313672
|
+
invitedByUserId: string;
|
|
313673
|
+
invitationRole: string;
|
|
313674
|
+
}>;
|
|
313675
|
+
type DTONotificationProjectInvitationPayload = z.infer<typeof DTONotificationProjectInvitationPayload>;
|
|
313676
|
+
declare const DTONotificationProjectDocumentCommentPayload: z.ZodObject<{
|
|
313677
|
+
documentId: z.ZodString;
|
|
313678
|
+
entityTitle: z.ZodString;
|
|
313679
|
+
projectId: z.ZodString;
|
|
313680
|
+
workspaceId: z.ZodString;
|
|
313681
|
+
threadId: z.ZodString;
|
|
313682
|
+
commentId: z.ZodString;
|
|
313683
|
+
commentCreatedAt: z.ZodString;
|
|
313684
|
+
commentAuthorId: z.ZodString;
|
|
313685
|
+
commentBody: z.ZodString;
|
|
313686
|
+
}, "strip", z.ZodTypeAny, {
|
|
313687
|
+
workspaceId: string;
|
|
313688
|
+
projectId: string;
|
|
313689
|
+
threadId: string;
|
|
313690
|
+
documentId: string;
|
|
313691
|
+
entityTitle: string;
|
|
313692
|
+
commentId: string;
|
|
313693
|
+
commentCreatedAt: string;
|
|
313694
|
+
commentAuthorId: string;
|
|
313695
|
+
commentBody: string;
|
|
313696
|
+
}, {
|
|
313697
|
+
workspaceId: string;
|
|
313698
|
+
projectId: string;
|
|
313699
|
+
threadId: string;
|
|
313700
|
+
documentId: string;
|
|
313701
|
+
entityTitle: string;
|
|
313702
|
+
commentId: string;
|
|
313703
|
+
commentCreatedAt: string;
|
|
313704
|
+
commentAuthorId: string;
|
|
313705
|
+
commentBody: string;
|
|
313706
|
+
}>;
|
|
313707
|
+
type DTONotificationProjectDocumentCommentPayload = z.infer<typeof DTONotificationProjectDocumentCommentPayload>;
|
|
313708
|
+
declare const DTONotificationBase: z.ZodObject<{
|
|
313709
|
+
userId: z.ZodString;
|
|
313710
|
+
subjectId: z.ZodString;
|
|
313711
|
+
roomId: z.ZodOptional<z.ZodString>;
|
|
313712
|
+
workspaceId: z.ZodString;
|
|
313713
|
+
}, "strip", z.ZodTypeAny, {
|
|
313714
|
+
userId: string;
|
|
313715
|
+
workspaceId: string;
|
|
313716
|
+
subjectId: string;
|
|
313717
|
+
roomId?: string | undefined;
|
|
313718
|
+
}, {
|
|
313719
|
+
userId: string;
|
|
313720
|
+
workspaceId: string;
|
|
313721
|
+
subjectId: string;
|
|
313722
|
+
roomId?: string | undefined;
|
|
313723
|
+
}>;
|
|
313724
|
+
type DTONotificationBase = z.infer<typeof DTONotificationBase>;
|
|
313725
|
+
|
|
313726
|
+
declare const DTOUserNotificationSettings: z.ZodObject<{
|
|
313727
|
+
ChatMention: z.ZodObject<{
|
|
313728
|
+
enabled: z.ZodBoolean;
|
|
313729
|
+
email: z.ZodBoolean;
|
|
313730
|
+
}, "strip", z.ZodTypeAny, {
|
|
313731
|
+
email: boolean;
|
|
313732
|
+
enabled: boolean;
|
|
313733
|
+
}, {
|
|
313734
|
+
email: boolean;
|
|
313735
|
+
enabled: boolean;
|
|
313736
|
+
}>;
|
|
313737
|
+
ProjectDocumentComment: z.ZodObject<{
|
|
313738
|
+
enabled: z.ZodBoolean;
|
|
313739
|
+
email: z.ZodBoolean;
|
|
313740
|
+
}, "strip", z.ZodTypeAny, {
|
|
313741
|
+
email: boolean;
|
|
313742
|
+
enabled: boolean;
|
|
313743
|
+
}, {
|
|
313744
|
+
email: boolean;
|
|
313745
|
+
enabled: boolean;
|
|
313746
|
+
}>;
|
|
313747
|
+
ProjectInvitation: z.ZodObject<{
|
|
313748
|
+
enabled: z.ZodBoolean;
|
|
313749
|
+
email: z.ZodBoolean;
|
|
313750
|
+
}, "strip", z.ZodTypeAny, {
|
|
313751
|
+
email: boolean;
|
|
313752
|
+
enabled: boolean;
|
|
313753
|
+
}, {
|
|
313754
|
+
email: boolean;
|
|
313755
|
+
enabled: boolean;
|
|
313756
|
+
}>;
|
|
313757
|
+
DesignDocumentComment: z.ZodObject<Omit<{
|
|
313758
|
+
enabled: z.ZodBoolean;
|
|
313759
|
+
email: z.ZodBoolean;
|
|
313760
|
+
}, "enabled">, "strip", z.ZodTypeAny, {
|
|
313761
|
+
email: boolean;
|
|
313762
|
+
}, {
|
|
313763
|
+
email: boolean;
|
|
313764
|
+
}>;
|
|
313765
|
+
} & {
|
|
313766
|
+
liveblocksNotificationSettings: z.ZodObject<{
|
|
313767
|
+
sendCommentNotificationEmails: z.ZodBoolean;
|
|
313768
|
+
}, "strip", z.ZodTypeAny, {
|
|
313769
|
+
sendCommentNotificationEmails: boolean;
|
|
313770
|
+
}, {
|
|
313771
|
+
sendCommentNotificationEmails: boolean;
|
|
313772
|
+
}>;
|
|
313773
|
+
}, "strip", z.ZodTypeAny, {
|
|
313774
|
+
DesignDocumentComment: {
|
|
313775
|
+
email: boolean;
|
|
313776
|
+
};
|
|
313777
|
+
ChatMention: {
|
|
313778
|
+
email: boolean;
|
|
313779
|
+
enabled: boolean;
|
|
313780
|
+
};
|
|
313781
|
+
ProjectDocumentComment: {
|
|
313782
|
+
email: boolean;
|
|
313783
|
+
enabled: boolean;
|
|
313784
|
+
};
|
|
313785
|
+
ProjectInvitation: {
|
|
313786
|
+
email: boolean;
|
|
313787
|
+
enabled: boolean;
|
|
313788
|
+
};
|
|
313789
|
+
liveblocksNotificationSettings: {
|
|
313790
|
+
sendCommentNotificationEmails: boolean;
|
|
313791
|
+
};
|
|
313792
|
+
}, {
|
|
313793
|
+
DesignDocumentComment: {
|
|
313794
|
+
email: boolean;
|
|
313795
|
+
};
|
|
313796
|
+
ChatMention: {
|
|
313797
|
+
email: boolean;
|
|
313798
|
+
enabled: boolean;
|
|
313799
|
+
};
|
|
313800
|
+
ProjectDocumentComment: {
|
|
313801
|
+
email: boolean;
|
|
313802
|
+
enabled: boolean;
|
|
313803
|
+
};
|
|
313804
|
+
ProjectInvitation: {
|
|
313805
|
+
email: boolean;
|
|
313806
|
+
enabled: boolean;
|
|
313807
|
+
};
|
|
313808
|
+
liveblocksNotificationSettings: {
|
|
313809
|
+
sendCommentNotificationEmails: boolean;
|
|
313810
|
+
};
|
|
313811
|
+
}>;
|
|
313812
|
+
type DTOUserNotificationSettings = z.infer<typeof DTOUserNotificationSettings>;
|
|
313813
|
+
declare const DTONotificationType: z.ZodEnum<["DesignDocumentComment", "ChatMention", "ProjectDocumentComment", "ProjectInvitation"]>;
|
|
313814
|
+
type DTONotificationType = z.infer<typeof DTONotificationType>;
|
|
313815
|
+
declare const DTONotificationChannel: z.ZodEnum<["Email", "InApp"]>;
|
|
313816
|
+
type DTONotificationChannel = z.infer<typeof DTONotificationChannel>;
|
|
313817
|
+
|
|
313442
313818
|
declare const DTOPortalSettingsTheme: z.ZodObject<{
|
|
313443
313819
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
313444
313820
|
accentColor: z.ZodOptional<z.ZodString>;
|
|
@@ -333249,10 +333625,13 @@ declare const DTOThreadMessageFinalizeInput: z$1.ZodObject<{
|
|
|
333249
333625
|
type DTOThreadMessageFinalizeInput = z$1.infer<typeof DTOThreadMessageFinalizeInput>;
|
|
333250
333626
|
declare const DTOThreadMessageRetryInput: z$1.ZodObject<{
|
|
333251
333627
|
agentMessageId: z$1.ZodString;
|
|
333628
|
+
runtimeError: z$1.ZodOptional<z$1.ZodString>;
|
|
333252
333629
|
}, "strip", z$1.ZodTypeAny, {
|
|
333253
333630
|
agentMessageId: string;
|
|
333631
|
+
runtimeError?: string | undefined;
|
|
333254
333632
|
}, {
|
|
333255
333633
|
agentMessageId: string;
|
|
333634
|
+
runtimeError?: string | undefined;
|
|
333256
333635
|
}>;
|
|
333257
333636
|
type DTOThreadMessageRetryInput = z$1.infer<typeof DTOThreadMessageRetryInput>;
|
|
333258
333637
|
declare const DTOThreadMessageCreateInput: z$1.ZodObject<Pick<{
|
|
@@ -341602,6 +341981,92 @@ declare const DTOWorkspaceMember: z.ZodObject<{
|
|
|
341602
341981
|
seatType: z.ZodEnum<["Full", "Builder", "None"]>;
|
|
341603
341982
|
effectiveSeatType: z.ZodEnum<["Full", "Builder", "None"]>;
|
|
341604
341983
|
isDeactivated: z.ZodBoolean;
|
|
341984
|
+
notificationSettings: z.ZodObject<{
|
|
341985
|
+
ChatMention: z.ZodObject<{
|
|
341986
|
+
enabled: z.ZodBoolean;
|
|
341987
|
+
email: z.ZodBoolean;
|
|
341988
|
+
}, "strip", z.ZodTypeAny, {
|
|
341989
|
+
email: boolean;
|
|
341990
|
+
enabled: boolean;
|
|
341991
|
+
}, {
|
|
341992
|
+
email: boolean;
|
|
341993
|
+
enabled: boolean;
|
|
341994
|
+
}>;
|
|
341995
|
+
ProjectDocumentComment: z.ZodObject<{
|
|
341996
|
+
enabled: z.ZodBoolean;
|
|
341997
|
+
email: z.ZodBoolean;
|
|
341998
|
+
}, "strip", z.ZodTypeAny, {
|
|
341999
|
+
email: boolean;
|
|
342000
|
+
enabled: boolean;
|
|
342001
|
+
}, {
|
|
342002
|
+
email: boolean;
|
|
342003
|
+
enabled: boolean;
|
|
342004
|
+
}>;
|
|
342005
|
+
ProjectInvitation: z.ZodObject<{
|
|
342006
|
+
enabled: z.ZodBoolean;
|
|
342007
|
+
email: z.ZodBoolean;
|
|
342008
|
+
}, "strip", z.ZodTypeAny, {
|
|
342009
|
+
email: boolean;
|
|
342010
|
+
enabled: boolean;
|
|
342011
|
+
}, {
|
|
342012
|
+
email: boolean;
|
|
342013
|
+
enabled: boolean;
|
|
342014
|
+
}>;
|
|
342015
|
+
DesignDocumentComment: z.ZodObject<Omit<{
|
|
342016
|
+
enabled: z.ZodBoolean;
|
|
342017
|
+
email: z.ZodBoolean;
|
|
342018
|
+
}, "enabled">, "strip", z.ZodTypeAny, {
|
|
342019
|
+
email: boolean;
|
|
342020
|
+
}, {
|
|
342021
|
+
email: boolean;
|
|
342022
|
+
}>;
|
|
342023
|
+
} & {
|
|
342024
|
+
liveblocksNotificationSettings: z.ZodObject<{
|
|
342025
|
+
sendCommentNotificationEmails: z.ZodBoolean;
|
|
342026
|
+
}, "strip", z.ZodTypeAny, {
|
|
342027
|
+
sendCommentNotificationEmails: boolean;
|
|
342028
|
+
}, {
|
|
342029
|
+
sendCommentNotificationEmails: boolean;
|
|
342030
|
+
}>;
|
|
342031
|
+
}, "strip", z.ZodTypeAny, {
|
|
342032
|
+
DesignDocumentComment: {
|
|
342033
|
+
email: boolean;
|
|
342034
|
+
};
|
|
342035
|
+
ChatMention: {
|
|
342036
|
+
email: boolean;
|
|
342037
|
+
enabled: boolean;
|
|
342038
|
+
};
|
|
342039
|
+
ProjectDocumentComment: {
|
|
342040
|
+
email: boolean;
|
|
342041
|
+
enabled: boolean;
|
|
342042
|
+
};
|
|
342043
|
+
ProjectInvitation: {
|
|
342044
|
+
email: boolean;
|
|
342045
|
+
enabled: boolean;
|
|
342046
|
+
};
|
|
342047
|
+
liveblocksNotificationSettings: {
|
|
342048
|
+
sendCommentNotificationEmails: boolean;
|
|
342049
|
+
};
|
|
342050
|
+
}, {
|
|
342051
|
+
DesignDocumentComment: {
|
|
342052
|
+
email: boolean;
|
|
342053
|
+
};
|
|
342054
|
+
ChatMention: {
|
|
342055
|
+
email: boolean;
|
|
342056
|
+
enabled: boolean;
|
|
342057
|
+
};
|
|
342058
|
+
ProjectDocumentComment: {
|
|
342059
|
+
email: boolean;
|
|
342060
|
+
enabled: boolean;
|
|
342061
|
+
};
|
|
342062
|
+
ProjectInvitation: {
|
|
342063
|
+
email: boolean;
|
|
342064
|
+
enabled: boolean;
|
|
342065
|
+
};
|
|
342066
|
+
liveblocksNotificationSettings: {
|
|
342067
|
+
sendCommentNotificationEmails: boolean;
|
|
342068
|
+
};
|
|
342069
|
+
}>;
|
|
341605
342070
|
}, "strip", z.ZodTypeAny, {
|
|
341606
342071
|
user: {
|
|
341607
342072
|
email: string;
|
|
@@ -341659,6 +342124,26 @@ declare const DTOWorkspaceMember: z.ZodObject<{
|
|
|
341659
342124
|
seatType: "Full" | "Builder" | "None";
|
|
341660
342125
|
effectiveSeatType: "Full" | "Builder" | "None";
|
|
341661
342126
|
membershipId: string;
|
|
342127
|
+
notificationSettings: {
|
|
342128
|
+
DesignDocumentComment: {
|
|
342129
|
+
email: boolean;
|
|
342130
|
+
};
|
|
342131
|
+
ChatMention: {
|
|
342132
|
+
email: boolean;
|
|
342133
|
+
enabled: boolean;
|
|
342134
|
+
};
|
|
342135
|
+
ProjectDocumentComment: {
|
|
342136
|
+
email: boolean;
|
|
342137
|
+
enabled: boolean;
|
|
342138
|
+
};
|
|
342139
|
+
ProjectInvitation: {
|
|
342140
|
+
email: boolean;
|
|
342141
|
+
enabled: boolean;
|
|
342142
|
+
};
|
|
342143
|
+
liveblocksNotificationSettings: {
|
|
342144
|
+
sendCommentNotificationEmails: boolean;
|
|
342145
|
+
};
|
|
342146
|
+
};
|
|
341662
342147
|
}, {
|
|
341663
342148
|
user: {
|
|
341664
342149
|
email: string;
|
|
@@ -341716,6 +342201,26 @@ declare const DTOWorkspaceMember: z.ZodObject<{
|
|
|
341716
342201
|
seatType: "Full" | "Builder" | "None";
|
|
341717
342202
|
effectiveSeatType: "Full" | "Builder" | "None";
|
|
341718
342203
|
membershipId: string;
|
|
342204
|
+
notificationSettings: {
|
|
342205
|
+
DesignDocumentComment: {
|
|
342206
|
+
email: boolean;
|
|
342207
|
+
};
|
|
342208
|
+
ChatMention: {
|
|
342209
|
+
email: boolean;
|
|
342210
|
+
enabled: boolean;
|
|
342211
|
+
};
|
|
342212
|
+
ProjectDocumentComment: {
|
|
342213
|
+
email: boolean;
|
|
342214
|
+
enabled: boolean;
|
|
342215
|
+
};
|
|
342216
|
+
ProjectInvitation: {
|
|
342217
|
+
email: boolean;
|
|
342218
|
+
enabled: boolean;
|
|
342219
|
+
};
|
|
342220
|
+
liveblocksNotificationSettings: {
|
|
342221
|
+
sendCommentNotificationEmails: boolean;
|
|
342222
|
+
};
|
|
342223
|
+
};
|
|
341719
342224
|
}>;
|
|
341720
342225
|
type DTOWorkspaceMember = z.infer<typeof DTOWorkspaceMember>;
|
|
341721
342226
|
declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
@@ -342835,6 +343340,92 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
|
|
|
342835
343340
|
seatType: z.ZodEnum<["Full", "Builder", "None"]>;
|
|
342836
343341
|
effectiveSeatType: z.ZodEnum<["Full", "Builder", "None"]>;
|
|
342837
343342
|
isDeactivated: z.ZodBoolean;
|
|
343343
|
+
notificationSettings: z.ZodObject<{
|
|
343344
|
+
ChatMention: z.ZodObject<{
|
|
343345
|
+
enabled: z.ZodBoolean;
|
|
343346
|
+
email: z.ZodBoolean;
|
|
343347
|
+
}, "strip", z.ZodTypeAny, {
|
|
343348
|
+
email: boolean;
|
|
343349
|
+
enabled: boolean;
|
|
343350
|
+
}, {
|
|
343351
|
+
email: boolean;
|
|
343352
|
+
enabled: boolean;
|
|
343353
|
+
}>;
|
|
343354
|
+
ProjectDocumentComment: z.ZodObject<{
|
|
343355
|
+
enabled: z.ZodBoolean;
|
|
343356
|
+
email: z.ZodBoolean;
|
|
343357
|
+
}, "strip", z.ZodTypeAny, {
|
|
343358
|
+
email: boolean;
|
|
343359
|
+
enabled: boolean;
|
|
343360
|
+
}, {
|
|
343361
|
+
email: boolean;
|
|
343362
|
+
enabled: boolean;
|
|
343363
|
+
}>;
|
|
343364
|
+
ProjectInvitation: z.ZodObject<{
|
|
343365
|
+
enabled: z.ZodBoolean;
|
|
343366
|
+
email: z.ZodBoolean;
|
|
343367
|
+
}, "strip", z.ZodTypeAny, {
|
|
343368
|
+
email: boolean;
|
|
343369
|
+
enabled: boolean;
|
|
343370
|
+
}, {
|
|
343371
|
+
email: boolean;
|
|
343372
|
+
enabled: boolean;
|
|
343373
|
+
}>;
|
|
343374
|
+
DesignDocumentComment: z.ZodObject<Omit<{
|
|
343375
|
+
enabled: z.ZodBoolean;
|
|
343376
|
+
email: z.ZodBoolean;
|
|
343377
|
+
}, "enabled">, "strip", z.ZodTypeAny, {
|
|
343378
|
+
email: boolean;
|
|
343379
|
+
}, {
|
|
343380
|
+
email: boolean;
|
|
343381
|
+
}>;
|
|
343382
|
+
} & {
|
|
343383
|
+
liveblocksNotificationSettings: z.ZodObject<{
|
|
343384
|
+
sendCommentNotificationEmails: z.ZodBoolean;
|
|
343385
|
+
}, "strip", z.ZodTypeAny, {
|
|
343386
|
+
sendCommentNotificationEmails: boolean;
|
|
343387
|
+
}, {
|
|
343388
|
+
sendCommentNotificationEmails: boolean;
|
|
343389
|
+
}>;
|
|
343390
|
+
}, "strip", z.ZodTypeAny, {
|
|
343391
|
+
DesignDocumentComment: {
|
|
343392
|
+
email: boolean;
|
|
343393
|
+
};
|
|
343394
|
+
ChatMention: {
|
|
343395
|
+
email: boolean;
|
|
343396
|
+
enabled: boolean;
|
|
343397
|
+
};
|
|
343398
|
+
ProjectDocumentComment: {
|
|
343399
|
+
email: boolean;
|
|
343400
|
+
enabled: boolean;
|
|
343401
|
+
};
|
|
343402
|
+
ProjectInvitation: {
|
|
343403
|
+
email: boolean;
|
|
343404
|
+
enabled: boolean;
|
|
343405
|
+
};
|
|
343406
|
+
liveblocksNotificationSettings: {
|
|
343407
|
+
sendCommentNotificationEmails: boolean;
|
|
343408
|
+
};
|
|
343409
|
+
}, {
|
|
343410
|
+
DesignDocumentComment: {
|
|
343411
|
+
email: boolean;
|
|
343412
|
+
};
|
|
343413
|
+
ChatMention: {
|
|
343414
|
+
email: boolean;
|
|
343415
|
+
enabled: boolean;
|
|
343416
|
+
};
|
|
343417
|
+
ProjectDocumentComment: {
|
|
343418
|
+
email: boolean;
|
|
343419
|
+
enabled: boolean;
|
|
343420
|
+
};
|
|
343421
|
+
ProjectInvitation: {
|
|
343422
|
+
email: boolean;
|
|
343423
|
+
enabled: boolean;
|
|
343424
|
+
};
|
|
343425
|
+
liveblocksNotificationSettings: {
|
|
343426
|
+
sendCommentNotificationEmails: boolean;
|
|
343427
|
+
};
|
|
343428
|
+
}>;
|
|
342838
343429
|
}, "strip", z.ZodTypeAny, {
|
|
342839
343430
|
user: {
|
|
342840
343431
|
email: string;
|
|
@@ -342892,6 +343483,26 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
|
|
|
342892
343483
|
seatType: "Full" | "Builder" | "None";
|
|
342893
343484
|
effectiveSeatType: "Full" | "Builder" | "None";
|
|
342894
343485
|
membershipId: string;
|
|
343486
|
+
notificationSettings: {
|
|
343487
|
+
DesignDocumentComment: {
|
|
343488
|
+
email: boolean;
|
|
343489
|
+
};
|
|
343490
|
+
ChatMention: {
|
|
343491
|
+
email: boolean;
|
|
343492
|
+
enabled: boolean;
|
|
343493
|
+
};
|
|
343494
|
+
ProjectDocumentComment: {
|
|
343495
|
+
email: boolean;
|
|
343496
|
+
enabled: boolean;
|
|
343497
|
+
};
|
|
343498
|
+
ProjectInvitation: {
|
|
343499
|
+
email: boolean;
|
|
343500
|
+
enabled: boolean;
|
|
343501
|
+
};
|
|
343502
|
+
liveblocksNotificationSettings: {
|
|
343503
|
+
sendCommentNotificationEmails: boolean;
|
|
343504
|
+
};
|
|
343505
|
+
};
|
|
342895
343506
|
}, {
|
|
342896
343507
|
user: {
|
|
342897
343508
|
email: string;
|
|
@@ -342949,6 +343560,26 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
|
|
|
342949
343560
|
seatType: "Full" | "Builder" | "None";
|
|
342950
343561
|
effectiveSeatType: "Full" | "Builder" | "None";
|
|
342951
343562
|
membershipId: string;
|
|
343563
|
+
notificationSettings: {
|
|
343564
|
+
DesignDocumentComment: {
|
|
343565
|
+
email: boolean;
|
|
343566
|
+
};
|
|
343567
|
+
ChatMention: {
|
|
343568
|
+
email: boolean;
|
|
343569
|
+
enabled: boolean;
|
|
343570
|
+
};
|
|
343571
|
+
ProjectDocumentComment: {
|
|
343572
|
+
email: boolean;
|
|
343573
|
+
enabled: boolean;
|
|
343574
|
+
};
|
|
343575
|
+
ProjectInvitation: {
|
|
343576
|
+
email: boolean;
|
|
343577
|
+
enabled: boolean;
|
|
343578
|
+
};
|
|
343579
|
+
liveblocksNotificationSettings: {
|
|
343580
|
+
sendCommentNotificationEmails: boolean;
|
|
343581
|
+
};
|
|
343582
|
+
};
|
|
342952
343583
|
}>, "many">;
|
|
342953
343584
|
}, "strip", z.ZodTypeAny, {
|
|
342954
343585
|
members: {
|
|
@@ -343008,6 +343639,26 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
|
|
|
343008
343639
|
seatType: "Full" | "Builder" | "None";
|
|
343009
343640
|
effectiveSeatType: "Full" | "Builder" | "None";
|
|
343010
343641
|
membershipId: string;
|
|
343642
|
+
notificationSettings: {
|
|
343643
|
+
DesignDocumentComment: {
|
|
343644
|
+
email: boolean;
|
|
343645
|
+
};
|
|
343646
|
+
ChatMention: {
|
|
343647
|
+
email: boolean;
|
|
343648
|
+
enabled: boolean;
|
|
343649
|
+
};
|
|
343650
|
+
ProjectDocumentComment: {
|
|
343651
|
+
email: boolean;
|
|
343652
|
+
enabled: boolean;
|
|
343653
|
+
};
|
|
343654
|
+
ProjectInvitation: {
|
|
343655
|
+
email: boolean;
|
|
343656
|
+
enabled: boolean;
|
|
343657
|
+
};
|
|
343658
|
+
liveblocksNotificationSettings: {
|
|
343659
|
+
sendCommentNotificationEmails: boolean;
|
|
343660
|
+
};
|
|
343661
|
+
};
|
|
343011
343662
|
}[];
|
|
343012
343663
|
}, {
|
|
343013
343664
|
members: {
|
|
@@ -343067,6 +343718,26 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
|
|
|
343067
343718
|
seatType: "Full" | "Builder" | "None";
|
|
343068
343719
|
effectiveSeatType: "Full" | "Builder" | "None";
|
|
343069
343720
|
membershipId: string;
|
|
343721
|
+
notificationSettings: {
|
|
343722
|
+
DesignDocumentComment: {
|
|
343723
|
+
email: boolean;
|
|
343724
|
+
};
|
|
343725
|
+
ChatMention: {
|
|
343726
|
+
email: boolean;
|
|
343727
|
+
enabled: boolean;
|
|
343728
|
+
};
|
|
343729
|
+
ProjectDocumentComment: {
|
|
343730
|
+
email: boolean;
|
|
343731
|
+
enabled: boolean;
|
|
343732
|
+
};
|
|
343733
|
+
ProjectInvitation: {
|
|
343734
|
+
email: boolean;
|
|
343735
|
+
enabled: boolean;
|
|
343736
|
+
};
|
|
343737
|
+
liveblocksNotificationSettings: {
|
|
343738
|
+
sendCommentNotificationEmails: boolean;
|
|
343739
|
+
};
|
|
343740
|
+
};
|
|
343070
343741
|
}[];
|
|
343071
343742
|
}>;
|
|
343072
343743
|
type DTOWorkspaceMembersListResponse = z.infer<typeof DTOWorkspaceMembersListResponse>;
|
|
@@ -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 };
|