@supernova-studio/model 0.48.14 → 0.48.16
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 +482 -4
- package/dist/index.d.ts +482 -4
- package/dist/index.js +62 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1167 -1109
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/component-properties.ts +52 -0
- package/src/dsm/elements/component-set.ts +10 -0
- package/src/dsm/elements/component.ts +8 -2
- package/src/dsm/elements/index.ts +2 -0
package/dist/index.d.mts
CHANGED
|
@@ -31341,14 +31341,14 @@ declare const PageBlockDefinitionTextOptions: z.ZodObject<{
|
|
|
31341
31341
|
allowLineBreaks: z.ZodOptional<z.ZodBoolean>;
|
|
31342
31342
|
}, "strip", z.ZodTypeAny, {
|
|
31343
31343
|
color?: "Neutral" | "NeutralFaded" | undefined;
|
|
31344
|
-
placeholder?: string | undefined;
|
|
31345
31344
|
defaultValue?: string | undefined;
|
|
31345
|
+
placeholder?: string | undefined;
|
|
31346
31346
|
textStyle?: "Custom" | "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
31347
31347
|
allowLineBreaks?: boolean | undefined;
|
|
31348
31348
|
}, {
|
|
31349
31349
|
color?: "Neutral" | "NeutralFaded" | undefined;
|
|
31350
|
-
placeholder?: string | undefined;
|
|
31351
31350
|
defaultValue?: string | undefined;
|
|
31351
|
+
placeholder?: string | undefined;
|
|
31352
31352
|
textStyle?: "Custom" | "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
31353
31353
|
allowLineBreaks?: boolean | undefined;
|
|
31354
31354
|
}>;
|
|
@@ -48277,6 +48277,319 @@ declare const DesignElementSlugPart: z.ZodObject<{
|
|
|
48277
48277
|
}>;
|
|
48278
48278
|
type DesignElementSlugPart = z.infer<typeof DesignElementSlugPart>;
|
|
48279
48279
|
|
|
48280
|
+
declare const FigmaComponentPropertyType: z.ZodEnum<["Boolean", "InstanceSwap", "Variant", "Text"]>;
|
|
48281
|
+
type FigmaComponentPropertyType = z.infer<typeof FigmaComponentPropertyType>;
|
|
48282
|
+
declare const FigmaComponentBooleanProperty: z.ZodObject<{
|
|
48283
|
+
type: z.ZodLiteral<"Boolean">;
|
|
48284
|
+
value: z.ZodBoolean;
|
|
48285
|
+
defaultValue: z.ZodBoolean;
|
|
48286
|
+
}, "strip", z.ZodTypeAny, {
|
|
48287
|
+
type: "Boolean";
|
|
48288
|
+
value: boolean;
|
|
48289
|
+
defaultValue: boolean;
|
|
48290
|
+
}, {
|
|
48291
|
+
type: "Boolean";
|
|
48292
|
+
value: boolean;
|
|
48293
|
+
defaultValue: boolean;
|
|
48294
|
+
}>;
|
|
48295
|
+
type FigmaComponentBooleanProperty = z.infer<typeof FigmaComponentBooleanProperty>;
|
|
48296
|
+
declare const FigmaComponentInstanceSwapProperty: z.ZodObject<{
|
|
48297
|
+
type: z.ZodLiteral<"InstanceSwap">;
|
|
48298
|
+
value: z.ZodString;
|
|
48299
|
+
}, "strip", z.ZodTypeAny, {
|
|
48300
|
+
type: "InstanceSwap";
|
|
48301
|
+
value: string;
|
|
48302
|
+
}, {
|
|
48303
|
+
type: "InstanceSwap";
|
|
48304
|
+
value: string;
|
|
48305
|
+
}>;
|
|
48306
|
+
type FigmaComponentInstanceSwapProperty = z.infer<typeof FigmaComponentInstanceSwapProperty>;
|
|
48307
|
+
declare const FigmaComponentVariantProperty: z.ZodObject<{
|
|
48308
|
+
type: z.ZodLiteral<"Variant">;
|
|
48309
|
+
value: z.ZodString;
|
|
48310
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
48311
|
+
}, "strip", z.ZodTypeAny, {
|
|
48312
|
+
options: string[];
|
|
48313
|
+
type: "Variant";
|
|
48314
|
+
value: string;
|
|
48315
|
+
}, {
|
|
48316
|
+
options: string[];
|
|
48317
|
+
type: "Variant";
|
|
48318
|
+
value: string;
|
|
48319
|
+
}>;
|
|
48320
|
+
type FigmaComponentVariantProperty = z.infer<typeof FigmaComponentVariantProperty>;
|
|
48321
|
+
declare const FigmaComponentTextProperty: z.ZodObject<{
|
|
48322
|
+
type: z.ZodLiteral<"Text">;
|
|
48323
|
+
value: z.ZodString;
|
|
48324
|
+
}, "strip", z.ZodTypeAny, {
|
|
48325
|
+
type: "Text";
|
|
48326
|
+
value: string;
|
|
48327
|
+
}, {
|
|
48328
|
+
type: "Text";
|
|
48329
|
+
value: string;
|
|
48330
|
+
}>;
|
|
48331
|
+
type FigmaComponentTextProperty = z.infer<typeof FigmaComponentTextProperty>;
|
|
48332
|
+
declare const FigmaComponentProperties: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
48333
|
+
type: z.ZodLiteral<"Boolean">;
|
|
48334
|
+
value: z.ZodBoolean;
|
|
48335
|
+
defaultValue: z.ZodBoolean;
|
|
48336
|
+
}, "strip", z.ZodTypeAny, {
|
|
48337
|
+
type: "Boolean";
|
|
48338
|
+
value: boolean;
|
|
48339
|
+
defaultValue: boolean;
|
|
48340
|
+
}, {
|
|
48341
|
+
type: "Boolean";
|
|
48342
|
+
value: boolean;
|
|
48343
|
+
defaultValue: boolean;
|
|
48344
|
+
}>, z.ZodObject<{
|
|
48345
|
+
type: z.ZodLiteral<"InstanceSwap">;
|
|
48346
|
+
value: z.ZodString;
|
|
48347
|
+
}, "strip", z.ZodTypeAny, {
|
|
48348
|
+
type: "InstanceSwap";
|
|
48349
|
+
value: string;
|
|
48350
|
+
}, {
|
|
48351
|
+
type: "InstanceSwap";
|
|
48352
|
+
value: string;
|
|
48353
|
+
}>, z.ZodObject<{
|
|
48354
|
+
type: z.ZodLiteral<"Text">;
|
|
48355
|
+
value: z.ZodString;
|
|
48356
|
+
}, "strip", z.ZodTypeAny, {
|
|
48357
|
+
type: "Text";
|
|
48358
|
+
value: string;
|
|
48359
|
+
}, {
|
|
48360
|
+
type: "Text";
|
|
48361
|
+
value: string;
|
|
48362
|
+
}>]>>;
|
|
48363
|
+
type FigmaComponentProperties = z.infer<typeof FigmaComponentProperties>;
|
|
48364
|
+
declare const FigmaComponentSetProperties: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
48365
|
+
type: z.ZodLiteral<"Boolean">;
|
|
48366
|
+
value: z.ZodBoolean;
|
|
48367
|
+
defaultValue: z.ZodBoolean;
|
|
48368
|
+
}, "strip", z.ZodTypeAny, {
|
|
48369
|
+
type: "Boolean";
|
|
48370
|
+
value: boolean;
|
|
48371
|
+
defaultValue: boolean;
|
|
48372
|
+
}, {
|
|
48373
|
+
type: "Boolean";
|
|
48374
|
+
value: boolean;
|
|
48375
|
+
defaultValue: boolean;
|
|
48376
|
+
}>, z.ZodObject<{
|
|
48377
|
+
type: z.ZodLiteral<"InstanceSwap">;
|
|
48378
|
+
value: z.ZodString;
|
|
48379
|
+
}, "strip", z.ZodTypeAny, {
|
|
48380
|
+
type: "InstanceSwap";
|
|
48381
|
+
value: string;
|
|
48382
|
+
}, {
|
|
48383
|
+
type: "InstanceSwap";
|
|
48384
|
+
value: string;
|
|
48385
|
+
}>, z.ZodObject<{
|
|
48386
|
+
type: z.ZodLiteral<"Text">;
|
|
48387
|
+
value: z.ZodString;
|
|
48388
|
+
}, "strip", z.ZodTypeAny, {
|
|
48389
|
+
type: "Text";
|
|
48390
|
+
value: string;
|
|
48391
|
+
}, {
|
|
48392
|
+
type: "Text";
|
|
48393
|
+
value: string;
|
|
48394
|
+
}>, z.ZodObject<{
|
|
48395
|
+
type: z.ZodLiteral<"Variant">;
|
|
48396
|
+
value: z.ZodString;
|
|
48397
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
48398
|
+
}, "strip", z.ZodTypeAny, {
|
|
48399
|
+
options: string[];
|
|
48400
|
+
type: "Variant";
|
|
48401
|
+
value: string;
|
|
48402
|
+
}, {
|
|
48403
|
+
options: string[];
|
|
48404
|
+
type: "Variant";
|
|
48405
|
+
value: string;
|
|
48406
|
+
}>]>>;
|
|
48407
|
+
type FigmaComponentSetProperties = z.infer<typeof FigmaComponentSetProperties>;
|
|
48408
|
+
|
|
48409
|
+
declare const ComponentSet: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
48410
|
+
id: z.ZodString;
|
|
48411
|
+
persistentId: z.ZodString;
|
|
48412
|
+
meta: z.ZodObject<{
|
|
48413
|
+
name: z.ZodString;
|
|
48414
|
+
description: z.ZodOptional<z.ZodString>;
|
|
48415
|
+
}, "strip", z.ZodTypeAny, {
|
|
48416
|
+
name: string;
|
|
48417
|
+
description?: string | undefined;
|
|
48418
|
+
}, {
|
|
48419
|
+
name: string;
|
|
48420
|
+
description?: string | undefined;
|
|
48421
|
+
}>;
|
|
48422
|
+
designSystemVersionId: z.ZodString;
|
|
48423
|
+
createdAt: z.ZodDate;
|
|
48424
|
+
updatedAt: z.ZodDate;
|
|
48425
|
+
}, z.objectUtil.extendShape<{
|
|
48426
|
+
parentPersistentId: z.ZodOptional<z.ZodString>;
|
|
48427
|
+
sortOrder: z.ZodNumber;
|
|
48428
|
+
}, {
|
|
48429
|
+
parentPersistentId: z.ZodString;
|
|
48430
|
+
}>>, {
|
|
48431
|
+
brandPersistentId: z.ZodString;
|
|
48432
|
+
}>, {
|
|
48433
|
+
origin: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
48434
|
+
id: z.ZodString;
|
|
48435
|
+
sourceId: z.ZodString;
|
|
48436
|
+
name: z.ZodString;
|
|
48437
|
+
}, {
|
|
48438
|
+
nodeId: z.ZodOptional<z.ZodString>;
|
|
48439
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
48440
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
48441
|
+
}>, "strip", z.ZodTypeAny, {
|
|
48442
|
+
id: string;
|
|
48443
|
+
name: string;
|
|
48444
|
+
sourceId: string;
|
|
48445
|
+
width?: number | undefined;
|
|
48446
|
+
height?: number | undefined;
|
|
48447
|
+
nodeId?: string | undefined;
|
|
48448
|
+
}, {
|
|
48449
|
+
id: string;
|
|
48450
|
+
name: string;
|
|
48451
|
+
sourceId: string;
|
|
48452
|
+
width?: number | undefined;
|
|
48453
|
+
height?: number | undefined;
|
|
48454
|
+
nodeId?: string | undefined;
|
|
48455
|
+
}>>;
|
|
48456
|
+
thumbnail: z.ZodObject<{
|
|
48457
|
+
assetId: z.ZodString;
|
|
48458
|
+
assetPath: z.ZodString;
|
|
48459
|
+
}, "strip", z.ZodTypeAny, {
|
|
48460
|
+
assetId: string;
|
|
48461
|
+
assetPath: string;
|
|
48462
|
+
}, {
|
|
48463
|
+
assetId: string;
|
|
48464
|
+
assetPath: string;
|
|
48465
|
+
}>;
|
|
48466
|
+
}>, {
|
|
48467
|
+
properties: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
48468
|
+
type: z.ZodLiteral<"Boolean">;
|
|
48469
|
+
value: z.ZodBoolean;
|
|
48470
|
+
defaultValue: z.ZodBoolean;
|
|
48471
|
+
}, "strip", z.ZodTypeAny, {
|
|
48472
|
+
type: "Boolean";
|
|
48473
|
+
value: boolean;
|
|
48474
|
+
defaultValue: boolean;
|
|
48475
|
+
}, {
|
|
48476
|
+
type: "Boolean";
|
|
48477
|
+
value: boolean;
|
|
48478
|
+
defaultValue: boolean;
|
|
48479
|
+
}>, z.ZodObject<{
|
|
48480
|
+
type: z.ZodLiteral<"InstanceSwap">;
|
|
48481
|
+
value: z.ZodString;
|
|
48482
|
+
}, "strip", z.ZodTypeAny, {
|
|
48483
|
+
type: "InstanceSwap";
|
|
48484
|
+
value: string;
|
|
48485
|
+
}, {
|
|
48486
|
+
type: "InstanceSwap";
|
|
48487
|
+
value: string;
|
|
48488
|
+
}>, z.ZodObject<{
|
|
48489
|
+
type: z.ZodLiteral<"Text">;
|
|
48490
|
+
value: z.ZodString;
|
|
48491
|
+
}, "strip", z.ZodTypeAny, {
|
|
48492
|
+
type: "Text";
|
|
48493
|
+
value: string;
|
|
48494
|
+
}, {
|
|
48495
|
+
type: "Text";
|
|
48496
|
+
value: string;
|
|
48497
|
+
}>, z.ZodObject<{
|
|
48498
|
+
type: z.ZodLiteral<"Variant">;
|
|
48499
|
+
value: z.ZodString;
|
|
48500
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
48501
|
+
}, "strip", z.ZodTypeAny, {
|
|
48502
|
+
options: string[];
|
|
48503
|
+
type: "Variant";
|
|
48504
|
+
value: string;
|
|
48505
|
+
}, {
|
|
48506
|
+
options: string[];
|
|
48507
|
+
type: "Variant";
|
|
48508
|
+
value: string;
|
|
48509
|
+
}>]>>;
|
|
48510
|
+
}>, "strip", z.ZodTypeAny, {
|
|
48511
|
+
id: string;
|
|
48512
|
+
createdAt: Date;
|
|
48513
|
+
updatedAt: Date;
|
|
48514
|
+
persistentId: string;
|
|
48515
|
+
properties: Record<string, {
|
|
48516
|
+
type: "Boolean";
|
|
48517
|
+
value: boolean;
|
|
48518
|
+
defaultValue: boolean;
|
|
48519
|
+
} | {
|
|
48520
|
+
type: "InstanceSwap";
|
|
48521
|
+
value: string;
|
|
48522
|
+
} | {
|
|
48523
|
+
options: string[];
|
|
48524
|
+
type: "Variant";
|
|
48525
|
+
value: string;
|
|
48526
|
+
} | {
|
|
48527
|
+
type: "Text";
|
|
48528
|
+
value: string;
|
|
48529
|
+
}>;
|
|
48530
|
+
designSystemVersionId: string;
|
|
48531
|
+
brandPersistentId: string;
|
|
48532
|
+
parentPersistentId: string;
|
|
48533
|
+
sortOrder: number;
|
|
48534
|
+
meta: {
|
|
48535
|
+
name: string;
|
|
48536
|
+
description?: string | undefined;
|
|
48537
|
+
};
|
|
48538
|
+
thumbnail: {
|
|
48539
|
+
assetId: string;
|
|
48540
|
+
assetPath: string;
|
|
48541
|
+
};
|
|
48542
|
+
origin?: {
|
|
48543
|
+
id: string;
|
|
48544
|
+
name: string;
|
|
48545
|
+
sourceId: string;
|
|
48546
|
+
width?: number | undefined;
|
|
48547
|
+
height?: number | undefined;
|
|
48548
|
+
nodeId?: string | undefined;
|
|
48549
|
+
} | undefined;
|
|
48550
|
+
}, {
|
|
48551
|
+
id: string;
|
|
48552
|
+
createdAt: Date;
|
|
48553
|
+
updatedAt: Date;
|
|
48554
|
+
persistentId: string;
|
|
48555
|
+
properties: Record<string, {
|
|
48556
|
+
type: "Boolean";
|
|
48557
|
+
value: boolean;
|
|
48558
|
+
defaultValue: boolean;
|
|
48559
|
+
} | {
|
|
48560
|
+
type: "InstanceSwap";
|
|
48561
|
+
value: string;
|
|
48562
|
+
} | {
|
|
48563
|
+
options: string[];
|
|
48564
|
+
type: "Variant";
|
|
48565
|
+
value: string;
|
|
48566
|
+
} | {
|
|
48567
|
+
type: "Text";
|
|
48568
|
+
value: string;
|
|
48569
|
+
}>;
|
|
48570
|
+
designSystemVersionId: string;
|
|
48571
|
+
brandPersistentId: string;
|
|
48572
|
+
parentPersistentId: string;
|
|
48573
|
+
sortOrder: number;
|
|
48574
|
+
meta: {
|
|
48575
|
+
name: string;
|
|
48576
|
+
description?: string | undefined;
|
|
48577
|
+
};
|
|
48578
|
+
thumbnail: {
|
|
48579
|
+
assetId: string;
|
|
48580
|
+
assetPath: string;
|
|
48581
|
+
};
|
|
48582
|
+
origin?: {
|
|
48583
|
+
id: string;
|
|
48584
|
+
name: string;
|
|
48585
|
+
sourceId: string;
|
|
48586
|
+
width?: number | undefined;
|
|
48587
|
+
height?: number | undefined;
|
|
48588
|
+
nodeId?: string | undefined;
|
|
48589
|
+
} | undefined;
|
|
48590
|
+
}>;
|
|
48591
|
+
type ComponentSet = z.infer<typeof ComponentSet>;
|
|
48592
|
+
|
|
48280
48593
|
declare const ComponentOriginPart: z.ZodObject<{
|
|
48281
48594
|
nodeId: z.ZodOptional<z.ZodString>;
|
|
48282
48595
|
width: z.ZodOptional<z.ZodNumber>;
|
|
@@ -48290,6 +48603,114 @@ declare const ComponentOriginPart: z.ZodObject<{
|
|
|
48290
48603
|
height?: number | undefined;
|
|
48291
48604
|
nodeId?: string | undefined;
|
|
48292
48605
|
}>;
|
|
48606
|
+
declare const BaseComponent: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
48607
|
+
id: z.ZodString;
|
|
48608
|
+
persistentId: z.ZodString;
|
|
48609
|
+
meta: z.ZodObject<{
|
|
48610
|
+
name: z.ZodString;
|
|
48611
|
+
description: z.ZodOptional<z.ZodString>;
|
|
48612
|
+
}, "strip", z.ZodTypeAny, {
|
|
48613
|
+
name: string;
|
|
48614
|
+
description?: string | undefined;
|
|
48615
|
+
}, {
|
|
48616
|
+
name: string;
|
|
48617
|
+
description?: string | undefined;
|
|
48618
|
+
}>;
|
|
48619
|
+
designSystemVersionId: z.ZodString;
|
|
48620
|
+
createdAt: z.ZodDate;
|
|
48621
|
+
updatedAt: z.ZodDate;
|
|
48622
|
+
}, z.objectUtil.extendShape<{
|
|
48623
|
+
parentPersistentId: z.ZodOptional<z.ZodString>;
|
|
48624
|
+
sortOrder: z.ZodNumber;
|
|
48625
|
+
}, {
|
|
48626
|
+
parentPersistentId: z.ZodString;
|
|
48627
|
+
}>>, {
|
|
48628
|
+
brandPersistentId: z.ZodString;
|
|
48629
|
+
}>, {
|
|
48630
|
+
origin: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
48631
|
+
id: z.ZodString;
|
|
48632
|
+
sourceId: z.ZodString;
|
|
48633
|
+
name: z.ZodString;
|
|
48634
|
+
}, {
|
|
48635
|
+
nodeId: z.ZodOptional<z.ZodString>;
|
|
48636
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
48637
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
48638
|
+
}>, "strip", z.ZodTypeAny, {
|
|
48639
|
+
id: string;
|
|
48640
|
+
name: string;
|
|
48641
|
+
sourceId: string;
|
|
48642
|
+
width?: number | undefined;
|
|
48643
|
+
height?: number | undefined;
|
|
48644
|
+
nodeId?: string | undefined;
|
|
48645
|
+
}, {
|
|
48646
|
+
id: string;
|
|
48647
|
+
name: string;
|
|
48648
|
+
sourceId: string;
|
|
48649
|
+
width?: number | undefined;
|
|
48650
|
+
height?: number | undefined;
|
|
48651
|
+
nodeId?: string | undefined;
|
|
48652
|
+
}>>;
|
|
48653
|
+
thumbnail: z.ZodObject<{
|
|
48654
|
+
assetId: z.ZodString;
|
|
48655
|
+
assetPath: z.ZodString;
|
|
48656
|
+
}, "strip", z.ZodTypeAny, {
|
|
48657
|
+
assetId: string;
|
|
48658
|
+
assetPath: string;
|
|
48659
|
+
}, {
|
|
48660
|
+
assetId: string;
|
|
48661
|
+
assetPath: string;
|
|
48662
|
+
}>;
|
|
48663
|
+
}>, "strip", z.ZodTypeAny, {
|
|
48664
|
+
id: string;
|
|
48665
|
+
createdAt: Date;
|
|
48666
|
+
updatedAt: Date;
|
|
48667
|
+
persistentId: string;
|
|
48668
|
+
designSystemVersionId: string;
|
|
48669
|
+
brandPersistentId: string;
|
|
48670
|
+
parentPersistentId: string;
|
|
48671
|
+
sortOrder: number;
|
|
48672
|
+
meta: {
|
|
48673
|
+
name: string;
|
|
48674
|
+
description?: string | undefined;
|
|
48675
|
+
};
|
|
48676
|
+
thumbnail: {
|
|
48677
|
+
assetId: string;
|
|
48678
|
+
assetPath: string;
|
|
48679
|
+
};
|
|
48680
|
+
origin?: {
|
|
48681
|
+
id: string;
|
|
48682
|
+
name: string;
|
|
48683
|
+
sourceId: string;
|
|
48684
|
+
width?: number | undefined;
|
|
48685
|
+
height?: number | undefined;
|
|
48686
|
+
nodeId?: string | undefined;
|
|
48687
|
+
} | undefined;
|
|
48688
|
+
}, {
|
|
48689
|
+
id: string;
|
|
48690
|
+
createdAt: Date;
|
|
48691
|
+
updatedAt: Date;
|
|
48692
|
+
persistentId: string;
|
|
48693
|
+
designSystemVersionId: string;
|
|
48694
|
+
brandPersistentId: string;
|
|
48695
|
+
parentPersistentId: string;
|
|
48696
|
+
sortOrder: number;
|
|
48697
|
+
meta: {
|
|
48698
|
+
name: string;
|
|
48699
|
+
description?: string | undefined;
|
|
48700
|
+
};
|
|
48701
|
+
thumbnail: {
|
|
48702
|
+
assetId: string;
|
|
48703
|
+
assetPath: string;
|
|
48704
|
+
};
|
|
48705
|
+
origin?: {
|
|
48706
|
+
id: string;
|
|
48707
|
+
name: string;
|
|
48708
|
+
sourceId: string;
|
|
48709
|
+
width?: number | undefined;
|
|
48710
|
+
height?: number | undefined;
|
|
48711
|
+
nodeId?: string | undefined;
|
|
48712
|
+
} | undefined;
|
|
48713
|
+
}>;
|
|
48293
48714
|
declare const ComponentAsset: z.ZodObject<{
|
|
48294
48715
|
assetId: z.ZodString;
|
|
48295
48716
|
assetPath: z.ZodString;
|
|
@@ -48301,7 +48722,7 @@ declare const ComponentAsset: z.ZodObject<{
|
|
|
48301
48722
|
assetPath: string;
|
|
48302
48723
|
}>;
|
|
48303
48724
|
type ComponentAsset = z.infer<typeof ComponentAsset>;
|
|
48304
|
-
declare const Component: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
48725
|
+
declare const Component: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
48305
48726
|
id: z.ZodString;
|
|
48306
48727
|
persistentId: z.ZodString;
|
|
48307
48728
|
meta: z.ZodObject<{
|
|
@@ -48358,6 +48779,7 @@ declare const Component: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
48358
48779
|
assetId: string;
|
|
48359
48780
|
assetPath: string;
|
|
48360
48781
|
}>;
|
|
48782
|
+
}>, {
|
|
48361
48783
|
svg: z.ZodOptional<z.ZodObject<{
|
|
48362
48784
|
assetId: z.ZodString;
|
|
48363
48785
|
assetPath: z.ZodString;
|
|
@@ -48369,6 +48791,38 @@ declare const Component: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
48369
48791
|
assetPath: string;
|
|
48370
48792
|
}>>;
|
|
48371
48793
|
isAsset: z.ZodBoolean;
|
|
48794
|
+
componentSetId: z.ZodOptional<z.ZodString>;
|
|
48795
|
+
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
48796
|
+
type: z.ZodLiteral<"Boolean">;
|
|
48797
|
+
value: z.ZodBoolean;
|
|
48798
|
+
defaultValue: z.ZodBoolean;
|
|
48799
|
+
}, "strip", z.ZodTypeAny, {
|
|
48800
|
+
type: "Boolean";
|
|
48801
|
+
value: boolean;
|
|
48802
|
+
defaultValue: boolean;
|
|
48803
|
+
}, {
|
|
48804
|
+
type: "Boolean";
|
|
48805
|
+
value: boolean;
|
|
48806
|
+
defaultValue: boolean;
|
|
48807
|
+
}>, z.ZodObject<{
|
|
48808
|
+
type: z.ZodLiteral<"InstanceSwap">;
|
|
48809
|
+
value: z.ZodString;
|
|
48810
|
+
}, "strip", z.ZodTypeAny, {
|
|
48811
|
+
type: "InstanceSwap";
|
|
48812
|
+
value: string;
|
|
48813
|
+
}, {
|
|
48814
|
+
type: "InstanceSwap";
|
|
48815
|
+
value: string;
|
|
48816
|
+
}>, z.ZodObject<{
|
|
48817
|
+
type: z.ZodLiteral<"Text">;
|
|
48818
|
+
value: z.ZodString;
|
|
48819
|
+
}, "strip", z.ZodTypeAny, {
|
|
48820
|
+
type: "Text";
|
|
48821
|
+
value: string;
|
|
48822
|
+
}, {
|
|
48823
|
+
type: "Text";
|
|
48824
|
+
value: string;
|
|
48825
|
+
}>]>>>;
|
|
48372
48826
|
}>, "strip", z.ZodTypeAny, {
|
|
48373
48827
|
id: string;
|
|
48374
48828
|
createdAt: Date;
|
|
@@ -48387,6 +48841,17 @@ declare const Component: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
48387
48841
|
assetId: string;
|
|
48388
48842
|
assetPath: string;
|
|
48389
48843
|
};
|
|
48844
|
+
properties?: Record<string, {
|
|
48845
|
+
type: "Boolean";
|
|
48846
|
+
value: boolean;
|
|
48847
|
+
defaultValue: boolean;
|
|
48848
|
+
} | {
|
|
48849
|
+
type: "InstanceSwap";
|
|
48850
|
+
value: string;
|
|
48851
|
+
} | {
|
|
48852
|
+
type: "Text";
|
|
48853
|
+
value: string;
|
|
48854
|
+
}> | undefined;
|
|
48390
48855
|
origin?: {
|
|
48391
48856
|
id: string;
|
|
48392
48857
|
name: string;
|
|
@@ -48399,6 +48864,7 @@ declare const Component: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
48399
48864
|
assetId: string;
|
|
48400
48865
|
assetPath: string;
|
|
48401
48866
|
} | undefined;
|
|
48867
|
+
componentSetId?: string | undefined;
|
|
48402
48868
|
}, {
|
|
48403
48869
|
id: string;
|
|
48404
48870
|
createdAt: Date;
|
|
@@ -48417,6 +48883,17 @@ declare const Component: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
48417
48883
|
assetId: string;
|
|
48418
48884
|
assetPath: string;
|
|
48419
48885
|
};
|
|
48886
|
+
properties?: Record<string, {
|
|
48887
|
+
type: "Boolean";
|
|
48888
|
+
value: boolean;
|
|
48889
|
+
defaultValue: boolean;
|
|
48890
|
+
} | {
|
|
48891
|
+
type: "InstanceSwap";
|
|
48892
|
+
value: string;
|
|
48893
|
+
} | {
|
|
48894
|
+
type: "Text";
|
|
48895
|
+
value: string;
|
|
48896
|
+
}> | undefined;
|
|
48420
48897
|
origin?: {
|
|
48421
48898
|
id: string;
|
|
48422
48899
|
name: string;
|
|
@@ -48429,6 +48906,7 @@ declare const Component: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exten
|
|
|
48429
48906
|
assetId: string;
|
|
48430
48907
|
assetPath: string;
|
|
48431
48908
|
} | undefined;
|
|
48909
|
+
componentSetId?: string | undefined;
|
|
48432
48910
|
}>;
|
|
48433
48911
|
type Component = z.infer<typeof Component>;
|
|
48434
48912
|
declare const ComponentOrigin: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -162399,4 +162877,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
162399
162877
|
}>;
|
|
162400
162878
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
162401
162879
|
|
|
162402
|
-
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, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, 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 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, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, 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, 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, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, 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, 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, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, 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, 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 UpdateComponent, 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 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, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|
|
162880
|
+
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, BaseComponent, 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, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ComponentSet, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, 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 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, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, 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, 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, FigmaComponentBooleanProperty, FigmaComponentInstanceSwapProperty, FigmaComponentProperties, FigmaComponentPropertyType, FigmaComponentSetProperties, 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, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, 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, 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, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, 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, 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 UpdateComponent, 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 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, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|