@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.ts
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 };
|
package/dist/index.js
CHANGED
|
@@ -1,11 +1,4 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3
|
-
var __publicField = (obj, key, value) => {
|
|
4
|
-
__defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
5
|
-
return value;
|
|
6
|
-
};
|
|
7
|
-
|
|
8
|
-
// ../model/dist/index.mjs
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }// ../model/dist/index.mjs
|
|
9
2
|
var _zod = require('zod');
|
|
10
3
|
|
|
11
4
|
|
|
@@ -811,6 +804,7 @@ var PageBlockShortcut = _zod.z.object({
|
|
|
811
804
|
description: nullishToOptional(_zod.z.string()),
|
|
812
805
|
asset: nullishToOptional(PageBlockAsset),
|
|
813
806
|
documentationItemId: nullishToOptional(_zod.z.string()),
|
|
807
|
+
pageHeadingId: nullishToOptional(_zod.z.string()),
|
|
814
808
|
url: nullishToOptional(_zod.z.string()),
|
|
815
809
|
openInNewTab: nullishToOptional(_zod.z.boolean()),
|
|
816
810
|
urlPreview: nullishToOptional(PageBlockUrlPreview),
|
|
@@ -1499,7 +1493,8 @@ var FigmaFileStructure = DesignElementBase.extend({
|
|
|
1499
1493
|
data: FigmaFileStructureData
|
|
1500
1494
|
});
|
|
1501
1495
|
var FigmaNodeReferenceOrigin = _zod.z.object({
|
|
1502
|
-
sourceId: _zod.z.string()
|
|
1496
|
+
sourceId: _zod.z.string(),
|
|
1497
|
+
parentName: _zod.z.string().optional()
|
|
1503
1498
|
});
|
|
1504
1499
|
var FigmaNodeReference = DesignElementBase.extend({
|
|
1505
1500
|
data: FigmaNodeReferenceData,
|
|
@@ -2531,7 +2526,6 @@ var PublishedDocPage = _zod.z.object({
|
|
|
2531
2526
|
pathV1: _zod.z.string(),
|
|
2532
2527
|
pathV2: _zod.z.string(),
|
|
2533
2528
|
storagePath: _zod.z.string(),
|
|
2534
|
-
fallbackPublicPath: _zod.z.string().optional(),
|
|
2535
2529
|
locale: _zod.z.string().optional(),
|
|
2536
2530
|
isPrivate: _zod.z.boolean(),
|
|
2537
2531
|
isHidden: _zod.z.boolean(),
|
|
@@ -2569,6 +2563,15 @@ var DesignSystemVersion = _zod.z.object({
|
|
|
2569
2563
|
changeLog: _zod.z.string(),
|
|
2570
2564
|
parentId: _zod.z.string().optional()
|
|
2571
2565
|
});
|
|
2566
|
+
var VersionCreationJobStatus = _zod.z.enum(["Success", "InProgress", "Error"]);
|
|
2567
|
+
var VersionCreationJob = _zod.z.object({
|
|
2568
|
+
_id: _zod.z.string().optional(),
|
|
2569
|
+
version: _zod.z.string(),
|
|
2570
|
+
designSystemId: _zod.z.string(),
|
|
2571
|
+
designSystemVersionId: nullishToOptional(_zod.z.string()),
|
|
2572
|
+
status: VersionCreationJobStatus,
|
|
2573
|
+
errorMessage: nullishToOptional(_zod.z.string())
|
|
2574
|
+
});
|
|
2572
2575
|
var ExporterJobDestination = _zod.z.enum(["s3", "webhookUrl", "github", "documentation", "azure", "gitlab"]);
|
|
2573
2576
|
var ExporterJobStatus = _zod.z.enum(["InProgress", "Success", "Failed", "Timeout"]);
|
|
2574
2577
|
var ExporterJobLogEntryType = _zod.z.enum(["success", "info", "warning", "error", "user"]);
|
|
@@ -4123,8 +4126,10 @@ var ObjectMeta2 = _zod.z.object({
|
|
|
4123
4126
|
description: _zod.z.string().max(2e3).optional()
|
|
4124
4127
|
});
|
|
4125
4128
|
function validateSemver(version) {
|
|
4126
|
-
const semverRegex = /^(\d+)(
|
|
4127
|
-
|
|
4129
|
+
const semverRegex = /^(\d+)\.(\d+)(?:\.(\d+))?(?:-([\da-z-]+(?:\.[\da-z-]+)*))?(?:\+([\da-z-]+(?:\.[\da-z-]+)*))?$/i;
|
|
4130
|
+
const semverRegexWithSingleDigit = /^(\d+)(?:\.(\d+))?(?:\.(\d+))?(?:-([\da-z-]+(?:\.[\da-z-]+)*))?(?:\+([\da-z-]+(?:\.[\da-z-]+)*))?$/i;
|
|
4131
|
+
const isValidSemver = semverRegex.test(version) || semverRegexWithSingleDigit.test(version);
|
|
4132
|
+
return isValidSemver;
|
|
4128
4133
|
}
|
|
4129
4134
|
var DTOCreateVersionInput = _zod.z.object({
|
|
4130
4135
|
meta: ObjectMeta2,
|
|
@@ -4223,12 +4228,19 @@ var DTODesignSystemVersionCreationResponse = _zod.z.object({
|
|
|
4223
4228
|
version: _zod.z.string(),
|
|
4224
4229
|
changeLog: _zod.z.string(),
|
|
4225
4230
|
isReadOnly: _zod.z.boolean(),
|
|
4226
|
-
designSystemId: _zod.z.string()
|
|
4231
|
+
designSystemId: _zod.z.string(),
|
|
4232
|
+
jobId: _zod.z.string()
|
|
4227
4233
|
});
|
|
4228
4234
|
var VersionSQSPayload = _zod.z.object({
|
|
4235
|
+
jobId: _zod.z.string(),
|
|
4229
4236
|
designSystemId: _zod.z.string(),
|
|
4230
4237
|
input: DTOCreateVersionInput
|
|
4231
4238
|
});
|
|
4239
|
+
var DTODesignSystemVersionJobStatusResponse = _zod.z.object({
|
|
4240
|
+
job: VersionCreationJob.omit({
|
|
4241
|
+
_id: true
|
|
4242
|
+
})
|
|
4243
|
+
});
|
|
4232
4244
|
|
|
4233
4245
|
// src/api/dto/design-systems/view.ts
|
|
4234
4246
|
|
|
@@ -4602,6 +4614,11 @@ var DocumentationPageV1DTO = DocumentationPageV1.omit({
|
|
|
4602
4614
|
|
|
4603
4615
|
// src/api/dto/elements/figma-nodes/figma-node.ts
|
|
4604
4616
|
|
|
4617
|
+
var DTOFigmaNodeOrigin = _zod.z.object({
|
|
4618
|
+
sourceId: _zod.z.string(),
|
|
4619
|
+
fileId: _zod.z.string().optional(),
|
|
4620
|
+
parentName: _zod.z.string().optional()
|
|
4621
|
+
});
|
|
4605
4622
|
var DTOFigmaNodeData = _zod.z.object({
|
|
4606
4623
|
// Id of the node in the Figma file
|
|
4607
4624
|
figmaNodeId: _zod.z.string(),
|
|
@@ -4616,9 +4633,11 @@ var DTOFigmaNodeData = _zod.z.object({
|
|
|
4616
4633
|
assetHeight: _zod.z.number().optional()
|
|
4617
4634
|
});
|
|
4618
4635
|
var DTOFigmaNode = FigmaFileStructure.omit({
|
|
4619
|
-
data: true
|
|
4636
|
+
data: true,
|
|
4637
|
+
origin: true
|
|
4620
4638
|
}).extend({
|
|
4621
|
-
data: DTOFigmaNodeData
|
|
4639
|
+
data: DTOFigmaNodeData,
|
|
4640
|
+
origin: DTOFigmaNodeOrigin
|
|
4622
4641
|
});
|
|
4623
4642
|
var DTOFigmaNodeRenderInput = _zod.z.object({
|
|
4624
4643
|
// Id of a design system's data source representing a linked Figma file
|
|
@@ -5736,9 +5755,6 @@ var BlockDefinitionUtils = {
|
|
|
5736
5755
|
|
|
5737
5756
|
// src/yjs/docs-editor/list-tree-builder.ts
|
|
5738
5757
|
var ListTreeBuilder = class {
|
|
5739
|
-
constructor() {
|
|
5740
|
-
__publicField(this, "rootNode");
|
|
5741
|
-
}
|
|
5742
5758
|
addWithProperty(block, multiRichTextProperty) {
|
|
5743
5759
|
const parsedOptions = PageBlockDefinitionMutiRichTextOptions.optional().parse(multiRichTextProperty.options);
|
|
5744
5760
|
return this.add(block, multiRichTextProperty.id, _optionalChain([parsedOptions, 'optionalAccess', _34 => _34.multiRichTextStyle]) || "OL");
|
|
@@ -8726,5 +8742,7 @@ function mapByUnique2(items, keyFn) {
|
|
|
8726
8742
|
|
|
8727
8743
|
|
|
8728
8744
|
|
|
8729
|
-
exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.DTOBrand = DTOBrand; exports.DTOBrandCreateResponse = DTOBrandCreateResponse; exports.DTOBrandGetResponse = DTOBrandGetResponse; exports.DTOBrandsListResponse = DTOBrandsListResponse; exports.DTOCreateBrandInput = DTOCreateBrandInput; exports.DTOCreateDocumentationGroupInput = DTOCreateDocumentationGroupInput; exports.DTOCreateDocumentationPageInputV2 = DTOCreateDocumentationPageInputV2; exports.DTOCreateDocumentationTabInput = DTOCreateDocumentationTabInput; exports.DTOCreateElementPropertyDefinitionInputV2 = DTOCreateElementPropertyDefinitionInputV2; exports.DTOCreateVersionInput = DTOCreateVersionInput; exports.DTODeleteDocumentationGroupInput = DTODeleteDocumentationGroupInput; exports.DTODeleteDocumentationPageInputV2 = DTODeleteDocumentationPageInputV2; exports.DTODeleteDocumentationTabGroupInput = DTODeleteDocumentationTabGroupInput; exports.DTODeleteElementPropertyDefinitionInputV2 = DTODeleteElementPropertyDefinitionInputV2; exports.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; exports.DTODocumentationGroupCreateActionInputV2 = DTODocumentationGroupCreateActionInputV2; exports.DTODocumentationGroupCreateActionOutputV2 = DTODocumentationGroupCreateActionOutputV2; exports.DTODocumentationGroupDeleteActionInputV2 = DTODocumentationGroupDeleteActionInputV2; exports.DTODocumentationGroupDeleteActionOutputV2 = DTODocumentationGroupDeleteActionOutputV2; exports.DTODocumentationGroupDuplicateActionInputV2 = DTODocumentationGroupDuplicateActionInputV2; exports.DTODocumentationGroupDuplicateActionOutputV2 = DTODocumentationGroupDuplicateActionOutputV2; exports.DTODocumentationGroupMoveActionInputV2 = DTODocumentationGroupMoveActionInputV2; exports.DTODocumentationGroupMoveActionOutputV2 = DTODocumentationGroupMoveActionOutputV2; exports.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; exports.DTODocumentationGroupStructureV2 = DTODocumentationGroupStructureV2; exports.DTODocumentationGroupUpdateActionInputV2 = DTODocumentationGroupUpdateActionInputV2; exports.DTODocumentationGroupUpdateActionOutputV2 = DTODocumentationGroupUpdateActionOutputV2; exports.DTODocumentationGroupV1 = DTODocumentationGroupV1; exports.DTODocumentationGroupV2 = DTODocumentationGroupV2; exports.DTODocumentationHierarchyV2 = DTODocumentationHierarchyV2; exports.DTODocumentationItemConfigurationV1 = DTODocumentationItemConfigurationV1; exports.DTODocumentationItemConfigurationV2 = DTODocumentationItemConfigurationV2; exports.DTODocumentationItemHeaderV2 = DTODocumentationItemHeaderV2; exports.DTODocumentationLinkPreviewRequest = DTODocumentationLinkPreviewRequest; exports.DTODocumentationLinkPreviewResponse = DTODocumentationLinkPreviewResponse; exports.DTODocumentationPageAnchor = DTODocumentationPageAnchor; exports.DTODocumentationPageContent = DTODocumentationPageContent; exports.DTODocumentationPageContentGetResponse = DTODocumentationPageContentGetResponse; exports.DTODocumentationPageCreateActionInputV2 = DTODocumentationPageCreateActionInputV2; exports.DTODocumentationPageCreateActionOutputV2 = DTODocumentationPageCreateActionOutputV2; exports.DTODocumentationPageDeleteActionInputV2 = DTODocumentationPageDeleteActionInputV2; exports.DTODocumentationPageDeleteActionOutputV2 = DTODocumentationPageDeleteActionOutputV2; exports.DTODocumentationPageDuplicateActionInputV2 = DTODocumentationPageDuplicateActionInputV2; exports.DTODocumentationPageDuplicateActionOutputV2 = DTODocumentationPageDuplicateActionOutputV2; exports.DTODocumentationPageMoveActionInputV2 = DTODocumentationPageMoveActionInputV2; exports.DTODocumentationPageMoveActionOutputV2 = DTODocumentationPageMoveActionOutputV2; exports.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageStructureV2 = DTODocumentationPageStructureV2; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; exports.DTODuplicateDocumentationGroupInput = DTODuplicateDocumentationGroupInput; exports.DTODuplicateDocumentationPageInputV2 = DTODuplicateDocumentationPageInputV2; exports.DTOElementActionInput = DTOElementActionInput; exports.DTOElementActionOutput = DTOElementActionOutput; exports.DTOElementPropertyDefinition = DTOElementPropertyDefinition; exports.DTOElementPropertyDefinitionsGetResponse = DTOElementPropertyDefinitionsGetResponse; exports.DTOElementPropertyValue = DTOElementPropertyValue; exports.DTOElementPropertyValuesGetResponse = DTOElementPropertyValuesGetResponse; exports.DTOElementView = DTOElementView; exports.DTOElementViewBasePropertyColumn = DTOElementViewBasePropertyColumn; exports.DTOElementViewColumn = DTOElementViewColumn; exports.DTOElementViewColumnSharedAttributes = DTOElementViewColumnSharedAttributes; exports.DTOElementViewPropertyDefinitionColumn = DTOElementViewPropertyDefinitionColumn; exports.DTOElementViewThemeColumn = DTOElementViewThemeColumn; exports.DTOElementViewsListResponse = DTOElementViewsListResponse; exports.DTOElementsGetOutput = DTOElementsGetOutput; exports.DTOElementsGetQuerySchema = DTOElementsGetQuerySchema; exports.DTOElementsGetTypeFilter = DTOElementsGetTypeFilter; exports.DTOExporterProperty = DTOExporterProperty; exports.DTOExporterPropertyListResponse = DTOExporterPropertyListResponse; exports.DTOFigmaNode = DTOFigmaNode; exports.DTOFigmaNodeData = DTOFigmaNodeData; exports.DTOFigmaNodeRenderActionInput = DTOFigmaNodeRenderActionInput; exports.DTOFigmaNodeRenderActionOutput = DTOFigmaNodeRenderActionOutput; exports.DTOFigmaNodeRenderInput = DTOFigmaNodeRenderInput; exports.DTOGetBlockDefinitionsOutput = DTOGetBlockDefinitionsOutput; exports.DTOGetDocumentationPageAnchorsResponse = DTOGetDocumentationPageAnchorsResponse; exports.DTOIntegration = DTOIntegration; exports.DTOIntegrationOAuthGetResponse = DTOIntegrationOAuthGetResponse; exports.DTOIntegrationPostResponse = DTOIntegrationPostResponse; exports.DTOIntegrationsGetListResponse = DTOIntegrationsGetListResponse; exports.DTOLiveblocksAuthRequest = DTOLiveblocksAuthRequest; exports.DTOMoveDocumentationGroupInput = DTOMoveDocumentationGroupInput; exports.DTOMoveDocumentationPageInputV2 = DTOMoveDocumentationPageInputV2; exports.DTONpmRegistryConfig = DTONpmRegistryConfig; exports.DTOPropertyDefinitionCreateActionInputV2 = DTOPropertyDefinitionCreateActionInputV2; exports.DTOPropertyDefinitionCreateActionOutputV2 = DTOPropertyDefinitionCreateActionOutputV2; exports.DTOPropertyDefinitionDeleteActionInputV2 = DTOPropertyDefinitionDeleteActionInputV2; exports.DTOPropertyDefinitionDeleteActionOutputV2 = DTOPropertyDefinitionDeleteActionOutputV2; exports.DTOPropertyDefinitionUpdateActionInputV2 = DTOPropertyDefinitionUpdateActionInputV2; exports.DTOPropertyDefinitionUpdateActionOutputV2 = DTOPropertyDefinitionUpdateActionOutputV2; exports.DTOUpdateDocumentationGroupInput = DTOUpdateDocumentationGroupInput; exports.DTOUpdateDocumentationPageInputV2 = DTOUpdateDocumentationPageInputV2; exports.DTOUpdateElementPropertyDefinitionInputV2 = DTOUpdateElementPropertyDefinitionInputV2; exports.DTOUserWorkspaceMembership = DTOUserWorkspaceMembership; exports.DTOUserWorkspaceMembershipsResponse = DTOUserWorkspaceMembershipsResponse; exports.DTOWorkspace = DTOWorkspace; exports.DTOWorkspaceIntegrationOauthInput = DTOWorkspaceIntegrationOauthInput; exports.DTOWorkspaceIntegrationPATInput = DTOWorkspaceIntegrationPATInput; exports.DTOWorkspaceRole = DTOWorkspaceRole; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.ListTreeBuilder = ListTreeBuilder; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.VersionSQSPayload = VersionSQSPayload; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.documentationElementsToHierarchyDto = documentationElementsToHierarchyDto; exports.documentationHierarchyToYjs = documentationHierarchyToYjs; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.documentationPagesToStructureDTOV2 = documentationPagesToStructureDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.elementGroupsToDocumentationGroupStructureDTOV2 = elementGroupsToDocumentationGroupStructureDTOV2; exports.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.integrationToDto = integrationToDto; exports.itemConfigurationToYjs = itemConfigurationToYjs; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pmSchema = pmSchema; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorNodeToSection = prosemirrorNodeToSection; exports.prosemirrorNodesToBlocks = prosemirrorNodesToBlocks; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateSemver = validateSemver; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy; exports.yjsToItemConfiguration = yjsToItemConfiguration;
|
|
8745
|
+
|
|
8746
|
+
|
|
8747
|
+
exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.DTOBrand = DTOBrand; exports.DTOBrandCreateResponse = DTOBrandCreateResponse; exports.DTOBrandGetResponse = DTOBrandGetResponse; exports.DTOBrandsListResponse = DTOBrandsListResponse; exports.DTOCreateBrandInput = DTOCreateBrandInput; exports.DTOCreateDocumentationGroupInput = DTOCreateDocumentationGroupInput; exports.DTOCreateDocumentationPageInputV2 = DTOCreateDocumentationPageInputV2; exports.DTOCreateDocumentationTabInput = DTOCreateDocumentationTabInput; exports.DTOCreateElementPropertyDefinitionInputV2 = DTOCreateElementPropertyDefinitionInputV2; exports.DTOCreateVersionInput = DTOCreateVersionInput; exports.DTODeleteDocumentationGroupInput = DTODeleteDocumentationGroupInput; exports.DTODeleteDocumentationPageInputV2 = DTODeleteDocumentationPageInputV2; exports.DTODeleteDocumentationTabGroupInput = DTODeleteDocumentationTabGroupInput; exports.DTODeleteElementPropertyDefinitionInputV2 = DTODeleteElementPropertyDefinitionInputV2; exports.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; exports.DTODocumentationGroupCreateActionInputV2 = DTODocumentationGroupCreateActionInputV2; exports.DTODocumentationGroupCreateActionOutputV2 = DTODocumentationGroupCreateActionOutputV2; exports.DTODocumentationGroupDeleteActionInputV2 = DTODocumentationGroupDeleteActionInputV2; exports.DTODocumentationGroupDeleteActionOutputV2 = DTODocumentationGroupDeleteActionOutputV2; exports.DTODocumentationGroupDuplicateActionInputV2 = DTODocumentationGroupDuplicateActionInputV2; exports.DTODocumentationGroupDuplicateActionOutputV2 = DTODocumentationGroupDuplicateActionOutputV2; exports.DTODocumentationGroupMoveActionInputV2 = DTODocumentationGroupMoveActionInputV2; exports.DTODocumentationGroupMoveActionOutputV2 = DTODocumentationGroupMoveActionOutputV2; exports.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; exports.DTODocumentationGroupStructureV2 = DTODocumentationGroupStructureV2; exports.DTODocumentationGroupUpdateActionInputV2 = DTODocumentationGroupUpdateActionInputV2; exports.DTODocumentationGroupUpdateActionOutputV2 = DTODocumentationGroupUpdateActionOutputV2; exports.DTODocumentationGroupV1 = DTODocumentationGroupV1; exports.DTODocumentationGroupV2 = DTODocumentationGroupV2; exports.DTODocumentationHierarchyV2 = DTODocumentationHierarchyV2; exports.DTODocumentationItemConfigurationV1 = DTODocumentationItemConfigurationV1; exports.DTODocumentationItemConfigurationV2 = DTODocumentationItemConfigurationV2; exports.DTODocumentationItemHeaderV2 = DTODocumentationItemHeaderV2; exports.DTODocumentationLinkPreviewRequest = DTODocumentationLinkPreviewRequest; exports.DTODocumentationLinkPreviewResponse = DTODocumentationLinkPreviewResponse; exports.DTODocumentationPageAnchor = DTODocumentationPageAnchor; exports.DTODocumentationPageContent = DTODocumentationPageContent; exports.DTODocumentationPageContentGetResponse = DTODocumentationPageContentGetResponse; exports.DTODocumentationPageCreateActionInputV2 = DTODocumentationPageCreateActionInputV2; exports.DTODocumentationPageCreateActionOutputV2 = DTODocumentationPageCreateActionOutputV2; exports.DTODocumentationPageDeleteActionInputV2 = DTODocumentationPageDeleteActionInputV2; exports.DTODocumentationPageDeleteActionOutputV2 = DTODocumentationPageDeleteActionOutputV2; exports.DTODocumentationPageDuplicateActionInputV2 = DTODocumentationPageDuplicateActionInputV2; exports.DTODocumentationPageDuplicateActionOutputV2 = DTODocumentationPageDuplicateActionOutputV2; exports.DTODocumentationPageMoveActionInputV2 = DTODocumentationPageMoveActionInputV2; exports.DTODocumentationPageMoveActionOutputV2 = DTODocumentationPageMoveActionOutputV2; exports.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageStructureV2 = DTODocumentationPageStructureV2; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; exports.DTODuplicateDocumentationGroupInput = DTODuplicateDocumentationGroupInput; exports.DTODuplicateDocumentationPageInputV2 = DTODuplicateDocumentationPageInputV2; exports.DTOElementActionInput = DTOElementActionInput; exports.DTOElementActionOutput = DTOElementActionOutput; exports.DTOElementPropertyDefinition = DTOElementPropertyDefinition; exports.DTOElementPropertyDefinitionsGetResponse = DTOElementPropertyDefinitionsGetResponse; exports.DTOElementPropertyValue = DTOElementPropertyValue; exports.DTOElementPropertyValuesGetResponse = DTOElementPropertyValuesGetResponse; exports.DTOElementView = DTOElementView; exports.DTOElementViewBasePropertyColumn = DTOElementViewBasePropertyColumn; exports.DTOElementViewColumn = DTOElementViewColumn; exports.DTOElementViewColumnSharedAttributes = DTOElementViewColumnSharedAttributes; exports.DTOElementViewPropertyDefinitionColumn = DTOElementViewPropertyDefinitionColumn; exports.DTOElementViewThemeColumn = DTOElementViewThemeColumn; exports.DTOElementViewsListResponse = DTOElementViewsListResponse; exports.DTOElementsGetOutput = DTOElementsGetOutput; exports.DTOElementsGetQuerySchema = DTOElementsGetQuerySchema; exports.DTOElementsGetTypeFilter = DTOElementsGetTypeFilter; exports.DTOExporterProperty = DTOExporterProperty; exports.DTOExporterPropertyListResponse = DTOExporterPropertyListResponse; exports.DTOFigmaNode = DTOFigmaNode; exports.DTOFigmaNodeData = DTOFigmaNodeData; exports.DTOFigmaNodeOrigin = DTOFigmaNodeOrigin; exports.DTOFigmaNodeRenderActionInput = DTOFigmaNodeRenderActionInput; exports.DTOFigmaNodeRenderActionOutput = DTOFigmaNodeRenderActionOutput; exports.DTOFigmaNodeRenderInput = DTOFigmaNodeRenderInput; exports.DTOGetBlockDefinitionsOutput = DTOGetBlockDefinitionsOutput; exports.DTOGetDocumentationPageAnchorsResponse = DTOGetDocumentationPageAnchorsResponse; exports.DTOIntegration = DTOIntegration; exports.DTOIntegrationOAuthGetResponse = DTOIntegrationOAuthGetResponse; exports.DTOIntegrationPostResponse = DTOIntegrationPostResponse; exports.DTOIntegrationsGetListResponse = DTOIntegrationsGetListResponse; exports.DTOLiveblocksAuthRequest = DTOLiveblocksAuthRequest; exports.DTOMoveDocumentationGroupInput = DTOMoveDocumentationGroupInput; exports.DTOMoveDocumentationPageInputV2 = DTOMoveDocumentationPageInputV2; exports.DTONpmRegistryConfig = DTONpmRegistryConfig; exports.DTOPropertyDefinitionCreateActionInputV2 = DTOPropertyDefinitionCreateActionInputV2; exports.DTOPropertyDefinitionCreateActionOutputV2 = DTOPropertyDefinitionCreateActionOutputV2; exports.DTOPropertyDefinitionDeleteActionInputV2 = DTOPropertyDefinitionDeleteActionInputV2; exports.DTOPropertyDefinitionDeleteActionOutputV2 = DTOPropertyDefinitionDeleteActionOutputV2; exports.DTOPropertyDefinitionUpdateActionInputV2 = DTOPropertyDefinitionUpdateActionInputV2; exports.DTOPropertyDefinitionUpdateActionOutputV2 = DTOPropertyDefinitionUpdateActionOutputV2; exports.DTOUpdateDocumentationGroupInput = DTOUpdateDocumentationGroupInput; exports.DTOUpdateDocumentationPageInputV2 = DTOUpdateDocumentationPageInputV2; exports.DTOUpdateElementPropertyDefinitionInputV2 = DTOUpdateElementPropertyDefinitionInputV2; exports.DTOUserWorkspaceMembership = DTOUserWorkspaceMembership; exports.DTOUserWorkspaceMembershipsResponse = DTOUserWorkspaceMembershipsResponse; exports.DTOWorkspace = DTOWorkspace; exports.DTOWorkspaceIntegrationOauthInput = DTOWorkspaceIntegrationOauthInput; exports.DTOWorkspaceIntegrationPATInput = DTOWorkspaceIntegrationPATInput; exports.DTOWorkspaceRole = DTOWorkspaceRole; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.ListTreeBuilder = ListTreeBuilder; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.VersionSQSPayload = VersionSQSPayload; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.documentationElementsToHierarchyDto = documentationElementsToHierarchyDto; exports.documentationHierarchyToYjs = documentationHierarchyToYjs; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.documentationPagesToStructureDTOV2 = documentationPagesToStructureDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.elementGroupsToDocumentationGroupStructureDTOV2 = elementGroupsToDocumentationGroupStructureDTOV2; exports.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.integrationToDto = integrationToDto; exports.itemConfigurationToYjs = itemConfigurationToYjs; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pmSchema = pmSchema; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorNodeToSection = prosemirrorNodeToSection; exports.prosemirrorNodesToBlocks = prosemirrorNodesToBlocks; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateSemver = validateSemver; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy; exports.yjsToItemConfiguration = yjsToItemConfiguration;
|
|
8730
8748
|
//# sourceMappingURL=index.js.map
|