@supernova-studio/client 0.45.1 → 0.46.1
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 +130 -45
- package/dist/index.d.ts +130 -45
- package/dist/index.js +35 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +34 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/design-systems/version.ts +13 -1
- package/src/api/dto/elements/figma-nodes/figma-node.ts +9 -0
- package/src/api/payloads/design-systems/version.ts +4 -2
package/dist/index.d.mts
CHANGED
|
@@ -292,6 +292,7 @@ declare const DTOExporterPropertyListResponse: z.ZodObject<{
|
|
|
292
292
|
type DTOExporterPropertyListResponse = z.infer<typeof DTOExporterPropertyListResponse>;
|
|
293
293
|
|
|
294
294
|
declare const VersionSQSPayload: z.ZodObject<{
|
|
295
|
+
jobId: z.ZodString;
|
|
295
296
|
designSystemId: z.ZodString;
|
|
296
297
|
input: z.ZodObject<{
|
|
297
298
|
meta: z.ZodObject<{
|
|
@@ -323,6 +324,7 @@ declare const VersionSQSPayload: z.ZodObject<{
|
|
|
323
324
|
}>;
|
|
324
325
|
}, "strip", z.ZodTypeAny, {
|
|
325
326
|
designSystemId: string;
|
|
327
|
+
jobId: string;
|
|
326
328
|
input: {
|
|
327
329
|
meta: {
|
|
328
330
|
name?: string | undefined;
|
|
@@ -333,6 +335,7 @@ declare const VersionSQSPayload: z.ZodObject<{
|
|
|
333
335
|
};
|
|
334
336
|
}, {
|
|
335
337
|
designSystemId: string;
|
|
338
|
+
jobId: string;
|
|
336
339
|
input: {
|
|
337
340
|
meta: {
|
|
338
341
|
name?: string | undefined;
|
|
@@ -358,6 +361,7 @@ declare const DTODesignSystemVersionCreationResponse: z.ZodObject<{
|
|
|
358
361
|
changeLog: z.ZodString;
|
|
359
362
|
isReadOnly: z.ZodBoolean;
|
|
360
363
|
designSystemId: z.ZodString;
|
|
364
|
+
jobId: z.ZodString;
|
|
361
365
|
}, "strip", z.ZodTypeAny, {
|
|
362
366
|
meta: {
|
|
363
367
|
name: string;
|
|
@@ -367,6 +371,7 @@ declare const DTODesignSystemVersionCreationResponse: z.ZodObject<{
|
|
|
367
371
|
changeLog: string;
|
|
368
372
|
designSystemId: string;
|
|
369
373
|
isReadOnly: boolean;
|
|
374
|
+
jobId: string;
|
|
370
375
|
}, {
|
|
371
376
|
meta: {
|
|
372
377
|
name: string;
|
|
@@ -376,6 +381,7 @@ declare const DTODesignSystemVersionCreationResponse: z.ZodObject<{
|
|
|
376
381
|
changeLog: string;
|
|
377
382
|
designSystemId: string;
|
|
378
383
|
isReadOnly: boolean;
|
|
384
|
+
jobId: string;
|
|
379
385
|
}>;
|
|
380
386
|
type DTODesignSystemVersionCreationResponse = z.infer<typeof DTODesignSystemVersionCreationResponse>;
|
|
381
387
|
declare const DTODesignSystemVersion: z.ZodObject<{
|
|
@@ -557,6 +563,45 @@ declare const DTODesignSystemVersionGetResponse: z.ZodObject<{
|
|
|
557
563
|
};
|
|
558
564
|
}>;
|
|
559
565
|
type DTODesignSystemVersionGetResponse = z.infer<typeof DTODesignSystemVersionGetResponse>;
|
|
566
|
+
declare const DTODesignSystemVersionJobStatusResponse: z.ZodObject<{
|
|
567
|
+
job: z.ZodObject<Omit<{
|
|
568
|
+
_id: z.ZodOptional<z.ZodString>;
|
|
569
|
+
version: z.ZodString;
|
|
570
|
+
designSystemId: z.ZodString;
|
|
571
|
+
designSystemVersionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
572
|
+
status: z.ZodEnum<["Success", "InProgress", "Error"]>;
|
|
573
|
+
errorMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
574
|
+
}, "_id">, "strip", z.ZodTypeAny, {
|
|
575
|
+
status: "Success" | "InProgress" | "Error";
|
|
576
|
+
version: string;
|
|
577
|
+
designSystemId: string;
|
|
578
|
+
designSystemVersionId?: string | undefined;
|
|
579
|
+
errorMessage?: string | undefined;
|
|
580
|
+
}, {
|
|
581
|
+
status: "Success" | "InProgress" | "Error";
|
|
582
|
+
version: string;
|
|
583
|
+
designSystemId: string;
|
|
584
|
+
designSystemVersionId?: string | null | undefined;
|
|
585
|
+
errorMessage?: string | null | undefined;
|
|
586
|
+
}>;
|
|
587
|
+
}, "strip", z.ZodTypeAny, {
|
|
588
|
+
job: {
|
|
589
|
+
status: "Success" | "InProgress" | "Error";
|
|
590
|
+
version: string;
|
|
591
|
+
designSystemId: string;
|
|
592
|
+
designSystemVersionId?: string | undefined;
|
|
593
|
+
errorMessage?: string | undefined;
|
|
594
|
+
};
|
|
595
|
+
}, {
|
|
596
|
+
job: {
|
|
597
|
+
status: "Success" | "InProgress" | "Error";
|
|
598
|
+
version: string;
|
|
599
|
+
designSystemId: string;
|
|
600
|
+
designSystemVersionId?: string | null | undefined;
|
|
601
|
+
errorMessage?: string | null | undefined;
|
|
602
|
+
};
|
|
603
|
+
}>;
|
|
604
|
+
type DTODesignSystemVersionJobStatusResponse = z.infer<typeof DTODesignSystemVersionJobStatusResponse>;
|
|
560
605
|
|
|
561
606
|
declare const DTOElementViewColumnSharedAttributes: z.ZodObject<{
|
|
562
607
|
id: z.ZodString;
|
|
@@ -8212,7 +8257,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8212
8257
|
caption?: string | null | undefined;
|
|
8213
8258
|
headingType?: number | null | undefined;
|
|
8214
8259
|
codeLanguage?: "Markdown" | "Plain" | "Angular" | "Bash" | "C" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "ObjectiveC" | "PHP" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
8215
|
-
calloutType?: "
|
|
8260
|
+
calloutType?: "Success" | "Error" | "Info" | "Primary" | "Warning" | null | undefined;
|
|
8216
8261
|
urlInput?: string | null | undefined;
|
|
8217
8262
|
url?: string | null | undefined;
|
|
8218
8263
|
urlPreview?: {
|
|
@@ -8394,7 +8439,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8394
8439
|
caption?: string | null | undefined;
|
|
8395
8440
|
headingType?: number | null | undefined;
|
|
8396
8441
|
codeLanguage?: "Markdown" | "Plain" | "Angular" | "Bash" | "C" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "ObjectiveC" | "PHP" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
8397
|
-
calloutType?: "
|
|
8442
|
+
calloutType?: "Success" | "Error" | "Info" | "Primary" | "Warning" | null | undefined;
|
|
8398
8443
|
urlInput?: string | null | undefined;
|
|
8399
8444
|
url?: string | null | undefined;
|
|
8400
8445
|
urlPreview?: {
|
|
@@ -8694,7 +8739,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8694
8739
|
caption?: string | null | undefined;
|
|
8695
8740
|
headingType?: number | null | undefined;
|
|
8696
8741
|
codeLanguage?: "Markdown" | "Plain" | "Angular" | "Bash" | "C" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "ObjectiveC" | "PHP" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
8697
|
-
calloutType?: "
|
|
8742
|
+
calloutType?: "Success" | "Error" | "Info" | "Primary" | "Warning" | null | undefined;
|
|
8698
8743
|
urlInput?: string | null | undefined;
|
|
8699
8744
|
url?: string | null | undefined;
|
|
8700
8745
|
urlPreview?: {
|
|
@@ -8876,7 +8921,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8876
8921
|
caption?: string | null | undefined;
|
|
8877
8922
|
headingType?: number | null | undefined;
|
|
8878
8923
|
codeLanguage?: "Markdown" | "Plain" | "Angular" | "Bash" | "C" | "Cpp" | "Csharp" | "CSS" | "Dart" | "Handlebars" | "HTML" | "Java" | "Javascript" | "JSON" | "ReactJSX" | "ReactTSX" | "Kotlin" | "Lua" | "ObjectiveC" | "PHP" | "Python" | "Ruby" | "Rust" | "Sass" | "SCSS" | "Svetle" | "Swift" | "Twig" | "Typescript" | "Vue" | "XML" | "YAML" | null | undefined;
|
|
8879
|
-
calloutType?: "
|
|
8924
|
+
calloutType?: "Success" | "Error" | "Info" | "Primary" | "Warning" | null | undefined;
|
|
8880
8925
|
urlInput?: string | null | undefined;
|
|
8881
8926
|
url?: string | null | undefined;
|
|
8882
8927
|
urlPreview?: {
|
|
@@ -10982,6 +11027,20 @@ declare const DTODeleteDocumentationPageInputV2: z.ZodObject<{
|
|
|
10982
11027
|
}>;
|
|
10983
11028
|
type DTODeleteDocumentationPageInputV2 = z.infer<typeof DTODeleteDocumentationPageInputV2>;
|
|
10984
11029
|
|
|
11030
|
+
declare const DTOFigmaNodeOrigin: z.ZodObject<{
|
|
11031
|
+
sourceId: z.ZodString;
|
|
11032
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
11033
|
+
parentName: z.ZodOptional<z.ZodString>;
|
|
11034
|
+
}, "strip", z.ZodTypeAny, {
|
|
11035
|
+
sourceId: string;
|
|
11036
|
+
fileId?: string | undefined;
|
|
11037
|
+
parentName?: string | undefined;
|
|
11038
|
+
}, {
|
|
11039
|
+
sourceId: string;
|
|
11040
|
+
fileId?: string | undefined;
|
|
11041
|
+
parentName?: string | undefined;
|
|
11042
|
+
}>;
|
|
11043
|
+
type DTOFigmaNodeOrigin = z.infer<typeof DTOFigmaNodeOrigin>;
|
|
10985
11044
|
declare const DTOFigmaNodeData: z.ZodObject<{
|
|
10986
11045
|
figmaNodeId: z.ZodString;
|
|
10987
11046
|
isValid: z.ZodBoolean;
|
|
@@ -11024,16 +11083,6 @@ declare const DTOFigmaNode: z.ZodObject<{
|
|
|
11024
11083
|
}>;
|
|
11025
11084
|
createdAt: z.ZodDate;
|
|
11026
11085
|
updatedAt: z.ZodDate;
|
|
11027
|
-
origin: z.ZodObject<{
|
|
11028
|
-
sourceId: z.ZodString;
|
|
11029
|
-
fileId: z.ZodOptional<z.ZodString>;
|
|
11030
|
-
}, "strip", z.ZodTypeAny, {
|
|
11031
|
-
sourceId: string;
|
|
11032
|
-
fileId?: string | undefined;
|
|
11033
|
-
}, {
|
|
11034
|
-
sourceId: string;
|
|
11035
|
-
fileId?: string | undefined;
|
|
11036
|
-
}>;
|
|
11037
11086
|
data: z.ZodObject<{
|
|
11038
11087
|
figmaNodeId: z.ZodString;
|
|
11039
11088
|
isValid: z.ZodBoolean;
|
|
@@ -11059,6 +11108,19 @@ declare const DTOFigmaNode: z.ZodObject<{
|
|
|
11059
11108
|
assetWidth?: number | undefined;
|
|
11060
11109
|
assetHeight?: number | undefined;
|
|
11061
11110
|
}>;
|
|
11111
|
+
origin: z.ZodObject<{
|
|
11112
|
+
sourceId: z.ZodString;
|
|
11113
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
11114
|
+
parentName: z.ZodOptional<z.ZodString>;
|
|
11115
|
+
}, "strip", z.ZodTypeAny, {
|
|
11116
|
+
sourceId: string;
|
|
11117
|
+
fileId?: string | undefined;
|
|
11118
|
+
parentName?: string | undefined;
|
|
11119
|
+
}, {
|
|
11120
|
+
sourceId: string;
|
|
11121
|
+
fileId?: string | undefined;
|
|
11122
|
+
parentName?: string | undefined;
|
|
11123
|
+
}>;
|
|
11062
11124
|
}, "strip", z.ZodTypeAny, {
|
|
11063
11125
|
id: string;
|
|
11064
11126
|
designSystemVersionId: string;
|
|
@@ -11081,6 +11143,7 @@ declare const DTOFigmaNode: z.ZodObject<{
|
|
|
11081
11143
|
origin: {
|
|
11082
11144
|
sourceId: string;
|
|
11083
11145
|
fileId?: string | undefined;
|
|
11146
|
+
parentName?: string | undefined;
|
|
11084
11147
|
};
|
|
11085
11148
|
}, {
|
|
11086
11149
|
id: string;
|
|
@@ -11104,6 +11167,7 @@ declare const DTOFigmaNode: z.ZodObject<{
|
|
|
11104
11167
|
origin: {
|
|
11105
11168
|
sourceId: string;
|
|
11106
11169
|
fileId?: string | undefined;
|
|
11170
|
+
parentName?: string | undefined;
|
|
11107
11171
|
};
|
|
11108
11172
|
}>;
|
|
11109
11173
|
type DTOFigmaNode = z.infer<typeof DTOFigmaNode>;
|
|
@@ -11137,16 +11201,6 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
11137
11201
|
}>;
|
|
11138
11202
|
createdAt: z.ZodDate;
|
|
11139
11203
|
updatedAt: z.ZodDate;
|
|
11140
|
-
origin: z.ZodObject<{
|
|
11141
|
-
sourceId: z.ZodString;
|
|
11142
|
-
fileId: z.ZodOptional<z.ZodString>;
|
|
11143
|
-
}, "strip", z.ZodTypeAny, {
|
|
11144
|
-
sourceId: string;
|
|
11145
|
-
fileId?: string | undefined;
|
|
11146
|
-
}, {
|
|
11147
|
-
sourceId: string;
|
|
11148
|
-
fileId?: string | undefined;
|
|
11149
|
-
}>;
|
|
11150
11204
|
data: z.ZodObject<{
|
|
11151
11205
|
figmaNodeId: z.ZodString;
|
|
11152
11206
|
isValid: z.ZodBoolean;
|
|
@@ -11172,6 +11226,19 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
11172
11226
|
assetWidth?: number | undefined;
|
|
11173
11227
|
assetHeight?: number | undefined;
|
|
11174
11228
|
}>;
|
|
11229
|
+
origin: z.ZodObject<{
|
|
11230
|
+
sourceId: z.ZodString;
|
|
11231
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
11232
|
+
parentName: z.ZodOptional<z.ZodString>;
|
|
11233
|
+
}, "strip", z.ZodTypeAny, {
|
|
11234
|
+
sourceId: string;
|
|
11235
|
+
fileId?: string | undefined;
|
|
11236
|
+
parentName?: string | undefined;
|
|
11237
|
+
}, {
|
|
11238
|
+
sourceId: string;
|
|
11239
|
+
fileId?: string | undefined;
|
|
11240
|
+
parentName?: string | undefined;
|
|
11241
|
+
}>;
|
|
11175
11242
|
}, "strip", z.ZodTypeAny, {
|
|
11176
11243
|
id: string;
|
|
11177
11244
|
designSystemVersionId: string;
|
|
@@ -11194,6 +11261,7 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
11194
11261
|
origin: {
|
|
11195
11262
|
sourceId: string;
|
|
11196
11263
|
fileId?: string | undefined;
|
|
11264
|
+
parentName?: string | undefined;
|
|
11197
11265
|
};
|
|
11198
11266
|
}, {
|
|
11199
11267
|
id: string;
|
|
@@ -11217,6 +11285,7 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
11217
11285
|
origin: {
|
|
11218
11286
|
sourceId: string;
|
|
11219
11287
|
fileId?: string | undefined;
|
|
11288
|
+
parentName?: string | undefined;
|
|
11220
11289
|
};
|
|
11221
11290
|
}>, "many">;
|
|
11222
11291
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11243,6 +11312,7 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
11243
11312
|
origin: {
|
|
11244
11313
|
sourceId: string;
|
|
11245
11314
|
fileId?: string | undefined;
|
|
11315
|
+
parentName?: string | undefined;
|
|
11246
11316
|
};
|
|
11247
11317
|
}[];
|
|
11248
11318
|
}, {
|
|
@@ -11269,6 +11339,7 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
11269
11339
|
origin: {
|
|
11270
11340
|
sourceId: string;
|
|
11271
11341
|
fileId?: string | undefined;
|
|
11342
|
+
parentName?: string | undefined;
|
|
11272
11343
|
};
|
|
11273
11344
|
}[];
|
|
11274
11345
|
}>;
|
|
@@ -12465,16 +12536,6 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12465
12536
|
}>;
|
|
12466
12537
|
createdAt: z.ZodDate;
|
|
12467
12538
|
updatedAt: z.ZodDate;
|
|
12468
|
-
origin: z.ZodObject<{
|
|
12469
|
-
sourceId: z.ZodString;
|
|
12470
|
-
fileId: z.ZodOptional<z.ZodString>;
|
|
12471
|
-
}, "strip", z.ZodTypeAny, {
|
|
12472
|
-
sourceId: string;
|
|
12473
|
-
fileId?: string | undefined;
|
|
12474
|
-
}, {
|
|
12475
|
-
sourceId: string;
|
|
12476
|
-
fileId?: string | undefined;
|
|
12477
|
-
}>;
|
|
12478
12539
|
data: z.ZodObject<{
|
|
12479
12540
|
figmaNodeId: z.ZodString;
|
|
12480
12541
|
isValid: z.ZodBoolean;
|
|
@@ -12500,6 +12561,19 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12500
12561
|
assetWidth?: number | undefined;
|
|
12501
12562
|
assetHeight?: number | undefined;
|
|
12502
12563
|
}>;
|
|
12564
|
+
origin: z.ZodObject<{
|
|
12565
|
+
sourceId: z.ZodString;
|
|
12566
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
12567
|
+
parentName: z.ZodOptional<z.ZodString>;
|
|
12568
|
+
}, "strip", z.ZodTypeAny, {
|
|
12569
|
+
sourceId: string;
|
|
12570
|
+
fileId?: string | undefined;
|
|
12571
|
+
parentName?: string | undefined;
|
|
12572
|
+
}, {
|
|
12573
|
+
sourceId: string;
|
|
12574
|
+
fileId?: string | undefined;
|
|
12575
|
+
parentName?: string | undefined;
|
|
12576
|
+
}>;
|
|
12503
12577
|
}, "strip", z.ZodTypeAny, {
|
|
12504
12578
|
id: string;
|
|
12505
12579
|
designSystemVersionId: string;
|
|
@@ -12522,6 +12596,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12522
12596
|
origin: {
|
|
12523
12597
|
sourceId: string;
|
|
12524
12598
|
fileId?: string | undefined;
|
|
12599
|
+
parentName?: string | undefined;
|
|
12525
12600
|
};
|
|
12526
12601
|
}, {
|
|
12527
12602
|
id: string;
|
|
@@ -12545,6 +12620,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12545
12620
|
origin: {
|
|
12546
12621
|
sourceId: string;
|
|
12547
12622
|
fileId?: string | undefined;
|
|
12623
|
+
parentName?: string | undefined;
|
|
12548
12624
|
};
|
|
12549
12625
|
}>, "many">;
|
|
12550
12626
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12571,6 +12647,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12571
12647
|
origin: {
|
|
12572
12648
|
sourceId: string;
|
|
12573
12649
|
fileId?: string | undefined;
|
|
12650
|
+
parentName?: string | undefined;
|
|
12574
12651
|
};
|
|
12575
12652
|
}[];
|
|
12576
12653
|
}, {
|
|
@@ -12597,6 +12674,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12597
12674
|
origin: {
|
|
12598
12675
|
sourceId: string;
|
|
12599
12676
|
fileId?: string | undefined;
|
|
12677
|
+
parentName?: string | undefined;
|
|
12600
12678
|
};
|
|
12601
12679
|
}[];
|
|
12602
12680
|
}>, z.ZodObject<{
|
|
@@ -14750,16 +14828,6 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
14750
14828
|
}>;
|
|
14751
14829
|
createdAt: z.ZodDate;
|
|
14752
14830
|
updatedAt: z.ZodDate;
|
|
14753
|
-
origin: z.ZodObject<{
|
|
14754
|
-
sourceId: z.ZodString;
|
|
14755
|
-
fileId: z.ZodOptional<z.ZodString>;
|
|
14756
|
-
}, "strip", z.ZodTypeAny, {
|
|
14757
|
-
sourceId: string;
|
|
14758
|
-
fileId?: string | undefined;
|
|
14759
|
-
}, {
|
|
14760
|
-
sourceId: string;
|
|
14761
|
-
fileId?: string | undefined;
|
|
14762
|
-
}>;
|
|
14763
14831
|
data: z.ZodObject<{
|
|
14764
14832
|
figmaNodeId: z.ZodString;
|
|
14765
14833
|
isValid: z.ZodBoolean;
|
|
@@ -14785,6 +14853,19 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
14785
14853
|
assetWidth?: number | undefined;
|
|
14786
14854
|
assetHeight?: number | undefined;
|
|
14787
14855
|
}>;
|
|
14856
|
+
origin: z.ZodObject<{
|
|
14857
|
+
sourceId: z.ZodString;
|
|
14858
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
14859
|
+
parentName: z.ZodOptional<z.ZodString>;
|
|
14860
|
+
}, "strip", z.ZodTypeAny, {
|
|
14861
|
+
sourceId: string;
|
|
14862
|
+
fileId?: string | undefined;
|
|
14863
|
+
parentName?: string | undefined;
|
|
14864
|
+
}, {
|
|
14865
|
+
sourceId: string;
|
|
14866
|
+
fileId?: string | undefined;
|
|
14867
|
+
parentName?: string | undefined;
|
|
14868
|
+
}>;
|
|
14788
14869
|
}, "strip", z.ZodTypeAny, {
|
|
14789
14870
|
id: string;
|
|
14790
14871
|
designSystemVersionId: string;
|
|
@@ -14807,6 +14888,7 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
14807
14888
|
origin: {
|
|
14808
14889
|
sourceId: string;
|
|
14809
14890
|
fileId?: string | undefined;
|
|
14891
|
+
parentName?: string | undefined;
|
|
14810
14892
|
};
|
|
14811
14893
|
}, {
|
|
14812
14894
|
id: string;
|
|
@@ -14830,6 +14912,7 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
14830
14912
|
origin: {
|
|
14831
14913
|
sourceId: string;
|
|
14832
14914
|
fileId?: string | undefined;
|
|
14915
|
+
parentName?: string | undefined;
|
|
14833
14916
|
};
|
|
14834
14917
|
}>, "many">>;
|
|
14835
14918
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14855,6 +14938,7 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
14855
14938
|
origin: {
|
|
14856
14939
|
sourceId: string;
|
|
14857
14940
|
fileId?: string | undefined;
|
|
14941
|
+
parentName?: string | undefined;
|
|
14858
14942
|
};
|
|
14859
14943
|
}[] | undefined;
|
|
14860
14944
|
}, {
|
|
@@ -14880,6 +14964,7 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
14880
14964
|
origin: {
|
|
14881
14965
|
sourceId: string;
|
|
14882
14966
|
fileId?: string | undefined;
|
|
14967
|
+
parentName?: string | undefined;
|
|
14883
14968
|
};
|
|
14884
14969
|
}[] | undefined;
|
|
14885
14970
|
}>;
|
|
@@ -23424,4 +23509,4 @@ declare const BlockDefinitionUtils: {
|
|
|
23424
23509
|
};
|
|
23425
23510
|
};
|
|
23426
23511
|
|
|
23427
|
-
export { BlockDefinitionUtils, BlockParsingUtils, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionsListResponse, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupStructureV1, DTODocumentationGroupStructureV2, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageStructureV2, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExporterProperty, DTOExporterPropertyListResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOIntegration, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationElementsToHierarchyDto, documentationHierarchyToYjs, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, documentationPagesToStructureDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, elementGroupsToDocumentationGroupStructureDTOV2, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYXmlFragment, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateSemver, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
23512
|
+
export { BlockDefinitionUtils, BlockParsingUtils, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionsListResponse, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupStructureV1, DTODocumentationGroupStructureV2, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageStructureV2, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExporterProperty, DTOExporterPropertyListResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOIntegration, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationElementsToHierarchyDto, documentationHierarchyToYjs, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, documentationPagesToStructureDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, elementGroupsToDocumentationGroupStructureDTOV2, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYXmlFragment, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateSemver, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|