@supernova-studio/client 0.2.2 → 0.3.0
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 +78 -78
- package/dist/index.d.ts +78 -78
- package/dist/index.js +315 -453
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +319 -457
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/docs-editor/blocks-to-prosemirror.ts +4 -4
- package/src/docs-editor/prosemirror/types.ts +2 -2
- package/src/docs-editor/prosemirror-to-blocks.ts +88 -28
- package/src/docs-editor/utils.ts +11 -11
package/dist/index.js
CHANGED
|
@@ -1,5 +1,124 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); 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/
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); 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
|
|
2
2
|
var _zod = require('zod');
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
3
122
|
var PluginOAuthRequestSchema = _zod.z.object({
|
|
4
123
|
id: _zod.z.string(),
|
|
5
124
|
codeChallenge: _zod.z.string(),
|
|
@@ -10,9 +129,6 @@ var PluginOAuthRequestSchema = _zod.z.object({
|
|
|
10
129
|
oAuthCode: _zod.z.string().optional(),
|
|
11
130
|
createdAt: _zod.z.date()
|
|
12
131
|
});
|
|
13
|
-
|
|
14
|
-
// ../model/src/billing/card.ts
|
|
15
|
-
|
|
16
132
|
var CardSchema = _zod.z.object({
|
|
17
133
|
cardId: _zod.z.string().nullish(),
|
|
18
134
|
last4: _zod.z.string().length(4).nullish(),
|
|
@@ -21,9 +137,6 @@ var CardSchema = _zod.z.object({
|
|
|
21
137
|
brand: _zod.z.string().nullish(),
|
|
22
138
|
name: _zod.z.string().nullish()
|
|
23
139
|
});
|
|
24
|
-
|
|
25
|
-
// ../model/src/billing/checkoutSession.ts
|
|
26
|
-
|
|
27
140
|
var PostStripeCheckoutBodyInputSchema = _zod.z.object({
|
|
28
141
|
priceId: _zod.z.string(),
|
|
29
142
|
successUrl: _zod.z.string().url(),
|
|
@@ -34,9 +147,6 @@ var PostStripeCheckoutOutputSchema = _zod.z.object({
|
|
|
34
147
|
id: _zod.z.string(),
|
|
35
148
|
url: _zod.z.string().nullish()
|
|
36
149
|
});
|
|
37
|
-
|
|
38
|
-
// ../model/src/billing/customer.ts
|
|
39
|
-
|
|
40
150
|
var Customer = _zod.z.object({
|
|
41
151
|
id: _zod.z.string()
|
|
42
152
|
});
|
|
@@ -57,9 +167,6 @@ var BillingDetails = _zod.z.object({
|
|
|
57
167
|
vat: _zod.z.string().optional(),
|
|
58
168
|
poNumber: _zod.z.string().optional()
|
|
59
169
|
});
|
|
60
|
-
|
|
61
|
-
// ../model/src/billing/features.ts
|
|
62
|
-
|
|
63
170
|
var featureLimitedSchema = _zod.z.object({
|
|
64
171
|
max: _zod.z.number(),
|
|
65
172
|
errorMessage: _zod.z.string(),
|
|
@@ -93,9 +200,6 @@ var FeaturesSummary = _zod.z.object({
|
|
|
93
200
|
workspaceViewers: featureLimitedSchema,
|
|
94
201
|
customDocumentationExporter: featureToggleSchema
|
|
95
202
|
});
|
|
96
|
-
|
|
97
|
-
// ../model/src/billing/invoice.ts
|
|
98
|
-
|
|
99
203
|
var InvoiceSchema = _zod.z.object({
|
|
100
204
|
id: _zod.z.string(),
|
|
101
205
|
number: _zod.z.string(),
|
|
@@ -120,9 +224,6 @@ var InvoiceCouponSchema = _zod.z.object({
|
|
|
120
224
|
percent_off: _zod.z.number(),
|
|
121
225
|
name: _zod.z.string()
|
|
122
226
|
});
|
|
123
|
-
|
|
124
|
-
// ../model/src/billing/portalSession.ts
|
|
125
|
-
|
|
126
227
|
var PostStripePortalUpdateSessionBodyInputSchema = _zod.z.object({
|
|
127
228
|
priceId: _zod.z.string(),
|
|
128
229
|
numberOfSeats: _zod.z.number().int()
|
|
@@ -136,9 +237,6 @@ var PostStripePortalSessionOutputSchema = _zod.z.object({
|
|
|
136
237
|
id: _zod.z.string(),
|
|
137
238
|
url: _zod.z.string().nullish()
|
|
138
239
|
});
|
|
139
|
-
|
|
140
|
-
// ../model/src/billing/price.ts
|
|
141
|
-
|
|
142
240
|
var BillingIntervalSchema = _zod.z.enum(["daily", "monthly", "weekly", "yearly"]);
|
|
143
241
|
var PriceSchema = _zod.z.object({
|
|
144
242
|
stripePriceId: _zod.z.string(),
|
|
@@ -157,14 +255,8 @@ var PriceSchema = _zod.z.object({
|
|
|
157
255
|
stripeProductFeatures: _zod.z.array(_zod.z.string()).optional(),
|
|
158
256
|
stripeProductAdditionalFeatures: _zod.z.array(_zod.z.string()).optional()
|
|
159
257
|
});
|
|
160
|
-
|
|
161
|
-
// ../model/src/billing/product.ts
|
|
162
|
-
|
|
163
258
|
var ProductCodeSchema = _zod.z.enum(["free", "team", "team_test", "company", "enterprise"]);
|
|
164
259
|
var ProductCode = ProductCodeSchema.enum;
|
|
165
|
-
|
|
166
|
-
// ../model/src/billing/subscription.ts
|
|
167
|
-
|
|
168
260
|
var StripeSubscriptionStatusSchema = _zod.z.enum([
|
|
169
261
|
"trialing",
|
|
170
262
|
"active",
|
|
@@ -211,22 +303,13 @@ var Subscription = _zod.z.object({
|
|
|
211
303
|
billingType: BillingTypeSchema.optional(),
|
|
212
304
|
daysUntilDue: _zod.z.number().optional()
|
|
213
305
|
});
|
|
214
|
-
|
|
215
|
-
// ../model/src/dsm/assets/asset-reference.ts
|
|
216
|
-
|
|
217
306
|
var AssetReference = _zod.z.object({
|
|
218
307
|
id: _zod.z.string(),
|
|
219
308
|
designSystemVersionId: _zod.z.string(),
|
|
220
309
|
assetId: _zod.z.string(),
|
|
221
310
|
persistentId: _zod.z.string()
|
|
222
311
|
});
|
|
223
|
-
|
|
224
|
-
// ../model/src/dsm/assets/asset-value.ts
|
|
225
|
-
|
|
226
312
|
var AssetValue = _zod.z.object({});
|
|
227
|
-
|
|
228
|
-
// ../model/src/dsm/assets/asset.ts
|
|
229
|
-
|
|
230
313
|
var AssetType = _zod.z.enum(["Image", "Font"]);
|
|
231
314
|
var AssetScope = _zod.z.enum(["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]);
|
|
232
315
|
var AssetFontProperties = _zod.z.object({
|
|
@@ -252,9 +335,6 @@ var Asset = _zod.z.object({
|
|
|
252
335
|
function isImportedAsset(asset) {
|
|
253
336
|
return !!asset.origin;
|
|
254
337
|
}
|
|
255
|
-
|
|
256
|
-
// ../model/src/dsm/data-sources/data-source.ts
|
|
257
|
-
|
|
258
338
|
var DataSourceRemoteType = _zod.z.enum(["Figma", "TokenStudio", "FigmaVariablesPlugin"]);
|
|
259
339
|
var DataSourceUploadRemoteSource = _zod.z.enum(["TokenStudio", "FigmaVariablesPlugin", "Custom"]);
|
|
260
340
|
var DataSourceFigmaState = _zod.z.enum(["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]);
|
|
@@ -319,26 +399,15 @@ var DataSourceVersion = _zod.z.object({
|
|
|
319
399
|
function zeroNumberByDefault() {
|
|
320
400
|
return _zod.z.number().nullish().transform((v) => _nullishCoalesce(v, () => ( 0)));
|
|
321
401
|
}
|
|
322
|
-
|
|
323
|
-
// ../model/src/dsm/data-sources/import-job.ts
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
// ../model/src/common/entity.ts
|
|
327
|
-
|
|
328
402
|
var Entity = _zod.z.object({
|
|
329
403
|
id: _zod.z.string(),
|
|
330
404
|
createdAt: _zod.z.date(),
|
|
331
405
|
updatedAt: _zod.z.date()
|
|
332
406
|
});
|
|
333
|
-
|
|
334
|
-
// ../model/src/common/object-meta.ts
|
|
335
|
-
|
|
336
407
|
var ObjectMeta = _zod.z.object({
|
|
337
408
|
name: _zod.z.string(),
|
|
338
409
|
description: _zod.z.string().optional()
|
|
339
410
|
});
|
|
340
|
-
|
|
341
|
-
// ../model/src/dsm/data-sources/import-job.ts
|
|
342
411
|
var ImportJobState = _zod.z.enum(["PendingInput", "Queued", "InProgress", "Failed", "Success"]);
|
|
343
412
|
var ImportJobOperation = _zod.z.enum(["Check", "Import"]);
|
|
344
413
|
var ImportJob = Entity.extend({
|
|
@@ -351,12 +420,6 @@ var ImportJob = Entity.extend({
|
|
|
351
420
|
error: _zod.z.string().optional(),
|
|
352
421
|
sourceType: DataSourceRemoteType
|
|
353
422
|
});
|
|
354
|
-
|
|
355
|
-
// ../model/src/dsm/data-sources/import-summary.ts
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
// ../model/src/dsm/elements/data/base.ts
|
|
359
|
-
|
|
360
423
|
var TokenDataAliasSchema = _zod.z.object({
|
|
361
424
|
aliasTo: _zod.z.string().optional().nullable().transform((v) => _nullishCoalesce(v, () => ( void 0)))
|
|
362
425
|
});
|
|
@@ -365,67 +428,40 @@ function tokenAliasOrValue(value) {
|
|
|
365
428
|
value: value.optional().nullable().transform((v) => _nullishCoalesce(v, () => ( void 0)))
|
|
366
429
|
});
|
|
367
430
|
}
|
|
368
|
-
|
|
369
|
-
// ../model/src/dsm/elements/data/blur.ts
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
// ../model/src/dsm/elements/data/dimension.ts
|
|
373
|
-
|
|
374
431
|
var DimensionUnit = _zod.z.enum(["Pixels", "Percent", "Rem", "Ms", "Raw", "Points"]);
|
|
375
432
|
var DimensionValue = _zod.z.object({
|
|
376
433
|
unit: DimensionUnit,
|
|
377
434
|
measure: _zod.z.number()
|
|
378
435
|
});
|
|
379
436
|
var DimensionTokenData = tokenAliasOrValue(DimensionValue);
|
|
380
|
-
|
|
381
|
-
// ../model/src/dsm/elements/data/blur.ts
|
|
382
437
|
var BlurType = _zod.z.enum(["Layer", "Background"]);
|
|
383
438
|
var BlurValue = _zod.z.object({
|
|
384
439
|
type: BlurType,
|
|
385
440
|
radius: DimensionTokenData
|
|
386
441
|
});
|
|
387
442
|
var BlurTokenData = tokenAliasOrValue(BlurValue);
|
|
388
|
-
|
|
389
|
-
// ../model/src/dsm/elements/data/border-radius.ts
|
|
390
|
-
|
|
391
443
|
var BorderRadiusUnit = _zod.z.enum(["Pixels", "Rem", "Percent"]);
|
|
392
444
|
var BorderRadiusValue = _zod.z.object({
|
|
393
445
|
unit: BorderRadiusUnit,
|
|
394
446
|
measure: _zod.z.number()
|
|
395
447
|
});
|
|
396
448
|
var BorderRadiusTokenData = tokenAliasOrValue(BorderRadiusValue);
|
|
397
|
-
|
|
398
|
-
// ../model/src/dsm/elements/data/border-width.ts
|
|
399
|
-
|
|
400
449
|
var BorderWidthUnit = _zod.z.enum(["Pixels"]);
|
|
401
450
|
var BorderWidthValue = _zod.z.object({
|
|
402
451
|
unit: BorderWidthUnit,
|
|
403
452
|
measure: _zod.z.number()
|
|
404
453
|
});
|
|
405
454
|
var BorderWidthTokenData = tokenAliasOrValue(BorderWidthValue);
|
|
406
|
-
|
|
407
|
-
// ../model/src/dsm/elements/data/border.ts
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
// ../model/src/dsm/elements/data/color.ts
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
// ../model/src/dsm/elements/data/opacity.ts
|
|
414
|
-
|
|
415
455
|
var OpacityValue = _zod.z.object({
|
|
416
456
|
unit: _zod.z.enum(["Raw", "Pixels"]),
|
|
417
457
|
measure: _zod.z.number()
|
|
418
458
|
});
|
|
419
459
|
var OpacityTokenData = tokenAliasOrValue(OpacityValue);
|
|
420
|
-
|
|
421
|
-
// ../model/src/dsm/elements/data/color.ts
|
|
422
460
|
var ColorValue = _zod.z.object({
|
|
423
461
|
opacity: OpacityTokenData,
|
|
424
462
|
color: _zod.z.string().or(TokenDataAliasSchema)
|
|
425
463
|
});
|
|
426
464
|
var ColorTokenData = tokenAliasOrValue(ColorValue);
|
|
427
|
-
|
|
428
|
-
// ../model/src/dsm/elements/data/border.ts
|
|
429
465
|
var BorderPosition = _zod.z.enum(["Inside", "Center", "Outside"]);
|
|
430
466
|
var BorderStyle = _zod.z.enum(["Dashed", "Dotted", "Solid", "Groove"]);
|
|
431
467
|
var BorderValue = _zod.z.object({
|
|
@@ -435,9 +471,6 @@ var BorderValue = _zod.z.object({
|
|
|
435
471
|
style: BorderStyle.optional()
|
|
436
472
|
});
|
|
437
473
|
var BorderTokenData = tokenAliasOrValue(BorderValue);
|
|
438
|
-
|
|
439
|
-
// ../model/src/dsm/elements/data/component.ts
|
|
440
|
-
|
|
441
474
|
var ComponentElementData = _zod.z.object({
|
|
442
475
|
value: _zod.z.object({
|
|
443
476
|
thumbnailImage: _zod.z.object({
|
|
@@ -454,12 +487,6 @@ var ComponentElementData = _zod.z.object({
|
|
|
454
487
|
}).optional()
|
|
455
488
|
})
|
|
456
489
|
});
|
|
457
|
-
|
|
458
|
-
// ../model/src/dsm/elements/data/documentation-block-v1.ts
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
// ../model/src/dsm/elements/raw-element.ts
|
|
462
|
-
|
|
463
490
|
var DesignTokenType = _zod.z.enum([
|
|
464
491
|
"Color",
|
|
465
492
|
"Border",
|
|
@@ -542,9 +569,6 @@ var DesignElement = ShallowDesignElement.extend({
|
|
|
542
569
|
origin: _zod.z.any().optional()
|
|
543
570
|
// TODO object, not any.
|
|
544
571
|
});
|
|
545
|
-
|
|
546
|
-
// ../model/src/dsm/properties/property-definition.ts
|
|
547
|
-
|
|
548
572
|
var ElementPropertyType = _zod.z.enum(["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]);
|
|
549
573
|
var ElementPropertyTargetType = _zod.z.enum(["Token", "Component", "DocumentationPage"]);
|
|
550
574
|
var ElementPropertyLinkType = _zod.z.enum(["FigmaComponent", "DocumentationPage"]);
|
|
@@ -568,9 +592,6 @@ var ElementPropertyDefinition = _zod.z.object({
|
|
|
568
592
|
options: _zod.z.array(ElementPropertyDefinitionOption).nullish(),
|
|
569
593
|
linkElementType: ElementPropertyLinkType.nullish()
|
|
570
594
|
});
|
|
571
|
-
|
|
572
|
-
// ../model/src/dsm/properties/property-value.ts
|
|
573
|
-
|
|
574
595
|
var ElementPropertyValue = _zod.z.object({
|
|
575
596
|
id: _zod.z.string(),
|
|
576
597
|
designSystemVersionId: _zod.z.string(),
|
|
@@ -582,16 +603,10 @@ var ElementPropertyValue = _zod.z.object({
|
|
|
582
603
|
referenceValue: _zod.z.string().nullish(),
|
|
583
604
|
referenceValuePreview: _zod.z.string().nullish()
|
|
584
605
|
});
|
|
585
|
-
|
|
586
|
-
// ../model/src/dsm/elements/primitives/point.ts
|
|
587
|
-
|
|
588
606
|
var Point2D = _zod.z.object({
|
|
589
607
|
x: _zod.z.number(),
|
|
590
608
|
y: _zod.z.number()
|
|
591
609
|
});
|
|
592
|
-
|
|
593
|
-
// ../model/src/dsm/elements/primitives/size.ts
|
|
594
|
-
|
|
595
610
|
var nullSize = { height: -1, width: -1 };
|
|
596
611
|
function isNullSize(size) {
|
|
597
612
|
return size.height === nullSize.height && size.width === nullSize.width;
|
|
@@ -607,8 +622,6 @@ var SizeOrUndefined = Size.optional().transform((v) => {
|
|
|
607
622
|
return void 0;
|
|
608
623
|
return v;
|
|
609
624
|
});
|
|
610
|
-
|
|
611
|
-
// ../model/src/helpers/db.ts
|
|
612
625
|
function zodCreateInputOmit() {
|
|
613
626
|
return {
|
|
614
627
|
id: true,
|
|
@@ -624,13 +637,9 @@ function zodUpdateInputOmit() {
|
|
|
624
637
|
persistentId: true
|
|
625
638
|
};
|
|
626
639
|
}
|
|
627
|
-
|
|
628
|
-
// ../model/src/helpers/nullish-to-optional.ts
|
|
629
640
|
function nullishToOptional(type) {
|
|
630
641
|
return type.nullish().transform((t) => _nullishCoalesce(t, () => ( void 0)));
|
|
631
642
|
}
|
|
632
|
-
|
|
633
|
-
// ../model/src/dsm/elements/data/documentation-block-v1.ts
|
|
634
643
|
var PageBlockCalloutType = _zod.z.enum(["Info", "Success", "Warning", "Error"]);
|
|
635
644
|
var PageBlockTypeV1 = _zod.z.enum([
|
|
636
645
|
"Text",
|
|
@@ -868,33 +877,33 @@ function traversePageBlocksV1(blocks2, action) {
|
|
|
868
877
|
traversePageBlocksV1(block.children, action);
|
|
869
878
|
}
|
|
870
879
|
}
|
|
871
|
-
|
|
872
|
-
// ../model/src/dsm/elements/data/documentation-block-v2.ts
|
|
873
|
-
|
|
874
880
|
var PageBlockLinkType = _zod.z.enum(["DocumentationItem", "PageHeading", "Url"]);
|
|
875
881
|
var PageBlockImageType = _zod.z.enum(["Upload", "Asset", "FigmaFrame"]);
|
|
876
882
|
var PageBlockImageAlignment = _zod.z.enum(["Left", "Center", "Stretch"]);
|
|
877
883
|
var PageBlockAppearanceV2 = _zod.z.object({
|
|
878
884
|
itemBackgroundColor: ColorValue
|
|
879
885
|
});
|
|
880
|
-
var
|
|
886
|
+
var PageBlockItemUntypedValue = _zod.z.object({
|
|
881
887
|
value: _zod.z.any()
|
|
882
888
|
}).and(_zod.z.record(_zod.z.any()));
|
|
883
|
-
var
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
caption: _zod.z.string().optional(),
|
|
890
|
-
height: _zod.z.number().optional()
|
|
889
|
+
var PageBlockLinkV2 = _zod.z.object({
|
|
890
|
+
type: PageBlockLinkType,
|
|
891
|
+
documentationItemId: _zod.z.string().optional(),
|
|
892
|
+
pageHeadingId: _zod.z.string().optional(),
|
|
893
|
+
url: _zod.z.string().optional(),
|
|
894
|
+
openInNewTab: _zod.z.boolean().optional()
|
|
891
895
|
});
|
|
892
|
-
var
|
|
893
|
-
|
|
896
|
+
var PageBlockItemV2 = _zod.z.object({
|
|
897
|
+
id: _zod.z.string(),
|
|
898
|
+
linksTo: PageBlockLinkV2.optional(),
|
|
899
|
+
props: _zod.z.record(PageBlockItemUntypedValue)
|
|
894
900
|
});
|
|
895
|
-
var
|
|
896
|
-
|
|
897
|
-
|
|
901
|
+
var PageBlockDataV2 = _zod.z.object({
|
|
902
|
+
packageId: _zod.z.string(),
|
|
903
|
+
variantId: _zod.z.string().optional(),
|
|
904
|
+
indentLevel: _zod.z.number(),
|
|
905
|
+
appearance: PageBlockAppearanceV2.optional(),
|
|
906
|
+
items: _zod.z.array(PageBlockItemV2)
|
|
898
907
|
});
|
|
899
908
|
var PageBlockItemImageReference = _zod.z.object({
|
|
900
909
|
type: PageBlockImageType,
|
|
@@ -906,43 +915,116 @@ var PageBlockItemImageReference = _zod.z.object({
|
|
|
906
915
|
frameId: _zod.z.string()
|
|
907
916
|
}).optional()
|
|
908
917
|
});
|
|
918
|
+
var PageBlockItemAssetValue = _zod.z.object({
|
|
919
|
+
selectedPropertyIds: _zod.z.array(_zod.z.string()).optional(),
|
|
920
|
+
showSearch: _zod.z.boolean().optional(),
|
|
921
|
+
previewContainerSize: _zod.z.enum(["Centered", "NaturalHeight"]).optional(),
|
|
922
|
+
backgroundColor: _zod.z.string().optional(),
|
|
923
|
+
value: _zod.z.array(
|
|
924
|
+
_zod.z.object({
|
|
925
|
+
entityId: _zod.z.string(),
|
|
926
|
+
entityType: _zod.z.enum(["Asset", "AssetGroup"])
|
|
927
|
+
})
|
|
928
|
+
)
|
|
929
|
+
});
|
|
930
|
+
var PageBlockItemAssetPropertyValue = _zod.z.object({
|
|
931
|
+
value: _zod.z.array(_zod.z.string())
|
|
932
|
+
});
|
|
933
|
+
var PageBlockItemBooleanValue = _zod.z.object({
|
|
934
|
+
value: _zod.z.boolean()
|
|
935
|
+
});
|
|
936
|
+
var PageBlockItemCodeValue = _zod.z.object({
|
|
937
|
+
format: PageBlockCodeLanguage.optional(),
|
|
938
|
+
caption: _zod.z.string().optional(),
|
|
939
|
+
value: _zod.z.string()
|
|
940
|
+
});
|
|
941
|
+
var PageBlockItemSandboxValue = _zod.z.object({
|
|
942
|
+
showCode: _zod.z.boolean().optional(),
|
|
943
|
+
backgroundColor: _zod.z.string().optional(),
|
|
944
|
+
alignPreview: _zod.z.enum(["Left", "Center"]).optional(),
|
|
945
|
+
value: _zod.z.string()
|
|
946
|
+
});
|
|
947
|
+
var PageBlockItemColorValue = _zod.z.record(_zod.z.any());
|
|
948
|
+
var PageBlockItemComponentValue = _zod.z.object({
|
|
949
|
+
selectedPropertyIds: _zod.z.array(_zod.z.string()).optional(),
|
|
950
|
+
value: _zod.z.array(
|
|
951
|
+
_zod.z.object({
|
|
952
|
+
entityId: _zod.z.string(),
|
|
953
|
+
entityType: _zod.z.enum(["Component", "ComponentGroup"])
|
|
954
|
+
})
|
|
955
|
+
)
|
|
956
|
+
});
|
|
957
|
+
var PageBlockItemComponentPropertyValue = _zod.z.object({
|
|
958
|
+
value: _zod.z.string()
|
|
959
|
+
});
|
|
960
|
+
var PageBlockItemDividerValue = _zod.z.object({});
|
|
961
|
+
var PageBlockItemEmbedValue = _zod.z.object({
|
|
962
|
+
value: _zod.z.string().optional(),
|
|
963
|
+
caption: _zod.z.string().optional(),
|
|
964
|
+
height: _zod.z.number().optional()
|
|
965
|
+
});
|
|
909
966
|
var PageBlockItemImageValue = _zod.z.object({
|
|
910
967
|
alt: _zod.z.string().optional(),
|
|
911
968
|
caption: _zod.z.string().optional(),
|
|
912
969
|
alignment: PageBlockImageAlignment.optional(),
|
|
913
970
|
value: PageBlockItemImageReference.optional()
|
|
914
971
|
});
|
|
915
|
-
var
|
|
916
|
-
|
|
917
|
-
documentationItemId: _zod.z.string().optional(),
|
|
918
|
-
pageHeadingId: _zod.z.string().optional(),
|
|
919
|
-
url: _zod.z.string().optional(),
|
|
920
|
-
openInNewTab: _zod.z.boolean().optional()
|
|
972
|
+
var PageBlockItemMarkdownValue = _zod.z.object({
|
|
973
|
+
value: _zod.z.string()
|
|
921
974
|
});
|
|
922
|
-
var
|
|
923
|
-
|
|
924
|
-
linksTo: PageBlockLinkV2.optional(),
|
|
925
|
-
props: _zod.z.record(PageBlockItemUntypedPropertyValue)
|
|
975
|
+
var PageBlockItemMultiRichTextValue = _zod.z.object({
|
|
976
|
+
value: PageBlockText.array()
|
|
926
977
|
});
|
|
927
|
-
var
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
978
|
+
var PageBlockItemMultiSelectValue = _zod.z.object({
|
|
979
|
+
value: _zod.z.array(_zod.z.string())
|
|
980
|
+
});
|
|
981
|
+
var PageBlockItemNumberValue = _zod.z.object({
|
|
982
|
+
value: _zod.z.number()
|
|
983
|
+
});
|
|
984
|
+
var PageBlockItemRichTextValue = _zod.z.object({
|
|
985
|
+
value: PageBlockText,
|
|
986
|
+
calloutType: PageBlockCalloutType.optional()
|
|
987
|
+
});
|
|
988
|
+
var PageBlockItemSingleSelectValue = _zod.z.object({
|
|
989
|
+
value: _zod.z.string()
|
|
990
|
+
});
|
|
991
|
+
var PageBlockItemStorybookValue = _zod.z.object({
|
|
992
|
+
caption: _zod.z.string().optional(),
|
|
993
|
+
height: _zod.z.number().optional(),
|
|
994
|
+
showAddons: _zod.z.boolean().optional(),
|
|
995
|
+
value: _zod.z.string()
|
|
996
|
+
});
|
|
997
|
+
var PageBlockItemTableValue = _zod.z.object({
|
|
998
|
+
value: _zod.z.any()
|
|
999
|
+
});
|
|
1000
|
+
var PageBlockItemTextValue = _zod.z.object({
|
|
1001
|
+
value: _zod.z.string()
|
|
1002
|
+
});
|
|
1003
|
+
var PageBlockItemTokenValue = _zod.z.object({
|
|
1004
|
+
selectedPropertyIds: _zod.z.array(_zod.z.string()).optional(),
|
|
1005
|
+
selectedThemeIds: _zod.z.array(_zod.z.string()).optional(),
|
|
1006
|
+
value: _zod.z.array(
|
|
1007
|
+
_zod.z.object({
|
|
1008
|
+
entityId: _zod.z.string(),
|
|
1009
|
+
entityType: _zod.z.enum(["Token", "TokenGroup"])
|
|
1010
|
+
})
|
|
1011
|
+
)
|
|
1012
|
+
});
|
|
1013
|
+
var PageBlockItemTokenPropertyValue = _zod.z.object({
|
|
1014
|
+
selectedPropertyIds: _zod.z.array(_zod.z.string()).optional(),
|
|
1015
|
+
selectedThemeIds: _zod.z.array(_zod.z.string()).optional(),
|
|
1016
|
+
value: _zod.z.array(_zod.z.string())
|
|
1017
|
+
});
|
|
1018
|
+
var PageBlockItemTokenTypeValue = _zod.z.object({
|
|
1019
|
+
value: _zod.z.array(DesignTokenType)
|
|
1020
|
+
});
|
|
1021
|
+
var PageBlockItemUrlValue = _zod.z.object({
|
|
1022
|
+
value: _zod.z.string()
|
|
933
1023
|
});
|
|
934
|
-
|
|
935
|
-
// ../model/src/dsm/elements/data/documentation-page-v1.ts
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
// ../model/src/dsm/elements/data/documentation.ts
|
|
939
|
-
|
|
940
1024
|
var DocumentationItemConfiguration = _zod.z.object({
|
|
941
1025
|
showSidebar: _zod.z.boolean(),
|
|
942
1026
|
header: _zod.z.any()
|
|
943
1027
|
});
|
|
944
|
-
|
|
945
|
-
// ../model/src/dsm/elements/data/documentation-page-v1.ts
|
|
946
1028
|
var DocumentationPageDataV1 = _zod.z.object({
|
|
947
1029
|
blocks: _zod.z.array(PageBlockV1),
|
|
948
1030
|
configuration: nullishToOptional(DocumentationItemConfiguration)
|
|
@@ -950,27 +1032,18 @@ var DocumentationPageDataV1 = _zod.z.object({
|
|
|
950
1032
|
var DocumentationPageElementDataV1 = _zod.z.object({
|
|
951
1033
|
value: DocumentationPageDataV1
|
|
952
1034
|
});
|
|
953
|
-
|
|
954
|
-
// ../model/src/dsm/elements/data/documentation-page-v2.ts
|
|
955
|
-
|
|
956
1035
|
var DocumentationPageDataV2 = _zod.z.object({
|
|
957
1036
|
configuration: nullishToOptional(DocumentationItemConfiguration)
|
|
958
1037
|
});
|
|
959
1038
|
var DocumentationPageElementDataV2 = _zod.z.object({
|
|
960
1039
|
value: DocumentationPageDataV2
|
|
961
1040
|
});
|
|
962
|
-
|
|
963
|
-
// ../model/src/dsm/elements/data/duration.ts
|
|
964
|
-
|
|
965
1041
|
var DurationUnit = _zod.z.enum(["Ms"]);
|
|
966
1042
|
var DurationValue = _zod.z.object({
|
|
967
1043
|
unit: DurationUnit,
|
|
968
1044
|
measure: _zod.z.number()
|
|
969
1045
|
});
|
|
970
1046
|
var DurationTokenData = tokenAliasOrValue(DurationValue);
|
|
971
|
-
|
|
972
|
-
// ../model/src/dsm/elements/data/figma-file-structure.ts
|
|
973
|
-
|
|
974
1047
|
var FigmaFileStructureNodeType = _zod.z.enum(["DOCUMENT", "CANVAS", "FRAME", "COMPONENT", "COMPONENT_SET"]);
|
|
975
1048
|
var FigmaFileStructureNodeBase = _zod.z.object({
|
|
976
1049
|
id: _zod.z.string(),
|
|
@@ -1003,9 +1076,6 @@ function recursiveFigmaFileStructureToMap(node, map) {
|
|
|
1003
1076
|
for (const child of node.children)
|
|
1004
1077
|
recursiveFigmaFileStructureToMap(child, map);
|
|
1005
1078
|
}
|
|
1006
|
-
|
|
1007
|
-
// ../model/src/dsm/elements/data/figma-node-reference.ts
|
|
1008
|
-
|
|
1009
1079
|
var FigmaNodeReferenceData = _zod.z.object({
|
|
1010
1080
|
structureElementId: _zod.z.string(),
|
|
1011
1081
|
nodeId: _zod.z.string(),
|
|
@@ -1020,28 +1090,16 @@ var FigmaNodeReferenceData = _zod.z.object({
|
|
|
1020
1090
|
var FigmaNodeReferenceElementData = _zod.z.object({
|
|
1021
1091
|
value: FigmaNodeReferenceData
|
|
1022
1092
|
});
|
|
1023
|
-
|
|
1024
|
-
// ../model/src/dsm/elements/data/font-family.ts
|
|
1025
|
-
|
|
1026
1093
|
var FontFamilyValue = _zod.z.string();
|
|
1027
1094
|
var FontFamilyTokenData = tokenAliasOrValue(FontFamilyValue);
|
|
1028
|
-
|
|
1029
|
-
// ../model/src/dsm/elements/data/font-size.ts
|
|
1030
|
-
|
|
1031
1095
|
var FontSizeUnit = _zod.z.enum(["Pixels", "Rem", "Percent"]);
|
|
1032
1096
|
var FontSizeValue = _zod.z.object({
|
|
1033
1097
|
unit: FontSizeUnit,
|
|
1034
1098
|
measure: _zod.z.number()
|
|
1035
1099
|
});
|
|
1036
1100
|
var FontSizeTokenData = tokenAliasOrValue(FontSizeValue);
|
|
1037
|
-
|
|
1038
|
-
// ../model/src/dsm/elements/data/font-weight.ts
|
|
1039
|
-
|
|
1040
1101
|
var FontWeightValue = _zod.z.string();
|
|
1041
1102
|
var FontWeightTokenData = tokenAliasOrValue(FontWeightValue);
|
|
1042
|
-
|
|
1043
|
-
// ../model/src/dsm/elements/data/gradient.ts
|
|
1044
|
-
|
|
1045
1103
|
var GradientType = _zod.z.enum(["Linear", "Radial", "Angular"]);
|
|
1046
1104
|
var GradientStop = _zod.z.object({
|
|
1047
1105
|
position: _zod.z.number(),
|
|
@@ -1058,9 +1116,6 @@ var GradientLayerValue = _zod.z.object({
|
|
|
1058
1116
|
var GradientLayerData = tokenAliasOrValue(GradientLayerValue);
|
|
1059
1117
|
var GradientTokenValue = _zod.z.array(GradientLayerData);
|
|
1060
1118
|
var GradientTokenData = tokenAliasOrValue(GradientTokenValue);
|
|
1061
|
-
|
|
1062
|
-
// ../model/src/dsm/elements/data/group.ts
|
|
1063
|
-
|
|
1064
1119
|
var DocumentationGroupBehavior = _zod.z.enum(["Group", "Tabs"]);
|
|
1065
1120
|
var ElementGroupData = _zod.z.object({
|
|
1066
1121
|
behavior: nullishToOptional(DocumentationGroupBehavior.optional()),
|
|
@@ -1069,50 +1124,32 @@ var ElementGroupData = _zod.z.object({
|
|
|
1069
1124
|
var ElementGroupElementData = _zod.z.object({
|
|
1070
1125
|
value: ElementGroupData.optional()
|
|
1071
1126
|
});
|
|
1072
|
-
|
|
1073
|
-
// ../model/src/dsm/elements/data/letter-spacing.ts
|
|
1074
|
-
|
|
1075
1127
|
var LetterSpacingUnit = _zod.z.enum(["Pixels", "Rem", "Percent"]);
|
|
1076
1128
|
var LetterSpacingValue = _zod.z.object({
|
|
1077
1129
|
unit: LetterSpacingUnit,
|
|
1078
1130
|
measure: _zod.z.number()
|
|
1079
1131
|
});
|
|
1080
1132
|
var LetterSpacingTokenData = tokenAliasOrValue(LetterSpacingValue);
|
|
1081
|
-
|
|
1082
|
-
// ../model/src/dsm/elements/data/line-height.ts
|
|
1083
|
-
|
|
1084
1133
|
var LineHeightUnit = _zod.z.enum(["Pixels", "Rem", "Percent", "Raw"]);
|
|
1085
1134
|
var LineHeightValue = _zod.z.object({
|
|
1086
1135
|
unit: LineHeightUnit,
|
|
1087
1136
|
measure: _zod.z.number()
|
|
1088
1137
|
});
|
|
1089
1138
|
var LineHeightTokenData = tokenAliasOrValue(LineHeightValue);
|
|
1090
|
-
|
|
1091
|
-
// ../model/src/dsm/elements/data/paragraph-indent.ts
|
|
1092
|
-
|
|
1093
1139
|
var ParagraphIndentUnit = _zod.z.enum(["Pixels", "Rem", "Percent"]);
|
|
1094
1140
|
var ParagraphIndentValue = _zod.z.object({
|
|
1095
1141
|
unit: ParagraphIndentUnit,
|
|
1096
1142
|
measure: _zod.z.number()
|
|
1097
1143
|
});
|
|
1098
1144
|
var ParagraphIndentTokenData = tokenAliasOrValue(ParagraphIndentValue);
|
|
1099
|
-
|
|
1100
|
-
// ../model/src/dsm/elements/data/paragraph-spacing.ts
|
|
1101
|
-
|
|
1102
1145
|
var ParagraphSpacingUnit = _zod.z.enum(["Pixels", "Rem", "Percent"]);
|
|
1103
1146
|
var ParagraphSpacingValue = _zod.z.object({
|
|
1104
1147
|
unit: ParagraphSpacingUnit,
|
|
1105
1148
|
measure: _zod.z.number()
|
|
1106
1149
|
});
|
|
1107
1150
|
var ParagraphSpacingTokenData = tokenAliasOrValue(ParagraphSpacingValue);
|
|
1108
|
-
|
|
1109
|
-
// ../model/src/dsm/elements/data/product-copy.ts
|
|
1110
|
-
|
|
1111
1151
|
var ProductCopyValue = _zod.z.string();
|
|
1112
1152
|
var ProductCopyTokenData = tokenAliasOrValue(ProductCopyValue);
|
|
1113
|
-
|
|
1114
|
-
// ../model/src/dsm/elements/data/shadow.ts
|
|
1115
|
-
|
|
1116
1153
|
var ShadowType = _zod.z.enum(["Drop", "Inner"]);
|
|
1117
1154
|
var ShadowLayerValue = _zod.z.object({
|
|
1118
1155
|
color: ColorTokenData,
|
|
@@ -1125,44 +1162,26 @@ var ShadowLayerValue = _zod.z.object({
|
|
|
1125
1162
|
});
|
|
1126
1163
|
var ShadowTokenDataBase = tokenAliasOrValue(ShadowLayerValue);
|
|
1127
1164
|
var ShadowTokenData = tokenAliasOrValue(_zod.z.array(ShadowTokenDataBase));
|
|
1128
|
-
|
|
1129
|
-
// ../model/src/dsm/elements/data/size.ts
|
|
1130
|
-
|
|
1131
1165
|
var SizeUnit = _zod.z.enum(["Pixels", "Rem", "Percent"]);
|
|
1132
1166
|
var SizeValue = _zod.z.object({
|
|
1133
1167
|
unit: SizeUnit,
|
|
1134
1168
|
measure: _zod.z.number()
|
|
1135
1169
|
});
|
|
1136
1170
|
var SizeTokenData = tokenAliasOrValue(SizeValue);
|
|
1137
|
-
|
|
1138
|
-
// ../model/src/dsm/elements/data/space.ts
|
|
1139
|
-
|
|
1140
1171
|
var SpaceUnit = _zod.z.enum(["Pixels", "Rem", "Percent"]);
|
|
1141
1172
|
var SpaceValue = _zod.z.object({
|
|
1142
1173
|
unit: SpaceUnit,
|
|
1143
1174
|
measure: _zod.z.number()
|
|
1144
1175
|
});
|
|
1145
1176
|
var SpaceTokenData = tokenAliasOrValue(SpaceValue);
|
|
1146
|
-
|
|
1147
|
-
// ../model/src/dsm/elements/data/string.ts
|
|
1148
|
-
|
|
1149
1177
|
var StringValue = _zod.z.string();
|
|
1150
1178
|
var StringTokenData = tokenAliasOrValue(StringValue);
|
|
1151
|
-
|
|
1152
|
-
// ../model/src/dsm/elements/data/text-case.ts
|
|
1153
|
-
|
|
1154
1179
|
var TextCase = _zod.z.enum(["Original", "Upper", "Lower", "Camel", "SmallCaps"]);
|
|
1155
1180
|
var TextCaseValue = TextCase;
|
|
1156
1181
|
var TextCaseTokenData = tokenAliasOrValue(TextCaseValue);
|
|
1157
|
-
|
|
1158
|
-
// ../model/src/dsm/elements/data/text-decoration.ts
|
|
1159
|
-
|
|
1160
1182
|
var TextDecoration = _zod.z.enum(["None", "Underline", "Strikethrough"]);
|
|
1161
1183
|
var TextDecorationValue = TextDecoration;
|
|
1162
1184
|
var TextDecorationTokenData = tokenAliasOrValue(TextDecorationValue);
|
|
1163
|
-
|
|
1164
|
-
// ../model/src/dsm/elements/data/typography.ts
|
|
1165
|
-
|
|
1166
1185
|
var TypographyValue = _zod.z.object({
|
|
1167
1186
|
fontSize: FontSizeTokenData,
|
|
1168
1187
|
fontFamily: FontFamilyTokenData,
|
|
@@ -1175,24 +1194,15 @@ var TypographyValue = _zod.z.object({
|
|
|
1175
1194
|
paragraphSpacing: ParagraphSpacingTokenData.optional()
|
|
1176
1195
|
});
|
|
1177
1196
|
var TypographyTokenData = tokenAliasOrValue(TypographyValue);
|
|
1178
|
-
|
|
1179
|
-
// ../model/src/dsm/elements/data/visibility.ts
|
|
1180
|
-
|
|
1181
1197
|
var Visibility = _zod.z.enum(["Hidden", "Visible"]);
|
|
1182
1198
|
var VisibilityValue = Visibility;
|
|
1183
1199
|
var VisibilityTokenData = tokenAliasOrValue(VisibilityValue);
|
|
1184
|
-
|
|
1185
|
-
// ../model/src/dsm/elements/data/z-index.ts
|
|
1186
|
-
|
|
1187
1200
|
var ZIndexUnit = _zod.z.enum(["Raw"]);
|
|
1188
1201
|
var ZIndexValue = _zod.z.object({
|
|
1189
1202
|
unit: ZIndexUnit,
|
|
1190
1203
|
measure: _zod.z.number()
|
|
1191
1204
|
});
|
|
1192
1205
|
var ZIndexTokenData = tokenAliasOrValue(ZIndexValue);
|
|
1193
|
-
|
|
1194
|
-
// ../model/src/dsm/elements/base.ts
|
|
1195
|
-
|
|
1196
1206
|
var DesignElementOrigin = _zod.z.object({
|
|
1197
1207
|
id: _zod.z.string(),
|
|
1198
1208
|
sourceId: _zod.z.string(),
|
|
@@ -1224,9 +1234,6 @@ var DesignElementSlugPart = _zod.z.object({
|
|
|
1224
1234
|
slug: _zod.z.string().optional(),
|
|
1225
1235
|
userSlug: _zod.z.string().optional()
|
|
1226
1236
|
});
|
|
1227
|
-
|
|
1228
|
-
// ../model/src/dsm/elements/component.ts
|
|
1229
|
-
|
|
1230
1237
|
var ComponentOriginPart = _zod.z.object({
|
|
1231
1238
|
nodeId: _zod.z.string().optional(),
|
|
1232
1239
|
width: _zod.z.number().optional(),
|
|
@@ -1246,9 +1253,6 @@ var Component = DesignElementBase.extend(DesignElementGroupableRequiredPart.shap
|
|
|
1246
1253
|
function isImportedComponent(component) {
|
|
1247
1254
|
return !!component.origin;
|
|
1248
1255
|
}
|
|
1249
|
-
|
|
1250
|
-
// ../model/src/dsm/elements/documentation-page-v1.ts
|
|
1251
|
-
|
|
1252
1256
|
var DocumentationPageV1 = DesignElementBase.extend(DesignElementGroupableRequiredPart.shape).extend(DesignElementSlugPart.shape).extend({
|
|
1253
1257
|
shortPersistentId: _zod.z.string(),
|
|
1254
1258
|
data: DocumentationPageDataV1
|
|
@@ -1262,16 +1266,10 @@ var DocumentationPageDTOV1 = DocumentationPageV1.omit({
|
|
|
1262
1266
|
title: _zod.z.string(),
|
|
1263
1267
|
path: _zod.z.string()
|
|
1264
1268
|
});
|
|
1265
|
-
|
|
1266
|
-
// ../model/src/dsm/elements/documentation-page-v2.ts
|
|
1267
|
-
|
|
1268
1269
|
var DocumentationPageV2 = DesignElementBase.extend(DesignElementGroupableRequiredPart.shape).extend(DesignElementSlugPart.shape).extend({
|
|
1269
1270
|
shortPersistentId: _zod.z.string(),
|
|
1270
1271
|
data: DocumentationPageDataV2
|
|
1271
1272
|
});
|
|
1272
|
-
|
|
1273
|
-
// ../model/src/dsm/elements/figma-file-structures.ts
|
|
1274
|
-
|
|
1275
1273
|
var FigmaFileStructureOrigin = _zod.z.object({
|
|
1276
1274
|
sourceId: _zod.z.string(),
|
|
1277
1275
|
fileId: _zod.z.string().optional()
|
|
@@ -1290,14 +1288,9 @@ function traverseStructure(node, action) {
|
|
|
1290
1288
|
traverseStructure(child, action);
|
|
1291
1289
|
}
|
|
1292
1290
|
}
|
|
1293
|
-
|
|
1294
|
-
// ../model/src/dsm/elements/figma-node-reference.ts
|
|
1295
1291
|
var FigmaNodeReference = DesignElementBase.extend({
|
|
1296
1292
|
data: FigmaNodeReferenceData
|
|
1297
1293
|
});
|
|
1298
|
-
|
|
1299
|
-
// ../model/src/dsm/elements/group.ts
|
|
1300
|
-
|
|
1301
1294
|
var ElementGroup = DesignElementBase.extend(DesignElementGroupablePart.shape).extend(DesignElementSlugPart.shape).extend(DesignElementBrandedPart.partial().shape).extend({
|
|
1302
1295
|
shortPersistentId: _zod.z.string().optional(),
|
|
1303
1296
|
childType: DesignElementType,
|
|
@@ -1320,9 +1313,6 @@ var DocumentationGroupDTO = ElementGroup.omit({
|
|
|
1320
1313
|
configuration: DocumentationItemConfiguration,
|
|
1321
1314
|
shortPersistentId: _zod.z.string()
|
|
1322
1315
|
});
|
|
1323
|
-
|
|
1324
|
-
// ../model/src/dsm/elements/page-block-v2.ts
|
|
1325
|
-
|
|
1326
1316
|
var PageBlockV2 = DesignElementBase.extend(DesignElementGroupableRequiredPart.shape).extend({
|
|
1327
1317
|
data: PageBlockDataV2
|
|
1328
1318
|
});
|
|
@@ -1330,12 +1320,6 @@ var PageBlockEditorModelV2 = _zod.z.object({
|
|
|
1330
1320
|
id: _zod.z.string(),
|
|
1331
1321
|
data: PageBlockDataV2
|
|
1332
1322
|
});
|
|
1333
|
-
|
|
1334
|
-
// ../model/src/dsm/elements/theme.ts
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
// ../model/src/dsm/elements/tokens.ts
|
|
1338
|
-
|
|
1339
1323
|
var DesignTokenOriginPart = _zod.z.object({
|
|
1340
1324
|
referenceOriginId: _zod.z.string().optional(),
|
|
1341
1325
|
referencePersistentId: _zod.z.string().optional()
|
|
@@ -1499,8 +1483,6 @@ function isDesignTokenOfType(designToken, type) {
|
|
|
1499
1483
|
function designTokenTypeFilter(type) {
|
|
1500
1484
|
return (designToken) => isDesignTokenOfType(designToken, type);
|
|
1501
1485
|
}
|
|
1502
|
-
|
|
1503
|
-
// ../model/src/dsm/elements/theme.ts
|
|
1504
1486
|
var ThemeOverrideOriginPart = DesignTokenOriginPart;
|
|
1505
1487
|
var ThemeOverrideOrigin = DesignTokenOrigin;
|
|
1506
1488
|
var ThemeOverride = DesignTokenTypedData.and(
|
|
@@ -1530,9 +1512,6 @@ var Theme = DesignElementBase.extend(DesignElementBrandedPart.shape).extend({
|
|
|
1530
1512
|
origin: ThemeOrigin.optional(),
|
|
1531
1513
|
overrides: _zod.z.array(ThemeOverride)
|
|
1532
1514
|
});
|
|
1533
|
-
|
|
1534
|
-
// ../model/src/dsm/import/support/figma-files.ts
|
|
1535
|
-
|
|
1536
1515
|
var FigmaFileDownloadScope = _zod.z.object({
|
|
1537
1516
|
styles: _zod.z.boolean(),
|
|
1538
1517
|
components: _zod.z.boolean(),
|
|
@@ -1543,9 +1522,6 @@ var FigmaFileDownloadScope = _zod.z.object({
|
|
|
1543
1522
|
var FigmaFileAccessData = _zod.z.object({
|
|
1544
1523
|
accessToken: _zod.z.string()
|
|
1545
1524
|
});
|
|
1546
|
-
|
|
1547
|
-
// ../model/src/dsm/import/support/import-context.ts
|
|
1548
|
-
|
|
1549
1525
|
var ImportFunctionInput = _zod.z.object({
|
|
1550
1526
|
importJobId: _zod.z.string(),
|
|
1551
1527
|
importContextId: _zod.z.string(),
|
|
@@ -1590,12 +1566,6 @@ var FigmaImportContextWithDownloadScopes = FigmaImportBaseContext.extend({
|
|
|
1590
1566
|
*/
|
|
1591
1567
|
changedImportedSourceDataBySourceId: _zod.z.record(ChangedImportedFigmaSourceData)
|
|
1592
1568
|
});
|
|
1593
|
-
|
|
1594
|
-
// ../model/src/dsm/import/support/import-model-collections.ts
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
// ../model/src/dsm/import/image.ts
|
|
1598
|
-
|
|
1599
1569
|
var ImageImportModelType = _zod.z.enum(["Url", "FigmaRender"]);
|
|
1600
1570
|
var ImageImportModelBase = _zod.z.object({
|
|
1601
1571
|
scope: AssetScope
|
|
@@ -1626,12 +1596,6 @@ var FigmaRenderImportModel = _zod.z.discriminatedUnion("format", [
|
|
|
1626
1596
|
FigmaSvgRenderImportModel
|
|
1627
1597
|
]);
|
|
1628
1598
|
var ImageImportModel = _zod.z.union([UrlImageImportModel, FigmaRenderImportModel]);
|
|
1629
|
-
|
|
1630
|
-
// ../model/src/dsm/import/component.ts
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
// ../model/src/dsm/import/base.ts
|
|
1634
|
-
|
|
1635
1599
|
var ImportModelBase = _zod.z.object({
|
|
1636
1600
|
id: _zod.z.string(),
|
|
1637
1601
|
meta: ObjectMeta,
|
|
@@ -1647,8 +1611,6 @@ var ImportModelInputBase = ImportModelBase.omit({
|
|
|
1647
1611
|
originId: _zod.z.string(),
|
|
1648
1612
|
originMetadata: _zod.z.record(_zod.z.any())
|
|
1649
1613
|
});
|
|
1650
|
-
|
|
1651
|
-
// ../model/src/dsm/import/component.ts
|
|
1652
1614
|
var ComponentImportModelPart = _zod.z.object({
|
|
1653
1615
|
thumbnail: ImageImportModel
|
|
1654
1616
|
});
|
|
@@ -1664,9 +1626,6 @@ var AssetImportModelInput = ImportModelInputBase.extend(ComponentImportModelPart
|
|
|
1664
1626
|
svg: FigmaSvgRenderImportModel,
|
|
1665
1627
|
originMetadata: ComponentOriginPart
|
|
1666
1628
|
});
|
|
1667
|
-
|
|
1668
|
-
// ../model/src/dsm/import/theme.ts
|
|
1669
|
-
|
|
1670
1629
|
var ThemeOverrideImportModelBase = DesignTokenTypedData.and(
|
|
1671
1630
|
_zod.z.object({
|
|
1672
1631
|
id: _zod.z.string(),
|
|
@@ -1704,9 +1663,6 @@ var ThemeUpdateImportModelInput = _zod.z.object({
|
|
|
1704
1663
|
themePersistentId: _zod.z.string(),
|
|
1705
1664
|
overrides: _zod.z.array(ThemeOverrideImportModelInput)
|
|
1706
1665
|
});
|
|
1707
|
-
|
|
1708
|
-
// ../model/src/dsm/import/tokens.ts
|
|
1709
|
-
|
|
1710
1666
|
var DesignTokenImportModelPart = _zod.z.object({
|
|
1711
1667
|
collection: _zod.z.string().optional()
|
|
1712
1668
|
});
|
|
@@ -1724,9 +1680,6 @@ function isDesignTokenImportModelOfType(designToken, type) {
|
|
|
1724
1680
|
function designTokenImportModelTypeFilter(type) {
|
|
1725
1681
|
return (designToken) => isDesignTokenImportModelOfType(designToken, type);
|
|
1726
1682
|
}
|
|
1727
|
-
|
|
1728
|
-
// ../model/src/dsm/import/figma-frames.ts
|
|
1729
|
-
|
|
1730
1683
|
var FigmaFileStructureNodeImportModelBase = FigmaFileStructureNodeBase.extend({
|
|
1731
1684
|
image: FigmaPngRenderImportModel
|
|
1732
1685
|
});
|
|
@@ -1757,16 +1710,11 @@ function recursiveFigmaFileStructureToMap2(node, map) {
|
|
|
1757
1710
|
for (const child of node.children)
|
|
1758
1711
|
recursiveFigmaFileStructureToMap2(child, map);
|
|
1759
1712
|
}
|
|
1760
|
-
|
|
1761
|
-
// ../model/src/dsm/import/data-source.ts
|
|
1762
|
-
|
|
1763
1713
|
var DataSourceImportModel = _zod.z.object({
|
|
1764
1714
|
id: _zod.z.string(),
|
|
1765
1715
|
fileName: _zod.z.string().optional(),
|
|
1766
1716
|
thumbnailUrl: _zod.z.string().optional()
|
|
1767
1717
|
});
|
|
1768
|
-
|
|
1769
|
-
// ../model/src/dsm/import/support/import-model-collections.ts
|
|
1770
1718
|
var ImportModelInputCollection = _zod.z.object({
|
|
1771
1719
|
source: DataSourceImportModel,
|
|
1772
1720
|
tokens: _zod.z.array(DesignTokenImportModelInput).default([]),
|
|
@@ -1794,9 +1742,6 @@ function addImportModelCollections(lhs, rhs) {
|
|
|
1794
1742
|
figmaFileStructures: [...lhs.figmaFileStructures, ...rhs.figmaFileStructures]
|
|
1795
1743
|
};
|
|
1796
1744
|
}
|
|
1797
|
-
|
|
1798
|
-
// ../model/src/dsm/import/warning.ts
|
|
1799
|
-
|
|
1800
1745
|
var ImportWarningType = _zod.z.enum([
|
|
1801
1746
|
"NoVersionFound",
|
|
1802
1747
|
"UnsupportedFill",
|
|
@@ -1819,8 +1764,6 @@ var ImportWarning = _zod.z.object({
|
|
|
1819
1764
|
styleName: _zod.z.string().optional(),
|
|
1820
1765
|
unsupportedStyleValueType: _zod.z.string().optional()
|
|
1821
1766
|
});
|
|
1822
|
-
|
|
1823
|
-
// ../model/src/dsm/data-sources/import-summary.ts
|
|
1824
1767
|
var FileStructureStats = _zod.z.object({
|
|
1825
1768
|
frames: zeroNumberByDefault2(),
|
|
1826
1769
|
components: zeroNumberByDefault2(),
|
|
@@ -1865,23 +1808,11 @@ var SourceImportSummary = _zod.z.object({
|
|
|
1865
1808
|
function zeroNumberByDefault2() {
|
|
1866
1809
|
return _zod.z.number().nullish().transform((v) => _nullishCoalesce(v, () => ( 0)));
|
|
1867
1810
|
}
|
|
1868
|
-
|
|
1869
|
-
// ../model/src/dsm/documentation/block-definitions/aux.ts
|
|
1870
|
-
|
|
1871
1811
|
var PageBlockDefinitionAppearance = _zod.z.object({
|
|
1872
1812
|
isBordered: _zod.z.boolean().optional(),
|
|
1873
1813
|
hasBackground: _zod.z.boolean().optional(),
|
|
1874
1814
|
isEditorPresentationDifferent: _zod.z.boolean().optional()
|
|
1875
1815
|
});
|
|
1876
|
-
|
|
1877
|
-
// ../model/src/dsm/documentation/block-definitions/definition.ts
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
// ../model/src/dsm/documentation/block-definitions/item.ts
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
// ../model/src/dsm/documentation/block-definitions/variant.ts
|
|
1884
|
-
|
|
1885
1816
|
var PageBlockDefinitionLayoutType = _zod.z.enum(["Column", "Row"]);
|
|
1886
1817
|
var PageBlockDefinitionLayoutGap = _zod.z.enum(["Small", "Medium", "Large", "None"]);
|
|
1887
1818
|
var PageBlockDefinitionLayoutAlign = _zod.z.enum(["Start", "Center", "End"]);
|
|
@@ -1906,8 +1837,6 @@ var PageBlockDefinitionVariant = _zod.z.object({
|
|
|
1906
1837
|
defaultColumns: _zod.z.number().optional(),
|
|
1907
1838
|
appearance: PageBlockDefinitionAppearance.optional()
|
|
1908
1839
|
});
|
|
1909
|
-
|
|
1910
|
-
// ../model/src/dsm/documentation/block-definitions/item.ts
|
|
1911
1840
|
var PageBlockDefinitionPropertyType = _zod.z.enum([
|
|
1912
1841
|
"RichText",
|
|
1913
1842
|
"MultiRichText",
|
|
@@ -1987,8 +1916,6 @@ var PageBlockDefinitionItem = _zod.z.object({
|
|
|
1987
1916
|
variants: _zod.z.array(PageBlockDefinitionVariant),
|
|
1988
1917
|
defaultVariantKey: _zod.z.string()
|
|
1989
1918
|
});
|
|
1990
|
-
|
|
1991
|
-
// ../model/src/dsm/documentation/block-definitions/definition.ts
|
|
1992
1919
|
var PageBlockCategory = _zod.z.enum([
|
|
1993
1920
|
"Text",
|
|
1994
1921
|
"Layout",
|
|
@@ -2035,9 +1962,6 @@ var PageBlockDefinition = _zod.z.object({
|
|
|
2035
1962
|
}),
|
|
2036
1963
|
appearance: PageBlockDefinitionAppearance.optional()
|
|
2037
1964
|
});
|
|
2038
|
-
|
|
2039
|
-
// ../model/src/dsm/documentation/group.ts
|
|
2040
|
-
|
|
2041
1965
|
var DocumentationPageGroup = _zod.z.object({
|
|
2042
1966
|
type: _zod.z.literal("ElementGroup"),
|
|
2043
1967
|
childType: _zod.z.literal("DocumentationPage"),
|
|
@@ -2053,9 +1977,6 @@ var DocumentationPageGroup = _zod.z.object({
|
|
|
2053
1977
|
createdAt: _zod.z.date(),
|
|
2054
1978
|
updatedAt: _zod.z.date()
|
|
2055
1979
|
});
|
|
2056
|
-
|
|
2057
|
-
// ../model/src/dsm/documentation/page.ts
|
|
2058
|
-
|
|
2059
1980
|
var DocumentationPage = _zod.z.object({
|
|
2060
1981
|
type: _zod.z.literal("DocumentationPage"),
|
|
2061
1982
|
id: _zod.z.string(),
|
|
@@ -2070,12 +1991,6 @@ var DocumentationPage = _zod.z.object({
|
|
|
2070
1991
|
createdAt: _zod.z.date(),
|
|
2071
1992
|
updatedAt: _zod.z.date()
|
|
2072
1993
|
});
|
|
2073
|
-
|
|
2074
|
-
// ../model/src/dsm/design-system.ts
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
// ../model/src/workspace/npm-registry-settings.ts
|
|
2078
|
-
|
|
2079
1994
|
var NpmRegistryAuthType = _zod.z.enum(["Basic", "Bearer", "None", "Custom"]);
|
|
2080
1995
|
var NpmRegistryType = _zod.z.enum(["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]);
|
|
2081
1996
|
var NpmRegistryBasicAuthConfig = _zod.z.object({
|
|
@@ -2110,9 +2025,6 @@ var NpmRegistryConfigBase = _zod.z.object({
|
|
|
2110
2025
|
npmProxyVersion: _zod.z.number().optional()
|
|
2111
2026
|
});
|
|
2112
2027
|
var NpmRegistryConfig = NpmRegistryConfigBase.and(NpmRegistryAuthConfig);
|
|
2113
|
-
|
|
2114
|
-
// ../model/src/workspace/sso-provider.ts
|
|
2115
|
-
|
|
2116
2028
|
var SsoProvider = _zod.z.object({
|
|
2117
2029
|
providerId: _zod.z.string(),
|
|
2118
2030
|
defaultAutoInviteValue: _zod.z.boolean(),
|
|
@@ -2123,38 +2035,20 @@ var SsoProvider = _zod.z.object({
|
|
|
2123
2035
|
emailDomains: _zod.z.array(_zod.z.string()),
|
|
2124
2036
|
metadataXml: _zod.z.string().nullish()
|
|
2125
2037
|
});
|
|
2126
|
-
|
|
2127
|
-
// ../model/src/workspace/user-invite.ts
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
// ../model/src/workspace/workspace-role.ts
|
|
2131
|
-
|
|
2132
2038
|
var WorkspaceRoleSchema = _zod.z.enum(["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest"]);
|
|
2133
2039
|
var WorkspaceRole = WorkspaceRoleSchema.enum;
|
|
2134
|
-
|
|
2135
|
-
// ../model/src/workspace/user-invite.ts
|
|
2136
2040
|
var MAX_MEMBERS_COUNT = 100;
|
|
2137
2041
|
var UserInvite = _zod.z.object({
|
|
2138
2042
|
email: _zod.z.string().email().trim().transform((value) => value.toLowerCase()),
|
|
2139
2043
|
role: WorkspaceRoleSchema
|
|
2140
2044
|
});
|
|
2141
2045
|
var UserInvites = _zod.z.array(UserInvite).max(MAX_MEMBERS_COUNT);
|
|
2142
|
-
|
|
2143
|
-
// ../model/src/workspace/workspace-context.ts
|
|
2144
|
-
|
|
2145
2046
|
var WorkspaceContext = _zod.z.object({
|
|
2146
2047
|
workspaceId: _zod.z.string(),
|
|
2147
2048
|
product: ProductCodeSchema,
|
|
2148
2049
|
publicDesignSystem: _zod.z.boolean().optional()
|
|
2149
2050
|
});
|
|
2150
|
-
|
|
2151
|
-
// ../model/src/workspace/workspace-create.ts
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
// ../model/src/utils/validation.ts
|
|
2155
2051
|
var slugRegex = /^[a-z0-9][a-z0-9-]*[a-z0-9]$/;
|
|
2156
|
-
|
|
2157
|
-
// ../model/src/workspace/workspace-create.ts
|
|
2158
2052
|
var WORKSPACE_NAME_MIN_LENGTH = 2;
|
|
2159
2053
|
var WORKSPACE_NAME_MAX_LENGTH = 64;
|
|
2160
2054
|
var HANDLE_MIN_LENGTH = 2;
|
|
@@ -2168,9 +2062,6 @@ var CreateWorkspaceInput = _zod.z.object({
|
|
|
2168
2062
|
invites: UserInvites.optional(),
|
|
2169
2063
|
promoCode: _zod.z.string().optional()
|
|
2170
2064
|
});
|
|
2171
|
-
|
|
2172
|
-
// ../model/src/workspace/workspace-invitations.ts
|
|
2173
|
-
|
|
2174
2065
|
var WorkspaceInvitation = _zod.z.object({
|
|
2175
2066
|
id: _zod.z.string(),
|
|
2176
2067
|
email: _zod.z.string().email(),
|
|
@@ -2180,18 +2071,12 @@ var WorkspaceInvitation = _zod.z.object({
|
|
|
2180
2071
|
workspaceId: _zod.z.string(),
|
|
2181
2072
|
invitedBy: _zod.z.string()
|
|
2182
2073
|
});
|
|
2183
|
-
|
|
2184
|
-
// ../model/src/workspace/workspace-membership.ts
|
|
2185
|
-
|
|
2186
2074
|
var WorkspaceMembership = _zod.z.object({
|
|
2187
2075
|
id: _zod.z.string(),
|
|
2188
2076
|
userId: _zod.z.string(),
|
|
2189
2077
|
workspaceId: _zod.z.string(),
|
|
2190
2078
|
workspaceRole: _zod.z.nativeEnum(WorkspaceRole)
|
|
2191
2079
|
});
|
|
2192
|
-
|
|
2193
|
-
// ../model/src/workspace/workspace.ts
|
|
2194
|
-
|
|
2195
2080
|
var WorkspaceIpWhitelistEntry = _zod.z.object({
|
|
2196
2081
|
isEnabled: _zod.z.boolean(),
|
|
2197
2082
|
name: _zod.z.string(),
|
|
@@ -2222,8 +2107,6 @@ var WorkspaceWithDesignSystems = _zod.z.object({
|
|
|
2222
2107
|
workspace: Workspace,
|
|
2223
2108
|
designSystems: _zod.z.array(DesignSystem)
|
|
2224
2109
|
});
|
|
2225
|
-
|
|
2226
|
-
// ../model/src/dsm/design-system.ts
|
|
2227
2110
|
var DesignSystemSwitcher = _zod.z.object({
|
|
2228
2111
|
isEnabled: _zod.z.boolean(),
|
|
2229
2112
|
designSystemIds: _zod.z.string()
|
|
@@ -2249,9 +2132,6 @@ var DesignSystemWithWorkspace = _zod.z.object({
|
|
|
2249
2132
|
designSystem: DesignSystem,
|
|
2250
2133
|
workspace: Workspace
|
|
2251
2134
|
});
|
|
2252
|
-
|
|
2253
|
-
// ../model/src/dsm/desing-system-create.ts
|
|
2254
|
-
|
|
2255
2135
|
var DS_NAME_MIN_LENGTH = 2;
|
|
2256
2136
|
var DS_NAME_MAX_LENGTH = 64;
|
|
2257
2137
|
var DS_DESC_MIN_LENGTH = 2;
|
|
@@ -2268,9 +2148,6 @@ var DesignSystemCreateInput = _zod.z.object({
|
|
|
2268
2148
|
docUserSlug: _zod.z.string().nullish().optional(),
|
|
2269
2149
|
source: _zod.z.array(_zod.z.string()).optional()
|
|
2270
2150
|
});
|
|
2271
|
-
|
|
2272
|
-
// ../model/src/dsm/desing-system-update.ts
|
|
2273
|
-
|
|
2274
2151
|
var DS_NAME_MIN_LENGTH2 = 2;
|
|
2275
2152
|
var DS_NAME_MAX_LENGTH2 = 64;
|
|
2276
2153
|
var DS_DESC_MIN_LENGTH2 = 2;
|
|
@@ -2290,17 +2167,12 @@ var DesignSystemUpdateInput = _zod.z.object({
|
|
|
2290
2167
|
description: _zod.z.string().min(DS_DESC_MIN_LENGTH2).max(DS_DESC_MAX_LENGTH2).trim().optional(),
|
|
2291
2168
|
docExporterId: _zod.z.string().optional()
|
|
2292
2169
|
});
|
|
2293
|
-
|
|
2294
|
-
// ../model/src/dsm/published-doc-page.ts
|
|
2295
2170
|
var SHORT_PERSISTENT_ID_LENGTH = 8;
|
|
2296
2171
|
function tryParseShortPersistentId(url = "/") {
|
|
2297
2172
|
const lastUrlPart = url.split("/").pop() || "";
|
|
2298
2173
|
const shortPersistentId = _optionalChain([lastUrlPart, 'access', _2 => _2.split, 'call', _3 => _3("-"), 'access', _4 => _4.pop, 'call', _5 => _5(), 'optionalAccess', _6 => _6.replaceAll, 'call', _7 => _7(".html", "")]) || null;
|
|
2299
2174
|
return _optionalChain([shortPersistentId, 'optionalAccess', _8 => _8.length]) === SHORT_PERSISTENT_ID_LENGTH ? shortPersistentId : null;
|
|
2300
2175
|
}
|
|
2301
|
-
|
|
2302
|
-
// ../model/src/dsm/published-doc.ts
|
|
2303
|
-
|
|
2304
2176
|
var publishedDocEnvironments = ["Live", "Preview"];
|
|
2305
2177
|
var PublishedDocEnvironment = _zod.z.enum(publishedDocEnvironments);
|
|
2306
2178
|
var PublishedDocsChecksums = _zod.z.record(_zod.z.string());
|
|
@@ -2321,9 +2193,6 @@ var PublishedDoc = _zod.z.object({
|
|
|
2321
2193
|
usesLocalizations: _zod.z.boolean(),
|
|
2322
2194
|
wasPublishedWithLocalizations: _zod.z.boolean()
|
|
2323
2195
|
});
|
|
2324
|
-
|
|
2325
|
-
// ../model/src/codegen/export-jobs.ts
|
|
2326
|
-
|
|
2327
2196
|
var ExportJobStatus = _zod.z.union([
|
|
2328
2197
|
_zod.z.literal("Success"),
|
|
2329
2198
|
_zod.z.literal("InProgress"),
|
|
@@ -2343,25 +2212,13 @@ var ExportJob = _zod.z.object({
|
|
|
2343
2212
|
environment: PublishedDocEnvironment,
|
|
2344
2213
|
finishedAt: _zod.z.date().nullish()
|
|
2345
2214
|
});
|
|
2346
|
-
|
|
2347
|
-
// ../model/src/codegen/exporter-workspace-membership-role.ts
|
|
2348
|
-
|
|
2349
2215
|
var ExporterWorkspaceMembershipRole = _zod.z.enum(["Owner", "OwnerArchived", "User"]);
|
|
2350
|
-
|
|
2351
|
-
// ../model/src/codegen/exporter-workspace-membership.ts
|
|
2352
|
-
|
|
2353
2216
|
var ExporterWorkspaceMembership = _zod.z.object({
|
|
2354
2217
|
id: _zod.z.string(),
|
|
2355
2218
|
workspaceId: _zod.z.string(),
|
|
2356
2219
|
exporterId: _zod.z.string(),
|
|
2357
2220
|
role: ExporterWorkspaceMembershipRole
|
|
2358
2221
|
});
|
|
2359
|
-
|
|
2360
|
-
// ../model/src/codegen/exporter.ts
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
// ../model/src/codegen/git-providers.ts
|
|
2364
|
-
|
|
2365
2222
|
var GitProviderNames = /* @__PURE__ */ ((GitProviderNames2) => {
|
|
2366
2223
|
GitProviderNames2["Azure"] = "azure";
|
|
2367
2224
|
GitProviderNames2["Github"] = "github";
|
|
@@ -2370,9 +2227,6 @@ var GitProviderNames = /* @__PURE__ */ ((GitProviderNames2) => {
|
|
|
2370
2227
|
return GitProviderNames2;
|
|
2371
2228
|
})(GitProviderNames || {});
|
|
2372
2229
|
var GitProvider = _zod.z.nativeEnum(GitProviderNames);
|
|
2373
|
-
|
|
2374
|
-
// ../model/src/codegen/pulsar.ts
|
|
2375
|
-
|
|
2376
2230
|
var PulsarContributionVariant = _zod.z.object({
|
|
2377
2231
|
key: _zod.z.string(),
|
|
2378
2232
|
name: _zod.z.string(),
|
|
@@ -2415,8 +2269,6 @@ var PulsarContributionBlock = _zod.z.object({
|
|
|
2415
2269
|
properties: _zod.z.array(BasePulsarProperty)
|
|
2416
2270
|
});
|
|
2417
2271
|
var PulsarContributionConfigurationProperty = BasePulsarProperty.extend({ category: _zod.z.string() });
|
|
2418
|
-
|
|
2419
|
-
// ../model/src/codegen/exporter.ts
|
|
2420
2272
|
var ExporterType = _zod.z.enum(["code", "documentation"]);
|
|
2421
2273
|
var ExporterSource = _zod.z.enum(["git", "upload"]);
|
|
2422
2274
|
var ExporterTag = _zod.z.string().regex(/^[0-9a-zA-Z]+(\s[0-9a-zA-Z]+)*$/);
|
|
@@ -2451,9 +2303,6 @@ var Exporter = _zod.z.object({
|
|
|
2451
2303
|
exporterType: ExporterType.default("code"),
|
|
2452
2304
|
storagePath: _zod.z.string().default("")
|
|
2453
2305
|
});
|
|
2454
|
-
|
|
2455
|
-
// ../model/src/custom-domains/custom-domains.ts
|
|
2456
|
-
|
|
2457
2306
|
var CustomDomain = _zod.z.object({
|
|
2458
2307
|
id: _zod.z.string(),
|
|
2459
2308
|
designSystemId: _zod.z.string(),
|
|
@@ -2463,12 +2312,6 @@ var CustomDomain = _zod.z.object({
|
|
|
2463
2312
|
error: _zod.z.string().nullish(),
|
|
2464
2313
|
errorCode: _zod.z.string().nullish()
|
|
2465
2314
|
});
|
|
2466
|
-
|
|
2467
|
-
// ../model/src/docs-server/session.ts
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
// ../model/src/users/linked-integrations.ts
|
|
2471
|
-
|
|
2472
2315
|
var IntegrationAuthType = _zod.z.union([_zod.z.literal("OAuth2"), _zod.z.literal("PAT")]);
|
|
2473
2316
|
var ExternalServiceType = _zod.z.union([
|
|
2474
2317
|
_zod.z.literal("figma"),
|
|
@@ -2492,16 +2335,10 @@ var UserLinkedIntegrations = _zod.z.object({
|
|
|
2492
2335
|
gitlab: IntegrationUserInfo.array().optional(),
|
|
2493
2336
|
bitbucket: IntegrationUserInfo.array().optional()
|
|
2494
2337
|
});
|
|
2495
|
-
|
|
2496
|
-
// ../model/src/users/user-identity.ts
|
|
2497
|
-
|
|
2498
2338
|
var UserIdentity = _zod.z.object({
|
|
2499
2339
|
id: _zod.z.string(),
|
|
2500
2340
|
userId: _zod.z.string()
|
|
2501
2341
|
});
|
|
2502
|
-
|
|
2503
|
-
// ../model/src/users/user-profile.ts
|
|
2504
|
-
|
|
2505
2342
|
var UserOnboardingDepartment = _zod.z.enum(["Design", "Engineering", "Brand", "Other"]);
|
|
2506
2343
|
var UserOnboardingJobLevel = _zod.z.enum(["Executive", "Manager", "IndividualContributor", "Other"]);
|
|
2507
2344
|
var UserOnboarding = _zod.z.object({
|
|
@@ -2519,9 +2356,6 @@ var UserProfile = _zod.z.object({
|
|
|
2519
2356
|
nickname: _zod.z.string().optional(),
|
|
2520
2357
|
onboarding: UserOnboarding.optional()
|
|
2521
2358
|
});
|
|
2522
|
-
|
|
2523
|
-
// ../model/src/users/user.ts
|
|
2524
|
-
|
|
2525
2359
|
var User = _zod.z.object({
|
|
2526
2360
|
id: _zod.z.string(),
|
|
2527
2361
|
email: _zod.z.string(),
|
|
@@ -2533,8 +2367,6 @@ var User = _zod.z.object({
|
|
|
2533
2367
|
loggedOutAt: _zod.z.date().optional(),
|
|
2534
2368
|
isProtected: _zod.z.boolean()
|
|
2535
2369
|
});
|
|
2536
|
-
|
|
2537
|
-
// ../model/src/docs-server/session.ts
|
|
2538
2370
|
var NpmProxyToken = _zod.z.object({
|
|
2539
2371
|
access: _zod.z.string(),
|
|
2540
2372
|
expiresAt: _zod.z.number()
|
|
@@ -2557,9 +2389,6 @@ var UserSession = _zod.z.object({
|
|
|
2557
2389
|
session: Session,
|
|
2558
2390
|
user: User.nullable()
|
|
2559
2391
|
});
|
|
2560
|
-
|
|
2561
|
-
// ../model/src/feature-flags/feature-flags.ts
|
|
2562
|
-
|
|
2563
2392
|
var FlaggedFeature = _zod.z.enum(["FigmaImporterV2"]);
|
|
2564
2393
|
var FeatureFlagMap = _zod.z.record(FlaggedFeature, _zod.z.boolean());
|
|
2565
2394
|
var FeatureFlag = _zod.z.object({
|
|
@@ -2568,12 +2397,6 @@ var FeatureFlag = _zod.z.object({
|
|
|
2568
2397
|
createdAt: _zod.z.date(),
|
|
2569
2398
|
enabled: _zod.z.boolean()
|
|
2570
2399
|
});
|
|
2571
|
-
|
|
2572
|
-
// ../model/src/integrations/external-oauth-request.ts
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
// ../model/src/integrations/oauth-providers.ts
|
|
2576
|
-
|
|
2577
2400
|
var OAuthProviderNames = /* @__PURE__ */ ((OAuthProviderNames2) => {
|
|
2578
2401
|
OAuthProviderNames2["Figma"] = "figma";
|
|
2579
2402
|
OAuthProviderNames2["Azure"] = "azure";
|
|
@@ -2584,8 +2407,6 @@ var OAuthProviderNames = /* @__PURE__ */ ((OAuthProviderNames2) => {
|
|
|
2584
2407
|
})(OAuthProviderNames || {});
|
|
2585
2408
|
var OAuthProviderSchema = _zod.z.nativeEnum(OAuthProviderNames);
|
|
2586
2409
|
var OAuthProvider = OAuthProviderSchema.enum;
|
|
2587
|
-
|
|
2588
|
-
// ../model/src/integrations/external-oauth-request.ts
|
|
2589
2410
|
var ExternalOAuthRequest = _zod.z.object({
|
|
2590
2411
|
id: _zod.z.string(),
|
|
2591
2412
|
provider: OAuthProviderSchema,
|
|
@@ -2593,9 +2414,6 @@ var ExternalOAuthRequest = _zod.z.object({
|
|
|
2593
2414
|
state: _zod.z.string(),
|
|
2594
2415
|
createdAt: _zod.z.date()
|
|
2595
2416
|
});
|
|
2596
|
-
|
|
2597
|
-
// ../model/src/integrations/oauth-token.ts
|
|
2598
|
-
|
|
2599
2417
|
var IntegrationTokenSchema = _zod.z.object({
|
|
2600
2418
|
id: _zod.z.string(),
|
|
2601
2419
|
provider: OAuthProviderSchema,
|
|
@@ -2606,24 +2424,15 @@ var IntegrationTokenSchema = _zod.z.object({
|
|
|
2606
2424
|
expiresAt: _zod.z.date(),
|
|
2607
2425
|
externalUserId: _zod.z.string().nullish()
|
|
2608
2426
|
});
|
|
2609
|
-
|
|
2610
|
-
// ../model/src/multiplayer/design-system-version-room.ts
|
|
2611
|
-
|
|
2612
2427
|
var DesignSystemVersionRoom = Entity.extend({
|
|
2613
2428
|
designSystemVersionId: _zod.z.string(),
|
|
2614
2429
|
liveblocksId: _zod.z.string()
|
|
2615
2430
|
});
|
|
2616
|
-
|
|
2617
|
-
// ../model/src/multiplayer/documentation-page-room.ts
|
|
2618
|
-
|
|
2619
2431
|
var DocumentationPageRoom = Entity.extend({
|
|
2620
2432
|
designSystemVersionId: _zod.z.string(),
|
|
2621
2433
|
documentationPageId: _zod.z.string(),
|
|
2622
2434
|
liveblocksId: _zod.z.string()
|
|
2623
2435
|
});
|
|
2624
|
-
|
|
2625
|
-
// ../model/src/npm/npm-package.ts
|
|
2626
|
-
|
|
2627
2436
|
var AnyRecord = _zod.z.record(_zod.z.any());
|
|
2628
2437
|
var NpmPackageVersionDist = AnyRecord.and(
|
|
2629
2438
|
_zod.z.object({
|
|
@@ -2645,15 +2454,9 @@ var NpmPackage = AnyRecord.and(
|
|
|
2645
2454
|
versions: _zod.z.record(NpmPackageVersion)
|
|
2646
2455
|
})
|
|
2647
2456
|
);
|
|
2648
|
-
|
|
2649
|
-
// ../model/src/npm/npm-proxy-token-payload.ts
|
|
2650
|
-
|
|
2651
2457
|
var NpmProxyTokenPayload = _zod.z.object({
|
|
2652
2458
|
npmProxyRegistryConfigId: _zod.z.string()
|
|
2653
2459
|
});
|
|
2654
|
-
|
|
2655
|
-
// ../model/src/tokens/personal-access-token.ts
|
|
2656
|
-
|
|
2657
2460
|
var PersonalAccessToken = _zod.z.object({
|
|
2658
2461
|
id: _zod.z.string(),
|
|
2659
2462
|
userId: _zod.z.string(),
|
|
@@ -2666,9 +2469,6 @@ var PersonalAccessToken = _zod.z.object({
|
|
|
2666
2469
|
expireAt: _zod.z.date().optional(),
|
|
2667
2470
|
scope: _zod.z.string().optional()
|
|
2668
2471
|
});
|
|
2669
|
-
|
|
2670
|
-
// ../model/src/utils/content-loader-instruction.ts
|
|
2671
|
-
|
|
2672
2472
|
var ContentLoadInstruction = _zod.z.object({
|
|
2673
2473
|
from: _zod.z.string(),
|
|
2674
2474
|
to: _zod.z.string(),
|
|
@@ -3974,17 +3774,17 @@ var BlockParsingUtils = {
|
|
|
3974
3774
|
},
|
|
3975
3775
|
richTextPropertyValue(item, propertyKey) {
|
|
3976
3776
|
const objectValue = this.objectPropertyValue(item, propertyKey);
|
|
3977
|
-
const richText =
|
|
3777
|
+
const richText = PageBlockItemRichTextValue.parse(objectValue);
|
|
3978
3778
|
return richText;
|
|
3979
3779
|
},
|
|
3980
3780
|
multiRichTextPropertyValue(item, propertyKey) {
|
|
3981
3781
|
const objectValue = this.objectPropertyValue(item, propertyKey);
|
|
3982
|
-
const richText =
|
|
3782
|
+
const richText = PageBlockItemMultiRichTextValue.parse(objectValue);
|
|
3983
3783
|
return richText;
|
|
3984
3784
|
},
|
|
3985
3785
|
embedPropertyValue(item, propertyKey) {
|
|
3986
3786
|
const objectValue = this.objectPropertyValue(item, propertyKey);
|
|
3987
|
-
const embed =
|
|
3787
|
+
const embed = PageBlockItemEmbedValue.parse(objectValue);
|
|
3988
3788
|
return embed;
|
|
3989
3789
|
},
|
|
3990
3790
|
objectPropertyValue(item, propertyKey) {
|
|
@@ -5919,7 +5719,7 @@ function parseAsCustomBlock(prosemirrorNode, definition) {
|
|
|
5919
5719
|
console.error("Block `items` property must be a json array");
|
|
5920
5720
|
return null;
|
|
5921
5721
|
}
|
|
5922
|
-
const parsedItems = itemsJson.map((i) => parseItem(i, definition));
|
|
5722
|
+
const parsedItems = itemsJson.map((i) => parseItem(i, definition)).filter(nonNullFilter2);
|
|
5923
5723
|
return {
|
|
5924
5724
|
id,
|
|
5925
5725
|
data: {
|
|
@@ -5939,22 +5739,13 @@ function parseItem(rawItem, definition) {
|
|
|
5939
5739
|
for (const property of definition.item.properties) {
|
|
5940
5740
|
const value = parsedItem.data.props[property.id];
|
|
5941
5741
|
if (!value) {
|
|
5942
|
-
|
|
5742
|
+
continue;
|
|
5943
5743
|
}
|
|
5944
|
-
|
|
5945
|
-
|
|
5946
|
-
|
|
5947
|
-
|
|
5948
|
-
case "EmbedURL":
|
|
5949
|
-
PageBlockItemEmbedPropertyValue.parse(value);
|
|
5950
|
-
break;
|
|
5951
|
-
case "Image":
|
|
5952
|
-
PageBlockItemImageValue.parse(value);
|
|
5953
|
-
break;
|
|
5954
|
-
default:
|
|
5955
|
-
return null;
|
|
5744
|
+
const valueSchema = valueSchemaForPropertyType(property.type);
|
|
5745
|
+
const validationResult = valueSchema.safeParse(value);
|
|
5746
|
+
if (validationResult.success) {
|
|
5747
|
+
sanitizedProps[property.id] = validationResult.data;
|
|
5956
5748
|
}
|
|
5957
|
-
sanitizedProps[property.id] = value;
|
|
5958
5749
|
}
|
|
5959
5750
|
return {
|
|
5960
5751
|
id: parsedItem.data.id,
|
|
@@ -5962,6 +5753,58 @@ function parseItem(rawItem, definition) {
|
|
|
5962
5753
|
props: sanitizedProps
|
|
5963
5754
|
};
|
|
5964
5755
|
}
|
|
5756
|
+
function valueSchemaForPropertyType(type) {
|
|
5757
|
+
switch (type) {
|
|
5758
|
+
case "RichText":
|
|
5759
|
+
return PageBlockItemRichTextValue;
|
|
5760
|
+
case "MultiRichText":
|
|
5761
|
+
return PageBlockItemMultiRichTextValue;
|
|
5762
|
+
case "Text":
|
|
5763
|
+
return PageBlockItemTextValue;
|
|
5764
|
+
case "Boolean":
|
|
5765
|
+
return PageBlockItemBooleanValue;
|
|
5766
|
+
case "Number":
|
|
5767
|
+
return PageBlockItemNumberValue;
|
|
5768
|
+
case "SingleSelect":
|
|
5769
|
+
return PageBlockItemSingleSelectValue;
|
|
5770
|
+
case "MultiSelect":
|
|
5771
|
+
return PageBlockItemMultiSelectValue;
|
|
5772
|
+
case "Image":
|
|
5773
|
+
return PageBlockItemImageValue;
|
|
5774
|
+
case "Token":
|
|
5775
|
+
return PageBlockItemTokenValue;
|
|
5776
|
+
case "TokenType":
|
|
5777
|
+
return PageBlockItemTokenTypeValue;
|
|
5778
|
+
case "TokenProperty":
|
|
5779
|
+
return PageBlockItemTokenPropertyValue;
|
|
5780
|
+
case "Component":
|
|
5781
|
+
return PageBlockItemComponentValue;
|
|
5782
|
+
case "ComponentProperty":
|
|
5783
|
+
return PageBlockItemComponentPropertyValue;
|
|
5784
|
+
case "Asset":
|
|
5785
|
+
return PageBlockItemAssetValue;
|
|
5786
|
+
case "AssetProperty":
|
|
5787
|
+
return PageBlockItemAssetPropertyValue;
|
|
5788
|
+
case "EmbedURL":
|
|
5789
|
+
return PageBlockItemEmbedValue;
|
|
5790
|
+
case "URL":
|
|
5791
|
+
return PageBlockItemUrlValue;
|
|
5792
|
+
case "Markdown":
|
|
5793
|
+
return PageBlockItemMarkdownValue;
|
|
5794
|
+
case "Code":
|
|
5795
|
+
return PageBlockItemCodeValue;
|
|
5796
|
+
case "CodeSandbox":
|
|
5797
|
+
return PageBlockItemSandboxValue;
|
|
5798
|
+
case "Table":
|
|
5799
|
+
return PageBlockItemTableValue;
|
|
5800
|
+
case "Divider":
|
|
5801
|
+
return PageBlockItemDividerValue;
|
|
5802
|
+
case "Storybook":
|
|
5803
|
+
return PageBlockItemStorybookValue;
|
|
5804
|
+
case "Color":
|
|
5805
|
+
return PageBlockItemColorValue;
|
|
5806
|
+
}
|
|
5807
|
+
}
|
|
5965
5808
|
function parseProsemirrorBlockAttribute(prosemirrorNode, attributeName) {
|
|
5966
5809
|
const attributeValue = parseProsemirrorOptionalBlockAttribute(prosemirrorNode, attributeName);
|
|
5967
5810
|
if (!attributeValue) {
|
|
@@ -6411,5 +6254,24 @@ function mapByUnique(items, keyFn) {
|
|
|
6411
6254
|
|
|
6412
6255
|
|
|
6413
6256
|
|
|
6414
|
-
exports.Address = Address; exports.Asset = Asset; exports.AssetFontProperties = AssetFontProperties; exports.AssetImportModelInput = AssetImportModelInput; exports.AssetOrigin = AssetOrigin; exports.AssetProperties = AssetProperties; exports.AssetReference = AssetReference; exports.AssetScope = AssetScope; exports.AssetType = AssetType; exports.AssetValue = AssetValue; exports.AuthTokens = AuthTokens; exports.BasePulsarProperty = BasePulsarProperty; exports.BillingDetails = BillingDetails; exports.BillingIntervalSchema = BillingIntervalSchema; exports.BillingType = BillingType; exports.BillingTypeSchema = BillingTypeSchema; exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.BlurTokenData = BlurTokenData; exports.BlurType = BlurType; exports.BlurValue = BlurValue; exports.BorderPosition = BorderPosition; exports.BorderRadiusTokenData = BorderRadiusTokenData; exports.BorderRadiusUnit = BorderRadiusUnit; exports.BorderRadiusValue = BorderRadiusValue; exports.BorderStyle = BorderStyle; exports.BorderTokenData = BorderTokenData; exports.BorderValue = BorderValue; exports.BorderWidthTokenData = BorderWidthTokenData; exports.BorderWidthUnit = BorderWidthUnit; exports.BorderWidthValue = BorderWidthValue; exports.BrandedElementGroup = BrandedElementGroup; exports.CardSchema = CardSchema; exports.ChangedImportedFigmaSourceData = ChangedImportedFigmaSourceData; exports.ColorTokenData = ColorTokenData; exports.ColorTokenInlineData = ColorTokenInlineData; exports.ColorValue = ColorValue; exports.Component = Component; exports.ComponentElementData = ComponentElementData; exports.ComponentImportModel = ComponentImportModel; exports.ComponentImportModelInput = ComponentImportModelInput; exports.ComponentOrigin = ComponentOrigin; exports.ComponentOriginPart = ComponentOriginPart; exports.ContentLoadInstruction = ContentLoadInstruction; exports.ContentLoaderPayload = ContentLoaderPayload; exports.CreateDesignToken = CreateDesignToken; exports.CreateWorkspaceInput = CreateWorkspaceInput; exports.CustomDomain = CustomDomain; exports.Customer = Customer; exports.DataSourceAutoImportMode = DataSourceAutoImportMode; exports.DataSourceFigmaFileData = DataSourceFigmaFileData; exports.DataSourceFigmaFileVersionData = DataSourceFigmaFileVersionData; exports.DataSourceFigmaImportMetadata = DataSourceFigmaImportMetadata; exports.DataSourceFigmaRemote = DataSourceFigmaRemote; exports.DataSourceFigmaScope = DataSourceFigmaScope; exports.DataSourceFigmaState = DataSourceFigmaState; exports.DataSourceImportModel = DataSourceImportModel; exports.DataSourceRemote = DataSourceRemote; exports.DataSourceRemoteType = DataSourceRemoteType; exports.DataSourceStats = DataSourceStats; exports.DataSourceTokenStudioRemote = DataSourceTokenStudioRemote; exports.DataSourceUploadImportMetadata = DataSourceUploadImportMetadata; exports.DataSourceUploadRemote = DataSourceUploadRemote; exports.DataSourceUploadRemoteSource = DataSourceUploadRemoteSource; exports.DataSourceVersion = DataSourceVersion; exports.DesignElement = DesignElement; exports.DesignElementBase = DesignElementBase; exports.DesignElementBrandedPart = DesignElementBrandedPart; exports.DesignElementCategory = DesignElementCategory; exports.DesignElementGroupableBase = DesignElementGroupableBase; exports.DesignElementGroupablePart = DesignElementGroupablePart; exports.DesignElementGroupableRequiredPart = DesignElementGroupableRequiredPart; exports.DesignElementImportedBase = DesignElementImportedBase; exports.DesignElementOrigin = DesignElementOrigin; exports.DesignElementSlugPart = DesignElementSlugPart; exports.DesignElementType = DesignElementType; exports.DesignSystem = DesignSystem; exports.DesignSystemCreateInput = DesignSystemCreateInput; exports.DesignSystemElementExportProps = DesignSystemElementExportProps; exports.DesignSystemSwitcher = DesignSystemSwitcher; exports.DesignSystemUpdateInput = DesignSystemUpdateInput; exports.DesignSystemVersionRoom = DesignSystemVersionRoom; exports.DesignSystemWithWorkspace = DesignSystemWithWorkspace; exports.DesignToken = DesignToken; exports.DesignTokenImportModel = DesignTokenImportModel; exports.DesignTokenImportModelBase = DesignTokenImportModelBase; exports.DesignTokenImportModelInput = DesignTokenImportModelInput; exports.DesignTokenImportModelInputBase = DesignTokenImportModelInputBase; exports.DesignTokenOrigin = DesignTokenOrigin; exports.DesignTokenOriginPart = DesignTokenOriginPart; exports.DesignTokenType = DesignTokenType; exports.DesignTokenTypedData = DesignTokenTypedData; exports.DimensionTokenData = DimensionTokenData; exports.DimensionUnit = DimensionUnit; exports.DimensionValue = DimensionValue; exports.DocumentationGroupBehavior = DocumentationGroupBehavior; exports.DocumentationGroupDTO = DocumentationGroupDTO; exports.DocumentationItemConfiguration = DocumentationItemConfiguration; exports.DocumentationPage = DocumentationPage; exports.DocumentationPageDTOV1 = DocumentationPageDTOV1; exports.DocumentationPageDataV1 = DocumentationPageDataV1; exports.DocumentationPageDataV2 = DocumentationPageDataV2; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageElementDataV1 = DocumentationPageElementDataV1; exports.DocumentationPageElementDataV2 = DocumentationPageElementDataV2; exports.DocumentationPageGroup = DocumentationPageGroup; exports.DocumentationPageRoom = DocumentationPageRoom; exports.DocumentationPageV1 = DocumentationPageV1; exports.DocumentationPageV2 = DocumentationPageV2; exports.DurationTokenData = DurationTokenData; exports.DurationUnit = DurationUnit; exports.DurationValue = DurationValue; exports.ElementGroup = ElementGroup; exports.ElementGroupData = ElementGroupData; exports.ElementGroupElementData = ElementGroupElementData; exports.ElementPropertyDefinition = ElementPropertyDefinition; exports.ElementPropertyDefinitionOption = ElementPropertyDefinitionOption; exports.ElementPropertyLinkType = ElementPropertyLinkType; exports.ElementPropertyTargetType = ElementPropertyTargetType; exports.ElementPropertyType = ElementPropertyType; exports.ElementPropertyValue = ElementPropertyValue; exports.Entity = Entity; exports.ExportJob = ExportJob; exports.ExportJobStatus = ExportJobStatus; exports.Exporter = Exporter; exports.ExporterDetails = ExporterDetails; exports.ExporterSource = ExporterSource; exports.ExporterTag = ExporterTag; exports.ExporterType = ExporterType; exports.ExporterWorkspaceMembership = ExporterWorkspaceMembership; exports.ExporterWorkspaceMembershipRole = ExporterWorkspaceMembershipRole; exports.ExternalOAuthRequest = ExternalOAuthRequest; exports.ExternalServiceType = ExternalServiceType; exports.FeatureFlag = FeatureFlag; exports.FeatureFlagMap = FeatureFlagMap; exports.FeaturesSummary = FeaturesSummary; exports.FigmaFileAccessData = FigmaFileAccessData; exports.FigmaFileDownloadScope = FigmaFileDownloadScope; exports.FigmaFileStructure = FigmaFileStructure; exports.FigmaFileStructureData = FigmaFileStructureData; exports.FigmaFileStructureElementData = FigmaFileStructureElementData; exports.FigmaFileStructureImportModel = FigmaFileStructureImportModel; exports.FigmaFileStructureImportModelInput = FigmaFileStructureImportModelInput; exports.FigmaFileStructureNode = FigmaFileStructureNode; exports.FigmaFileStructureNodeBase = FigmaFileStructureNodeBase; exports.FigmaFileStructureNodeImportModel = FigmaFileStructureNodeImportModel; exports.FigmaFileStructureNodeType = FigmaFileStructureNodeType; exports.FigmaFileStructureOrigin = FigmaFileStructureOrigin; exports.FigmaFileStructureStatistics = FigmaFileStructureStatistics; exports.FigmaImportBaseContext = FigmaImportBaseContext; exports.FigmaImportContextWithDownloadScopes = FigmaImportContextWithDownloadScopes; exports.FigmaNodeReference = FigmaNodeReference; exports.FigmaNodeReferenceData = FigmaNodeReferenceData; exports.FigmaNodeReferenceElementData = FigmaNodeReferenceElementData; exports.FigmaPngRenderImportModel = FigmaPngRenderImportModel; exports.FigmaRenderFormat = FigmaRenderFormat; exports.FigmaRenderImportModel = FigmaRenderImportModel; exports.FigmaSvgRenderImportModel = FigmaSvgRenderImportModel; exports.FileStructureStats = FileStructureStats; exports.FlaggedFeature = FlaggedFeature; exports.FontFamilyTokenData = FontFamilyTokenData; exports.FontFamilyValue = FontFamilyValue; exports.FontSizeTokenData = FontSizeTokenData; exports.FontSizeUnit = FontSizeUnit; exports.FontSizeValue = FontSizeValue; exports.FontWeightTokenData = FontWeightTokenData; exports.FontWeightValue = FontWeightValue; exports.GetBlockDefinitionsResponse = GetBlockDefinitionsResponse; exports.GitProvider = GitProvider; exports.GitProviderNames = GitProviderNames; exports.GradientLayerData = GradientLayerData; exports.GradientLayerValue = GradientLayerValue; exports.GradientStop = GradientStop; exports.GradientTokenData = GradientTokenData; exports.GradientTokenValue = GradientTokenValue; exports.GradientType = GradientType; exports.HANDLE_MAX_LENGTH = HANDLE_MAX_LENGTH; exports.HANDLE_MIN_LENGTH = HANDLE_MIN_LENGTH; exports.ImageImportModel = ImageImportModel; exports.ImageImportModelType = ImageImportModelType; exports.ImportFunctionInput = ImportFunctionInput; exports.ImportJob = ImportJob; exports.ImportJobOperation = ImportJobOperation; exports.ImportJobState = ImportJobState; exports.ImportModelBase = ImportModelBase; exports.ImportModelCollection = ImportModelCollection; exports.ImportModelInputBase = ImportModelInputBase; exports.ImportModelInputCollection = ImportModelInputCollection; exports.ImportWarning = ImportWarning; exports.ImportWarningType = ImportWarningType; exports.ImportedFigmaSourceData = ImportedFigmaSourceData; exports.IntegrationAuthType = IntegrationAuthType; exports.IntegrationTokenSchema = IntegrationTokenSchema; exports.IntegrationUserInfo = IntegrationUserInfo; exports.InternalStatus = InternalStatus; exports.InternalStatusSchema = InternalStatusSchema; exports.InvoiceCouponSchema = InvoiceCouponSchema; exports.InvoiceLineSchema = InvoiceLineSchema; exports.InvoiceSchema = InvoiceSchema; exports.LetterSpacingTokenData = LetterSpacingTokenData; exports.LetterSpacingUnit = LetterSpacingUnit; exports.LetterSpacingValue = LetterSpacingValue; exports.LineHeightTokenData = LineHeightTokenData; exports.LineHeightUnit = LineHeightUnit; exports.LineHeightValue = LineHeightValue; exports.MAX_MEMBERS_COUNT = MAX_MEMBERS_COUNT; exports.NpmPackage = NpmPackage; exports.NpmProxyToken = NpmProxyToken; exports.NpmProxyTokenPayload = NpmProxyTokenPayload; exports.NpmRegistrCustomAuthConfig = NpmRegistrCustomAuthConfig; exports.NpmRegistryAuthConfig = NpmRegistryAuthConfig; exports.NpmRegistryAuthType = NpmRegistryAuthType; exports.NpmRegistryBasicAuthConfig = NpmRegistryBasicAuthConfig; exports.NpmRegistryBearerAuthConfig = NpmRegistryBearerAuthConfig; exports.NpmRegistryConfig = NpmRegistryConfig; exports.NpmRegistryNoAuthConfig = NpmRegistryNoAuthConfig; exports.NpmRegistryType = NpmRegistryType; exports.OAuthProvider = OAuthProvider; exports.OAuthProviderNames = OAuthProviderNames; exports.OAuthProviderSchema = OAuthProviderSchema; exports.ObjectMeta = ObjectMeta; exports.OpacityTokenData = OpacityTokenData; exports.OpacityValue = OpacityValue; exports.PageBlockAlignment = PageBlockAlignment; exports.PageBlockAppearanceV2 = PageBlockAppearanceV2; exports.PageBlockAsset = PageBlockAsset; exports.PageBlockAssetComponent = PageBlockAssetComponent; exports.PageBlockAssetType = PageBlockAssetType; exports.PageBlockBehaviorDataType = PageBlockBehaviorDataType; exports.PageBlockBehaviorSelectionType = PageBlockBehaviorSelectionType; exports.PageBlockCalloutType = PageBlockCalloutType; exports.PageBlockCategory = PageBlockCategory; exports.PageBlockCodeLanguage = PageBlockCodeLanguage; exports.PageBlockCustomBlockPropertyImageValue = PageBlockCustomBlockPropertyImageValue; exports.PageBlockCustomBlockPropertyValue = PageBlockCustomBlockPropertyValue; exports.PageBlockDataV2 = PageBlockDataV2; exports.PageBlockDefinition = PageBlockDefinition; exports.PageBlockDefinitionAppearance = PageBlockDefinitionAppearance; exports.PageBlockDefinitionBehavior = PageBlockDefinitionBehavior; exports.PageBlockDefinitionBooleanPropertyStyle = PageBlockDefinitionBooleanPropertyStyle; exports.PageBlockDefinitionItem = PageBlockDefinitionItem; exports.PageBlockDefinitionLayout = PageBlockDefinitionLayout; exports.PageBlockDefinitionLayoutAlign = PageBlockDefinitionLayoutAlign; exports.PageBlockDefinitionLayoutBase = PageBlockDefinitionLayoutBase; exports.PageBlockDefinitionLayoutGap = PageBlockDefinitionLayoutGap; exports.PageBlockDefinitionLayoutResizing = PageBlockDefinitionLayoutResizing; exports.PageBlockDefinitionLayoutType = PageBlockDefinitionLayoutType; exports.PageBlockDefinitionMultiRichTextPropertyStyle = PageBlockDefinitionMultiRichTextPropertyStyle; exports.PageBlockDefinitionMultiSelectPropertyStyle = PageBlockDefinitionMultiSelectPropertyStyle; exports.PageBlockDefinitionOnboarding = PageBlockDefinitionOnboarding; exports.PageBlockDefinitionProperty = PageBlockDefinitionProperty; exports.PageBlockDefinitionPropertyOptions = PageBlockDefinitionPropertyOptions; exports.PageBlockDefinitionPropertyType = PageBlockDefinitionPropertyType; exports.PageBlockDefinitionRichTextPropertyStyle = PageBlockDefinitionRichTextPropertyStyle; exports.PageBlockDefinitionSingleSelectPropertyStyle = PageBlockDefinitionSingleSelectPropertyStyle; exports.PageBlockDefinitionTextPropertyStyle = PageBlockDefinitionTextPropertyStyle; exports.PageBlockDefinitionVariant = PageBlockDefinitionVariant; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageBlockEditorModelV2 = PageBlockEditorModelV2; exports.PageBlockFigmaFrameProperties = PageBlockFigmaFrameProperties; exports.PageBlockFrame = PageBlockFrame; exports.PageBlockFrameOrigin = PageBlockFrameOrigin; exports.PageBlockImageAlignment = PageBlockImageAlignment; exports.PageBlockImageType = PageBlockImageType; exports.PageBlockItemEmbedPropertyValue = PageBlockItemEmbedPropertyValue; exports.PageBlockItemImageReference = PageBlockItemImageReference; exports.PageBlockItemImageValue = PageBlockItemImageValue; exports.PageBlockItemMultiRichTextPropertyValue = PageBlockItemMultiRichTextPropertyValue; exports.PageBlockItemRichTextPropertyValue = PageBlockItemRichTextPropertyValue; exports.PageBlockItemTextPropertyValue = PageBlockItemTextPropertyValue; exports.PageBlockItemUntypedPropertyValue = PageBlockItemUntypedPropertyValue; exports.PageBlockItemV2 = PageBlockItemV2; exports.PageBlockLinkPreview = PageBlockLinkPreview; exports.PageBlockLinkType = PageBlockLinkType; exports.PageBlockLinkV2 = PageBlockLinkV2; exports.PageBlockRenderCodeProperties = PageBlockRenderCodeProperties; exports.PageBlockShortcut = PageBlockShortcut; exports.PageBlockTableColumn = PageBlockTableColumn; exports.PageBlockTableProperties = PageBlockTableProperties; exports.PageBlockText = PageBlockText; exports.PageBlockTextSpan = PageBlockTextSpan; exports.PageBlockTextSpanAttribute = PageBlockTextSpanAttribute; exports.PageBlockTextSpanAttributeType = PageBlockTextSpanAttributeType; exports.PageBlockTheme = PageBlockTheme; exports.PageBlockThemeType = PageBlockThemeType; exports.PageBlockTilesAlignment = PageBlockTilesAlignment; exports.PageBlockTilesLayout = PageBlockTilesLayout; exports.PageBlockTypeV1 = PageBlockTypeV1; exports.PageBlockUrlPreview = PageBlockUrlPreview; exports.PageBlockV1 = PageBlockV1; exports.PageBlockV2 = PageBlockV2; exports.ParagraphIndentTokenData = ParagraphIndentTokenData; exports.ParagraphIndentUnit = ParagraphIndentUnit; exports.ParagraphIndentValue = ParagraphIndentValue; exports.ParagraphSpacingTokenData = ParagraphSpacingTokenData; exports.ParagraphSpacingUnit = ParagraphSpacingUnit; exports.ParagraphSpacingValue = ParagraphSpacingValue; exports.PeriodSchema = PeriodSchema; exports.PersonalAccessToken = PersonalAccessToken; exports.PluginOAuthRequestSchema = PluginOAuthRequestSchema; exports.Point2D = Point2D; exports.PostStripeCheckoutBodyInputSchema = PostStripeCheckoutBodyInputSchema; exports.PostStripeCheckoutOutputSchema = PostStripeCheckoutOutputSchema; exports.PostStripePortalSessionBodyInputSchema = PostStripePortalSessionBodyInputSchema; exports.PostStripePortalSessionOutputSchema = PostStripePortalSessionOutputSchema; exports.PostStripePortalUpdateSessionBodyInputSchema = PostStripePortalUpdateSessionBodyInputSchema; exports.PriceSchema = PriceSchema; exports.ProductCode = ProductCode; exports.ProductCodeSchema = ProductCodeSchema; exports.ProductCopyTokenData = ProductCopyTokenData; exports.ProductCopyValue = ProductCopyValue; exports.PublishedDoc = PublishedDoc; exports.PublishedDocEnvironment = PublishedDocEnvironment; exports.PublishedDocRoutingVersion = PublishedDocRoutingVersion; exports.PublishedDocsChecksums = PublishedDocsChecksums; exports.PulsarContributionBlock = PulsarContributionBlock; exports.PulsarContributionConfigurationProperty = PulsarContributionConfigurationProperty; exports.PulsarContributionVariant = PulsarContributionVariant; exports.PulsarPropertyType = PulsarPropertyType; exports.SHORT_PERSISTENT_ID_LENGTH = SHORT_PERSISTENT_ID_LENGTH; exports.Session = Session; exports.SessionData = SessionData; exports.ShadowLayerValue = ShadowLayerValue; exports.ShadowTokenData = ShadowTokenData; exports.ShadowType = ShadowType; exports.ShallowDesignElement = ShallowDesignElement; exports.Size = Size; exports.SizeOrUndefined = SizeOrUndefined; exports.SizeTokenData = SizeTokenData; exports.SizeUnit = SizeUnit; exports.SizeValue = SizeValue; exports.SourceImportComponentSummary = SourceImportComponentSummary; exports.SourceImportFrameSummary = SourceImportFrameSummary; exports.SourceImportSummary = SourceImportSummary; exports.SourceImportSummaryByTokenType = SourceImportSummaryByTokenType; exports.SourceImportTokenSummary = SourceImportTokenSummary; exports.SpaceTokenData = SpaceTokenData; exports.SpaceUnit = SpaceUnit; exports.SpaceValue = SpaceValue; exports.SsoProvider = SsoProvider; exports.StringTokenData = StringTokenData; exports.StringValue = StringValue; exports.StripeSubscriptionStatus = StripeSubscriptionStatus; exports.StripeSubscriptionStatusSchema = StripeSubscriptionStatusSchema; exports.Subscription = Subscription; exports.TextCase = TextCase; exports.TextCaseTokenData = TextCaseTokenData; exports.TextCaseValue = TextCaseValue; exports.TextDecoration = TextDecoration; exports.TextDecorationTokenData = TextDecorationTokenData; exports.TextDecorationValue = TextDecorationValue; exports.Theme = Theme; exports.ThemeElementData = ThemeElementData; exports.ThemeImportModel = ThemeImportModel; exports.ThemeImportModelInput = ThemeImportModelInput; exports.ThemeOrigin = ThemeOrigin; exports.ThemeOriginObject = ThemeOriginObject; exports.ThemeOriginPart = ThemeOriginPart; exports.ThemeOriginSource = ThemeOriginSource; exports.ThemeOverride = ThemeOverride; exports.ThemeOverrideImportModel = ThemeOverrideImportModel; exports.ThemeOverrideImportModelBase = ThemeOverrideImportModelBase; exports.ThemeOverrideImportModelInput = ThemeOverrideImportModelInput; exports.ThemeOverrideOrigin = ThemeOverrideOrigin; exports.ThemeOverrideOriginPart = ThemeOverrideOriginPart; exports.ThemeUpdateImportModel = ThemeUpdateImportModel; exports.ThemeUpdateImportModelInput = ThemeUpdateImportModelInput; exports.TokenDataAliasSchema = TokenDataAliasSchema; exports.TypographyTokenData = TypographyTokenData; exports.TypographyValue = TypographyValue; exports.UrlImageImportModel = UrlImageImportModel; exports.User = User; exports.UserIdentity = UserIdentity; exports.UserInvite = UserInvite; exports.UserInvites = UserInvites; exports.UserLinkedIntegrations = UserLinkedIntegrations; exports.UserOnboarding = UserOnboarding; exports.UserOnboardingDepartment = UserOnboardingDepartment; exports.UserOnboardingJobLevel = UserOnboardingJobLevel; exports.UserProfile = UserProfile; exports.UserSession = UserSession; exports.Visibility = Visibility; exports.VisibilityTokenData = VisibilityTokenData; exports.VisibilityValue = VisibilityValue; exports.Workspace = Workspace; exports.WorkspaceContext = WorkspaceContext; exports.WorkspaceInvitation = WorkspaceInvitation; exports.WorkspaceIpSettings = WorkspaceIpSettings; exports.WorkspaceIpWhitelistEntry = WorkspaceIpWhitelistEntry; exports.WorkspaceMembership = WorkspaceMembership; exports.WorkspaceProfile = WorkspaceProfile; exports.WorkspaceRole = WorkspaceRole; exports.WorkspaceRoleSchema = WorkspaceRoleSchema; exports.WorkspaceWithDesignSystems = WorkspaceWithDesignSystems; exports.ZIndexTokenData = ZIndexTokenData; exports.ZIndexUnit = ZIndexUnit; exports.ZIndexValue = ZIndexValue; exports.addImportModelCollections = addImportModelCollections; exports.blockDefinitionForBlock = blockDefinitionForBlock; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.designTokenImportModelTypeFilter = designTokenImportModelTypeFilter; exports.designTokenTypeFilter = designTokenTypeFilter; exports.extractTokenTypedData = extractTokenTypedData; exports.figmaFileStructureImportModelToMap = figmaFileStructureImportModelToMap; exports.figmaFileStructureToMap = figmaFileStructureToMap; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.isDesignTokenImportModelOfType = isDesignTokenImportModelOfType; exports.isDesignTokenOfType = isDesignTokenOfType; exports.isImportedAsset = isImportedAsset; exports.isImportedComponent = isImportedComponent; exports.isImportedDesignToken = isImportedDesignToken; exports.isTokenType = isTokenType; exports.nullishToOptional = nullishToOptional; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pmSchema = pmSchema; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorNodeToBlock = prosemirrorNodeToBlock; exports.publishedDocEnvironments = publishedDocEnvironments; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.tokenAliasOrValue = tokenAliasOrValue; exports.tokenElementTypes = tokenElementTypes; exports.traversePageBlocksV1 = traversePageBlocksV1; exports.traverseStructure = traverseStructure; exports.tryParseShortPersistentId = tryParseShortPersistentId; exports.yXmlFragmetToPage = yXmlFragmetToPage; exports.zodCreateInputOmit = zodCreateInputOmit; exports.zodUpdateInputOmit = zodUpdateInputOmit;
|
|
6257
|
+
|
|
6258
|
+
|
|
6259
|
+
|
|
6260
|
+
|
|
6261
|
+
|
|
6262
|
+
|
|
6263
|
+
|
|
6264
|
+
|
|
6265
|
+
|
|
6266
|
+
|
|
6267
|
+
|
|
6268
|
+
|
|
6269
|
+
|
|
6270
|
+
|
|
6271
|
+
|
|
6272
|
+
|
|
6273
|
+
|
|
6274
|
+
|
|
6275
|
+
|
|
6276
|
+
exports.Address = Address; exports.Asset = Asset; exports.AssetFontProperties = AssetFontProperties; exports.AssetImportModelInput = AssetImportModelInput; exports.AssetOrigin = AssetOrigin; exports.AssetProperties = AssetProperties; exports.AssetReference = AssetReference; exports.AssetScope = AssetScope; exports.AssetType = AssetType; exports.AssetValue = AssetValue; exports.AuthTokens = AuthTokens; exports.BasePulsarProperty = BasePulsarProperty; exports.BillingDetails = BillingDetails; exports.BillingIntervalSchema = BillingIntervalSchema; exports.BillingType = BillingType; exports.BillingTypeSchema = BillingTypeSchema; exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.BlurTokenData = BlurTokenData; exports.BlurType = BlurType; exports.BlurValue = BlurValue; exports.BorderPosition = BorderPosition; exports.BorderRadiusTokenData = BorderRadiusTokenData; exports.BorderRadiusUnit = BorderRadiusUnit; exports.BorderRadiusValue = BorderRadiusValue; exports.BorderStyle = BorderStyle; exports.BorderTokenData = BorderTokenData; exports.BorderValue = BorderValue; exports.BorderWidthTokenData = BorderWidthTokenData; exports.BorderWidthUnit = BorderWidthUnit; exports.BorderWidthValue = BorderWidthValue; exports.BrandedElementGroup = BrandedElementGroup; exports.CardSchema = CardSchema; exports.ChangedImportedFigmaSourceData = ChangedImportedFigmaSourceData; exports.ColorTokenData = ColorTokenData; exports.ColorTokenInlineData = ColorTokenInlineData; exports.ColorValue = ColorValue; exports.Component = Component; exports.ComponentElementData = ComponentElementData; exports.ComponentImportModel = ComponentImportModel; exports.ComponentImportModelInput = ComponentImportModelInput; exports.ComponentOrigin = ComponentOrigin; exports.ComponentOriginPart = ComponentOriginPart; exports.ContentLoadInstruction = ContentLoadInstruction; exports.ContentLoaderPayload = ContentLoaderPayload; exports.CreateDesignToken = CreateDesignToken; exports.CreateWorkspaceInput = CreateWorkspaceInput; exports.CustomDomain = CustomDomain; exports.Customer = Customer; exports.DataSourceAutoImportMode = DataSourceAutoImportMode; exports.DataSourceFigmaFileData = DataSourceFigmaFileData; exports.DataSourceFigmaFileVersionData = DataSourceFigmaFileVersionData; exports.DataSourceFigmaImportMetadata = DataSourceFigmaImportMetadata; exports.DataSourceFigmaRemote = DataSourceFigmaRemote; exports.DataSourceFigmaScope = DataSourceFigmaScope; exports.DataSourceFigmaState = DataSourceFigmaState; exports.DataSourceImportModel = DataSourceImportModel; exports.DataSourceRemote = DataSourceRemote; exports.DataSourceRemoteType = DataSourceRemoteType; exports.DataSourceStats = DataSourceStats; exports.DataSourceTokenStudioRemote = DataSourceTokenStudioRemote; exports.DataSourceUploadImportMetadata = DataSourceUploadImportMetadata; exports.DataSourceUploadRemote = DataSourceUploadRemote; exports.DataSourceUploadRemoteSource = DataSourceUploadRemoteSource; exports.DataSourceVersion = DataSourceVersion; exports.DesignElement = DesignElement; exports.DesignElementBase = DesignElementBase; exports.DesignElementBrandedPart = DesignElementBrandedPart; exports.DesignElementCategory = DesignElementCategory; exports.DesignElementGroupableBase = DesignElementGroupableBase; exports.DesignElementGroupablePart = DesignElementGroupablePart; exports.DesignElementGroupableRequiredPart = DesignElementGroupableRequiredPart; exports.DesignElementImportedBase = DesignElementImportedBase; exports.DesignElementOrigin = DesignElementOrigin; exports.DesignElementSlugPart = DesignElementSlugPart; exports.DesignElementType = DesignElementType; exports.DesignSystem = DesignSystem; exports.DesignSystemCreateInput = DesignSystemCreateInput; exports.DesignSystemElementExportProps = DesignSystemElementExportProps; exports.DesignSystemSwitcher = DesignSystemSwitcher; exports.DesignSystemUpdateInput = DesignSystemUpdateInput; exports.DesignSystemVersionRoom = DesignSystemVersionRoom; exports.DesignSystemWithWorkspace = DesignSystemWithWorkspace; exports.DesignToken = DesignToken; exports.DesignTokenImportModel = DesignTokenImportModel; exports.DesignTokenImportModelBase = DesignTokenImportModelBase; exports.DesignTokenImportModelInput = DesignTokenImportModelInput; exports.DesignTokenImportModelInputBase = DesignTokenImportModelInputBase; exports.DesignTokenOrigin = DesignTokenOrigin; exports.DesignTokenOriginPart = DesignTokenOriginPart; exports.DesignTokenType = DesignTokenType; exports.DesignTokenTypedData = DesignTokenTypedData; exports.DimensionTokenData = DimensionTokenData; exports.DimensionUnit = DimensionUnit; exports.DimensionValue = DimensionValue; exports.DocumentationGroupBehavior = DocumentationGroupBehavior; exports.DocumentationGroupDTO = DocumentationGroupDTO; exports.DocumentationItemConfiguration = DocumentationItemConfiguration; exports.DocumentationPage = DocumentationPage; exports.DocumentationPageDTOV1 = DocumentationPageDTOV1; exports.DocumentationPageDataV1 = DocumentationPageDataV1; exports.DocumentationPageDataV2 = DocumentationPageDataV2; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageElementDataV1 = DocumentationPageElementDataV1; exports.DocumentationPageElementDataV2 = DocumentationPageElementDataV2; exports.DocumentationPageGroup = DocumentationPageGroup; exports.DocumentationPageRoom = DocumentationPageRoom; exports.DocumentationPageV1 = DocumentationPageV1; exports.DocumentationPageV2 = DocumentationPageV2; exports.DurationTokenData = DurationTokenData; exports.DurationUnit = DurationUnit; exports.DurationValue = DurationValue; exports.ElementGroup = ElementGroup; exports.ElementGroupData = ElementGroupData; exports.ElementGroupElementData = ElementGroupElementData; exports.ElementPropertyDefinition = ElementPropertyDefinition; exports.ElementPropertyDefinitionOption = ElementPropertyDefinitionOption; exports.ElementPropertyLinkType = ElementPropertyLinkType; exports.ElementPropertyTargetType = ElementPropertyTargetType; exports.ElementPropertyType = ElementPropertyType; exports.ElementPropertyValue = ElementPropertyValue; exports.Entity = Entity; exports.ExportJob = ExportJob; exports.ExportJobStatus = ExportJobStatus; exports.Exporter = Exporter; exports.ExporterDetails = ExporterDetails; exports.ExporterSource = ExporterSource; exports.ExporterTag = ExporterTag; exports.ExporterType = ExporterType; exports.ExporterWorkspaceMembership = ExporterWorkspaceMembership; exports.ExporterWorkspaceMembershipRole = ExporterWorkspaceMembershipRole; exports.ExternalOAuthRequest = ExternalOAuthRequest; exports.ExternalServiceType = ExternalServiceType; exports.FeatureFlag = FeatureFlag; exports.FeatureFlagMap = FeatureFlagMap; exports.FeaturesSummary = FeaturesSummary; exports.FigmaFileAccessData = FigmaFileAccessData; exports.FigmaFileDownloadScope = FigmaFileDownloadScope; exports.FigmaFileStructure = FigmaFileStructure; exports.FigmaFileStructureData = FigmaFileStructureData; exports.FigmaFileStructureElementData = FigmaFileStructureElementData; exports.FigmaFileStructureImportModel = FigmaFileStructureImportModel; exports.FigmaFileStructureImportModelInput = FigmaFileStructureImportModelInput; exports.FigmaFileStructureNode = FigmaFileStructureNode; exports.FigmaFileStructureNodeBase = FigmaFileStructureNodeBase; exports.FigmaFileStructureNodeImportModel = FigmaFileStructureNodeImportModel; exports.FigmaFileStructureNodeType = FigmaFileStructureNodeType; exports.FigmaFileStructureOrigin = FigmaFileStructureOrigin; exports.FigmaFileStructureStatistics = FigmaFileStructureStatistics; exports.FigmaImportBaseContext = FigmaImportBaseContext; exports.FigmaImportContextWithDownloadScopes = FigmaImportContextWithDownloadScopes; exports.FigmaNodeReference = FigmaNodeReference; exports.FigmaNodeReferenceData = FigmaNodeReferenceData; exports.FigmaNodeReferenceElementData = FigmaNodeReferenceElementData; exports.FigmaPngRenderImportModel = FigmaPngRenderImportModel; exports.FigmaRenderFormat = FigmaRenderFormat; exports.FigmaRenderImportModel = FigmaRenderImportModel; exports.FigmaSvgRenderImportModel = FigmaSvgRenderImportModel; exports.FileStructureStats = FileStructureStats; exports.FlaggedFeature = FlaggedFeature; exports.FontFamilyTokenData = FontFamilyTokenData; exports.FontFamilyValue = FontFamilyValue; exports.FontSizeTokenData = FontSizeTokenData; exports.FontSizeUnit = FontSizeUnit; exports.FontSizeValue = FontSizeValue; exports.FontWeightTokenData = FontWeightTokenData; exports.FontWeightValue = FontWeightValue; exports.GetBlockDefinitionsResponse = GetBlockDefinitionsResponse; exports.GitProvider = GitProvider; exports.GitProviderNames = GitProviderNames; exports.GradientLayerData = GradientLayerData; exports.GradientLayerValue = GradientLayerValue; exports.GradientStop = GradientStop; exports.GradientTokenData = GradientTokenData; exports.GradientTokenValue = GradientTokenValue; exports.GradientType = GradientType; exports.HANDLE_MAX_LENGTH = HANDLE_MAX_LENGTH; exports.HANDLE_MIN_LENGTH = HANDLE_MIN_LENGTH; exports.ImageImportModel = ImageImportModel; exports.ImageImportModelType = ImageImportModelType; exports.ImportFunctionInput = ImportFunctionInput; exports.ImportJob = ImportJob; exports.ImportJobOperation = ImportJobOperation; exports.ImportJobState = ImportJobState; exports.ImportModelBase = ImportModelBase; exports.ImportModelCollection = ImportModelCollection; exports.ImportModelInputBase = ImportModelInputBase; exports.ImportModelInputCollection = ImportModelInputCollection; exports.ImportWarning = ImportWarning; exports.ImportWarningType = ImportWarningType; exports.ImportedFigmaSourceData = ImportedFigmaSourceData; exports.IntegrationAuthType = IntegrationAuthType; exports.IntegrationTokenSchema = IntegrationTokenSchema; exports.IntegrationUserInfo = IntegrationUserInfo; exports.InternalStatus = InternalStatus; exports.InternalStatusSchema = InternalStatusSchema; exports.InvoiceCouponSchema = InvoiceCouponSchema; exports.InvoiceLineSchema = InvoiceLineSchema; exports.InvoiceSchema = InvoiceSchema; exports.LetterSpacingTokenData = LetterSpacingTokenData; exports.LetterSpacingUnit = LetterSpacingUnit; exports.LetterSpacingValue = LetterSpacingValue; exports.LineHeightTokenData = LineHeightTokenData; exports.LineHeightUnit = LineHeightUnit; exports.LineHeightValue = LineHeightValue; exports.MAX_MEMBERS_COUNT = MAX_MEMBERS_COUNT; exports.NpmPackage = NpmPackage; exports.NpmProxyToken = NpmProxyToken; exports.NpmProxyTokenPayload = NpmProxyTokenPayload; exports.NpmRegistrCustomAuthConfig = NpmRegistrCustomAuthConfig; exports.NpmRegistryAuthConfig = NpmRegistryAuthConfig; exports.NpmRegistryAuthType = NpmRegistryAuthType; exports.NpmRegistryBasicAuthConfig = NpmRegistryBasicAuthConfig; exports.NpmRegistryBearerAuthConfig = NpmRegistryBearerAuthConfig; exports.NpmRegistryConfig = NpmRegistryConfig; exports.NpmRegistryNoAuthConfig = NpmRegistryNoAuthConfig; exports.NpmRegistryType = NpmRegistryType; exports.OAuthProvider = OAuthProvider; exports.OAuthProviderNames = OAuthProviderNames; exports.OAuthProviderSchema = OAuthProviderSchema; exports.ObjectMeta = ObjectMeta; exports.OpacityTokenData = OpacityTokenData; exports.OpacityValue = OpacityValue; exports.PageBlockAlignment = PageBlockAlignment; exports.PageBlockAppearanceV2 = PageBlockAppearanceV2; exports.PageBlockAsset = PageBlockAsset; exports.PageBlockAssetComponent = PageBlockAssetComponent; exports.PageBlockAssetType = PageBlockAssetType; exports.PageBlockBehaviorDataType = PageBlockBehaviorDataType; exports.PageBlockBehaviorSelectionType = PageBlockBehaviorSelectionType; exports.PageBlockCalloutType = PageBlockCalloutType; exports.PageBlockCategory = PageBlockCategory; exports.PageBlockCodeLanguage = PageBlockCodeLanguage; exports.PageBlockCustomBlockPropertyImageValue = PageBlockCustomBlockPropertyImageValue; exports.PageBlockCustomBlockPropertyValue = PageBlockCustomBlockPropertyValue; exports.PageBlockDataV2 = PageBlockDataV2; exports.PageBlockDefinition = PageBlockDefinition; exports.PageBlockDefinitionAppearance = PageBlockDefinitionAppearance; exports.PageBlockDefinitionBehavior = PageBlockDefinitionBehavior; exports.PageBlockDefinitionBooleanPropertyStyle = PageBlockDefinitionBooleanPropertyStyle; exports.PageBlockDefinitionItem = PageBlockDefinitionItem; exports.PageBlockDefinitionLayout = PageBlockDefinitionLayout; exports.PageBlockDefinitionLayoutAlign = PageBlockDefinitionLayoutAlign; exports.PageBlockDefinitionLayoutBase = PageBlockDefinitionLayoutBase; exports.PageBlockDefinitionLayoutGap = PageBlockDefinitionLayoutGap; exports.PageBlockDefinitionLayoutResizing = PageBlockDefinitionLayoutResizing; exports.PageBlockDefinitionLayoutType = PageBlockDefinitionLayoutType; exports.PageBlockDefinitionMultiRichTextPropertyStyle = PageBlockDefinitionMultiRichTextPropertyStyle; exports.PageBlockDefinitionMultiSelectPropertyStyle = PageBlockDefinitionMultiSelectPropertyStyle; exports.PageBlockDefinitionOnboarding = PageBlockDefinitionOnboarding; exports.PageBlockDefinitionProperty = PageBlockDefinitionProperty; exports.PageBlockDefinitionPropertyOptions = PageBlockDefinitionPropertyOptions; exports.PageBlockDefinitionPropertyType = PageBlockDefinitionPropertyType; exports.PageBlockDefinitionRichTextPropertyStyle = PageBlockDefinitionRichTextPropertyStyle; exports.PageBlockDefinitionSingleSelectPropertyStyle = PageBlockDefinitionSingleSelectPropertyStyle; exports.PageBlockDefinitionTextPropertyStyle = PageBlockDefinitionTextPropertyStyle; exports.PageBlockDefinitionVariant = PageBlockDefinitionVariant; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageBlockEditorModelV2 = PageBlockEditorModelV2; exports.PageBlockFigmaFrameProperties = PageBlockFigmaFrameProperties; exports.PageBlockFrame = PageBlockFrame; exports.PageBlockFrameOrigin = PageBlockFrameOrigin; exports.PageBlockImageAlignment = PageBlockImageAlignment; exports.PageBlockImageType = PageBlockImageType; exports.PageBlockItemAssetPropertyValue = PageBlockItemAssetPropertyValue; exports.PageBlockItemAssetValue = PageBlockItemAssetValue; exports.PageBlockItemBooleanValue = PageBlockItemBooleanValue; exports.PageBlockItemCodeValue = PageBlockItemCodeValue; exports.PageBlockItemColorValue = PageBlockItemColorValue; exports.PageBlockItemComponentPropertyValue = PageBlockItemComponentPropertyValue; exports.PageBlockItemComponentValue = PageBlockItemComponentValue; exports.PageBlockItemDividerValue = PageBlockItemDividerValue; exports.PageBlockItemEmbedValue = PageBlockItemEmbedValue; exports.PageBlockItemImageReference = PageBlockItemImageReference; exports.PageBlockItemImageValue = PageBlockItemImageValue; exports.PageBlockItemMarkdownValue = PageBlockItemMarkdownValue; exports.PageBlockItemMultiRichTextValue = PageBlockItemMultiRichTextValue; exports.PageBlockItemMultiSelectValue = PageBlockItemMultiSelectValue; exports.PageBlockItemNumberValue = PageBlockItemNumberValue; exports.PageBlockItemRichTextValue = PageBlockItemRichTextValue; exports.PageBlockItemSandboxValue = PageBlockItemSandboxValue; exports.PageBlockItemSingleSelectValue = PageBlockItemSingleSelectValue; exports.PageBlockItemStorybookValue = PageBlockItemStorybookValue; exports.PageBlockItemTableValue = PageBlockItemTableValue; exports.PageBlockItemTextValue = PageBlockItemTextValue; exports.PageBlockItemTokenPropertyValue = PageBlockItemTokenPropertyValue; exports.PageBlockItemTokenTypeValue = PageBlockItemTokenTypeValue; exports.PageBlockItemTokenValue = PageBlockItemTokenValue; exports.PageBlockItemUntypedValue = PageBlockItemUntypedValue; exports.PageBlockItemUrlValue = PageBlockItemUrlValue; exports.PageBlockItemV2 = PageBlockItemV2; exports.PageBlockLinkPreview = PageBlockLinkPreview; exports.PageBlockLinkType = PageBlockLinkType; exports.PageBlockLinkV2 = PageBlockLinkV2; exports.PageBlockRenderCodeProperties = PageBlockRenderCodeProperties; exports.PageBlockShortcut = PageBlockShortcut; exports.PageBlockTableColumn = PageBlockTableColumn; exports.PageBlockTableProperties = PageBlockTableProperties; exports.PageBlockText = PageBlockText; exports.PageBlockTextSpan = PageBlockTextSpan; exports.PageBlockTextSpanAttribute = PageBlockTextSpanAttribute; exports.PageBlockTextSpanAttributeType = PageBlockTextSpanAttributeType; exports.PageBlockTheme = PageBlockTheme; exports.PageBlockThemeType = PageBlockThemeType; exports.PageBlockTilesAlignment = PageBlockTilesAlignment; exports.PageBlockTilesLayout = PageBlockTilesLayout; exports.PageBlockTypeV1 = PageBlockTypeV1; exports.PageBlockUrlPreview = PageBlockUrlPreview; exports.PageBlockV1 = PageBlockV1; exports.PageBlockV2 = PageBlockV2; exports.ParagraphIndentTokenData = ParagraphIndentTokenData; exports.ParagraphIndentUnit = ParagraphIndentUnit; exports.ParagraphIndentValue = ParagraphIndentValue; exports.ParagraphSpacingTokenData = ParagraphSpacingTokenData; exports.ParagraphSpacingUnit = ParagraphSpacingUnit; exports.ParagraphSpacingValue = ParagraphSpacingValue; exports.PeriodSchema = PeriodSchema; exports.PersonalAccessToken = PersonalAccessToken; exports.PluginOAuthRequestSchema = PluginOAuthRequestSchema; exports.Point2D = Point2D; exports.PostStripeCheckoutBodyInputSchema = PostStripeCheckoutBodyInputSchema; exports.PostStripeCheckoutOutputSchema = PostStripeCheckoutOutputSchema; exports.PostStripePortalSessionBodyInputSchema = PostStripePortalSessionBodyInputSchema; exports.PostStripePortalSessionOutputSchema = PostStripePortalSessionOutputSchema; exports.PostStripePortalUpdateSessionBodyInputSchema = PostStripePortalUpdateSessionBodyInputSchema; exports.PriceSchema = PriceSchema; exports.ProductCode = ProductCode; exports.ProductCodeSchema = ProductCodeSchema; exports.ProductCopyTokenData = ProductCopyTokenData; exports.ProductCopyValue = ProductCopyValue; exports.PublishedDoc = PublishedDoc; exports.PublishedDocEnvironment = PublishedDocEnvironment; exports.PublishedDocRoutingVersion = PublishedDocRoutingVersion; exports.PublishedDocsChecksums = PublishedDocsChecksums; exports.PulsarContributionBlock = PulsarContributionBlock; exports.PulsarContributionConfigurationProperty = PulsarContributionConfigurationProperty; exports.PulsarContributionVariant = PulsarContributionVariant; exports.PulsarPropertyType = PulsarPropertyType; exports.SHORT_PERSISTENT_ID_LENGTH = SHORT_PERSISTENT_ID_LENGTH; exports.Session = Session; exports.SessionData = SessionData; exports.ShadowLayerValue = ShadowLayerValue; exports.ShadowTokenData = ShadowTokenData; exports.ShadowType = ShadowType; exports.ShallowDesignElement = ShallowDesignElement; exports.Size = Size; exports.SizeOrUndefined = SizeOrUndefined; exports.SizeTokenData = SizeTokenData; exports.SizeUnit = SizeUnit; exports.SizeValue = SizeValue; exports.SourceImportComponentSummary = SourceImportComponentSummary; exports.SourceImportFrameSummary = SourceImportFrameSummary; exports.SourceImportSummary = SourceImportSummary; exports.SourceImportSummaryByTokenType = SourceImportSummaryByTokenType; exports.SourceImportTokenSummary = SourceImportTokenSummary; exports.SpaceTokenData = SpaceTokenData; exports.SpaceUnit = SpaceUnit; exports.SpaceValue = SpaceValue; exports.SsoProvider = SsoProvider; exports.StringTokenData = StringTokenData; exports.StringValue = StringValue; exports.StripeSubscriptionStatus = StripeSubscriptionStatus; exports.StripeSubscriptionStatusSchema = StripeSubscriptionStatusSchema; exports.Subscription = Subscription; exports.TextCase = TextCase; exports.TextCaseTokenData = TextCaseTokenData; exports.TextCaseValue = TextCaseValue; exports.TextDecoration = TextDecoration; exports.TextDecorationTokenData = TextDecorationTokenData; exports.TextDecorationValue = TextDecorationValue; exports.Theme = Theme; exports.ThemeElementData = ThemeElementData; exports.ThemeImportModel = ThemeImportModel; exports.ThemeImportModelInput = ThemeImportModelInput; exports.ThemeOrigin = ThemeOrigin; exports.ThemeOriginObject = ThemeOriginObject; exports.ThemeOriginPart = ThemeOriginPart; exports.ThemeOriginSource = ThemeOriginSource; exports.ThemeOverride = ThemeOverride; exports.ThemeOverrideImportModel = ThemeOverrideImportModel; exports.ThemeOverrideImportModelBase = ThemeOverrideImportModelBase; exports.ThemeOverrideImportModelInput = ThemeOverrideImportModelInput; exports.ThemeOverrideOrigin = ThemeOverrideOrigin; exports.ThemeOverrideOriginPart = ThemeOverrideOriginPart; exports.ThemeUpdateImportModel = ThemeUpdateImportModel; exports.ThemeUpdateImportModelInput = ThemeUpdateImportModelInput; exports.TokenDataAliasSchema = TokenDataAliasSchema; exports.TypographyTokenData = TypographyTokenData; exports.TypographyValue = TypographyValue; exports.UrlImageImportModel = UrlImageImportModel; exports.User = User; exports.UserIdentity = UserIdentity; exports.UserInvite = UserInvite; exports.UserInvites = UserInvites; exports.UserLinkedIntegrations = UserLinkedIntegrations; exports.UserOnboarding = UserOnboarding; exports.UserOnboardingDepartment = UserOnboardingDepartment; exports.UserOnboardingJobLevel = UserOnboardingJobLevel; exports.UserProfile = UserProfile; exports.UserSession = UserSession; exports.Visibility = Visibility; exports.VisibilityTokenData = VisibilityTokenData; exports.VisibilityValue = VisibilityValue; exports.Workspace = Workspace; exports.WorkspaceContext = WorkspaceContext; exports.WorkspaceInvitation = WorkspaceInvitation; exports.WorkspaceIpSettings = WorkspaceIpSettings; exports.WorkspaceIpWhitelistEntry = WorkspaceIpWhitelistEntry; exports.WorkspaceMembership = WorkspaceMembership; exports.WorkspaceProfile = WorkspaceProfile; exports.WorkspaceRole = WorkspaceRole; exports.WorkspaceRoleSchema = WorkspaceRoleSchema; exports.WorkspaceWithDesignSystems = WorkspaceWithDesignSystems; exports.ZIndexTokenData = ZIndexTokenData; exports.ZIndexUnit = ZIndexUnit; exports.ZIndexValue = ZIndexValue; exports.addImportModelCollections = addImportModelCollections; exports.blockDefinitionForBlock = blockDefinitionForBlock; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.designTokenImportModelTypeFilter = designTokenImportModelTypeFilter; exports.designTokenTypeFilter = designTokenTypeFilter; exports.extractTokenTypedData = extractTokenTypedData; exports.figmaFileStructureImportModelToMap = figmaFileStructureImportModelToMap; exports.figmaFileStructureToMap = figmaFileStructureToMap; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.isDesignTokenImportModelOfType = isDesignTokenImportModelOfType; exports.isDesignTokenOfType = isDesignTokenOfType; exports.isImportedAsset = isImportedAsset; exports.isImportedComponent = isImportedComponent; exports.isImportedDesignToken = isImportedDesignToken; exports.isTokenType = isTokenType; exports.nullishToOptional = nullishToOptional; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pmSchema = pmSchema; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorNodeToBlock = prosemirrorNodeToBlock; exports.publishedDocEnvironments = publishedDocEnvironments; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.tokenAliasOrValue = tokenAliasOrValue; exports.tokenElementTypes = tokenElementTypes; exports.traversePageBlocksV1 = traversePageBlocksV1; exports.traverseStructure = traverseStructure; exports.tryParseShortPersistentId = tryParseShortPersistentId; exports.yXmlFragmetToPage = yXmlFragmetToPage; exports.zodCreateInputOmit = zodCreateInputOmit; exports.zodUpdateInputOmit = zodUpdateInputOmit;
|
|
6415
6277
|
//# sourceMappingURL=index.js.map
|