@supernova-studio/model 0.54.2 → 0.54.4
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 +1354 -160
- package/dist/index.d.ts +1354 -160
- package/dist/index.js +24 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1160 -1143
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/component-properties.ts +15 -4
- package/src/dsm/elements/data/font.ts +9 -0
- package/src/dsm/elements/data/index.ts +1 -0
- package/src/dsm/elements/tokens.ts +2 -1
package/dist/index.d.mts
CHANGED
|
@@ -36192,40 +36192,88 @@ declare const ComponentElementData: z.ZodObject<{
|
|
|
36192
36192
|
}>>;
|
|
36193
36193
|
parentComponentPersistentId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
36194
36194
|
componentPropertyDefinitions: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, {
|
|
36195
|
+
id: string;
|
|
36195
36196
|
type: "Boolean";
|
|
36197
|
+
name: string;
|
|
36196
36198
|
defaultValue: boolean;
|
|
36197
36199
|
} | {
|
|
36200
|
+
id: string;
|
|
36198
36201
|
type: "InstanceSwap";
|
|
36202
|
+
name: string;
|
|
36199
36203
|
defaultValue: string;
|
|
36200
36204
|
} | {
|
|
36205
|
+
id: string;
|
|
36206
|
+
options: string[];
|
|
36207
|
+
type: "Variant";
|
|
36208
|
+
name: string;
|
|
36209
|
+
defaultValue: string;
|
|
36210
|
+
} | {
|
|
36211
|
+
id: string;
|
|
36201
36212
|
type: "Text";
|
|
36213
|
+
name: string;
|
|
36202
36214
|
defaultValue: string;
|
|
36203
36215
|
}>, z.ZodTypeDef, Record<string, {
|
|
36216
|
+
id: string;
|
|
36204
36217
|
type: "Boolean";
|
|
36218
|
+
name: string;
|
|
36205
36219
|
defaultValue: boolean;
|
|
36206
36220
|
} | {
|
|
36221
|
+
id: string;
|
|
36207
36222
|
type: "InstanceSwap";
|
|
36223
|
+
name: string;
|
|
36224
|
+
defaultValue: string;
|
|
36225
|
+
} | {
|
|
36226
|
+
id: string;
|
|
36227
|
+
options: string[];
|
|
36228
|
+
type: "Variant";
|
|
36229
|
+
name: string;
|
|
36208
36230
|
defaultValue: string;
|
|
36209
36231
|
} | {
|
|
36232
|
+
id: string;
|
|
36210
36233
|
type: "Text";
|
|
36234
|
+
name: string;
|
|
36211
36235
|
defaultValue: string;
|
|
36212
36236
|
}>>>>, Record<string, {
|
|
36237
|
+
id: string;
|
|
36213
36238
|
type: "Boolean";
|
|
36239
|
+
name: string;
|
|
36214
36240
|
defaultValue: boolean;
|
|
36215
36241
|
} | {
|
|
36242
|
+
id: string;
|
|
36216
36243
|
type: "InstanceSwap";
|
|
36244
|
+
name: string;
|
|
36217
36245
|
defaultValue: string;
|
|
36218
36246
|
} | {
|
|
36247
|
+
id: string;
|
|
36248
|
+
options: string[];
|
|
36249
|
+
type: "Variant";
|
|
36250
|
+
name: string;
|
|
36251
|
+
defaultValue: string;
|
|
36252
|
+
} | {
|
|
36253
|
+
id: string;
|
|
36219
36254
|
type: "Text";
|
|
36255
|
+
name: string;
|
|
36220
36256
|
defaultValue: string;
|
|
36221
36257
|
}> | undefined, Record<string, {
|
|
36258
|
+
id: string;
|
|
36222
36259
|
type: "Boolean";
|
|
36260
|
+
name: string;
|
|
36223
36261
|
defaultValue: boolean;
|
|
36224
36262
|
} | {
|
|
36263
|
+
id: string;
|
|
36225
36264
|
type: "InstanceSwap";
|
|
36265
|
+
name: string;
|
|
36266
|
+
defaultValue: string;
|
|
36267
|
+
} | {
|
|
36268
|
+
id: string;
|
|
36269
|
+
options: string[];
|
|
36270
|
+
type: "Variant";
|
|
36271
|
+
name: string;
|
|
36226
36272
|
defaultValue: string;
|
|
36227
36273
|
} | {
|
|
36274
|
+
id: string;
|
|
36228
36275
|
type: "Text";
|
|
36276
|
+
name: string;
|
|
36229
36277
|
defaultValue: string;
|
|
36230
36278
|
}> | null | undefined>;
|
|
36231
36279
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -36243,13 +36291,25 @@ declare const ComponentElementData: z.ZodObject<{
|
|
|
36243
36291
|
} | undefined;
|
|
36244
36292
|
parentComponentPersistentId?: string | undefined;
|
|
36245
36293
|
componentPropertyDefinitions?: Record<string, {
|
|
36294
|
+
id: string;
|
|
36246
36295
|
type: "Boolean";
|
|
36296
|
+
name: string;
|
|
36247
36297
|
defaultValue: boolean;
|
|
36248
36298
|
} | {
|
|
36299
|
+
id: string;
|
|
36249
36300
|
type: "InstanceSwap";
|
|
36301
|
+
name: string;
|
|
36250
36302
|
defaultValue: string;
|
|
36251
36303
|
} | {
|
|
36304
|
+
id: string;
|
|
36305
|
+
options: string[];
|
|
36306
|
+
type: "Variant";
|
|
36307
|
+
name: string;
|
|
36308
|
+
defaultValue: string;
|
|
36309
|
+
} | {
|
|
36310
|
+
id: string;
|
|
36252
36311
|
type: "Text";
|
|
36312
|
+
name: string;
|
|
36253
36313
|
defaultValue: string;
|
|
36254
36314
|
}> | undefined;
|
|
36255
36315
|
}, {
|
|
@@ -36267,13 +36327,25 @@ declare const ComponentElementData: z.ZodObject<{
|
|
|
36267
36327
|
} | undefined;
|
|
36268
36328
|
parentComponentPersistentId?: string | null | undefined;
|
|
36269
36329
|
componentPropertyDefinitions?: Record<string, {
|
|
36330
|
+
id: string;
|
|
36270
36331
|
type: "Boolean";
|
|
36332
|
+
name: string;
|
|
36271
36333
|
defaultValue: boolean;
|
|
36272
36334
|
} | {
|
|
36335
|
+
id: string;
|
|
36273
36336
|
type: "InstanceSwap";
|
|
36337
|
+
name: string;
|
|
36338
|
+
defaultValue: string;
|
|
36339
|
+
} | {
|
|
36340
|
+
id: string;
|
|
36341
|
+
options: string[];
|
|
36342
|
+
type: "Variant";
|
|
36343
|
+
name: string;
|
|
36274
36344
|
defaultValue: string;
|
|
36275
36345
|
} | {
|
|
36346
|
+
id: string;
|
|
36276
36347
|
type: "Text";
|
|
36348
|
+
name: string;
|
|
36277
36349
|
defaultValue: string;
|
|
36278
36350
|
}> | null | undefined;
|
|
36279
36351
|
}>;
|
|
@@ -36293,13 +36365,25 @@ declare const ComponentElementData: z.ZodObject<{
|
|
|
36293
36365
|
} | undefined;
|
|
36294
36366
|
parentComponentPersistentId?: string | undefined;
|
|
36295
36367
|
componentPropertyDefinitions?: Record<string, {
|
|
36368
|
+
id: string;
|
|
36296
36369
|
type: "Boolean";
|
|
36370
|
+
name: string;
|
|
36297
36371
|
defaultValue: boolean;
|
|
36298
36372
|
} | {
|
|
36373
|
+
id: string;
|
|
36299
36374
|
type: "InstanceSwap";
|
|
36375
|
+
name: string;
|
|
36376
|
+
defaultValue: string;
|
|
36377
|
+
} | {
|
|
36378
|
+
id: string;
|
|
36379
|
+
options: string[];
|
|
36380
|
+
type: "Variant";
|
|
36381
|
+
name: string;
|
|
36300
36382
|
defaultValue: string;
|
|
36301
36383
|
} | {
|
|
36384
|
+
id: string;
|
|
36302
36385
|
type: "Text";
|
|
36386
|
+
name: string;
|
|
36303
36387
|
defaultValue: string;
|
|
36304
36388
|
}> | undefined;
|
|
36305
36389
|
};
|
|
@@ -36319,13 +36403,25 @@ declare const ComponentElementData: z.ZodObject<{
|
|
|
36319
36403
|
} | undefined;
|
|
36320
36404
|
parentComponentPersistentId?: string | null | undefined;
|
|
36321
36405
|
componentPropertyDefinitions?: Record<string, {
|
|
36406
|
+
id: string;
|
|
36322
36407
|
type: "Boolean";
|
|
36408
|
+
name: string;
|
|
36323
36409
|
defaultValue: boolean;
|
|
36324
36410
|
} | {
|
|
36411
|
+
id: string;
|
|
36325
36412
|
type: "InstanceSwap";
|
|
36413
|
+
name: string;
|
|
36326
36414
|
defaultValue: string;
|
|
36327
36415
|
} | {
|
|
36416
|
+
id: string;
|
|
36417
|
+
options: string[];
|
|
36418
|
+
type: "Variant";
|
|
36419
|
+
name: string;
|
|
36420
|
+
defaultValue: string;
|
|
36421
|
+
} | {
|
|
36422
|
+
id: string;
|
|
36328
36423
|
type: "Text";
|
|
36424
|
+
name: string;
|
|
36329
36425
|
defaultValue: string;
|
|
36330
36426
|
}> | null | undefined;
|
|
36331
36427
|
};
|
|
@@ -46351,6 +46447,21 @@ declare const FontWeightTokenData: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
46351
46447
|
}>;
|
|
46352
46448
|
type FontWeightTokenData = z.infer<typeof FontWeightTokenData>;
|
|
46353
46449
|
|
|
46450
|
+
declare const FontValue: z.ZodUnknown;
|
|
46451
|
+
type FontValue = z.infer<typeof FontValue>;
|
|
46452
|
+
declare const FontTokenData: z.ZodObject<z.objectUtil.extendShape<{
|
|
46453
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
46454
|
+
}, {
|
|
46455
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<unknown, z.ZodTypeDef, unknown>>>, unknown, unknown>;
|
|
46456
|
+
}>, "strip", z.ZodTypeAny, {
|
|
46457
|
+
value?: unknown;
|
|
46458
|
+
aliasTo?: string | undefined;
|
|
46459
|
+
}, {
|
|
46460
|
+
value?: unknown;
|
|
46461
|
+
aliasTo?: string | null | undefined;
|
|
46462
|
+
}>;
|
|
46463
|
+
type FontTokenData = z.infer<typeof FontTokenData>;
|
|
46464
|
+
|
|
46354
46465
|
declare const GradientType: z.ZodEnum<["Linear", "Radial", "Angular"]>;
|
|
46355
46466
|
type GradientType = z.infer<typeof GradientType>;
|
|
46356
46467
|
declare const GradientStop: z.ZodObject<{
|
|
@@ -50088,110 +50199,228 @@ declare const DesignElementSlugPart: z.ZodObject<{
|
|
|
50088
50199
|
}>;
|
|
50089
50200
|
type DesignElementSlugPart = z.infer<typeof DesignElementSlugPart>;
|
|
50090
50201
|
|
|
50202
|
+
declare const FigmaComponentPropertyOrigin: z.ZodObject<{
|
|
50203
|
+
id: z.ZodString;
|
|
50204
|
+
}, "strip", z.ZodTypeAny, {
|
|
50205
|
+
id: string;
|
|
50206
|
+
}, {
|
|
50207
|
+
id: string;
|
|
50208
|
+
}>;
|
|
50091
50209
|
declare const FigmaComponentPropertyType: z.ZodEnum<["Boolean", "InstanceSwap", "Variant", "Text"]>;
|
|
50092
50210
|
type FigmaComponentPropertyType = z.infer<typeof FigmaComponentPropertyType>;
|
|
50093
|
-
declare const FigmaComponentBooleanProperty: z.ZodObject<{
|
|
50211
|
+
declare const FigmaComponentBooleanProperty: z.ZodObject<z.objectUtil.extendShape<{
|
|
50212
|
+
id: z.ZodString;
|
|
50213
|
+
name: z.ZodString;
|
|
50214
|
+
}, {
|
|
50094
50215
|
type: z.ZodLiteral<"Boolean">;
|
|
50095
50216
|
defaultValue: z.ZodBoolean;
|
|
50096
|
-
}
|
|
50217
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50218
|
+
id: string;
|
|
50097
50219
|
type: "Boolean";
|
|
50220
|
+
name: string;
|
|
50098
50221
|
defaultValue: boolean;
|
|
50099
50222
|
}, {
|
|
50223
|
+
id: string;
|
|
50100
50224
|
type: "Boolean";
|
|
50225
|
+
name: string;
|
|
50101
50226
|
defaultValue: boolean;
|
|
50102
50227
|
}>;
|
|
50103
50228
|
type FigmaComponentBooleanProperty = z.infer<typeof FigmaComponentBooleanProperty>;
|
|
50104
|
-
declare const FigmaComponentInstanceSwapProperty: z.ZodObject<{
|
|
50229
|
+
declare const FigmaComponentInstanceSwapProperty: z.ZodObject<z.objectUtil.extendShape<{
|
|
50230
|
+
id: z.ZodString;
|
|
50231
|
+
name: z.ZodString;
|
|
50232
|
+
}, {
|
|
50105
50233
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
50106
50234
|
defaultValue: z.ZodString;
|
|
50107
|
-
}
|
|
50235
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50236
|
+
id: string;
|
|
50108
50237
|
type: "InstanceSwap";
|
|
50238
|
+
name: string;
|
|
50109
50239
|
defaultValue: string;
|
|
50110
50240
|
}, {
|
|
50241
|
+
id: string;
|
|
50111
50242
|
type: "InstanceSwap";
|
|
50243
|
+
name: string;
|
|
50112
50244
|
defaultValue: string;
|
|
50113
50245
|
}>;
|
|
50114
50246
|
type FigmaComponentInstanceSwapProperty = z.infer<typeof FigmaComponentInstanceSwapProperty>;
|
|
50115
|
-
declare const FigmaComponentVariantProperty: z.ZodObject<{
|
|
50247
|
+
declare const FigmaComponentVariantProperty: z.ZodObject<z.objectUtil.extendShape<{
|
|
50248
|
+
id: z.ZodString;
|
|
50249
|
+
name: z.ZodString;
|
|
50250
|
+
}, {
|
|
50116
50251
|
type: z.ZodLiteral<"Variant">;
|
|
50117
50252
|
defaultValue: z.ZodString;
|
|
50118
50253
|
options: z.ZodArray<z.ZodString, "many">;
|
|
50119
|
-
}
|
|
50254
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50255
|
+
id: string;
|
|
50120
50256
|
options: string[];
|
|
50121
50257
|
type: "Variant";
|
|
50258
|
+
name: string;
|
|
50122
50259
|
defaultValue: string;
|
|
50123
50260
|
}, {
|
|
50261
|
+
id: string;
|
|
50124
50262
|
options: string[];
|
|
50125
50263
|
type: "Variant";
|
|
50264
|
+
name: string;
|
|
50126
50265
|
defaultValue: string;
|
|
50127
50266
|
}>;
|
|
50128
50267
|
type FigmaComponentVariantProperty = z.infer<typeof FigmaComponentVariantProperty>;
|
|
50129
|
-
declare const FigmaComponentTextProperty: z.ZodObject<{
|
|
50268
|
+
declare const FigmaComponentTextProperty: z.ZodObject<z.objectUtil.extendShape<{
|
|
50269
|
+
id: z.ZodString;
|
|
50270
|
+
name: z.ZodString;
|
|
50271
|
+
}, {
|
|
50130
50272
|
type: z.ZodLiteral<"Text">;
|
|
50273
|
+
id: z.ZodString;
|
|
50131
50274
|
defaultValue: z.ZodString;
|
|
50132
|
-
}
|
|
50275
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50276
|
+
id: string;
|
|
50133
50277
|
type: "Text";
|
|
50278
|
+
name: string;
|
|
50134
50279
|
defaultValue: string;
|
|
50135
50280
|
}, {
|
|
50281
|
+
id: string;
|
|
50136
50282
|
type: "Text";
|
|
50283
|
+
name: string;
|
|
50137
50284
|
defaultValue: string;
|
|
50138
50285
|
}>;
|
|
50139
50286
|
type FigmaComponentTextProperty = z.infer<typeof FigmaComponentTextProperty>;
|
|
50140
|
-
declare const FigmaComponentProperty: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
50287
|
+
declare const FigmaComponentProperty: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
50288
|
+
id: z.ZodString;
|
|
50289
|
+
name: z.ZodString;
|
|
50290
|
+
}, {
|
|
50141
50291
|
type: z.ZodLiteral<"Boolean">;
|
|
50142
50292
|
defaultValue: z.ZodBoolean;
|
|
50143
|
-
}
|
|
50293
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50294
|
+
id: string;
|
|
50144
50295
|
type: "Boolean";
|
|
50296
|
+
name: string;
|
|
50145
50297
|
defaultValue: boolean;
|
|
50146
50298
|
}, {
|
|
50299
|
+
id: string;
|
|
50147
50300
|
type: "Boolean";
|
|
50301
|
+
name: string;
|
|
50148
50302
|
defaultValue: boolean;
|
|
50149
|
-
}>, z.ZodObject<{
|
|
50303
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
50304
|
+
id: z.ZodString;
|
|
50305
|
+
name: z.ZodString;
|
|
50306
|
+
}, {
|
|
50150
50307
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
50151
50308
|
defaultValue: z.ZodString;
|
|
50152
|
-
}
|
|
50309
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50310
|
+
id: string;
|
|
50153
50311
|
type: "InstanceSwap";
|
|
50312
|
+
name: string;
|
|
50154
50313
|
defaultValue: string;
|
|
50155
50314
|
}, {
|
|
50315
|
+
id: string;
|
|
50156
50316
|
type: "InstanceSwap";
|
|
50317
|
+
name: string;
|
|
50157
50318
|
defaultValue: string;
|
|
50158
|
-
}>, z.ZodObject<{
|
|
50319
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
50320
|
+
id: z.ZodString;
|
|
50321
|
+
name: z.ZodString;
|
|
50322
|
+
}, {
|
|
50159
50323
|
type: z.ZodLiteral<"Text">;
|
|
50324
|
+
id: z.ZodString;
|
|
50160
50325
|
defaultValue: z.ZodString;
|
|
50161
|
-
}
|
|
50326
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50327
|
+
id: string;
|
|
50162
50328
|
type: "Text";
|
|
50329
|
+
name: string;
|
|
50163
50330
|
defaultValue: string;
|
|
50164
50331
|
}, {
|
|
50332
|
+
id: string;
|
|
50165
50333
|
type: "Text";
|
|
50334
|
+
name: string;
|
|
50335
|
+
defaultValue: string;
|
|
50336
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
50337
|
+
id: z.ZodString;
|
|
50338
|
+
name: z.ZodString;
|
|
50339
|
+
}, {
|
|
50340
|
+
type: z.ZodLiteral<"Variant">;
|
|
50341
|
+
defaultValue: z.ZodString;
|
|
50342
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
50343
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50344
|
+
id: string;
|
|
50345
|
+
options: string[];
|
|
50346
|
+
type: "Variant";
|
|
50347
|
+
name: string;
|
|
50348
|
+
defaultValue: string;
|
|
50349
|
+
}, {
|
|
50350
|
+
id: string;
|
|
50351
|
+
options: string[];
|
|
50352
|
+
type: "Variant";
|
|
50353
|
+
name: string;
|
|
50166
50354
|
defaultValue: string;
|
|
50167
50355
|
}>]>;
|
|
50168
50356
|
type FigmaComponentProperty = z.infer<typeof FigmaComponentProperty>;
|
|
50169
|
-
declare const FigmaComponentPropertyMap: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
50357
|
+
declare const FigmaComponentPropertyMap: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
50358
|
+
id: z.ZodString;
|
|
50359
|
+
name: z.ZodString;
|
|
50360
|
+
}, {
|
|
50170
50361
|
type: z.ZodLiteral<"Boolean">;
|
|
50171
50362
|
defaultValue: z.ZodBoolean;
|
|
50172
|
-
}
|
|
50363
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50364
|
+
id: string;
|
|
50173
50365
|
type: "Boolean";
|
|
50366
|
+
name: string;
|
|
50174
50367
|
defaultValue: boolean;
|
|
50175
50368
|
}, {
|
|
50369
|
+
id: string;
|
|
50176
50370
|
type: "Boolean";
|
|
50371
|
+
name: string;
|
|
50177
50372
|
defaultValue: boolean;
|
|
50178
|
-
}>, z.ZodObject<{
|
|
50373
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
50374
|
+
id: z.ZodString;
|
|
50375
|
+
name: z.ZodString;
|
|
50376
|
+
}, {
|
|
50179
50377
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
50180
50378
|
defaultValue: z.ZodString;
|
|
50181
|
-
}
|
|
50379
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50380
|
+
id: string;
|
|
50182
50381
|
type: "InstanceSwap";
|
|
50382
|
+
name: string;
|
|
50183
50383
|
defaultValue: string;
|
|
50184
50384
|
}, {
|
|
50385
|
+
id: string;
|
|
50185
50386
|
type: "InstanceSwap";
|
|
50387
|
+
name: string;
|
|
50186
50388
|
defaultValue: string;
|
|
50187
|
-
}>, z.ZodObject<{
|
|
50389
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
50390
|
+
id: z.ZodString;
|
|
50391
|
+
name: z.ZodString;
|
|
50392
|
+
}, {
|
|
50188
50393
|
type: z.ZodLiteral<"Text">;
|
|
50394
|
+
id: z.ZodString;
|
|
50189
50395
|
defaultValue: z.ZodString;
|
|
50190
|
-
}
|
|
50396
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50397
|
+
id: string;
|
|
50191
50398
|
type: "Text";
|
|
50399
|
+
name: string;
|
|
50192
50400
|
defaultValue: string;
|
|
50193
50401
|
}, {
|
|
50402
|
+
id: string;
|
|
50194
50403
|
type: "Text";
|
|
50404
|
+
name: string;
|
|
50405
|
+
defaultValue: string;
|
|
50406
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
50407
|
+
id: z.ZodString;
|
|
50408
|
+
name: z.ZodString;
|
|
50409
|
+
}, {
|
|
50410
|
+
type: z.ZodLiteral<"Variant">;
|
|
50411
|
+
defaultValue: z.ZodString;
|
|
50412
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
50413
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50414
|
+
id: string;
|
|
50415
|
+
options: string[];
|
|
50416
|
+
type: "Variant";
|
|
50417
|
+
name: string;
|
|
50418
|
+
defaultValue: string;
|
|
50419
|
+
}, {
|
|
50420
|
+
id: string;
|
|
50421
|
+
options: string[];
|
|
50422
|
+
type: "Variant";
|
|
50423
|
+
name: string;
|
|
50195
50424
|
defaultValue: string;
|
|
50196
50425
|
}>]>>;
|
|
50197
50426
|
type FigmaComponentPropertyMap = z.infer<typeof FigmaComponentPropertyMap>;
|
|
@@ -54695,32 +54924,73 @@ declare const FigmaComponent: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
54695
54924
|
assetId: string;
|
|
54696
54925
|
assetPath: string;
|
|
54697
54926
|
}>;
|
|
54698
|
-
componentPropertyDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
54927
|
+
componentPropertyDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
54928
|
+
id: z.ZodString;
|
|
54929
|
+
name: z.ZodString;
|
|
54930
|
+
}, {
|
|
54699
54931
|
type: z.ZodLiteral<"Boolean">;
|
|
54700
54932
|
defaultValue: z.ZodBoolean;
|
|
54701
|
-
}
|
|
54933
|
+
}>, "strip", z.ZodTypeAny, {
|
|
54934
|
+
id: string;
|
|
54702
54935
|
type: "Boolean";
|
|
54936
|
+
name: string;
|
|
54703
54937
|
defaultValue: boolean;
|
|
54704
54938
|
}, {
|
|
54939
|
+
id: string;
|
|
54705
54940
|
type: "Boolean";
|
|
54941
|
+
name: string;
|
|
54706
54942
|
defaultValue: boolean;
|
|
54707
|
-
}>, z.ZodObject<{
|
|
54943
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
54944
|
+
id: z.ZodString;
|
|
54945
|
+
name: z.ZodString;
|
|
54946
|
+
}, {
|
|
54708
54947
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
54709
54948
|
defaultValue: z.ZodString;
|
|
54710
|
-
}
|
|
54949
|
+
}>, "strip", z.ZodTypeAny, {
|
|
54950
|
+
id: string;
|
|
54711
54951
|
type: "InstanceSwap";
|
|
54952
|
+
name: string;
|
|
54712
54953
|
defaultValue: string;
|
|
54713
54954
|
}, {
|
|
54955
|
+
id: string;
|
|
54714
54956
|
type: "InstanceSwap";
|
|
54957
|
+
name: string;
|
|
54715
54958
|
defaultValue: string;
|
|
54716
|
-
}>, z.ZodObject<{
|
|
54959
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
54960
|
+
id: z.ZodString;
|
|
54961
|
+
name: z.ZodString;
|
|
54962
|
+
}, {
|
|
54717
54963
|
type: z.ZodLiteral<"Text">;
|
|
54964
|
+
id: z.ZodString;
|
|
54718
54965
|
defaultValue: z.ZodString;
|
|
54719
|
-
}
|
|
54966
|
+
}>, "strip", z.ZodTypeAny, {
|
|
54967
|
+
id: string;
|
|
54720
54968
|
type: "Text";
|
|
54969
|
+
name: string;
|
|
54721
54970
|
defaultValue: string;
|
|
54722
54971
|
}, {
|
|
54972
|
+
id: string;
|
|
54723
54973
|
type: "Text";
|
|
54974
|
+
name: string;
|
|
54975
|
+
defaultValue: string;
|
|
54976
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
54977
|
+
id: z.ZodString;
|
|
54978
|
+
name: z.ZodString;
|
|
54979
|
+
}, {
|
|
54980
|
+
type: z.ZodLiteral<"Variant">;
|
|
54981
|
+
defaultValue: z.ZodString;
|
|
54982
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
54983
|
+
}>, "strip", z.ZodTypeAny, {
|
|
54984
|
+
id: string;
|
|
54985
|
+
options: string[];
|
|
54986
|
+
type: "Variant";
|
|
54987
|
+
name: string;
|
|
54988
|
+
defaultValue: string;
|
|
54989
|
+
}, {
|
|
54990
|
+
id: string;
|
|
54991
|
+
options: string[];
|
|
54992
|
+
type: "Variant";
|
|
54993
|
+
name: string;
|
|
54724
54994
|
defaultValue: string;
|
|
54725
54995
|
}>]>>>;
|
|
54726
54996
|
svg: z.ZodOptional<z.ZodObject<{
|
|
@@ -54767,13 +55037,25 @@ declare const FigmaComponent: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
54767
55037
|
} | undefined;
|
|
54768
55038
|
parentComponentPersistentId?: string | undefined;
|
|
54769
55039
|
componentPropertyDefinitions?: Record<string, {
|
|
55040
|
+
id: string;
|
|
54770
55041
|
type: "Boolean";
|
|
55042
|
+
name: string;
|
|
54771
55043
|
defaultValue: boolean;
|
|
54772
55044
|
} | {
|
|
55045
|
+
id: string;
|
|
54773
55046
|
type: "InstanceSwap";
|
|
55047
|
+
name: string;
|
|
54774
55048
|
defaultValue: string;
|
|
54775
55049
|
} | {
|
|
55050
|
+
id: string;
|
|
55051
|
+
options: string[];
|
|
55052
|
+
type: "Variant";
|
|
55053
|
+
name: string;
|
|
55054
|
+
defaultValue: string;
|
|
55055
|
+
} | {
|
|
55056
|
+
id: string;
|
|
54776
55057
|
type: "Text";
|
|
55058
|
+
name: string;
|
|
54777
55059
|
defaultValue: string;
|
|
54778
55060
|
}> | undefined;
|
|
54779
55061
|
}, {
|
|
@@ -54808,13 +55090,25 @@ declare const FigmaComponent: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
54808
55090
|
} | undefined;
|
|
54809
55091
|
parentComponentPersistentId?: string | null | undefined;
|
|
54810
55092
|
componentPropertyDefinitions?: Record<string, {
|
|
55093
|
+
id: string;
|
|
54811
55094
|
type: "Boolean";
|
|
55095
|
+
name: string;
|
|
54812
55096
|
defaultValue: boolean;
|
|
54813
55097
|
} | {
|
|
55098
|
+
id: string;
|
|
54814
55099
|
type: "InstanceSwap";
|
|
55100
|
+
name: string;
|
|
55101
|
+
defaultValue: string;
|
|
55102
|
+
} | {
|
|
55103
|
+
id: string;
|
|
55104
|
+
options: string[];
|
|
55105
|
+
type: "Variant";
|
|
55106
|
+
name: string;
|
|
54815
55107
|
defaultValue: string;
|
|
54816
55108
|
} | {
|
|
55109
|
+
id: string;
|
|
54817
55110
|
type: "Text";
|
|
55111
|
+
name: string;
|
|
54818
55112
|
defaultValue: string;
|
|
54819
55113
|
}> | undefined;
|
|
54820
55114
|
}>;
|
|
@@ -58783,13 +59077,29 @@ declare const ThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
58783
59077
|
};
|
|
58784
59078
|
}>, z.ZodObject<{
|
|
58785
59079
|
type: z.ZodLiteral<"Font">;
|
|
58786
|
-
data: z.
|
|
59080
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
59081
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
59082
|
+
}, {
|
|
59083
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<unknown, z.ZodTypeDef, unknown>>>, unknown, unknown>;
|
|
59084
|
+
}>, "strip", z.ZodTypeAny, {
|
|
59085
|
+
value?: unknown;
|
|
59086
|
+
aliasTo?: string | undefined;
|
|
59087
|
+
}, {
|
|
59088
|
+
value?: unknown;
|
|
59089
|
+
aliasTo?: string | null | undefined;
|
|
59090
|
+
}>;
|
|
58787
59091
|
}, "strip", z.ZodTypeAny, {
|
|
58788
59092
|
type: "Font";
|
|
58789
|
-
data:
|
|
59093
|
+
data: {
|
|
59094
|
+
value?: unknown;
|
|
59095
|
+
aliasTo?: string | undefined;
|
|
59096
|
+
};
|
|
58790
59097
|
}, {
|
|
58791
59098
|
type: "Font";
|
|
58792
|
-
data:
|
|
59099
|
+
data: {
|
|
59100
|
+
value?: unknown;
|
|
59101
|
+
aliasTo?: string | null | undefined;
|
|
59102
|
+
};
|
|
58793
59103
|
}>]>, z.ZodObject<{
|
|
58794
59104
|
tokenPersistentId: z.ZodString;
|
|
58795
59105
|
origin: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -61079,13 +61389,29 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
61079
61389
|
};
|
|
61080
61390
|
}>, z.ZodObject<{
|
|
61081
61391
|
type: z.ZodLiteral<"Font">;
|
|
61082
|
-
data: z.
|
|
61392
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
61393
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
61394
|
+
}, {
|
|
61395
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<unknown, z.ZodTypeDef, unknown>>>, unknown, unknown>;
|
|
61396
|
+
}>, "strip", z.ZodTypeAny, {
|
|
61397
|
+
value?: unknown;
|
|
61398
|
+
aliasTo?: string | undefined;
|
|
61399
|
+
}, {
|
|
61400
|
+
value?: unknown;
|
|
61401
|
+
aliasTo?: string | null | undefined;
|
|
61402
|
+
}>;
|
|
61083
61403
|
}, "strip", z.ZodTypeAny, {
|
|
61084
61404
|
type: "Font";
|
|
61085
|
-
data:
|
|
61405
|
+
data: {
|
|
61406
|
+
value?: unknown;
|
|
61407
|
+
aliasTo?: string | undefined;
|
|
61408
|
+
};
|
|
61086
61409
|
}, {
|
|
61087
61410
|
type: "Font";
|
|
61088
|
-
data:
|
|
61411
|
+
data: {
|
|
61412
|
+
value?: unknown;
|
|
61413
|
+
aliasTo?: string | null | undefined;
|
|
61414
|
+
};
|
|
61089
61415
|
}>]>, z.ZodObject<{
|
|
61090
61416
|
tokenPersistentId: z.ZodString;
|
|
61091
61417
|
origin: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -61523,7 +61849,10 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
61523
61849
|
};
|
|
61524
61850
|
} | {
|
|
61525
61851
|
type: "Font";
|
|
61526
|
-
data:
|
|
61852
|
+
data: {
|
|
61853
|
+
value?: unknown;
|
|
61854
|
+
aliasTo?: string | undefined;
|
|
61855
|
+
};
|
|
61527
61856
|
}) & {
|
|
61528
61857
|
tokenPersistentId: string;
|
|
61529
61858
|
origin?: {
|
|
@@ -61888,7 +62217,10 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
61888
62217
|
};
|
|
61889
62218
|
} | {
|
|
61890
62219
|
type: "Font";
|
|
61891
|
-
data:
|
|
62220
|
+
data: {
|
|
62221
|
+
value?: unknown;
|
|
62222
|
+
aliasTo?: string | null | undefined;
|
|
62223
|
+
};
|
|
61892
62224
|
}) & {
|
|
61893
62225
|
tokenPersistentId: string;
|
|
61894
62226
|
origin?: {
|
|
@@ -62255,7 +62587,10 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
62255
62587
|
};
|
|
62256
62588
|
} | {
|
|
62257
62589
|
type: "Font";
|
|
62258
|
-
data:
|
|
62590
|
+
data: {
|
|
62591
|
+
value?: unknown;
|
|
62592
|
+
aliasTo?: string | undefined;
|
|
62593
|
+
};
|
|
62259
62594
|
}) & {
|
|
62260
62595
|
tokenPersistentId: string;
|
|
62261
62596
|
origin?: {
|
|
@@ -62622,7 +62957,10 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
62622
62957
|
};
|
|
62623
62958
|
} | {
|
|
62624
62959
|
type: "Font";
|
|
62625
|
-
data:
|
|
62960
|
+
data: {
|
|
62961
|
+
value?: unknown;
|
|
62962
|
+
aliasTo?: string | null | undefined;
|
|
62963
|
+
};
|
|
62626
62964
|
}) & {
|
|
62627
62965
|
tokenPersistentId: string;
|
|
62628
62966
|
origin?: {
|
|
@@ -64899,13 +65237,29 @@ declare const Theme: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendSha
|
|
|
64899
65237
|
};
|
|
64900
65238
|
}>, z.ZodObject<{
|
|
64901
65239
|
type: z.ZodLiteral<"Font">;
|
|
64902
|
-
data: z.
|
|
65240
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
65241
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
65242
|
+
}, {
|
|
65243
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<unknown, z.ZodTypeDef, unknown>>>, unknown, unknown>;
|
|
65244
|
+
}>, "strip", z.ZodTypeAny, {
|
|
65245
|
+
value?: unknown;
|
|
65246
|
+
aliasTo?: string | undefined;
|
|
65247
|
+
}, {
|
|
65248
|
+
value?: unknown;
|
|
65249
|
+
aliasTo?: string | null | undefined;
|
|
65250
|
+
}>;
|
|
64903
65251
|
}, "strip", z.ZodTypeAny, {
|
|
64904
65252
|
type: "Font";
|
|
64905
|
-
data:
|
|
65253
|
+
data: {
|
|
65254
|
+
value?: unknown;
|
|
65255
|
+
aliasTo?: string | undefined;
|
|
65256
|
+
};
|
|
64906
65257
|
}, {
|
|
64907
65258
|
type: "Font";
|
|
64908
|
-
data:
|
|
65259
|
+
data: {
|
|
65260
|
+
value?: unknown;
|
|
65261
|
+
aliasTo?: string | null | undefined;
|
|
65262
|
+
};
|
|
64909
65263
|
}>]>, z.ZodObject<{
|
|
64910
65264
|
tokenPersistentId: z.ZodString;
|
|
64911
65265
|
origin: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -65355,7 +65709,10 @@ declare const Theme: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendSha
|
|
|
65355
65709
|
};
|
|
65356
65710
|
} | {
|
|
65357
65711
|
type: "Font";
|
|
65358
|
-
data:
|
|
65712
|
+
data: {
|
|
65713
|
+
value?: unknown;
|
|
65714
|
+
aliasTo?: string | undefined;
|
|
65715
|
+
};
|
|
65359
65716
|
}) & {
|
|
65360
65717
|
tokenPersistentId: string;
|
|
65361
65718
|
origin?: {
|
|
@@ -65740,7 +66097,10 @@ declare const Theme: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendSha
|
|
|
65740
66097
|
};
|
|
65741
66098
|
} | {
|
|
65742
66099
|
type: "Font";
|
|
65743
|
-
data:
|
|
66100
|
+
data: {
|
|
66101
|
+
value?: unknown;
|
|
66102
|
+
aliasTo?: string | null | undefined;
|
|
66103
|
+
};
|
|
65744
66104
|
}) & {
|
|
65745
66105
|
tokenPersistentId: string;
|
|
65746
66106
|
origin?: {
|
|
@@ -68223,13 +68583,29 @@ declare const DesignTokenTypedData: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
68223
68583
|
};
|
|
68224
68584
|
}>, z.ZodObject<{
|
|
68225
68585
|
type: z.ZodLiteral<"Font">;
|
|
68226
|
-
data: z.
|
|
68586
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
68587
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
68588
|
+
}, {
|
|
68589
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<unknown, z.ZodTypeDef, unknown>>>, unknown, unknown>;
|
|
68590
|
+
}>, "strip", z.ZodTypeAny, {
|
|
68591
|
+
value?: unknown;
|
|
68592
|
+
aliasTo?: string | undefined;
|
|
68593
|
+
}, {
|
|
68594
|
+
value?: unknown;
|
|
68595
|
+
aliasTo?: string | null | undefined;
|
|
68596
|
+
}>;
|
|
68227
68597
|
}, "strip", z.ZodTypeAny, {
|
|
68228
68598
|
type: "Font";
|
|
68229
|
-
data:
|
|
68599
|
+
data: {
|
|
68600
|
+
value?: unknown;
|
|
68601
|
+
aliasTo?: string | undefined;
|
|
68602
|
+
};
|
|
68230
68603
|
}, {
|
|
68231
68604
|
type: "Font";
|
|
68232
|
-
data:
|
|
68605
|
+
data: {
|
|
68606
|
+
value?: unknown;
|
|
68607
|
+
aliasTo?: string | null | undefined;
|
|
68608
|
+
};
|
|
68233
68609
|
}>]>;
|
|
68234
68610
|
type DesignTokenTypedData = z.infer<typeof DesignTokenTypedData>;
|
|
68235
68611
|
type DesignTokenTypedDataOfType<T extends DesignTokenType> = Extract<DesignTokenTypedData, {
|
|
@@ -70430,13 +70806,29 @@ declare const DesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.
|
|
|
70430
70806
|
};
|
|
70431
70807
|
}>, z.ZodObject<{
|
|
70432
70808
|
type: z.ZodLiteral<"Font">;
|
|
70433
|
-
data: z.
|
|
70809
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
70810
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
70811
|
+
}, {
|
|
70812
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<unknown, z.ZodTypeDef, unknown>>>, unknown, unknown>;
|
|
70813
|
+
}>, "strip", z.ZodTypeAny, {
|
|
70814
|
+
value?: unknown;
|
|
70815
|
+
aliasTo?: string | undefined;
|
|
70816
|
+
}, {
|
|
70817
|
+
value?: unknown;
|
|
70818
|
+
aliasTo?: string | null | undefined;
|
|
70819
|
+
}>;
|
|
70434
70820
|
}, "strip", z.ZodTypeAny, {
|
|
70435
70821
|
type: "Font";
|
|
70436
|
-
data:
|
|
70822
|
+
data: {
|
|
70823
|
+
value?: unknown;
|
|
70824
|
+
aliasTo?: string | undefined;
|
|
70825
|
+
};
|
|
70437
70826
|
}, {
|
|
70438
70827
|
type: "Font";
|
|
70439
|
-
data:
|
|
70828
|
+
data: {
|
|
70829
|
+
value?: unknown;
|
|
70830
|
+
aliasTo?: string | null | undefined;
|
|
70831
|
+
};
|
|
70440
70832
|
}>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
70441
70833
|
id: z.ZodString;
|
|
70442
70834
|
persistentId: z.ZodString;
|
|
@@ -72752,13 +73144,29 @@ declare const CreateDesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type
|
|
|
72752
73144
|
};
|
|
72753
73145
|
}>, z.ZodObject<{
|
|
72754
73146
|
type: z.ZodLiteral<"Font">;
|
|
72755
|
-
data: z.
|
|
73147
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
73148
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
73149
|
+
}, {
|
|
73150
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<unknown, z.ZodTypeDef, unknown>>>, unknown, unknown>;
|
|
73151
|
+
}>, "strip", z.ZodTypeAny, {
|
|
73152
|
+
value?: unknown;
|
|
73153
|
+
aliasTo?: string | undefined;
|
|
73154
|
+
}, {
|
|
73155
|
+
value?: unknown;
|
|
73156
|
+
aliasTo?: string | null | undefined;
|
|
73157
|
+
}>;
|
|
72756
73158
|
}, "strip", z.ZodTypeAny, {
|
|
72757
73159
|
type: "Font";
|
|
72758
|
-
data:
|
|
73160
|
+
data: {
|
|
73161
|
+
value?: unknown;
|
|
73162
|
+
aliasTo?: string | undefined;
|
|
73163
|
+
};
|
|
72759
73164
|
}, {
|
|
72760
73165
|
type: "Font";
|
|
72761
|
-
data:
|
|
73166
|
+
data: {
|
|
73167
|
+
value?: unknown;
|
|
73168
|
+
aliasTo?: string | null | undefined;
|
|
73169
|
+
};
|
|
72762
73170
|
}>]>, z.ZodObject<Omit<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
72763
73171
|
id: z.ZodString;
|
|
72764
73172
|
persistentId: z.ZodString;
|
|
@@ -80447,13 +80855,29 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
80447
80855
|
};
|
|
80448
80856
|
}>, z.ZodObject<{
|
|
80449
80857
|
type: z.ZodLiteral<"Font">;
|
|
80450
|
-
data: z.
|
|
80858
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
80859
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
80860
|
+
}, {
|
|
80861
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<unknown, z.ZodTypeDef, unknown>>>, unknown, unknown>;
|
|
80862
|
+
}>, "strip", z.ZodTypeAny, {
|
|
80863
|
+
value?: unknown;
|
|
80864
|
+
aliasTo?: string | undefined;
|
|
80865
|
+
}, {
|
|
80866
|
+
value?: unknown;
|
|
80867
|
+
aliasTo?: string | null | undefined;
|
|
80868
|
+
}>;
|
|
80451
80869
|
}, "strip", z.ZodTypeAny, {
|
|
80452
80870
|
type: "Font";
|
|
80453
|
-
data:
|
|
80871
|
+
data: {
|
|
80872
|
+
value?: unknown;
|
|
80873
|
+
aliasTo?: string | undefined;
|
|
80874
|
+
};
|
|
80454
80875
|
}, {
|
|
80455
80876
|
type: "Font";
|
|
80456
|
-
data:
|
|
80877
|
+
data: {
|
|
80878
|
+
value?: unknown;
|
|
80879
|
+
aliasTo?: string | null | undefined;
|
|
80880
|
+
};
|
|
80457
80881
|
}>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
80458
80882
|
id: z.ZodString;
|
|
80459
80883
|
meta: z.ZodObject<{
|
|
@@ -80669,32 +81093,73 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
80669
81093
|
fileVersionId?: string | undefined;
|
|
80670
81094
|
}>]>]>;
|
|
80671
81095
|
parentComponentId: z.ZodOptional<z.ZodString>;
|
|
80672
|
-
componentPropertyDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
81096
|
+
componentPropertyDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
81097
|
+
id: z.ZodString;
|
|
81098
|
+
name: z.ZodString;
|
|
81099
|
+
}, {
|
|
80673
81100
|
type: z.ZodLiteral<"Boolean">;
|
|
80674
81101
|
defaultValue: z.ZodBoolean;
|
|
80675
|
-
}
|
|
81102
|
+
}>, "strip", z.ZodTypeAny, {
|
|
81103
|
+
id: string;
|
|
80676
81104
|
type: "Boolean";
|
|
81105
|
+
name: string;
|
|
80677
81106
|
defaultValue: boolean;
|
|
80678
81107
|
}, {
|
|
81108
|
+
id: string;
|
|
80679
81109
|
type: "Boolean";
|
|
81110
|
+
name: string;
|
|
80680
81111
|
defaultValue: boolean;
|
|
80681
|
-
}>, z.ZodObject<{
|
|
81112
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
81113
|
+
id: z.ZodString;
|
|
81114
|
+
name: z.ZodString;
|
|
81115
|
+
}, {
|
|
80682
81116
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
80683
81117
|
defaultValue: z.ZodString;
|
|
80684
|
-
}
|
|
81118
|
+
}>, "strip", z.ZodTypeAny, {
|
|
81119
|
+
id: string;
|
|
80685
81120
|
type: "InstanceSwap";
|
|
81121
|
+
name: string;
|
|
80686
81122
|
defaultValue: string;
|
|
80687
81123
|
}, {
|
|
81124
|
+
id: string;
|
|
80688
81125
|
type: "InstanceSwap";
|
|
81126
|
+
name: string;
|
|
80689
81127
|
defaultValue: string;
|
|
80690
|
-
}>, z.ZodObject<{
|
|
81128
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
81129
|
+
id: z.ZodString;
|
|
81130
|
+
name: z.ZodString;
|
|
81131
|
+
}, {
|
|
80691
81132
|
type: z.ZodLiteral<"Text">;
|
|
81133
|
+
id: z.ZodString;
|
|
80692
81134
|
defaultValue: z.ZodString;
|
|
80693
|
-
}
|
|
81135
|
+
}>, "strip", z.ZodTypeAny, {
|
|
81136
|
+
id: string;
|
|
80694
81137
|
type: "Text";
|
|
81138
|
+
name: string;
|
|
80695
81139
|
defaultValue: string;
|
|
80696
81140
|
}, {
|
|
81141
|
+
id: string;
|
|
80697
81142
|
type: "Text";
|
|
81143
|
+
name: string;
|
|
81144
|
+
defaultValue: string;
|
|
81145
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
81146
|
+
id: z.ZodString;
|
|
81147
|
+
name: z.ZodString;
|
|
81148
|
+
}, {
|
|
81149
|
+
type: z.ZodLiteral<"Variant">;
|
|
81150
|
+
defaultValue: z.ZodString;
|
|
81151
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
81152
|
+
}>, "strip", z.ZodTypeAny, {
|
|
81153
|
+
id: string;
|
|
81154
|
+
options: string[];
|
|
81155
|
+
type: "Variant";
|
|
81156
|
+
name: string;
|
|
81157
|
+
defaultValue: string;
|
|
81158
|
+
}, {
|
|
81159
|
+
id: string;
|
|
81160
|
+
options: string[];
|
|
81161
|
+
type: "Variant";
|
|
81162
|
+
name: string;
|
|
80698
81163
|
defaultValue: string;
|
|
80699
81164
|
}>]>>>;
|
|
80700
81165
|
}>, {
|
|
@@ -80800,13 +81265,25 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
80800
81265
|
fileVersionId?: string | undefined;
|
|
80801
81266
|
} | undefined;
|
|
80802
81267
|
componentPropertyDefinitions?: Record<string, {
|
|
81268
|
+
id: string;
|
|
80803
81269
|
type: "Boolean";
|
|
81270
|
+
name: string;
|
|
80804
81271
|
defaultValue: boolean;
|
|
80805
81272
|
} | {
|
|
81273
|
+
id: string;
|
|
80806
81274
|
type: "InstanceSwap";
|
|
81275
|
+
name: string;
|
|
80807
81276
|
defaultValue: string;
|
|
80808
81277
|
} | {
|
|
81278
|
+
id: string;
|
|
81279
|
+
options: string[];
|
|
81280
|
+
type: "Variant";
|
|
81281
|
+
name: string;
|
|
81282
|
+
defaultValue: string;
|
|
81283
|
+
} | {
|
|
81284
|
+
id: string;
|
|
80809
81285
|
type: "Text";
|
|
81286
|
+
name: string;
|
|
80810
81287
|
defaultValue: string;
|
|
80811
81288
|
}> | undefined;
|
|
80812
81289
|
parentComponentId?: string | undefined;
|
|
@@ -80861,13 +81338,25 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
80861
81338
|
fileVersionId?: string | undefined;
|
|
80862
81339
|
} | undefined;
|
|
80863
81340
|
componentPropertyDefinitions?: Record<string, {
|
|
81341
|
+
id: string;
|
|
80864
81342
|
type: "Boolean";
|
|
81343
|
+
name: string;
|
|
80865
81344
|
defaultValue: boolean;
|
|
80866
81345
|
} | {
|
|
81346
|
+
id: string;
|
|
80867
81347
|
type: "InstanceSwap";
|
|
81348
|
+
name: string;
|
|
80868
81349
|
defaultValue: string;
|
|
80869
81350
|
} | {
|
|
81351
|
+
id: string;
|
|
81352
|
+
options: string[];
|
|
81353
|
+
type: "Variant";
|
|
81354
|
+
name: string;
|
|
81355
|
+
defaultValue: string;
|
|
81356
|
+
} | {
|
|
81357
|
+
id: string;
|
|
80870
81358
|
type: "Text";
|
|
81359
|
+
name: string;
|
|
80871
81360
|
defaultValue: string;
|
|
80872
81361
|
}> | undefined;
|
|
80873
81362
|
parentComponentId?: string | undefined;
|
|
@@ -83069,13 +83558,29 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
83069
83558
|
};
|
|
83070
83559
|
}>, z.ZodObject<{
|
|
83071
83560
|
type: z.ZodLiteral<"Font">;
|
|
83072
|
-
data: z.
|
|
83561
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
83562
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
83563
|
+
}, {
|
|
83564
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<unknown, z.ZodTypeDef, unknown>>>, unknown, unknown>;
|
|
83565
|
+
}>, "strip", z.ZodTypeAny, {
|
|
83566
|
+
value?: unknown;
|
|
83567
|
+
aliasTo?: string | undefined;
|
|
83568
|
+
}, {
|
|
83569
|
+
value?: unknown;
|
|
83570
|
+
aliasTo?: string | null | undefined;
|
|
83571
|
+
}>;
|
|
83073
83572
|
}, "strip", z.ZodTypeAny, {
|
|
83074
83573
|
type: "Font";
|
|
83075
|
-
data:
|
|
83574
|
+
data: {
|
|
83575
|
+
value?: unknown;
|
|
83576
|
+
aliasTo?: string | undefined;
|
|
83577
|
+
};
|
|
83076
83578
|
}, {
|
|
83077
83579
|
type: "Font";
|
|
83078
|
-
data:
|
|
83580
|
+
data: {
|
|
83581
|
+
value?: unknown;
|
|
83582
|
+
aliasTo?: string | null | undefined;
|
|
83583
|
+
};
|
|
83079
83584
|
}>]>, z.ZodObject<{
|
|
83080
83585
|
id: z.ZodString;
|
|
83081
83586
|
meta: z.ZodObject<{
|
|
@@ -83512,7 +84017,10 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
83512
84017
|
};
|
|
83513
84018
|
} | {
|
|
83514
84019
|
type: "Font";
|
|
83515
|
-
data:
|
|
84020
|
+
data: {
|
|
84021
|
+
value?: unknown;
|
|
84022
|
+
aliasTo?: string | undefined;
|
|
84023
|
+
};
|
|
83516
84024
|
}) & {
|
|
83517
84025
|
id: string;
|
|
83518
84026
|
meta: {
|
|
@@ -83883,7 +84391,10 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
83883
84391
|
};
|
|
83884
84392
|
} | {
|
|
83885
84393
|
type: "Font";
|
|
83886
|
-
data:
|
|
84394
|
+
data: {
|
|
84395
|
+
value?: unknown;
|
|
84396
|
+
aliasTo?: string | null | undefined;
|
|
84397
|
+
};
|
|
83887
84398
|
}) & {
|
|
83888
84399
|
id: string;
|
|
83889
84400
|
meta: {
|
|
@@ -86138,13 +86649,29 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86138
86649
|
};
|
|
86139
86650
|
}>, z.ZodObject<{
|
|
86140
86651
|
type: z.ZodLiteral<"Font">;
|
|
86141
|
-
data: z.
|
|
86652
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
86653
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
86654
|
+
}, {
|
|
86655
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<unknown, z.ZodTypeDef, unknown>>>, unknown, unknown>;
|
|
86656
|
+
}>, "strip", z.ZodTypeAny, {
|
|
86657
|
+
value?: unknown;
|
|
86658
|
+
aliasTo?: string | undefined;
|
|
86659
|
+
}, {
|
|
86660
|
+
value?: unknown;
|
|
86661
|
+
aliasTo?: string | null | undefined;
|
|
86662
|
+
}>;
|
|
86142
86663
|
}, "strip", z.ZodTypeAny, {
|
|
86143
86664
|
type: "Font";
|
|
86144
|
-
data:
|
|
86665
|
+
data: {
|
|
86666
|
+
value?: unknown;
|
|
86667
|
+
aliasTo?: string | undefined;
|
|
86668
|
+
};
|
|
86145
86669
|
}, {
|
|
86146
86670
|
type: "Font";
|
|
86147
|
-
data:
|
|
86671
|
+
data: {
|
|
86672
|
+
value?: unknown;
|
|
86673
|
+
aliasTo?: string | null | undefined;
|
|
86674
|
+
};
|
|
86148
86675
|
}>]>, z.ZodObject<{
|
|
86149
86676
|
id: z.ZodString;
|
|
86150
86677
|
meta: z.ZodObject<{
|
|
@@ -86588,7 +87115,10 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86588
87115
|
};
|
|
86589
87116
|
} | {
|
|
86590
87117
|
type: "Font";
|
|
86591
|
-
data:
|
|
87118
|
+
data: {
|
|
87119
|
+
value?: unknown;
|
|
87120
|
+
aliasTo?: string | undefined;
|
|
87121
|
+
};
|
|
86592
87122
|
}) & {
|
|
86593
87123
|
id: string;
|
|
86594
87124
|
meta: {
|
|
@@ -86971,7 +87501,10 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86971
87501
|
};
|
|
86972
87502
|
} | {
|
|
86973
87503
|
type: "Font";
|
|
86974
|
-
data:
|
|
87504
|
+
data: {
|
|
87505
|
+
value?: unknown;
|
|
87506
|
+
aliasTo?: string | null | undefined;
|
|
87507
|
+
};
|
|
86975
87508
|
}) & {
|
|
86976
87509
|
id: string;
|
|
86977
87510
|
meta: {
|
|
@@ -87700,7 +88233,10 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
87700
88233
|
};
|
|
87701
88234
|
} | {
|
|
87702
88235
|
type: "Font";
|
|
87703
|
-
data:
|
|
88236
|
+
data: {
|
|
88237
|
+
value?: unknown;
|
|
88238
|
+
aliasTo?: string | undefined;
|
|
88239
|
+
};
|
|
87704
88240
|
}) & {
|
|
87705
88241
|
id: string;
|
|
87706
88242
|
meta: {
|
|
@@ -87780,13 +88316,25 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
87780
88316
|
fileVersionId?: string | undefined;
|
|
87781
88317
|
} | undefined;
|
|
87782
88318
|
componentPropertyDefinitions?: Record<string, {
|
|
88319
|
+
id: string;
|
|
87783
88320
|
type: "Boolean";
|
|
88321
|
+
name: string;
|
|
87784
88322
|
defaultValue: boolean;
|
|
87785
88323
|
} | {
|
|
88324
|
+
id: string;
|
|
87786
88325
|
type: "InstanceSwap";
|
|
88326
|
+
name: string;
|
|
87787
88327
|
defaultValue: string;
|
|
87788
88328
|
} | {
|
|
88329
|
+
id: string;
|
|
88330
|
+
options: string[];
|
|
88331
|
+
type: "Variant";
|
|
88332
|
+
name: string;
|
|
88333
|
+
defaultValue: string;
|
|
88334
|
+
} | {
|
|
88335
|
+
id: string;
|
|
87789
88336
|
type: "Text";
|
|
88337
|
+
name: string;
|
|
87790
88338
|
defaultValue: string;
|
|
87791
88339
|
}> | undefined;
|
|
87792
88340
|
parentComponentId?: string | undefined;
|
|
@@ -88144,7 +88692,10 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
88144
88692
|
};
|
|
88145
88693
|
} | {
|
|
88146
88694
|
type: "Font";
|
|
88147
|
-
data:
|
|
88695
|
+
data: {
|
|
88696
|
+
value?: unknown;
|
|
88697
|
+
aliasTo?: string | undefined;
|
|
88698
|
+
};
|
|
88148
88699
|
}) & {
|
|
88149
88700
|
id: string;
|
|
88150
88701
|
origin: {
|
|
@@ -88517,7 +89068,10 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
88517
89068
|
};
|
|
88518
89069
|
} | {
|
|
88519
89070
|
type: "Font";
|
|
88520
|
-
data:
|
|
89071
|
+
data: {
|
|
89072
|
+
value?: unknown;
|
|
89073
|
+
aliasTo?: string | undefined;
|
|
89074
|
+
};
|
|
88521
89075
|
}) & {
|
|
88522
89076
|
id: string;
|
|
88523
89077
|
meta: {
|
|
@@ -89031,7 +89585,10 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
89031
89585
|
};
|
|
89032
89586
|
} | {
|
|
89033
89587
|
type: "Font";
|
|
89034
|
-
data:
|
|
89588
|
+
data: {
|
|
89589
|
+
value?: unknown;
|
|
89590
|
+
aliasTo?: string | null | undefined;
|
|
89591
|
+
};
|
|
89035
89592
|
}) & {
|
|
89036
89593
|
id: string;
|
|
89037
89594
|
meta: {
|
|
@@ -89111,13 +89668,25 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
89111
89668
|
fileVersionId?: string | undefined;
|
|
89112
89669
|
} | undefined;
|
|
89113
89670
|
componentPropertyDefinitions?: Record<string, {
|
|
89671
|
+
id: string;
|
|
89114
89672
|
type: "Boolean";
|
|
89673
|
+
name: string;
|
|
89115
89674
|
defaultValue: boolean;
|
|
89116
89675
|
} | {
|
|
89676
|
+
id: string;
|
|
89117
89677
|
type: "InstanceSwap";
|
|
89678
|
+
name: string;
|
|
89679
|
+
defaultValue: string;
|
|
89680
|
+
} | {
|
|
89681
|
+
id: string;
|
|
89682
|
+
options: string[];
|
|
89683
|
+
type: "Variant";
|
|
89684
|
+
name: string;
|
|
89118
89685
|
defaultValue: string;
|
|
89119
89686
|
} | {
|
|
89687
|
+
id: string;
|
|
89120
89688
|
type: "Text";
|
|
89689
|
+
name: string;
|
|
89121
89690
|
defaultValue: string;
|
|
89122
89691
|
}> | undefined;
|
|
89123
89692
|
parentComponentId?: string | undefined;
|
|
@@ -89470,7 +90039,10 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
89470
90039
|
};
|
|
89471
90040
|
} | {
|
|
89472
90041
|
type: "Font";
|
|
89473
|
-
data:
|
|
90042
|
+
data: {
|
|
90043
|
+
value?: unknown;
|
|
90044
|
+
aliasTo?: string | null | undefined;
|
|
90045
|
+
};
|
|
89474
90046
|
}) & {
|
|
89475
90047
|
id: string;
|
|
89476
90048
|
origin: {
|
|
@@ -89843,7 +90415,10 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
89843
90415
|
};
|
|
89844
90416
|
} | {
|
|
89845
90417
|
type: "Font";
|
|
89846
|
-
data:
|
|
90418
|
+
data: {
|
|
90419
|
+
value?: unknown;
|
|
90420
|
+
aliasTo?: string | null | undefined;
|
|
90421
|
+
};
|
|
89847
90422
|
}) & {
|
|
89848
90423
|
id: string;
|
|
89849
90424
|
meta: {
|
|
@@ -92077,13 +92652,29 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
92077
92652
|
};
|
|
92078
92653
|
}>, z.ZodObject<{
|
|
92079
92654
|
type: z.ZodLiteral<"Font">;
|
|
92080
|
-
data: z.
|
|
92655
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
92656
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
92657
|
+
}, {
|
|
92658
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<unknown, z.ZodTypeDef, unknown>>>, unknown, unknown>;
|
|
92659
|
+
}>, "strip", z.ZodTypeAny, {
|
|
92660
|
+
value?: unknown;
|
|
92661
|
+
aliasTo?: string | undefined;
|
|
92662
|
+
}, {
|
|
92663
|
+
value?: unknown;
|
|
92664
|
+
aliasTo?: string | null | undefined;
|
|
92665
|
+
}>;
|
|
92081
92666
|
}, "strip", z.ZodTypeAny, {
|
|
92082
92667
|
type: "Font";
|
|
92083
|
-
data:
|
|
92668
|
+
data: {
|
|
92669
|
+
value?: unknown;
|
|
92670
|
+
aliasTo?: string | undefined;
|
|
92671
|
+
};
|
|
92084
92672
|
}, {
|
|
92085
92673
|
type: "Font";
|
|
92086
|
-
data:
|
|
92674
|
+
data: {
|
|
92675
|
+
value?: unknown;
|
|
92676
|
+
aliasTo?: string | null | undefined;
|
|
92677
|
+
};
|
|
92087
92678
|
}>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<Omit<{
|
|
92088
92679
|
id: z.ZodString;
|
|
92089
92680
|
meta: z.ZodObject<{
|
|
@@ -92287,32 +92878,73 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
92287
92878
|
fileVersionId?: string | undefined;
|
|
92288
92879
|
}>]>]>;
|
|
92289
92880
|
parentComponentId: z.ZodOptional<z.ZodString>;
|
|
92290
|
-
componentPropertyDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
92881
|
+
componentPropertyDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
92882
|
+
id: z.ZodString;
|
|
92883
|
+
name: z.ZodString;
|
|
92884
|
+
}, {
|
|
92291
92885
|
type: z.ZodLiteral<"Boolean">;
|
|
92292
92886
|
defaultValue: z.ZodBoolean;
|
|
92293
|
-
}
|
|
92887
|
+
}>, "strip", z.ZodTypeAny, {
|
|
92888
|
+
id: string;
|
|
92294
92889
|
type: "Boolean";
|
|
92890
|
+
name: string;
|
|
92295
92891
|
defaultValue: boolean;
|
|
92296
92892
|
}, {
|
|
92893
|
+
id: string;
|
|
92297
92894
|
type: "Boolean";
|
|
92895
|
+
name: string;
|
|
92298
92896
|
defaultValue: boolean;
|
|
92299
|
-
}>, z.ZodObject<{
|
|
92897
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
92898
|
+
id: z.ZodString;
|
|
92899
|
+
name: z.ZodString;
|
|
92900
|
+
}, {
|
|
92300
92901
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
92301
92902
|
defaultValue: z.ZodString;
|
|
92302
|
-
}
|
|
92903
|
+
}>, "strip", z.ZodTypeAny, {
|
|
92904
|
+
id: string;
|
|
92303
92905
|
type: "InstanceSwap";
|
|
92906
|
+
name: string;
|
|
92304
92907
|
defaultValue: string;
|
|
92305
92908
|
}, {
|
|
92909
|
+
id: string;
|
|
92306
92910
|
type: "InstanceSwap";
|
|
92911
|
+
name: string;
|
|
92307
92912
|
defaultValue: string;
|
|
92308
|
-
}>, z.ZodObject<{
|
|
92913
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
92914
|
+
id: z.ZodString;
|
|
92915
|
+
name: z.ZodString;
|
|
92916
|
+
}, {
|
|
92309
92917
|
type: z.ZodLiteral<"Text">;
|
|
92918
|
+
id: z.ZodString;
|
|
92310
92919
|
defaultValue: z.ZodString;
|
|
92311
|
-
}
|
|
92920
|
+
}>, "strip", z.ZodTypeAny, {
|
|
92921
|
+
id: string;
|
|
92312
92922
|
type: "Text";
|
|
92923
|
+
name: string;
|
|
92313
92924
|
defaultValue: string;
|
|
92314
92925
|
}, {
|
|
92926
|
+
id: string;
|
|
92315
92927
|
type: "Text";
|
|
92928
|
+
name: string;
|
|
92929
|
+
defaultValue: string;
|
|
92930
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
92931
|
+
id: z.ZodString;
|
|
92932
|
+
name: z.ZodString;
|
|
92933
|
+
}, {
|
|
92934
|
+
type: z.ZodLiteral<"Variant">;
|
|
92935
|
+
defaultValue: z.ZodString;
|
|
92936
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
92937
|
+
}>, "strip", z.ZodTypeAny, {
|
|
92938
|
+
id: string;
|
|
92939
|
+
options: string[];
|
|
92940
|
+
type: "Variant";
|
|
92941
|
+
name: string;
|
|
92942
|
+
defaultValue: string;
|
|
92943
|
+
}, {
|
|
92944
|
+
id: string;
|
|
92945
|
+
options: string[];
|
|
92946
|
+
type: "Variant";
|
|
92947
|
+
name: string;
|
|
92316
92948
|
defaultValue: string;
|
|
92317
92949
|
}>]>>>;
|
|
92318
92950
|
}>, {
|
|
@@ -92366,13 +92998,25 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
92366
92998
|
nodeId?: string | undefined;
|
|
92367
92999
|
};
|
|
92368
93000
|
componentPropertyDefinitions?: Record<string, {
|
|
93001
|
+
id: string;
|
|
92369
93002
|
type: "Boolean";
|
|
93003
|
+
name: string;
|
|
92370
93004
|
defaultValue: boolean;
|
|
92371
93005
|
} | {
|
|
93006
|
+
id: string;
|
|
92372
93007
|
type: "InstanceSwap";
|
|
93008
|
+
name: string;
|
|
92373
93009
|
defaultValue: string;
|
|
92374
93010
|
} | {
|
|
93011
|
+
id: string;
|
|
93012
|
+
options: string[];
|
|
93013
|
+
type: "Variant";
|
|
93014
|
+
name: string;
|
|
93015
|
+
defaultValue: string;
|
|
93016
|
+
} | {
|
|
93017
|
+
id: string;
|
|
92375
93018
|
type: "Text";
|
|
93019
|
+
name: string;
|
|
92376
93020
|
defaultValue: string;
|
|
92377
93021
|
}> | undefined;
|
|
92378
93022
|
parentComponentId?: string | undefined;
|
|
@@ -92413,13 +93057,25 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
92413
93057
|
nodeId?: string | undefined;
|
|
92414
93058
|
};
|
|
92415
93059
|
componentPropertyDefinitions?: Record<string, {
|
|
93060
|
+
id: string;
|
|
92416
93061
|
type: "Boolean";
|
|
93062
|
+
name: string;
|
|
92417
93063
|
defaultValue: boolean;
|
|
92418
93064
|
} | {
|
|
93065
|
+
id: string;
|
|
92419
93066
|
type: "InstanceSwap";
|
|
93067
|
+
name: string;
|
|
92420
93068
|
defaultValue: string;
|
|
92421
93069
|
} | {
|
|
93070
|
+
id: string;
|
|
93071
|
+
options: string[];
|
|
93072
|
+
type: "Variant";
|
|
93073
|
+
name: string;
|
|
93074
|
+
defaultValue: string;
|
|
93075
|
+
} | {
|
|
93076
|
+
id: string;
|
|
92422
93077
|
type: "Text";
|
|
93078
|
+
name: string;
|
|
92423
93079
|
defaultValue: string;
|
|
92424
93080
|
}> | undefined;
|
|
92425
93081
|
parentComponentId?: string | undefined;
|
|
@@ -92531,32 +93187,73 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
92531
93187
|
fileVersionId?: string | undefined;
|
|
92532
93188
|
}>]>]>;
|
|
92533
93189
|
parentComponentId: z.ZodOptional<z.ZodString>;
|
|
92534
|
-
componentPropertyDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
93190
|
+
componentPropertyDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
93191
|
+
id: z.ZodString;
|
|
93192
|
+
name: z.ZodString;
|
|
93193
|
+
}, {
|
|
92535
93194
|
type: z.ZodLiteral<"Boolean">;
|
|
92536
93195
|
defaultValue: z.ZodBoolean;
|
|
92537
|
-
}
|
|
93196
|
+
}>, "strip", z.ZodTypeAny, {
|
|
93197
|
+
id: string;
|
|
92538
93198
|
type: "Boolean";
|
|
93199
|
+
name: string;
|
|
92539
93200
|
defaultValue: boolean;
|
|
92540
93201
|
}, {
|
|
93202
|
+
id: string;
|
|
92541
93203
|
type: "Boolean";
|
|
93204
|
+
name: string;
|
|
92542
93205
|
defaultValue: boolean;
|
|
92543
|
-
}>, z.ZodObject<{
|
|
93206
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
93207
|
+
id: z.ZodString;
|
|
93208
|
+
name: z.ZodString;
|
|
93209
|
+
}, {
|
|
92544
93210
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
92545
93211
|
defaultValue: z.ZodString;
|
|
92546
|
-
}
|
|
93212
|
+
}>, "strip", z.ZodTypeAny, {
|
|
93213
|
+
id: string;
|
|
92547
93214
|
type: "InstanceSwap";
|
|
93215
|
+
name: string;
|
|
92548
93216
|
defaultValue: string;
|
|
92549
93217
|
}, {
|
|
93218
|
+
id: string;
|
|
92550
93219
|
type: "InstanceSwap";
|
|
93220
|
+
name: string;
|
|
92551
93221
|
defaultValue: string;
|
|
92552
|
-
}>, z.ZodObject<{
|
|
93222
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
93223
|
+
id: z.ZodString;
|
|
93224
|
+
name: z.ZodString;
|
|
93225
|
+
}, {
|
|
92553
93226
|
type: z.ZodLiteral<"Text">;
|
|
93227
|
+
id: z.ZodString;
|
|
92554
93228
|
defaultValue: z.ZodString;
|
|
92555
|
-
}
|
|
93229
|
+
}>, "strip", z.ZodTypeAny, {
|
|
93230
|
+
id: string;
|
|
92556
93231
|
type: "Text";
|
|
93232
|
+
name: string;
|
|
92557
93233
|
defaultValue: string;
|
|
92558
93234
|
}, {
|
|
93235
|
+
id: string;
|
|
92559
93236
|
type: "Text";
|
|
93237
|
+
name: string;
|
|
93238
|
+
defaultValue: string;
|
|
93239
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
93240
|
+
id: z.ZodString;
|
|
93241
|
+
name: z.ZodString;
|
|
93242
|
+
}, {
|
|
93243
|
+
type: z.ZodLiteral<"Variant">;
|
|
93244
|
+
defaultValue: z.ZodString;
|
|
93245
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
93246
|
+
}>, "strip", z.ZodTypeAny, {
|
|
93247
|
+
id: string;
|
|
93248
|
+
options: string[];
|
|
93249
|
+
type: "Variant";
|
|
93250
|
+
name: string;
|
|
93251
|
+
defaultValue: string;
|
|
93252
|
+
}, {
|
|
93253
|
+
id: string;
|
|
93254
|
+
options: string[];
|
|
93255
|
+
type: "Variant";
|
|
93256
|
+
name: string;
|
|
92560
93257
|
defaultValue: string;
|
|
92561
93258
|
}>]>>>;
|
|
92562
93259
|
}>, {
|
|
@@ -92646,13 +93343,25 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
92646
93343
|
nodeId?: string | undefined;
|
|
92647
93344
|
};
|
|
92648
93345
|
componentPropertyDefinitions?: Record<string, {
|
|
93346
|
+
id: string;
|
|
92649
93347
|
type: "Boolean";
|
|
93348
|
+
name: string;
|
|
92650
93349
|
defaultValue: boolean;
|
|
92651
93350
|
} | {
|
|
93351
|
+
id: string;
|
|
92652
93352
|
type: "InstanceSwap";
|
|
93353
|
+
name: string;
|
|
92653
93354
|
defaultValue: string;
|
|
92654
93355
|
} | {
|
|
93356
|
+
id: string;
|
|
93357
|
+
options: string[];
|
|
93358
|
+
type: "Variant";
|
|
93359
|
+
name: string;
|
|
93360
|
+
defaultValue: string;
|
|
93361
|
+
} | {
|
|
93362
|
+
id: string;
|
|
92655
93363
|
type: "Text";
|
|
93364
|
+
name: string;
|
|
92656
93365
|
defaultValue: string;
|
|
92657
93366
|
}> | undefined;
|
|
92658
93367
|
parentComponentId?: string | undefined;
|
|
@@ -92702,13 +93411,25 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
92702
93411
|
nodeId?: string | undefined;
|
|
92703
93412
|
};
|
|
92704
93413
|
componentPropertyDefinitions?: Record<string, {
|
|
93414
|
+
id: string;
|
|
92705
93415
|
type: "Boolean";
|
|
93416
|
+
name: string;
|
|
92706
93417
|
defaultValue: boolean;
|
|
92707
93418
|
} | {
|
|
93419
|
+
id: string;
|
|
92708
93420
|
type: "InstanceSwap";
|
|
93421
|
+
name: string;
|
|
93422
|
+
defaultValue: string;
|
|
93423
|
+
} | {
|
|
93424
|
+
id: string;
|
|
93425
|
+
options: string[];
|
|
93426
|
+
type: "Variant";
|
|
93427
|
+
name: string;
|
|
92709
93428
|
defaultValue: string;
|
|
92710
93429
|
} | {
|
|
93430
|
+
id: string;
|
|
92711
93431
|
type: "Text";
|
|
93432
|
+
name: string;
|
|
92712
93433
|
defaultValue: string;
|
|
92713
93434
|
}> | undefined;
|
|
92714
93435
|
parentComponentId?: string | undefined;
|
|
@@ -94910,13 +95631,29 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
94910
95631
|
};
|
|
94911
95632
|
}>, z.ZodObject<{
|
|
94912
95633
|
type: z.ZodLiteral<"Font">;
|
|
94913
|
-
data: z.
|
|
95634
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
95635
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
95636
|
+
}, {
|
|
95637
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<unknown, z.ZodTypeDef, unknown>>>, unknown, unknown>;
|
|
95638
|
+
}>, "strip", z.ZodTypeAny, {
|
|
95639
|
+
value?: unknown;
|
|
95640
|
+
aliasTo?: string | undefined;
|
|
95641
|
+
}, {
|
|
95642
|
+
value?: unknown;
|
|
95643
|
+
aliasTo?: string | null | undefined;
|
|
95644
|
+
}>;
|
|
94914
95645
|
}, "strip", z.ZodTypeAny, {
|
|
94915
95646
|
type: "Font";
|
|
94916
|
-
data:
|
|
95647
|
+
data: {
|
|
95648
|
+
value?: unknown;
|
|
95649
|
+
aliasTo?: string | undefined;
|
|
95650
|
+
};
|
|
94917
95651
|
}, {
|
|
94918
95652
|
type: "Font";
|
|
94919
|
-
data:
|
|
95653
|
+
data: {
|
|
95654
|
+
value?: unknown;
|
|
95655
|
+
aliasTo?: string | null | undefined;
|
|
95656
|
+
};
|
|
94920
95657
|
}>]>, z.ZodObject<{
|
|
94921
95658
|
id: z.ZodString;
|
|
94922
95659
|
meta: z.ZodObject<{
|
|
@@ -95340,7 +96077,10 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
95340
96077
|
};
|
|
95341
96078
|
} | {
|
|
95342
96079
|
type: "Font";
|
|
95343
|
-
data:
|
|
96080
|
+
data: {
|
|
96081
|
+
value?: unknown;
|
|
96082
|
+
aliasTo?: string | undefined;
|
|
96083
|
+
};
|
|
95344
96084
|
}) & {
|
|
95345
96085
|
id: string;
|
|
95346
96086
|
meta: {
|
|
@@ -95709,7 +96449,10 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
95709
96449
|
};
|
|
95710
96450
|
} | {
|
|
95711
96451
|
type: "Font";
|
|
95712
|
-
data:
|
|
96452
|
+
data: {
|
|
96453
|
+
value?: unknown;
|
|
96454
|
+
aliasTo?: string | null | undefined;
|
|
96455
|
+
};
|
|
95713
96456
|
}) & {
|
|
95714
96457
|
id: string;
|
|
95715
96458
|
meta: {
|
|
@@ -97946,13 +98689,29 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
97946
98689
|
};
|
|
97947
98690
|
}>, z.ZodObject<{
|
|
97948
98691
|
type: z.ZodLiteral<"Font">;
|
|
97949
|
-
data: z.
|
|
98692
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
98693
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
98694
|
+
}, {
|
|
98695
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<unknown, z.ZodTypeDef, unknown>>>, unknown, unknown>;
|
|
98696
|
+
}>, "strip", z.ZodTypeAny, {
|
|
98697
|
+
value?: unknown;
|
|
98698
|
+
aliasTo?: string | undefined;
|
|
98699
|
+
}, {
|
|
98700
|
+
value?: unknown;
|
|
98701
|
+
aliasTo?: string | null | undefined;
|
|
98702
|
+
}>;
|
|
97950
98703
|
}, "strip", z.ZodTypeAny, {
|
|
97951
98704
|
type: "Font";
|
|
97952
|
-
data:
|
|
98705
|
+
data: {
|
|
98706
|
+
value?: unknown;
|
|
98707
|
+
aliasTo?: string | undefined;
|
|
98708
|
+
};
|
|
97953
98709
|
}, {
|
|
97954
98710
|
type: "Font";
|
|
97955
|
-
data:
|
|
98711
|
+
data: {
|
|
98712
|
+
value?: unknown;
|
|
98713
|
+
aliasTo?: string | null | undefined;
|
|
98714
|
+
};
|
|
97956
98715
|
}>]>, z.ZodObject<{
|
|
97957
98716
|
id: z.ZodString;
|
|
97958
98717
|
meta: z.ZodObject<{
|
|
@@ -98380,7 +99139,10 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
98380
99139
|
};
|
|
98381
99140
|
} | {
|
|
98382
99141
|
type: "Font";
|
|
98383
|
-
data:
|
|
99142
|
+
data: {
|
|
99143
|
+
value?: unknown;
|
|
99144
|
+
aliasTo?: string | undefined;
|
|
99145
|
+
};
|
|
98384
99146
|
}) & {
|
|
98385
99147
|
id: string;
|
|
98386
99148
|
meta: {
|
|
@@ -98756,7 +99518,10 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
98756
99518
|
};
|
|
98757
99519
|
} | {
|
|
98758
99520
|
type: "Font";
|
|
98759
|
-
data:
|
|
99521
|
+
data: {
|
|
99522
|
+
value?: unknown;
|
|
99523
|
+
aliasTo?: string | null | undefined;
|
|
99524
|
+
};
|
|
98760
99525
|
}) & {
|
|
98761
99526
|
id: string;
|
|
98762
99527
|
meta: {
|
|
@@ -99466,7 +100231,10 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
99466
100231
|
};
|
|
99467
100232
|
} | {
|
|
99468
100233
|
type: "Font";
|
|
99469
|
-
data:
|
|
100234
|
+
data: {
|
|
100235
|
+
value?: unknown;
|
|
100236
|
+
aliasTo?: string | undefined;
|
|
100237
|
+
};
|
|
99470
100238
|
}) & {
|
|
99471
100239
|
id: string;
|
|
99472
100240
|
meta: {
|
|
@@ -99541,13 +100309,25 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
99541
100309
|
nodeId?: string | undefined;
|
|
99542
100310
|
};
|
|
99543
100311
|
componentPropertyDefinitions?: Record<string, {
|
|
100312
|
+
id: string;
|
|
99544
100313
|
type: "Boolean";
|
|
100314
|
+
name: string;
|
|
99545
100315
|
defaultValue: boolean;
|
|
99546
100316
|
} | {
|
|
100317
|
+
id: string;
|
|
99547
100318
|
type: "InstanceSwap";
|
|
100319
|
+
name: string;
|
|
99548
100320
|
defaultValue: string;
|
|
99549
100321
|
} | {
|
|
100322
|
+
id: string;
|
|
100323
|
+
options: string[];
|
|
100324
|
+
type: "Variant";
|
|
100325
|
+
name: string;
|
|
100326
|
+
defaultValue: string;
|
|
100327
|
+
} | {
|
|
100328
|
+
id: string;
|
|
99550
100329
|
type: "Text";
|
|
100330
|
+
name: string;
|
|
99551
100331
|
defaultValue: string;
|
|
99552
100332
|
}> | undefined;
|
|
99553
100333
|
parentComponentId?: string | undefined;
|
|
@@ -99589,13 +100369,25 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
99589
100369
|
nodeId?: string | undefined;
|
|
99590
100370
|
};
|
|
99591
100371
|
componentPropertyDefinitions?: Record<string, {
|
|
100372
|
+
id: string;
|
|
99592
100373
|
type: "Boolean";
|
|
100374
|
+
name: string;
|
|
99593
100375
|
defaultValue: boolean;
|
|
99594
100376
|
} | {
|
|
100377
|
+
id: string;
|
|
99595
100378
|
type: "InstanceSwap";
|
|
100379
|
+
name: string;
|
|
100380
|
+
defaultValue: string;
|
|
100381
|
+
} | {
|
|
100382
|
+
id: string;
|
|
100383
|
+
options: string[];
|
|
100384
|
+
type: "Variant";
|
|
100385
|
+
name: string;
|
|
99596
100386
|
defaultValue: string;
|
|
99597
100387
|
} | {
|
|
100388
|
+
id: string;
|
|
99598
100389
|
type: "Text";
|
|
100390
|
+
name: string;
|
|
99599
100391
|
defaultValue: string;
|
|
99600
100392
|
}> | undefined;
|
|
99601
100393
|
parentComponentId?: string | undefined;
|
|
@@ -99948,7 +100740,10 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
99948
100740
|
};
|
|
99949
100741
|
} | {
|
|
99950
100742
|
type: "Font";
|
|
99951
|
-
data:
|
|
100743
|
+
data: {
|
|
100744
|
+
value?: unknown;
|
|
100745
|
+
aliasTo?: string | undefined;
|
|
100746
|
+
};
|
|
99952
100747
|
}) & {
|
|
99953
100748
|
id: string;
|
|
99954
100749
|
meta: {
|
|
@@ -100317,7 +101112,10 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100317
101112
|
};
|
|
100318
101113
|
} | {
|
|
100319
101114
|
type: "Font";
|
|
100320
|
-
data:
|
|
101115
|
+
data: {
|
|
101116
|
+
value?: unknown;
|
|
101117
|
+
aliasTo?: string | undefined;
|
|
101118
|
+
};
|
|
100321
101119
|
}) & {
|
|
100322
101120
|
id: string;
|
|
100323
101121
|
meta: {
|
|
@@ -100745,7 +101543,10 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100745
101543
|
};
|
|
100746
101544
|
} | {
|
|
100747
101545
|
type: "Font";
|
|
100748
|
-
data:
|
|
101546
|
+
data: {
|
|
101547
|
+
value?: unknown;
|
|
101548
|
+
aliasTo?: string | null | undefined;
|
|
101549
|
+
};
|
|
100749
101550
|
}) & {
|
|
100750
101551
|
id: string;
|
|
100751
101552
|
meta: {
|
|
@@ -100815,13 +101616,25 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100815
101616
|
nodeId?: string | undefined;
|
|
100816
101617
|
};
|
|
100817
101618
|
componentPropertyDefinitions?: Record<string, {
|
|
101619
|
+
id: string;
|
|
100818
101620
|
type: "Boolean";
|
|
101621
|
+
name: string;
|
|
100819
101622
|
defaultValue: boolean;
|
|
100820
101623
|
} | {
|
|
101624
|
+
id: string;
|
|
100821
101625
|
type: "InstanceSwap";
|
|
101626
|
+
name: string;
|
|
100822
101627
|
defaultValue: string;
|
|
100823
101628
|
} | {
|
|
101629
|
+
id: string;
|
|
101630
|
+
options: string[];
|
|
101631
|
+
type: "Variant";
|
|
101632
|
+
name: string;
|
|
101633
|
+
defaultValue: string;
|
|
101634
|
+
} | {
|
|
101635
|
+
id: string;
|
|
100824
101636
|
type: "Text";
|
|
101637
|
+
name: string;
|
|
100825
101638
|
defaultValue: string;
|
|
100826
101639
|
}> | undefined;
|
|
100827
101640
|
parentComponentId?: string | undefined;
|
|
@@ -100863,13 +101676,25 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100863
101676
|
nodeId?: string | undefined;
|
|
100864
101677
|
};
|
|
100865
101678
|
componentPropertyDefinitions?: Record<string, {
|
|
101679
|
+
id: string;
|
|
100866
101680
|
type: "Boolean";
|
|
101681
|
+
name: string;
|
|
100867
101682
|
defaultValue: boolean;
|
|
100868
101683
|
} | {
|
|
101684
|
+
id: string;
|
|
100869
101685
|
type: "InstanceSwap";
|
|
101686
|
+
name: string;
|
|
100870
101687
|
defaultValue: string;
|
|
100871
101688
|
} | {
|
|
101689
|
+
id: string;
|
|
101690
|
+
options: string[];
|
|
101691
|
+
type: "Variant";
|
|
101692
|
+
name: string;
|
|
101693
|
+
defaultValue: string;
|
|
101694
|
+
} | {
|
|
101695
|
+
id: string;
|
|
100872
101696
|
type: "Text";
|
|
101697
|
+
name: string;
|
|
100873
101698
|
defaultValue: string;
|
|
100874
101699
|
}> | undefined;
|
|
100875
101700
|
parentComponentId?: string | undefined;
|
|
@@ -101222,7 +102047,10 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
101222
102047
|
};
|
|
101223
102048
|
} | {
|
|
101224
102049
|
type: "Font";
|
|
101225
|
-
data:
|
|
102050
|
+
data: {
|
|
102051
|
+
value?: unknown;
|
|
102052
|
+
aliasTo?: string | null | undefined;
|
|
102053
|
+
};
|
|
101226
102054
|
}) & {
|
|
101227
102055
|
id: string;
|
|
101228
102056
|
meta: {
|
|
@@ -101591,7 +102419,10 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
101591
102419
|
};
|
|
101592
102420
|
} | {
|
|
101593
102421
|
type: "Font";
|
|
101594
|
-
data:
|
|
102422
|
+
data: {
|
|
102423
|
+
value?: unknown;
|
|
102424
|
+
aliasTo?: string | null | undefined;
|
|
102425
|
+
};
|
|
101595
102426
|
}) & {
|
|
101596
102427
|
id: string;
|
|
101597
102428
|
meta: {
|
|
@@ -101796,32 +102627,73 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
101796
102627
|
fileVersionId?: string | undefined;
|
|
101797
102628
|
}>]>]>;
|
|
101798
102629
|
parentComponentId: z.ZodOptional<z.ZodString>;
|
|
101799
|
-
componentPropertyDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
102630
|
+
componentPropertyDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
102631
|
+
id: z.ZodString;
|
|
102632
|
+
name: z.ZodString;
|
|
102633
|
+
}, {
|
|
101800
102634
|
type: z.ZodLiteral<"Boolean">;
|
|
101801
102635
|
defaultValue: z.ZodBoolean;
|
|
101802
|
-
}
|
|
102636
|
+
}>, "strip", z.ZodTypeAny, {
|
|
102637
|
+
id: string;
|
|
101803
102638
|
type: "Boolean";
|
|
102639
|
+
name: string;
|
|
101804
102640
|
defaultValue: boolean;
|
|
101805
102641
|
}, {
|
|
102642
|
+
id: string;
|
|
101806
102643
|
type: "Boolean";
|
|
102644
|
+
name: string;
|
|
101807
102645
|
defaultValue: boolean;
|
|
101808
|
-
}>, z.ZodObject<{
|
|
102646
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
102647
|
+
id: z.ZodString;
|
|
102648
|
+
name: z.ZodString;
|
|
102649
|
+
}, {
|
|
101809
102650
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
101810
102651
|
defaultValue: z.ZodString;
|
|
101811
|
-
}
|
|
102652
|
+
}>, "strip", z.ZodTypeAny, {
|
|
102653
|
+
id: string;
|
|
101812
102654
|
type: "InstanceSwap";
|
|
102655
|
+
name: string;
|
|
101813
102656
|
defaultValue: string;
|
|
101814
102657
|
}, {
|
|
102658
|
+
id: string;
|
|
101815
102659
|
type: "InstanceSwap";
|
|
102660
|
+
name: string;
|
|
101816
102661
|
defaultValue: string;
|
|
101817
|
-
}>, z.ZodObject<{
|
|
102662
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
102663
|
+
id: z.ZodString;
|
|
102664
|
+
name: z.ZodString;
|
|
102665
|
+
}, {
|
|
101818
102666
|
type: z.ZodLiteral<"Text">;
|
|
102667
|
+
id: z.ZodString;
|
|
101819
102668
|
defaultValue: z.ZodString;
|
|
101820
|
-
}
|
|
102669
|
+
}>, "strip", z.ZodTypeAny, {
|
|
102670
|
+
id: string;
|
|
101821
102671
|
type: "Text";
|
|
102672
|
+
name: string;
|
|
101822
102673
|
defaultValue: string;
|
|
101823
102674
|
}, {
|
|
102675
|
+
id: string;
|
|
101824
102676
|
type: "Text";
|
|
102677
|
+
name: string;
|
|
102678
|
+
defaultValue: string;
|
|
102679
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
102680
|
+
id: z.ZodString;
|
|
102681
|
+
name: z.ZodString;
|
|
102682
|
+
}, {
|
|
102683
|
+
type: z.ZodLiteral<"Variant">;
|
|
102684
|
+
defaultValue: z.ZodString;
|
|
102685
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
102686
|
+
}>, "strip", z.ZodTypeAny, {
|
|
102687
|
+
id: string;
|
|
102688
|
+
options: string[];
|
|
102689
|
+
type: "Variant";
|
|
102690
|
+
name: string;
|
|
102691
|
+
defaultValue: string;
|
|
102692
|
+
}, {
|
|
102693
|
+
id: string;
|
|
102694
|
+
options: string[];
|
|
102695
|
+
type: "Variant";
|
|
102696
|
+
name: string;
|
|
101825
102697
|
defaultValue: string;
|
|
101826
102698
|
}>]>>>;
|
|
101827
102699
|
}>, {
|
|
@@ -101927,13 +102799,25 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
101927
102799
|
fileVersionId?: string | undefined;
|
|
101928
102800
|
} | undefined;
|
|
101929
102801
|
componentPropertyDefinitions?: Record<string, {
|
|
102802
|
+
id: string;
|
|
101930
102803
|
type: "Boolean";
|
|
102804
|
+
name: string;
|
|
101931
102805
|
defaultValue: boolean;
|
|
101932
102806
|
} | {
|
|
102807
|
+
id: string;
|
|
101933
102808
|
type: "InstanceSwap";
|
|
102809
|
+
name: string;
|
|
102810
|
+
defaultValue: string;
|
|
102811
|
+
} | {
|
|
102812
|
+
id: string;
|
|
102813
|
+
options: string[];
|
|
102814
|
+
type: "Variant";
|
|
102815
|
+
name: string;
|
|
101934
102816
|
defaultValue: string;
|
|
101935
102817
|
} | {
|
|
102818
|
+
id: string;
|
|
101936
102819
|
type: "Text";
|
|
102820
|
+
name: string;
|
|
101937
102821
|
defaultValue: string;
|
|
101938
102822
|
}> | undefined;
|
|
101939
102823
|
parentComponentId?: string | undefined;
|
|
@@ -101988,13 +102872,25 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
101988
102872
|
fileVersionId?: string | undefined;
|
|
101989
102873
|
} | undefined;
|
|
101990
102874
|
componentPropertyDefinitions?: Record<string, {
|
|
102875
|
+
id: string;
|
|
101991
102876
|
type: "Boolean";
|
|
102877
|
+
name: string;
|
|
101992
102878
|
defaultValue: boolean;
|
|
101993
102879
|
} | {
|
|
102880
|
+
id: string;
|
|
101994
102881
|
type: "InstanceSwap";
|
|
102882
|
+
name: string;
|
|
101995
102883
|
defaultValue: string;
|
|
101996
102884
|
} | {
|
|
102885
|
+
id: string;
|
|
102886
|
+
options: string[];
|
|
102887
|
+
type: "Variant";
|
|
102888
|
+
name: string;
|
|
102889
|
+
defaultValue: string;
|
|
102890
|
+
} | {
|
|
102891
|
+
id: string;
|
|
101997
102892
|
type: "Text";
|
|
102893
|
+
name: string;
|
|
101998
102894
|
defaultValue: string;
|
|
101999
102895
|
}> | undefined;
|
|
102000
102896
|
parentComponentId?: string | undefined;
|
|
@@ -102107,32 +103003,73 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
|
|
|
102107
103003
|
fileVersionId?: string | undefined;
|
|
102108
103004
|
}>]>]>;
|
|
102109
103005
|
parentComponentId: z.ZodOptional<z.ZodString>;
|
|
102110
|
-
componentPropertyDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
103006
|
+
componentPropertyDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
103007
|
+
id: z.ZodString;
|
|
103008
|
+
name: z.ZodString;
|
|
103009
|
+
}, {
|
|
102111
103010
|
type: z.ZodLiteral<"Boolean">;
|
|
102112
103011
|
defaultValue: z.ZodBoolean;
|
|
102113
|
-
}
|
|
103012
|
+
}>, "strip", z.ZodTypeAny, {
|
|
103013
|
+
id: string;
|
|
102114
103014
|
type: "Boolean";
|
|
103015
|
+
name: string;
|
|
102115
103016
|
defaultValue: boolean;
|
|
102116
103017
|
}, {
|
|
103018
|
+
id: string;
|
|
102117
103019
|
type: "Boolean";
|
|
103020
|
+
name: string;
|
|
102118
103021
|
defaultValue: boolean;
|
|
102119
|
-
}>, z.ZodObject<{
|
|
103022
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
103023
|
+
id: z.ZodString;
|
|
103024
|
+
name: z.ZodString;
|
|
103025
|
+
}, {
|
|
102120
103026
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
102121
103027
|
defaultValue: z.ZodString;
|
|
102122
|
-
}
|
|
103028
|
+
}>, "strip", z.ZodTypeAny, {
|
|
103029
|
+
id: string;
|
|
102123
103030
|
type: "InstanceSwap";
|
|
103031
|
+
name: string;
|
|
102124
103032
|
defaultValue: string;
|
|
102125
103033
|
}, {
|
|
103034
|
+
id: string;
|
|
102126
103035
|
type: "InstanceSwap";
|
|
103036
|
+
name: string;
|
|
102127
103037
|
defaultValue: string;
|
|
102128
|
-
}>, z.ZodObject<{
|
|
103038
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
103039
|
+
id: z.ZodString;
|
|
103040
|
+
name: z.ZodString;
|
|
103041
|
+
}, {
|
|
102129
103042
|
type: z.ZodLiteral<"Text">;
|
|
103043
|
+
id: z.ZodString;
|
|
102130
103044
|
defaultValue: z.ZodString;
|
|
102131
|
-
}
|
|
103045
|
+
}>, "strip", z.ZodTypeAny, {
|
|
103046
|
+
id: string;
|
|
102132
103047
|
type: "Text";
|
|
103048
|
+
name: string;
|
|
102133
103049
|
defaultValue: string;
|
|
102134
103050
|
}, {
|
|
103051
|
+
id: string;
|
|
102135
103052
|
type: "Text";
|
|
103053
|
+
name: string;
|
|
103054
|
+
defaultValue: string;
|
|
103055
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
103056
|
+
id: z.ZodString;
|
|
103057
|
+
name: z.ZodString;
|
|
103058
|
+
}, {
|
|
103059
|
+
type: z.ZodLiteral<"Variant">;
|
|
103060
|
+
defaultValue: z.ZodString;
|
|
103061
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
103062
|
+
}>, "strip", z.ZodTypeAny, {
|
|
103063
|
+
id: string;
|
|
103064
|
+
options: string[];
|
|
103065
|
+
type: "Variant";
|
|
103066
|
+
name: string;
|
|
103067
|
+
defaultValue: string;
|
|
103068
|
+
}, {
|
|
103069
|
+
id: string;
|
|
103070
|
+
options: string[];
|
|
103071
|
+
type: "Variant";
|
|
103072
|
+
name: string;
|
|
102136
103073
|
defaultValue: string;
|
|
102137
103074
|
}>]>>>;
|
|
102138
103075
|
}>, {
|
|
@@ -102186,13 +103123,25 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
|
|
|
102186
103123
|
nodeId?: string | undefined;
|
|
102187
103124
|
};
|
|
102188
103125
|
componentPropertyDefinitions?: Record<string, {
|
|
103126
|
+
id: string;
|
|
102189
103127
|
type: "Boolean";
|
|
103128
|
+
name: string;
|
|
102190
103129
|
defaultValue: boolean;
|
|
102191
103130
|
} | {
|
|
103131
|
+
id: string;
|
|
102192
103132
|
type: "InstanceSwap";
|
|
103133
|
+
name: string;
|
|
102193
103134
|
defaultValue: string;
|
|
102194
103135
|
} | {
|
|
103136
|
+
id: string;
|
|
103137
|
+
options: string[];
|
|
103138
|
+
type: "Variant";
|
|
103139
|
+
name: string;
|
|
103140
|
+
defaultValue: string;
|
|
103141
|
+
} | {
|
|
103142
|
+
id: string;
|
|
102195
103143
|
type: "Text";
|
|
103144
|
+
name: string;
|
|
102196
103145
|
defaultValue: string;
|
|
102197
103146
|
}> | undefined;
|
|
102198
103147
|
parentComponentId?: string | undefined;
|
|
@@ -102233,13 +103182,25 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
|
|
|
102233
103182
|
nodeId?: string | undefined;
|
|
102234
103183
|
};
|
|
102235
103184
|
componentPropertyDefinitions?: Record<string, {
|
|
103185
|
+
id: string;
|
|
102236
103186
|
type: "Boolean";
|
|
103187
|
+
name: string;
|
|
102237
103188
|
defaultValue: boolean;
|
|
102238
103189
|
} | {
|
|
103190
|
+
id: string;
|
|
102239
103191
|
type: "InstanceSwap";
|
|
103192
|
+
name: string;
|
|
102240
103193
|
defaultValue: string;
|
|
102241
103194
|
} | {
|
|
103195
|
+
id: string;
|
|
103196
|
+
options: string[];
|
|
103197
|
+
type: "Variant";
|
|
103198
|
+
name: string;
|
|
103199
|
+
defaultValue: string;
|
|
103200
|
+
} | {
|
|
103201
|
+
id: string;
|
|
102242
103202
|
type: "Text";
|
|
103203
|
+
name: string;
|
|
102243
103204
|
defaultValue: string;
|
|
102244
103205
|
}> | undefined;
|
|
102245
103206
|
parentComponentId?: string | undefined;
|
|
@@ -102352,32 +103313,73 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
102352
103313
|
fileVersionId?: string | undefined;
|
|
102353
103314
|
}>]>]>;
|
|
102354
103315
|
parentComponentId: z.ZodOptional<z.ZodString>;
|
|
102355
|
-
componentPropertyDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
103316
|
+
componentPropertyDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
103317
|
+
id: z.ZodString;
|
|
103318
|
+
name: z.ZodString;
|
|
103319
|
+
}, {
|
|
102356
103320
|
type: z.ZodLiteral<"Boolean">;
|
|
102357
103321
|
defaultValue: z.ZodBoolean;
|
|
102358
|
-
}
|
|
103322
|
+
}>, "strip", z.ZodTypeAny, {
|
|
103323
|
+
id: string;
|
|
102359
103324
|
type: "Boolean";
|
|
103325
|
+
name: string;
|
|
102360
103326
|
defaultValue: boolean;
|
|
102361
103327
|
}, {
|
|
103328
|
+
id: string;
|
|
102362
103329
|
type: "Boolean";
|
|
103330
|
+
name: string;
|
|
102363
103331
|
defaultValue: boolean;
|
|
102364
|
-
}>, z.ZodObject<{
|
|
103332
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
103333
|
+
id: z.ZodString;
|
|
103334
|
+
name: z.ZodString;
|
|
103335
|
+
}, {
|
|
102365
103336
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
102366
103337
|
defaultValue: z.ZodString;
|
|
102367
|
-
}
|
|
103338
|
+
}>, "strip", z.ZodTypeAny, {
|
|
103339
|
+
id: string;
|
|
102368
103340
|
type: "InstanceSwap";
|
|
103341
|
+
name: string;
|
|
102369
103342
|
defaultValue: string;
|
|
102370
103343
|
}, {
|
|
103344
|
+
id: string;
|
|
102371
103345
|
type: "InstanceSwap";
|
|
103346
|
+
name: string;
|
|
102372
103347
|
defaultValue: string;
|
|
102373
|
-
}>, z.ZodObject<{
|
|
103348
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
103349
|
+
id: z.ZodString;
|
|
103350
|
+
name: z.ZodString;
|
|
103351
|
+
}, {
|
|
102374
103352
|
type: z.ZodLiteral<"Text">;
|
|
103353
|
+
id: z.ZodString;
|
|
102375
103354
|
defaultValue: z.ZodString;
|
|
102376
|
-
}
|
|
103355
|
+
}>, "strip", z.ZodTypeAny, {
|
|
103356
|
+
id: string;
|
|
102377
103357
|
type: "Text";
|
|
103358
|
+
name: string;
|
|
102378
103359
|
defaultValue: string;
|
|
102379
103360
|
}, {
|
|
103361
|
+
id: string;
|
|
102380
103362
|
type: "Text";
|
|
103363
|
+
name: string;
|
|
103364
|
+
defaultValue: string;
|
|
103365
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
103366
|
+
id: z.ZodString;
|
|
103367
|
+
name: z.ZodString;
|
|
103368
|
+
}, {
|
|
103369
|
+
type: z.ZodLiteral<"Variant">;
|
|
103370
|
+
defaultValue: z.ZodString;
|
|
103371
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
103372
|
+
}>, "strip", z.ZodTypeAny, {
|
|
103373
|
+
id: string;
|
|
103374
|
+
options: string[];
|
|
103375
|
+
type: "Variant";
|
|
103376
|
+
name: string;
|
|
103377
|
+
defaultValue: string;
|
|
103378
|
+
}, {
|
|
103379
|
+
id: string;
|
|
103380
|
+
options: string[];
|
|
103381
|
+
type: "Variant";
|
|
103382
|
+
name: string;
|
|
102381
103383
|
defaultValue: string;
|
|
102382
103384
|
}>]>>>;
|
|
102383
103385
|
}>, {
|
|
@@ -102467,13 +103469,25 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
102467
103469
|
nodeId?: string | undefined;
|
|
102468
103470
|
};
|
|
102469
103471
|
componentPropertyDefinitions?: Record<string, {
|
|
103472
|
+
id: string;
|
|
102470
103473
|
type: "Boolean";
|
|
103474
|
+
name: string;
|
|
102471
103475
|
defaultValue: boolean;
|
|
102472
103476
|
} | {
|
|
103477
|
+
id: string;
|
|
102473
103478
|
type: "InstanceSwap";
|
|
103479
|
+
name: string;
|
|
103480
|
+
defaultValue: string;
|
|
103481
|
+
} | {
|
|
103482
|
+
id: string;
|
|
103483
|
+
options: string[];
|
|
103484
|
+
type: "Variant";
|
|
103485
|
+
name: string;
|
|
102474
103486
|
defaultValue: string;
|
|
102475
103487
|
} | {
|
|
103488
|
+
id: string;
|
|
102476
103489
|
type: "Text";
|
|
103490
|
+
name: string;
|
|
102477
103491
|
defaultValue: string;
|
|
102478
103492
|
}> | undefined;
|
|
102479
103493
|
parentComponentId?: string | undefined;
|
|
@@ -102523,13 +103537,25 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
102523
103537
|
nodeId?: string | undefined;
|
|
102524
103538
|
};
|
|
102525
103539
|
componentPropertyDefinitions?: Record<string, {
|
|
103540
|
+
id: string;
|
|
102526
103541
|
type: "Boolean";
|
|
103542
|
+
name: string;
|
|
102527
103543
|
defaultValue: boolean;
|
|
102528
103544
|
} | {
|
|
103545
|
+
id: string;
|
|
102529
103546
|
type: "InstanceSwap";
|
|
103547
|
+
name: string;
|
|
102530
103548
|
defaultValue: string;
|
|
102531
103549
|
} | {
|
|
103550
|
+
id: string;
|
|
103551
|
+
options: string[];
|
|
103552
|
+
type: "Variant";
|
|
103553
|
+
name: string;
|
|
103554
|
+
defaultValue: string;
|
|
103555
|
+
} | {
|
|
103556
|
+
id: string;
|
|
102532
103557
|
type: "Text";
|
|
103558
|
+
name: string;
|
|
102533
103559
|
defaultValue: string;
|
|
102534
103560
|
}> | undefined;
|
|
102535
103561
|
parentComponentId?: string | undefined;
|
|
@@ -105103,13 +106129,29 @@ declare const ThemeOverrideImportModelBase: z.ZodIntersection<z.ZodDiscriminated
|
|
|
105103
106129
|
};
|
|
105104
106130
|
}>, z.ZodObject<{
|
|
105105
106131
|
type: z.ZodLiteral<"Font">;
|
|
105106
|
-
data: z.
|
|
106132
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
106133
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
106134
|
+
}, {
|
|
106135
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<unknown, z.ZodTypeDef, unknown>>>, unknown, unknown>;
|
|
106136
|
+
}>, "strip", z.ZodTypeAny, {
|
|
106137
|
+
value?: unknown;
|
|
106138
|
+
aliasTo?: string | undefined;
|
|
106139
|
+
}, {
|
|
106140
|
+
value?: unknown;
|
|
106141
|
+
aliasTo?: string | null | undefined;
|
|
106142
|
+
}>;
|
|
105107
106143
|
}, "strip", z.ZodTypeAny, {
|
|
105108
106144
|
type: "Font";
|
|
105109
|
-
data:
|
|
106145
|
+
data: {
|
|
106146
|
+
value?: unknown;
|
|
106147
|
+
aliasTo?: string | undefined;
|
|
106148
|
+
};
|
|
105110
106149
|
}, {
|
|
105111
106150
|
type: "Font";
|
|
105112
|
-
data:
|
|
106151
|
+
data: {
|
|
106152
|
+
value?: unknown;
|
|
106153
|
+
aliasTo?: string | null | undefined;
|
|
106154
|
+
};
|
|
105113
106155
|
}>]>, z.ZodObject<{
|
|
105114
106156
|
id: z.ZodString;
|
|
105115
106157
|
meta: z.ZodObject<{
|
|
@@ -107330,13 +108372,29 @@ declare const ThemeOverrideImportModel: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
107330
108372
|
};
|
|
107331
108373
|
}>, z.ZodObject<{
|
|
107332
108374
|
type: z.ZodLiteral<"Font">;
|
|
107333
|
-
data: z.
|
|
108375
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
108376
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
108377
|
+
}, {
|
|
108378
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<unknown, z.ZodTypeDef, unknown>>>, unknown, unknown>;
|
|
108379
|
+
}>, "strip", z.ZodTypeAny, {
|
|
108380
|
+
value?: unknown;
|
|
108381
|
+
aliasTo?: string | undefined;
|
|
108382
|
+
}, {
|
|
108383
|
+
value?: unknown;
|
|
108384
|
+
aliasTo?: string | null | undefined;
|
|
108385
|
+
}>;
|
|
107334
108386
|
}, "strip", z.ZodTypeAny, {
|
|
107335
108387
|
type: "Font";
|
|
107336
|
-
data:
|
|
108388
|
+
data: {
|
|
108389
|
+
value?: unknown;
|
|
108390
|
+
aliasTo?: string | undefined;
|
|
108391
|
+
};
|
|
107337
108392
|
}, {
|
|
107338
108393
|
type: "Font";
|
|
107339
|
-
data:
|
|
108394
|
+
data: {
|
|
108395
|
+
value?: unknown;
|
|
108396
|
+
aliasTo?: string | null | undefined;
|
|
108397
|
+
};
|
|
107340
108398
|
}>]>, z.ZodObject<{
|
|
107341
108399
|
id: z.ZodString;
|
|
107342
108400
|
meta: z.ZodObject<{
|
|
@@ -109623,13 +110681,29 @@ declare const ThemeOverrideImportModelInput: z.ZodIntersection<z.ZodIntersection
|
|
|
109623
110681
|
};
|
|
109624
110682
|
}>, z.ZodObject<{
|
|
109625
110683
|
type: z.ZodLiteral<"Font">;
|
|
109626
|
-
data: z.
|
|
110684
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
110685
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
110686
|
+
}, {
|
|
110687
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<unknown, z.ZodTypeDef, unknown>>>, unknown, unknown>;
|
|
110688
|
+
}>, "strip", z.ZodTypeAny, {
|
|
110689
|
+
value?: unknown;
|
|
110690
|
+
aliasTo?: string | undefined;
|
|
110691
|
+
}, {
|
|
110692
|
+
value?: unknown;
|
|
110693
|
+
aliasTo?: string | null | undefined;
|
|
110694
|
+
}>;
|
|
109627
110695
|
}, "strip", z.ZodTypeAny, {
|
|
109628
110696
|
type: "Font";
|
|
109629
|
-
data:
|
|
110697
|
+
data: {
|
|
110698
|
+
value?: unknown;
|
|
110699
|
+
aliasTo?: string | undefined;
|
|
110700
|
+
};
|
|
109630
110701
|
}, {
|
|
109631
110702
|
type: "Font";
|
|
109632
|
-
data:
|
|
110703
|
+
data: {
|
|
110704
|
+
value?: unknown;
|
|
110705
|
+
aliasTo?: string | null | undefined;
|
|
110706
|
+
};
|
|
109633
110707
|
}>]>, z.ZodObject<{
|
|
109634
110708
|
id: z.ZodString;
|
|
109635
110709
|
meta: z.ZodObject<{
|
|
@@ -111940,13 +113014,29 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
111940
113014
|
};
|
|
111941
113015
|
}>, z.ZodObject<{
|
|
111942
113016
|
type: z.ZodLiteral<"Font">;
|
|
111943
|
-
data: z.
|
|
113017
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
113018
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
113019
|
+
}, {
|
|
113020
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<unknown, z.ZodTypeDef, unknown>>>, unknown, unknown>;
|
|
113021
|
+
}>, "strip", z.ZodTypeAny, {
|
|
113022
|
+
value?: unknown;
|
|
113023
|
+
aliasTo?: string | undefined;
|
|
113024
|
+
}, {
|
|
113025
|
+
value?: unknown;
|
|
113026
|
+
aliasTo?: string | null | undefined;
|
|
113027
|
+
}>;
|
|
111944
113028
|
}, "strip", z.ZodTypeAny, {
|
|
111945
113029
|
type: "Font";
|
|
111946
|
-
data:
|
|
113030
|
+
data: {
|
|
113031
|
+
value?: unknown;
|
|
113032
|
+
aliasTo?: string | undefined;
|
|
113033
|
+
};
|
|
111947
113034
|
}, {
|
|
111948
113035
|
type: "Font";
|
|
111949
|
-
data:
|
|
113036
|
+
data: {
|
|
113037
|
+
value?: unknown;
|
|
113038
|
+
aliasTo?: string | null | undefined;
|
|
113039
|
+
};
|
|
111950
113040
|
}>]>, z.ZodObject<{
|
|
111951
113041
|
id: z.ZodString;
|
|
111952
113042
|
meta: z.ZodObject<{
|
|
@@ -112390,7 +113480,10 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
112390
113480
|
};
|
|
112391
113481
|
} | {
|
|
112392
113482
|
type: "Font";
|
|
112393
|
-
data:
|
|
113483
|
+
data: {
|
|
113484
|
+
value?: unknown;
|
|
113485
|
+
aliasTo?: string | undefined;
|
|
113486
|
+
};
|
|
112394
113487
|
}) & {
|
|
112395
113488
|
id: string;
|
|
112396
113489
|
meta: {
|
|
@@ -112773,7 +113866,10 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
112773
113866
|
};
|
|
112774
113867
|
} | {
|
|
112775
113868
|
type: "Font";
|
|
112776
|
-
data:
|
|
113869
|
+
data: {
|
|
113870
|
+
value?: unknown;
|
|
113871
|
+
aliasTo?: string | null | undefined;
|
|
113872
|
+
};
|
|
112777
113873
|
}) & {
|
|
112778
113874
|
id: string;
|
|
112779
113875
|
meta: {
|
|
@@ -115019,13 +116115,29 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
115019
116115
|
};
|
|
115020
116116
|
}>, z.ZodObject<{
|
|
115021
116117
|
type: z.ZodLiteral<"Font">;
|
|
115022
|
-
data: z.
|
|
116118
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
116119
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
116120
|
+
}, {
|
|
116121
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<unknown, z.ZodTypeDef, unknown>>>, unknown, unknown>;
|
|
116122
|
+
}>, "strip", z.ZodTypeAny, {
|
|
116123
|
+
value?: unknown;
|
|
116124
|
+
aliasTo?: string | undefined;
|
|
116125
|
+
}, {
|
|
116126
|
+
value?: unknown;
|
|
116127
|
+
aliasTo?: string | null | undefined;
|
|
116128
|
+
}>;
|
|
115023
116129
|
}, "strip", z.ZodTypeAny, {
|
|
115024
116130
|
type: "Font";
|
|
115025
|
-
data:
|
|
116131
|
+
data: {
|
|
116132
|
+
value?: unknown;
|
|
116133
|
+
aliasTo?: string | undefined;
|
|
116134
|
+
};
|
|
115026
116135
|
}, {
|
|
115027
116136
|
type: "Font";
|
|
115028
|
-
data:
|
|
116137
|
+
data: {
|
|
116138
|
+
value?: unknown;
|
|
116139
|
+
aliasTo?: string | null | undefined;
|
|
116140
|
+
};
|
|
115029
116141
|
}>]>, z.ZodObject<{
|
|
115030
116142
|
id: z.ZodString;
|
|
115031
116143
|
meta: z.ZodObject<{
|
|
@@ -115453,7 +116565,10 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
115453
116565
|
};
|
|
115454
116566
|
} | {
|
|
115455
116567
|
type: "Font";
|
|
115456
|
-
data:
|
|
116568
|
+
data: {
|
|
116569
|
+
value?: unknown;
|
|
116570
|
+
aliasTo?: string | undefined;
|
|
116571
|
+
};
|
|
115457
116572
|
}) & {
|
|
115458
116573
|
id: string;
|
|
115459
116574
|
meta: {
|
|
@@ -115829,7 +116944,10 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
115829
116944
|
};
|
|
115830
116945
|
} | {
|
|
115831
116946
|
type: "Font";
|
|
115832
|
-
data:
|
|
116947
|
+
data: {
|
|
116948
|
+
value?: unknown;
|
|
116949
|
+
aliasTo?: string | null | undefined;
|
|
116950
|
+
};
|
|
115833
116951
|
}) & {
|
|
115834
116952
|
id: string;
|
|
115835
116953
|
meta: {
|
|
@@ -118051,13 +119169,29 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
118051
119169
|
};
|
|
118052
119170
|
}>, z.ZodObject<{
|
|
118053
119171
|
type: z.ZodLiteral<"Font">;
|
|
118054
|
-
data: z.
|
|
119172
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
119173
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
119174
|
+
}, {
|
|
119175
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<unknown, z.ZodTypeDef, unknown>>>, unknown, unknown>;
|
|
119176
|
+
}>, "strip", z.ZodTypeAny, {
|
|
119177
|
+
value?: unknown;
|
|
119178
|
+
aliasTo?: string | undefined;
|
|
119179
|
+
}, {
|
|
119180
|
+
value?: unknown;
|
|
119181
|
+
aliasTo?: string | null | undefined;
|
|
119182
|
+
}>;
|
|
118055
119183
|
}, "strip", z.ZodTypeAny, {
|
|
118056
119184
|
type: "Font";
|
|
118057
|
-
data:
|
|
119185
|
+
data: {
|
|
119186
|
+
value?: unknown;
|
|
119187
|
+
aliasTo?: string | undefined;
|
|
119188
|
+
};
|
|
118058
119189
|
}, {
|
|
118059
119190
|
type: "Font";
|
|
118060
|
-
data:
|
|
119191
|
+
data: {
|
|
119192
|
+
value?: unknown;
|
|
119193
|
+
aliasTo?: string | null | undefined;
|
|
119194
|
+
};
|
|
118061
119195
|
}>]>, z.ZodObject<{
|
|
118062
119196
|
id: z.ZodString;
|
|
118063
119197
|
meta: z.ZodObject<{
|
|
@@ -118494,7 +119628,10 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
118494
119628
|
};
|
|
118495
119629
|
} | {
|
|
118496
119630
|
type: "Font";
|
|
118497
|
-
data:
|
|
119631
|
+
data: {
|
|
119632
|
+
value?: unknown;
|
|
119633
|
+
aliasTo?: string | undefined;
|
|
119634
|
+
};
|
|
118498
119635
|
}) & {
|
|
118499
119636
|
id: string;
|
|
118500
119637
|
meta: {
|
|
@@ -118865,7 +120002,10 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
118865
120002
|
};
|
|
118866
120003
|
} | {
|
|
118867
120004
|
type: "Font";
|
|
118868
|
-
data:
|
|
120005
|
+
data: {
|
|
120006
|
+
value?: unknown;
|
|
120007
|
+
aliasTo?: string | null | undefined;
|
|
120008
|
+
};
|
|
118869
120009
|
}) & {
|
|
118870
120010
|
id: string;
|
|
118871
120011
|
meta: {
|
|
@@ -121086,13 +122226,29 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
121086
122226
|
};
|
|
121087
122227
|
}>, z.ZodObject<{
|
|
121088
122228
|
type: z.ZodLiteral<"Font">;
|
|
121089
|
-
data: z.
|
|
122229
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
122230
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
122231
|
+
}, {
|
|
122232
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<unknown, z.ZodTypeDef, unknown>>>, unknown, unknown>;
|
|
122233
|
+
}>, "strip", z.ZodTypeAny, {
|
|
122234
|
+
value?: unknown;
|
|
122235
|
+
aliasTo?: string | undefined;
|
|
122236
|
+
}, {
|
|
122237
|
+
value?: unknown;
|
|
122238
|
+
aliasTo?: string | null | undefined;
|
|
122239
|
+
}>;
|
|
121090
122240
|
}, "strip", z.ZodTypeAny, {
|
|
121091
122241
|
type: "Font";
|
|
121092
|
-
data:
|
|
122242
|
+
data: {
|
|
122243
|
+
value?: unknown;
|
|
122244
|
+
aliasTo?: string | undefined;
|
|
122245
|
+
};
|
|
121093
122246
|
}, {
|
|
121094
122247
|
type: "Font";
|
|
121095
|
-
data:
|
|
122248
|
+
data: {
|
|
122249
|
+
value?: unknown;
|
|
122250
|
+
aliasTo?: string | null | undefined;
|
|
122251
|
+
};
|
|
121096
122252
|
}>]>, z.ZodObject<{
|
|
121097
122253
|
id: z.ZodString;
|
|
121098
122254
|
meta: z.ZodObject<{
|
|
@@ -121516,7 +122672,10 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
121516
122672
|
};
|
|
121517
122673
|
} | {
|
|
121518
122674
|
type: "Font";
|
|
121519
|
-
data:
|
|
122675
|
+
data: {
|
|
122676
|
+
value?: unknown;
|
|
122677
|
+
aliasTo?: string | undefined;
|
|
122678
|
+
};
|
|
121520
122679
|
}) & {
|
|
121521
122680
|
id: string;
|
|
121522
122681
|
meta: {
|
|
@@ -121885,7 +123044,10 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
121885
123044
|
};
|
|
121886
123045
|
} | {
|
|
121887
123046
|
type: "Font";
|
|
121888
|
-
data:
|
|
123047
|
+
data: {
|
|
123048
|
+
value?: unknown;
|
|
123049
|
+
aliasTo?: string | null | undefined;
|
|
123050
|
+
};
|
|
121889
123051
|
}) & {
|
|
121890
123052
|
id: string;
|
|
121891
123053
|
meta: {
|
|
@@ -124311,13 +125473,29 @@ declare const DesignTokenImportModel: z.ZodIntersection<z.ZodDiscriminatedUnion<
|
|
|
124311
125473
|
};
|
|
124312
125474
|
}>, z.ZodObject<{
|
|
124313
125475
|
type: z.ZodLiteral<"Font">;
|
|
124314
|
-
data: z.
|
|
125476
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
125477
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
125478
|
+
}, {
|
|
125479
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<unknown, z.ZodTypeDef, unknown>>>, unknown, unknown>;
|
|
125480
|
+
}>, "strip", z.ZodTypeAny, {
|
|
125481
|
+
value?: unknown;
|
|
125482
|
+
aliasTo?: string | undefined;
|
|
125483
|
+
}, {
|
|
125484
|
+
value?: unknown;
|
|
125485
|
+
aliasTo?: string | null | undefined;
|
|
125486
|
+
}>;
|
|
124315
125487
|
}, "strip", z.ZodTypeAny, {
|
|
124316
125488
|
type: "Font";
|
|
124317
|
-
data:
|
|
125489
|
+
data: {
|
|
125490
|
+
value?: unknown;
|
|
125491
|
+
aliasTo?: string | undefined;
|
|
125492
|
+
};
|
|
124318
125493
|
}, {
|
|
124319
125494
|
type: "Font";
|
|
124320
|
-
data:
|
|
125495
|
+
data: {
|
|
125496
|
+
value?: unknown;
|
|
125497
|
+
aliasTo?: string | null | undefined;
|
|
125498
|
+
};
|
|
124321
125499
|
}>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
124322
125500
|
id: z.ZodString;
|
|
124323
125501
|
meta: z.ZodObject<{
|
|
@@ -126628,13 +127806,29 @@ declare const DesignTokenImportModelInput: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
126628
127806
|
};
|
|
126629
127807
|
}>, z.ZodObject<{
|
|
126630
127808
|
type: z.ZodLiteral<"Font">;
|
|
126631
|
-
data: z.
|
|
127809
|
+
data: z.ZodObject<z.objectUtil.extendShape<{
|
|
127810
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
127811
|
+
}, {
|
|
127812
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<unknown, z.ZodTypeDef, unknown>>>, unknown, unknown>;
|
|
127813
|
+
}>, "strip", z.ZodTypeAny, {
|
|
127814
|
+
value?: unknown;
|
|
127815
|
+
aliasTo?: string | undefined;
|
|
127816
|
+
}, {
|
|
127817
|
+
value?: unknown;
|
|
127818
|
+
aliasTo?: string | null | undefined;
|
|
127819
|
+
}>;
|
|
126632
127820
|
}, "strip", z.ZodTypeAny, {
|
|
126633
127821
|
type: "Font";
|
|
126634
|
-
data:
|
|
127822
|
+
data: {
|
|
127823
|
+
value?: unknown;
|
|
127824
|
+
aliasTo?: string | undefined;
|
|
127825
|
+
};
|
|
126635
127826
|
}, {
|
|
126636
127827
|
type: "Font";
|
|
126637
|
-
data:
|
|
127828
|
+
data: {
|
|
127829
|
+
value?: unknown;
|
|
127830
|
+
aliasTo?: string | null | undefined;
|
|
127831
|
+
};
|
|
126638
127832
|
}>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<Omit<{
|
|
126639
127833
|
id: z.ZodString;
|
|
126640
127834
|
meta: z.ZodObject<{
|
|
@@ -166603,4 +167797,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
166603
167797
|
}>;
|
|
166604
167798
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
166605
167799
|
|
|
166606
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaNodeRenderFormat, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|
|
167800
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaNodeRenderFormat, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|