@supernova-studio/model 0.54.6 → 0.54.8
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 +446 -48
- package/dist/index.d.ts +446 -48
- package/dist/index.js +13 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/documentation-block-v1.ts +7 -0
- package/src/dsm/elements/data/documentation-block-v2.ts +8 -0
package/dist/index.d.mts
CHANGED
|
@@ -37359,6 +37359,17 @@ declare const PageBlockTheme: z.ZodObject<{
|
|
|
37359
37359
|
themeIds: string[];
|
|
37360
37360
|
}>;
|
|
37361
37361
|
type PageBlockTheme = z.infer<typeof PageBlockTheme>;
|
|
37362
|
+
declare const PageBlockSwatch: z.ZodObject<{
|
|
37363
|
+
id: z.ZodString;
|
|
37364
|
+
selectedThemeIds: z.ZodArray<z.ZodString, "many">;
|
|
37365
|
+
}, "strip", z.ZodTypeAny, {
|
|
37366
|
+
id: string;
|
|
37367
|
+
selectedThemeIds: string[];
|
|
37368
|
+
}, {
|
|
37369
|
+
id: string;
|
|
37370
|
+
selectedThemeIds: string[];
|
|
37371
|
+
}>;
|
|
37372
|
+
type PageBlockSwatch = z.infer<typeof PageBlockSwatch>;
|
|
37362
37373
|
declare const PageBlockShortcut: z.ZodObject<{
|
|
37363
37374
|
persistentId: z.ZodString;
|
|
37364
37375
|
title: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -38527,6 +38538,19 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
38527
38538
|
type: "Override" | "Comparison";
|
|
38528
38539
|
themeIds: string[];
|
|
38529
38540
|
} | null | undefined>;
|
|
38541
|
+
swatches: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
38542
|
+
id: string;
|
|
38543
|
+
selectedThemeIds: string[];
|
|
38544
|
+
}[], z.ZodTypeDef, {
|
|
38545
|
+
id: string;
|
|
38546
|
+
selectedThemeIds: string[];
|
|
38547
|
+
}[]>>>, {
|
|
38548
|
+
id: string;
|
|
38549
|
+
selectedThemeIds: string[];
|
|
38550
|
+
}[] | undefined, {
|
|
38551
|
+
id: string;
|
|
38552
|
+
selectedThemeIds: string[];
|
|
38553
|
+
}[] | null | undefined>;
|
|
38530
38554
|
blacklistedElementProperties: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string[], z.ZodTypeDef, string[]>>>, string[] | undefined, string[] | null | undefined>;
|
|
38531
38555
|
userMetadata: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
38532
38556
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -38746,6 +38770,10 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
38746
38770
|
}[];
|
|
38747
38771
|
} | undefined;
|
|
38748
38772
|
columnId?: string | undefined;
|
|
38773
|
+
swatches?: {
|
|
38774
|
+
id: string;
|
|
38775
|
+
selectedThemeIds: string[];
|
|
38776
|
+
}[] | undefined;
|
|
38749
38777
|
blacklistedElementProperties?: string[] | undefined;
|
|
38750
38778
|
userMetadata?: string | undefined;
|
|
38751
38779
|
}, {
|
|
@@ -38965,6 +38993,10 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
38965
38993
|
}[];
|
|
38966
38994
|
} | null | undefined;
|
|
38967
38995
|
columnId?: string | null | undefined;
|
|
38996
|
+
swatches?: {
|
|
38997
|
+
id: string;
|
|
38998
|
+
selectedThemeIds: string[];
|
|
38999
|
+
}[] | null | undefined;
|
|
38968
39000
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
38969
39001
|
userMetadata?: string | null | undefined;
|
|
38970
39002
|
}>;
|
|
@@ -39398,10 +39430,9 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
39398
39430
|
variantId?: string | undefined;
|
|
39399
39431
|
}>;
|
|
39400
39432
|
type PageBlockDataV2 = z.infer<typeof PageBlockDataV2>;
|
|
39401
|
-
declare const
|
|
39402
|
-
|
|
39403
|
-
|
|
39404
|
-
showPropertyList: z.ZodOptional<z.ZodBoolean>;
|
|
39433
|
+
declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
39434
|
+
selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
39435
|
+
showSearch: z.ZodOptional<z.ZodBoolean>;
|
|
39405
39436
|
previewContainerSize: z.ZodOptional<z.ZodEnum<["Centered", "NaturalHeight"]>>;
|
|
39406
39437
|
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
39407
39438
|
value: z.ZodString;
|
|
@@ -39415,7 +39446,7 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
|
39415
39446
|
}>>;
|
|
39416
39447
|
value: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
39417
39448
|
entityId: z.ZodString;
|
|
39418
|
-
entityType: z.ZodEnum<["
|
|
39449
|
+
entityType: z.ZodEnum<["Asset", "AssetGroup"]>;
|
|
39419
39450
|
entityMeta: z.ZodOptional<z.ZodObject<{
|
|
39420
39451
|
title: z.ZodOptional<z.ZodString>;
|
|
39421
39452
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -39429,7 +39460,6 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
|
39429
39460
|
value: string;
|
|
39430
39461
|
referencedTokenId?: string | undefined;
|
|
39431
39462
|
}>>;
|
|
39432
|
-
selectedComponentProperties: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
39433
39463
|
}, "strip", z.ZodTypeAny, {
|
|
39434
39464
|
description?: string | undefined;
|
|
39435
39465
|
title?: string | undefined;
|
|
@@ -39437,7 +39467,6 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
|
39437
39467
|
value: string;
|
|
39438
39468
|
referencedTokenId?: string | undefined;
|
|
39439
39469
|
} | undefined;
|
|
39440
|
-
selectedComponentProperties?: string[] | undefined;
|
|
39441
39470
|
}, {
|
|
39442
39471
|
description?: string | undefined;
|
|
39443
39472
|
title?: string | undefined;
|
|
@@ -39445,11 +39474,10 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
|
39445
39474
|
value: string;
|
|
39446
39475
|
referencedTokenId?: string | undefined;
|
|
39447
39476
|
} | undefined;
|
|
39448
|
-
selectedComponentProperties?: string[] | undefined;
|
|
39449
39477
|
}>>;
|
|
39450
39478
|
}, "strip", z.ZodTypeAny, {
|
|
39451
39479
|
entityId: string;
|
|
39452
|
-
entityType: "
|
|
39480
|
+
entityType: "Asset" | "AssetGroup";
|
|
39453
39481
|
entityMeta?: {
|
|
39454
39482
|
description?: string | undefined;
|
|
39455
39483
|
title?: string | undefined;
|
|
@@ -39457,11 +39485,10 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
|
39457
39485
|
value: string;
|
|
39458
39486
|
referencedTokenId?: string | undefined;
|
|
39459
39487
|
} | undefined;
|
|
39460
|
-
selectedComponentProperties?: string[] | undefined;
|
|
39461
39488
|
} | undefined;
|
|
39462
39489
|
}, {
|
|
39463
39490
|
entityId: string;
|
|
39464
|
-
entityType: "
|
|
39491
|
+
entityType: "Asset" | "AssetGroup";
|
|
39465
39492
|
entityMeta?: {
|
|
39466
39493
|
description?: string | undefined;
|
|
39467
39494
|
title?: string | undefined;
|
|
@@ -39469,13 +39496,12 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
|
39469
39496
|
value: string;
|
|
39470
39497
|
referencedTokenId?: string | undefined;
|
|
39471
39498
|
} | undefined;
|
|
39472
|
-
selectedComponentProperties?: string[] | undefined;
|
|
39473
39499
|
} | undefined;
|
|
39474
39500
|
}>, "many">>;
|
|
39475
39501
|
}, "strip", z.ZodTypeAny, {
|
|
39476
39502
|
value: {
|
|
39477
39503
|
entityId: string;
|
|
39478
|
-
entityType: "
|
|
39504
|
+
entityType: "Asset" | "AssetGroup";
|
|
39479
39505
|
entityMeta?: {
|
|
39480
39506
|
description?: string | undefined;
|
|
39481
39507
|
title?: string | undefined;
|
|
@@ -39483,21 +39509,19 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
|
39483
39509
|
value: string;
|
|
39484
39510
|
referencedTokenId?: string | undefined;
|
|
39485
39511
|
} | undefined;
|
|
39486
|
-
selectedComponentProperties?: string[] | undefined;
|
|
39487
39512
|
} | undefined;
|
|
39488
39513
|
}[];
|
|
39489
39514
|
backgroundColor?: {
|
|
39490
39515
|
value: string;
|
|
39491
39516
|
referencedTokenId?: string | undefined;
|
|
39492
39517
|
} | undefined;
|
|
39518
|
+
selectedPropertyIds?: string[] | undefined;
|
|
39519
|
+
showSearch?: boolean | undefined;
|
|
39493
39520
|
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
39494
|
-
showComponentName?: boolean | undefined;
|
|
39495
|
-
showComponentDescription?: boolean | undefined;
|
|
39496
|
-
showPropertyList?: boolean | undefined;
|
|
39497
39521
|
}, {
|
|
39498
39522
|
value?: {
|
|
39499
39523
|
entityId: string;
|
|
39500
|
-
entityType: "
|
|
39524
|
+
entityType: "Asset" | "AssetGroup";
|
|
39501
39525
|
entityMeta?: {
|
|
39502
39526
|
description?: string | undefined;
|
|
39503
39527
|
title?: string | undefined;
|
|
@@ -39505,21 +39529,29 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
|
39505
39529
|
value: string;
|
|
39506
39530
|
referencedTokenId?: string | undefined;
|
|
39507
39531
|
} | undefined;
|
|
39508
|
-
selectedComponentProperties?: string[] | undefined;
|
|
39509
39532
|
} | undefined;
|
|
39510
39533
|
}[] | undefined;
|
|
39511
39534
|
backgroundColor?: {
|
|
39512
39535
|
value: string;
|
|
39513
39536
|
referencedTokenId?: string | undefined;
|
|
39514
39537
|
} | undefined;
|
|
39538
|
+
selectedPropertyIds?: string[] | undefined;
|
|
39539
|
+
showSearch?: boolean | undefined;
|
|
39515
39540
|
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
39516
|
-
showComponentName?: boolean | undefined;
|
|
39517
|
-
showComponentDescription?: boolean | undefined;
|
|
39518
|
-
showPropertyList?: boolean | undefined;
|
|
39519
39541
|
}>;
|
|
39520
|
-
|
|
39521
|
-
|
|
39522
|
-
|
|
39542
|
+
type PageBlockItemAssetValue = z.infer<typeof PageBlockItemAssetValue>;
|
|
39543
|
+
declare const PageBlockItemAssetPropertyValue: z.ZodObject<{
|
|
39544
|
+
value: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
39545
|
+
}, "strip", z.ZodTypeAny, {
|
|
39546
|
+
value: string[];
|
|
39547
|
+
}, {
|
|
39548
|
+
value?: string[] | undefined;
|
|
39549
|
+
}>;
|
|
39550
|
+
type PageBlockItemAssetPropertyValue = z.infer<typeof PageBlockItemAssetPropertyValue>;
|
|
39551
|
+
declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
39552
|
+
showComponentName: z.ZodOptional<z.ZodBoolean>;
|
|
39553
|
+
showComponentDescription: z.ZodOptional<z.ZodBoolean>;
|
|
39554
|
+
showPropertyList: z.ZodOptional<z.ZodBoolean>;
|
|
39523
39555
|
previewContainerSize: z.ZodOptional<z.ZodEnum<["Centered", "NaturalHeight"]>>;
|
|
39524
39556
|
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
39525
39557
|
value: z.ZodString;
|
|
@@ -39533,7 +39565,7 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
39533
39565
|
}>>;
|
|
39534
39566
|
value: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
39535
39567
|
entityId: z.ZodString;
|
|
39536
|
-
entityType: z.ZodEnum<["
|
|
39568
|
+
entityType: z.ZodEnum<["FigmaComponent"]>;
|
|
39537
39569
|
entityMeta: z.ZodOptional<z.ZodObject<{
|
|
39538
39570
|
title: z.ZodOptional<z.ZodString>;
|
|
39539
39571
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -39547,6 +39579,7 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
39547
39579
|
value: string;
|
|
39548
39580
|
referencedTokenId?: string | undefined;
|
|
39549
39581
|
}>>;
|
|
39582
|
+
selectedComponentProperties: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
39550
39583
|
}, "strip", z.ZodTypeAny, {
|
|
39551
39584
|
description?: string | undefined;
|
|
39552
39585
|
title?: string | undefined;
|
|
@@ -39554,6 +39587,7 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
39554
39587
|
value: string;
|
|
39555
39588
|
referencedTokenId?: string | undefined;
|
|
39556
39589
|
} | undefined;
|
|
39590
|
+
selectedComponentProperties?: string[] | undefined;
|
|
39557
39591
|
}, {
|
|
39558
39592
|
description?: string | undefined;
|
|
39559
39593
|
title?: string | undefined;
|
|
@@ -39561,10 +39595,11 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
39561
39595
|
value: string;
|
|
39562
39596
|
referencedTokenId?: string | undefined;
|
|
39563
39597
|
} | undefined;
|
|
39598
|
+
selectedComponentProperties?: string[] | undefined;
|
|
39564
39599
|
}>>;
|
|
39565
39600
|
}, "strip", z.ZodTypeAny, {
|
|
39566
39601
|
entityId: string;
|
|
39567
|
-
entityType: "
|
|
39602
|
+
entityType: "FigmaComponent";
|
|
39568
39603
|
entityMeta?: {
|
|
39569
39604
|
description?: string | undefined;
|
|
39570
39605
|
title?: string | undefined;
|
|
@@ -39572,10 +39607,11 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
39572
39607
|
value: string;
|
|
39573
39608
|
referencedTokenId?: string | undefined;
|
|
39574
39609
|
} | undefined;
|
|
39610
|
+
selectedComponentProperties?: string[] | undefined;
|
|
39575
39611
|
} | undefined;
|
|
39576
39612
|
}, {
|
|
39577
39613
|
entityId: string;
|
|
39578
|
-
entityType: "
|
|
39614
|
+
entityType: "FigmaComponent";
|
|
39579
39615
|
entityMeta?: {
|
|
39580
39616
|
description?: string | undefined;
|
|
39581
39617
|
title?: string | undefined;
|
|
@@ -39583,12 +39619,13 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
39583
39619
|
value: string;
|
|
39584
39620
|
referencedTokenId?: string | undefined;
|
|
39585
39621
|
} | undefined;
|
|
39622
|
+
selectedComponentProperties?: string[] | undefined;
|
|
39586
39623
|
} | undefined;
|
|
39587
39624
|
}>, "many">>;
|
|
39588
39625
|
}, "strip", z.ZodTypeAny, {
|
|
39589
39626
|
value: {
|
|
39590
39627
|
entityId: string;
|
|
39591
|
-
entityType: "
|
|
39628
|
+
entityType: "FigmaComponent";
|
|
39592
39629
|
entityMeta?: {
|
|
39593
39630
|
description?: string | undefined;
|
|
39594
39631
|
title?: string | undefined;
|
|
@@ -39596,19 +39633,21 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
39596
39633
|
value: string;
|
|
39597
39634
|
referencedTokenId?: string | undefined;
|
|
39598
39635
|
} | undefined;
|
|
39636
|
+
selectedComponentProperties?: string[] | undefined;
|
|
39599
39637
|
} | undefined;
|
|
39600
39638
|
}[];
|
|
39601
39639
|
backgroundColor?: {
|
|
39602
39640
|
value: string;
|
|
39603
39641
|
referencedTokenId?: string | undefined;
|
|
39604
39642
|
} | undefined;
|
|
39605
|
-
selectedPropertyIds?: string[] | undefined;
|
|
39606
|
-
showSearch?: boolean | undefined;
|
|
39607
39643
|
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
39644
|
+
showComponentName?: boolean | undefined;
|
|
39645
|
+
showComponentDescription?: boolean | undefined;
|
|
39646
|
+
showPropertyList?: boolean | undefined;
|
|
39608
39647
|
}, {
|
|
39609
39648
|
value?: {
|
|
39610
39649
|
entityId: string;
|
|
39611
|
-
entityType: "
|
|
39650
|
+
entityType: "FigmaComponent";
|
|
39612
39651
|
entityMeta?: {
|
|
39613
39652
|
description?: string | undefined;
|
|
39614
39653
|
title?: string | undefined;
|
|
@@ -39616,25 +39655,19 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
39616
39655
|
value: string;
|
|
39617
39656
|
referencedTokenId?: string | undefined;
|
|
39618
39657
|
} | undefined;
|
|
39658
|
+
selectedComponentProperties?: string[] | undefined;
|
|
39619
39659
|
} | undefined;
|
|
39620
39660
|
}[] | undefined;
|
|
39621
39661
|
backgroundColor?: {
|
|
39622
39662
|
value: string;
|
|
39623
39663
|
referencedTokenId?: string | undefined;
|
|
39624
39664
|
} | undefined;
|
|
39625
|
-
selectedPropertyIds?: string[] | undefined;
|
|
39626
|
-
showSearch?: boolean | undefined;
|
|
39627
39665
|
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
39666
|
+
showComponentName?: boolean | undefined;
|
|
39667
|
+
showComponentDescription?: boolean | undefined;
|
|
39668
|
+
showPropertyList?: boolean | undefined;
|
|
39628
39669
|
}>;
|
|
39629
|
-
type
|
|
39630
|
-
declare const PageBlockItemAssetPropertyValue: z.ZodObject<{
|
|
39631
|
-
value: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
39632
|
-
}, "strip", z.ZodTypeAny, {
|
|
39633
|
-
value: string[];
|
|
39634
|
-
}, {
|
|
39635
|
-
value?: string[] | undefined;
|
|
39636
|
-
}>;
|
|
39637
|
-
type PageBlockItemAssetPropertyValue = z.infer<typeof PageBlockItemAssetPropertyValue>;
|
|
39670
|
+
type PageBlockItemFigmaComponentValue = z.infer<typeof PageBlockItemFigmaComponentValue>;
|
|
39638
39671
|
declare const PageBlockItemBooleanValue: z.ZodObject<{
|
|
39639
39672
|
value: z.ZodBoolean;
|
|
39640
39673
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -40224,9 +40257,30 @@ declare const PageBlockItemTextValue: z.ZodObject<{
|
|
|
40224
40257
|
value: string;
|
|
40225
40258
|
}>;
|
|
40226
40259
|
type PageBlockItemTextValue = z.infer<typeof PageBlockItemTextValue>;
|
|
40260
|
+
declare const PageBlockItemSwatch: z.ZodObject<{
|
|
40261
|
+
id: z.ZodString;
|
|
40262
|
+
selectedThemeIds: z.ZodArray<z.ZodString, "many">;
|
|
40263
|
+
}, "strip", z.ZodTypeAny, {
|
|
40264
|
+
id: string;
|
|
40265
|
+
selectedThemeIds: string[];
|
|
40266
|
+
}, {
|
|
40267
|
+
id: string;
|
|
40268
|
+
selectedThemeIds: string[];
|
|
40269
|
+
}>;
|
|
40270
|
+
type PageBlockItemSwatch = z.infer<typeof PageBlockItemSwatch>;
|
|
40227
40271
|
declare const PageBlockItemTokenValue: z.ZodObject<{
|
|
40228
40272
|
selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
40229
40273
|
selectedThemeIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
40274
|
+
swatches: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
40275
|
+
id: z.ZodString;
|
|
40276
|
+
selectedThemeIds: z.ZodArray<z.ZodString, "many">;
|
|
40277
|
+
}, "strip", z.ZodTypeAny, {
|
|
40278
|
+
id: string;
|
|
40279
|
+
selectedThemeIds: string[];
|
|
40280
|
+
}, {
|
|
40281
|
+
id: string;
|
|
40282
|
+
selectedThemeIds: string[];
|
|
40283
|
+
}>, "many">>;
|
|
40230
40284
|
themeDisplayMode: z.ZodOptional<z.ZodEnum<["Split", "Override"]>>;
|
|
40231
40285
|
value: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
40232
40286
|
entityId: z.ZodString;
|
|
@@ -40259,8 +40313,12 @@ declare const PageBlockItemTokenValue: z.ZodObject<{
|
|
|
40259
40313
|
showNestedGroups?: boolean | undefined;
|
|
40260
40314
|
} | undefined;
|
|
40261
40315
|
}[];
|
|
40262
|
-
selectedPropertyIds?: string[] | undefined;
|
|
40263
40316
|
selectedThemeIds?: string[] | undefined;
|
|
40317
|
+
swatches?: {
|
|
40318
|
+
id: string;
|
|
40319
|
+
selectedThemeIds: string[];
|
|
40320
|
+
}[] | undefined;
|
|
40321
|
+
selectedPropertyIds?: string[] | undefined;
|
|
40264
40322
|
themeDisplayMode?: "Override" | "Split" | undefined;
|
|
40265
40323
|
}, {
|
|
40266
40324
|
value?: {
|
|
@@ -40270,8 +40328,12 @@ declare const PageBlockItemTokenValue: z.ZodObject<{
|
|
|
40270
40328
|
showNestedGroups?: boolean | undefined;
|
|
40271
40329
|
} | undefined;
|
|
40272
40330
|
}[] | undefined;
|
|
40273
|
-
selectedPropertyIds?: string[] | undefined;
|
|
40274
40331
|
selectedThemeIds?: string[] | undefined;
|
|
40332
|
+
swatches?: {
|
|
40333
|
+
id: string;
|
|
40334
|
+
selectedThemeIds: string[];
|
|
40335
|
+
}[] | undefined;
|
|
40336
|
+
selectedPropertyIds?: string[] | undefined;
|
|
40275
40337
|
themeDisplayMode?: "Override" | "Split" | undefined;
|
|
40276
40338
|
}>;
|
|
40277
40339
|
type PageBlockItemTokenValue = z.infer<typeof PageBlockItemTokenValue>;
|
|
@@ -40281,12 +40343,12 @@ declare const PageBlockItemTokenPropertyValue: z.ZodObject<{
|
|
|
40281
40343
|
value: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
40282
40344
|
}, "strip", z.ZodTypeAny, {
|
|
40283
40345
|
value: string[];
|
|
40284
|
-
selectedPropertyIds?: string[] | undefined;
|
|
40285
40346
|
selectedThemeIds?: string[] | undefined;
|
|
40347
|
+
selectedPropertyIds?: string[] | undefined;
|
|
40286
40348
|
}, {
|
|
40287
40349
|
value?: string[] | undefined;
|
|
40288
|
-
selectedPropertyIds?: string[] | undefined;
|
|
40289
40350
|
selectedThemeIds?: string[] | undefined;
|
|
40351
|
+
selectedPropertyIds?: string[] | undefined;
|
|
40290
40352
|
}>;
|
|
40291
40353
|
type PageBlockItemTokenPropertyValue = z.infer<typeof PageBlockItemTokenPropertyValue>;
|
|
40292
40354
|
declare const PageBlockItemTokenTypeValue: z.ZodObject<{
|
|
@@ -42801,6 +42863,10 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
42801
42863
|
}[];
|
|
42802
42864
|
} | null | undefined;
|
|
42803
42865
|
columnId?: string | null | undefined;
|
|
42866
|
+
swatches?: {
|
|
42867
|
+
id: string;
|
|
42868
|
+
selectedThemeIds: string[];
|
|
42869
|
+
}[] | null | undefined;
|
|
42804
42870
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
42805
42871
|
userMetadata?: string | null | undefined;
|
|
42806
42872
|
} & {
|
|
@@ -43021,6 +43087,10 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
43021
43087
|
}[];
|
|
43022
43088
|
} | null | undefined;
|
|
43023
43089
|
columnId?: string | null | undefined;
|
|
43090
|
+
swatches?: {
|
|
43091
|
+
id: string;
|
|
43092
|
+
selectedThemeIds: string[];
|
|
43093
|
+
}[] | null | undefined;
|
|
43024
43094
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
43025
43095
|
userMetadata?: string | null | undefined;
|
|
43026
43096
|
} & any)[] | null | undefined;
|
|
@@ -43587,6 +43657,10 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
43587
43657
|
}[];
|
|
43588
43658
|
} | null | undefined;
|
|
43589
43659
|
columnId?: string | null | undefined;
|
|
43660
|
+
swatches?: {
|
|
43661
|
+
id: string;
|
|
43662
|
+
selectedThemeIds: string[];
|
|
43663
|
+
}[] | null | undefined;
|
|
43590
43664
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
43591
43665
|
userMetadata?: string | null | undefined;
|
|
43592
43666
|
} & {
|
|
@@ -43807,6 +43881,10 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
43807
43881
|
}[];
|
|
43808
43882
|
} | null | undefined;
|
|
43809
43883
|
columnId?: string | null | undefined;
|
|
43884
|
+
swatches?: {
|
|
43885
|
+
id: string;
|
|
43886
|
+
selectedThemeIds: string[];
|
|
43887
|
+
}[] | null | undefined;
|
|
43810
43888
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
43811
43889
|
userMetadata?: string | null | undefined;
|
|
43812
43890
|
} & any)[] | null | undefined;
|
|
@@ -50690,6 +50768,10 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
50690
50768
|
}[];
|
|
50691
50769
|
} | null | undefined;
|
|
50692
50770
|
columnId?: string | null | undefined;
|
|
50771
|
+
swatches?: {
|
|
50772
|
+
id: string;
|
|
50773
|
+
selectedThemeIds: string[];
|
|
50774
|
+
}[] | null | undefined;
|
|
50693
50775
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
50694
50776
|
userMetadata?: string | null | undefined;
|
|
50695
50777
|
} & {
|
|
@@ -50910,6 +50992,10 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
50910
50992
|
}[];
|
|
50911
50993
|
} | null | undefined;
|
|
50912
50994
|
columnId?: string | null | undefined;
|
|
50995
|
+
swatches?: {
|
|
50996
|
+
id: string;
|
|
50997
|
+
selectedThemeIds: string[];
|
|
50998
|
+
}[] | null | undefined;
|
|
50913
50999
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
50914
51000
|
userMetadata?: string | null | undefined;
|
|
50915
51001
|
} & any)[] | null | undefined;
|
|
@@ -51476,6 +51562,10 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
51476
51562
|
}[];
|
|
51477
51563
|
} | null | undefined;
|
|
51478
51564
|
columnId?: string | null | undefined;
|
|
51565
|
+
swatches?: {
|
|
51566
|
+
id: string;
|
|
51567
|
+
selectedThemeIds: string[];
|
|
51568
|
+
}[] | null | undefined;
|
|
51479
51569
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
51480
51570
|
userMetadata?: string | null | undefined;
|
|
51481
51571
|
} & {
|
|
@@ -51696,6 +51786,10 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
51696
51786
|
}[];
|
|
51697
51787
|
} | null | undefined;
|
|
51698
51788
|
columnId?: string | null | undefined;
|
|
51789
|
+
swatches?: {
|
|
51790
|
+
id: string;
|
|
51791
|
+
selectedThemeIds: string[];
|
|
51792
|
+
}[] | null | undefined;
|
|
51699
51793
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
51700
51794
|
userMetadata?: string | null | undefined;
|
|
51701
51795
|
} & any)[] | null | undefined;
|
|
@@ -52081,6 +52175,10 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
52081
52175
|
}[];
|
|
52082
52176
|
} | null | undefined;
|
|
52083
52177
|
columnId?: string | null | undefined;
|
|
52178
|
+
swatches?: {
|
|
52179
|
+
id: string;
|
|
52180
|
+
selectedThemeIds: string[];
|
|
52181
|
+
}[] | null | undefined;
|
|
52084
52182
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
52085
52183
|
userMetadata?: string | null | undefined;
|
|
52086
52184
|
} & {
|
|
@@ -52301,6 +52399,10 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
52301
52399
|
}[];
|
|
52302
52400
|
} | null | undefined;
|
|
52303
52401
|
columnId?: string | null | undefined;
|
|
52402
|
+
swatches?: {
|
|
52403
|
+
id: string;
|
|
52404
|
+
selectedThemeIds: string[];
|
|
52405
|
+
}[] | null | undefined;
|
|
52304
52406
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
52305
52407
|
userMetadata?: string | null | undefined;
|
|
52306
52408
|
} & any)[] | null | undefined;
|
|
@@ -53581,6 +53683,10 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53581
53683
|
}[];
|
|
53582
53684
|
} | null | undefined;
|
|
53583
53685
|
columnId?: string | null | undefined;
|
|
53686
|
+
swatches?: {
|
|
53687
|
+
id: string;
|
|
53688
|
+
selectedThemeIds: string[];
|
|
53689
|
+
}[] | null | undefined;
|
|
53584
53690
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
53585
53691
|
userMetadata?: string | null | undefined;
|
|
53586
53692
|
} & {
|
|
@@ -53801,6 +53907,10 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53801
53907
|
}[];
|
|
53802
53908
|
} | null | undefined;
|
|
53803
53909
|
columnId?: string | null | undefined;
|
|
53910
|
+
swatches?: {
|
|
53911
|
+
id: string;
|
|
53912
|
+
selectedThemeIds: string[];
|
|
53913
|
+
}[] | null | undefined;
|
|
53804
53914
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
53805
53915
|
userMetadata?: string | null | undefined;
|
|
53806
53916
|
} & any)[] | null | undefined;
|
|
@@ -54089,6 +54199,10 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
54089
54199
|
}[];
|
|
54090
54200
|
} | null | undefined;
|
|
54091
54201
|
columnId?: string | null | undefined;
|
|
54202
|
+
swatches?: {
|
|
54203
|
+
id: string;
|
|
54204
|
+
selectedThemeIds: string[];
|
|
54205
|
+
}[] | null | undefined;
|
|
54092
54206
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
54093
54207
|
userMetadata?: string | null | undefined;
|
|
54094
54208
|
} & {
|
|
@@ -54309,6 +54423,10 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
54309
54423
|
}[];
|
|
54310
54424
|
} | null | undefined;
|
|
54311
54425
|
columnId?: string | null | undefined;
|
|
54426
|
+
swatches?: {
|
|
54427
|
+
id: string;
|
|
54428
|
+
selectedThemeIds: string[];
|
|
54429
|
+
}[] | null | undefined;
|
|
54312
54430
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
54313
54431
|
userMetadata?: string | null | undefined;
|
|
54314
54432
|
} & any)[] | null | undefined;
|
|
@@ -54620,6 +54738,10 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
54620
54738
|
}[];
|
|
54621
54739
|
} | null | undefined;
|
|
54622
54740
|
columnId?: string | null | undefined;
|
|
54741
|
+
swatches?: {
|
|
54742
|
+
id: string;
|
|
54743
|
+
selectedThemeIds: string[];
|
|
54744
|
+
}[] | null | undefined;
|
|
54623
54745
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
54624
54746
|
userMetadata?: string | null | undefined;
|
|
54625
54747
|
} & {
|
|
@@ -54840,6 +54962,10 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
54840
54962
|
}[];
|
|
54841
54963
|
} | null | undefined;
|
|
54842
54964
|
columnId?: string | null | undefined;
|
|
54965
|
+
swatches?: {
|
|
54966
|
+
id: string;
|
|
54967
|
+
selectedThemeIds: string[];
|
|
54968
|
+
}[] | null | undefined;
|
|
54843
54969
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
54844
54970
|
userMetadata?: string | null | undefined;
|
|
54845
54971
|
} & any)[] | null | undefined;
|
|
@@ -73703,6 +73829,10 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
73703
73829
|
}[];
|
|
73704
73830
|
} | null | undefined;
|
|
73705
73831
|
columnId?: string | null | undefined;
|
|
73832
|
+
swatches?: {
|
|
73833
|
+
id: string;
|
|
73834
|
+
selectedThemeIds: string[];
|
|
73835
|
+
}[] | null | undefined;
|
|
73706
73836
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
73707
73837
|
userMetadata?: string | null | undefined;
|
|
73708
73838
|
} & {
|
|
@@ -73923,6 +74053,10 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
73923
74053
|
}[];
|
|
73924
74054
|
} | null | undefined;
|
|
73925
74055
|
columnId?: string | null | undefined;
|
|
74056
|
+
swatches?: {
|
|
74057
|
+
id: string;
|
|
74058
|
+
selectedThemeIds: string[];
|
|
74059
|
+
}[] | null | undefined;
|
|
73926
74060
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
73927
74061
|
userMetadata?: string | null | undefined;
|
|
73928
74062
|
} & any)[] | null | undefined;
|
|
@@ -74211,6 +74345,10 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
74211
74345
|
}[];
|
|
74212
74346
|
} | null | undefined;
|
|
74213
74347
|
columnId?: string | null | undefined;
|
|
74348
|
+
swatches?: {
|
|
74349
|
+
id: string;
|
|
74350
|
+
selectedThemeIds: string[];
|
|
74351
|
+
}[] | null | undefined;
|
|
74214
74352
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
74215
74353
|
userMetadata?: string | null | undefined;
|
|
74216
74354
|
} & {
|
|
@@ -74431,6 +74569,10 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
74431
74569
|
}[];
|
|
74432
74570
|
} | null | undefined;
|
|
74433
74571
|
columnId?: string | null | undefined;
|
|
74572
|
+
swatches?: {
|
|
74573
|
+
id: string;
|
|
74574
|
+
selectedThemeIds: string[];
|
|
74575
|
+
}[] | null | undefined;
|
|
74434
74576
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
74435
74577
|
userMetadata?: string | null | undefined;
|
|
74436
74578
|
} & any)[] | null | undefined;
|
|
@@ -74742,6 +74884,10 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
74742
74884
|
}[];
|
|
74743
74885
|
} | null | undefined;
|
|
74744
74886
|
columnId?: string | null | undefined;
|
|
74887
|
+
swatches?: {
|
|
74888
|
+
id: string;
|
|
74889
|
+
selectedThemeIds: string[];
|
|
74890
|
+
}[] | null | undefined;
|
|
74745
74891
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
74746
74892
|
userMetadata?: string | null | undefined;
|
|
74747
74893
|
} & {
|
|
@@ -74962,6 +75108,10 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
74962
75108
|
}[];
|
|
74963
75109
|
} | null | undefined;
|
|
74964
75110
|
columnId?: string | null | undefined;
|
|
75111
|
+
swatches?: {
|
|
75112
|
+
id: string;
|
|
75113
|
+
selectedThemeIds: string[];
|
|
75114
|
+
}[] | null | undefined;
|
|
74965
75115
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
74966
75116
|
userMetadata?: string | null | undefined;
|
|
74967
75117
|
} & any)[] | null | undefined;
|
|
@@ -75302,6 +75452,10 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
75302
75452
|
}[];
|
|
75303
75453
|
} | null | undefined;
|
|
75304
75454
|
columnId?: string | null | undefined;
|
|
75455
|
+
swatches?: {
|
|
75456
|
+
id: string;
|
|
75457
|
+
selectedThemeIds: string[];
|
|
75458
|
+
}[] | null | undefined;
|
|
75305
75459
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
75306
75460
|
userMetadata?: string | null | undefined;
|
|
75307
75461
|
} & {
|
|
@@ -75522,6 +75676,10 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
75522
75676
|
}[];
|
|
75523
75677
|
} | null | undefined;
|
|
75524
75678
|
columnId?: string | null | undefined;
|
|
75679
|
+
swatches?: {
|
|
75680
|
+
id: string;
|
|
75681
|
+
selectedThemeIds: string[];
|
|
75682
|
+
}[] | null | undefined;
|
|
75525
75683
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
75526
75684
|
userMetadata?: string | null | undefined;
|
|
75527
75685
|
} & any)[] | null | undefined;
|
|
@@ -135756,6 +135914,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
135756
135914
|
}[];
|
|
135757
135915
|
} | null | undefined;
|
|
135758
135916
|
columnId?: string | null | undefined;
|
|
135917
|
+
swatches?: {
|
|
135918
|
+
id: string;
|
|
135919
|
+
selectedThemeIds: string[];
|
|
135920
|
+
}[] | null | undefined;
|
|
135759
135921
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
135760
135922
|
userMetadata?: string | null | undefined;
|
|
135761
135923
|
} & {
|
|
@@ -135976,6 +136138,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
135976
136138
|
}[];
|
|
135977
136139
|
} | null | undefined;
|
|
135978
136140
|
columnId?: string | null | undefined;
|
|
136141
|
+
swatches?: {
|
|
136142
|
+
id: string;
|
|
136143
|
+
selectedThemeIds: string[];
|
|
136144
|
+
}[] | null | undefined;
|
|
135979
136145
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
135980
136146
|
userMetadata?: string | null | undefined;
|
|
135981
136147
|
} & any)[] | null | undefined;
|
|
@@ -136264,6 +136430,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136264
136430
|
}[];
|
|
136265
136431
|
} | null | undefined;
|
|
136266
136432
|
columnId?: string | null | undefined;
|
|
136433
|
+
swatches?: {
|
|
136434
|
+
id: string;
|
|
136435
|
+
selectedThemeIds: string[];
|
|
136436
|
+
}[] | null | undefined;
|
|
136267
136437
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
136268
136438
|
userMetadata?: string | null | undefined;
|
|
136269
136439
|
} & {
|
|
@@ -136484,6 +136654,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136484
136654
|
}[];
|
|
136485
136655
|
} | null | undefined;
|
|
136486
136656
|
columnId?: string | null | undefined;
|
|
136657
|
+
swatches?: {
|
|
136658
|
+
id: string;
|
|
136659
|
+
selectedThemeIds: string[];
|
|
136660
|
+
}[] | null | undefined;
|
|
136487
136661
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
136488
136662
|
userMetadata?: string | null | undefined;
|
|
136489
136663
|
} & any)[] | null | undefined;
|
|
@@ -136795,6 +136969,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136795
136969
|
}[];
|
|
136796
136970
|
} | null | undefined;
|
|
136797
136971
|
columnId?: string | null | undefined;
|
|
136972
|
+
swatches?: {
|
|
136973
|
+
id: string;
|
|
136974
|
+
selectedThemeIds: string[];
|
|
136975
|
+
}[] | null | undefined;
|
|
136798
136976
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
136799
136977
|
userMetadata?: string | null | undefined;
|
|
136800
136978
|
} & {
|
|
@@ -137015,6 +137193,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
137015
137193
|
}[];
|
|
137016
137194
|
} | null | undefined;
|
|
137017
137195
|
columnId?: string | null | undefined;
|
|
137196
|
+
swatches?: {
|
|
137197
|
+
id: string;
|
|
137198
|
+
selectedThemeIds: string[];
|
|
137199
|
+
}[] | null | undefined;
|
|
137018
137200
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
137019
137201
|
userMetadata?: string | null | undefined;
|
|
137020
137202
|
} & any)[] | null | undefined;
|
|
@@ -137737,6 +137919,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
137737
137919
|
}[];
|
|
137738
137920
|
} | null | undefined;
|
|
137739
137921
|
columnId?: string | null | undefined;
|
|
137922
|
+
swatches?: {
|
|
137923
|
+
id: string;
|
|
137924
|
+
selectedThemeIds: string[];
|
|
137925
|
+
}[] | null | undefined;
|
|
137740
137926
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
137741
137927
|
userMetadata?: string | null | undefined;
|
|
137742
137928
|
} & {
|
|
@@ -137957,6 +138143,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
137957
138143
|
}[];
|
|
137958
138144
|
} | null | undefined;
|
|
137959
138145
|
columnId?: string | null | undefined;
|
|
138146
|
+
swatches?: {
|
|
138147
|
+
id: string;
|
|
138148
|
+
selectedThemeIds: string[];
|
|
138149
|
+
}[] | null | undefined;
|
|
137960
138150
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
137961
138151
|
userMetadata?: string | null | undefined;
|
|
137962
138152
|
} & any)[] | null | undefined;
|
|
@@ -138245,6 +138435,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
138245
138435
|
}[];
|
|
138246
138436
|
} | null | undefined;
|
|
138247
138437
|
columnId?: string | null | undefined;
|
|
138438
|
+
swatches?: {
|
|
138439
|
+
id: string;
|
|
138440
|
+
selectedThemeIds: string[];
|
|
138441
|
+
}[] | null | undefined;
|
|
138248
138442
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
138249
138443
|
userMetadata?: string | null | undefined;
|
|
138250
138444
|
} & {
|
|
@@ -138465,6 +138659,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
138465
138659
|
}[];
|
|
138466
138660
|
} | null | undefined;
|
|
138467
138661
|
columnId?: string | null | undefined;
|
|
138662
|
+
swatches?: {
|
|
138663
|
+
id: string;
|
|
138664
|
+
selectedThemeIds: string[];
|
|
138665
|
+
}[] | null | undefined;
|
|
138468
138666
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
138469
138667
|
userMetadata?: string | null | undefined;
|
|
138470
138668
|
} & any)[] | null | undefined;
|
|
@@ -138776,6 +138974,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
138776
138974
|
}[];
|
|
138777
138975
|
} | null | undefined;
|
|
138778
138976
|
columnId?: string | null | undefined;
|
|
138977
|
+
swatches?: {
|
|
138978
|
+
id: string;
|
|
138979
|
+
selectedThemeIds: string[];
|
|
138980
|
+
}[] | null | undefined;
|
|
138779
138981
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
138780
138982
|
userMetadata?: string | null | undefined;
|
|
138781
138983
|
} & {
|
|
@@ -138996,6 +139198,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
138996
139198
|
}[];
|
|
138997
139199
|
} | null | undefined;
|
|
138998
139200
|
columnId?: string | null | undefined;
|
|
139201
|
+
swatches?: {
|
|
139202
|
+
id: string;
|
|
139203
|
+
selectedThemeIds: string[];
|
|
139204
|
+
}[] | null | undefined;
|
|
138999
139205
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
139000
139206
|
userMetadata?: string | null | undefined;
|
|
139001
139207
|
} & any)[] | null | undefined;
|
|
@@ -139336,6 +139542,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
139336
139542
|
}[];
|
|
139337
139543
|
} | null | undefined;
|
|
139338
139544
|
columnId?: string | null | undefined;
|
|
139545
|
+
swatches?: {
|
|
139546
|
+
id: string;
|
|
139547
|
+
selectedThemeIds: string[];
|
|
139548
|
+
}[] | null | undefined;
|
|
139339
139549
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
139340
139550
|
userMetadata?: string | null | undefined;
|
|
139341
139551
|
} & {
|
|
@@ -139556,6 +139766,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
139556
139766
|
}[];
|
|
139557
139767
|
} | null | undefined;
|
|
139558
139768
|
columnId?: string | null | undefined;
|
|
139769
|
+
swatches?: {
|
|
139770
|
+
id: string;
|
|
139771
|
+
selectedThemeIds: string[];
|
|
139772
|
+
}[] | null | undefined;
|
|
139559
139773
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
139560
139774
|
userMetadata?: string | null | undefined;
|
|
139561
139775
|
} & any)[] | null | undefined;
|
|
@@ -140639,6 +140853,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
140639
140853
|
}[];
|
|
140640
140854
|
} | null | undefined;
|
|
140641
140855
|
columnId?: string | null | undefined;
|
|
140856
|
+
swatches?: {
|
|
140857
|
+
id: string;
|
|
140858
|
+
selectedThemeIds: string[];
|
|
140859
|
+
}[] | null | undefined;
|
|
140642
140860
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
140643
140861
|
userMetadata?: string | null | undefined;
|
|
140644
140862
|
} & {
|
|
@@ -140859,6 +141077,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
140859
141077
|
}[];
|
|
140860
141078
|
} | null | undefined;
|
|
140861
141079
|
columnId?: string | null | undefined;
|
|
141080
|
+
swatches?: {
|
|
141081
|
+
id: string;
|
|
141082
|
+
selectedThemeIds: string[];
|
|
141083
|
+
}[] | null | undefined;
|
|
140862
141084
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
140863
141085
|
userMetadata?: string | null | undefined;
|
|
140864
141086
|
} & any)[] | null | undefined;
|
|
@@ -141136,6 +141358,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
141136
141358
|
}[];
|
|
141137
141359
|
} | null | undefined;
|
|
141138
141360
|
columnId?: string | null | undefined;
|
|
141361
|
+
swatches?: {
|
|
141362
|
+
id: string;
|
|
141363
|
+
selectedThemeIds: string[];
|
|
141364
|
+
}[] | null | undefined;
|
|
141139
141365
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
141140
141366
|
userMetadata?: string | null | undefined;
|
|
141141
141367
|
} & {
|
|
@@ -141356,6 +141582,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
141356
141582
|
}[];
|
|
141357
141583
|
} | null | undefined;
|
|
141358
141584
|
columnId?: string | null | undefined;
|
|
141585
|
+
swatches?: {
|
|
141586
|
+
id: string;
|
|
141587
|
+
selectedThemeIds: string[];
|
|
141588
|
+
}[] | null | undefined;
|
|
141359
141589
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
141360
141590
|
userMetadata?: string | null | undefined;
|
|
141361
141591
|
} & any)[] | null | undefined;
|
|
@@ -141828,6 +142058,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
141828
142058
|
}[];
|
|
141829
142059
|
} | null | undefined;
|
|
141830
142060
|
columnId?: string | null | undefined;
|
|
142061
|
+
swatches?: {
|
|
142062
|
+
id: string;
|
|
142063
|
+
selectedThemeIds: string[];
|
|
142064
|
+
}[] | null | undefined;
|
|
141831
142065
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
141832
142066
|
userMetadata?: string | null | undefined;
|
|
141833
142067
|
} & {
|
|
@@ -142048,6 +142282,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142048
142282
|
}[];
|
|
142049
142283
|
} | null | undefined;
|
|
142050
142284
|
columnId?: string | null | undefined;
|
|
142285
|
+
swatches?: {
|
|
142286
|
+
id: string;
|
|
142287
|
+
selectedThemeIds: string[];
|
|
142288
|
+
}[] | null | undefined;
|
|
142051
142289
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
142052
142290
|
userMetadata?: string | null | undefined;
|
|
142053
142291
|
} & any)[] | null | undefined;
|
|
@@ -142336,6 +142574,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142336
142574
|
}[];
|
|
142337
142575
|
} | null | undefined;
|
|
142338
142576
|
columnId?: string | null | undefined;
|
|
142577
|
+
swatches?: {
|
|
142578
|
+
id: string;
|
|
142579
|
+
selectedThemeIds: string[];
|
|
142580
|
+
}[] | null | undefined;
|
|
142339
142581
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
142340
142582
|
userMetadata?: string | null | undefined;
|
|
142341
142583
|
} & {
|
|
@@ -142556,6 +142798,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142556
142798
|
}[];
|
|
142557
142799
|
} | null | undefined;
|
|
142558
142800
|
columnId?: string | null | undefined;
|
|
142801
|
+
swatches?: {
|
|
142802
|
+
id: string;
|
|
142803
|
+
selectedThemeIds: string[];
|
|
142804
|
+
}[] | null | undefined;
|
|
142559
142805
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
142560
142806
|
userMetadata?: string | null | undefined;
|
|
142561
142807
|
} & any)[] | null | undefined;
|
|
@@ -142867,6 +143113,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142867
143113
|
}[];
|
|
142868
143114
|
} | null | undefined;
|
|
142869
143115
|
columnId?: string | null | undefined;
|
|
143116
|
+
swatches?: {
|
|
143117
|
+
id: string;
|
|
143118
|
+
selectedThemeIds: string[];
|
|
143119
|
+
}[] | null | undefined;
|
|
142870
143120
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
142871
143121
|
userMetadata?: string | null | undefined;
|
|
142872
143122
|
} & {
|
|
@@ -143087,6 +143337,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
143087
143337
|
}[];
|
|
143088
143338
|
} | null | undefined;
|
|
143089
143339
|
columnId?: string | null | undefined;
|
|
143340
|
+
swatches?: {
|
|
143341
|
+
id: string;
|
|
143342
|
+
selectedThemeIds: string[];
|
|
143343
|
+
}[] | null | undefined;
|
|
143090
143344
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
143091
143345
|
userMetadata?: string | null | undefined;
|
|
143092
143346
|
} & any)[] | null | undefined;
|
|
@@ -143811,6 +144065,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
143811
144065
|
}[];
|
|
143812
144066
|
} | null | undefined;
|
|
143813
144067
|
columnId?: string | null | undefined;
|
|
144068
|
+
swatches?: {
|
|
144069
|
+
id: string;
|
|
144070
|
+
selectedThemeIds: string[];
|
|
144071
|
+
}[] | null | undefined;
|
|
143814
144072
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
143815
144073
|
userMetadata?: string | null | undefined;
|
|
143816
144074
|
} & {
|
|
@@ -144031,6 +144289,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
144031
144289
|
}[];
|
|
144032
144290
|
} | null | undefined;
|
|
144033
144291
|
columnId?: string | null | undefined;
|
|
144292
|
+
swatches?: {
|
|
144293
|
+
id: string;
|
|
144294
|
+
selectedThemeIds: string[];
|
|
144295
|
+
}[] | null | undefined;
|
|
144034
144296
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
144035
144297
|
userMetadata?: string | null | undefined;
|
|
144036
144298
|
} & any)[] | null | undefined;
|
|
@@ -144319,6 +144581,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
144319
144581
|
}[];
|
|
144320
144582
|
} | null | undefined;
|
|
144321
144583
|
columnId?: string | null | undefined;
|
|
144584
|
+
swatches?: {
|
|
144585
|
+
id: string;
|
|
144586
|
+
selectedThemeIds: string[];
|
|
144587
|
+
}[] | null | undefined;
|
|
144322
144588
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
144323
144589
|
userMetadata?: string | null | undefined;
|
|
144324
144590
|
} & {
|
|
@@ -144539,6 +144805,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
144539
144805
|
}[];
|
|
144540
144806
|
} | null | undefined;
|
|
144541
144807
|
columnId?: string | null | undefined;
|
|
144808
|
+
swatches?: {
|
|
144809
|
+
id: string;
|
|
144810
|
+
selectedThemeIds: string[];
|
|
144811
|
+
}[] | null | undefined;
|
|
144542
144812
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
144543
144813
|
userMetadata?: string | null | undefined;
|
|
144544
144814
|
} & any)[] | null | undefined;
|
|
@@ -144850,6 +145120,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
144850
145120
|
}[];
|
|
144851
145121
|
} | null | undefined;
|
|
144852
145122
|
columnId?: string | null | undefined;
|
|
145123
|
+
swatches?: {
|
|
145124
|
+
id: string;
|
|
145125
|
+
selectedThemeIds: string[];
|
|
145126
|
+
}[] | null | undefined;
|
|
144853
145127
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
144854
145128
|
userMetadata?: string | null | undefined;
|
|
144855
145129
|
} & {
|
|
@@ -145070,6 +145344,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
145070
145344
|
}[];
|
|
145071
145345
|
} | null | undefined;
|
|
145072
145346
|
columnId?: string | null | undefined;
|
|
145347
|
+
swatches?: {
|
|
145348
|
+
id: string;
|
|
145349
|
+
selectedThemeIds: string[];
|
|
145350
|
+
}[] | null | undefined;
|
|
145073
145351
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
145074
145352
|
userMetadata?: string | null | undefined;
|
|
145075
145353
|
} & any)[] | null | undefined;
|
|
@@ -145410,6 +145688,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
145410
145688
|
}[];
|
|
145411
145689
|
} | null | undefined;
|
|
145412
145690
|
columnId?: string | null | undefined;
|
|
145691
|
+
swatches?: {
|
|
145692
|
+
id: string;
|
|
145693
|
+
selectedThemeIds: string[];
|
|
145694
|
+
}[] | null | undefined;
|
|
145413
145695
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
145414
145696
|
userMetadata?: string | null | undefined;
|
|
145415
145697
|
} & {
|
|
@@ -145630,6 +145912,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
145630
145912
|
}[];
|
|
145631
145913
|
} | null | undefined;
|
|
145632
145914
|
columnId?: string | null | undefined;
|
|
145915
|
+
swatches?: {
|
|
145916
|
+
id: string;
|
|
145917
|
+
selectedThemeIds: string[];
|
|
145918
|
+
}[] | null | undefined;
|
|
145633
145919
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
145634
145920
|
userMetadata?: string | null | undefined;
|
|
145635
145921
|
} & any)[] | null | undefined;
|
|
@@ -146701,6 +146987,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
146701
146987
|
}[];
|
|
146702
146988
|
} | null | undefined;
|
|
146703
146989
|
columnId?: string | null | undefined;
|
|
146990
|
+
swatches?: {
|
|
146991
|
+
id: string;
|
|
146992
|
+
selectedThemeIds: string[];
|
|
146993
|
+
}[] | null | undefined;
|
|
146704
146994
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
146705
146995
|
userMetadata?: string | null | undefined;
|
|
146706
146996
|
} & {
|
|
@@ -146921,6 +147211,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
146921
147211
|
}[];
|
|
146922
147212
|
} | null | undefined;
|
|
146923
147213
|
columnId?: string | null | undefined;
|
|
147214
|
+
swatches?: {
|
|
147215
|
+
id: string;
|
|
147216
|
+
selectedThemeIds: string[];
|
|
147217
|
+
}[] | null | undefined;
|
|
146924
147218
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
146925
147219
|
userMetadata?: string | null | undefined;
|
|
146926
147220
|
} & any)[] | null | undefined;
|
|
@@ -147198,6 +147492,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
147198
147492
|
}[];
|
|
147199
147493
|
} | null | undefined;
|
|
147200
147494
|
columnId?: string | null | undefined;
|
|
147495
|
+
swatches?: {
|
|
147496
|
+
id: string;
|
|
147497
|
+
selectedThemeIds: string[];
|
|
147498
|
+
}[] | null | undefined;
|
|
147201
147499
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
147202
147500
|
userMetadata?: string | null | undefined;
|
|
147203
147501
|
} & {
|
|
@@ -147418,6 +147716,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
147418
147716
|
}[];
|
|
147419
147717
|
} | null | undefined;
|
|
147420
147718
|
columnId?: string | null | undefined;
|
|
147719
|
+
swatches?: {
|
|
147720
|
+
id: string;
|
|
147721
|
+
selectedThemeIds: string[];
|
|
147722
|
+
}[] | null | undefined;
|
|
147421
147723
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
147422
147724
|
userMetadata?: string | null | undefined;
|
|
147423
147725
|
} & any)[] | null | undefined;
|
|
@@ -149073,6 +149375,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
149073
149375
|
}[];
|
|
149074
149376
|
} | null | undefined;
|
|
149075
149377
|
columnId?: string | null | undefined;
|
|
149378
|
+
swatches?: {
|
|
149379
|
+
id: string;
|
|
149380
|
+
selectedThemeIds: string[];
|
|
149381
|
+
}[] | null | undefined;
|
|
149076
149382
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
149077
149383
|
userMetadata?: string | null | undefined;
|
|
149078
149384
|
} & {
|
|
@@ -149293,6 +149599,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
149293
149599
|
}[];
|
|
149294
149600
|
} | null | undefined;
|
|
149295
149601
|
columnId?: string | null | undefined;
|
|
149602
|
+
swatches?: {
|
|
149603
|
+
id: string;
|
|
149604
|
+
selectedThemeIds: string[];
|
|
149605
|
+
}[] | null | undefined;
|
|
149296
149606
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
149297
149607
|
userMetadata?: string | null | undefined;
|
|
149298
149608
|
} & any)[] | null | undefined;
|
|
@@ -149581,6 +149891,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
149581
149891
|
}[];
|
|
149582
149892
|
} | null | undefined;
|
|
149583
149893
|
columnId?: string | null | undefined;
|
|
149894
|
+
swatches?: {
|
|
149895
|
+
id: string;
|
|
149896
|
+
selectedThemeIds: string[];
|
|
149897
|
+
}[] | null | undefined;
|
|
149584
149898
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
149585
149899
|
userMetadata?: string | null | undefined;
|
|
149586
149900
|
} & {
|
|
@@ -149801,6 +150115,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
149801
150115
|
}[];
|
|
149802
150116
|
} | null | undefined;
|
|
149803
150117
|
columnId?: string | null | undefined;
|
|
150118
|
+
swatches?: {
|
|
150119
|
+
id: string;
|
|
150120
|
+
selectedThemeIds: string[];
|
|
150121
|
+
}[] | null | undefined;
|
|
149804
150122
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
149805
150123
|
userMetadata?: string | null | undefined;
|
|
149806
150124
|
} & any)[] | null | undefined;
|
|
@@ -150112,6 +150430,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
150112
150430
|
}[];
|
|
150113
150431
|
} | null | undefined;
|
|
150114
150432
|
columnId?: string | null | undefined;
|
|
150433
|
+
swatches?: {
|
|
150434
|
+
id: string;
|
|
150435
|
+
selectedThemeIds: string[];
|
|
150436
|
+
}[] | null | undefined;
|
|
150115
150437
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
150116
150438
|
userMetadata?: string | null | undefined;
|
|
150117
150439
|
} & {
|
|
@@ -150332,6 +150654,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
150332
150654
|
}[];
|
|
150333
150655
|
} | null | undefined;
|
|
150334
150656
|
columnId?: string | null | undefined;
|
|
150657
|
+
swatches?: {
|
|
150658
|
+
id: string;
|
|
150659
|
+
selectedThemeIds: string[];
|
|
150660
|
+
}[] | null | undefined;
|
|
150335
150661
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
150336
150662
|
userMetadata?: string | null | undefined;
|
|
150337
150663
|
} & any)[] | null | undefined;
|
|
@@ -151037,6 +151363,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
151037
151363
|
}[];
|
|
151038
151364
|
} | null | undefined;
|
|
151039
151365
|
columnId?: string | null | undefined;
|
|
151366
|
+
swatches?: {
|
|
151367
|
+
id: string;
|
|
151368
|
+
selectedThemeIds: string[];
|
|
151369
|
+
}[] | null | undefined;
|
|
151040
151370
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
151041
151371
|
userMetadata?: string | null | undefined;
|
|
151042
151372
|
} & {
|
|
@@ -151257,6 +151587,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
151257
151587
|
}[];
|
|
151258
151588
|
} | null | undefined;
|
|
151259
151589
|
columnId?: string | null | undefined;
|
|
151590
|
+
swatches?: {
|
|
151591
|
+
id: string;
|
|
151592
|
+
selectedThemeIds: string[];
|
|
151593
|
+
}[] | null | undefined;
|
|
151260
151594
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
151261
151595
|
userMetadata?: string | null | undefined;
|
|
151262
151596
|
} & any)[] | null | undefined;
|
|
@@ -151698,6 +152032,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
151698
152032
|
}[];
|
|
151699
152033
|
} | null | undefined;
|
|
151700
152034
|
columnId?: string | null | undefined;
|
|
152035
|
+
swatches?: {
|
|
152036
|
+
id: string;
|
|
152037
|
+
selectedThemeIds: string[];
|
|
152038
|
+
}[] | null | undefined;
|
|
151701
152039
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
151702
152040
|
userMetadata?: string | null | undefined;
|
|
151703
152041
|
} & {
|
|
@@ -151918,6 +152256,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
151918
152256
|
}[];
|
|
151919
152257
|
} | null | undefined;
|
|
151920
152258
|
columnId?: string | null | undefined;
|
|
152259
|
+
swatches?: {
|
|
152260
|
+
id: string;
|
|
152261
|
+
selectedThemeIds: string[];
|
|
152262
|
+
}[] | null | undefined;
|
|
151921
152263
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
151922
152264
|
userMetadata?: string | null | undefined;
|
|
151923
152265
|
} & any)[] | null | undefined;
|
|
@@ -152206,6 +152548,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
152206
152548
|
}[];
|
|
152207
152549
|
} | null | undefined;
|
|
152208
152550
|
columnId?: string | null | undefined;
|
|
152551
|
+
swatches?: {
|
|
152552
|
+
id: string;
|
|
152553
|
+
selectedThemeIds: string[];
|
|
152554
|
+
}[] | null | undefined;
|
|
152209
152555
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
152210
152556
|
userMetadata?: string | null | undefined;
|
|
152211
152557
|
} & {
|
|
@@ -152426,6 +152772,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
152426
152772
|
}[];
|
|
152427
152773
|
} | null | undefined;
|
|
152428
152774
|
columnId?: string | null | undefined;
|
|
152775
|
+
swatches?: {
|
|
152776
|
+
id: string;
|
|
152777
|
+
selectedThemeIds: string[];
|
|
152778
|
+
}[] | null | undefined;
|
|
152429
152779
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
152430
152780
|
userMetadata?: string | null | undefined;
|
|
152431
152781
|
} & any)[] | null | undefined;
|
|
@@ -152737,6 +153087,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
152737
153087
|
}[];
|
|
152738
153088
|
} | null | undefined;
|
|
152739
153089
|
columnId?: string | null | undefined;
|
|
153090
|
+
swatches?: {
|
|
153091
|
+
id: string;
|
|
153092
|
+
selectedThemeIds: string[];
|
|
153093
|
+
}[] | null | undefined;
|
|
152740
153094
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
152741
153095
|
userMetadata?: string | null | undefined;
|
|
152742
153096
|
} & {
|
|
@@ -152957,6 +153311,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
152957
153311
|
}[];
|
|
152958
153312
|
} | null | undefined;
|
|
152959
153313
|
columnId?: string | null | undefined;
|
|
153314
|
+
swatches?: {
|
|
153315
|
+
id: string;
|
|
153316
|
+
selectedThemeIds: string[];
|
|
153317
|
+
}[] | null | undefined;
|
|
152960
153318
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
152961
153319
|
userMetadata?: string | null | undefined;
|
|
152962
153320
|
} & any)[] | null | undefined;
|
|
@@ -154976,6 +155334,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
154976
155334
|
}[];
|
|
154977
155335
|
} | null | undefined;
|
|
154978
155336
|
columnId?: string | null | undefined;
|
|
155337
|
+
swatches?: {
|
|
155338
|
+
id: string;
|
|
155339
|
+
selectedThemeIds: string[];
|
|
155340
|
+
}[] | null | undefined;
|
|
154979
155341
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
154980
155342
|
userMetadata?: string | null | undefined;
|
|
154981
155343
|
} & {
|
|
@@ -155196,6 +155558,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
155196
155558
|
}[];
|
|
155197
155559
|
} | null | undefined;
|
|
155198
155560
|
columnId?: string | null | undefined;
|
|
155561
|
+
swatches?: {
|
|
155562
|
+
id: string;
|
|
155563
|
+
selectedThemeIds: string[];
|
|
155564
|
+
}[] | null | undefined;
|
|
155199
155565
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
155200
155566
|
userMetadata?: string | null | undefined;
|
|
155201
155567
|
} & any)[] | null | undefined;
|
|
@@ -155799,6 +156165,10 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
155799
156165
|
}[];
|
|
155800
156166
|
} | null | undefined;
|
|
155801
156167
|
columnId?: string | null | undefined;
|
|
156168
|
+
swatches?: {
|
|
156169
|
+
id: string;
|
|
156170
|
+
selectedThemeIds: string[];
|
|
156171
|
+
}[] | null | undefined;
|
|
155802
156172
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
155803
156173
|
userMetadata?: string | null | undefined;
|
|
155804
156174
|
} & {
|
|
@@ -156019,6 +156389,10 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
156019
156389
|
}[];
|
|
156020
156390
|
} | null | undefined;
|
|
156021
156391
|
columnId?: string | null | undefined;
|
|
156392
|
+
swatches?: {
|
|
156393
|
+
id: string;
|
|
156394
|
+
selectedThemeIds: string[];
|
|
156395
|
+
}[] | null | undefined;
|
|
156022
156396
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
156023
156397
|
userMetadata?: string | null | undefined;
|
|
156024
156398
|
} & any)[] | null | undefined;
|
|
@@ -156307,6 +156681,10 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
156307
156681
|
}[];
|
|
156308
156682
|
} | null | undefined;
|
|
156309
156683
|
columnId?: string | null | undefined;
|
|
156684
|
+
swatches?: {
|
|
156685
|
+
id: string;
|
|
156686
|
+
selectedThemeIds: string[];
|
|
156687
|
+
}[] | null | undefined;
|
|
156310
156688
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
156311
156689
|
userMetadata?: string | null | undefined;
|
|
156312
156690
|
} & {
|
|
@@ -156527,6 +156905,10 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
156527
156905
|
}[];
|
|
156528
156906
|
} | null | undefined;
|
|
156529
156907
|
columnId?: string | null | undefined;
|
|
156908
|
+
swatches?: {
|
|
156909
|
+
id: string;
|
|
156910
|
+
selectedThemeIds: string[];
|
|
156911
|
+
}[] | null | undefined;
|
|
156530
156912
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
156531
156913
|
userMetadata?: string | null | undefined;
|
|
156532
156914
|
} & any)[] | null | undefined;
|
|
@@ -156838,6 +157220,10 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
156838
157220
|
}[];
|
|
156839
157221
|
} | null | undefined;
|
|
156840
157222
|
columnId?: string | null | undefined;
|
|
157223
|
+
swatches?: {
|
|
157224
|
+
id: string;
|
|
157225
|
+
selectedThemeIds: string[];
|
|
157226
|
+
}[] | null | undefined;
|
|
156841
157227
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
156842
157228
|
userMetadata?: string | null | undefined;
|
|
156843
157229
|
} & {
|
|
@@ -157058,6 +157444,10 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
157058
157444
|
}[];
|
|
157059
157445
|
} | null | undefined;
|
|
157060
157446
|
columnId?: string | null | undefined;
|
|
157447
|
+
swatches?: {
|
|
157448
|
+
id: string;
|
|
157449
|
+
selectedThemeIds: string[];
|
|
157450
|
+
}[] | null | undefined;
|
|
157061
157451
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
157062
157452
|
userMetadata?: string | null | undefined;
|
|
157063
157453
|
} & any)[] | null | undefined;
|
|
@@ -158757,6 +159147,10 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
158757
159147
|
}[];
|
|
158758
159148
|
} | null | undefined;
|
|
158759
159149
|
columnId?: string | null | undefined;
|
|
159150
|
+
swatches?: {
|
|
159151
|
+
id: string;
|
|
159152
|
+
selectedThemeIds: string[];
|
|
159153
|
+
}[] | null | undefined;
|
|
158760
159154
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
158761
159155
|
userMetadata?: string | null | undefined;
|
|
158762
159156
|
} & {
|
|
@@ -158977,6 +159371,10 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
158977
159371
|
}[];
|
|
158978
159372
|
} | null | undefined;
|
|
158979
159373
|
columnId?: string | null | undefined;
|
|
159374
|
+
swatches?: {
|
|
159375
|
+
id: string;
|
|
159376
|
+
selectedThemeIds: string[];
|
|
159377
|
+
}[] | null | undefined;
|
|
158980
159378
|
blacklistedElementProperties?: string[] | null | undefined;
|
|
158981
159379
|
userMetadata?: string | null | undefined;
|
|
158982
159380
|
} & any)[] | null | undefined;
|
|
@@ -165857,4 +166255,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
165857
166255
|
}>;
|
|
165858
166256
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
165859
166257
|
|
|
165860
|
-
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, DesignSystemAccessMode, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemMembership, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, 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 };
|
|
166258
|
+
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, DesignSystemAccessMode, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemMembership, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, 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, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockSwatch, 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 };
|