@supernova-studio/client 1.4.9 → 1.4.11
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 +408 -4
- package/dist/index.d.ts +408 -4
- package/dist/index.js +22 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +21 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -25339,6 +25339,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
25339
25339
|
workspaceSlug: z.ZodString;
|
|
25340
25340
|
projectKey: z.ZodString;
|
|
25341
25341
|
repoSlug: z.ZodString;
|
|
25342
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25342
25343
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
25343
25344
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
25344
25345
|
}, {
|
|
@@ -25355,6 +25356,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
25355
25356
|
workspaceSlug: string;
|
|
25356
25357
|
projectKey: string;
|
|
25357
25358
|
repoSlug: string;
|
|
25359
|
+
url?: string | undefined;
|
|
25358
25360
|
userId?: number | undefined;
|
|
25359
25361
|
relativePath?: string | undefined;
|
|
25360
25362
|
purgeDirectory?: boolean | undefined;
|
|
@@ -25370,6 +25372,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
25370
25372
|
workspaceSlug: string;
|
|
25371
25373
|
projectKey: string;
|
|
25372
25374
|
repoSlug: string;
|
|
25375
|
+
url?: string | null | undefined;
|
|
25373
25376
|
userId?: number | null | undefined;
|
|
25374
25377
|
relativePath?: string | null | undefined;
|
|
25375
25378
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -25519,6 +25522,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
25519
25522
|
workspaceSlug: string;
|
|
25520
25523
|
projectKey: string;
|
|
25521
25524
|
repoSlug: string;
|
|
25525
|
+
url?: string | undefined;
|
|
25522
25526
|
userId?: number | undefined;
|
|
25523
25527
|
relativePath?: string | undefined;
|
|
25524
25528
|
purgeDirectory?: boolean | undefined;
|
|
@@ -25591,6 +25595,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
25591
25595
|
workspaceSlug: string;
|
|
25592
25596
|
projectKey: string;
|
|
25593
25597
|
repoSlug: string;
|
|
25598
|
+
url?: string | null | undefined;
|
|
25594
25599
|
userId?: number | null | undefined;
|
|
25595
25600
|
relativePath?: string | null | undefined;
|
|
25596
25601
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -25850,6 +25855,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
25850
25855
|
workspaceSlug: string;
|
|
25851
25856
|
projectKey: string;
|
|
25852
25857
|
repoSlug: string;
|
|
25858
|
+
url?: string | undefined;
|
|
25853
25859
|
userId?: number | undefined;
|
|
25854
25860
|
relativePath?: string | undefined;
|
|
25855
25861
|
purgeDirectory?: boolean | undefined;
|
|
@@ -25988,6 +25994,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
25988
25994
|
workspaceSlug: string;
|
|
25989
25995
|
projectKey: string;
|
|
25990
25996
|
repoSlug: string;
|
|
25997
|
+
url?: string | null | undefined;
|
|
25991
25998
|
userId?: number | null | undefined;
|
|
25992
25999
|
relativePath?: string | null | undefined;
|
|
25993
26000
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -26128,6 +26135,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
26128
26135
|
workspaceSlug: string;
|
|
26129
26136
|
projectKey: string;
|
|
26130
26137
|
repoSlug: string;
|
|
26138
|
+
url?: string | undefined;
|
|
26131
26139
|
userId?: number | undefined;
|
|
26132
26140
|
relativePath?: string | undefined;
|
|
26133
26141
|
purgeDirectory?: boolean | undefined;
|
|
@@ -26268,6 +26276,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
|
|
|
26268
26276
|
workspaceSlug: string;
|
|
26269
26277
|
projectKey: string;
|
|
26270
26278
|
repoSlug: string;
|
|
26279
|
+
url?: string | null | undefined;
|
|
26271
26280
|
userId?: number | null | undefined;
|
|
26272
26281
|
relativePath?: string | null | undefined;
|
|
26273
26282
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -47408,20 +47417,72 @@ declare const DTOElementPropertyValueResponse: z.ZodObject<{
|
|
|
47408
47417
|
};
|
|
47409
47418
|
}>;
|
|
47410
47419
|
type DTOElementPropertyValueResponse = z.infer<typeof DTOElementPropertyValueResponse>;
|
|
47420
|
+
declare const DTOElementPropertyValuesEditActionOutput: z.ZodObject<{
|
|
47421
|
+
type: z.ZodLiteral<"ElementPropertyValuesEdit">;
|
|
47422
|
+
output: z.ZodObject<{
|
|
47423
|
+
success: z.ZodLiteral<true>;
|
|
47424
|
+
}, "strip", z.ZodTypeAny, {
|
|
47425
|
+
success: true;
|
|
47426
|
+
}, {
|
|
47427
|
+
success: true;
|
|
47428
|
+
}>;
|
|
47429
|
+
}, "strip", z.ZodTypeAny, {
|
|
47430
|
+
type: "ElementPropertyValuesEdit";
|
|
47431
|
+
output: {
|
|
47432
|
+
success: true;
|
|
47433
|
+
};
|
|
47434
|
+
}, {
|
|
47435
|
+
type: "ElementPropertyValuesEdit";
|
|
47436
|
+
output: {
|
|
47437
|
+
success: true;
|
|
47438
|
+
};
|
|
47439
|
+
}>;
|
|
47440
|
+
type DTOElementPropertyValuesEditActionOutput = z.infer<typeof DTOElementPropertyValuesEditActionOutput>;
|
|
47411
47441
|
declare const DTOElementPropertyValueUpsertPaylod: z.ZodObject<{
|
|
47412
47442
|
definitionId: z.ZodString;
|
|
47413
47443
|
targetElementId: z.ZodString;
|
|
47414
|
-
value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBoolean]
|
|
47444
|
+
value: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBoolean]>>;
|
|
47415
47445
|
}, "strip", z.ZodTypeAny, {
|
|
47416
|
-
value: string | number | boolean;
|
|
47446
|
+
value: string | number | boolean | null;
|
|
47417
47447
|
definitionId: string;
|
|
47418
47448
|
targetElementId: string;
|
|
47419
47449
|
}, {
|
|
47420
|
-
value: string | number | boolean;
|
|
47450
|
+
value: string | number | boolean | null;
|
|
47421
47451
|
definitionId: string;
|
|
47422
47452
|
targetElementId: string;
|
|
47423
47453
|
}>;
|
|
47424
47454
|
type DTOElementPropertyValueUpsertPaylod = z.infer<typeof DTOElementPropertyValueUpsertPaylod>;
|
|
47455
|
+
declare const DTOElementPropertyValuesEditActionInput: z.ZodObject<{
|
|
47456
|
+
type: z.ZodLiteral<"ElementPropertyValuesEdit">;
|
|
47457
|
+
values: z.ZodArray<z.ZodObject<{
|
|
47458
|
+
definitionId: z.ZodString;
|
|
47459
|
+
targetElementId: z.ZodString;
|
|
47460
|
+
value: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBoolean]>>;
|
|
47461
|
+
}, "strip", z.ZodTypeAny, {
|
|
47462
|
+
value: string | number | boolean | null;
|
|
47463
|
+
definitionId: string;
|
|
47464
|
+
targetElementId: string;
|
|
47465
|
+
}, {
|
|
47466
|
+
value: string | number | boolean | null;
|
|
47467
|
+
definitionId: string;
|
|
47468
|
+
targetElementId: string;
|
|
47469
|
+
}>, "many">;
|
|
47470
|
+
}, "strip", z.ZodTypeAny, {
|
|
47471
|
+
values: {
|
|
47472
|
+
value: string | number | boolean | null;
|
|
47473
|
+
definitionId: string;
|
|
47474
|
+
targetElementId: string;
|
|
47475
|
+
}[];
|
|
47476
|
+
type: "ElementPropertyValuesEdit";
|
|
47477
|
+
}, {
|
|
47478
|
+
values: {
|
|
47479
|
+
value: string | number | boolean | null;
|
|
47480
|
+
definitionId: string;
|
|
47481
|
+
targetElementId: string;
|
|
47482
|
+
}[];
|
|
47483
|
+
type: "ElementPropertyValuesEdit";
|
|
47484
|
+
}>;
|
|
47485
|
+
type DTOElementPropertyValuesEditActionInput = z.infer<typeof DTOElementPropertyValuesEditActionInput>;
|
|
47425
47486
|
|
|
47426
47487
|
declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
47427
47488
|
type: z.ZodLiteral<"DocumentationPageCreate">;
|
|
@@ -48342,6 +48403,25 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
48342
48403
|
output: {
|
|
48343
48404
|
success: true;
|
|
48344
48405
|
};
|
|
48406
|
+
}>, z.ZodObject<{
|
|
48407
|
+
type: z.ZodLiteral<"ElementPropertyValuesEdit">;
|
|
48408
|
+
output: z.ZodObject<{
|
|
48409
|
+
success: z.ZodLiteral<true>;
|
|
48410
|
+
}, "strip", z.ZodTypeAny, {
|
|
48411
|
+
success: true;
|
|
48412
|
+
}, {
|
|
48413
|
+
success: true;
|
|
48414
|
+
}>;
|
|
48415
|
+
}, "strip", z.ZodTypeAny, {
|
|
48416
|
+
type: "ElementPropertyValuesEdit";
|
|
48417
|
+
output: {
|
|
48418
|
+
success: true;
|
|
48419
|
+
};
|
|
48420
|
+
}, {
|
|
48421
|
+
type: "ElementPropertyValuesEdit";
|
|
48422
|
+
output: {
|
|
48423
|
+
success: true;
|
|
48424
|
+
};
|
|
48345
48425
|
}>]>;
|
|
48346
48426
|
type DTOElementActionOutput = z.infer<typeof DTOElementActionOutput>;
|
|
48347
48427
|
declare const DTOElementActionInput: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -51236,6 +51316,35 @@ declare const DTOElementActionInput: z.ZodIntersection<z.ZodDiscriminatedUnion<"
|
|
|
51236
51316
|
persistentId: string;
|
|
51237
51317
|
approvalState?: "ReadyForReview" | "ChangesRequested" | "Approved" | undefined;
|
|
51238
51318
|
};
|
|
51319
|
+
}>, z.ZodObject<{
|
|
51320
|
+
type: z.ZodLiteral<"ElementPropertyValuesEdit">;
|
|
51321
|
+
values: z.ZodArray<z.ZodObject<{
|
|
51322
|
+
definitionId: z.ZodString;
|
|
51323
|
+
targetElementId: z.ZodString;
|
|
51324
|
+
value: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBoolean]>>;
|
|
51325
|
+
}, "strip", z.ZodTypeAny, {
|
|
51326
|
+
value: string | number | boolean | null;
|
|
51327
|
+
definitionId: string;
|
|
51328
|
+
targetElementId: string;
|
|
51329
|
+
}, {
|
|
51330
|
+
value: string | number | boolean | null;
|
|
51331
|
+
definitionId: string;
|
|
51332
|
+
targetElementId: string;
|
|
51333
|
+
}>, "many">;
|
|
51334
|
+
}, "strip", z.ZodTypeAny, {
|
|
51335
|
+
values: {
|
|
51336
|
+
value: string | number | boolean | null;
|
|
51337
|
+
definitionId: string;
|
|
51338
|
+
targetElementId: string;
|
|
51339
|
+
}[];
|
|
51340
|
+
type: "ElementPropertyValuesEdit";
|
|
51341
|
+
}, {
|
|
51342
|
+
values: {
|
|
51343
|
+
value: string | number | boolean | null;
|
|
51344
|
+
definitionId: string;
|
|
51345
|
+
targetElementId: string;
|
|
51346
|
+
}[];
|
|
51347
|
+
type: "ElementPropertyValuesEdit";
|
|
51239
51348
|
}>]>, z.ZodObject<{
|
|
51240
51349
|
tId: z.ZodOptional<z.ZodString>;
|
|
51241
51350
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -55639,6 +55748,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
55639
55748
|
workspaceSlug: z.ZodString;
|
|
55640
55749
|
projectKey: z.ZodString;
|
|
55641
55750
|
repoSlug: z.ZodString;
|
|
55751
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
55642
55752
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
55643
55753
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
55644
55754
|
}, {
|
|
@@ -55655,6 +55765,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
55655
55765
|
workspaceSlug: string;
|
|
55656
55766
|
projectKey: string;
|
|
55657
55767
|
repoSlug: string;
|
|
55768
|
+
url?: string | undefined;
|
|
55658
55769
|
userId?: number | undefined;
|
|
55659
55770
|
relativePath?: string | undefined;
|
|
55660
55771
|
purgeDirectory?: boolean | undefined;
|
|
@@ -55670,6 +55781,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
55670
55781
|
workspaceSlug: string;
|
|
55671
55782
|
projectKey: string;
|
|
55672
55783
|
repoSlug: string;
|
|
55784
|
+
url?: string | null | undefined;
|
|
55673
55785
|
userId?: number | null | undefined;
|
|
55674
55786
|
relativePath?: string | null | undefined;
|
|
55675
55787
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -55819,6 +55931,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
55819
55931
|
workspaceSlug: string;
|
|
55820
55932
|
projectKey: string;
|
|
55821
55933
|
repoSlug: string;
|
|
55934
|
+
url?: string | undefined;
|
|
55822
55935
|
userId?: number | undefined;
|
|
55823
55936
|
relativePath?: string | undefined;
|
|
55824
55937
|
purgeDirectory?: boolean | undefined;
|
|
@@ -55891,6 +56004,7 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
55891
56004
|
workspaceSlug: string;
|
|
55892
56005
|
projectKey: string;
|
|
55893
56006
|
repoSlug: string;
|
|
56007
|
+
url?: string | null | undefined;
|
|
55894
56008
|
userId?: number | null | undefined;
|
|
55895
56009
|
relativePath?: string | null | undefined;
|
|
55896
56010
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -56240,6 +56354,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
56240
56354
|
workspaceSlug: z.ZodString;
|
|
56241
56355
|
projectKey: z.ZodString;
|
|
56242
56356
|
repoSlug: z.ZodString;
|
|
56357
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
56243
56358
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
56244
56359
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
56245
56360
|
}, {
|
|
@@ -56256,6 +56371,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
56256
56371
|
workspaceSlug: string;
|
|
56257
56372
|
projectKey: string;
|
|
56258
56373
|
repoSlug: string;
|
|
56374
|
+
url?: string | undefined;
|
|
56259
56375
|
userId?: number | undefined;
|
|
56260
56376
|
relativePath?: string | undefined;
|
|
56261
56377
|
purgeDirectory?: boolean | undefined;
|
|
@@ -56271,6 +56387,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
56271
56387
|
workspaceSlug: string;
|
|
56272
56388
|
projectKey: string;
|
|
56273
56389
|
repoSlug: string;
|
|
56390
|
+
url?: string | null | undefined;
|
|
56274
56391
|
userId?: number | null | undefined;
|
|
56275
56392
|
relativePath?: string | null | undefined;
|
|
56276
56393
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -56420,6 +56537,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
56420
56537
|
workspaceSlug: string;
|
|
56421
56538
|
projectKey: string;
|
|
56422
56539
|
repoSlug: string;
|
|
56540
|
+
url?: string | undefined;
|
|
56423
56541
|
userId?: number | undefined;
|
|
56424
56542
|
relativePath?: string | undefined;
|
|
56425
56543
|
purgeDirectory?: boolean | undefined;
|
|
@@ -56492,6 +56610,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
56492
56610
|
workspaceSlug: string;
|
|
56493
56611
|
projectKey: string;
|
|
56494
56612
|
repoSlug: string;
|
|
56613
|
+
url?: string | null | undefined;
|
|
56495
56614
|
userId?: number | null | undefined;
|
|
56496
56615
|
relativePath?: string | null | undefined;
|
|
56497
56616
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -56751,6 +56870,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
56751
56870
|
workspaceSlug: string;
|
|
56752
56871
|
projectKey: string;
|
|
56753
56872
|
repoSlug: string;
|
|
56873
|
+
url?: string | undefined;
|
|
56754
56874
|
userId?: number | undefined;
|
|
56755
56875
|
relativePath?: string | undefined;
|
|
56756
56876
|
purgeDirectory?: boolean | undefined;
|
|
@@ -56889,6 +57009,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
56889
57009
|
workspaceSlug: string;
|
|
56890
57010
|
projectKey: string;
|
|
56891
57011
|
repoSlug: string;
|
|
57012
|
+
url?: string | null | undefined;
|
|
56892
57013
|
userId?: number | null | undefined;
|
|
56893
57014
|
relativePath?: string | null | undefined;
|
|
56894
57015
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -57124,6 +57245,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
57124
57245
|
workspaceSlug: z.ZodString;
|
|
57125
57246
|
projectKey: z.ZodString;
|
|
57126
57247
|
repoSlug: z.ZodString;
|
|
57248
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
57127
57249
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
57128
57250
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
57129
57251
|
}, {
|
|
@@ -57140,6 +57262,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
57140
57262
|
workspaceSlug: string;
|
|
57141
57263
|
projectKey: string;
|
|
57142
57264
|
repoSlug: string;
|
|
57265
|
+
url?: string | undefined;
|
|
57143
57266
|
userId?: number | undefined;
|
|
57144
57267
|
relativePath?: string | undefined;
|
|
57145
57268
|
purgeDirectory?: boolean | undefined;
|
|
@@ -57155,6 +57278,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
57155
57278
|
workspaceSlug: string;
|
|
57156
57279
|
projectKey: string;
|
|
57157
57280
|
repoSlug: string;
|
|
57281
|
+
url?: string | null | undefined;
|
|
57158
57282
|
userId?: number | null | undefined;
|
|
57159
57283
|
relativePath?: string | null | undefined;
|
|
57160
57284
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -57304,6 +57428,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
57304
57428
|
workspaceSlug: string;
|
|
57305
57429
|
projectKey: string;
|
|
57306
57430
|
repoSlug: string;
|
|
57431
|
+
url?: string | undefined;
|
|
57307
57432
|
userId?: number | undefined;
|
|
57308
57433
|
relativePath?: string | undefined;
|
|
57309
57434
|
purgeDirectory?: boolean | undefined;
|
|
@@ -57376,6 +57501,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
57376
57501
|
workspaceSlug: string;
|
|
57377
57502
|
projectKey: string;
|
|
57378
57503
|
repoSlug: string;
|
|
57504
|
+
url?: string | null | undefined;
|
|
57379
57505
|
userId?: number | null | undefined;
|
|
57380
57506
|
relativePath?: string | null | undefined;
|
|
57381
57507
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -57635,6 +57761,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
57635
57761
|
workspaceSlug: string;
|
|
57636
57762
|
projectKey: string;
|
|
57637
57763
|
repoSlug: string;
|
|
57764
|
+
url?: string | undefined;
|
|
57638
57765
|
userId?: number | undefined;
|
|
57639
57766
|
relativePath?: string | undefined;
|
|
57640
57767
|
purgeDirectory?: boolean | undefined;
|
|
@@ -57773,6 +57900,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
57773
57900
|
workspaceSlug: string;
|
|
57774
57901
|
projectKey: string;
|
|
57775
57902
|
repoSlug: string;
|
|
57903
|
+
url?: string | null | undefined;
|
|
57776
57904
|
userId?: number | null | undefined;
|
|
57777
57905
|
relativePath?: string | null | undefined;
|
|
57778
57906
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -57913,6 +58041,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
57913
58041
|
workspaceSlug: string;
|
|
57914
58042
|
projectKey: string;
|
|
57915
58043
|
repoSlug: string;
|
|
58044
|
+
url?: string | undefined;
|
|
57916
58045
|
userId?: number | undefined;
|
|
57917
58046
|
relativePath?: string | undefined;
|
|
57918
58047
|
purgeDirectory?: boolean | undefined;
|
|
@@ -58053,6 +58182,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
58053
58182
|
workspaceSlug: string;
|
|
58054
58183
|
projectKey: string;
|
|
58055
58184
|
repoSlug: string;
|
|
58185
|
+
url?: string | null | undefined;
|
|
58056
58186
|
userId?: number | null | undefined;
|
|
58057
58187
|
relativePath?: string | null | undefined;
|
|
58058
58188
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -58222,6 +58352,7 @@ declare const DTOExportJobCreateInput: z.ZodObject<{
|
|
|
58222
58352
|
workspaceSlug: z.ZodString;
|
|
58223
58353
|
projectKey: z.ZodString;
|
|
58224
58354
|
repoSlug: z.ZodString;
|
|
58355
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
58225
58356
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
58226
58357
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
58227
58358
|
}, {
|
|
@@ -58238,6 +58369,7 @@ declare const DTOExportJobCreateInput: z.ZodObject<{
|
|
|
58238
58369
|
workspaceSlug: string;
|
|
58239
58370
|
projectKey: string;
|
|
58240
58371
|
repoSlug: string;
|
|
58372
|
+
url?: string | undefined;
|
|
58241
58373
|
userId?: number | undefined;
|
|
58242
58374
|
relativePath?: string | undefined;
|
|
58243
58375
|
purgeDirectory?: boolean | undefined;
|
|
@@ -58253,6 +58385,7 @@ declare const DTOExportJobCreateInput: z.ZodObject<{
|
|
|
58253
58385
|
workspaceSlug: string;
|
|
58254
58386
|
projectKey: string;
|
|
58255
58387
|
repoSlug: string;
|
|
58388
|
+
url?: string | null | undefined;
|
|
58256
58389
|
userId?: number | null | undefined;
|
|
58257
58390
|
relativePath?: string | null | undefined;
|
|
58258
58391
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -58402,6 +58535,7 @@ declare const DTOExportJobCreateInput: z.ZodObject<{
|
|
|
58402
58535
|
workspaceSlug: string;
|
|
58403
58536
|
projectKey: string;
|
|
58404
58537
|
repoSlug: string;
|
|
58538
|
+
url?: string | undefined;
|
|
58405
58539
|
userId?: number | undefined;
|
|
58406
58540
|
relativePath?: string | undefined;
|
|
58407
58541
|
purgeDirectory?: boolean | undefined;
|
|
@@ -58474,6 +58608,7 @@ declare const DTOExportJobCreateInput: z.ZodObject<{
|
|
|
58474
58608
|
workspaceSlug: string;
|
|
58475
58609
|
projectKey: string;
|
|
58476
58610
|
repoSlug: string;
|
|
58611
|
+
url?: string | null | undefined;
|
|
58477
58612
|
userId?: number | null | undefined;
|
|
58478
58613
|
relativePath?: string | null | undefined;
|
|
58479
58614
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -58552,6 +58687,7 @@ declare const DTOExportJobCreateInput: z.ZodObject<{
|
|
|
58552
58687
|
workspaceSlug: string;
|
|
58553
58688
|
projectKey: string;
|
|
58554
58689
|
repoSlug: string;
|
|
58690
|
+
url?: string | undefined;
|
|
58555
58691
|
userId?: number | undefined;
|
|
58556
58692
|
relativePath?: string | undefined;
|
|
58557
58693
|
purgeDirectory?: boolean | undefined;
|
|
@@ -58633,6 +58769,7 @@ declare const DTOExportJobCreateInput: z.ZodObject<{
|
|
|
58633
58769
|
workspaceSlug: string;
|
|
58634
58770
|
projectKey: string;
|
|
58635
58771
|
repoSlug: string;
|
|
58772
|
+
url?: string | null | undefined;
|
|
58636
58773
|
userId?: number | null | undefined;
|
|
58637
58774
|
relativePath?: string | null | undefined;
|
|
58638
58775
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -58834,6 +58971,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
58834
58971
|
workspaceSlug: z.ZodString;
|
|
58835
58972
|
projectKey: z.ZodString;
|
|
58836
58973
|
repoSlug: z.ZodString;
|
|
58974
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
58837
58975
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
58838
58976
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
58839
58977
|
}, {
|
|
@@ -58850,6 +58988,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
58850
58988
|
workspaceSlug: string;
|
|
58851
58989
|
projectKey: string;
|
|
58852
58990
|
repoSlug: string;
|
|
58991
|
+
url?: string | undefined;
|
|
58853
58992
|
userId?: number | undefined;
|
|
58854
58993
|
relativePath?: string | undefined;
|
|
58855
58994
|
purgeDirectory?: boolean | undefined;
|
|
@@ -58865,6 +59004,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
58865
59004
|
workspaceSlug: string;
|
|
58866
59005
|
projectKey: string;
|
|
58867
59006
|
repoSlug: string;
|
|
59007
|
+
url?: string | null | undefined;
|
|
58868
59008
|
userId?: number | null | undefined;
|
|
58869
59009
|
relativePath?: string | null | undefined;
|
|
58870
59010
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -59014,6 +59154,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
59014
59154
|
workspaceSlug: string;
|
|
59015
59155
|
projectKey: string;
|
|
59016
59156
|
repoSlug: string;
|
|
59157
|
+
url?: string | undefined;
|
|
59017
59158
|
userId?: number | undefined;
|
|
59018
59159
|
relativePath?: string | undefined;
|
|
59019
59160
|
purgeDirectory?: boolean | undefined;
|
|
@@ -59086,6 +59227,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
59086
59227
|
workspaceSlug: string;
|
|
59087
59228
|
projectKey: string;
|
|
59088
59229
|
repoSlug: string;
|
|
59230
|
+
url?: string | null | undefined;
|
|
59089
59231
|
userId?: number | null | undefined;
|
|
59090
59232
|
relativePath?: string | null | undefined;
|
|
59091
59233
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -59345,6 +59487,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
59345
59487
|
workspaceSlug: string;
|
|
59346
59488
|
projectKey: string;
|
|
59347
59489
|
repoSlug: string;
|
|
59490
|
+
url?: string | undefined;
|
|
59348
59491
|
userId?: number | undefined;
|
|
59349
59492
|
relativePath?: string | undefined;
|
|
59350
59493
|
purgeDirectory?: boolean | undefined;
|
|
@@ -59483,6 +59626,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
59483
59626
|
workspaceSlug: string;
|
|
59484
59627
|
projectKey: string;
|
|
59485
59628
|
repoSlug: string;
|
|
59629
|
+
url?: string | null | undefined;
|
|
59486
59630
|
userId?: number | null | undefined;
|
|
59487
59631
|
relativePath?: string | null | undefined;
|
|
59488
59632
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -59757,6 +59901,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
59757
59901
|
workspaceSlug: z.ZodString;
|
|
59758
59902
|
projectKey: z.ZodString;
|
|
59759
59903
|
repoSlug: z.ZodString;
|
|
59904
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
59760
59905
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
59761
59906
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
59762
59907
|
}, {
|
|
@@ -59773,6 +59918,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
59773
59918
|
workspaceSlug: string;
|
|
59774
59919
|
projectKey: string;
|
|
59775
59920
|
repoSlug: string;
|
|
59921
|
+
url?: string | undefined;
|
|
59776
59922
|
userId?: number | undefined;
|
|
59777
59923
|
relativePath?: string | undefined;
|
|
59778
59924
|
purgeDirectory?: boolean | undefined;
|
|
@@ -59788,6 +59934,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
59788
59934
|
workspaceSlug: string;
|
|
59789
59935
|
projectKey: string;
|
|
59790
59936
|
repoSlug: string;
|
|
59937
|
+
url?: string | null | undefined;
|
|
59791
59938
|
userId?: number | null | undefined;
|
|
59792
59939
|
relativePath?: string | null | undefined;
|
|
59793
59940
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -59854,6 +60001,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
59854
60001
|
workspaceSlug: string;
|
|
59855
60002
|
projectKey: string;
|
|
59856
60003
|
repoSlug: string;
|
|
60004
|
+
url?: string | undefined;
|
|
59857
60005
|
userId?: number | undefined;
|
|
59858
60006
|
relativePath?: string | undefined;
|
|
59859
60007
|
purgeDirectory?: boolean | undefined;
|
|
@@ -60022,6 +60170,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
60022
60170
|
workspaceSlug: string;
|
|
60023
60171
|
projectKey: string;
|
|
60024
60172
|
repoSlug: string;
|
|
60173
|
+
url?: string | undefined;
|
|
60025
60174
|
userId?: number | undefined;
|
|
60026
60175
|
relativePath?: string | undefined;
|
|
60027
60176
|
purgeDirectory?: boolean | undefined;
|
|
@@ -60077,6 +60226,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
60077
60226
|
workspaceSlug: string;
|
|
60078
60227
|
projectKey: string;
|
|
60079
60228
|
repoSlug: string;
|
|
60229
|
+
url?: string | null | undefined;
|
|
60080
60230
|
userId?: number | null | undefined;
|
|
60081
60231
|
relativePath?: string | null | undefined;
|
|
60082
60232
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -60245,6 +60395,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
60245
60395
|
workspaceSlug: string;
|
|
60246
60396
|
projectKey: string;
|
|
60247
60397
|
repoSlug: string;
|
|
60398
|
+
url?: string | null | undefined;
|
|
60248
60399
|
userId?: number | null | undefined;
|
|
60249
60400
|
relativePath?: string | null | undefined;
|
|
60250
60401
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -60390,6 +60541,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
60390
60541
|
workspaceSlug: z.ZodString;
|
|
60391
60542
|
projectKey: z.ZodString;
|
|
60392
60543
|
repoSlug: z.ZodString;
|
|
60544
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
60393
60545
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
60394
60546
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
60395
60547
|
}, {
|
|
@@ -60406,6 +60558,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
60406
60558
|
workspaceSlug: string;
|
|
60407
60559
|
projectKey: string;
|
|
60408
60560
|
repoSlug: string;
|
|
60561
|
+
url?: string | undefined;
|
|
60409
60562
|
userId?: number | undefined;
|
|
60410
60563
|
relativePath?: string | undefined;
|
|
60411
60564
|
purgeDirectory?: boolean | undefined;
|
|
@@ -60421,6 +60574,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
60421
60574
|
workspaceSlug: string;
|
|
60422
60575
|
projectKey: string;
|
|
60423
60576
|
repoSlug: string;
|
|
60577
|
+
url?: string | null | undefined;
|
|
60424
60578
|
userId?: number | null | undefined;
|
|
60425
60579
|
relativePath?: string | null | undefined;
|
|
60426
60580
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -60570,6 +60724,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
60570
60724
|
workspaceSlug: string;
|
|
60571
60725
|
projectKey: string;
|
|
60572
60726
|
repoSlug: string;
|
|
60727
|
+
url?: string | undefined;
|
|
60573
60728
|
userId?: number | undefined;
|
|
60574
60729
|
relativePath?: string | undefined;
|
|
60575
60730
|
purgeDirectory?: boolean | undefined;
|
|
@@ -60642,6 +60797,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
60642
60797
|
workspaceSlug: string;
|
|
60643
60798
|
projectKey: string;
|
|
60644
60799
|
repoSlug: string;
|
|
60800
|
+
url?: string | null | undefined;
|
|
60645
60801
|
userId?: number | null | undefined;
|
|
60646
60802
|
relativePath?: string | null | undefined;
|
|
60647
60803
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -60901,6 +61057,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
60901
61057
|
workspaceSlug: string;
|
|
60902
61058
|
projectKey: string;
|
|
60903
61059
|
repoSlug: string;
|
|
61060
|
+
url?: string | undefined;
|
|
60904
61061
|
userId?: number | undefined;
|
|
60905
61062
|
relativePath?: string | undefined;
|
|
60906
61063
|
purgeDirectory?: boolean | undefined;
|
|
@@ -61039,6 +61196,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
61039
61196
|
workspaceSlug: string;
|
|
61040
61197
|
projectKey: string;
|
|
61041
61198
|
repoSlug: string;
|
|
61199
|
+
url?: string | null | undefined;
|
|
61042
61200
|
userId?: number | null | undefined;
|
|
61043
61201
|
relativePath?: string | null | undefined;
|
|
61044
61202
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -61313,6 +61471,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
61313
61471
|
workspaceSlug: z.ZodString;
|
|
61314
61472
|
projectKey: z.ZodString;
|
|
61315
61473
|
repoSlug: z.ZodString;
|
|
61474
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
61316
61475
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
61317
61476
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
61318
61477
|
}, {
|
|
@@ -61329,6 +61488,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
61329
61488
|
workspaceSlug: string;
|
|
61330
61489
|
projectKey: string;
|
|
61331
61490
|
repoSlug: string;
|
|
61491
|
+
url?: string | undefined;
|
|
61332
61492
|
userId?: number | undefined;
|
|
61333
61493
|
relativePath?: string | undefined;
|
|
61334
61494
|
purgeDirectory?: boolean | undefined;
|
|
@@ -61344,6 +61504,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
61344
61504
|
workspaceSlug: string;
|
|
61345
61505
|
projectKey: string;
|
|
61346
61506
|
repoSlug: string;
|
|
61507
|
+
url?: string | null | undefined;
|
|
61347
61508
|
userId?: number | null | undefined;
|
|
61348
61509
|
relativePath?: string | null | undefined;
|
|
61349
61510
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -61410,6 +61571,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
61410
61571
|
workspaceSlug: string;
|
|
61411
61572
|
projectKey: string;
|
|
61412
61573
|
repoSlug: string;
|
|
61574
|
+
url?: string | undefined;
|
|
61413
61575
|
userId?: number | undefined;
|
|
61414
61576
|
relativePath?: string | undefined;
|
|
61415
61577
|
purgeDirectory?: boolean | undefined;
|
|
@@ -61578,6 +61740,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
61578
61740
|
workspaceSlug: string;
|
|
61579
61741
|
projectKey: string;
|
|
61580
61742
|
repoSlug: string;
|
|
61743
|
+
url?: string | undefined;
|
|
61581
61744
|
userId?: number | undefined;
|
|
61582
61745
|
relativePath?: string | undefined;
|
|
61583
61746
|
purgeDirectory?: boolean | undefined;
|
|
@@ -61633,6 +61796,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
61633
61796
|
workspaceSlug: string;
|
|
61634
61797
|
projectKey: string;
|
|
61635
61798
|
repoSlug: string;
|
|
61799
|
+
url?: string | null | undefined;
|
|
61636
61800
|
userId?: number | null | undefined;
|
|
61637
61801
|
relativePath?: string | null | undefined;
|
|
61638
61802
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -61801,6 +61965,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
61801
61965
|
workspaceSlug: string;
|
|
61802
61966
|
projectKey: string;
|
|
61803
61967
|
repoSlug: string;
|
|
61968
|
+
url?: string | null | undefined;
|
|
61804
61969
|
userId?: number | null | undefined;
|
|
61805
61970
|
relativePath?: string | null | undefined;
|
|
61806
61971
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -61858,6 +62023,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
61858
62023
|
workspaceSlug: string;
|
|
61859
62024
|
projectKey: string;
|
|
61860
62025
|
repoSlug: string;
|
|
62026
|
+
url?: string | undefined;
|
|
61861
62027
|
userId?: number | undefined;
|
|
61862
62028
|
relativePath?: string | undefined;
|
|
61863
62029
|
purgeDirectory?: boolean | undefined;
|
|
@@ -62026,6 +62192,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
62026
62192
|
workspaceSlug: string;
|
|
62027
62193
|
projectKey: string;
|
|
62028
62194
|
repoSlug: string;
|
|
62195
|
+
url?: string | undefined;
|
|
62029
62196
|
userId?: number | undefined;
|
|
62030
62197
|
relativePath?: string | undefined;
|
|
62031
62198
|
purgeDirectory?: boolean | undefined;
|
|
@@ -62083,6 +62250,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
62083
62250
|
workspaceSlug: string;
|
|
62084
62251
|
projectKey: string;
|
|
62085
62252
|
repoSlug: string;
|
|
62253
|
+
url?: string | null | undefined;
|
|
62086
62254
|
userId?: number | null | undefined;
|
|
62087
62255
|
relativePath?: string | null | undefined;
|
|
62088
62256
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -62251,6 +62419,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
62251
62419
|
workspaceSlug: string;
|
|
62252
62420
|
projectKey: string;
|
|
62253
62421
|
repoSlug: string;
|
|
62422
|
+
url?: string | null | undefined;
|
|
62254
62423
|
userId?: number | null | undefined;
|
|
62255
62424
|
relativePath?: string | null | undefined;
|
|
62256
62425
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -62397,6 +62566,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
62397
62566
|
workspaceSlug: z.ZodString;
|
|
62398
62567
|
projectKey: z.ZodString;
|
|
62399
62568
|
repoSlug: z.ZodString;
|
|
62569
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
62400
62570
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
62401
62571
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
62402
62572
|
}, {
|
|
@@ -62413,6 +62583,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
62413
62583
|
workspaceSlug: string;
|
|
62414
62584
|
projectKey: string;
|
|
62415
62585
|
repoSlug: string;
|
|
62586
|
+
url?: string | undefined;
|
|
62416
62587
|
userId?: number | undefined;
|
|
62417
62588
|
relativePath?: string | undefined;
|
|
62418
62589
|
purgeDirectory?: boolean | undefined;
|
|
@@ -62428,6 +62599,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
62428
62599
|
workspaceSlug: string;
|
|
62429
62600
|
projectKey: string;
|
|
62430
62601
|
repoSlug: string;
|
|
62602
|
+
url?: string | null | undefined;
|
|
62431
62603
|
userId?: number | null | undefined;
|
|
62432
62604
|
relativePath?: string | null | undefined;
|
|
62433
62605
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -62577,6 +62749,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
62577
62749
|
workspaceSlug: string;
|
|
62578
62750
|
projectKey: string;
|
|
62579
62751
|
repoSlug: string;
|
|
62752
|
+
url?: string | undefined;
|
|
62580
62753
|
userId?: number | undefined;
|
|
62581
62754
|
relativePath?: string | undefined;
|
|
62582
62755
|
purgeDirectory?: boolean | undefined;
|
|
@@ -62649,6 +62822,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
62649
62822
|
workspaceSlug: string;
|
|
62650
62823
|
projectKey: string;
|
|
62651
62824
|
repoSlug: string;
|
|
62825
|
+
url?: string | null | undefined;
|
|
62652
62826
|
userId?: number | null | undefined;
|
|
62653
62827
|
relativePath?: string | null | undefined;
|
|
62654
62828
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -62908,6 +63082,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
62908
63082
|
workspaceSlug: string;
|
|
62909
63083
|
projectKey: string;
|
|
62910
63084
|
repoSlug: string;
|
|
63085
|
+
url?: string | undefined;
|
|
62911
63086
|
userId?: number | undefined;
|
|
62912
63087
|
relativePath?: string | undefined;
|
|
62913
63088
|
purgeDirectory?: boolean | undefined;
|
|
@@ -63046,6 +63221,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
63046
63221
|
workspaceSlug: string;
|
|
63047
63222
|
projectKey: string;
|
|
63048
63223
|
repoSlug: string;
|
|
63224
|
+
url?: string | null | undefined;
|
|
63049
63225
|
userId?: number | null | undefined;
|
|
63050
63226
|
relativePath?: string | null | undefined;
|
|
63051
63227
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -63320,6 +63496,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
63320
63496
|
workspaceSlug: z.ZodString;
|
|
63321
63497
|
projectKey: z.ZodString;
|
|
63322
63498
|
repoSlug: z.ZodString;
|
|
63499
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
63323
63500
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
63324
63501
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
63325
63502
|
}, {
|
|
@@ -63336,6 +63513,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
63336
63513
|
workspaceSlug: string;
|
|
63337
63514
|
projectKey: string;
|
|
63338
63515
|
repoSlug: string;
|
|
63516
|
+
url?: string | undefined;
|
|
63339
63517
|
userId?: number | undefined;
|
|
63340
63518
|
relativePath?: string | undefined;
|
|
63341
63519
|
purgeDirectory?: boolean | undefined;
|
|
@@ -63351,6 +63529,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
63351
63529
|
workspaceSlug: string;
|
|
63352
63530
|
projectKey: string;
|
|
63353
63531
|
repoSlug: string;
|
|
63532
|
+
url?: string | null | undefined;
|
|
63354
63533
|
userId?: number | null | undefined;
|
|
63355
63534
|
relativePath?: string | null | undefined;
|
|
63356
63535
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -63417,6 +63596,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
63417
63596
|
workspaceSlug: string;
|
|
63418
63597
|
projectKey: string;
|
|
63419
63598
|
repoSlug: string;
|
|
63599
|
+
url?: string | undefined;
|
|
63420
63600
|
userId?: number | undefined;
|
|
63421
63601
|
relativePath?: string | undefined;
|
|
63422
63602
|
purgeDirectory?: boolean | undefined;
|
|
@@ -63585,6 +63765,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
63585
63765
|
workspaceSlug: string;
|
|
63586
63766
|
projectKey: string;
|
|
63587
63767
|
repoSlug: string;
|
|
63768
|
+
url?: string | undefined;
|
|
63588
63769
|
userId?: number | undefined;
|
|
63589
63770
|
relativePath?: string | undefined;
|
|
63590
63771
|
purgeDirectory?: boolean | undefined;
|
|
@@ -63640,6 +63821,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
63640
63821
|
workspaceSlug: string;
|
|
63641
63822
|
projectKey: string;
|
|
63642
63823
|
repoSlug: string;
|
|
63824
|
+
url?: string | null | undefined;
|
|
63643
63825
|
userId?: number | null | undefined;
|
|
63644
63826
|
relativePath?: string | null | undefined;
|
|
63645
63827
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -63808,6 +63990,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
63808
63990
|
workspaceSlug: string;
|
|
63809
63991
|
projectKey: string;
|
|
63810
63992
|
repoSlug: string;
|
|
63993
|
+
url?: string | null | undefined;
|
|
63811
63994
|
userId?: number | null | undefined;
|
|
63812
63995
|
relativePath?: string | null | undefined;
|
|
63813
63996
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -63865,6 +64048,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
63865
64048
|
workspaceSlug: string;
|
|
63866
64049
|
projectKey: string;
|
|
63867
64050
|
repoSlug: string;
|
|
64051
|
+
url?: string | undefined;
|
|
63868
64052
|
userId?: number | undefined;
|
|
63869
64053
|
relativePath?: string | undefined;
|
|
63870
64054
|
purgeDirectory?: boolean | undefined;
|
|
@@ -64033,6 +64217,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
64033
64217
|
workspaceSlug: string;
|
|
64034
64218
|
projectKey: string;
|
|
64035
64219
|
repoSlug: string;
|
|
64220
|
+
url?: string | undefined;
|
|
64036
64221
|
userId?: number | undefined;
|
|
64037
64222
|
relativePath?: string | undefined;
|
|
64038
64223
|
purgeDirectory?: boolean | undefined;
|
|
@@ -64090,6 +64275,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
64090
64275
|
workspaceSlug: string;
|
|
64091
64276
|
projectKey: string;
|
|
64092
64277
|
repoSlug: string;
|
|
64278
|
+
url?: string | null | undefined;
|
|
64093
64279
|
userId?: number | null | undefined;
|
|
64094
64280
|
relativePath?: string | null | undefined;
|
|
64095
64281
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -64258,6 +64444,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
64258
64444
|
workspaceSlug: string;
|
|
64259
64445
|
projectKey: string;
|
|
64260
64446
|
repoSlug: string;
|
|
64447
|
+
url?: string | null | undefined;
|
|
64261
64448
|
userId?: number | null | undefined;
|
|
64262
64449
|
relativePath?: string | null | undefined;
|
|
64263
64450
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -96168,6 +96355,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
96168
96355
|
workspaceSlug: z.ZodString;
|
|
96169
96356
|
projectKey: z.ZodString;
|
|
96170
96357
|
repoSlug: z.ZodString;
|
|
96358
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
96171
96359
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
96172
96360
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
96173
96361
|
}, {
|
|
@@ -96184,6 +96372,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
96184
96372
|
workspaceSlug: string;
|
|
96185
96373
|
projectKey: string;
|
|
96186
96374
|
repoSlug: string;
|
|
96375
|
+
url?: string | undefined;
|
|
96187
96376
|
userId?: number | undefined;
|
|
96188
96377
|
relativePath?: string | undefined;
|
|
96189
96378
|
purgeDirectory?: boolean | undefined;
|
|
@@ -96199,6 +96388,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
96199
96388
|
workspaceSlug: string;
|
|
96200
96389
|
projectKey: string;
|
|
96201
96390
|
repoSlug: string;
|
|
96391
|
+
url?: string | null | undefined;
|
|
96202
96392
|
userId?: number | null | undefined;
|
|
96203
96393
|
relativePath?: string | null | undefined;
|
|
96204
96394
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -96348,6 +96538,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
96348
96538
|
workspaceSlug: string;
|
|
96349
96539
|
projectKey: string;
|
|
96350
96540
|
repoSlug: string;
|
|
96541
|
+
url?: string | undefined;
|
|
96351
96542
|
userId?: number | undefined;
|
|
96352
96543
|
relativePath?: string | undefined;
|
|
96353
96544
|
purgeDirectory?: boolean | undefined;
|
|
@@ -96420,6 +96611,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
96420
96611
|
workspaceSlug: string;
|
|
96421
96612
|
projectKey: string;
|
|
96422
96613
|
repoSlug: string;
|
|
96614
|
+
url?: string | null | undefined;
|
|
96423
96615
|
userId?: number | null | undefined;
|
|
96424
96616
|
relativePath?: string | null | undefined;
|
|
96425
96617
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -96506,6 +96698,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
96506
96698
|
workspaceSlug: string;
|
|
96507
96699
|
projectKey: string;
|
|
96508
96700
|
repoSlug: string;
|
|
96701
|
+
url?: string | undefined;
|
|
96509
96702
|
userId?: number | undefined;
|
|
96510
96703
|
relativePath?: string | undefined;
|
|
96511
96704
|
purgeDirectory?: boolean | undefined;
|
|
@@ -96597,6 +96790,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
96597
96790
|
workspaceSlug: string;
|
|
96598
96791
|
projectKey: string;
|
|
96599
96792
|
repoSlug: string;
|
|
96793
|
+
url?: string | null | undefined;
|
|
96600
96794
|
userId?: number | null | undefined;
|
|
96601
96795
|
relativePath?: string | null | undefined;
|
|
96602
96796
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -96739,6 +96933,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
96739
96933
|
workspaceSlug: z.ZodString;
|
|
96740
96934
|
projectKey: z.ZodString;
|
|
96741
96935
|
repoSlug: z.ZodString;
|
|
96936
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
96742
96937
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
96743
96938
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
96744
96939
|
}, {
|
|
@@ -96755,6 +96950,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
96755
96950
|
workspaceSlug: string;
|
|
96756
96951
|
projectKey: string;
|
|
96757
96952
|
repoSlug: string;
|
|
96953
|
+
url?: string | undefined;
|
|
96758
96954
|
userId?: number | undefined;
|
|
96759
96955
|
relativePath?: string | undefined;
|
|
96760
96956
|
purgeDirectory?: boolean | undefined;
|
|
@@ -96770,6 +96966,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
96770
96966
|
workspaceSlug: string;
|
|
96771
96967
|
projectKey: string;
|
|
96772
96968
|
repoSlug: string;
|
|
96969
|
+
url?: string | null | undefined;
|
|
96773
96970
|
userId?: number | null | undefined;
|
|
96774
96971
|
relativePath?: string | null | undefined;
|
|
96775
96972
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -96919,6 +97116,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
96919
97116
|
workspaceSlug: string;
|
|
96920
97117
|
projectKey: string;
|
|
96921
97118
|
repoSlug: string;
|
|
97119
|
+
url?: string | undefined;
|
|
96922
97120
|
userId?: number | undefined;
|
|
96923
97121
|
relativePath?: string | undefined;
|
|
96924
97122
|
purgeDirectory?: boolean | undefined;
|
|
@@ -96991,6 +97189,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
96991
97189
|
workspaceSlug: string;
|
|
96992
97190
|
projectKey: string;
|
|
96993
97191
|
repoSlug: string;
|
|
97192
|
+
url?: string | null | undefined;
|
|
96994
97193
|
userId?: number | null | undefined;
|
|
96995
97194
|
relativePath?: string | null | undefined;
|
|
96996
97195
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -97109,6 +97308,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
97109
97308
|
workspaceSlug: string;
|
|
97110
97309
|
projectKey: string;
|
|
97111
97310
|
repoSlug: string;
|
|
97311
|
+
url?: string | undefined;
|
|
97112
97312
|
userId?: number | undefined;
|
|
97113
97313
|
relativePath?: string | undefined;
|
|
97114
97314
|
purgeDirectory?: boolean | undefined;
|
|
@@ -97209,6 +97409,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<{
|
|
|
97209
97409
|
workspaceSlug: string;
|
|
97210
97410
|
projectKey: string;
|
|
97211
97411
|
repoSlug: string;
|
|
97412
|
+
url?: string | null | undefined;
|
|
97212
97413
|
userId?: number | null | undefined;
|
|
97213
97414
|
relativePath?: string | null | undefined;
|
|
97214
97415
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -98067,6 +98268,7 @@ declare class PipelinesEndpoint {
|
|
|
98067
98268
|
workspaceSlug: string;
|
|
98068
98269
|
projectKey: string;
|
|
98069
98270
|
repoSlug: string;
|
|
98271
|
+
url?: string | undefined;
|
|
98070
98272
|
userId?: number | undefined;
|
|
98071
98273
|
relativePath?: string | undefined;
|
|
98072
98274
|
purgeDirectory?: boolean | undefined;
|
|
@@ -98235,6 +98437,7 @@ declare class PipelinesEndpoint {
|
|
|
98235
98437
|
workspaceSlug: string;
|
|
98236
98438
|
projectKey: string;
|
|
98237
98439
|
repoSlug: string;
|
|
98440
|
+
url?: string | undefined;
|
|
98238
98441
|
userId?: number | undefined;
|
|
98239
98442
|
relativePath?: string | undefined;
|
|
98240
98443
|
purgeDirectory?: boolean | undefined;
|
|
@@ -98293,6 +98496,7 @@ declare class PipelinesEndpoint {
|
|
|
98293
98496
|
workspaceSlug: string;
|
|
98294
98497
|
projectKey: string;
|
|
98295
98498
|
repoSlug: string;
|
|
98499
|
+
url?: string | undefined;
|
|
98296
98500
|
userId?: number | undefined;
|
|
98297
98501
|
relativePath?: string | undefined;
|
|
98298
98502
|
purgeDirectory?: boolean | undefined;
|
|
@@ -98461,6 +98665,7 @@ declare class PipelinesEndpoint {
|
|
|
98461
98665
|
workspaceSlug: string;
|
|
98462
98666
|
projectKey: string;
|
|
98463
98667
|
repoSlug: string;
|
|
98668
|
+
url?: string | undefined;
|
|
98464
98669
|
userId?: number | undefined;
|
|
98465
98670
|
relativePath?: string | undefined;
|
|
98466
98671
|
purgeDirectory?: boolean | undefined;
|
|
@@ -98519,6 +98724,7 @@ declare class PipelinesEndpoint {
|
|
|
98519
98724
|
workspaceSlug: string;
|
|
98520
98725
|
projectKey: string;
|
|
98521
98726
|
repoSlug: string;
|
|
98727
|
+
url?: string | undefined;
|
|
98522
98728
|
userId?: number | undefined;
|
|
98523
98729
|
relativePath?: string | undefined;
|
|
98524
98730
|
purgeDirectory?: boolean | undefined;
|
|
@@ -98687,6 +98893,7 @@ declare class PipelinesEndpoint {
|
|
|
98687
98893
|
workspaceSlug: string;
|
|
98688
98894
|
projectKey: string;
|
|
98689
98895
|
repoSlug: string;
|
|
98896
|
+
url?: string | undefined;
|
|
98690
98897
|
userId?: number | undefined;
|
|
98691
98898
|
relativePath?: string | undefined;
|
|
98692
98899
|
purgeDirectory?: boolean | undefined;
|
|
@@ -98737,6 +98944,7 @@ declare class PipelinesEndpoint {
|
|
|
98737
98944
|
workspaceSlug: string;
|
|
98738
98945
|
projectKey: string;
|
|
98739
98946
|
repoSlug: string;
|
|
98947
|
+
url?: string | undefined;
|
|
98740
98948
|
userId?: number | undefined;
|
|
98741
98949
|
relativePath?: string | undefined;
|
|
98742
98950
|
purgeDirectory?: boolean | undefined;
|
|
@@ -99283,6 +99491,11 @@ declare class ElementsActionEndpoint {
|
|
|
99283
99491
|
parentName?: string | undefined;
|
|
99284
99492
|
};
|
|
99285
99493
|
}[];
|
|
99494
|
+
} | {
|
|
99495
|
+
type: "ElementPropertyValuesEdit";
|
|
99496
|
+
output: {
|
|
99497
|
+
success: true;
|
|
99498
|
+
};
|
|
99286
99499
|
}>;
|
|
99287
99500
|
createDocGroup(dsId: string, vId: string, input: DTOCreateDocumentationGroupInput): Promise<{
|
|
99288
99501
|
type: "DocumentationGroupCreate";
|
|
@@ -99429,6 +99642,11 @@ declare class ElementsActionEndpoint {
|
|
|
99429
99642
|
parentName?: string | undefined;
|
|
99430
99643
|
};
|
|
99431
99644
|
}[];
|
|
99645
|
+
} | {
|
|
99646
|
+
type: "ElementPropertyValuesEdit";
|
|
99647
|
+
output: {
|
|
99648
|
+
success: true;
|
|
99649
|
+
};
|
|
99432
99650
|
}>;
|
|
99433
99651
|
moveDocGroup(dsId: string, vId: string, input: DTOMoveDocumentationGroupInput): Promise<{
|
|
99434
99652
|
type: "DocumentationGroupCreate";
|
|
@@ -99575,6 +99793,11 @@ declare class ElementsActionEndpoint {
|
|
|
99575
99793
|
parentName?: string | undefined;
|
|
99576
99794
|
};
|
|
99577
99795
|
}[];
|
|
99796
|
+
} | {
|
|
99797
|
+
type: "ElementPropertyValuesEdit";
|
|
99798
|
+
output: {
|
|
99799
|
+
success: true;
|
|
99800
|
+
};
|
|
99578
99801
|
}>;
|
|
99579
99802
|
updateDocPage(dsId: string, vId: string, input: DTOUpdateDocumentationPageInputV2): Promise<{
|
|
99580
99803
|
type: "DocumentationGroupCreate";
|
|
@@ -99721,6 +99944,11 @@ declare class ElementsActionEndpoint {
|
|
|
99721
99944
|
parentName?: string | undefined;
|
|
99722
99945
|
};
|
|
99723
99946
|
}[];
|
|
99947
|
+
} | {
|
|
99948
|
+
type: "ElementPropertyValuesEdit";
|
|
99949
|
+
output: {
|
|
99950
|
+
success: true;
|
|
99951
|
+
};
|
|
99724
99952
|
}>;
|
|
99725
99953
|
updateDocPageDocument(dsId: string, vId: string, input: DTOUpdateDocumentationPageDocumentInputV2): Promise<{
|
|
99726
99954
|
type: "DocumentationGroupCreate";
|
|
@@ -99867,6 +100095,11 @@ declare class ElementsActionEndpoint {
|
|
|
99867
100095
|
parentName?: string | undefined;
|
|
99868
100096
|
};
|
|
99869
100097
|
}[];
|
|
100098
|
+
} | {
|
|
100099
|
+
type: "ElementPropertyValuesEdit";
|
|
100100
|
+
output: {
|
|
100101
|
+
success: true;
|
|
100102
|
+
};
|
|
99870
100103
|
}>;
|
|
99871
100104
|
updateDocGroup(dsId: string, vId: string, input: DTOUpdateDocumentationGroupInput): Promise<{
|
|
99872
100105
|
type: "DocumentationGroupCreate";
|
|
@@ -100013,6 +100246,11 @@ declare class ElementsActionEndpoint {
|
|
|
100013
100246
|
parentName?: string | undefined;
|
|
100014
100247
|
};
|
|
100015
100248
|
}[];
|
|
100249
|
+
} | {
|
|
100250
|
+
type: "ElementPropertyValuesEdit";
|
|
100251
|
+
output: {
|
|
100252
|
+
success: true;
|
|
100253
|
+
};
|
|
100016
100254
|
}>;
|
|
100017
100255
|
createDocTab(dsId: string, vId: string, input: DTOCreateDocumentationTabInput): Promise<{
|
|
100018
100256
|
type: "DocumentationGroupCreate";
|
|
@@ -100159,6 +100397,11 @@ declare class ElementsActionEndpoint {
|
|
|
100159
100397
|
parentName?: string | undefined;
|
|
100160
100398
|
};
|
|
100161
100399
|
}[];
|
|
100400
|
+
} | {
|
|
100401
|
+
type: "ElementPropertyValuesEdit";
|
|
100402
|
+
output: {
|
|
100403
|
+
success: true;
|
|
100404
|
+
};
|
|
100162
100405
|
}>;
|
|
100163
100406
|
renderNodes(dsId: string, vId: string, input: DTOFigmaNodeRenderIdInput[]): Promise<{
|
|
100164
100407
|
type: "DocumentationGroupCreate";
|
|
@@ -100305,6 +100548,11 @@ declare class ElementsActionEndpoint {
|
|
|
100305
100548
|
parentName?: string | undefined;
|
|
100306
100549
|
};
|
|
100307
100550
|
}[];
|
|
100551
|
+
} | {
|
|
100552
|
+
type: "ElementPropertyValuesEdit";
|
|
100553
|
+
output: {
|
|
100554
|
+
success: true;
|
|
100555
|
+
};
|
|
100308
100556
|
}>;
|
|
100309
100557
|
renderNodesAsync(dsId: string, vId: string, nodes: DTOFigmaNodeRenderInput[]): Promise<{
|
|
100310
100558
|
type: "DocumentationGroupCreate";
|
|
@@ -100451,6 +100699,162 @@ declare class ElementsActionEndpoint {
|
|
|
100451
100699
|
parentName?: string | undefined;
|
|
100452
100700
|
};
|
|
100453
100701
|
}[];
|
|
100702
|
+
} | {
|
|
100703
|
+
type: "ElementPropertyValuesEdit";
|
|
100704
|
+
output: {
|
|
100705
|
+
success: true;
|
|
100706
|
+
};
|
|
100707
|
+
}>;
|
|
100708
|
+
bulkEditPropertyValues(dsId: string, vId: string, values: DTOElementPropertyValueUpsertPaylod[]): Promise<{
|
|
100709
|
+
type: "DocumentationGroupCreate";
|
|
100710
|
+
output: {
|
|
100711
|
+
success: true;
|
|
100712
|
+
};
|
|
100713
|
+
} | {
|
|
100714
|
+
type: "DocumentationTabCreate";
|
|
100715
|
+
output: {
|
|
100716
|
+
success: true;
|
|
100717
|
+
};
|
|
100718
|
+
} | {
|
|
100719
|
+
type: "DocumentationGroupUpdate";
|
|
100720
|
+
output: {
|
|
100721
|
+
success: true;
|
|
100722
|
+
};
|
|
100723
|
+
} | {
|
|
100724
|
+
type: "DocumentationGroupMove";
|
|
100725
|
+
output: {
|
|
100726
|
+
success: true;
|
|
100727
|
+
};
|
|
100728
|
+
} | {
|
|
100729
|
+
type: "DocumentationGroupDuplicate";
|
|
100730
|
+
output: {
|
|
100731
|
+
success: true;
|
|
100732
|
+
};
|
|
100733
|
+
} | {
|
|
100734
|
+
type: "DocumentationGroupDelete";
|
|
100735
|
+
output: {
|
|
100736
|
+
success: true;
|
|
100737
|
+
};
|
|
100738
|
+
} | {
|
|
100739
|
+
type: "DocumentationTabGroupDelete";
|
|
100740
|
+
output: {
|
|
100741
|
+
success: true;
|
|
100742
|
+
};
|
|
100743
|
+
} | {
|
|
100744
|
+
type: "DocumentationPageCreate";
|
|
100745
|
+
output: {
|
|
100746
|
+
success: true;
|
|
100747
|
+
};
|
|
100748
|
+
} | {
|
|
100749
|
+
type: "DocumentationPageUpdate";
|
|
100750
|
+
output: {
|
|
100751
|
+
success: true;
|
|
100752
|
+
};
|
|
100753
|
+
} | {
|
|
100754
|
+
type: "DocumentationPageUpdateDocument";
|
|
100755
|
+
output: {
|
|
100756
|
+
success: true;
|
|
100757
|
+
};
|
|
100758
|
+
} | {
|
|
100759
|
+
type: "DocumentationPageMove";
|
|
100760
|
+
output: {
|
|
100761
|
+
success: true;
|
|
100762
|
+
};
|
|
100763
|
+
} | {
|
|
100764
|
+
type: "DocumentationPageDuplicate";
|
|
100765
|
+
output: {
|
|
100766
|
+
success: true;
|
|
100767
|
+
};
|
|
100768
|
+
} | {
|
|
100769
|
+
type: "DocumentationPageDelete";
|
|
100770
|
+
output: {
|
|
100771
|
+
success: true;
|
|
100772
|
+
};
|
|
100773
|
+
} | {
|
|
100774
|
+
type: "DocumentationPageRestore";
|
|
100775
|
+
output: {
|
|
100776
|
+
success: true;
|
|
100777
|
+
};
|
|
100778
|
+
} | {
|
|
100779
|
+
type: "DocumentationGroupRestore";
|
|
100780
|
+
output: {
|
|
100781
|
+
success: true;
|
|
100782
|
+
};
|
|
100783
|
+
} | {
|
|
100784
|
+
type: "DocumentationPageApprovalStateChange";
|
|
100785
|
+
output: {
|
|
100786
|
+
success: true;
|
|
100787
|
+
};
|
|
100788
|
+
} | {
|
|
100789
|
+
type: "FigmaNodeRender";
|
|
100790
|
+
figmaNodes: {
|
|
100791
|
+
id: string;
|
|
100792
|
+
persistentId: string;
|
|
100793
|
+
meta: {
|
|
100794
|
+
name: string;
|
|
100795
|
+
description?: string | undefined;
|
|
100796
|
+
};
|
|
100797
|
+
designSystemVersionId: string;
|
|
100798
|
+
createdAt: Date;
|
|
100799
|
+
updatedAt: Date;
|
|
100800
|
+
data: {
|
|
100801
|
+
figmaNodeId: string;
|
|
100802
|
+
isValid: boolean;
|
|
100803
|
+
assetId: string;
|
|
100804
|
+
assetUrl: string;
|
|
100805
|
+
assetFormat: "Png" | "Svg";
|
|
100806
|
+
assetScale: number;
|
|
100807
|
+
assetWidth?: number | undefined;
|
|
100808
|
+
assetHeight?: number | undefined;
|
|
100809
|
+
};
|
|
100810
|
+
origin: {
|
|
100811
|
+
sourceId: string;
|
|
100812
|
+
fileId?: string | undefined;
|
|
100813
|
+
parentName?: string | undefined;
|
|
100814
|
+
};
|
|
100815
|
+
}[];
|
|
100816
|
+
} | {
|
|
100817
|
+
type: "FigmaNodeRenderAsync";
|
|
100818
|
+
figmaNodes: {
|
|
100819
|
+
id: string;
|
|
100820
|
+
persistentId: string;
|
|
100821
|
+
meta: {
|
|
100822
|
+
name: string;
|
|
100823
|
+
description?: string | undefined;
|
|
100824
|
+
};
|
|
100825
|
+
designSystemVersionId: string;
|
|
100826
|
+
createdAt: Date;
|
|
100827
|
+
updatedAt: Date;
|
|
100828
|
+
data: {
|
|
100829
|
+
format: "Png" | "Svg";
|
|
100830
|
+
sceneNodeId: string;
|
|
100831
|
+
renderState: "InProgress" | "Failed" | "Success";
|
|
100832
|
+
hasSource: boolean;
|
|
100833
|
+
scale?: number | undefined;
|
|
100834
|
+
renderedImage?: {
|
|
100835
|
+
resourceId: string;
|
|
100836
|
+
format: "Png" | "Svg";
|
|
100837
|
+
url?: string | undefined;
|
|
100838
|
+
width?: number | undefined;
|
|
100839
|
+
height?: number | undefined;
|
|
100840
|
+
originKey?: string | undefined;
|
|
100841
|
+
scale?: number | undefined;
|
|
100842
|
+
} | undefined;
|
|
100843
|
+
renderError?: {
|
|
100844
|
+
type: "MissingIntegration" | "NodeNotFound" | "RenderError";
|
|
100845
|
+
} | undefined;
|
|
100846
|
+
};
|
|
100847
|
+
origin: {
|
|
100848
|
+
sourceId: string;
|
|
100849
|
+
fileId?: string | undefined;
|
|
100850
|
+
parentName?: string | undefined;
|
|
100851
|
+
};
|
|
100852
|
+
}[];
|
|
100853
|
+
} | {
|
|
100854
|
+
type: "ElementPropertyValuesEdit";
|
|
100855
|
+
output: {
|
|
100856
|
+
success: true;
|
|
100857
|
+
};
|
|
100454
100858
|
}>;
|
|
100455
100859
|
private action;
|
|
100456
100860
|
}
|
|
@@ -106750,4 +107154,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
106750
107154
|
reason: ValidationErrorReason | undefined;
|
|
106751
107155
|
};
|
|
106752
107156
|
|
|
106753
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentProperty, DTOCodeComponentResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, 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, 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, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, 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, 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, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, 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, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, 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, yjsToItemConfiguration };
|
|
107157
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentProperty, DTOCodeComponentResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, 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, 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, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, 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, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, 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, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, 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, yjsToItemConfiguration };
|