@supernova-studio/model 1.6.0 → 1.6.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 +181 -141
- package/dist/index.d.ts +181 -141
- package/dist/index.js +70 -44
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +77 -51
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -35477,52 +35477,59 @@ type ImportedAsset = OmitStrict<Asset, "originKey"> & {
|
|
|
35477
35477
|
};
|
|
35478
35478
|
declare function isImportedAsset(asset: Asset): asset is ImportedAsset;
|
|
35479
35479
|
|
|
35480
|
-
declare const
|
|
35481
|
-
|
|
35482
|
-
|
|
35483
|
-
|
|
35484
|
-
|
|
35480
|
+
declare const CodeComponentResolvedTypeKind: z.ZodEnum<["string", "number", "numberLiteral", "boolean", "booleanLiteral", "object", "function", "stringLiteral", "union", "slot", "null", "undefined", "any"]>;
|
|
35481
|
+
declare const CodeComponentResolvedType: z.ZodType;
|
|
35482
|
+
type CodeComponentResolvedType = z.infer<typeof CodeComponentResolvedType>;
|
|
35483
|
+
declare const CodeComponentParentType: z.ZodObject<{
|
|
35484
|
+
fileName: z.ZodString;
|
|
35485
|
+
name: z.ZodString;
|
|
35485
35486
|
}, "strip", z.ZodTypeAny, {
|
|
35486
|
-
|
|
35487
|
-
|
|
35487
|
+
name: string;
|
|
35488
|
+
fileName: string;
|
|
35488
35489
|
}, {
|
|
35489
|
-
|
|
35490
|
-
|
|
35490
|
+
name: string;
|
|
35491
|
+
fileName: string;
|
|
35491
35492
|
}>;
|
|
35492
|
-
type
|
|
35493
|
+
type CodeComponentParentType = z.infer<typeof CodeComponentParentType>;
|
|
35493
35494
|
declare const CodeComponentProperty: z.ZodObject<{
|
|
35494
|
-
control: z.ZodObject<{
|
|
35495
|
-
isArray: z.ZodBoolean;
|
|
35496
|
-
type: z.ZodEnum<["Boolean", "Function", "Number", "Object", "Slot", "String", "Unknown"]>;
|
|
35497
|
-
}, "strip", z.ZodTypeAny, {
|
|
35498
|
-
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
35499
|
-
isArray: boolean;
|
|
35500
|
-
}, {
|
|
35501
|
-
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
35502
|
-
isArray: boolean;
|
|
35503
|
-
}>;
|
|
35504
35495
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
35505
35496
|
name: z.ZodString;
|
|
35506
35497
|
required: z.ZodBoolean;
|
|
35507
|
-
type: z.
|
|
35498
|
+
type: z.ZodType<any, z.ZodTypeDef, any>;
|
|
35499
|
+
declarations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
35500
|
+
fileName: z.ZodString;
|
|
35501
|
+
name: z.ZodString;
|
|
35502
|
+
}, "strip", z.ZodTypeAny, {
|
|
35503
|
+
name: string;
|
|
35504
|
+
fileName: string;
|
|
35505
|
+
}, {
|
|
35506
|
+
name: string;
|
|
35507
|
+
fileName: string;
|
|
35508
|
+
}>, "many">>;
|
|
35509
|
+
tags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
35510
|
+
description: z.ZodString;
|
|
35508
35511
|
}, "strip", z.ZodTypeAny, {
|
|
35509
|
-
type: string;
|
|
35510
35512
|
name: string;
|
|
35511
|
-
|
|
35512
|
-
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
35513
|
-
isArray: boolean;
|
|
35514
|
-
};
|
|
35513
|
+
description: string;
|
|
35515
35514
|
required: boolean;
|
|
35515
|
+
type?: any;
|
|
35516
|
+
tags?: Record<string, string> | undefined;
|
|
35516
35517
|
defaultValue?: string | undefined;
|
|
35518
|
+
declarations?: {
|
|
35519
|
+
name: string;
|
|
35520
|
+
fileName: string;
|
|
35521
|
+
}[] | undefined;
|
|
35517
35522
|
}, {
|
|
35518
|
-
type: string;
|
|
35519
35523
|
name: string;
|
|
35520
|
-
|
|
35521
|
-
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
35522
|
-
isArray: boolean;
|
|
35523
|
-
};
|
|
35524
|
+
description: string;
|
|
35524
35525
|
required: boolean;
|
|
35526
|
+
type?: any;
|
|
35527
|
+
tags?: Record<string, string> | undefined;
|
|
35525
35528
|
defaultValue?: string | undefined;
|
|
35529
|
+
declarations?: {
|
|
35530
|
+
name: string;
|
|
35531
|
+
fileName: string;
|
|
35532
|
+
}[] | undefined;
|
|
35526
35533
|
}>;
|
|
35527
35534
|
type CodeComponentProperty = z.infer<typeof CodeComponentProperty>;
|
|
35528
35535
|
declare const CodeComponent: z.ZodObject<{
|
|
@@ -35532,79 +35539,112 @@ declare const CodeComponent: z.ZodObject<{
|
|
|
35532
35539
|
createdAt: z.ZodDate;
|
|
35533
35540
|
updatedAt: z.ZodDate;
|
|
35534
35541
|
exportName: z.ZodString;
|
|
35542
|
+
componentPath: z.ZodString;
|
|
35543
|
+
description: z.ZodString;
|
|
35535
35544
|
properties: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
35536
|
-
control: z.ZodObject<{
|
|
35537
|
-
isArray: z.ZodBoolean;
|
|
35538
|
-
type: z.ZodEnum<["Boolean", "Function", "Number", "Object", "Slot", "String", "Unknown"]>;
|
|
35539
|
-
}, "strip", z.ZodTypeAny, {
|
|
35540
|
-
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
35541
|
-
isArray: boolean;
|
|
35542
|
-
}, {
|
|
35543
|
-
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
35544
|
-
isArray: boolean;
|
|
35545
|
-
}>;
|
|
35546
35545
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
35547
35546
|
name: z.ZodString;
|
|
35548
35547
|
required: z.ZodBoolean;
|
|
35549
|
-
type: z.
|
|
35548
|
+
type: z.ZodType<any, z.ZodTypeDef, any>;
|
|
35549
|
+
declarations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
35550
|
+
fileName: z.ZodString;
|
|
35551
|
+
name: z.ZodString;
|
|
35552
|
+
}, "strip", z.ZodTypeAny, {
|
|
35553
|
+
name: string;
|
|
35554
|
+
fileName: string;
|
|
35555
|
+
}, {
|
|
35556
|
+
name: string;
|
|
35557
|
+
fileName: string;
|
|
35558
|
+
}>, "many">>;
|
|
35559
|
+
tags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
35560
|
+
description: z.ZodString;
|
|
35550
35561
|
}, "strip", z.ZodTypeAny, {
|
|
35551
|
-
type: string;
|
|
35552
35562
|
name: string;
|
|
35553
|
-
|
|
35554
|
-
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
35555
|
-
isArray: boolean;
|
|
35556
|
-
};
|
|
35563
|
+
description: string;
|
|
35557
35564
|
required: boolean;
|
|
35565
|
+
type?: any;
|
|
35566
|
+
tags?: Record<string, string> | undefined;
|
|
35558
35567
|
defaultValue?: string | undefined;
|
|
35568
|
+
declarations?: {
|
|
35569
|
+
name: string;
|
|
35570
|
+
fileName: string;
|
|
35571
|
+
}[] | undefined;
|
|
35559
35572
|
}, {
|
|
35560
|
-
type: string;
|
|
35561
35573
|
name: string;
|
|
35562
|
-
|
|
35563
|
-
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
35564
|
-
isArray: boolean;
|
|
35565
|
-
};
|
|
35574
|
+
description: string;
|
|
35566
35575
|
required: boolean;
|
|
35576
|
+
type?: any;
|
|
35577
|
+
tags?: Record<string, string> | undefined;
|
|
35567
35578
|
defaultValue?: string | undefined;
|
|
35579
|
+
declarations?: {
|
|
35580
|
+
name: string;
|
|
35581
|
+
fileName: string;
|
|
35582
|
+
}[] | undefined;
|
|
35568
35583
|
}>>;
|
|
35584
|
+
tags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
35569
35585
|
}, "strip", z.ZodTypeAny, {
|
|
35570
35586
|
id: string;
|
|
35571
35587
|
createdAt: Date;
|
|
35572
35588
|
updatedAt: Date;
|
|
35573
35589
|
persistentId: string;
|
|
35590
|
+
description: string;
|
|
35574
35591
|
properties: Record<string, {
|
|
35575
|
-
type: string;
|
|
35576
35592
|
name: string;
|
|
35577
|
-
|
|
35578
|
-
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
35579
|
-
isArray: boolean;
|
|
35580
|
-
};
|
|
35593
|
+
description: string;
|
|
35581
35594
|
required: boolean;
|
|
35595
|
+
type?: any;
|
|
35596
|
+
tags?: Record<string, string> | undefined;
|
|
35582
35597
|
defaultValue?: string | undefined;
|
|
35598
|
+
declarations?: {
|
|
35599
|
+
name: string;
|
|
35600
|
+
fileName: string;
|
|
35601
|
+
}[] | undefined;
|
|
35583
35602
|
}>;
|
|
35584
35603
|
designSystemVersionId: string;
|
|
35585
35604
|
exportName: string;
|
|
35605
|
+
componentPath: string;
|
|
35606
|
+
tags?: Record<string, string> | undefined;
|
|
35586
35607
|
}, {
|
|
35587
35608
|
id: string;
|
|
35588
35609
|
createdAt: Date;
|
|
35589
35610
|
updatedAt: Date;
|
|
35590
35611
|
persistentId: string;
|
|
35612
|
+
description: string;
|
|
35591
35613
|
properties: Record<string, {
|
|
35592
|
-
type: string;
|
|
35593
35614
|
name: string;
|
|
35594
|
-
|
|
35595
|
-
type: "Boolean" | "String" | "Number" | "Object" | "Function" | "Slot" | "Unknown";
|
|
35596
|
-
isArray: boolean;
|
|
35597
|
-
};
|
|
35615
|
+
description: string;
|
|
35598
35616
|
required: boolean;
|
|
35617
|
+
type?: any;
|
|
35618
|
+
tags?: Record<string, string> | undefined;
|
|
35599
35619
|
defaultValue?: string | undefined;
|
|
35620
|
+
declarations?: {
|
|
35621
|
+
name: string;
|
|
35622
|
+
fileName: string;
|
|
35623
|
+
}[] | undefined;
|
|
35600
35624
|
}>;
|
|
35601
35625
|
designSystemVersionId: string;
|
|
35602
35626
|
exportName: string;
|
|
35627
|
+
componentPath: string;
|
|
35628
|
+
tags?: Record<string, string> | undefined;
|
|
35603
35629
|
}>;
|
|
35604
35630
|
type CodeComponent = z.infer<typeof CodeComponent>;
|
|
35605
35631
|
type CodeComponentCreate = DbCreateInputOmit<CodeComponent>;
|
|
35606
35632
|
type CodeComponentUpdate = DbUpdate<CodeComponent>;
|
|
35607
35633
|
type CodeComponentUpsert = OmitStrict<CodeComponentCreate, "persistentId" | "designSystemVersionId">;
|
|
35634
|
+
declare const CodeComponentUpsertResponse: z.ZodObject<{
|
|
35635
|
+
created: z.ZodNumber;
|
|
35636
|
+
updated: z.ZodNumber;
|
|
35637
|
+
deleted: z.ZodNumber;
|
|
35638
|
+
}, "strip", z.ZodTypeAny, {
|
|
35639
|
+
created: number;
|
|
35640
|
+
updated: number;
|
|
35641
|
+
deleted: number;
|
|
35642
|
+
}, {
|
|
35643
|
+
created: number;
|
|
35644
|
+
updated: number;
|
|
35645
|
+
deleted: number;
|
|
35646
|
+
}>;
|
|
35647
|
+
type CodeComponentUpsertResponse = z.infer<typeof CodeComponentUpsertResponse>;
|
|
35608
35648
|
|
|
35609
35649
|
declare const AssetRenderConfiguration: z.ZodObject<{
|
|
35610
35650
|
prefix: z.ZodOptional<z.ZodString>;
|
|
@@ -38415,62 +38455,47 @@ declare const DocumentationLinkPreview: z.ZodObject<{
|
|
|
38415
38455
|
}>;
|
|
38416
38456
|
type DocumentationLinkPreview = z.infer<typeof DocumentationLinkPreview>;
|
|
38417
38457
|
|
|
38418
|
-
declare const
|
|
38419
|
-
|
|
38458
|
+
declare const DocumentationPageAnchor: z.ZodObject<{
|
|
38459
|
+
blockId: z.ZodString;
|
|
38460
|
+
level: z.ZodNumber;
|
|
38461
|
+
text: z.ZodString;
|
|
38462
|
+
}, "strip", z.ZodTypeAny, {
|
|
38463
|
+
text: string;
|
|
38464
|
+
blockId: string;
|
|
38465
|
+
level: number;
|
|
38466
|
+
}, {
|
|
38467
|
+
text: string;
|
|
38468
|
+
blockId: string;
|
|
38469
|
+
level: number;
|
|
38470
|
+
}>;
|
|
38471
|
+
type DocumentationPageAnchor = z.infer<typeof DocumentationPageAnchor>;
|
|
38472
|
+
|
|
38473
|
+
declare const DocumentationPageContentBackup: z.ZodObject<{
|
|
38420
38474
|
id: z.ZodString;
|
|
38421
|
-
persistentId: z.ZodString;
|
|
38422
|
-
shortPersistentId: z.ZodString;
|
|
38423
38475
|
designSystemVersionId: z.ZodString;
|
|
38424
|
-
parentPersistentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
38425
|
-
sortOrder: z.ZodNumber;
|
|
38426
|
-
title: z.ZodString;
|
|
38427
|
-
slug: z.ZodString;
|
|
38428
|
-
userSlug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
38429
38476
|
createdAt: z.ZodDate;
|
|
38430
38477
|
updatedAt: z.ZodDate;
|
|
38478
|
+
documentationPageId: z.ZodString;
|
|
38479
|
+
documentationPageName: z.ZodString;
|
|
38480
|
+
storagePath: z.ZodString;
|
|
38431
38481
|
}, "strip", z.ZodTypeAny, {
|
|
38432
|
-
type: "DocumentationPage";
|
|
38433
38482
|
id: string;
|
|
38434
38483
|
createdAt: Date;
|
|
38435
38484
|
updatedAt: Date;
|
|
38436
|
-
|
|
38437
|
-
title: string;
|
|
38485
|
+
storagePath: string;
|
|
38438
38486
|
designSystemVersionId: string;
|
|
38439
|
-
|
|
38440
|
-
|
|
38441
|
-
slug: string;
|
|
38442
|
-
parentPersistentId?: string | null | undefined;
|
|
38443
|
-
userSlug?: string | null | undefined;
|
|
38487
|
+
documentationPageId: string;
|
|
38488
|
+
documentationPageName: string;
|
|
38444
38489
|
}, {
|
|
38445
|
-
type: "DocumentationPage";
|
|
38446
38490
|
id: string;
|
|
38447
38491
|
createdAt: Date;
|
|
38448
38492
|
updatedAt: Date;
|
|
38449
|
-
|
|
38450
|
-
title: string;
|
|
38493
|
+
storagePath: string;
|
|
38451
38494
|
designSystemVersionId: string;
|
|
38452
|
-
|
|
38453
|
-
|
|
38454
|
-
slug: string;
|
|
38455
|
-
parentPersistentId?: string | null | undefined;
|
|
38456
|
-
userSlug?: string | null | undefined;
|
|
38457
|
-
}>;
|
|
38458
|
-
type DocumentationPage = z.infer<typeof DocumentationPage>;
|
|
38459
|
-
|
|
38460
|
-
declare const DocumentationPageAnchor: z.ZodObject<{
|
|
38461
|
-
blockId: z.ZodString;
|
|
38462
|
-
level: z.ZodNumber;
|
|
38463
|
-
text: z.ZodString;
|
|
38464
|
-
}, "strip", z.ZodTypeAny, {
|
|
38465
|
-
text: string;
|
|
38466
|
-
blockId: string;
|
|
38467
|
-
level: number;
|
|
38468
|
-
}, {
|
|
38469
|
-
text: string;
|
|
38470
|
-
blockId: string;
|
|
38471
|
-
level: number;
|
|
38495
|
+
documentationPageId: string;
|
|
38496
|
+
documentationPageName: string;
|
|
38472
38497
|
}>;
|
|
38473
|
-
type
|
|
38498
|
+
type DocumentationPageContentBackup = z.infer<typeof DocumentationPageContentBackup>;
|
|
38474
38499
|
|
|
38475
38500
|
declare const DocumentationPageContentItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
38476
38501
|
id: z.ZodString;
|
|
@@ -41191,33 +41216,6 @@ type DocumentationPageContent = z.infer<typeof DocumentationPageContent>;
|
|
|
41191
41216
|
type CreateDocumentationPageContent = DbCreateInputOmit<DocumentationPageContent>;
|
|
41192
41217
|
type UpdateDocumentationPageContent = OmitStrict<DbUpdate<DocumentationPageContent>, "designSystemVersionId" | "documentationPageId">;
|
|
41193
41218
|
|
|
41194
|
-
declare const DocumentationPageContentBackup: z.ZodObject<{
|
|
41195
|
-
id: z.ZodString;
|
|
41196
|
-
designSystemVersionId: z.ZodString;
|
|
41197
|
-
createdAt: z.ZodDate;
|
|
41198
|
-
updatedAt: z.ZodDate;
|
|
41199
|
-
documentationPageId: z.ZodString;
|
|
41200
|
-
documentationPageName: z.ZodString;
|
|
41201
|
-
storagePath: z.ZodString;
|
|
41202
|
-
}, "strip", z.ZodTypeAny, {
|
|
41203
|
-
id: string;
|
|
41204
|
-
createdAt: Date;
|
|
41205
|
-
updatedAt: Date;
|
|
41206
|
-
storagePath: string;
|
|
41207
|
-
designSystemVersionId: string;
|
|
41208
|
-
documentationPageId: string;
|
|
41209
|
-
documentationPageName: string;
|
|
41210
|
-
}, {
|
|
41211
|
-
id: string;
|
|
41212
|
-
createdAt: Date;
|
|
41213
|
-
updatedAt: Date;
|
|
41214
|
-
storagePath: string;
|
|
41215
|
-
designSystemVersionId: string;
|
|
41216
|
-
documentationPageId: string;
|
|
41217
|
-
documentationPageName: string;
|
|
41218
|
-
}>;
|
|
41219
|
-
type DocumentationPageContentBackup = z.infer<typeof DocumentationPageContentBackup>;
|
|
41220
|
-
|
|
41221
41219
|
type PageContentDependencies = {
|
|
41222
41220
|
tokenPersistentIds: Set<string>;
|
|
41223
41221
|
figmaComponentPersistentIds: Set<string>;
|
|
@@ -41276,6 +41274,48 @@ type DocumentationPageDependencies = z.infer<typeof DocumentationPageDependencie
|
|
|
41276
41274
|
type CreateDocumentationPageDependencies = DbCreateInputOmit<DocumentationPageDependencies>;
|
|
41277
41275
|
type UpdateDocumentationPageDependencies = OmitStrict<DbUpdate<DocumentationPageDependencies>, "designSystemVersionId" | "documentationPageId">;
|
|
41278
41276
|
|
|
41277
|
+
declare const DocumentationPage: z.ZodObject<{
|
|
41278
|
+
type: z.ZodLiteral<"DocumentationPage">;
|
|
41279
|
+
id: z.ZodString;
|
|
41280
|
+
persistentId: z.ZodString;
|
|
41281
|
+
shortPersistentId: z.ZodString;
|
|
41282
|
+
designSystemVersionId: z.ZodString;
|
|
41283
|
+
parentPersistentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
41284
|
+
sortOrder: z.ZodNumber;
|
|
41285
|
+
title: z.ZodString;
|
|
41286
|
+
slug: z.ZodString;
|
|
41287
|
+
userSlug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
41288
|
+
createdAt: z.ZodDate;
|
|
41289
|
+
updatedAt: z.ZodDate;
|
|
41290
|
+
}, "strip", z.ZodTypeAny, {
|
|
41291
|
+
type: "DocumentationPage";
|
|
41292
|
+
id: string;
|
|
41293
|
+
createdAt: Date;
|
|
41294
|
+
updatedAt: Date;
|
|
41295
|
+
persistentId: string;
|
|
41296
|
+
title: string;
|
|
41297
|
+
designSystemVersionId: string;
|
|
41298
|
+
shortPersistentId: string;
|
|
41299
|
+
sortOrder: number;
|
|
41300
|
+
slug: string;
|
|
41301
|
+
parentPersistentId?: string | null | undefined;
|
|
41302
|
+
userSlug?: string | null | undefined;
|
|
41303
|
+
}, {
|
|
41304
|
+
type: "DocumentationPage";
|
|
41305
|
+
id: string;
|
|
41306
|
+
createdAt: Date;
|
|
41307
|
+
updatedAt: Date;
|
|
41308
|
+
persistentId: string;
|
|
41309
|
+
title: string;
|
|
41310
|
+
designSystemVersionId: string;
|
|
41311
|
+
shortPersistentId: string;
|
|
41312
|
+
sortOrder: number;
|
|
41313
|
+
slug: string;
|
|
41314
|
+
parentPersistentId?: string | null | undefined;
|
|
41315
|
+
userSlug?: string | null | undefined;
|
|
41316
|
+
}>;
|
|
41317
|
+
type DocumentationPage = z.infer<typeof DocumentationPage>;
|
|
41318
|
+
|
|
41279
41319
|
declare const PageRedirect: z.ZodObject<{
|
|
41280
41320
|
id: z.ZodString;
|
|
41281
41321
|
pagePersistentId: z.ZodString;
|
|
@@ -87293,12 +87333,12 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
87293
87333
|
thumbnailUrl: z.ZodOptional<z.ZodString>;
|
|
87294
87334
|
}, "strip", z.ZodTypeAny, {
|
|
87295
87335
|
id: string;
|
|
87296
|
-
thumbnailUrl?: string | undefined;
|
|
87297
87336
|
fileName?: string | undefined;
|
|
87337
|
+
thumbnailUrl?: string | undefined;
|
|
87298
87338
|
}, {
|
|
87299
87339
|
id: string;
|
|
87300
|
-
thumbnailUrl?: string | undefined;
|
|
87301
87340
|
fileName?: string | undefined;
|
|
87341
|
+
thumbnailUrl?: string | undefined;
|
|
87302
87342
|
}>, "many">;
|
|
87303
87343
|
tokens: z.ZodDefault<z.ZodArray<z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
87304
87344
|
type: z.ZodLiteral<"Blur">;
|
|
@@ -96926,8 +96966,8 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96926
96966
|
}[];
|
|
96927
96967
|
sources: {
|
|
96928
96968
|
id: string;
|
|
96929
|
-
thumbnailUrl?: string | undefined;
|
|
96930
96969
|
fileName?: string | undefined;
|
|
96970
|
+
thumbnailUrl?: string | undefined;
|
|
96931
96971
|
}[];
|
|
96932
96972
|
tokens: (({
|
|
96933
96973
|
type: "Blur";
|
|
@@ -97725,8 +97765,8 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
97725
97765
|
}, {
|
|
97726
97766
|
sources: {
|
|
97727
97767
|
id: string;
|
|
97728
|
-
thumbnailUrl?: string | undefined;
|
|
97729
97768
|
fileName?: string | undefined;
|
|
97769
|
+
thumbnailUrl?: string | undefined;
|
|
97730
97770
|
}[];
|
|
97731
97771
|
collections: {
|
|
97732
97772
|
id: string;
|
|
@@ -99008,12 +99048,12 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
99008
99048
|
thumbnailUrl: z.ZodOptional<z.ZodString>;
|
|
99009
99049
|
}, "strip", z.ZodTypeAny, {
|
|
99010
99050
|
id: string;
|
|
99011
|
-
thumbnailUrl?: string | undefined;
|
|
99012
99051
|
fileName?: string | undefined;
|
|
99052
|
+
thumbnailUrl?: string | undefined;
|
|
99013
99053
|
}, {
|
|
99014
99054
|
id: string;
|
|
99015
|
-
thumbnailUrl?: string | undefined;
|
|
99016
99055
|
fileName?: string | undefined;
|
|
99056
|
+
thumbnailUrl?: string | undefined;
|
|
99017
99057
|
}>;
|
|
99018
99058
|
tokens: z.ZodDefault<z.ZodArray<z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
99019
99059
|
type: z.ZodLiteral<"Blur">;
|
|
@@ -108524,8 +108564,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108524
108564
|
}[];
|
|
108525
108565
|
source: {
|
|
108526
108566
|
id: string;
|
|
108527
|
-
thumbnailUrl?: string | undefined;
|
|
108528
108567
|
fileName?: string | undefined;
|
|
108568
|
+
thumbnailUrl?: string | undefined;
|
|
108529
108569
|
};
|
|
108530
108570
|
themes: {
|
|
108531
108571
|
meta: {
|
|
@@ -109768,8 +109808,8 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
109768
109808
|
}, {
|
|
109769
109809
|
source: {
|
|
109770
109810
|
id: string;
|
|
109771
|
-
thumbnailUrl?: string | undefined;
|
|
109772
109811
|
fileName?: string | undefined;
|
|
109812
|
+
thumbnailUrl?: string | undefined;
|
|
109773
109813
|
};
|
|
109774
109814
|
collections: {
|
|
109775
109815
|
id: string;
|
|
@@ -112704,12 +112744,12 @@ declare const DataSourceImportModel: z.ZodObject<{
|
|
|
112704
112744
|
thumbnailUrl: z.ZodOptional<z.ZodString>;
|
|
112705
112745
|
}, "strip", z.ZodTypeAny, {
|
|
112706
112746
|
id: string;
|
|
112707
|
-
thumbnailUrl?: string | undefined;
|
|
112708
112747
|
fileName?: string | undefined;
|
|
112748
|
+
thumbnailUrl?: string | undefined;
|
|
112709
112749
|
}, {
|
|
112710
112750
|
id: string;
|
|
112711
|
-
thumbnailUrl?: string | undefined;
|
|
112712
112751
|
fileName?: string | undefined;
|
|
112752
|
+
thumbnailUrl?: string | undefined;
|
|
112713
112753
|
}>;
|
|
112714
112754
|
type DataSourceImportModel = z.infer<typeof DataSourceImportModel>;
|
|
112715
112755
|
|
|
@@ -186837,4 +186877,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
186837
186877
|
token: PersonalAccessToken;
|
|
186838
186878
|
};
|
|
186839
186879
|
|
|
186840
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, 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 CreateDocumentationPageDependencies, 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, DocumentationPageDependencies, 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, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, 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 UpdateDocumentationPageDependencies, 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, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, 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, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|
|
186880
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, 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, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, 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 CreateDocumentationPageDependencies, 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, DocumentationPageDependencies, 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, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, 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 UpdateDocumentationPageDependencies, 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, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, 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, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|