@supernova-studio/model 1.5.0 → 1.5.1
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 +692 -119
- package/dist/index.d.ts +692 -119
- package/dist/index.js +85 -66
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +477 -458
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -5157,6 +5157,36 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
5157
5157
|
type: "TokenStudio";
|
|
5158
5158
|
}, {
|
|
5159
5159
|
type: "TokenStudio";
|
|
5160
|
+
}>, z.ZodObject<{
|
|
5161
|
+
type: z.ZodLiteral<"Storybook">;
|
|
5162
|
+
indexUrl: z.ZodString;
|
|
5163
|
+
userUrl: z.ZodString;
|
|
5164
|
+
ownerId: z.ZodOptional<z.ZodString>;
|
|
5165
|
+
lastImportedAt: z.ZodOptional<z.ZodDate>;
|
|
5166
|
+
lastImportedSuccessfully: z.ZodOptional<z.ZodDate>;
|
|
5167
|
+
isFailed: z.ZodBoolean;
|
|
5168
|
+
storiesCount: z.ZodNumber;
|
|
5169
|
+
docsCount: z.ZodNumber;
|
|
5170
|
+
}, "strip", z.ZodTypeAny, {
|
|
5171
|
+
type: "Storybook";
|
|
5172
|
+
isFailed: boolean;
|
|
5173
|
+
indexUrl: string;
|
|
5174
|
+
userUrl: string;
|
|
5175
|
+
storiesCount: number;
|
|
5176
|
+
docsCount: number;
|
|
5177
|
+
ownerId?: string | undefined;
|
|
5178
|
+
lastImportedAt?: Date | undefined;
|
|
5179
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
5180
|
+
}, {
|
|
5181
|
+
type: "Storybook";
|
|
5182
|
+
isFailed: boolean;
|
|
5183
|
+
indexUrl: string;
|
|
5184
|
+
userUrl: string;
|
|
5185
|
+
storiesCount: number;
|
|
5186
|
+
docsCount: number;
|
|
5187
|
+
ownerId?: string | undefined;
|
|
5188
|
+
lastImportedAt?: Date | undefined;
|
|
5189
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
5160
5190
|
}>]>;
|
|
5161
5191
|
sortOrder: z.ZodNumber;
|
|
5162
5192
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5220,6 +5250,16 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
5220
5250
|
referenceId?: string | undefined;
|
|
5221
5251
|
}[] | undefined;
|
|
5222
5252
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
5253
|
+
} | {
|
|
5254
|
+
type: "Storybook";
|
|
5255
|
+
isFailed: boolean;
|
|
5256
|
+
indexUrl: string;
|
|
5257
|
+
userUrl: string;
|
|
5258
|
+
storiesCount: number;
|
|
5259
|
+
docsCount: number;
|
|
5260
|
+
ownerId?: string | undefined;
|
|
5261
|
+
lastImportedAt?: Date | undefined;
|
|
5262
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
5223
5263
|
};
|
|
5224
5264
|
createdAt?: Date | undefined;
|
|
5225
5265
|
thumbnailUrl?: string | undefined;
|
|
@@ -5316,6 +5356,16 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
5316
5356
|
referenceId?: string | undefined;
|
|
5317
5357
|
}[] | null | undefined;
|
|
5318
5358
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
5359
|
+
} | {
|
|
5360
|
+
type: "Storybook";
|
|
5361
|
+
isFailed: boolean;
|
|
5362
|
+
indexUrl: string;
|
|
5363
|
+
userUrl: string;
|
|
5364
|
+
storiesCount: number;
|
|
5365
|
+
docsCount: number;
|
|
5366
|
+
ownerId?: string | undefined;
|
|
5367
|
+
lastImportedAt?: Date | undefined;
|
|
5368
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
5319
5369
|
};
|
|
5320
5370
|
createdAt?: Date | undefined;
|
|
5321
5371
|
thumbnailUrl?: string | undefined;
|
|
@@ -7964,6 +8014,16 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
7964
8014
|
referenceId?: string | undefined;
|
|
7965
8015
|
}[] | undefined;
|
|
7966
8016
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
8017
|
+
} | {
|
|
8018
|
+
type: "Storybook";
|
|
8019
|
+
isFailed: boolean;
|
|
8020
|
+
indexUrl: string;
|
|
8021
|
+
userUrl: string;
|
|
8022
|
+
storiesCount: number;
|
|
8023
|
+
docsCount: number;
|
|
8024
|
+
ownerId?: string | undefined;
|
|
8025
|
+
lastImportedAt?: Date | undefined;
|
|
8026
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
7967
8027
|
};
|
|
7968
8028
|
createdAt?: Date | undefined;
|
|
7969
8029
|
thumbnailUrl?: string | undefined;
|
|
@@ -8399,6 +8459,16 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
8399
8459
|
referenceId?: string | undefined;
|
|
8400
8460
|
}[] | null | undefined;
|
|
8401
8461
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
8462
|
+
} | {
|
|
8463
|
+
type: "Storybook";
|
|
8464
|
+
isFailed: boolean;
|
|
8465
|
+
indexUrl: string;
|
|
8466
|
+
userUrl: string;
|
|
8467
|
+
storiesCount: number;
|
|
8468
|
+
docsCount: number;
|
|
8469
|
+
ownerId?: string | undefined;
|
|
8470
|
+
lastImportedAt?: Date | undefined;
|
|
8471
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
8402
8472
|
};
|
|
8403
8473
|
createdAt?: Date | undefined;
|
|
8404
8474
|
thumbnailUrl?: string | undefined;
|
|
@@ -14165,6 +14235,36 @@ declare const UserDump: z.ZodObject<{
|
|
|
14165
14235
|
type: "TokenStudio";
|
|
14166
14236
|
}, {
|
|
14167
14237
|
type: "TokenStudio";
|
|
14238
|
+
}>, z.ZodObject<{
|
|
14239
|
+
type: z.ZodLiteral<"Storybook">;
|
|
14240
|
+
indexUrl: z.ZodString;
|
|
14241
|
+
userUrl: z.ZodString;
|
|
14242
|
+
ownerId: z.ZodOptional<z.ZodString>;
|
|
14243
|
+
lastImportedAt: z.ZodOptional<z.ZodDate>;
|
|
14244
|
+
lastImportedSuccessfully: z.ZodOptional<z.ZodDate>;
|
|
14245
|
+
isFailed: z.ZodBoolean;
|
|
14246
|
+
storiesCount: z.ZodNumber;
|
|
14247
|
+
docsCount: z.ZodNumber;
|
|
14248
|
+
}, "strip", z.ZodTypeAny, {
|
|
14249
|
+
type: "Storybook";
|
|
14250
|
+
isFailed: boolean;
|
|
14251
|
+
indexUrl: string;
|
|
14252
|
+
userUrl: string;
|
|
14253
|
+
storiesCount: number;
|
|
14254
|
+
docsCount: number;
|
|
14255
|
+
ownerId?: string | undefined;
|
|
14256
|
+
lastImportedAt?: Date | undefined;
|
|
14257
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
14258
|
+
}, {
|
|
14259
|
+
type: "Storybook";
|
|
14260
|
+
isFailed: boolean;
|
|
14261
|
+
indexUrl: string;
|
|
14262
|
+
userUrl: string;
|
|
14263
|
+
storiesCount: number;
|
|
14264
|
+
docsCount: number;
|
|
14265
|
+
ownerId?: string | undefined;
|
|
14266
|
+
lastImportedAt?: Date | undefined;
|
|
14267
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
14168
14268
|
}>]>;
|
|
14169
14269
|
sortOrder: z.ZodNumber;
|
|
14170
14270
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14228,6 +14328,16 @@ declare const UserDump: z.ZodObject<{
|
|
|
14228
14328
|
referenceId?: string | undefined;
|
|
14229
14329
|
}[] | undefined;
|
|
14230
14330
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
14331
|
+
} | {
|
|
14332
|
+
type: "Storybook";
|
|
14333
|
+
isFailed: boolean;
|
|
14334
|
+
indexUrl: string;
|
|
14335
|
+
userUrl: string;
|
|
14336
|
+
storiesCount: number;
|
|
14337
|
+
docsCount: number;
|
|
14338
|
+
ownerId?: string | undefined;
|
|
14339
|
+
lastImportedAt?: Date | undefined;
|
|
14340
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
14231
14341
|
};
|
|
14232
14342
|
createdAt?: Date | undefined;
|
|
14233
14343
|
thumbnailUrl?: string | undefined;
|
|
@@ -14324,6 +14434,16 @@ declare const UserDump: z.ZodObject<{
|
|
|
14324
14434
|
referenceId?: string | undefined;
|
|
14325
14435
|
}[] | null | undefined;
|
|
14326
14436
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
14437
|
+
} | {
|
|
14438
|
+
type: "Storybook";
|
|
14439
|
+
isFailed: boolean;
|
|
14440
|
+
indexUrl: string;
|
|
14441
|
+
userUrl: string;
|
|
14442
|
+
storiesCount: number;
|
|
14443
|
+
docsCount: number;
|
|
14444
|
+
ownerId?: string | undefined;
|
|
14445
|
+
lastImportedAt?: Date | undefined;
|
|
14446
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
14327
14447
|
};
|
|
14328
14448
|
createdAt?: Date | undefined;
|
|
14329
14449
|
thumbnailUrl?: string | undefined;
|
|
@@ -16972,6 +17092,16 @@ declare const UserDump: z.ZodObject<{
|
|
|
16972
17092
|
referenceId?: string | undefined;
|
|
16973
17093
|
}[] | undefined;
|
|
16974
17094
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
17095
|
+
} | {
|
|
17096
|
+
type: "Storybook";
|
|
17097
|
+
isFailed: boolean;
|
|
17098
|
+
indexUrl: string;
|
|
17099
|
+
userUrl: string;
|
|
17100
|
+
storiesCount: number;
|
|
17101
|
+
docsCount: number;
|
|
17102
|
+
ownerId?: string | undefined;
|
|
17103
|
+
lastImportedAt?: Date | undefined;
|
|
17104
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
16975
17105
|
};
|
|
16976
17106
|
createdAt?: Date | undefined;
|
|
16977
17107
|
thumbnailUrl?: string | undefined;
|
|
@@ -17407,6 +17537,16 @@ declare const UserDump: z.ZodObject<{
|
|
|
17407
17537
|
referenceId?: string | undefined;
|
|
17408
17538
|
}[] | null | undefined;
|
|
17409
17539
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
17540
|
+
} | {
|
|
17541
|
+
type: "Storybook";
|
|
17542
|
+
isFailed: boolean;
|
|
17543
|
+
indexUrl: string;
|
|
17544
|
+
userUrl: string;
|
|
17545
|
+
storiesCount: number;
|
|
17546
|
+
docsCount: number;
|
|
17547
|
+
ownerId?: string | undefined;
|
|
17548
|
+
lastImportedAt?: Date | undefined;
|
|
17549
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
17410
17550
|
};
|
|
17411
17551
|
createdAt?: Date | undefined;
|
|
17412
17552
|
thumbnailUrl?: string | undefined;
|
|
@@ -20662,6 +20802,16 @@ declare const UserDump: z.ZodObject<{
|
|
|
20662
20802
|
referenceId?: string | undefined;
|
|
20663
20803
|
}[] | undefined;
|
|
20664
20804
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
20805
|
+
} | {
|
|
20806
|
+
type: "Storybook";
|
|
20807
|
+
isFailed: boolean;
|
|
20808
|
+
indexUrl: string;
|
|
20809
|
+
userUrl: string;
|
|
20810
|
+
storiesCount: number;
|
|
20811
|
+
docsCount: number;
|
|
20812
|
+
ownerId?: string | undefined;
|
|
20813
|
+
lastImportedAt?: Date | undefined;
|
|
20814
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
20665
20815
|
};
|
|
20666
20816
|
createdAt?: Date | undefined;
|
|
20667
20817
|
thumbnailUrl?: string | undefined;
|
|
@@ -21649,6 +21799,16 @@ declare const UserDump: z.ZodObject<{
|
|
|
21649
21799
|
referenceId?: string | undefined;
|
|
21650
21800
|
}[] | null | undefined;
|
|
21651
21801
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
21802
|
+
} | {
|
|
21803
|
+
type: "Storybook";
|
|
21804
|
+
isFailed: boolean;
|
|
21805
|
+
indexUrl: string;
|
|
21806
|
+
userUrl: string;
|
|
21807
|
+
storiesCount: number;
|
|
21808
|
+
docsCount: number;
|
|
21809
|
+
ownerId?: string | undefined;
|
|
21810
|
+
lastImportedAt?: Date | undefined;
|
|
21811
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
21652
21812
|
};
|
|
21653
21813
|
createdAt?: Date | undefined;
|
|
21654
21814
|
thumbnailUrl?: string | undefined;
|
|
@@ -22638,6 +22798,16 @@ declare const UserDump: z.ZodObject<{
|
|
|
22638
22798
|
referenceId?: string | undefined;
|
|
22639
22799
|
}[] | undefined;
|
|
22640
22800
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
22801
|
+
} | {
|
|
22802
|
+
type: "Storybook";
|
|
22803
|
+
isFailed: boolean;
|
|
22804
|
+
indexUrl: string;
|
|
22805
|
+
userUrl: string;
|
|
22806
|
+
storiesCount: number;
|
|
22807
|
+
docsCount: number;
|
|
22808
|
+
ownerId?: string | undefined;
|
|
22809
|
+
lastImportedAt?: Date | undefined;
|
|
22810
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
22641
22811
|
};
|
|
22642
22812
|
createdAt?: Date | undefined;
|
|
22643
22813
|
thumbnailUrl?: string | undefined;
|
|
@@ -23657,6 +23827,16 @@ declare const UserDump: z.ZodObject<{
|
|
|
23657
23827
|
referenceId?: string | undefined;
|
|
23658
23828
|
}[] | null | undefined;
|
|
23659
23829
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
23830
|
+
} | {
|
|
23831
|
+
type: "Storybook";
|
|
23832
|
+
isFailed: boolean;
|
|
23833
|
+
indexUrl: string;
|
|
23834
|
+
userUrl: string;
|
|
23835
|
+
storiesCount: number;
|
|
23836
|
+
docsCount: number;
|
|
23837
|
+
ownerId?: string | undefined;
|
|
23838
|
+
lastImportedAt?: Date | undefined;
|
|
23839
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
23660
23840
|
};
|
|
23661
23841
|
createdAt?: Date | undefined;
|
|
23662
23842
|
thumbnailUrl?: string | undefined;
|
|
@@ -26424,6 +26604,36 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26424
26604
|
type: "TokenStudio";
|
|
26425
26605
|
}, {
|
|
26426
26606
|
type: "TokenStudio";
|
|
26607
|
+
}>, z.ZodObject<{
|
|
26608
|
+
type: z.ZodLiteral<"Storybook">;
|
|
26609
|
+
indexUrl: z.ZodString;
|
|
26610
|
+
userUrl: z.ZodString;
|
|
26611
|
+
ownerId: z.ZodOptional<z.ZodString>;
|
|
26612
|
+
lastImportedAt: z.ZodOptional<z.ZodDate>;
|
|
26613
|
+
lastImportedSuccessfully: z.ZodOptional<z.ZodDate>;
|
|
26614
|
+
isFailed: z.ZodBoolean;
|
|
26615
|
+
storiesCount: z.ZodNumber;
|
|
26616
|
+
docsCount: z.ZodNumber;
|
|
26617
|
+
}, "strip", z.ZodTypeAny, {
|
|
26618
|
+
type: "Storybook";
|
|
26619
|
+
isFailed: boolean;
|
|
26620
|
+
indexUrl: string;
|
|
26621
|
+
userUrl: string;
|
|
26622
|
+
storiesCount: number;
|
|
26623
|
+
docsCount: number;
|
|
26624
|
+
ownerId?: string | undefined;
|
|
26625
|
+
lastImportedAt?: Date | undefined;
|
|
26626
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
26627
|
+
}, {
|
|
26628
|
+
type: "Storybook";
|
|
26629
|
+
isFailed: boolean;
|
|
26630
|
+
indexUrl: string;
|
|
26631
|
+
userUrl: string;
|
|
26632
|
+
storiesCount: number;
|
|
26633
|
+
docsCount: number;
|
|
26634
|
+
ownerId?: string | undefined;
|
|
26635
|
+
lastImportedAt?: Date | undefined;
|
|
26636
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
26427
26637
|
}>]>;
|
|
26428
26638
|
sortOrder: z.ZodNumber;
|
|
26429
26639
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -26487,6 +26697,16 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26487
26697
|
referenceId?: string | undefined;
|
|
26488
26698
|
}[] | undefined;
|
|
26489
26699
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
26700
|
+
} | {
|
|
26701
|
+
type: "Storybook";
|
|
26702
|
+
isFailed: boolean;
|
|
26703
|
+
indexUrl: string;
|
|
26704
|
+
userUrl: string;
|
|
26705
|
+
storiesCount: number;
|
|
26706
|
+
docsCount: number;
|
|
26707
|
+
ownerId?: string | undefined;
|
|
26708
|
+
lastImportedAt?: Date | undefined;
|
|
26709
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
26490
26710
|
};
|
|
26491
26711
|
createdAt?: Date | undefined;
|
|
26492
26712
|
thumbnailUrl?: string | undefined;
|
|
@@ -26583,6 +26803,16 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26583
26803
|
referenceId?: string | undefined;
|
|
26584
26804
|
}[] | null | undefined;
|
|
26585
26805
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
26806
|
+
} | {
|
|
26807
|
+
type: "Storybook";
|
|
26808
|
+
isFailed: boolean;
|
|
26809
|
+
indexUrl: string;
|
|
26810
|
+
userUrl: string;
|
|
26811
|
+
storiesCount: number;
|
|
26812
|
+
docsCount: number;
|
|
26813
|
+
ownerId?: string | undefined;
|
|
26814
|
+
lastImportedAt?: Date | undefined;
|
|
26815
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
26586
26816
|
};
|
|
26587
26817
|
createdAt?: Date | undefined;
|
|
26588
26818
|
thumbnailUrl?: string | undefined;
|
|
@@ -29231,6 +29461,16 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
29231
29461
|
referenceId?: string | undefined;
|
|
29232
29462
|
}[] | undefined;
|
|
29233
29463
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
29464
|
+
} | {
|
|
29465
|
+
type: "Storybook";
|
|
29466
|
+
isFailed: boolean;
|
|
29467
|
+
indexUrl: string;
|
|
29468
|
+
userUrl: string;
|
|
29469
|
+
storiesCount: number;
|
|
29470
|
+
docsCount: number;
|
|
29471
|
+
ownerId?: string | undefined;
|
|
29472
|
+
lastImportedAt?: Date | undefined;
|
|
29473
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
29234
29474
|
};
|
|
29235
29475
|
createdAt?: Date | undefined;
|
|
29236
29476
|
thumbnailUrl?: string | undefined;
|
|
@@ -29666,6 +29906,16 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
29666
29906
|
referenceId?: string | undefined;
|
|
29667
29907
|
}[] | null | undefined;
|
|
29668
29908
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
29909
|
+
} | {
|
|
29910
|
+
type: "Storybook";
|
|
29911
|
+
isFailed: boolean;
|
|
29912
|
+
indexUrl: string;
|
|
29913
|
+
userUrl: string;
|
|
29914
|
+
storiesCount: number;
|
|
29915
|
+
docsCount: number;
|
|
29916
|
+
ownerId?: string | undefined;
|
|
29917
|
+
lastImportedAt?: Date | undefined;
|
|
29918
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
29669
29919
|
};
|
|
29670
29920
|
createdAt?: Date | undefined;
|
|
29671
29921
|
thumbnailUrl?: string | undefined;
|
|
@@ -32921,6 +33171,16 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32921
33171
|
referenceId?: string | undefined;
|
|
32922
33172
|
}[] | undefined;
|
|
32923
33173
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
33174
|
+
} | {
|
|
33175
|
+
type: "Storybook";
|
|
33176
|
+
isFailed: boolean;
|
|
33177
|
+
indexUrl: string;
|
|
33178
|
+
userUrl: string;
|
|
33179
|
+
storiesCount: number;
|
|
33180
|
+
docsCount: number;
|
|
33181
|
+
ownerId?: string | undefined;
|
|
33182
|
+
lastImportedAt?: Date | undefined;
|
|
33183
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
32924
33184
|
};
|
|
32925
33185
|
createdAt?: Date | undefined;
|
|
32926
33186
|
thumbnailUrl?: string | undefined;
|
|
@@ -33908,6 +34168,16 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
33908
34168
|
referenceId?: string | undefined;
|
|
33909
34169
|
}[] | null | undefined;
|
|
33910
34170
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
34171
|
+
} | {
|
|
34172
|
+
type: "Storybook";
|
|
34173
|
+
isFailed: boolean;
|
|
34174
|
+
indexUrl: string;
|
|
34175
|
+
userUrl: string;
|
|
34176
|
+
storiesCount: number;
|
|
34177
|
+
docsCount: number;
|
|
34178
|
+
ownerId?: string | undefined;
|
|
34179
|
+
lastImportedAt?: Date | undefined;
|
|
34180
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
33911
34181
|
};
|
|
33912
34182
|
createdAt?: Date | undefined;
|
|
33913
34183
|
thumbnailUrl?: string | undefined;
|
|
@@ -35528,7 +35798,7 @@ declare const RenderedAssetFile: z.ZodObject<{
|
|
|
35528
35798
|
}>;
|
|
35529
35799
|
type RenderedAssetFile = z.infer<typeof RenderedAssetFile>;
|
|
35530
35800
|
|
|
35531
|
-
declare const DataSourceRemoteType: z.ZodEnum<["Figma", "TokenStudio", "FigmaVariablesPlugin"]>;
|
|
35801
|
+
declare const DataSourceRemoteType: z.ZodEnum<["Figma", "TokenStudio", "FigmaVariablesPlugin", "Storybook"]>;
|
|
35532
35802
|
type DataSourceRemoteType = z.infer<typeof DataSourceRemoteType>;
|
|
35533
35803
|
declare const DataSourceUploadRemoteSource: z.ZodEnum<["TokenStudio", "FigmaVariablesPlugin", "Custom"]>;
|
|
35534
35804
|
type DataSourceUploadRemoteSource = z.infer<typeof DataSourceUploadRemoteSource>;
|
|
@@ -35871,6 +36141,38 @@ declare const DataSourceUploadRemote: z.ZodObject<{
|
|
|
35871
36141
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
35872
36142
|
}>;
|
|
35873
36143
|
type DataSourceUploadRemote = z.infer<typeof DataSourceUploadRemote>;
|
|
36144
|
+
declare const DataSourceStorybookRemote: z.ZodObject<{
|
|
36145
|
+
type: z.ZodLiteral<"Storybook">;
|
|
36146
|
+
indexUrl: z.ZodString;
|
|
36147
|
+
userUrl: z.ZodString;
|
|
36148
|
+
ownerId: z.ZodOptional<z.ZodString>;
|
|
36149
|
+
lastImportedAt: z.ZodOptional<z.ZodDate>;
|
|
36150
|
+
lastImportedSuccessfully: z.ZodOptional<z.ZodDate>;
|
|
36151
|
+
isFailed: z.ZodBoolean;
|
|
36152
|
+
storiesCount: z.ZodNumber;
|
|
36153
|
+
docsCount: z.ZodNumber;
|
|
36154
|
+
}, "strip", z.ZodTypeAny, {
|
|
36155
|
+
type: "Storybook";
|
|
36156
|
+
isFailed: boolean;
|
|
36157
|
+
indexUrl: string;
|
|
36158
|
+
userUrl: string;
|
|
36159
|
+
storiesCount: number;
|
|
36160
|
+
docsCount: number;
|
|
36161
|
+
ownerId?: string | undefined;
|
|
36162
|
+
lastImportedAt?: Date | undefined;
|
|
36163
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
36164
|
+
}, {
|
|
36165
|
+
type: "Storybook";
|
|
36166
|
+
isFailed: boolean;
|
|
36167
|
+
indexUrl: string;
|
|
36168
|
+
userUrl: string;
|
|
36169
|
+
storiesCount: number;
|
|
36170
|
+
docsCount: number;
|
|
36171
|
+
ownerId?: string | undefined;
|
|
36172
|
+
lastImportedAt?: Date | undefined;
|
|
36173
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
36174
|
+
}>;
|
|
36175
|
+
type DataSourceStorybookRemote = z.infer<typeof DataSourceStorybookRemote>;
|
|
35874
36176
|
declare const DataSourceVersion: z.ZodObject<{
|
|
35875
36177
|
id: z.ZodString;
|
|
35876
36178
|
createdAt: z.ZodDate;
|
|
@@ -36104,6 +36406,36 @@ declare const DataSourceRemote: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
36104
36406
|
type: "TokenStudio";
|
|
36105
36407
|
}, {
|
|
36106
36408
|
type: "TokenStudio";
|
|
36409
|
+
}>, z.ZodObject<{
|
|
36410
|
+
type: z.ZodLiteral<"Storybook">;
|
|
36411
|
+
indexUrl: z.ZodString;
|
|
36412
|
+
userUrl: z.ZodString;
|
|
36413
|
+
ownerId: z.ZodOptional<z.ZodString>;
|
|
36414
|
+
lastImportedAt: z.ZodOptional<z.ZodDate>;
|
|
36415
|
+
lastImportedSuccessfully: z.ZodOptional<z.ZodDate>;
|
|
36416
|
+
isFailed: z.ZodBoolean;
|
|
36417
|
+
storiesCount: z.ZodNumber;
|
|
36418
|
+
docsCount: z.ZodNumber;
|
|
36419
|
+
}, "strip", z.ZodTypeAny, {
|
|
36420
|
+
type: "Storybook";
|
|
36421
|
+
isFailed: boolean;
|
|
36422
|
+
indexUrl: string;
|
|
36423
|
+
userUrl: string;
|
|
36424
|
+
storiesCount: number;
|
|
36425
|
+
docsCount: number;
|
|
36426
|
+
ownerId?: string | undefined;
|
|
36427
|
+
lastImportedAt?: Date | undefined;
|
|
36428
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
36429
|
+
}, {
|
|
36430
|
+
type: "Storybook";
|
|
36431
|
+
isFailed: boolean;
|
|
36432
|
+
indexUrl: string;
|
|
36433
|
+
userUrl: string;
|
|
36434
|
+
storiesCount: number;
|
|
36435
|
+
docsCount: number;
|
|
36436
|
+
ownerId?: string | undefined;
|
|
36437
|
+
lastImportedAt?: Date | undefined;
|
|
36438
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
36107
36439
|
}>]>;
|
|
36108
36440
|
type DataSourceRemote = z.infer<typeof DataSourceRemote>;
|
|
36109
36441
|
declare const DataSource: z.ZodObject<{
|
|
@@ -36470,6 +36802,36 @@ declare const DataSource: z.ZodObject<{
|
|
|
36470
36802
|
type: "TokenStudio";
|
|
36471
36803
|
}, {
|
|
36472
36804
|
type: "TokenStudio";
|
|
36805
|
+
}>, z.ZodObject<{
|
|
36806
|
+
type: z.ZodLiteral<"Storybook">;
|
|
36807
|
+
indexUrl: z.ZodString;
|
|
36808
|
+
userUrl: z.ZodString;
|
|
36809
|
+
ownerId: z.ZodOptional<z.ZodString>;
|
|
36810
|
+
lastImportedAt: z.ZodOptional<z.ZodDate>;
|
|
36811
|
+
lastImportedSuccessfully: z.ZodOptional<z.ZodDate>;
|
|
36812
|
+
isFailed: z.ZodBoolean;
|
|
36813
|
+
storiesCount: z.ZodNumber;
|
|
36814
|
+
docsCount: z.ZodNumber;
|
|
36815
|
+
}, "strip", z.ZodTypeAny, {
|
|
36816
|
+
type: "Storybook";
|
|
36817
|
+
isFailed: boolean;
|
|
36818
|
+
indexUrl: string;
|
|
36819
|
+
userUrl: string;
|
|
36820
|
+
storiesCount: number;
|
|
36821
|
+
docsCount: number;
|
|
36822
|
+
ownerId?: string | undefined;
|
|
36823
|
+
lastImportedAt?: Date | undefined;
|
|
36824
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
36825
|
+
}, {
|
|
36826
|
+
type: "Storybook";
|
|
36827
|
+
isFailed: boolean;
|
|
36828
|
+
indexUrl: string;
|
|
36829
|
+
userUrl: string;
|
|
36830
|
+
storiesCount: number;
|
|
36831
|
+
docsCount: number;
|
|
36832
|
+
ownerId?: string | undefined;
|
|
36833
|
+
lastImportedAt?: Date | undefined;
|
|
36834
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
36473
36835
|
}>]>;
|
|
36474
36836
|
sortOrder: z.ZodNumber;
|
|
36475
36837
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -36533,6 +36895,16 @@ declare const DataSource: z.ZodObject<{
|
|
|
36533
36895
|
referenceId?: string | undefined;
|
|
36534
36896
|
}[] | undefined;
|
|
36535
36897
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
36898
|
+
} | {
|
|
36899
|
+
type: "Storybook";
|
|
36900
|
+
isFailed: boolean;
|
|
36901
|
+
indexUrl: string;
|
|
36902
|
+
userUrl: string;
|
|
36903
|
+
storiesCount: number;
|
|
36904
|
+
docsCount: number;
|
|
36905
|
+
ownerId?: string | undefined;
|
|
36906
|
+
lastImportedAt?: Date | undefined;
|
|
36907
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
36536
36908
|
};
|
|
36537
36909
|
createdAt?: Date | undefined;
|
|
36538
36910
|
thumbnailUrl?: string | undefined;
|
|
@@ -36629,6 +37001,16 @@ declare const DataSource: z.ZodObject<{
|
|
|
36629
37001
|
referenceId?: string | undefined;
|
|
36630
37002
|
}[] | null | undefined;
|
|
36631
37003
|
lastImportMetadata?: Record<string, any> | undefined;
|
|
37004
|
+
} | {
|
|
37005
|
+
type: "Storybook";
|
|
37006
|
+
isFailed: boolean;
|
|
37007
|
+
indexUrl: string;
|
|
37008
|
+
userUrl: string;
|
|
37009
|
+
storiesCount: number;
|
|
37010
|
+
docsCount: number;
|
|
37011
|
+
ownerId?: string | undefined;
|
|
37012
|
+
lastImportedAt?: Date | undefined;
|
|
37013
|
+
lastImportedSuccessfully?: Date | undefined;
|
|
36632
37014
|
};
|
|
36633
37015
|
createdAt?: Date | undefined;
|
|
36634
37016
|
thumbnailUrl?: string | undefined;
|
|
@@ -36709,7 +37091,7 @@ declare const ImportJob: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
36709
37091
|
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
36710
37092
|
importContextId: z.ZodString;
|
|
36711
37093
|
error: z.ZodOptional<z.ZodString>;
|
|
36712
|
-
sourceType: z.ZodEnum<["Figma", "TokenStudio", "FigmaVariablesPlugin"]>;
|
|
37094
|
+
sourceType: z.ZodEnum<["Figma", "TokenStudio", "FigmaVariablesPlugin", "Storybook"]>;
|
|
36713
37095
|
importContextCleanedUp: z.ZodBoolean;
|
|
36714
37096
|
}>, "strip", z.ZodTypeAny, {
|
|
36715
37097
|
id: string;
|
|
@@ -36720,7 +37102,7 @@ declare const ImportJob: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
36720
37102
|
designSystemVersionId: string;
|
|
36721
37103
|
sourceIds: string[];
|
|
36722
37104
|
importContextId: string;
|
|
36723
|
-
sourceType: "Figma" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
37105
|
+
sourceType: "Storybook" | "Figma" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
36724
37106
|
importContextCleanedUp: boolean;
|
|
36725
37107
|
error?: string | undefined;
|
|
36726
37108
|
createdByUserId?: string | undefined;
|
|
@@ -36733,7 +37115,7 @@ declare const ImportJob: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
36733
37115
|
designSystemVersionId: string;
|
|
36734
37116
|
sourceIds: string[];
|
|
36735
37117
|
importContextId: string;
|
|
36736
|
-
sourceType: "Figma" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
37118
|
+
sourceType: "Storybook" | "Figma" | "TokenStudio" | "FigmaVariablesPlugin";
|
|
36737
37119
|
importContextCleanedUp: boolean;
|
|
36738
37120
|
error?: string | undefined;
|
|
36739
37121
|
createdByUserId?: string | undefined;
|
|
@@ -49245,16 +49627,22 @@ declare const PageBlockItemStorybookValue: z.ZodObject<{
|
|
|
49245
49627
|
height: z.ZodOptional<z.ZodNumber>;
|
|
49246
49628
|
embedUrl: z.ZodOptional<z.ZodString>;
|
|
49247
49629
|
value: z.ZodOptional<z.ZodString>;
|
|
49630
|
+
storyId: z.ZodOptional<z.ZodString>;
|
|
49631
|
+
sourceId: z.ZodOptional<z.ZodString>;
|
|
49248
49632
|
}, "strip", z.ZodTypeAny, {
|
|
49249
49633
|
value?: string | undefined;
|
|
49250
49634
|
height?: number | undefined;
|
|
49635
|
+
sourceId?: string | undefined;
|
|
49251
49636
|
caption?: string | undefined;
|
|
49252
49637
|
embedUrl?: string | undefined;
|
|
49638
|
+
storyId?: string | undefined;
|
|
49253
49639
|
}, {
|
|
49254
49640
|
value?: string | undefined;
|
|
49255
49641
|
height?: number | undefined;
|
|
49642
|
+
sourceId?: string | undefined;
|
|
49256
49643
|
caption?: string | undefined;
|
|
49257
49644
|
embedUrl?: string | undefined;
|
|
49645
|
+
storyId?: string | undefined;
|
|
49258
49646
|
}>;
|
|
49259
49647
|
type PageBlockItemStorybookValue = z.infer<typeof PageBlockItemStorybookValue>;
|
|
49260
49648
|
declare const PageBlockItemTextValue: z.ZodObject<{
|
|
@@ -84647,21 +85035,12 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
84647
85035
|
}>;
|
|
84648
85036
|
type FigmaImportBaseContext = z.infer<typeof FigmaImportBaseContext>;
|
|
84649
85037
|
declare const FeatureFlagsKeepAliases: z.ZodObject<{
|
|
84650
|
-
isTypographyPropsKeepAliasesEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
84651
|
-
isGradientPropsKeepAliasesEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
84652
|
-
isShadowPropsKeepAliasesEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
84653
85038
|
isNonCompatibleTypeChangesEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
84654
85039
|
isTypographyUseFontStyleEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
84655
85040
|
}, "strip", z.ZodTypeAny, {
|
|
84656
|
-
isTypographyPropsKeepAliasesEnabled: boolean;
|
|
84657
|
-
isGradientPropsKeepAliasesEnabled: boolean;
|
|
84658
|
-
isShadowPropsKeepAliasesEnabled: boolean;
|
|
84659
85041
|
isNonCompatibleTypeChangesEnabled: boolean;
|
|
84660
85042
|
isTypographyUseFontStyleEnabled: boolean;
|
|
84661
85043
|
}, {
|
|
84662
|
-
isTypographyPropsKeepAliasesEnabled?: boolean | undefined;
|
|
84663
|
-
isGradientPropsKeepAliasesEnabled?: boolean | undefined;
|
|
84664
|
-
isShadowPropsKeepAliasesEnabled?: boolean | undefined;
|
|
84665
85044
|
isNonCompatibleTypeChangesEnabled?: boolean | undefined;
|
|
84666
85045
|
isTypographyUseFontStyleEnabled?: boolean | undefined;
|
|
84667
85046
|
}>;
|
|
@@ -84928,23 +85307,13 @@ declare const FigmaImportContextWithSourcesState: z.ZodObject<z.objectUtil.exten
|
|
|
84928
85307
|
}>, "many">>>;
|
|
84929
85308
|
}, {
|
|
84930
85309
|
sourcesWithMissingAccess: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
84931
|
-
shadowOpacityOptional: z.ZodDefault<z.ZodBoolean>;
|
|
84932
85310
|
featureFlagsKeepAliases: z.ZodDefault<z.ZodObject<{
|
|
84933
|
-
isTypographyPropsKeepAliasesEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
84934
|
-
isGradientPropsKeepAliasesEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
84935
|
-
isShadowPropsKeepAliasesEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
84936
85311
|
isNonCompatibleTypeChangesEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
84937
85312
|
isTypographyUseFontStyleEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
84938
85313
|
}, "strip", z.ZodTypeAny, {
|
|
84939
|
-
isTypographyPropsKeepAliasesEnabled: boolean;
|
|
84940
|
-
isGradientPropsKeepAliasesEnabled: boolean;
|
|
84941
|
-
isShadowPropsKeepAliasesEnabled: boolean;
|
|
84942
85314
|
isNonCompatibleTypeChangesEnabled: boolean;
|
|
84943
85315
|
isTypographyUseFontStyleEnabled: boolean;
|
|
84944
85316
|
}, {
|
|
84945
|
-
isTypographyPropsKeepAliasesEnabled?: boolean | undefined;
|
|
84946
|
-
isGradientPropsKeepAliasesEnabled?: boolean | undefined;
|
|
84947
|
-
isShadowPropsKeepAliasesEnabled?: boolean | undefined;
|
|
84948
85317
|
isNonCompatibleTypeChangesEnabled?: boolean | undefined;
|
|
84949
85318
|
isTypographyUseFontStyleEnabled?: boolean | undefined;
|
|
84950
85319
|
}>>;
|
|
@@ -84998,11 +85367,7 @@ declare const FigmaImportContextWithSourcesState: z.ZodObject<z.objectUtil.exten
|
|
|
84998
85367
|
referenceId?: string | undefined;
|
|
84999
85368
|
}[]>;
|
|
85000
85369
|
sourcesWithMissingAccess: string[];
|
|
85001
|
-
shadowOpacityOptional: boolean;
|
|
85002
85370
|
featureFlagsKeepAliases: {
|
|
85003
|
-
isTypographyPropsKeepAliasesEnabled: boolean;
|
|
85004
|
-
isGradientPropsKeepAliasesEnabled: boolean;
|
|
85005
|
-
isShadowPropsKeepAliasesEnabled: boolean;
|
|
85006
85371
|
isNonCompatibleTypeChangesEnabled: boolean;
|
|
85007
85372
|
isTypographyUseFontStyleEnabled: boolean;
|
|
85008
85373
|
};
|
|
@@ -85056,11 +85421,7 @@ declare const FigmaImportContextWithSourcesState: z.ZodObject<z.objectUtil.exten
|
|
|
85056
85421
|
referenceId?: string | undefined;
|
|
85057
85422
|
}[]> | undefined;
|
|
85058
85423
|
sourcesWithMissingAccess?: string[] | undefined;
|
|
85059
|
-
shadowOpacityOptional?: boolean | undefined;
|
|
85060
85424
|
featureFlagsKeepAliases?: {
|
|
85061
|
-
isTypographyPropsKeepAliasesEnabled?: boolean | undefined;
|
|
85062
|
-
isGradientPropsKeepAliasesEnabled?: boolean | undefined;
|
|
85063
|
-
isShadowPropsKeepAliasesEnabled?: boolean | undefined;
|
|
85064
85425
|
isNonCompatibleTypeChangesEnabled?: boolean | undefined;
|
|
85065
85426
|
isTypographyUseFontStyleEnabled?: boolean | undefined;
|
|
85066
85427
|
} | undefined;
|
|
@@ -85605,23 +85966,13 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<z.objectUtil.ext
|
|
|
85605
85966
|
}>, "many">>>;
|
|
85606
85967
|
}, {
|
|
85607
85968
|
sourcesWithMissingAccess: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
85608
|
-
shadowOpacityOptional: z.ZodDefault<z.ZodBoolean>;
|
|
85609
85969
|
featureFlagsKeepAliases: z.ZodDefault<z.ZodObject<{
|
|
85610
|
-
isTypographyPropsKeepAliasesEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
85611
|
-
isGradientPropsKeepAliasesEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
85612
|
-
isShadowPropsKeepAliasesEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
85613
85970
|
isNonCompatibleTypeChangesEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
85614
85971
|
isTypographyUseFontStyleEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
85615
85972
|
}, "strip", z.ZodTypeAny, {
|
|
85616
|
-
isTypographyPropsKeepAliasesEnabled: boolean;
|
|
85617
|
-
isGradientPropsKeepAliasesEnabled: boolean;
|
|
85618
|
-
isShadowPropsKeepAliasesEnabled: boolean;
|
|
85619
85973
|
isNonCompatibleTypeChangesEnabled: boolean;
|
|
85620
85974
|
isTypographyUseFontStyleEnabled: boolean;
|
|
85621
85975
|
}, {
|
|
85622
|
-
isTypographyPropsKeepAliasesEnabled?: boolean | undefined;
|
|
85623
|
-
isGradientPropsKeepAliasesEnabled?: boolean | undefined;
|
|
85624
|
-
isShadowPropsKeepAliasesEnabled?: boolean | undefined;
|
|
85625
85976
|
isNonCompatibleTypeChangesEnabled?: boolean | undefined;
|
|
85626
85977
|
isTypographyUseFontStyleEnabled?: boolean | undefined;
|
|
85627
85978
|
}>>;
|
|
@@ -85989,11 +86340,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<z.objectUtil.ext
|
|
|
85989
86340
|
referenceId?: string | undefined;
|
|
85990
86341
|
}[]>;
|
|
85991
86342
|
sourcesWithMissingAccess: string[];
|
|
85992
|
-
shadowOpacityOptional: boolean;
|
|
85993
86343
|
featureFlagsKeepAliases: {
|
|
85994
|
-
isTypographyPropsKeepAliasesEnabled: boolean;
|
|
85995
|
-
isGradientPropsKeepAliasesEnabled: boolean;
|
|
85996
|
-
isShadowPropsKeepAliasesEnabled: boolean;
|
|
85997
86344
|
isNonCompatibleTypeChangesEnabled: boolean;
|
|
85998
86345
|
isTypographyUseFontStyleEnabled: boolean;
|
|
85999
86346
|
};
|
|
@@ -86155,11 +86502,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<z.objectUtil.ext
|
|
|
86155
86502
|
referenceId?: string | undefined;
|
|
86156
86503
|
}[]> | undefined;
|
|
86157
86504
|
sourcesWithMissingAccess?: string[] | undefined;
|
|
86158
|
-
shadowOpacityOptional?: boolean | undefined;
|
|
86159
86505
|
featureFlagsKeepAliases?: {
|
|
86160
|
-
isTypographyPropsKeepAliasesEnabled?: boolean | undefined;
|
|
86161
|
-
isGradientPropsKeepAliasesEnabled?: boolean | undefined;
|
|
86162
|
-
isShadowPropsKeepAliasesEnabled?: boolean | undefined;
|
|
86163
86506
|
isNonCompatibleTypeChangesEnabled?: boolean | undefined;
|
|
86164
86507
|
isTypographyUseFontStyleEnabled?: boolean | undefined;
|
|
86165
86508
|
} | undefined;
|
|
@@ -88715,8 +89058,6 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
88715
89058
|
}>]>>>;
|
|
88716
89059
|
variantPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
88717
89060
|
renderNodeId: z.ZodString;
|
|
88718
|
-
}>, {
|
|
88719
|
-
isAsset: z.ZodBoolean;
|
|
88720
89061
|
svg: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
88721
89062
|
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
88722
89063
|
}, {
|
|
@@ -88744,6 +89085,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
88744
89085
|
nodeId: string;
|
|
88745
89086
|
fileVersionId?: string | undefined;
|
|
88746
89087
|
}>>;
|
|
89088
|
+
}>, {
|
|
88747
89089
|
origin: z.ZodObject<z.objectUtil.extendShape<{
|
|
88748
89090
|
id: z.ZodString;
|
|
88749
89091
|
sourceId: z.ZodString;
|
|
@@ -88767,6 +89109,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
88767
89109
|
height?: number | undefined;
|
|
88768
89110
|
nodeId?: string | undefined;
|
|
88769
89111
|
}>;
|
|
89112
|
+
isAsset: z.ZodBoolean;
|
|
88770
89113
|
}>, "strip", z.ZodTypeAny, {
|
|
88771
89114
|
id: string;
|
|
88772
89115
|
origin: {
|
|
@@ -100418,6 +100761,33 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100418
100761
|
}>]>>>;
|
|
100419
100762
|
variantPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
100420
100763
|
renderNodeId: z.ZodString;
|
|
100764
|
+
svg: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
100765
|
+
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
100766
|
+
}, {
|
|
100767
|
+
type: z.ZodLiteral<"FigmaRender">;
|
|
100768
|
+
fileId: z.ZodString;
|
|
100769
|
+
fileVersionId: z.ZodOptional<z.ZodString>;
|
|
100770
|
+
nodeId: z.ZodString;
|
|
100771
|
+
originKey: z.ZodString;
|
|
100772
|
+
}>, {
|
|
100773
|
+
format: z.ZodLiteral<"Svg">;
|
|
100774
|
+
}>, "strip", z.ZodTypeAny, {
|
|
100775
|
+
type: "FigmaRender";
|
|
100776
|
+
originKey: string;
|
|
100777
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
100778
|
+
format: "Svg";
|
|
100779
|
+
fileId: string;
|
|
100780
|
+
nodeId: string;
|
|
100781
|
+
fileVersionId?: string | undefined;
|
|
100782
|
+
}, {
|
|
100783
|
+
type: "FigmaRender";
|
|
100784
|
+
originKey: string;
|
|
100785
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
100786
|
+
format: "Svg";
|
|
100787
|
+
fileId: string;
|
|
100788
|
+
nodeId: string;
|
|
100789
|
+
fileVersionId?: string | undefined;
|
|
100790
|
+
}>>;
|
|
100421
100791
|
}>, {
|
|
100422
100792
|
originMetadata: z.ZodObject<{
|
|
100423
100793
|
nodeId: z.ZodOptional<z.ZodString>;
|
|
@@ -100432,6 +100802,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100432
100802
|
height?: number | undefined;
|
|
100433
100803
|
nodeId?: string | undefined;
|
|
100434
100804
|
}>;
|
|
100805
|
+
isAsset: z.ZodOptional<z.ZodBoolean>;
|
|
100435
100806
|
}>, "strip", z.ZodTypeAny, {
|
|
100436
100807
|
id: string;
|
|
100437
100808
|
renderNodeId: string;
|
|
@@ -100469,6 +100840,15 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100469
100840
|
height?: number | undefined;
|
|
100470
100841
|
nodeId?: string | undefined;
|
|
100471
100842
|
};
|
|
100843
|
+
svg?: {
|
|
100844
|
+
type: "FigmaRender";
|
|
100845
|
+
originKey: string;
|
|
100846
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
100847
|
+
format: "Svg";
|
|
100848
|
+
fileId: string;
|
|
100849
|
+
nodeId: string;
|
|
100850
|
+
fileVersionId?: string | undefined;
|
|
100851
|
+
} | undefined;
|
|
100472
100852
|
componentPropertyDefinitions?: Record<string, {
|
|
100473
100853
|
type: "Boolean";
|
|
100474
100854
|
id: string;
|
|
@@ -100497,6 +100877,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100497
100877
|
defaultValue: string;
|
|
100498
100878
|
}> | undefined;
|
|
100499
100879
|
variantPropertyValues?: Record<string, string> | undefined;
|
|
100880
|
+
isAsset?: boolean | undefined;
|
|
100500
100881
|
parentComponentId?: string | undefined;
|
|
100501
100882
|
}, {
|
|
100502
100883
|
id: string;
|
|
@@ -100535,6 +100916,15 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100535
100916
|
height?: number | undefined;
|
|
100536
100917
|
nodeId?: string | undefined;
|
|
100537
100918
|
};
|
|
100919
|
+
svg?: {
|
|
100920
|
+
type: "FigmaRender";
|
|
100921
|
+
originKey: string;
|
|
100922
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
100923
|
+
format: "Svg";
|
|
100924
|
+
fileId: string;
|
|
100925
|
+
nodeId: string;
|
|
100926
|
+
fileVersionId?: string | undefined;
|
|
100927
|
+
} | undefined;
|
|
100538
100928
|
componentPropertyDefinitions?: Record<string, {
|
|
100539
100929
|
type: "Boolean";
|
|
100540
100930
|
id: string;
|
|
@@ -100563,6 +100953,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100563
100953
|
defaultValue: string;
|
|
100564
100954
|
}> | undefined;
|
|
100565
100955
|
variantPropertyValues?: Record<string, string> | undefined;
|
|
100956
|
+
isAsset?: boolean | undefined;
|
|
100566
100957
|
parentComponentId?: string | undefined;
|
|
100567
100958
|
}>, "many">>;
|
|
100568
100959
|
assets: z.ZodDefault<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<Omit<{
|
|
@@ -100766,8 +101157,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100766
101157
|
}>]>>>;
|
|
100767
101158
|
variantPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
100768
101159
|
renderNodeId: z.ZodString;
|
|
100769
|
-
|
|
100770
|
-
svg: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
101160
|
+
svg: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
100771
101161
|
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
100772
101162
|
}, {
|
|
100773
101163
|
type: z.ZodLiteral<"FigmaRender">;
|
|
@@ -100793,7 +101183,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100793
101183
|
fileId: string;
|
|
100794
101184
|
nodeId: string;
|
|
100795
101185
|
fileVersionId?: string | undefined;
|
|
100796
|
-
}
|
|
101186
|
+
}>>;
|
|
101187
|
+
}>, {
|
|
100797
101188
|
originMetadata: z.ZodObject<{
|
|
100798
101189
|
nodeId: z.ZodOptional<z.ZodString>;
|
|
100799
101190
|
width: z.ZodOptional<z.ZodNumber>;
|
|
@@ -100807,17 +101198,9 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100807
101198
|
height?: number | undefined;
|
|
100808
101199
|
nodeId?: string | undefined;
|
|
100809
101200
|
}>;
|
|
101201
|
+
isAsset: z.ZodOptional<z.ZodBoolean>;
|
|
100810
101202
|
}>, "strip", z.ZodTypeAny, {
|
|
100811
101203
|
id: string;
|
|
100812
|
-
svg: {
|
|
100813
|
-
type: "FigmaRender";
|
|
100814
|
-
originKey: string;
|
|
100815
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
100816
|
-
format: "Svg";
|
|
100817
|
-
fileId: string;
|
|
100818
|
-
nodeId: string;
|
|
100819
|
-
fileVersionId?: string | undefined;
|
|
100820
|
-
};
|
|
100821
101204
|
renderNodeId: string;
|
|
100822
101205
|
meta: {
|
|
100823
101206
|
name: string;
|
|
@@ -100853,6 +101236,15 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100853
101236
|
height?: number | undefined;
|
|
100854
101237
|
nodeId?: string | undefined;
|
|
100855
101238
|
};
|
|
101239
|
+
svg?: {
|
|
101240
|
+
type: "FigmaRender";
|
|
101241
|
+
originKey: string;
|
|
101242
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
101243
|
+
format: "Svg";
|
|
101244
|
+
fileId: string;
|
|
101245
|
+
nodeId: string;
|
|
101246
|
+
fileVersionId?: string | undefined;
|
|
101247
|
+
} | undefined;
|
|
100856
101248
|
componentPropertyDefinitions?: Record<string, {
|
|
100857
101249
|
type: "Boolean";
|
|
100858
101250
|
id: string;
|
|
@@ -100881,18 +101273,10 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100881
101273
|
defaultValue: string;
|
|
100882
101274
|
}> | undefined;
|
|
100883
101275
|
variantPropertyValues?: Record<string, string> | undefined;
|
|
101276
|
+
isAsset?: boolean | undefined;
|
|
100884
101277
|
parentComponentId?: string | undefined;
|
|
100885
101278
|
}, {
|
|
100886
101279
|
id: string;
|
|
100887
|
-
svg: {
|
|
100888
|
-
type: "FigmaRender";
|
|
100889
|
-
originKey: string;
|
|
100890
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
100891
|
-
format: "Svg";
|
|
100892
|
-
fileId: string;
|
|
100893
|
-
nodeId: string;
|
|
100894
|
-
fileVersionId?: string | undefined;
|
|
100895
|
-
};
|
|
100896
101280
|
renderNodeId: string;
|
|
100897
101281
|
meta: {
|
|
100898
101282
|
name: string;
|
|
@@ -100928,6 +101312,15 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100928
101312
|
height?: number | undefined;
|
|
100929
101313
|
nodeId?: string | undefined;
|
|
100930
101314
|
};
|
|
101315
|
+
svg?: {
|
|
101316
|
+
type: "FigmaRender";
|
|
101317
|
+
originKey: string;
|
|
101318
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
101319
|
+
format: "Svg";
|
|
101320
|
+
fileId: string;
|
|
101321
|
+
nodeId: string;
|
|
101322
|
+
fileVersionId?: string | undefined;
|
|
101323
|
+
} | undefined;
|
|
100931
101324
|
componentPropertyDefinitions?: Record<string, {
|
|
100932
101325
|
type: "Boolean";
|
|
100933
101326
|
id: string;
|
|
@@ -100956,6 +101349,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100956
101349
|
defaultValue: string;
|
|
100957
101350
|
}> | undefined;
|
|
100958
101351
|
variantPropertyValues?: Record<string, string> | undefined;
|
|
101352
|
+
isAsset?: boolean | undefined;
|
|
100959
101353
|
parentComponentId?: string | undefined;
|
|
100960
101354
|
}>, "many">>;
|
|
100961
101355
|
themeUpdates: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
@@ -107276,15 +107670,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
107276
107670
|
}, "strip", z.ZodTypeAny, {
|
|
107277
107671
|
assets: {
|
|
107278
107672
|
id: string;
|
|
107279
|
-
svg: {
|
|
107280
|
-
type: "FigmaRender";
|
|
107281
|
-
originKey: string;
|
|
107282
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
107283
|
-
format: "Svg";
|
|
107284
|
-
fileId: string;
|
|
107285
|
-
nodeId: string;
|
|
107286
|
-
fileVersionId?: string | undefined;
|
|
107287
|
-
};
|
|
107288
107673
|
renderNodeId: string;
|
|
107289
107674
|
meta: {
|
|
107290
107675
|
name: string;
|
|
@@ -107320,6 +107705,15 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
107320
107705
|
height?: number | undefined;
|
|
107321
107706
|
nodeId?: string | undefined;
|
|
107322
107707
|
};
|
|
107708
|
+
svg?: {
|
|
107709
|
+
type: "FigmaRender";
|
|
107710
|
+
originKey: string;
|
|
107711
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
107712
|
+
format: "Svg";
|
|
107713
|
+
fileId: string;
|
|
107714
|
+
nodeId: string;
|
|
107715
|
+
fileVersionId?: string | undefined;
|
|
107716
|
+
} | undefined;
|
|
107323
107717
|
componentPropertyDefinitions?: Record<string, {
|
|
107324
107718
|
type: "Boolean";
|
|
107325
107719
|
id: string;
|
|
@@ -107348,6 +107742,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
107348
107742
|
defaultValue: string;
|
|
107349
107743
|
}> | undefined;
|
|
107350
107744
|
variantPropertyValues?: Record<string, string> | undefined;
|
|
107745
|
+
isAsset?: boolean | undefined;
|
|
107351
107746
|
parentComponentId?: string | undefined;
|
|
107352
107747
|
}[];
|
|
107353
107748
|
source: {
|
|
@@ -107773,6 +108168,15 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
107773
108168
|
height?: number | undefined;
|
|
107774
108169
|
nodeId?: string | undefined;
|
|
107775
108170
|
};
|
|
108171
|
+
svg?: {
|
|
108172
|
+
type: "FigmaRender";
|
|
108173
|
+
originKey: string;
|
|
108174
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108175
|
+
format: "Svg";
|
|
108176
|
+
fileId: string;
|
|
108177
|
+
nodeId: string;
|
|
108178
|
+
fileVersionId?: string | undefined;
|
|
108179
|
+
} | undefined;
|
|
107776
108180
|
componentPropertyDefinitions?: Record<string, {
|
|
107777
108181
|
type: "Boolean";
|
|
107778
108182
|
id: string;
|
|
@@ -107801,6 +108205,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
107801
108205
|
defaultValue: string;
|
|
107802
108206
|
}> | undefined;
|
|
107803
108207
|
variantPropertyValues?: Record<string, string> | undefined;
|
|
108208
|
+
isAsset?: boolean | undefined;
|
|
107804
108209
|
parentComponentId?: string | undefined;
|
|
107805
108210
|
}[];
|
|
107806
108211
|
tokens: (({
|
|
@@ -108595,15 +109000,6 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108595
109000
|
}[];
|
|
108596
109001
|
assets?: {
|
|
108597
109002
|
id: string;
|
|
108598
|
-
svg: {
|
|
108599
|
-
type: "FigmaRender";
|
|
108600
|
-
originKey: string;
|
|
108601
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
108602
|
-
format: "Svg";
|
|
108603
|
-
fileId: string;
|
|
108604
|
-
nodeId: string;
|
|
108605
|
-
fileVersionId?: string | undefined;
|
|
108606
|
-
};
|
|
108607
109003
|
renderNodeId: string;
|
|
108608
109004
|
meta: {
|
|
108609
109005
|
name: string;
|
|
@@ -108639,6 +109035,15 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108639
109035
|
height?: number | undefined;
|
|
108640
109036
|
nodeId?: string | undefined;
|
|
108641
109037
|
};
|
|
109038
|
+
svg?: {
|
|
109039
|
+
type: "FigmaRender";
|
|
109040
|
+
originKey: string;
|
|
109041
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109042
|
+
format: "Svg";
|
|
109043
|
+
fileId: string;
|
|
109044
|
+
nodeId: string;
|
|
109045
|
+
fileVersionId?: string | undefined;
|
|
109046
|
+
} | undefined;
|
|
108642
109047
|
componentPropertyDefinitions?: Record<string, {
|
|
108643
109048
|
type: "Boolean";
|
|
108644
109049
|
id: string;
|
|
@@ -108667,6 +109072,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108667
109072
|
defaultValue: string;
|
|
108668
109073
|
}> | undefined;
|
|
108669
109074
|
variantPropertyValues?: Record<string, string> | undefined;
|
|
109075
|
+
isAsset?: boolean | undefined;
|
|
108670
109076
|
parentComponentId?: string | undefined;
|
|
108671
109077
|
}[] | undefined;
|
|
108672
109078
|
themes?: {
|
|
@@ -109087,6 +109493,15 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
109087
109493
|
height?: number | undefined;
|
|
109088
109494
|
nodeId?: string | undefined;
|
|
109089
109495
|
};
|
|
109496
|
+
svg?: {
|
|
109497
|
+
type: "FigmaRender";
|
|
109498
|
+
originKey: string;
|
|
109499
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
109500
|
+
format: "Svg";
|
|
109501
|
+
fileId: string;
|
|
109502
|
+
nodeId: string;
|
|
109503
|
+
fileVersionId?: string | undefined;
|
|
109504
|
+
} | undefined;
|
|
109090
109505
|
componentPropertyDefinitions?: Record<string, {
|
|
109091
109506
|
type: "Boolean";
|
|
109092
109507
|
id: string;
|
|
@@ -109115,6 +109530,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
109115
109530
|
defaultValue: string;
|
|
109116
109531
|
}> | undefined;
|
|
109117
109532
|
variantPropertyValues?: Record<string, string> | undefined;
|
|
109533
|
+
isAsset?: boolean | undefined;
|
|
109118
109534
|
parentComponentId?: string | undefined;
|
|
109119
109535
|
}[] | undefined;
|
|
109120
109536
|
tokens?: (({
|
|
@@ -110104,8 +110520,6 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
110104
110520
|
}>]>>>;
|
|
110105
110521
|
variantPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
110106
110522
|
renderNodeId: z.ZodString;
|
|
110107
|
-
}>, {
|
|
110108
|
-
isAsset: z.ZodBoolean;
|
|
110109
110523
|
svg: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
110110
110524
|
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
110111
110525
|
}, {
|
|
@@ -110133,6 +110547,7 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
110133
110547
|
nodeId: string;
|
|
110134
110548
|
fileVersionId?: string | undefined;
|
|
110135
110549
|
}>>;
|
|
110550
|
+
}>, {
|
|
110136
110551
|
origin: z.ZodObject<z.objectUtil.extendShape<{
|
|
110137
110552
|
id: z.ZodString;
|
|
110138
110553
|
sourceId: z.ZodString;
|
|
@@ -110156,6 +110571,7 @@ declare const FigmaComponentImportModel: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
110156
110571
|
height?: number | undefined;
|
|
110157
110572
|
nodeId?: string | undefined;
|
|
110158
110573
|
}>;
|
|
110574
|
+
isAsset: z.ZodBoolean;
|
|
110159
110575
|
}>, "strip", z.ZodTypeAny, {
|
|
110160
110576
|
id: string;
|
|
110161
110577
|
origin: {
|
|
@@ -110519,6 +110935,33 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
|
|
|
110519
110935
|
}>]>>>;
|
|
110520
110936
|
variantPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
110521
110937
|
renderNodeId: z.ZodString;
|
|
110938
|
+
svg: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
110939
|
+
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
110940
|
+
}, {
|
|
110941
|
+
type: z.ZodLiteral<"FigmaRender">;
|
|
110942
|
+
fileId: z.ZodString;
|
|
110943
|
+
fileVersionId: z.ZodOptional<z.ZodString>;
|
|
110944
|
+
nodeId: z.ZodString;
|
|
110945
|
+
originKey: z.ZodString;
|
|
110946
|
+
}>, {
|
|
110947
|
+
format: z.ZodLiteral<"Svg">;
|
|
110948
|
+
}>, "strip", z.ZodTypeAny, {
|
|
110949
|
+
type: "FigmaRender";
|
|
110950
|
+
originKey: string;
|
|
110951
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110952
|
+
format: "Svg";
|
|
110953
|
+
fileId: string;
|
|
110954
|
+
nodeId: string;
|
|
110955
|
+
fileVersionId?: string | undefined;
|
|
110956
|
+
}, {
|
|
110957
|
+
type: "FigmaRender";
|
|
110958
|
+
originKey: string;
|
|
110959
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110960
|
+
format: "Svg";
|
|
110961
|
+
fileId: string;
|
|
110962
|
+
nodeId: string;
|
|
110963
|
+
fileVersionId?: string | undefined;
|
|
110964
|
+
}>>;
|
|
110522
110965
|
}>, {
|
|
110523
110966
|
originMetadata: z.ZodObject<{
|
|
110524
110967
|
nodeId: z.ZodOptional<z.ZodString>;
|
|
@@ -110533,6 +110976,7 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
|
|
|
110533
110976
|
height?: number | undefined;
|
|
110534
110977
|
nodeId?: string | undefined;
|
|
110535
110978
|
}>;
|
|
110979
|
+
isAsset: z.ZodOptional<z.ZodBoolean>;
|
|
110536
110980
|
}>, "strip", z.ZodTypeAny, {
|
|
110537
110981
|
id: string;
|
|
110538
110982
|
renderNodeId: string;
|
|
@@ -110570,6 +111014,15 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
|
|
|
110570
111014
|
height?: number | undefined;
|
|
110571
111015
|
nodeId?: string | undefined;
|
|
110572
111016
|
};
|
|
111017
|
+
svg?: {
|
|
111018
|
+
type: "FigmaRender";
|
|
111019
|
+
originKey: string;
|
|
111020
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
111021
|
+
format: "Svg";
|
|
111022
|
+
fileId: string;
|
|
111023
|
+
nodeId: string;
|
|
111024
|
+
fileVersionId?: string | undefined;
|
|
111025
|
+
} | undefined;
|
|
110573
111026
|
componentPropertyDefinitions?: Record<string, {
|
|
110574
111027
|
type: "Boolean";
|
|
110575
111028
|
id: string;
|
|
@@ -110598,6 +111051,7 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
|
|
|
110598
111051
|
defaultValue: string;
|
|
110599
111052
|
}> | undefined;
|
|
110600
111053
|
variantPropertyValues?: Record<string, string> | undefined;
|
|
111054
|
+
isAsset?: boolean | undefined;
|
|
110601
111055
|
parentComponentId?: string | undefined;
|
|
110602
111056
|
}, {
|
|
110603
111057
|
id: string;
|
|
@@ -110636,6 +111090,15 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
|
|
|
110636
111090
|
height?: number | undefined;
|
|
110637
111091
|
nodeId?: string | undefined;
|
|
110638
111092
|
};
|
|
111093
|
+
svg?: {
|
|
111094
|
+
type: "FigmaRender";
|
|
111095
|
+
originKey: string;
|
|
111096
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
111097
|
+
format: "Svg";
|
|
111098
|
+
fileId: string;
|
|
111099
|
+
nodeId: string;
|
|
111100
|
+
fileVersionId?: string | undefined;
|
|
111101
|
+
} | undefined;
|
|
110639
111102
|
componentPropertyDefinitions?: Record<string, {
|
|
110640
111103
|
type: "Boolean";
|
|
110641
111104
|
id: string;
|
|
@@ -110664,6 +111127,7 @@ declare const FigmaComponentImportModelInput: z.ZodObject<z.objectUtil.extendSha
|
|
|
110664
111127
|
defaultValue: string;
|
|
110665
111128
|
}> | undefined;
|
|
110666
111129
|
variantPropertyValues?: Record<string, string> | undefined;
|
|
111130
|
+
isAsset?: boolean | undefined;
|
|
110667
111131
|
parentComponentId?: string | undefined;
|
|
110668
111132
|
}>;
|
|
110669
111133
|
type FigmaComponentImportModelInput = z.infer<typeof FigmaComponentImportModelInput>;
|
|
@@ -110868,8 +111332,7 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
110868
111332
|
}>]>>>;
|
|
110869
111333
|
variantPropertyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
110870
111334
|
renderNodeId: z.ZodString;
|
|
110871
|
-
|
|
110872
|
-
svg: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
111335
|
+
svg: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
110873
111336
|
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
110874
111337
|
}, {
|
|
110875
111338
|
type: z.ZodLiteral<"FigmaRender">;
|
|
@@ -110895,7 +111358,8 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
110895
111358
|
fileId: string;
|
|
110896
111359
|
nodeId: string;
|
|
110897
111360
|
fileVersionId?: string | undefined;
|
|
110898
|
-
}
|
|
111361
|
+
}>>;
|
|
111362
|
+
}>, {
|
|
110899
111363
|
originMetadata: z.ZodObject<{
|
|
110900
111364
|
nodeId: z.ZodOptional<z.ZodString>;
|
|
110901
111365
|
width: z.ZodOptional<z.ZodNumber>;
|
|
@@ -110909,17 +111373,9 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
110909
111373
|
height?: number | undefined;
|
|
110910
111374
|
nodeId?: string | undefined;
|
|
110911
111375
|
}>;
|
|
111376
|
+
isAsset: z.ZodOptional<z.ZodBoolean>;
|
|
110912
111377
|
}>, "strip", z.ZodTypeAny, {
|
|
110913
111378
|
id: string;
|
|
110914
|
-
svg: {
|
|
110915
|
-
type: "FigmaRender";
|
|
110916
|
-
originKey: string;
|
|
110917
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110918
|
-
format: "Svg";
|
|
110919
|
-
fileId: string;
|
|
110920
|
-
nodeId: string;
|
|
110921
|
-
fileVersionId?: string | undefined;
|
|
110922
|
-
};
|
|
110923
111379
|
renderNodeId: string;
|
|
110924
111380
|
meta: {
|
|
110925
111381
|
name: string;
|
|
@@ -110955,6 +111411,15 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
110955
111411
|
height?: number | undefined;
|
|
110956
111412
|
nodeId?: string | undefined;
|
|
110957
111413
|
};
|
|
111414
|
+
svg?: {
|
|
111415
|
+
type: "FigmaRender";
|
|
111416
|
+
originKey: string;
|
|
111417
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
111418
|
+
format: "Svg";
|
|
111419
|
+
fileId: string;
|
|
111420
|
+
nodeId: string;
|
|
111421
|
+
fileVersionId?: string | undefined;
|
|
111422
|
+
} | undefined;
|
|
110958
111423
|
componentPropertyDefinitions?: Record<string, {
|
|
110959
111424
|
type: "Boolean";
|
|
110960
111425
|
id: string;
|
|
@@ -110983,18 +111448,10 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
110983
111448
|
defaultValue: string;
|
|
110984
111449
|
}> | undefined;
|
|
110985
111450
|
variantPropertyValues?: Record<string, string> | undefined;
|
|
111451
|
+
isAsset?: boolean | undefined;
|
|
110986
111452
|
parentComponentId?: string | undefined;
|
|
110987
111453
|
}, {
|
|
110988
111454
|
id: string;
|
|
110989
|
-
svg: {
|
|
110990
|
-
type: "FigmaRender";
|
|
110991
|
-
originKey: string;
|
|
110992
|
-
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
110993
|
-
format: "Svg";
|
|
110994
|
-
fileId: string;
|
|
110995
|
-
nodeId: string;
|
|
110996
|
-
fileVersionId?: string | undefined;
|
|
110997
|
-
};
|
|
110998
111455
|
renderNodeId: string;
|
|
110999
111456
|
meta: {
|
|
111000
111457
|
name: string;
|
|
@@ -111030,6 +111487,15 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
111030
111487
|
height?: number | undefined;
|
|
111031
111488
|
nodeId?: string | undefined;
|
|
111032
111489
|
};
|
|
111490
|
+
svg?: {
|
|
111491
|
+
type: "FigmaRender";
|
|
111492
|
+
originKey: string;
|
|
111493
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
111494
|
+
format: "Svg";
|
|
111495
|
+
fileId: string;
|
|
111496
|
+
nodeId: string;
|
|
111497
|
+
fileVersionId?: string | undefined;
|
|
111498
|
+
} | undefined;
|
|
111033
111499
|
componentPropertyDefinitions?: Record<string, {
|
|
111034
111500
|
type: "Boolean";
|
|
111035
111501
|
id: string;
|
|
@@ -111058,6 +111524,7 @@ declare const AssetImportModelInput: z.ZodObject<z.objectUtil.extendShape<z.obje
|
|
|
111058
111524
|
defaultValue: string;
|
|
111059
111525
|
}> | undefined;
|
|
111060
111526
|
variantPropertyValues?: Record<string, string> | undefined;
|
|
111527
|
+
isAsset?: boolean | undefined;
|
|
111061
111528
|
parentComponentId?: string | undefined;
|
|
111062
111529
|
}>;
|
|
111063
111530
|
type AssetImportModelInput = z.infer<typeof AssetImportModelInput>;
|
|
@@ -143524,6 +143991,112 @@ type DesignElementReference = {
|
|
|
143524
143991
|
};
|
|
143525
143992
|
type CreateDesignElementReference = DbCreateInputOmit<DesignElementReference>;
|
|
143526
143993
|
|
|
143994
|
+
declare const StorybookEntry: z.ZodObject<{
|
|
143995
|
+
id: z.ZodString;
|
|
143996
|
+
storyId: z.ZodString;
|
|
143997
|
+
designSystemId: z.ZodString;
|
|
143998
|
+
sourceId: z.ZodString;
|
|
143999
|
+
aliases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
144000
|
+
url: z.ZodString;
|
|
144001
|
+
isDeleted: z.ZodOptional<z.ZodBoolean>;
|
|
144002
|
+
origin: z.ZodObject<{
|
|
144003
|
+
id: z.ZodString;
|
|
144004
|
+
type: z.ZodEnum<["story", "docs"]>;
|
|
144005
|
+
name: z.ZodString;
|
|
144006
|
+
title: z.ZodString;
|
|
144007
|
+
}, "strip", z.ZodTypeAny, {
|
|
144008
|
+
type: "docs" | "story";
|
|
144009
|
+
id: string;
|
|
144010
|
+
name: string;
|
|
144011
|
+
title: string;
|
|
144012
|
+
}, {
|
|
144013
|
+
type: "docs" | "story";
|
|
144014
|
+
id: string;
|
|
144015
|
+
name: string;
|
|
144016
|
+
title: string;
|
|
144017
|
+
}>;
|
|
144018
|
+
createdAt: z.ZodDate;
|
|
144019
|
+
updatedAt: z.ZodDate;
|
|
144020
|
+
}, "strip", z.ZodTypeAny, {
|
|
144021
|
+
id: string;
|
|
144022
|
+
url: string;
|
|
144023
|
+
createdAt: Date;
|
|
144024
|
+
updatedAt: Date;
|
|
144025
|
+
designSystemId: string;
|
|
144026
|
+
origin: {
|
|
144027
|
+
type: "docs" | "story";
|
|
144028
|
+
id: string;
|
|
144029
|
+
name: string;
|
|
144030
|
+
title: string;
|
|
144031
|
+
};
|
|
144032
|
+
sourceId: string;
|
|
144033
|
+
storyId: string;
|
|
144034
|
+
aliases?: string[] | undefined;
|
|
144035
|
+
isDeleted?: boolean | undefined;
|
|
144036
|
+
}, {
|
|
144037
|
+
id: string;
|
|
144038
|
+
url: string;
|
|
144039
|
+
createdAt: Date;
|
|
144040
|
+
updatedAt: Date;
|
|
144041
|
+
designSystemId: string;
|
|
144042
|
+
origin: {
|
|
144043
|
+
type: "docs" | "story";
|
|
144044
|
+
id: string;
|
|
144045
|
+
name: string;
|
|
144046
|
+
title: string;
|
|
144047
|
+
};
|
|
144048
|
+
sourceId: string;
|
|
144049
|
+
storyId: string;
|
|
144050
|
+
aliases?: string[] | undefined;
|
|
144051
|
+
isDeleted?: boolean | undefined;
|
|
144052
|
+
}>;
|
|
144053
|
+
type StorybookEntry = z.infer<typeof StorybookEntry>;
|
|
144054
|
+
declare const StorybookEntryOrigin: z.ZodObject<{
|
|
144055
|
+
id: z.ZodString;
|
|
144056
|
+
type: z.ZodEnum<["story", "docs"]>;
|
|
144057
|
+
name: z.ZodString;
|
|
144058
|
+
title: z.ZodString;
|
|
144059
|
+
}, "strip", z.ZodTypeAny, {
|
|
144060
|
+
type: "docs" | "story";
|
|
144061
|
+
id: string;
|
|
144062
|
+
name: string;
|
|
144063
|
+
title: string;
|
|
144064
|
+
}, {
|
|
144065
|
+
type: "docs" | "story";
|
|
144066
|
+
id: string;
|
|
144067
|
+
name: string;
|
|
144068
|
+
title: string;
|
|
144069
|
+
}>;
|
|
144070
|
+
type StorybookEntryOrigin = z.infer<typeof StorybookEntryOrigin>;
|
|
144071
|
+
type CreateStorybookEntry = OmitStrict<DbCreateInputOmit<StorybookEntry>, "storyId">;
|
|
144072
|
+
type UpdateStorybookEntry = OmitStrict<DbUpdate<StorybookEntry>, "sourceId" | "designSystemId" | "storyId" | "id">;
|
|
144073
|
+
|
|
144074
|
+
declare const StorybookPayload: z.ZodObject<{
|
|
144075
|
+
id: z.ZodString;
|
|
144076
|
+
designSystemId: z.ZodString;
|
|
144077
|
+
sourceId: z.ZodString;
|
|
144078
|
+
payload: z.ZodAny;
|
|
144079
|
+
createdAt: z.ZodDate;
|
|
144080
|
+
updatedAt: z.ZodDate;
|
|
144081
|
+
}, "strip", z.ZodTypeAny, {
|
|
144082
|
+
id: string;
|
|
144083
|
+
createdAt: Date;
|
|
144084
|
+
updatedAt: Date;
|
|
144085
|
+
designSystemId: string;
|
|
144086
|
+
sourceId: string;
|
|
144087
|
+
payload?: any;
|
|
144088
|
+
}, {
|
|
144089
|
+
id: string;
|
|
144090
|
+
createdAt: Date;
|
|
144091
|
+
updatedAt: Date;
|
|
144092
|
+
designSystemId: string;
|
|
144093
|
+
sourceId: string;
|
|
144094
|
+
payload?: any;
|
|
144095
|
+
}>;
|
|
144096
|
+
type StorybookPayload = z.infer<typeof StorybookPayload>;
|
|
144097
|
+
type CreateStorybookPayload = DbCreateInputOmit<StorybookPayload>;
|
|
144098
|
+
type UpdateStorybookPayload = OmitStrict<DbUpdate<StorybookPayload>, "designSystemId" | "sourceId" | "id">;
|
|
144099
|
+
|
|
143527
144100
|
declare const DesignSystemVersion: z.ZodObject<{
|
|
143528
144101
|
id: z.ZodString;
|
|
143529
144102
|
version: z.ZodString;
|
|
@@ -155436,24 +156009,24 @@ declare const PulsarContributionConfigurationProperty: z.ZodObject<z.objectUtil.
|
|
|
155436
156009
|
}>;
|
|
155437
156010
|
type PulsarContributionConfigurationProperty = z.infer<typeof PulsarContributionConfigurationProperty>;
|
|
155438
156011
|
|
|
155439
|
-
declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "
|
|
156012
|
+
declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle"]>;
|
|
155440
156013
|
type FlaggedFeature = z.infer<typeof FlaggedFeature>;
|
|
155441
|
-
declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "
|
|
156014
|
+
declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle"]>, z.ZodBoolean>;
|
|
155442
156015
|
type FeatureFlagMap = z.infer<typeof FeatureFlagMap>;
|
|
155443
156016
|
declare const FeatureFlag: z.ZodObject<{
|
|
155444
156017
|
id: z.ZodString;
|
|
155445
|
-
feature: z.ZodEnum<["FigmaImporterV2", "
|
|
156018
|
+
feature: z.ZodEnum<["FigmaImporterV2", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases", "GradientPropsKeepAliases", "ShadowPropsKeepAliases", "NonCompatibleTypeChanges", "TypographyUseFontStyle"]>;
|
|
155446
156019
|
createdAt: z.ZodDate;
|
|
155447
156020
|
enabled: z.ZodBoolean;
|
|
155448
156021
|
designSystemId: z.ZodOptional<z.ZodString>;
|
|
155449
156022
|
}, "strip", z.ZodTypeAny, {
|
|
155450
|
-
feature: "FigmaImporterV2" | "
|
|
156023
|
+
feature: "FigmaImporterV2" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases" | "GradientPropsKeepAliases" | "ShadowPropsKeepAliases" | "NonCompatibleTypeChanges" | "TypographyUseFontStyle";
|
|
155451
156024
|
id: string;
|
|
155452
156025
|
createdAt: Date;
|
|
155453
156026
|
enabled: boolean;
|
|
155454
156027
|
designSystemId?: string | undefined;
|
|
155455
156028
|
}, {
|
|
155456
|
-
feature: "FigmaImporterV2" | "
|
|
156029
|
+
feature: "FigmaImporterV2" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases" | "GradientPropsKeepAliases" | "ShadowPropsKeepAliases" | "NonCompatibleTypeChanges" | "TypographyUseFontStyle";
|
|
155457
156030
|
id: string;
|
|
155458
156031
|
createdAt: Date;
|
|
155459
156032
|
enabled: boolean;
|
|
@@ -184264,4 +184837,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
184264
184837
|
token: PersonalAccessToken;
|
|
184265
184838
|
};
|
|
184266
184839
|
|
|
184267
|
-
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, CodeComponent, type CodeComponentCreate, CodeComponentProperty, CodeComponentPropertyControl, CodeComponentPropertyControlType, type CodeComponentUpdate, type CodeComponentUpsert, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, 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 CreateFigmaNodeStructureV2, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, 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, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, 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, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, 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, ListExporterQuery, 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, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, 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, PageBlockFigmaComponentBlockConfig, 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, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, 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, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, 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 UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, 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 UpdateFigmaNodeStructureV2, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|
|
184840
|
+
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, CodeComponent, type CodeComponentCreate, CodeComponentProperty, CodeComponentPropertyControl, CodeComponentPropertyControlType, type CodeComponentUpdate, type CodeComponentUpsert, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, 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 CreateFigmaNodeStructureV2, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, 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, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, 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, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, 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, ListExporterQuery, 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, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, 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, PageBlockFigmaComponentBlockConfig, 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, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, 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, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, 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 UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, 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 UpdateFigmaNodeStructureV2, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|