@supernova-studio/model 0.54.3 → 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 +849 -108
- package/dist/index.d.ts +849 -108
- package/dist/index.js +16 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/component-properties.ts +15 -4
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;
|
|
36226
36266
|
defaultValue: string;
|
|
36227
36267
|
} | {
|
|
36268
|
+
id: string;
|
|
36269
|
+
options: string[];
|
|
36270
|
+
type: "Variant";
|
|
36271
|
+
name: string;
|
|
36272
|
+
defaultValue: string;
|
|
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;
|
|
36302
|
+
defaultValue: string;
|
|
36303
|
+
} | {
|
|
36304
|
+
id: string;
|
|
36305
|
+
options: string[];
|
|
36306
|
+
type: "Variant";
|
|
36307
|
+
name: string;
|
|
36250
36308
|
defaultValue: string;
|
|
36251
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;
|
|
36274
36338
|
defaultValue: string;
|
|
36275
36339
|
} | {
|
|
36340
|
+
id: string;
|
|
36341
|
+
options: string[];
|
|
36342
|
+
type: "Variant";
|
|
36343
|
+
name: string;
|
|
36344
|
+
defaultValue: string;
|
|
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
|
};
|
|
@@ -50103,110 +50199,228 @@ declare const DesignElementSlugPart: z.ZodObject<{
|
|
|
50103
50199
|
}>;
|
|
50104
50200
|
type DesignElementSlugPart = z.infer<typeof DesignElementSlugPart>;
|
|
50105
50201
|
|
|
50202
|
+
declare const FigmaComponentPropertyOrigin: z.ZodObject<{
|
|
50203
|
+
id: z.ZodString;
|
|
50204
|
+
}, "strip", z.ZodTypeAny, {
|
|
50205
|
+
id: string;
|
|
50206
|
+
}, {
|
|
50207
|
+
id: string;
|
|
50208
|
+
}>;
|
|
50106
50209
|
declare const FigmaComponentPropertyType: z.ZodEnum<["Boolean", "InstanceSwap", "Variant", "Text"]>;
|
|
50107
50210
|
type FigmaComponentPropertyType = z.infer<typeof FigmaComponentPropertyType>;
|
|
50108
|
-
declare const FigmaComponentBooleanProperty: z.ZodObject<{
|
|
50211
|
+
declare const FigmaComponentBooleanProperty: z.ZodObject<z.objectUtil.extendShape<{
|
|
50212
|
+
id: z.ZodString;
|
|
50213
|
+
name: z.ZodString;
|
|
50214
|
+
}, {
|
|
50109
50215
|
type: z.ZodLiteral<"Boolean">;
|
|
50110
50216
|
defaultValue: z.ZodBoolean;
|
|
50111
|
-
}
|
|
50217
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50218
|
+
id: string;
|
|
50112
50219
|
type: "Boolean";
|
|
50220
|
+
name: string;
|
|
50113
50221
|
defaultValue: boolean;
|
|
50114
50222
|
}, {
|
|
50223
|
+
id: string;
|
|
50115
50224
|
type: "Boolean";
|
|
50225
|
+
name: string;
|
|
50116
50226
|
defaultValue: boolean;
|
|
50117
50227
|
}>;
|
|
50118
50228
|
type FigmaComponentBooleanProperty = z.infer<typeof FigmaComponentBooleanProperty>;
|
|
50119
|
-
declare const FigmaComponentInstanceSwapProperty: z.ZodObject<{
|
|
50229
|
+
declare const FigmaComponentInstanceSwapProperty: z.ZodObject<z.objectUtil.extendShape<{
|
|
50230
|
+
id: z.ZodString;
|
|
50231
|
+
name: z.ZodString;
|
|
50232
|
+
}, {
|
|
50120
50233
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
50121
50234
|
defaultValue: z.ZodString;
|
|
50122
|
-
}
|
|
50235
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50236
|
+
id: string;
|
|
50123
50237
|
type: "InstanceSwap";
|
|
50238
|
+
name: string;
|
|
50124
50239
|
defaultValue: string;
|
|
50125
50240
|
}, {
|
|
50241
|
+
id: string;
|
|
50126
50242
|
type: "InstanceSwap";
|
|
50243
|
+
name: string;
|
|
50127
50244
|
defaultValue: string;
|
|
50128
50245
|
}>;
|
|
50129
50246
|
type FigmaComponentInstanceSwapProperty = z.infer<typeof FigmaComponentInstanceSwapProperty>;
|
|
50130
|
-
declare const FigmaComponentVariantProperty: z.ZodObject<{
|
|
50247
|
+
declare const FigmaComponentVariantProperty: z.ZodObject<z.objectUtil.extendShape<{
|
|
50248
|
+
id: z.ZodString;
|
|
50249
|
+
name: z.ZodString;
|
|
50250
|
+
}, {
|
|
50131
50251
|
type: z.ZodLiteral<"Variant">;
|
|
50132
50252
|
defaultValue: z.ZodString;
|
|
50133
50253
|
options: z.ZodArray<z.ZodString, "many">;
|
|
50134
|
-
}
|
|
50254
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50255
|
+
id: string;
|
|
50135
50256
|
options: string[];
|
|
50136
50257
|
type: "Variant";
|
|
50258
|
+
name: string;
|
|
50137
50259
|
defaultValue: string;
|
|
50138
50260
|
}, {
|
|
50261
|
+
id: string;
|
|
50139
50262
|
options: string[];
|
|
50140
50263
|
type: "Variant";
|
|
50264
|
+
name: string;
|
|
50141
50265
|
defaultValue: string;
|
|
50142
50266
|
}>;
|
|
50143
50267
|
type FigmaComponentVariantProperty = z.infer<typeof FigmaComponentVariantProperty>;
|
|
50144
|
-
declare const FigmaComponentTextProperty: z.ZodObject<{
|
|
50268
|
+
declare const FigmaComponentTextProperty: z.ZodObject<z.objectUtil.extendShape<{
|
|
50269
|
+
id: z.ZodString;
|
|
50270
|
+
name: z.ZodString;
|
|
50271
|
+
}, {
|
|
50145
50272
|
type: z.ZodLiteral<"Text">;
|
|
50273
|
+
id: z.ZodString;
|
|
50146
50274
|
defaultValue: z.ZodString;
|
|
50147
|
-
}
|
|
50275
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50276
|
+
id: string;
|
|
50148
50277
|
type: "Text";
|
|
50278
|
+
name: string;
|
|
50149
50279
|
defaultValue: string;
|
|
50150
50280
|
}, {
|
|
50281
|
+
id: string;
|
|
50151
50282
|
type: "Text";
|
|
50283
|
+
name: string;
|
|
50152
50284
|
defaultValue: string;
|
|
50153
50285
|
}>;
|
|
50154
50286
|
type FigmaComponentTextProperty = z.infer<typeof FigmaComponentTextProperty>;
|
|
50155
|
-
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
|
+
}, {
|
|
50156
50291
|
type: z.ZodLiteral<"Boolean">;
|
|
50157
50292
|
defaultValue: z.ZodBoolean;
|
|
50158
|
-
}
|
|
50293
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50294
|
+
id: string;
|
|
50159
50295
|
type: "Boolean";
|
|
50296
|
+
name: string;
|
|
50160
50297
|
defaultValue: boolean;
|
|
50161
50298
|
}, {
|
|
50299
|
+
id: string;
|
|
50162
50300
|
type: "Boolean";
|
|
50301
|
+
name: string;
|
|
50163
50302
|
defaultValue: boolean;
|
|
50164
|
-
}>, z.ZodObject<{
|
|
50303
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
50304
|
+
id: z.ZodString;
|
|
50305
|
+
name: z.ZodString;
|
|
50306
|
+
}, {
|
|
50165
50307
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
50166
50308
|
defaultValue: z.ZodString;
|
|
50167
|
-
}
|
|
50309
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50310
|
+
id: string;
|
|
50168
50311
|
type: "InstanceSwap";
|
|
50312
|
+
name: string;
|
|
50169
50313
|
defaultValue: string;
|
|
50170
50314
|
}, {
|
|
50315
|
+
id: string;
|
|
50171
50316
|
type: "InstanceSwap";
|
|
50317
|
+
name: string;
|
|
50172
50318
|
defaultValue: string;
|
|
50173
|
-
}>, z.ZodObject<{
|
|
50319
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
50320
|
+
id: z.ZodString;
|
|
50321
|
+
name: z.ZodString;
|
|
50322
|
+
}, {
|
|
50174
50323
|
type: z.ZodLiteral<"Text">;
|
|
50324
|
+
id: z.ZodString;
|
|
50175
50325
|
defaultValue: z.ZodString;
|
|
50176
|
-
}
|
|
50326
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50327
|
+
id: string;
|
|
50177
50328
|
type: "Text";
|
|
50329
|
+
name: string;
|
|
50178
50330
|
defaultValue: string;
|
|
50179
50331
|
}, {
|
|
50332
|
+
id: string;
|
|
50180
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;
|
|
50181
50354
|
defaultValue: string;
|
|
50182
50355
|
}>]>;
|
|
50183
50356
|
type FigmaComponentProperty = z.infer<typeof FigmaComponentProperty>;
|
|
50184
|
-
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
|
+
}, {
|
|
50185
50361
|
type: z.ZodLiteral<"Boolean">;
|
|
50186
50362
|
defaultValue: z.ZodBoolean;
|
|
50187
|
-
}
|
|
50363
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50364
|
+
id: string;
|
|
50188
50365
|
type: "Boolean";
|
|
50366
|
+
name: string;
|
|
50189
50367
|
defaultValue: boolean;
|
|
50190
50368
|
}, {
|
|
50369
|
+
id: string;
|
|
50191
50370
|
type: "Boolean";
|
|
50371
|
+
name: string;
|
|
50192
50372
|
defaultValue: boolean;
|
|
50193
|
-
}>, z.ZodObject<{
|
|
50373
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
50374
|
+
id: z.ZodString;
|
|
50375
|
+
name: z.ZodString;
|
|
50376
|
+
}, {
|
|
50194
50377
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
50195
50378
|
defaultValue: z.ZodString;
|
|
50196
|
-
}
|
|
50379
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50380
|
+
id: string;
|
|
50197
50381
|
type: "InstanceSwap";
|
|
50382
|
+
name: string;
|
|
50198
50383
|
defaultValue: string;
|
|
50199
50384
|
}, {
|
|
50385
|
+
id: string;
|
|
50200
50386
|
type: "InstanceSwap";
|
|
50387
|
+
name: string;
|
|
50201
50388
|
defaultValue: string;
|
|
50202
|
-
}>, z.ZodObject<{
|
|
50389
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
50390
|
+
id: z.ZodString;
|
|
50391
|
+
name: z.ZodString;
|
|
50392
|
+
}, {
|
|
50203
50393
|
type: z.ZodLiteral<"Text">;
|
|
50394
|
+
id: z.ZodString;
|
|
50204
50395
|
defaultValue: z.ZodString;
|
|
50205
|
-
}
|
|
50396
|
+
}>, "strip", z.ZodTypeAny, {
|
|
50397
|
+
id: string;
|
|
50206
50398
|
type: "Text";
|
|
50399
|
+
name: string;
|
|
50207
50400
|
defaultValue: string;
|
|
50208
50401
|
}, {
|
|
50402
|
+
id: string;
|
|
50209
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;
|
|
50210
50424
|
defaultValue: string;
|
|
50211
50425
|
}>]>>;
|
|
50212
50426
|
type FigmaComponentPropertyMap = z.infer<typeof FigmaComponentPropertyMap>;
|
|
@@ -54710,32 +54924,73 @@ declare const FigmaComponent: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
54710
54924
|
assetId: string;
|
|
54711
54925
|
assetPath: string;
|
|
54712
54926
|
}>;
|
|
54713
|
-
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
|
+
}, {
|
|
54714
54931
|
type: z.ZodLiteral<"Boolean">;
|
|
54715
54932
|
defaultValue: z.ZodBoolean;
|
|
54716
|
-
}
|
|
54933
|
+
}>, "strip", z.ZodTypeAny, {
|
|
54934
|
+
id: string;
|
|
54717
54935
|
type: "Boolean";
|
|
54936
|
+
name: string;
|
|
54718
54937
|
defaultValue: boolean;
|
|
54719
54938
|
}, {
|
|
54939
|
+
id: string;
|
|
54720
54940
|
type: "Boolean";
|
|
54941
|
+
name: string;
|
|
54721
54942
|
defaultValue: boolean;
|
|
54722
|
-
}>, z.ZodObject<{
|
|
54943
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
54944
|
+
id: z.ZodString;
|
|
54945
|
+
name: z.ZodString;
|
|
54946
|
+
}, {
|
|
54723
54947
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
54724
54948
|
defaultValue: z.ZodString;
|
|
54725
|
-
}
|
|
54949
|
+
}>, "strip", z.ZodTypeAny, {
|
|
54950
|
+
id: string;
|
|
54726
54951
|
type: "InstanceSwap";
|
|
54952
|
+
name: string;
|
|
54727
54953
|
defaultValue: string;
|
|
54728
54954
|
}, {
|
|
54955
|
+
id: string;
|
|
54729
54956
|
type: "InstanceSwap";
|
|
54957
|
+
name: string;
|
|
54730
54958
|
defaultValue: string;
|
|
54731
|
-
}>, z.ZodObject<{
|
|
54959
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
54960
|
+
id: z.ZodString;
|
|
54961
|
+
name: z.ZodString;
|
|
54962
|
+
}, {
|
|
54732
54963
|
type: z.ZodLiteral<"Text">;
|
|
54964
|
+
id: z.ZodString;
|
|
54733
54965
|
defaultValue: z.ZodString;
|
|
54734
|
-
}
|
|
54966
|
+
}>, "strip", z.ZodTypeAny, {
|
|
54967
|
+
id: string;
|
|
54735
54968
|
type: "Text";
|
|
54969
|
+
name: string;
|
|
54736
54970
|
defaultValue: string;
|
|
54737
54971
|
}, {
|
|
54972
|
+
id: string;
|
|
54738
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;
|
|
54739
54994
|
defaultValue: string;
|
|
54740
54995
|
}>]>>>;
|
|
54741
54996
|
svg: z.ZodOptional<z.ZodObject<{
|
|
@@ -54782,13 +55037,25 @@ declare const FigmaComponent: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
54782
55037
|
} | undefined;
|
|
54783
55038
|
parentComponentPersistentId?: string | undefined;
|
|
54784
55039
|
componentPropertyDefinitions?: Record<string, {
|
|
55040
|
+
id: string;
|
|
54785
55041
|
type: "Boolean";
|
|
55042
|
+
name: string;
|
|
54786
55043
|
defaultValue: boolean;
|
|
54787
55044
|
} | {
|
|
55045
|
+
id: string;
|
|
54788
55046
|
type: "InstanceSwap";
|
|
55047
|
+
name: string;
|
|
55048
|
+
defaultValue: string;
|
|
55049
|
+
} | {
|
|
55050
|
+
id: string;
|
|
55051
|
+
options: string[];
|
|
55052
|
+
type: "Variant";
|
|
55053
|
+
name: string;
|
|
54789
55054
|
defaultValue: string;
|
|
54790
55055
|
} | {
|
|
55056
|
+
id: string;
|
|
54791
55057
|
type: "Text";
|
|
55058
|
+
name: string;
|
|
54792
55059
|
defaultValue: string;
|
|
54793
55060
|
}> | undefined;
|
|
54794
55061
|
}, {
|
|
@@ -54823,13 +55090,25 @@ declare const FigmaComponent: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
|
|
|
54823
55090
|
} | undefined;
|
|
54824
55091
|
parentComponentPersistentId?: string | null | undefined;
|
|
54825
55092
|
componentPropertyDefinitions?: Record<string, {
|
|
55093
|
+
id: string;
|
|
54826
55094
|
type: "Boolean";
|
|
55095
|
+
name: string;
|
|
54827
55096
|
defaultValue: boolean;
|
|
54828
55097
|
} | {
|
|
55098
|
+
id: string;
|
|
54829
55099
|
type: "InstanceSwap";
|
|
55100
|
+
name: string;
|
|
54830
55101
|
defaultValue: string;
|
|
54831
55102
|
} | {
|
|
55103
|
+
id: string;
|
|
55104
|
+
options: string[];
|
|
55105
|
+
type: "Variant";
|
|
55106
|
+
name: string;
|
|
55107
|
+
defaultValue: string;
|
|
55108
|
+
} | {
|
|
55109
|
+
id: string;
|
|
54832
55110
|
type: "Text";
|
|
55111
|
+
name: string;
|
|
54833
55112
|
defaultValue: string;
|
|
54834
55113
|
}> | undefined;
|
|
54835
55114
|
}>;
|
|
@@ -80814,32 +81093,73 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
80814
81093
|
fileVersionId?: string | undefined;
|
|
80815
81094
|
}>]>]>;
|
|
80816
81095
|
parentComponentId: z.ZodOptional<z.ZodString>;
|
|
80817
|
-
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
|
+
}, {
|
|
80818
81100
|
type: z.ZodLiteral<"Boolean">;
|
|
80819
81101
|
defaultValue: z.ZodBoolean;
|
|
80820
|
-
}
|
|
81102
|
+
}>, "strip", z.ZodTypeAny, {
|
|
81103
|
+
id: string;
|
|
80821
81104
|
type: "Boolean";
|
|
81105
|
+
name: string;
|
|
80822
81106
|
defaultValue: boolean;
|
|
80823
81107
|
}, {
|
|
81108
|
+
id: string;
|
|
80824
81109
|
type: "Boolean";
|
|
81110
|
+
name: string;
|
|
80825
81111
|
defaultValue: boolean;
|
|
80826
|
-
}>, z.ZodObject<{
|
|
81112
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
81113
|
+
id: z.ZodString;
|
|
81114
|
+
name: z.ZodString;
|
|
81115
|
+
}, {
|
|
80827
81116
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
80828
81117
|
defaultValue: z.ZodString;
|
|
80829
|
-
}
|
|
81118
|
+
}>, "strip", z.ZodTypeAny, {
|
|
81119
|
+
id: string;
|
|
80830
81120
|
type: "InstanceSwap";
|
|
81121
|
+
name: string;
|
|
80831
81122
|
defaultValue: string;
|
|
80832
81123
|
}, {
|
|
81124
|
+
id: string;
|
|
80833
81125
|
type: "InstanceSwap";
|
|
81126
|
+
name: string;
|
|
80834
81127
|
defaultValue: string;
|
|
80835
|
-
}>, z.ZodObject<{
|
|
81128
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
81129
|
+
id: z.ZodString;
|
|
81130
|
+
name: z.ZodString;
|
|
81131
|
+
}, {
|
|
80836
81132
|
type: z.ZodLiteral<"Text">;
|
|
81133
|
+
id: z.ZodString;
|
|
80837
81134
|
defaultValue: z.ZodString;
|
|
80838
|
-
}
|
|
81135
|
+
}>, "strip", z.ZodTypeAny, {
|
|
81136
|
+
id: string;
|
|
80839
81137
|
type: "Text";
|
|
81138
|
+
name: string;
|
|
80840
81139
|
defaultValue: string;
|
|
80841
81140
|
}, {
|
|
81141
|
+
id: string;
|
|
80842
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;
|
|
80843
81163
|
defaultValue: string;
|
|
80844
81164
|
}>]>>>;
|
|
80845
81165
|
}>, {
|
|
@@ -80945,13 +81265,25 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
80945
81265
|
fileVersionId?: string | undefined;
|
|
80946
81266
|
} | undefined;
|
|
80947
81267
|
componentPropertyDefinitions?: Record<string, {
|
|
81268
|
+
id: string;
|
|
80948
81269
|
type: "Boolean";
|
|
81270
|
+
name: string;
|
|
80949
81271
|
defaultValue: boolean;
|
|
80950
81272
|
} | {
|
|
81273
|
+
id: string;
|
|
80951
81274
|
type: "InstanceSwap";
|
|
81275
|
+
name: string;
|
|
80952
81276
|
defaultValue: string;
|
|
80953
81277
|
} | {
|
|
81278
|
+
id: string;
|
|
81279
|
+
options: string[];
|
|
81280
|
+
type: "Variant";
|
|
81281
|
+
name: string;
|
|
81282
|
+
defaultValue: string;
|
|
81283
|
+
} | {
|
|
81284
|
+
id: string;
|
|
80954
81285
|
type: "Text";
|
|
81286
|
+
name: string;
|
|
80955
81287
|
defaultValue: string;
|
|
80956
81288
|
}> | undefined;
|
|
80957
81289
|
parentComponentId?: string | undefined;
|
|
@@ -81006,13 +81338,25 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
81006
81338
|
fileVersionId?: string | undefined;
|
|
81007
81339
|
} | undefined;
|
|
81008
81340
|
componentPropertyDefinitions?: Record<string, {
|
|
81341
|
+
id: string;
|
|
81009
81342
|
type: "Boolean";
|
|
81343
|
+
name: string;
|
|
81010
81344
|
defaultValue: boolean;
|
|
81011
81345
|
} | {
|
|
81346
|
+
id: string;
|
|
81012
81347
|
type: "InstanceSwap";
|
|
81348
|
+
name: string;
|
|
81013
81349
|
defaultValue: string;
|
|
81014
81350
|
} | {
|
|
81351
|
+
id: string;
|
|
81352
|
+
options: string[];
|
|
81353
|
+
type: "Variant";
|
|
81354
|
+
name: string;
|
|
81355
|
+
defaultValue: string;
|
|
81356
|
+
} | {
|
|
81357
|
+
id: string;
|
|
81015
81358
|
type: "Text";
|
|
81359
|
+
name: string;
|
|
81016
81360
|
defaultValue: string;
|
|
81017
81361
|
}> | undefined;
|
|
81018
81362
|
parentComponentId?: string | undefined;
|
|
@@ -87972,13 +88316,25 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
87972
88316
|
fileVersionId?: string | undefined;
|
|
87973
88317
|
} | undefined;
|
|
87974
88318
|
componentPropertyDefinitions?: Record<string, {
|
|
88319
|
+
id: string;
|
|
87975
88320
|
type: "Boolean";
|
|
88321
|
+
name: string;
|
|
87976
88322
|
defaultValue: boolean;
|
|
87977
88323
|
} | {
|
|
88324
|
+
id: string;
|
|
87978
88325
|
type: "InstanceSwap";
|
|
88326
|
+
name: string;
|
|
88327
|
+
defaultValue: string;
|
|
88328
|
+
} | {
|
|
88329
|
+
id: string;
|
|
88330
|
+
options: string[];
|
|
88331
|
+
type: "Variant";
|
|
88332
|
+
name: string;
|
|
87979
88333
|
defaultValue: string;
|
|
87980
88334
|
} | {
|
|
88335
|
+
id: string;
|
|
87981
88336
|
type: "Text";
|
|
88337
|
+
name: string;
|
|
87982
88338
|
defaultValue: string;
|
|
87983
88339
|
}> | undefined;
|
|
87984
88340
|
parentComponentId?: string | undefined;
|
|
@@ -89312,13 +89668,25 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
89312
89668
|
fileVersionId?: string | undefined;
|
|
89313
89669
|
} | undefined;
|
|
89314
89670
|
componentPropertyDefinitions?: Record<string, {
|
|
89671
|
+
id: string;
|
|
89315
89672
|
type: "Boolean";
|
|
89673
|
+
name: string;
|
|
89316
89674
|
defaultValue: boolean;
|
|
89317
89675
|
} | {
|
|
89676
|
+
id: string;
|
|
89318
89677
|
type: "InstanceSwap";
|
|
89678
|
+
name: string;
|
|
89679
|
+
defaultValue: string;
|
|
89680
|
+
} | {
|
|
89681
|
+
id: string;
|
|
89682
|
+
options: string[];
|
|
89683
|
+
type: "Variant";
|
|
89684
|
+
name: string;
|
|
89319
89685
|
defaultValue: string;
|
|
89320
89686
|
} | {
|
|
89687
|
+
id: string;
|
|
89321
89688
|
type: "Text";
|
|
89689
|
+
name: string;
|
|
89322
89690
|
defaultValue: string;
|
|
89323
89691
|
}> | undefined;
|
|
89324
89692
|
parentComponentId?: string | undefined;
|
|
@@ -92510,32 +92878,73 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
92510
92878
|
fileVersionId?: string | undefined;
|
|
92511
92879
|
}>]>]>;
|
|
92512
92880
|
parentComponentId: z.ZodOptional<z.ZodString>;
|
|
92513
|
-
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
|
+
}, {
|
|
92514
92885
|
type: z.ZodLiteral<"Boolean">;
|
|
92515
92886
|
defaultValue: z.ZodBoolean;
|
|
92516
|
-
}
|
|
92887
|
+
}>, "strip", z.ZodTypeAny, {
|
|
92888
|
+
id: string;
|
|
92517
92889
|
type: "Boolean";
|
|
92890
|
+
name: string;
|
|
92518
92891
|
defaultValue: boolean;
|
|
92519
92892
|
}, {
|
|
92893
|
+
id: string;
|
|
92520
92894
|
type: "Boolean";
|
|
92895
|
+
name: string;
|
|
92521
92896
|
defaultValue: boolean;
|
|
92522
|
-
}>, z.ZodObject<{
|
|
92897
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
92898
|
+
id: z.ZodString;
|
|
92899
|
+
name: z.ZodString;
|
|
92900
|
+
}, {
|
|
92523
92901
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
92524
92902
|
defaultValue: z.ZodString;
|
|
92525
|
-
}
|
|
92903
|
+
}>, "strip", z.ZodTypeAny, {
|
|
92904
|
+
id: string;
|
|
92526
92905
|
type: "InstanceSwap";
|
|
92906
|
+
name: string;
|
|
92527
92907
|
defaultValue: string;
|
|
92528
92908
|
}, {
|
|
92909
|
+
id: string;
|
|
92529
92910
|
type: "InstanceSwap";
|
|
92911
|
+
name: string;
|
|
92530
92912
|
defaultValue: string;
|
|
92531
|
-
}>, z.ZodObject<{
|
|
92913
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
92914
|
+
id: z.ZodString;
|
|
92915
|
+
name: z.ZodString;
|
|
92916
|
+
}, {
|
|
92532
92917
|
type: z.ZodLiteral<"Text">;
|
|
92918
|
+
id: z.ZodString;
|
|
92533
92919
|
defaultValue: z.ZodString;
|
|
92534
|
-
}
|
|
92920
|
+
}>, "strip", z.ZodTypeAny, {
|
|
92921
|
+
id: string;
|
|
92535
92922
|
type: "Text";
|
|
92923
|
+
name: string;
|
|
92536
92924
|
defaultValue: string;
|
|
92537
92925
|
}, {
|
|
92926
|
+
id: string;
|
|
92538
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;
|
|
92539
92948
|
defaultValue: string;
|
|
92540
92949
|
}>]>>>;
|
|
92541
92950
|
}>, {
|
|
@@ -92589,13 +92998,25 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
92589
92998
|
nodeId?: string | undefined;
|
|
92590
92999
|
};
|
|
92591
93000
|
componentPropertyDefinitions?: Record<string, {
|
|
93001
|
+
id: string;
|
|
92592
93002
|
type: "Boolean";
|
|
93003
|
+
name: string;
|
|
92593
93004
|
defaultValue: boolean;
|
|
92594
93005
|
} | {
|
|
93006
|
+
id: string;
|
|
92595
93007
|
type: "InstanceSwap";
|
|
93008
|
+
name: string;
|
|
92596
93009
|
defaultValue: string;
|
|
92597
93010
|
} | {
|
|
93011
|
+
id: string;
|
|
93012
|
+
options: string[];
|
|
93013
|
+
type: "Variant";
|
|
93014
|
+
name: string;
|
|
93015
|
+
defaultValue: string;
|
|
93016
|
+
} | {
|
|
93017
|
+
id: string;
|
|
92598
93018
|
type: "Text";
|
|
93019
|
+
name: string;
|
|
92599
93020
|
defaultValue: string;
|
|
92600
93021
|
}> | undefined;
|
|
92601
93022
|
parentComponentId?: string | undefined;
|
|
@@ -92636,13 +93057,25 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
92636
93057
|
nodeId?: string | undefined;
|
|
92637
93058
|
};
|
|
92638
93059
|
componentPropertyDefinitions?: Record<string, {
|
|
93060
|
+
id: string;
|
|
92639
93061
|
type: "Boolean";
|
|
93062
|
+
name: string;
|
|
92640
93063
|
defaultValue: boolean;
|
|
92641
93064
|
} | {
|
|
93065
|
+
id: string;
|
|
92642
93066
|
type: "InstanceSwap";
|
|
93067
|
+
name: string;
|
|
92643
93068
|
defaultValue: string;
|
|
92644
93069
|
} | {
|
|
93070
|
+
id: string;
|
|
93071
|
+
options: string[];
|
|
93072
|
+
type: "Variant";
|
|
93073
|
+
name: string;
|
|
93074
|
+
defaultValue: string;
|
|
93075
|
+
} | {
|
|
93076
|
+
id: string;
|
|
92645
93077
|
type: "Text";
|
|
93078
|
+
name: string;
|
|
92646
93079
|
defaultValue: string;
|
|
92647
93080
|
}> | undefined;
|
|
92648
93081
|
parentComponentId?: string | undefined;
|
|
@@ -92754,32 +93187,73 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
92754
93187
|
fileVersionId?: string | undefined;
|
|
92755
93188
|
}>]>]>;
|
|
92756
93189
|
parentComponentId: z.ZodOptional<z.ZodString>;
|
|
92757
|
-
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
|
+
}, {
|
|
92758
93194
|
type: z.ZodLiteral<"Boolean">;
|
|
92759
93195
|
defaultValue: z.ZodBoolean;
|
|
92760
|
-
}
|
|
93196
|
+
}>, "strip", z.ZodTypeAny, {
|
|
93197
|
+
id: string;
|
|
92761
93198
|
type: "Boolean";
|
|
93199
|
+
name: string;
|
|
92762
93200
|
defaultValue: boolean;
|
|
92763
93201
|
}, {
|
|
93202
|
+
id: string;
|
|
92764
93203
|
type: "Boolean";
|
|
93204
|
+
name: string;
|
|
92765
93205
|
defaultValue: boolean;
|
|
92766
|
-
}>, z.ZodObject<{
|
|
93206
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
93207
|
+
id: z.ZodString;
|
|
93208
|
+
name: z.ZodString;
|
|
93209
|
+
}, {
|
|
92767
93210
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
92768
93211
|
defaultValue: z.ZodString;
|
|
92769
|
-
}
|
|
93212
|
+
}>, "strip", z.ZodTypeAny, {
|
|
93213
|
+
id: string;
|
|
92770
93214
|
type: "InstanceSwap";
|
|
93215
|
+
name: string;
|
|
92771
93216
|
defaultValue: string;
|
|
92772
93217
|
}, {
|
|
93218
|
+
id: string;
|
|
92773
93219
|
type: "InstanceSwap";
|
|
93220
|
+
name: string;
|
|
92774
93221
|
defaultValue: string;
|
|
92775
|
-
}>, z.ZodObject<{
|
|
93222
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
93223
|
+
id: z.ZodString;
|
|
93224
|
+
name: z.ZodString;
|
|
93225
|
+
}, {
|
|
92776
93226
|
type: z.ZodLiteral<"Text">;
|
|
93227
|
+
id: z.ZodString;
|
|
92777
93228
|
defaultValue: z.ZodString;
|
|
92778
|
-
}
|
|
93229
|
+
}>, "strip", z.ZodTypeAny, {
|
|
93230
|
+
id: string;
|
|
92779
93231
|
type: "Text";
|
|
93232
|
+
name: string;
|
|
92780
93233
|
defaultValue: string;
|
|
92781
93234
|
}, {
|
|
93235
|
+
id: string;
|
|
92782
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;
|
|
92783
93257
|
defaultValue: string;
|
|
92784
93258
|
}>]>>>;
|
|
92785
93259
|
}>, {
|
|
@@ -92869,13 +93343,25 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
92869
93343
|
nodeId?: string | undefined;
|
|
92870
93344
|
};
|
|
92871
93345
|
componentPropertyDefinitions?: Record<string, {
|
|
93346
|
+
id: string;
|
|
92872
93347
|
type: "Boolean";
|
|
93348
|
+
name: string;
|
|
92873
93349
|
defaultValue: boolean;
|
|
92874
93350
|
} | {
|
|
93351
|
+
id: string;
|
|
92875
93352
|
type: "InstanceSwap";
|
|
93353
|
+
name: string;
|
|
93354
|
+
defaultValue: string;
|
|
93355
|
+
} | {
|
|
93356
|
+
id: string;
|
|
93357
|
+
options: string[];
|
|
93358
|
+
type: "Variant";
|
|
93359
|
+
name: string;
|
|
92876
93360
|
defaultValue: string;
|
|
92877
93361
|
} | {
|
|
93362
|
+
id: string;
|
|
92878
93363
|
type: "Text";
|
|
93364
|
+
name: string;
|
|
92879
93365
|
defaultValue: string;
|
|
92880
93366
|
}> | undefined;
|
|
92881
93367
|
parentComponentId?: string | undefined;
|
|
@@ -92925,13 +93411,25 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
92925
93411
|
nodeId?: string | undefined;
|
|
92926
93412
|
};
|
|
92927
93413
|
componentPropertyDefinitions?: Record<string, {
|
|
93414
|
+
id: string;
|
|
92928
93415
|
type: "Boolean";
|
|
93416
|
+
name: string;
|
|
92929
93417
|
defaultValue: boolean;
|
|
92930
93418
|
} | {
|
|
93419
|
+
id: string;
|
|
92931
93420
|
type: "InstanceSwap";
|
|
93421
|
+
name: string;
|
|
92932
93422
|
defaultValue: string;
|
|
92933
93423
|
} | {
|
|
93424
|
+
id: string;
|
|
93425
|
+
options: string[];
|
|
93426
|
+
type: "Variant";
|
|
93427
|
+
name: string;
|
|
93428
|
+
defaultValue: string;
|
|
93429
|
+
} | {
|
|
93430
|
+
id: string;
|
|
92934
93431
|
type: "Text";
|
|
93432
|
+
name: string;
|
|
92935
93433
|
defaultValue: string;
|
|
92936
93434
|
}> | undefined;
|
|
92937
93435
|
parentComponentId?: string | undefined;
|
|
@@ -99811,61 +100309,85 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
99811
100309
|
nodeId?: string | undefined;
|
|
99812
100310
|
};
|
|
99813
100311
|
componentPropertyDefinitions?: Record<string, {
|
|
100312
|
+
id: string;
|
|
100313
|
+
type: "Boolean";
|
|
100314
|
+
name: string;
|
|
100315
|
+
defaultValue: boolean;
|
|
100316
|
+
} | {
|
|
100317
|
+
id: string;
|
|
100318
|
+
type: "InstanceSwap";
|
|
100319
|
+
name: string;
|
|
100320
|
+
defaultValue: string;
|
|
100321
|
+
} | {
|
|
100322
|
+
id: string;
|
|
100323
|
+
options: string[];
|
|
100324
|
+
type: "Variant";
|
|
100325
|
+
name: string;
|
|
100326
|
+
defaultValue: string;
|
|
100327
|
+
} | {
|
|
100328
|
+
id: string;
|
|
100329
|
+
type: "Text";
|
|
100330
|
+
name: string;
|
|
100331
|
+
defaultValue: string;
|
|
100332
|
+
}> | undefined;
|
|
100333
|
+
parentComponentId?: string | undefined;
|
|
100334
|
+
}[];
|
|
100335
|
+
components: {
|
|
100336
|
+
id: string;
|
|
100337
|
+
meta: {
|
|
100338
|
+
name: string;
|
|
100339
|
+
description?: string | undefined;
|
|
100340
|
+
};
|
|
100341
|
+
thumbnail: {
|
|
100342
|
+
type: "Url";
|
|
100343
|
+
url: string;
|
|
100344
|
+
originKey: string;
|
|
100345
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
100346
|
+
extension: string;
|
|
100347
|
+
} | {
|
|
100348
|
+
type: "FigmaRender";
|
|
100349
|
+
originKey: string;
|
|
100350
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
100351
|
+
format: "Png";
|
|
100352
|
+
nodeId: string;
|
|
100353
|
+
fileId: string;
|
|
100354
|
+
scale: number;
|
|
100355
|
+
fileVersionId?: string | undefined;
|
|
100356
|
+
} | {
|
|
100357
|
+
type: "FigmaRender";
|
|
100358
|
+
originKey: string;
|
|
100359
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
100360
|
+
format: "Svg";
|
|
100361
|
+
nodeId: string;
|
|
100362
|
+
fileId: string;
|
|
100363
|
+
fileVersionId?: string | undefined;
|
|
100364
|
+
};
|
|
100365
|
+
originId: string;
|
|
100366
|
+
originMetadata: {
|
|
100367
|
+
width?: number | undefined;
|
|
100368
|
+
height?: number | undefined;
|
|
100369
|
+
nodeId?: string | undefined;
|
|
100370
|
+
};
|
|
100371
|
+
componentPropertyDefinitions?: Record<string, {
|
|
100372
|
+
id: string;
|
|
99814
100373
|
type: "Boolean";
|
|
100374
|
+
name: string;
|
|
99815
100375
|
defaultValue: boolean;
|
|
99816
100376
|
} | {
|
|
100377
|
+
id: string;
|
|
99817
100378
|
type: "InstanceSwap";
|
|
100379
|
+
name: string;
|
|
99818
100380
|
defaultValue: string;
|
|
99819
100381
|
} | {
|
|
99820
|
-
|
|
99821
|
-
|
|
99822
|
-
|
|
99823
|
-
parentComponentId?: string | undefined;
|
|
99824
|
-
}[];
|
|
99825
|
-
components: {
|
|
99826
|
-
id: string;
|
|
99827
|
-
meta: {
|
|
100382
|
+
id: string;
|
|
100383
|
+
options: string[];
|
|
100384
|
+
type: "Variant";
|
|
99828
100385
|
name: string;
|
|
99829
|
-
description?: string | undefined;
|
|
99830
|
-
};
|
|
99831
|
-
thumbnail: {
|
|
99832
|
-
type: "Url";
|
|
99833
|
-
url: string;
|
|
99834
|
-
originKey: string;
|
|
99835
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
99836
|
-
extension: string;
|
|
99837
|
-
} | {
|
|
99838
|
-
type: "FigmaRender";
|
|
99839
|
-
originKey: string;
|
|
99840
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
99841
|
-
format: "Png";
|
|
99842
|
-
nodeId: string;
|
|
99843
|
-
fileId: string;
|
|
99844
|
-
scale: number;
|
|
99845
|
-
fileVersionId?: string | undefined;
|
|
99846
|
-
} | {
|
|
99847
|
-
type: "FigmaRender";
|
|
99848
|
-
originKey: string;
|
|
99849
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
99850
|
-
format: "Svg";
|
|
99851
|
-
nodeId: string;
|
|
99852
|
-
fileId: string;
|
|
99853
|
-
fileVersionId?: string | undefined;
|
|
99854
|
-
};
|
|
99855
|
-
originId: string;
|
|
99856
|
-
originMetadata: {
|
|
99857
|
-
width?: number | undefined;
|
|
99858
|
-
height?: number | undefined;
|
|
99859
|
-
nodeId?: string | undefined;
|
|
99860
|
-
};
|
|
99861
|
-
componentPropertyDefinitions?: Record<string, {
|
|
99862
|
-
type: "Boolean";
|
|
99863
|
-
defaultValue: boolean;
|
|
99864
|
-
} | {
|
|
99865
|
-
type: "InstanceSwap";
|
|
99866
100386
|
defaultValue: string;
|
|
99867
100387
|
} | {
|
|
100388
|
+
id: string;
|
|
99868
100389
|
type: "Text";
|
|
100390
|
+
name: string;
|
|
99869
100391
|
defaultValue: string;
|
|
99870
100392
|
}> | undefined;
|
|
99871
100393
|
parentComponentId?: string | undefined;
|
|
@@ -101094,13 +101616,25 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
101094
101616
|
nodeId?: string | undefined;
|
|
101095
101617
|
};
|
|
101096
101618
|
componentPropertyDefinitions?: Record<string, {
|
|
101619
|
+
id: string;
|
|
101097
101620
|
type: "Boolean";
|
|
101621
|
+
name: string;
|
|
101098
101622
|
defaultValue: boolean;
|
|
101099
101623
|
} | {
|
|
101624
|
+
id: string;
|
|
101100
101625
|
type: "InstanceSwap";
|
|
101626
|
+
name: string;
|
|
101627
|
+
defaultValue: string;
|
|
101628
|
+
} | {
|
|
101629
|
+
id: string;
|
|
101630
|
+
options: string[];
|
|
101631
|
+
type: "Variant";
|
|
101632
|
+
name: string;
|
|
101101
101633
|
defaultValue: string;
|
|
101102
101634
|
} | {
|
|
101635
|
+
id: string;
|
|
101103
101636
|
type: "Text";
|
|
101637
|
+
name: string;
|
|
101104
101638
|
defaultValue: string;
|
|
101105
101639
|
}> | undefined;
|
|
101106
101640
|
parentComponentId?: string | undefined;
|
|
@@ -101142,13 +101676,25 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
101142
101676
|
nodeId?: string | undefined;
|
|
101143
101677
|
};
|
|
101144
101678
|
componentPropertyDefinitions?: Record<string, {
|
|
101679
|
+
id: string;
|
|
101145
101680
|
type: "Boolean";
|
|
101681
|
+
name: string;
|
|
101146
101682
|
defaultValue: boolean;
|
|
101147
101683
|
} | {
|
|
101684
|
+
id: string;
|
|
101148
101685
|
type: "InstanceSwap";
|
|
101686
|
+
name: string;
|
|
101687
|
+
defaultValue: string;
|
|
101688
|
+
} | {
|
|
101689
|
+
id: string;
|
|
101690
|
+
options: string[];
|
|
101691
|
+
type: "Variant";
|
|
101692
|
+
name: string;
|
|
101149
101693
|
defaultValue: string;
|
|
101150
101694
|
} | {
|
|
101695
|
+
id: string;
|
|
101151
101696
|
type: "Text";
|
|
101697
|
+
name: string;
|
|
101152
101698
|
defaultValue: string;
|
|
101153
101699
|
}> | undefined;
|
|
101154
101700
|
parentComponentId?: string | undefined;
|
|
@@ -102081,32 +102627,73 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
102081
102627
|
fileVersionId?: string | undefined;
|
|
102082
102628
|
}>]>]>;
|
|
102083
102629
|
parentComponentId: z.ZodOptional<z.ZodString>;
|
|
102084
|
-
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
|
+
}, {
|
|
102085
102634
|
type: z.ZodLiteral<"Boolean">;
|
|
102086
102635
|
defaultValue: z.ZodBoolean;
|
|
102087
|
-
}
|
|
102636
|
+
}>, "strip", z.ZodTypeAny, {
|
|
102637
|
+
id: string;
|
|
102088
102638
|
type: "Boolean";
|
|
102639
|
+
name: string;
|
|
102089
102640
|
defaultValue: boolean;
|
|
102090
102641
|
}, {
|
|
102642
|
+
id: string;
|
|
102091
102643
|
type: "Boolean";
|
|
102644
|
+
name: string;
|
|
102092
102645
|
defaultValue: boolean;
|
|
102093
|
-
}>, z.ZodObject<{
|
|
102646
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
102647
|
+
id: z.ZodString;
|
|
102648
|
+
name: z.ZodString;
|
|
102649
|
+
}, {
|
|
102094
102650
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
102095
102651
|
defaultValue: z.ZodString;
|
|
102096
|
-
}
|
|
102652
|
+
}>, "strip", z.ZodTypeAny, {
|
|
102653
|
+
id: string;
|
|
102097
102654
|
type: "InstanceSwap";
|
|
102655
|
+
name: string;
|
|
102098
102656
|
defaultValue: string;
|
|
102099
102657
|
}, {
|
|
102658
|
+
id: string;
|
|
102100
102659
|
type: "InstanceSwap";
|
|
102660
|
+
name: string;
|
|
102101
102661
|
defaultValue: string;
|
|
102102
|
-
}>, z.ZodObject<{
|
|
102662
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
102663
|
+
id: z.ZodString;
|
|
102664
|
+
name: z.ZodString;
|
|
102665
|
+
}, {
|
|
102103
102666
|
type: z.ZodLiteral<"Text">;
|
|
102667
|
+
id: z.ZodString;
|
|
102104
102668
|
defaultValue: z.ZodString;
|
|
102105
|
-
}
|
|
102669
|
+
}>, "strip", z.ZodTypeAny, {
|
|
102670
|
+
id: string;
|
|
102106
102671
|
type: "Text";
|
|
102672
|
+
name: string;
|
|
102107
102673
|
defaultValue: string;
|
|
102108
102674
|
}, {
|
|
102675
|
+
id: string;
|
|
102109
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;
|
|
102110
102697
|
defaultValue: string;
|
|
102111
102698
|
}>]>>>;
|
|
102112
102699
|
}>, {
|
|
@@ -102212,13 +102799,25 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
102212
102799
|
fileVersionId?: string | undefined;
|
|
102213
102800
|
} | undefined;
|
|
102214
102801
|
componentPropertyDefinitions?: Record<string, {
|
|
102802
|
+
id: string;
|
|
102215
102803
|
type: "Boolean";
|
|
102804
|
+
name: string;
|
|
102216
102805
|
defaultValue: boolean;
|
|
102217
102806
|
} | {
|
|
102807
|
+
id: string;
|
|
102218
102808
|
type: "InstanceSwap";
|
|
102809
|
+
name: string;
|
|
102810
|
+
defaultValue: string;
|
|
102811
|
+
} | {
|
|
102812
|
+
id: string;
|
|
102813
|
+
options: string[];
|
|
102814
|
+
type: "Variant";
|
|
102815
|
+
name: string;
|
|
102219
102816
|
defaultValue: string;
|
|
102220
102817
|
} | {
|
|
102818
|
+
id: string;
|
|
102221
102819
|
type: "Text";
|
|
102820
|
+
name: string;
|
|
102222
102821
|
defaultValue: string;
|
|
102223
102822
|
}> | undefined;
|
|
102224
102823
|
parentComponentId?: string | undefined;
|
|
@@ -102273,13 +102872,25 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
102273
102872
|
fileVersionId?: string | undefined;
|
|
102274
102873
|
} | undefined;
|
|
102275
102874
|
componentPropertyDefinitions?: Record<string, {
|
|
102875
|
+
id: string;
|
|
102276
102876
|
type: "Boolean";
|
|
102877
|
+
name: string;
|
|
102277
102878
|
defaultValue: boolean;
|
|
102278
102879
|
} | {
|
|
102880
|
+
id: string;
|
|
102279
102881
|
type: "InstanceSwap";
|
|
102882
|
+
name: string;
|
|
102280
102883
|
defaultValue: string;
|
|
102281
102884
|
} | {
|
|
102885
|
+
id: string;
|
|
102886
|
+
options: string[];
|
|
102887
|
+
type: "Variant";
|
|
102888
|
+
name: string;
|
|
102889
|
+
defaultValue: string;
|
|
102890
|
+
} | {
|
|
102891
|
+
id: string;
|
|
102282
102892
|
type: "Text";
|
|
102893
|
+
name: string;
|
|
102283
102894
|
defaultValue: string;
|
|
102284
102895
|
}> | undefined;
|
|
102285
102896
|
parentComponentId?: string | undefined;
|
|
@@ -102392,32 +103003,73 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
|
|
|
102392
103003
|
fileVersionId?: string | undefined;
|
|
102393
103004
|
}>]>]>;
|
|
102394
103005
|
parentComponentId: z.ZodOptional<z.ZodString>;
|
|
102395
|
-
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
|
+
}, {
|
|
102396
103010
|
type: z.ZodLiteral<"Boolean">;
|
|
102397
103011
|
defaultValue: z.ZodBoolean;
|
|
102398
|
-
}
|
|
103012
|
+
}>, "strip", z.ZodTypeAny, {
|
|
103013
|
+
id: string;
|
|
102399
103014
|
type: "Boolean";
|
|
103015
|
+
name: string;
|
|
102400
103016
|
defaultValue: boolean;
|
|
102401
103017
|
}, {
|
|
103018
|
+
id: string;
|
|
102402
103019
|
type: "Boolean";
|
|
103020
|
+
name: string;
|
|
102403
103021
|
defaultValue: boolean;
|
|
102404
|
-
}>, z.ZodObject<{
|
|
103022
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
103023
|
+
id: z.ZodString;
|
|
103024
|
+
name: z.ZodString;
|
|
103025
|
+
}, {
|
|
102405
103026
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
102406
103027
|
defaultValue: z.ZodString;
|
|
102407
|
-
}
|
|
103028
|
+
}>, "strip", z.ZodTypeAny, {
|
|
103029
|
+
id: string;
|
|
102408
103030
|
type: "InstanceSwap";
|
|
103031
|
+
name: string;
|
|
102409
103032
|
defaultValue: string;
|
|
102410
103033
|
}, {
|
|
103034
|
+
id: string;
|
|
102411
103035
|
type: "InstanceSwap";
|
|
103036
|
+
name: string;
|
|
102412
103037
|
defaultValue: string;
|
|
102413
|
-
}>, z.ZodObject<{
|
|
103038
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
103039
|
+
id: z.ZodString;
|
|
103040
|
+
name: z.ZodString;
|
|
103041
|
+
}, {
|
|
102414
103042
|
type: z.ZodLiteral<"Text">;
|
|
103043
|
+
id: z.ZodString;
|
|
102415
103044
|
defaultValue: z.ZodString;
|
|
102416
|
-
}
|
|
103045
|
+
}>, "strip", z.ZodTypeAny, {
|
|
103046
|
+
id: string;
|
|
102417
103047
|
type: "Text";
|
|
103048
|
+
name: string;
|
|
102418
103049
|
defaultValue: string;
|
|
102419
103050
|
}, {
|
|
103051
|
+
id: string;
|
|
102420
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;
|
|
102421
103073
|
defaultValue: string;
|
|
102422
103074
|
}>]>>>;
|
|
102423
103075
|
}>, {
|
|
@@ -102471,13 +103123,25 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
|
|
|
102471
103123
|
nodeId?: string | undefined;
|
|
102472
103124
|
};
|
|
102473
103125
|
componentPropertyDefinitions?: Record<string, {
|
|
103126
|
+
id: string;
|
|
102474
103127
|
type: "Boolean";
|
|
103128
|
+
name: string;
|
|
102475
103129
|
defaultValue: boolean;
|
|
102476
103130
|
} | {
|
|
103131
|
+
id: string;
|
|
102477
103132
|
type: "InstanceSwap";
|
|
103133
|
+
name: string;
|
|
103134
|
+
defaultValue: string;
|
|
103135
|
+
} | {
|
|
103136
|
+
id: string;
|
|
103137
|
+
options: string[];
|
|
103138
|
+
type: "Variant";
|
|
103139
|
+
name: string;
|
|
102478
103140
|
defaultValue: string;
|
|
102479
103141
|
} | {
|
|
103142
|
+
id: string;
|
|
102480
103143
|
type: "Text";
|
|
103144
|
+
name: string;
|
|
102481
103145
|
defaultValue: string;
|
|
102482
103146
|
}> | undefined;
|
|
102483
103147
|
parentComponentId?: string | undefined;
|
|
@@ -102518,13 +103182,25 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
|
|
|
102518
103182
|
nodeId?: string | undefined;
|
|
102519
103183
|
};
|
|
102520
103184
|
componentPropertyDefinitions?: Record<string, {
|
|
103185
|
+
id: string;
|
|
102521
103186
|
type: "Boolean";
|
|
103187
|
+
name: string;
|
|
102522
103188
|
defaultValue: boolean;
|
|
102523
103189
|
} | {
|
|
103190
|
+
id: string;
|
|
102524
103191
|
type: "InstanceSwap";
|
|
103192
|
+
name: string;
|
|
103193
|
+
defaultValue: string;
|
|
103194
|
+
} | {
|
|
103195
|
+
id: string;
|
|
103196
|
+
options: string[];
|
|
103197
|
+
type: "Variant";
|
|
103198
|
+
name: string;
|
|
102525
103199
|
defaultValue: string;
|
|
102526
103200
|
} | {
|
|
103201
|
+
id: string;
|
|
102527
103202
|
type: "Text";
|
|
103203
|
+
name: string;
|
|
102528
103204
|
defaultValue: string;
|
|
102529
103205
|
}> | undefined;
|
|
102530
103206
|
parentComponentId?: string | undefined;
|
|
@@ -102637,32 +103313,73 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
102637
103313
|
fileVersionId?: string | undefined;
|
|
102638
103314
|
}>]>]>;
|
|
102639
103315
|
parentComponentId: z.ZodOptional<z.ZodString>;
|
|
102640
|
-
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
|
+
}, {
|
|
102641
103320
|
type: z.ZodLiteral<"Boolean">;
|
|
102642
103321
|
defaultValue: z.ZodBoolean;
|
|
102643
|
-
}
|
|
103322
|
+
}>, "strip", z.ZodTypeAny, {
|
|
103323
|
+
id: string;
|
|
102644
103324
|
type: "Boolean";
|
|
103325
|
+
name: string;
|
|
102645
103326
|
defaultValue: boolean;
|
|
102646
103327
|
}, {
|
|
103328
|
+
id: string;
|
|
102647
103329
|
type: "Boolean";
|
|
103330
|
+
name: string;
|
|
102648
103331
|
defaultValue: boolean;
|
|
102649
|
-
}>, z.ZodObject<{
|
|
103332
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
103333
|
+
id: z.ZodString;
|
|
103334
|
+
name: z.ZodString;
|
|
103335
|
+
}, {
|
|
102650
103336
|
type: z.ZodLiteral<"InstanceSwap">;
|
|
102651
103337
|
defaultValue: z.ZodString;
|
|
102652
|
-
}
|
|
103338
|
+
}>, "strip", z.ZodTypeAny, {
|
|
103339
|
+
id: string;
|
|
102653
103340
|
type: "InstanceSwap";
|
|
103341
|
+
name: string;
|
|
102654
103342
|
defaultValue: string;
|
|
102655
103343
|
}, {
|
|
103344
|
+
id: string;
|
|
102656
103345
|
type: "InstanceSwap";
|
|
103346
|
+
name: string;
|
|
102657
103347
|
defaultValue: string;
|
|
102658
|
-
}>, z.ZodObject<{
|
|
103348
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
103349
|
+
id: z.ZodString;
|
|
103350
|
+
name: z.ZodString;
|
|
103351
|
+
}, {
|
|
102659
103352
|
type: z.ZodLiteral<"Text">;
|
|
103353
|
+
id: z.ZodString;
|
|
102660
103354
|
defaultValue: z.ZodString;
|
|
102661
|
-
}
|
|
103355
|
+
}>, "strip", z.ZodTypeAny, {
|
|
103356
|
+
id: string;
|
|
102662
103357
|
type: "Text";
|
|
103358
|
+
name: string;
|
|
102663
103359
|
defaultValue: string;
|
|
102664
103360
|
}, {
|
|
103361
|
+
id: string;
|
|
102665
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;
|
|
102666
103383
|
defaultValue: string;
|
|
102667
103384
|
}>]>>>;
|
|
102668
103385
|
}>, {
|
|
@@ -102752,13 +103469,25 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
102752
103469
|
nodeId?: string | undefined;
|
|
102753
103470
|
};
|
|
102754
103471
|
componentPropertyDefinitions?: Record<string, {
|
|
103472
|
+
id: string;
|
|
102755
103473
|
type: "Boolean";
|
|
103474
|
+
name: string;
|
|
102756
103475
|
defaultValue: boolean;
|
|
102757
103476
|
} | {
|
|
103477
|
+
id: string;
|
|
102758
103478
|
type: "InstanceSwap";
|
|
103479
|
+
name: string;
|
|
102759
103480
|
defaultValue: string;
|
|
102760
103481
|
} | {
|
|
103482
|
+
id: string;
|
|
103483
|
+
options: string[];
|
|
103484
|
+
type: "Variant";
|
|
103485
|
+
name: string;
|
|
103486
|
+
defaultValue: string;
|
|
103487
|
+
} | {
|
|
103488
|
+
id: string;
|
|
102761
103489
|
type: "Text";
|
|
103490
|
+
name: string;
|
|
102762
103491
|
defaultValue: string;
|
|
102763
103492
|
}> | undefined;
|
|
102764
103493
|
parentComponentId?: string | undefined;
|
|
@@ -102808,13 +103537,25 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
102808
103537
|
nodeId?: string | undefined;
|
|
102809
103538
|
};
|
|
102810
103539
|
componentPropertyDefinitions?: Record<string, {
|
|
103540
|
+
id: string;
|
|
102811
103541
|
type: "Boolean";
|
|
103542
|
+
name: string;
|
|
102812
103543
|
defaultValue: boolean;
|
|
102813
103544
|
} | {
|
|
103545
|
+
id: string;
|
|
102814
103546
|
type: "InstanceSwap";
|
|
103547
|
+
name: string;
|
|
103548
|
+
defaultValue: string;
|
|
103549
|
+
} | {
|
|
103550
|
+
id: string;
|
|
103551
|
+
options: string[];
|
|
103552
|
+
type: "Variant";
|
|
103553
|
+
name: string;
|
|
102815
103554
|
defaultValue: string;
|
|
102816
103555
|
} | {
|
|
103556
|
+
id: string;
|
|
102817
103557
|
type: "Text";
|
|
103558
|
+
name: string;
|
|
102818
103559
|
defaultValue: string;
|
|
102819
103560
|
}> | undefined;
|
|
102820
103561
|
parentComponentId?: string | undefined;
|
|
@@ -167056,4 +167797,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
167056
167797
|
}>;
|
|
167057
167798
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
167058
167799
|
|
|
167059
|
-
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, 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 };
|
|
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 };
|