@supernova-studio/model 1.4.8 → 1.4.10
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 +180 -1
- package/dist/index.d.ts +180 -1
- package/dist/index.js +38 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1989 -1952
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3813,6 +3813,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3813
3813
|
workspaceSlug: z.ZodString;
|
|
3814
3814
|
projectKey: z.ZodString;
|
|
3815
3815
|
repoSlug: z.ZodString;
|
|
3816
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
3816
3817
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
3817
3818
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
3818
3819
|
}, {
|
|
@@ -3829,6 +3830,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3829
3830
|
workspaceSlug: string;
|
|
3830
3831
|
projectKey: string;
|
|
3831
3832
|
repoSlug: string;
|
|
3833
|
+
url?: string | undefined;
|
|
3832
3834
|
userId?: number | undefined;
|
|
3833
3835
|
relativePath?: string | undefined;
|
|
3834
3836
|
purgeDirectory?: boolean | undefined;
|
|
@@ -3844,6 +3846,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3844
3846
|
workspaceSlug: string;
|
|
3845
3847
|
projectKey: string;
|
|
3846
3848
|
repoSlug: string;
|
|
3849
|
+
url?: string | null | undefined;
|
|
3847
3850
|
userId?: number | null | undefined;
|
|
3848
3851
|
relativePath?: string | null | undefined;
|
|
3849
3852
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -3938,6 +3941,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3938
3941
|
workspaceSlug: string;
|
|
3939
3942
|
projectKey: string;
|
|
3940
3943
|
repoSlug: string;
|
|
3944
|
+
url?: string | undefined;
|
|
3941
3945
|
userId?: number | undefined;
|
|
3942
3946
|
relativePath?: string | undefined;
|
|
3943
3947
|
purgeDirectory?: boolean | undefined;
|
|
@@ -4022,6 +4026,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4022
4026
|
workspaceSlug: string;
|
|
4023
4027
|
projectKey: string;
|
|
4024
4028
|
repoSlug: string;
|
|
4029
|
+
url?: string | null | undefined;
|
|
4025
4030
|
userId?: number | null | undefined;
|
|
4026
4031
|
relativePath?: string | null | undefined;
|
|
4027
4032
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -4331,6 +4336,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4331
4336
|
workspaceSlug: string;
|
|
4332
4337
|
projectKey: string;
|
|
4333
4338
|
repoSlug: string;
|
|
4339
|
+
url?: string | undefined;
|
|
4334
4340
|
userId?: number | undefined;
|
|
4335
4341
|
relativePath?: string | undefined;
|
|
4336
4342
|
purgeDirectory?: boolean | undefined;
|
|
@@ -4630,6 +4636,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4630
4636
|
workspaceSlug: string;
|
|
4631
4637
|
projectKey: string;
|
|
4632
4638
|
repoSlug: string;
|
|
4639
|
+
url?: string | null | undefined;
|
|
4633
4640
|
userId?: number | null | undefined;
|
|
4634
4641
|
relativePath?: string | null | undefined;
|
|
4635
4642
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -19468,6 +19475,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
19468
19475
|
workspaceSlug: z.ZodString;
|
|
19469
19476
|
projectKey: z.ZodString;
|
|
19470
19477
|
repoSlug: z.ZodString;
|
|
19478
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
19471
19479
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
19472
19480
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
19473
19481
|
}, {
|
|
@@ -19484,6 +19492,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
19484
19492
|
workspaceSlug: string;
|
|
19485
19493
|
projectKey: string;
|
|
19486
19494
|
repoSlug: string;
|
|
19495
|
+
url?: string | undefined;
|
|
19487
19496
|
userId?: number | undefined;
|
|
19488
19497
|
relativePath?: string | undefined;
|
|
19489
19498
|
purgeDirectory?: boolean | undefined;
|
|
@@ -19499,6 +19508,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
19499
19508
|
workspaceSlug: string;
|
|
19500
19509
|
projectKey: string;
|
|
19501
19510
|
repoSlug: string;
|
|
19511
|
+
url?: string | null | undefined;
|
|
19502
19512
|
userId?: number | null | undefined;
|
|
19503
19513
|
relativePath?: string | null | undefined;
|
|
19504
19514
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -19593,6 +19603,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
19593
19603
|
workspaceSlug: string;
|
|
19594
19604
|
projectKey: string;
|
|
19595
19605
|
repoSlug: string;
|
|
19606
|
+
url?: string | undefined;
|
|
19596
19607
|
userId?: number | undefined;
|
|
19597
19608
|
relativePath?: string | undefined;
|
|
19598
19609
|
purgeDirectory?: boolean | undefined;
|
|
@@ -19677,6 +19688,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
19677
19688
|
workspaceSlug: string;
|
|
19678
19689
|
projectKey: string;
|
|
19679
19690
|
repoSlug: string;
|
|
19691
|
+
url?: string | null | undefined;
|
|
19680
19692
|
userId?: number | null | undefined;
|
|
19681
19693
|
relativePath?: string | null | undefined;
|
|
19682
19694
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -19986,6 +19998,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
19986
19998
|
workspaceSlug: string;
|
|
19987
19999
|
projectKey: string;
|
|
19988
20000
|
repoSlug: string;
|
|
20001
|
+
url?: string | undefined;
|
|
19989
20002
|
userId?: number | undefined;
|
|
19990
20003
|
relativePath?: string | undefined;
|
|
19991
20004
|
purgeDirectory?: boolean | undefined;
|
|
@@ -20285,6 +20298,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
20285
20298
|
workspaceSlug: string;
|
|
20286
20299
|
projectKey: string;
|
|
20287
20300
|
repoSlug: string;
|
|
20301
|
+
url?: string | null | undefined;
|
|
20288
20302
|
userId?: number | null | undefined;
|
|
20289
20303
|
relativePath?: string | null | undefined;
|
|
20290
20304
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -21424,6 +21438,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
21424
21438
|
workspaceSlug: string;
|
|
21425
21439
|
projectKey: string;
|
|
21426
21440
|
repoSlug: string;
|
|
21441
|
+
url?: string | undefined;
|
|
21427
21442
|
userId?: number | undefined;
|
|
21428
21443
|
relativePath?: string | undefined;
|
|
21429
21444
|
purgeDirectory?: boolean | undefined;
|
|
@@ -22405,6 +22420,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
22405
22420
|
workspaceSlug: string;
|
|
22406
22421
|
projectKey: string;
|
|
22407
22422
|
repoSlug: string;
|
|
22423
|
+
url?: string | null | undefined;
|
|
22408
22424
|
userId?: number | null | undefined;
|
|
22409
22425
|
relativePath?: string | null | undefined;
|
|
22410
22426
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -23381,6 +23397,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
23381
23397
|
workspaceSlug: string;
|
|
23382
23398
|
projectKey: string;
|
|
23383
23399
|
repoSlug: string;
|
|
23400
|
+
url?: string | undefined;
|
|
23384
23401
|
userId?: number | undefined;
|
|
23385
23402
|
relativePath?: string | undefined;
|
|
23386
23403
|
purgeDirectory?: boolean | undefined;
|
|
@@ -24438,6 +24455,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
24438
24455
|
workspaceSlug: string;
|
|
24439
24456
|
projectKey: string;
|
|
24440
24457
|
repoSlug: string;
|
|
24458
|
+
url?: string | null | undefined;
|
|
24441
24459
|
userId?: number | null | undefined;
|
|
24442
24460
|
relativePath?: string | null | undefined;
|
|
24443
24461
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -31741,6 +31759,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
31741
31759
|
workspaceSlug: z.ZodString;
|
|
31742
31760
|
projectKey: z.ZodString;
|
|
31743
31761
|
repoSlug: z.ZodString;
|
|
31762
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
31744
31763
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
31745
31764
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
31746
31765
|
}, {
|
|
@@ -31757,6 +31776,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
31757
31776
|
workspaceSlug: string;
|
|
31758
31777
|
projectKey: string;
|
|
31759
31778
|
repoSlug: string;
|
|
31779
|
+
url?: string | undefined;
|
|
31760
31780
|
userId?: number | undefined;
|
|
31761
31781
|
relativePath?: string | undefined;
|
|
31762
31782
|
purgeDirectory?: boolean | undefined;
|
|
@@ -31772,6 +31792,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
31772
31792
|
workspaceSlug: string;
|
|
31773
31793
|
projectKey: string;
|
|
31774
31794
|
repoSlug: string;
|
|
31795
|
+
url?: string | null | undefined;
|
|
31775
31796
|
userId?: number | null | undefined;
|
|
31776
31797
|
relativePath?: string | null | undefined;
|
|
31777
31798
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -31866,6 +31887,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
31866
31887
|
workspaceSlug: string;
|
|
31867
31888
|
projectKey: string;
|
|
31868
31889
|
repoSlug: string;
|
|
31890
|
+
url?: string | undefined;
|
|
31869
31891
|
userId?: number | undefined;
|
|
31870
31892
|
relativePath?: string | undefined;
|
|
31871
31893
|
purgeDirectory?: boolean | undefined;
|
|
@@ -31950,6 +31972,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
31950
31972
|
workspaceSlug: string;
|
|
31951
31973
|
projectKey: string;
|
|
31952
31974
|
repoSlug: string;
|
|
31975
|
+
url?: string | null | undefined;
|
|
31953
31976
|
userId?: number | null | undefined;
|
|
31954
31977
|
relativePath?: string | null | undefined;
|
|
31955
31978
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -32259,6 +32282,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32259
32282
|
workspaceSlug: string;
|
|
32260
32283
|
projectKey: string;
|
|
32261
32284
|
repoSlug: string;
|
|
32285
|
+
url?: string | undefined;
|
|
32262
32286
|
userId?: number | undefined;
|
|
32263
32287
|
relativePath?: string | undefined;
|
|
32264
32288
|
purgeDirectory?: boolean | undefined;
|
|
@@ -32558,6 +32582,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32558
32582
|
workspaceSlug: string;
|
|
32559
32583
|
projectKey: string;
|
|
32560
32584
|
repoSlug: string;
|
|
32585
|
+
url?: string | null | undefined;
|
|
32561
32586
|
userId?: number | null | undefined;
|
|
32562
32587
|
relativePath?: string | null | undefined;
|
|
32563
32588
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -33697,6 +33722,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
33697
33722
|
workspaceSlug: string;
|
|
33698
33723
|
projectKey: string;
|
|
33699
33724
|
repoSlug: string;
|
|
33725
|
+
url?: string | undefined;
|
|
33700
33726
|
userId?: number | undefined;
|
|
33701
33727
|
relativePath?: string | undefined;
|
|
33702
33728
|
purgeDirectory?: boolean | undefined;
|
|
@@ -34678,6 +34704,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
34678
34704
|
workspaceSlug: string;
|
|
34679
34705
|
projectKey: string;
|
|
34680
34706
|
repoSlug: string;
|
|
34707
|
+
url?: string | null | undefined;
|
|
34681
34708
|
userId?: number | null | undefined;
|
|
34682
34709
|
relativePath?: string | null | undefined;
|
|
34683
34710
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -35873,6 +35900,135 @@ type ImportedAsset = OmitStrict<Asset, "originKey"> & {
|
|
|
35873
35900
|
};
|
|
35874
35901
|
declare function isImportedAsset(asset: Asset): asset is ImportedAsset;
|
|
35875
35902
|
|
|
35903
|
+
declare const CodeComponentPropertyControlType: z.ZodEnum<["Boolean", "Function", "Number", "Object", "Slot", "String", "Unknown"]>;
|
|
35904
|
+
type CodeComponentPropertyControlType = z.infer<typeof CodeComponentPropertyControlType>;
|
|
35905
|
+
declare const CodeComponentPropertyControl: z.ZodObject<{
|
|
35906
|
+
isArray: z.ZodBoolean;
|
|
35907
|
+
type: z.ZodEnum<["Boolean", "Function", "Number", "Object", "Slot", "String", "Unknown"]>;
|
|
35908
|
+
}, "strip", z.ZodTypeAny, {
|
|
35909
|
+
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
35910
|
+
isArray: boolean;
|
|
35911
|
+
}, {
|
|
35912
|
+
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
35913
|
+
isArray: boolean;
|
|
35914
|
+
}>;
|
|
35915
|
+
type CodeComponentPropertyControl = z.infer<typeof CodeComponentPropertyControl>;
|
|
35916
|
+
declare const CodeComponentProperty: z.ZodObject<{
|
|
35917
|
+
control: z.ZodObject<{
|
|
35918
|
+
isArray: z.ZodBoolean;
|
|
35919
|
+
type: z.ZodEnum<["Boolean", "Function", "Number", "Object", "Slot", "String", "Unknown"]>;
|
|
35920
|
+
}, "strip", z.ZodTypeAny, {
|
|
35921
|
+
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
35922
|
+
isArray: boolean;
|
|
35923
|
+
}, {
|
|
35924
|
+
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
35925
|
+
isArray: boolean;
|
|
35926
|
+
}>;
|
|
35927
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
35928
|
+
name: z.ZodString;
|
|
35929
|
+
required: z.ZodBoolean;
|
|
35930
|
+
type: z.ZodString;
|
|
35931
|
+
}, "strip", z.ZodTypeAny, {
|
|
35932
|
+
type: string;
|
|
35933
|
+
name: string;
|
|
35934
|
+
control: {
|
|
35935
|
+
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
35936
|
+
isArray: boolean;
|
|
35937
|
+
};
|
|
35938
|
+
required: boolean;
|
|
35939
|
+
defaultValue?: string | undefined;
|
|
35940
|
+
}, {
|
|
35941
|
+
type: string;
|
|
35942
|
+
name: string;
|
|
35943
|
+
control: {
|
|
35944
|
+
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
35945
|
+
isArray: boolean;
|
|
35946
|
+
};
|
|
35947
|
+
required: boolean;
|
|
35948
|
+
defaultValue?: string | undefined;
|
|
35949
|
+
}>;
|
|
35950
|
+
type CodeComponentProperty = z.infer<typeof CodeComponentProperty>;
|
|
35951
|
+
declare const CodeComponent: z.ZodObject<{
|
|
35952
|
+
id: z.ZodString;
|
|
35953
|
+
designSystemVersionId: z.ZodString;
|
|
35954
|
+
persistentId: z.ZodString;
|
|
35955
|
+
createdAt: z.ZodDate;
|
|
35956
|
+
updatedAt: z.ZodDate;
|
|
35957
|
+
exportName: z.ZodString;
|
|
35958
|
+
properties: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
35959
|
+
control: z.ZodObject<{
|
|
35960
|
+
isArray: z.ZodBoolean;
|
|
35961
|
+
type: z.ZodEnum<["Boolean", "Function", "Number", "Object", "Slot", "String", "Unknown"]>;
|
|
35962
|
+
}, "strip", z.ZodTypeAny, {
|
|
35963
|
+
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
35964
|
+
isArray: boolean;
|
|
35965
|
+
}, {
|
|
35966
|
+
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
35967
|
+
isArray: boolean;
|
|
35968
|
+
}>;
|
|
35969
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
35970
|
+
name: z.ZodString;
|
|
35971
|
+
required: z.ZodBoolean;
|
|
35972
|
+
type: z.ZodString;
|
|
35973
|
+
}, "strip", z.ZodTypeAny, {
|
|
35974
|
+
type: string;
|
|
35975
|
+
name: string;
|
|
35976
|
+
control: {
|
|
35977
|
+
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
35978
|
+
isArray: boolean;
|
|
35979
|
+
};
|
|
35980
|
+
required: boolean;
|
|
35981
|
+
defaultValue?: string | undefined;
|
|
35982
|
+
}, {
|
|
35983
|
+
type: string;
|
|
35984
|
+
name: string;
|
|
35985
|
+
control: {
|
|
35986
|
+
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
35987
|
+
isArray: boolean;
|
|
35988
|
+
};
|
|
35989
|
+
required: boolean;
|
|
35990
|
+
defaultValue?: string | undefined;
|
|
35991
|
+
}>>;
|
|
35992
|
+
}, "strip", z.ZodTypeAny, {
|
|
35993
|
+
id: string;
|
|
35994
|
+
createdAt: Date;
|
|
35995
|
+
updatedAt: Date;
|
|
35996
|
+
persistentId: string;
|
|
35997
|
+
properties: Record<string, {
|
|
35998
|
+
type: string;
|
|
35999
|
+
name: string;
|
|
36000
|
+
control: {
|
|
36001
|
+
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
36002
|
+
isArray: boolean;
|
|
36003
|
+
};
|
|
36004
|
+
required: boolean;
|
|
36005
|
+
defaultValue?: string | undefined;
|
|
36006
|
+
}>;
|
|
36007
|
+
designSystemVersionId: string;
|
|
36008
|
+
exportName: string;
|
|
36009
|
+
}, {
|
|
36010
|
+
id: string;
|
|
36011
|
+
createdAt: Date;
|
|
36012
|
+
updatedAt: Date;
|
|
36013
|
+
persistentId: string;
|
|
36014
|
+
properties: Record<string, {
|
|
36015
|
+
type: string;
|
|
36016
|
+
name: string;
|
|
36017
|
+
control: {
|
|
36018
|
+
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
36019
|
+
isArray: boolean;
|
|
36020
|
+
};
|
|
36021
|
+
required: boolean;
|
|
36022
|
+
defaultValue?: string | undefined;
|
|
36023
|
+
}>;
|
|
36024
|
+
designSystemVersionId: string;
|
|
36025
|
+
exportName: string;
|
|
36026
|
+
}>;
|
|
36027
|
+
type CodeComponent = z.infer<typeof CodeComponent>;
|
|
36028
|
+
type CodeComponentCreate = DbCreateInputOmit<CodeComponent>;
|
|
36029
|
+
type CodeComponentUpdate = DbUpdate<CodeComponent>;
|
|
36030
|
+
type CodeComponentUpsert = OmitStrict<CodeComponentCreate, "persistentId" | "designSystemVersionId">;
|
|
36031
|
+
|
|
35876
36032
|
declare const AssetRenderConfiguration: z.ZodObject<{
|
|
35877
36033
|
prefix: z.ZodOptional<z.ZodString>;
|
|
35878
36034
|
suffix: z.ZodOptional<z.ZodString>;
|
|
@@ -151315,6 +151471,7 @@ declare const ExporterDestinationBitbucket: z.ZodObject<z.objectUtil.extendShape
|
|
|
151315
151471
|
workspaceSlug: z.ZodString;
|
|
151316
151472
|
projectKey: z.ZodString;
|
|
151317
151473
|
repoSlug: z.ZodString;
|
|
151474
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
151318
151475
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
151319
151476
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
151320
151477
|
}, {
|
|
@@ -151331,6 +151488,7 @@ declare const ExporterDestinationBitbucket: z.ZodObject<z.objectUtil.extendShape
|
|
|
151331
151488
|
workspaceSlug: string;
|
|
151332
151489
|
projectKey: string;
|
|
151333
151490
|
repoSlug: string;
|
|
151491
|
+
url?: string | undefined;
|
|
151334
151492
|
userId?: number | undefined;
|
|
151335
151493
|
relativePath?: string | undefined;
|
|
151336
151494
|
purgeDirectory?: boolean | undefined;
|
|
@@ -151346,6 +151504,7 @@ declare const ExporterDestinationBitbucket: z.ZodObject<z.objectUtil.extendShape
|
|
|
151346
151504
|
workspaceSlug: string;
|
|
151347
151505
|
projectKey: string;
|
|
151348
151506
|
repoSlug: string;
|
|
151507
|
+
url?: string | null | undefined;
|
|
151349
151508
|
userId?: number | null | undefined;
|
|
151350
151509
|
relativePath?: string | null | undefined;
|
|
151351
151510
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -151529,6 +151688,7 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
151529
151688
|
workspaceSlug: z.ZodString;
|
|
151530
151689
|
projectKey: z.ZodString;
|
|
151531
151690
|
repoSlug: z.ZodString;
|
|
151691
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
151532
151692
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
151533
151693
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
151534
151694
|
}, {
|
|
@@ -151545,6 +151705,7 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
151545
151705
|
workspaceSlug: string;
|
|
151546
151706
|
projectKey: string;
|
|
151547
151707
|
repoSlug: string;
|
|
151708
|
+
url?: string | undefined;
|
|
151548
151709
|
userId?: number | undefined;
|
|
151549
151710
|
relativePath?: string | undefined;
|
|
151550
151711
|
purgeDirectory?: boolean | undefined;
|
|
@@ -151560,6 +151721,7 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
151560
151721
|
workspaceSlug: string;
|
|
151561
151722
|
projectKey: string;
|
|
151562
151723
|
repoSlug: string;
|
|
151724
|
+
url?: string | null | undefined;
|
|
151563
151725
|
userId?: number | null | undefined;
|
|
151564
151726
|
relativePath?: string | null | undefined;
|
|
151565
151727
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -151632,6 +151794,7 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
151632
151794
|
workspaceSlug: string;
|
|
151633
151795
|
projectKey: string;
|
|
151634
151796
|
repoSlug: string;
|
|
151797
|
+
url?: string | undefined;
|
|
151635
151798
|
userId?: number | undefined;
|
|
151636
151799
|
relativePath?: string | undefined;
|
|
151637
151800
|
purgeDirectory?: boolean | undefined;
|
|
@@ -151704,6 +151867,7 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
151704
151867
|
workspaceSlug: string;
|
|
151705
151868
|
projectKey: string;
|
|
151706
151869
|
repoSlug: string;
|
|
151870
|
+
url?: string | null | undefined;
|
|
151707
151871
|
userId?: number | null | undefined;
|
|
151708
151872
|
relativePath?: string | null | undefined;
|
|
151709
151873
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -151888,6 +152052,7 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
151888
152052
|
workspaceSlug: z.ZodString;
|
|
151889
152053
|
projectKey: z.ZodString;
|
|
151890
152054
|
repoSlug: z.ZodString;
|
|
152055
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
151891
152056
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
151892
152057
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
151893
152058
|
}, {
|
|
@@ -151904,6 +152069,7 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
151904
152069
|
workspaceSlug: string;
|
|
151905
152070
|
projectKey: string;
|
|
151906
152071
|
repoSlug: string;
|
|
152072
|
+
url?: string | undefined;
|
|
151907
152073
|
userId?: number | undefined;
|
|
151908
152074
|
relativePath?: string | undefined;
|
|
151909
152075
|
purgeDirectory?: boolean | undefined;
|
|
@@ -151919,6 +152085,7 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
151919
152085
|
workspaceSlug: string;
|
|
151920
152086
|
projectKey: string;
|
|
151921
152087
|
repoSlug: string;
|
|
152088
|
+
url?: string | null | undefined;
|
|
151922
152089
|
userId?: number | null | undefined;
|
|
151923
152090
|
relativePath?: string | null | undefined;
|
|
151924
152091
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -151991,6 +152158,7 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
151991
152158
|
workspaceSlug: string;
|
|
151992
152159
|
projectKey: string;
|
|
151993
152160
|
repoSlug: string;
|
|
152161
|
+
url?: string | undefined;
|
|
151994
152162
|
userId?: number | undefined;
|
|
151995
152163
|
relativePath?: string | undefined;
|
|
151996
152164
|
purgeDirectory?: boolean | undefined;
|
|
@@ -152063,6 +152231,7 @@ declare const ExportDestinationsMapUpdate: z.ZodObject<{
|
|
|
152063
152231
|
workspaceSlug: string;
|
|
152064
152232
|
projectKey: string;
|
|
152065
152233
|
repoSlug: string;
|
|
152234
|
+
url?: string | null | undefined;
|
|
152066
152235
|
userId?: number | null | undefined;
|
|
152067
152236
|
relativePath?: string | null | undefined;
|
|
152068
152237
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -152471,6 +152640,7 @@ declare const ExportJob: z.ZodObject<{
|
|
|
152471
152640
|
workspaceSlug: z.ZodString;
|
|
152472
152641
|
projectKey: z.ZodString;
|
|
152473
152642
|
repoSlug: z.ZodString;
|
|
152643
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
152474
152644
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
152475
152645
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
152476
152646
|
}, {
|
|
@@ -152487,6 +152657,7 @@ declare const ExportJob: z.ZodObject<{
|
|
|
152487
152657
|
workspaceSlug: string;
|
|
152488
152658
|
projectKey: string;
|
|
152489
152659
|
repoSlug: string;
|
|
152660
|
+
url?: string | undefined;
|
|
152490
152661
|
userId?: number | undefined;
|
|
152491
152662
|
relativePath?: string | undefined;
|
|
152492
152663
|
purgeDirectory?: boolean | undefined;
|
|
@@ -152502,6 +152673,7 @@ declare const ExportJob: z.ZodObject<{
|
|
|
152502
152673
|
workspaceSlug: string;
|
|
152503
152674
|
projectKey: string;
|
|
152504
152675
|
repoSlug: string;
|
|
152676
|
+
url?: string | null | undefined;
|
|
152505
152677
|
userId?: number | null | undefined;
|
|
152506
152678
|
relativePath?: string | null | undefined;
|
|
152507
152679
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -152759,6 +152931,7 @@ declare const ExportJob: z.ZodObject<{
|
|
|
152759
152931
|
workspaceSlug: string;
|
|
152760
152932
|
projectKey: string;
|
|
152761
152933
|
repoSlug: string;
|
|
152934
|
+
url?: string | undefined;
|
|
152762
152935
|
userId?: number | undefined;
|
|
152763
152936
|
relativePath?: string | undefined;
|
|
152764
152937
|
purgeDirectory?: boolean | undefined;
|
|
@@ -152878,6 +153051,7 @@ declare const ExportJob: z.ZodObject<{
|
|
|
152878
153051
|
workspaceSlug: string;
|
|
152879
153052
|
projectKey: string;
|
|
152880
153053
|
repoSlug: string;
|
|
153054
|
+
url?: string | null | undefined;
|
|
152881
153055
|
userId?: number | null | undefined;
|
|
152882
153056
|
relativePath?: string | null | undefined;
|
|
152883
153057
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -155937,6 +156111,7 @@ declare const Pipeline: z.ZodObject<{
|
|
|
155937
156111
|
workspaceSlug: z.ZodString;
|
|
155938
156112
|
projectKey: z.ZodString;
|
|
155939
156113
|
repoSlug: z.ZodString;
|
|
156114
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
155940
156115
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
155941
156116
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
155942
156117
|
}, {
|
|
@@ -155953,6 +156128,7 @@ declare const Pipeline: z.ZodObject<{
|
|
|
155953
156128
|
workspaceSlug: string;
|
|
155954
156129
|
projectKey: string;
|
|
155955
156130
|
repoSlug: string;
|
|
156131
|
+
url?: string | undefined;
|
|
155956
156132
|
userId?: number | undefined;
|
|
155957
156133
|
relativePath?: string | undefined;
|
|
155958
156134
|
purgeDirectory?: boolean | undefined;
|
|
@@ -155968,6 +156144,7 @@ declare const Pipeline: z.ZodObject<{
|
|
|
155968
156144
|
workspaceSlug: string;
|
|
155969
156145
|
projectKey: string;
|
|
155970
156146
|
repoSlug: string;
|
|
156147
|
+
url?: string | null | undefined;
|
|
155971
156148
|
userId?: number | null | undefined;
|
|
155972
156149
|
relativePath?: string | null | undefined;
|
|
155973
156150
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -156062,6 +156239,7 @@ declare const Pipeline: z.ZodObject<{
|
|
|
156062
156239
|
workspaceSlug: string;
|
|
156063
156240
|
projectKey: string;
|
|
156064
156241
|
repoSlug: string;
|
|
156242
|
+
url?: string | undefined;
|
|
156065
156243
|
userId?: number | undefined;
|
|
156066
156244
|
relativePath?: string | undefined;
|
|
156067
156245
|
purgeDirectory?: boolean | undefined;
|
|
@@ -156146,6 +156324,7 @@ declare const Pipeline: z.ZodObject<{
|
|
|
156146
156324
|
workspaceSlug: string;
|
|
156147
156325
|
projectKey: string;
|
|
156148
156326
|
repoSlug: string;
|
|
156327
|
+
url?: string | null | undefined;
|
|
156149
156328
|
userId?: number | null | undefined;
|
|
156150
156329
|
relativePath?: string | null | undefined;
|
|
156151
156330
|
purgeDirectory?: boolean | null | undefined;
|
|
@@ -185457,4 +185636,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
185457
185636
|
token: PersonalAccessToken;
|
|
185458
185637
|
};
|
|
185459
185638
|
|
|
185460
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, 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 };
|
|
185639
|
+
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 };
|