@supernova-studio/client 0.46.0 → 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 +134 -45
- package/dist/index.d.ts +134 -45
- package/dist/index.js +37 -19
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +35 -17
- 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/src/yjs/design-system-content/index.ts +1 -0
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?: {
|
|
@@ -8278,6 +8323,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8278
8323
|
} | null | undefined;
|
|
8279
8324
|
} | null | undefined;
|
|
8280
8325
|
documentationItemId?: string | null | undefined;
|
|
8326
|
+
pageHeadingId?: string | null | undefined;
|
|
8281
8327
|
url?: string | null | undefined;
|
|
8282
8328
|
openInNewTab?: boolean | null | undefined;
|
|
8283
8329
|
urlPreview?: {
|
|
@@ -8393,7 +8439,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8393
8439
|
caption?: string | null | undefined;
|
|
8394
8440
|
headingType?: number | null | undefined;
|
|
8395
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;
|
|
8396
|
-
calloutType?: "
|
|
8442
|
+
calloutType?: "Success" | "Error" | "Info" | "Primary" | "Warning" | null | undefined;
|
|
8397
8443
|
urlInput?: string | null | undefined;
|
|
8398
8444
|
url?: string | null | undefined;
|
|
8399
8445
|
urlPreview?: {
|
|
@@ -8459,6 +8505,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8459
8505
|
} | null | undefined;
|
|
8460
8506
|
} | null | undefined;
|
|
8461
8507
|
documentationItemId?: string | null | undefined;
|
|
8508
|
+
pageHeadingId?: string | null | undefined;
|
|
8462
8509
|
url?: string | null | undefined;
|
|
8463
8510
|
openInNewTab?: boolean | null | undefined;
|
|
8464
8511
|
urlPreview?: {
|
|
@@ -8692,7 +8739,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8692
8739
|
caption?: string | null | undefined;
|
|
8693
8740
|
headingType?: number | null | undefined;
|
|
8694
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;
|
|
8695
|
-
calloutType?: "
|
|
8742
|
+
calloutType?: "Success" | "Error" | "Info" | "Primary" | "Warning" | null | undefined;
|
|
8696
8743
|
urlInput?: string | null | undefined;
|
|
8697
8744
|
url?: string | null | undefined;
|
|
8698
8745
|
urlPreview?: {
|
|
@@ -8758,6 +8805,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8758
8805
|
} | null | undefined;
|
|
8759
8806
|
} | null | undefined;
|
|
8760
8807
|
documentationItemId?: string | null | undefined;
|
|
8808
|
+
pageHeadingId?: string | null | undefined;
|
|
8761
8809
|
url?: string | null | undefined;
|
|
8762
8810
|
openInNewTab?: boolean | null | undefined;
|
|
8763
8811
|
urlPreview?: {
|
|
@@ -8873,7 +8921,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8873
8921
|
caption?: string | null | undefined;
|
|
8874
8922
|
headingType?: number | null | undefined;
|
|
8875
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;
|
|
8876
|
-
calloutType?: "
|
|
8924
|
+
calloutType?: "Success" | "Error" | "Info" | "Primary" | "Warning" | null | undefined;
|
|
8877
8925
|
urlInput?: string | null | undefined;
|
|
8878
8926
|
url?: string | null | undefined;
|
|
8879
8927
|
urlPreview?: {
|
|
@@ -8939,6 +8987,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
8939
8987
|
} | null | undefined;
|
|
8940
8988
|
} | null | undefined;
|
|
8941
8989
|
documentationItemId?: string | null | undefined;
|
|
8990
|
+
pageHeadingId?: string | null | undefined;
|
|
8942
8991
|
url?: string | null | undefined;
|
|
8943
8992
|
openInNewTab?: boolean | null | undefined;
|
|
8944
8993
|
urlPreview?: {
|
|
@@ -10978,6 +11027,20 @@ declare const DTODeleteDocumentationPageInputV2: z.ZodObject<{
|
|
|
10978
11027
|
}>;
|
|
10979
11028
|
type DTODeleteDocumentationPageInputV2 = z.infer<typeof DTODeleteDocumentationPageInputV2>;
|
|
10980
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>;
|
|
10981
11044
|
declare const DTOFigmaNodeData: z.ZodObject<{
|
|
10982
11045
|
figmaNodeId: z.ZodString;
|
|
10983
11046
|
isValid: z.ZodBoolean;
|
|
@@ -11020,16 +11083,6 @@ declare const DTOFigmaNode: z.ZodObject<{
|
|
|
11020
11083
|
}>;
|
|
11021
11084
|
createdAt: z.ZodDate;
|
|
11022
11085
|
updatedAt: z.ZodDate;
|
|
11023
|
-
origin: z.ZodObject<{
|
|
11024
|
-
sourceId: z.ZodString;
|
|
11025
|
-
fileId: z.ZodOptional<z.ZodString>;
|
|
11026
|
-
}, "strip", z.ZodTypeAny, {
|
|
11027
|
-
sourceId: string;
|
|
11028
|
-
fileId?: string | undefined;
|
|
11029
|
-
}, {
|
|
11030
|
-
sourceId: string;
|
|
11031
|
-
fileId?: string | undefined;
|
|
11032
|
-
}>;
|
|
11033
11086
|
data: z.ZodObject<{
|
|
11034
11087
|
figmaNodeId: z.ZodString;
|
|
11035
11088
|
isValid: z.ZodBoolean;
|
|
@@ -11055,6 +11108,19 @@ declare const DTOFigmaNode: z.ZodObject<{
|
|
|
11055
11108
|
assetWidth?: number | undefined;
|
|
11056
11109
|
assetHeight?: number | undefined;
|
|
11057
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
|
+
}>;
|
|
11058
11124
|
}, "strip", z.ZodTypeAny, {
|
|
11059
11125
|
id: string;
|
|
11060
11126
|
designSystemVersionId: string;
|
|
@@ -11077,6 +11143,7 @@ declare const DTOFigmaNode: z.ZodObject<{
|
|
|
11077
11143
|
origin: {
|
|
11078
11144
|
sourceId: string;
|
|
11079
11145
|
fileId?: string | undefined;
|
|
11146
|
+
parentName?: string | undefined;
|
|
11080
11147
|
};
|
|
11081
11148
|
}, {
|
|
11082
11149
|
id: string;
|
|
@@ -11100,6 +11167,7 @@ declare const DTOFigmaNode: z.ZodObject<{
|
|
|
11100
11167
|
origin: {
|
|
11101
11168
|
sourceId: string;
|
|
11102
11169
|
fileId?: string | undefined;
|
|
11170
|
+
parentName?: string | undefined;
|
|
11103
11171
|
};
|
|
11104
11172
|
}>;
|
|
11105
11173
|
type DTOFigmaNode = z.infer<typeof DTOFigmaNode>;
|
|
@@ -11133,16 +11201,6 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
11133
11201
|
}>;
|
|
11134
11202
|
createdAt: z.ZodDate;
|
|
11135
11203
|
updatedAt: z.ZodDate;
|
|
11136
|
-
origin: z.ZodObject<{
|
|
11137
|
-
sourceId: z.ZodString;
|
|
11138
|
-
fileId: z.ZodOptional<z.ZodString>;
|
|
11139
|
-
}, "strip", z.ZodTypeAny, {
|
|
11140
|
-
sourceId: string;
|
|
11141
|
-
fileId?: string | undefined;
|
|
11142
|
-
}, {
|
|
11143
|
-
sourceId: string;
|
|
11144
|
-
fileId?: string | undefined;
|
|
11145
|
-
}>;
|
|
11146
11204
|
data: z.ZodObject<{
|
|
11147
11205
|
figmaNodeId: z.ZodString;
|
|
11148
11206
|
isValid: z.ZodBoolean;
|
|
@@ -11168,6 +11226,19 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
11168
11226
|
assetWidth?: number | undefined;
|
|
11169
11227
|
assetHeight?: number | undefined;
|
|
11170
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
|
+
}>;
|
|
11171
11242
|
}, "strip", z.ZodTypeAny, {
|
|
11172
11243
|
id: string;
|
|
11173
11244
|
designSystemVersionId: string;
|
|
@@ -11190,6 +11261,7 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
11190
11261
|
origin: {
|
|
11191
11262
|
sourceId: string;
|
|
11192
11263
|
fileId?: string | undefined;
|
|
11264
|
+
parentName?: string | undefined;
|
|
11193
11265
|
};
|
|
11194
11266
|
}, {
|
|
11195
11267
|
id: string;
|
|
@@ -11213,6 +11285,7 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
11213
11285
|
origin: {
|
|
11214
11286
|
sourceId: string;
|
|
11215
11287
|
fileId?: string | undefined;
|
|
11288
|
+
parentName?: string | undefined;
|
|
11216
11289
|
};
|
|
11217
11290
|
}>, "many">;
|
|
11218
11291
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11239,6 +11312,7 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
11239
11312
|
origin: {
|
|
11240
11313
|
sourceId: string;
|
|
11241
11314
|
fileId?: string | undefined;
|
|
11315
|
+
parentName?: string | undefined;
|
|
11242
11316
|
};
|
|
11243
11317
|
}[];
|
|
11244
11318
|
}, {
|
|
@@ -11265,6 +11339,7 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
11265
11339
|
origin: {
|
|
11266
11340
|
sourceId: string;
|
|
11267
11341
|
fileId?: string | undefined;
|
|
11342
|
+
parentName?: string | undefined;
|
|
11268
11343
|
};
|
|
11269
11344
|
}[];
|
|
11270
11345
|
}>;
|
|
@@ -12461,16 +12536,6 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12461
12536
|
}>;
|
|
12462
12537
|
createdAt: z.ZodDate;
|
|
12463
12538
|
updatedAt: z.ZodDate;
|
|
12464
|
-
origin: z.ZodObject<{
|
|
12465
|
-
sourceId: z.ZodString;
|
|
12466
|
-
fileId: z.ZodOptional<z.ZodString>;
|
|
12467
|
-
}, "strip", z.ZodTypeAny, {
|
|
12468
|
-
sourceId: string;
|
|
12469
|
-
fileId?: string | undefined;
|
|
12470
|
-
}, {
|
|
12471
|
-
sourceId: string;
|
|
12472
|
-
fileId?: string | undefined;
|
|
12473
|
-
}>;
|
|
12474
12539
|
data: z.ZodObject<{
|
|
12475
12540
|
figmaNodeId: z.ZodString;
|
|
12476
12541
|
isValid: z.ZodBoolean;
|
|
@@ -12496,6 +12561,19 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12496
12561
|
assetWidth?: number | undefined;
|
|
12497
12562
|
assetHeight?: number | undefined;
|
|
12498
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
|
+
}>;
|
|
12499
12577
|
}, "strip", z.ZodTypeAny, {
|
|
12500
12578
|
id: string;
|
|
12501
12579
|
designSystemVersionId: string;
|
|
@@ -12518,6 +12596,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12518
12596
|
origin: {
|
|
12519
12597
|
sourceId: string;
|
|
12520
12598
|
fileId?: string | undefined;
|
|
12599
|
+
parentName?: string | undefined;
|
|
12521
12600
|
};
|
|
12522
12601
|
}, {
|
|
12523
12602
|
id: string;
|
|
@@ -12541,6 +12620,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12541
12620
|
origin: {
|
|
12542
12621
|
sourceId: string;
|
|
12543
12622
|
fileId?: string | undefined;
|
|
12623
|
+
parentName?: string | undefined;
|
|
12544
12624
|
};
|
|
12545
12625
|
}>, "many">;
|
|
12546
12626
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12567,6 +12647,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12567
12647
|
origin: {
|
|
12568
12648
|
sourceId: string;
|
|
12569
12649
|
fileId?: string | undefined;
|
|
12650
|
+
parentName?: string | undefined;
|
|
12570
12651
|
};
|
|
12571
12652
|
}[];
|
|
12572
12653
|
}, {
|
|
@@ -12593,6 +12674,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
12593
12674
|
origin: {
|
|
12594
12675
|
sourceId: string;
|
|
12595
12676
|
fileId?: string | undefined;
|
|
12677
|
+
parentName?: string | undefined;
|
|
12596
12678
|
};
|
|
12597
12679
|
}[];
|
|
12598
12680
|
}>, z.ZodObject<{
|
|
@@ -14746,16 +14828,6 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
14746
14828
|
}>;
|
|
14747
14829
|
createdAt: z.ZodDate;
|
|
14748
14830
|
updatedAt: z.ZodDate;
|
|
14749
|
-
origin: z.ZodObject<{
|
|
14750
|
-
sourceId: z.ZodString;
|
|
14751
|
-
fileId: z.ZodOptional<z.ZodString>;
|
|
14752
|
-
}, "strip", z.ZodTypeAny, {
|
|
14753
|
-
sourceId: string;
|
|
14754
|
-
fileId?: string | undefined;
|
|
14755
|
-
}, {
|
|
14756
|
-
sourceId: string;
|
|
14757
|
-
fileId?: string | undefined;
|
|
14758
|
-
}>;
|
|
14759
14831
|
data: z.ZodObject<{
|
|
14760
14832
|
figmaNodeId: z.ZodString;
|
|
14761
14833
|
isValid: z.ZodBoolean;
|
|
@@ -14781,6 +14853,19 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
14781
14853
|
assetWidth?: number | undefined;
|
|
14782
14854
|
assetHeight?: number | undefined;
|
|
14783
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
|
+
}>;
|
|
14784
14869
|
}, "strip", z.ZodTypeAny, {
|
|
14785
14870
|
id: string;
|
|
14786
14871
|
designSystemVersionId: string;
|
|
@@ -14803,6 +14888,7 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
14803
14888
|
origin: {
|
|
14804
14889
|
sourceId: string;
|
|
14805
14890
|
fileId?: string | undefined;
|
|
14891
|
+
parentName?: string | undefined;
|
|
14806
14892
|
};
|
|
14807
14893
|
}, {
|
|
14808
14894
|
id: string;
|
|
@@ -14826,6 +14912,7 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
14826
14912
|
origin: {
|
|
14827
14913
|
sourceId: string;
|
|
14828
14914
|
fileId?: string | undefined;
|
|
14915
|
+
parentName?: string | undefined;
|
|
14829
14916
|
};
|
|
14830
14917
|
}>, "many">>;
|
|
14831
14918
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14851,6 +14938,7 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
14851
14938
|
origin: {
|
|
14852
14939
|
sourceId: string;
|
|
14853
14940
|
fileId?: string | undefined;
|
|
14941
|
+
parentName?: string | undefined;
|
|
14854
14942
|
};
|
|
14855
14943
|
}[] | undefined;
|
|
14856
14944
|
}, {
|
|
@@ -14876,6 +14964,7 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
14876
14964
|
origin: {
|
|
14877
14965
|
sourceId: string;
|
|
14878
14966
|
fileId?: string | undefined;
|
|
14967
|
+
parentName?: string | undefined;
|
|
14879
14968
|
};
|
|
14880
14969
|
}[] | undefined;
|
|
14881
14970
|
}>;
|
|
@@ -23420,4 +23509,4 @@ declare const BlockDefinitionUtils: {
|
|
|
23420
23509
|
};
|
|
23421
23510
|
};
|
|
23422
23511
|
|
|
23423
|
-
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 };
|