@supernova-studio/model 0.54.33 → 0.54.35
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 +728 -283
- package/dist/index.d.ts +728 -283
- package/dist/index.js +16 -15
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +174 -173
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/emails/design-system-invite.ts +29 -0
- package/src/emails/index.ts +1 -0
- package/src/index.ts +1 -0
- package/src/workspace/workspace-create.ts +0 -13
- package/src/workspace/workspace.ts +4 -1
package/dist/index.d.mts
CHANGED
|
@@ -131292,6 +131292,731 @@ declare const VersionCreationJob: z.ZodObject<{
|
|
|
131292
131292
|
}>;
|
|
131293
131293
|
type VersionCreationJob = z.infer<typeof VersionCreationJob>;
|
|
131294
131294
|
|
|
131295
|
+
/**
|
|
131296
|
+
* Object describing who is going to receive the email.
|
|
131297
|
+
*
|
|
131298
|
+
* Normally recepient is just an email, however in some cases email can be tailored
|
|
131299
|
+
* for who receives it. In this case the email has cutomization based on the role of the
|
|
131300
|
+
* recepient in the workspace (or design design system).
|
|
131301
|
+
*/
|
|
131302
|
+
declare const DesignSystemInviteEmailRecipient: z.ZodObject<{
|
|
131303
|
+
email: z.ZodString;
|
|
131304
|
+
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
131305
|
+
}, "strip", z.ZodTypeAny, {
|
|
131306
|
+
email: string;
|
|
131307
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
131308
|
+
}, {
|
|
131309
|
+
email: string;
|
|
131310
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
131311
|
+
}>;
|
|
131312
|
+
type DesignSystemInviteEmailRecipient = z.infer<typeof DesignSystemInviteEmailRecipient>;
|
|
131313
|
+
/**
|
|
131314
|
+
* Object describing the necessary data to send an email notifying a user that
|
|
131315
|
+
* they've been added to a design system.
|
|
131316
|
+
*/
|
|
131317
|
+
declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
131318
|
+
designSystem: z.ZodObject<{
|
|
131319
|
+
id: z.ZodString;
|
|
131320
|
+
workspaceId: z.ZodString;
|
|
131321
|
+
name: z.ZodString;
|
|
131322
|
+
description: z.ZodString;
|
|
131323
|
+
docExporterId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131324
|
+
docSlug: z.ZodString;
|
|
131325
|
+
docUserSlug: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131326
|
+
docSlugDeprecated: z.ZodString;
|
|
131327
|
+
isPublic: z.ZodBoolean;
|
|
131328
|
+
isMultibrand: z.ZodBoolean;
|
|
131329
|
+
docViewUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131330
|
+
basePrefixes: z.ZodArray<z.ZodString, "many">;
|
|
131331
|
+
designSystemSwitcher: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
131332
|
+
isEnabled: boolean;
|
|
131333
|
+
designSystemIds: string[];
|
|
131334
|
+
}, z.ZodTypeDef, {
|
|
131335
|
+
isEnabled: boolean;
|
|
131336
|
+
designSystemIds: string[];
|
|
131337
|
+
}>>>, {
|
|
131338
|
+
isEnabled: boolean;
|
|
131339
|
+
designSystemIds: string[];
|
|
131340
|
+
} | undefined, {
|
|
131341
|
+
isEnabled: boolean;
|
|
131342
|
+
designSystemIds: string[];
|
|
131343
|
+
} | null | undefined>;
|
|
131344
|
+
isApprovalFeatureEnabled: z.ZodBoolean;
|
|
131345
|
+
approvalRequiredForPublishing: z.ZodBoolean;
|
|
131346
|
+
accessMode: z.ZodEnum<["Open", "InviteOnly"]>;
|
|
131347
|
+
membersGenerated: z.ZodBoolean;
|
|
131348
|
+
createdAt: z.ZodDate;
|
|
131349
|
+
updatedAt: z.ZodDate;
|
|
131350
|
+
}, "strip", z.ZodTypeAny, {
|
|
131351
|
+
id: string;
|
|
131352
|
+
createdAt: Date;
|
|
131353
|
+
updatedAt: Date;
|
|
131354
|
+
name: string;
|
|
131355
|
+
description: string;
|
|
131356
|
+
isPublic: boolean;
|
|
131357
|
+
workspaceId: string;
|
|
131358
|
+
docSlug: string;
|
|
131359
|
+
docSlugDeprecated: string;
|
|
131360
|
+
isMultibrand: boolean;
|
|
131361
|
+
basePrefixes: string[];
|
|
131362
|
+
isApprovalFeatureEnabled: boolean;
|
|
131363
|
+
approvalRequiredForPublishing: boolean;
|
|
131364
|
+
accessMode: "Open" | "InviteOnly";
|
|
131365
|
+
membersGenerated: boolean;
|
|
131366
|
+
docExporterId?: string | undefined;
|
|
131367
|
+
docUserSlug?: string | undefined;
|
|
131368
|
+
docViewUrl?: string | undefined;
|
|
131369
|
+
designSystemSwitcher?: {
|
|
131370
|
+
isEnabled: boolean;
|
|
131371
|
+
designSystemIds: string[];
|
|
131372
|
+
} | undefined;
|
|
131373
|
+
}, {
|
|
131374
|
+
id: string;
|
|
131375
|
+
createdAt: Date;
|
|
131376
|
+
updatedAt: Date;
|
|
131377
|
+
name: string;
|
|
131378
|
+
description: string;
|
|
131379
|
+
isPublic: boolean;
|
|
131380
|
+
workspaceId: string;
|
|
131381
|
+
docSlug: string;
|
|
131382
|
+
docSlugDeprecated: string;
|
|
131383
|
+
isMultibrand: boolean;
|
|
131384
|
+
basePrefixes: string[];
|
|
131385
|
+
isApprovalFeatureEnabled: boolean;
|
|
131386
|
+
approvalRequiredForPublishing: boolean;
|
|
131387
|
+
accessMode: "Open" | "InviteOnly";
|
|
131388
|
+
membersGenerated: boolean;
|
|
131389
|
+
docExporterId?: string | null | undefined;
|
|
131390
|
+
docUserSlug?: string | null | undefined;
|
|
131391
|
+
docViewUrl?: string | null | undefined;
|
|
131392
|
+
designSystemSwitcher?: {
|
|
131393
|
+
isEnabled: boolean;
|
|
131394
|
+
designSystemIds: string[];
|
|
131395
|
+
} | null | undefined;
|
|
131396
|
+
}>;
|
|
131397
|
+
invitedBy: z.ZodObject<{
|
|
131398
|
+
id: z.ZodString;
|
|
131399
|
+
email: z.ZodString;
|
|
131400
|
+
emailVerified: z.ZodBoolean;
|
|
131401
|
+
createdAt: z.ZodDate;
|
|
131402
|
+
trialExpiresAt: z.ZodOptional<z.ZodDate>;
|
|
131403
|
+
profile: z.ZodObject<{
|
|
131404
|
+
name: z.ZodString;
|
|
131405
|
+
avatar: z.ZodOptional<z.ZodString>;
|
|
131406
|
+
nickname: z.ZodOptional<z.ZodString>;
|
|
131407
|
+
onboarding: z.ZodOptional<z.ZodObject<{
|
|
131408
|
+
companyName: z.ZodOptional<z.ZodString>;
|
|
131409
|
+
numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
|
|
131410
|
+
numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
|
|
131411
|
+
department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
|
|
131412
|
+
jobTitle: z.ZodOptional<z.ZodString>;
|
|
131413
|
+
phase: z.ZodOptional<z.ZodString>;
|
|
131414
|
+
jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
|
|
131415
|
+
designSystemName: z.ZodOptional<z.ZodString>;
|
|
131416
|
+
defaultDestination: z.ZodOptional<z.ZodString>;
|
|
131417
|
+
figmaUrl: z.ZodOptional<z.ZodString>;
|
|
131418
|
+
isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
131419
|
+
isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
131420
|
+
}, "strip", z.ZodTypeAny, {
|
|
131421
|
+
companyName?: string | undefined;
|
|
131422
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
131423
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
131424
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
131425
|
+
jobTitle?: string | undefined;
|
|
131426
|
+
phase?: string | undefined;
|
|
131427
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
131428
|
+
designSystemName?: string | undefined;
|
|
131429
|
+
defaultDestination?: string | undefined;
|
|
131430
|
+
figmaUrl?: string | undefined;
|
|
131431
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
131432
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
131433
|
+
}, {
|
|
131434
|
+
companyName?: string | undefined;
|
|
131435
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
131436
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
131437
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
131438
|
+
jobTitle?: string | undefined;
|
|
131439
|
+
phase?: string | undefined;
|
|
131440
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
131441
|
+
designSystemName?: string | undefined;
|
|
131442
|
+
defaultDestination?: string | undefined;
|
|
131443
|
+
figmaUrl?: string | undefined;
|
|
131444
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
131445
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
131446
|
+
}>>;
|
|
131447
|
+
}, "strip", z.ZodTypeAny, {
|
|
131448
|
+
name: string;
|
|
131449
|
+
avatar?: string | undefined;
|
|
131450
|
+
nickname?: string | undefined;
|
|
131451
|
+
onboarding?: {
|
|
131452
|
+
companyName?: string | undefined;
|
|
131453
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
131454
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
131455
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
131456
|
+
jobTitle?: string | undefined;
|
|
131457
|
+
phase?: string | undefined;
|
|
131458
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
131459
|
+
designSystemName?: string | undefined;
|
|
131460
|
+
defaultDestination?: string | undefined;
|
|
131461
|
+
figmaUrl?: string | undefined;
|
|
131462
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
131463
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
131464
|
+
} | undefined;
|
|
131465
|
+
}, {
|
|
131466
|
+
name: string;
|
|
131467
|
+
avatar?: string | undefined;
|
|
131468
|
+
nickname?: string | undefined;
|
|
131469
|
+
onboarding?: {
|
|
131470
|
+
companyName?: string | undefined;
|
|
131471
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
131472
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
131473
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
131474
|
+
jobTitle?: string | undefined;
|
|
131475
|
+
phase?: string | undefined;
|
|
131476
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
131477
|
+
designSystemName?: string | undefined;
|
|
131478
|
+
defaultDestination?: string | undefined;
|
|
131479
|
+
figmaUrl?: string | undefined;
|
|
131480
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
131481
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
131482
|
+
} | undefined;
|
|
131483
|
+
}>;
|
|
131484
|
+
linkedIntegrations: z.ZodOptional<z.ZodObject<{
|
|
131485
|
+
figma: z.ZodOptional<z.ZodObject<{
|
|
131486
|
+
id: z.ZodString;
|
|
131487
|
+
handle: z.ZodOptional<z.ZodString>;
|
|
131488
|
+
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
131489
|
+
email: z.ZodOptional<z.ZodString>;
|
|
131490
|
+
authType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"OAuth2">, z.ZodLiteral<"PAT">]>>;
|
|
131491
|
+
customUrl: z.ZodOptional<z.ZodString>;
|
|
131492
|
+
}, "strip", z.ZodTypeAny, {
|
|
131493
|
+
id: string;
|
|
131494
|
+
email?: string | undefined;
|
|
131495
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131496
|
+
handle?: string | undefined;
|
|
131497
|
+
avatarUrl?: string | undefined;
|
|
131498
|
+
customUrl?: string | undefined;
|
|
131499
|
+
}, {
|
|
131500
|
+
id: string;
|
|
131501
|
+
email?: string | undefined;
|
|
131502
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131503
|
+
handle?: string | undefined;
|
|
131504
|
+
avatarUrl?: string | undefined;
|
|
131505
|
+
customUrl?: string | undefined;
|
|
131506
|
+
}>>;
|
|
131507
|
+
github: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
131508
|
+
id: z.ZodString;
|
|
131509
|
+
handle: z.ZodOptional<z.ZodString>;
|
|
131510
|
+
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
131511
|
+
email: z.ZodOptional<z.ZodString>;
|
|
131512
|
+
authType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"OAuth2">, z.ZodLiteral<"PAT">]>>;
|
|
131513
|
+
customUrl: z.ZodOptional<z.ZodString>;
|
|
131514
|
+
}, "strip", z.ZodTypeAny, {
|
|
131515
|
+
id: string;
|
|
131516
|
+
email?: string | undefined;
|
|
131517
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131518
|
+
handle?: string | undefined;
|
|
131519
|
+
avatarUrl?: string | undefined;
|
|
131520
|
+
customUrl?: string | undefined;
|
|
131521
|
+
}, {
|
|
131522
|
+
id: string;
|
|
131523
|
+
email?: string | undefined;
|
|
131524
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131525
|
+
handle?: string | undefined;
|
|
131526
|
+
avatarUrl?: string | undefined;
|
|
131527
|
+
customUrl?: string | undefined;
|
|
131528
|
+
}>, "many">>;
|
|
131529
|
+
azure: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
131530
|
+
id: z.ZodString;
|
|
131531
|
+
handle: z.ZodOptional<z.ZodString>;
|
|
131532
|
+
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
131533
|
+
email: z.ZodOptional<z.ZodString>;
|
|
131534
|
+
authType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"OAuth2">, z.ZodLiteral<"PAT">]>>;
|
|
131535
|
+
customUrl: z.ZodOptional<z.ZodString>;
|
|
131536
|
+
}, "strip", z.ZodTypeAny, {
|
|
131537
|
+
id: string;
|
|
131538
|
+
email?: string | undefined;
|
|
131539
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131540
|
+
handle?: string | undefined;
|
|
131541
|
+
avatarUrl?: string | undefined;
|
|
131542
|
+
customUrl?: string | undefined;
|
|
131543
|
+
}, {
|
|
131544
|
+
id: string;
|
|
131545
|
+
email?: string | undefined;
|
|
131546
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131547
|
+
handle?: string | undefined;
|
|
131548
|
+
avatarUrl?: string | undefined;
|
|
131549
|
+
customUrl?: string | undefined;
|
|
131550
|
+
}>, "many">>;
|
|
131551
|
+
gitlab: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
131552
|
+
id: z.ZodString;
|
|
131553
|
+
handle: z.ZodOptional<z.ZodString>;
|
|
131554
|
+
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
131555
|
+
email: z.ZodOptional<z.ZodString>;
|
|
131556
|
+
authType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"OAuth2">, z.ZodLiteral<"PAT">]>>;
|
|
131557
|
+
customUrl: z.ZodOptional<z.ZodString>;
|
|
131558
|
+
}, "strip", z.ZodTypeAny, {
|
|
131559
|
+
id: string;
|
|
131560
|
+
email?: string | undefined;
|
|
131561
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131562
|
+
handle?: string | undefined;
|
|
131563
|
+
avatarUrl?: string | undefined;
|
|
131564
|
+
customUrl?: string | undefined;
|
|
131565
|
+
}, {
|
|
131566
|
+
id: string;
|
|
131567
|
+
email?: string | undefined;
|
|
131568
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131569
|
+
handle?: string | undefined;
|
|
131570
|
+
avatarUrl?: string | undefined;
|
|
131571
|
+
customUrl?: string | undefined;
|
|
131572
|
+
}>, "many">>;
|
|
131573
|
+
bitbucket: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
131574
|
+
id: z.ZodString;
|
|
131575
|
+
handle: z.ZodOptional<z.ZodString>;
|
|
131576
|
+
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
131577
|
+
email: z.ZodOptional<z.ZodString>;
|
|
131578
|
+
authType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"OAuth2">, z.ZodLiteral<"PAT">]>>;
|
|
131579
|
+
customUrl: z.ZodOptional<z.ZodString>;
|
|
131580
|
+
}, "strip", z.ZodTypeAny, {
|
|
131581
|
+
id: string;
|
|
131582
|
+
email?: string | undefined;
|
|
131583
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131584
|
+
handle?: string | undefined;
|
|
131585
|
+
avatarUrl?: string | undefined;
|
|
131586
|
+
customUrl?: string | undefined;
|
|
131587
|
+
}, {
|
|
131588
|
+
id: string;
|
|
131589
|
+
email?: string | undefined;
|
|
131590
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131591
|
+
handle?: string | undefined;
|
|
131592
|
+
avatarUrl?: string | undefined;
|
|
131593
|
+
customUrl?: string | undefined;
|
|
131594
|
+
}>, "many">>;
|
|
131595
|
+
}, "strip", z.ZodTypeAny, {
|
|
131596
|
+
azure?: {
|
|
131597
|
+
id: string;
|
|
131598
|
+
email?: string | undefined;
|
|
131599
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131600
|
+
handle?: string | undefined;
|
|
131601
|
+
avatarUrl?: string | undefined;
|
|
131602
|
+
customUrl?: string | undefined;
|
|
131603
|
+
}[] | undefined;
|
|
131604
|
+
github?: {
|
|
131605
|
+
id: string;
|
|
131606
|
+
email?: string | undefined;
|
|
131607
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131608
|
+
handle?: string | undefined;
|
|
131609
|
+
avatarUrl?: string | undefined;
|
|
131610
|
+
customUrl?: string | undefined;
|
|
131611
|
+
}[] | undefined;
|
|
131612
|
+
gitlab?: {
|
|
131613
|
+
id: string;
|
|
131614
|
+
email?: string | undefined;
|
|
131615
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131616
|
+
handle?: string | undefined;
|
|
131617
|
+
avatarUrl?: string | undefined;
|
|
131618
|
+
customUrl?: string | undefined;
|
|
131619
|
+
}[] | undefined;
|
|
131620
|
+
bitbucket?: {
|
|
131621
|
+
id: string;
|
|
131622
|
+
email?: string | undefined;
|
|
131623
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131624
|
+
handle?: string | undefined;
|
|
131625
|
+
avatarUrl?: string | undefined;
|
|
131626
|
+
customUrl?: string | undefined;
|
|
131627
|
+
}[] | undefined;
|
|
131628
|
+
figma?: {
|
|
131629
|
+
id: string;
|
|
131630
|
+
email?: string | undefined;
|
|
131631
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131632
|
+
handle?: string | undefined;
|
|
131633
|
+
avatarUrl?: string | undefined;
|
|
131634
|
+
customUrl?: string | undefined;
|
|
131635
|
+
} | undefined;
|
|
131636
|
+
}, {
|
|
131637
|
+
azure?: {
|
|
131638
|
+
id: string;
|
|
131639
|
+
email?: string | undefined;
|
|
131640
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131641
|
+
handle?: string | undefined;
|
|
131642
|
+
avatarUrl?: string | undefined;
|
|
131643
|
+
customUrl?: string | undefined;
|
|
131644
|
+
}[] | undefined;
|
|
131645
|
+
github?: {
|
|
131646
|
+
id: string;
|
|
131647
|
+
email?: string | undefined;
|
|
131648
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131649
|
+
handle?: string | undefined;
|
|
131650
|
+
avatarUrl?: string | undefined;
|
|
131651
|
+
customUrl?: string | undefined;
|
|
131652
|
+
}[] | undefined;
|
|
131653
|
+
gitlab?: {
|
|
131654
|
+
id: string;
|
|
131655
|
+
email?: string | undefined;
|
|
131656
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131657
|
+
handle?: string | undefined;
|
|
131658
|
+
avatarUrl?: string | undefined;
|
|
131659
|
+
customUrl?: string | undefined;
|
|
131660
|
+
}[] | undefined;
|
|
131661
|
+
bitbucket?: {
|
|
131662
|
+
id: string;
|
|
131663
|
+
email?: string | undefined;
|
|
131664
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131665
|
+
handle?: string | undefined;
|
|
131666
|
+
avatarUrl?: string | undefined;
|
|
131667
|
+
customUrl?: string | undefined;
|
|
131668
|
+
}[] | undefined;
|
|
131669
|
+
figma?: {
|
|
131670
|
+
id: string;
|
|
131671
|
+
email?: string | undefined;
|
|
131672
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131673
|
+
handle?: string | undefined;
|
|
131674
|
+
avatarUrl?: string | undefined;
|
|
131675
|
+
customUrl?: string | undefined;
|
|
131676
|
+
} | undefined;
|
|
131677
|
+
}>>;
|
|
131678
|
+
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
131679
|
+
isProtected: z.ZodBoolean;
|
|
131680
|
+
source: z.ZodOptional<z.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
131681
|
+
}, "strip", z.ZodTypeAny, {
|
|
131682
|
+
id: string;
|
|
131683
|
+
createdAt: Date;
|
|
131684
|
+
email: string;
|
|
131685
|
+
profile: {
|
|
131686
|
+
name: string;
|
|
131687
|
+
avatar?: string | undefined;
|
|
131688
|
+
nickname?: string | undefined;
|
|
131689
|
+
onboarding?: {
|
|
131690
|
+
companyName?: string | undefined;
|
|
131691
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
131692
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
131693
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
131694
|
+
jobTitle?: string | undefined;
|
|
131695
|
+
phase?: string | undefined;
|
|
131696
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
131697
|
+
designSystemName?: string | undefined;
|
|
131698
|
+
defaultDestination?: string | undefined;
|
|
131699
|
+
figmaUrl?: string | undefined;
|
|
131700
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
131701
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
131702
|
+
} | undefined;
|
|
131703
|
+
};
|
|
131704
|
+
emailVerified: boolean;
|
|
131705
|
+
isProtected: boolean;
|
|
131706
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
131707
|
+
trialExpiresAt?: Date | undefined;
|
|
131708
|
+
linkedIntegrations?: {
|
|
131709
|
+
azure?: {
|
|
131710
|
+
id: string;
|
|
131711
|
+
email?: string | undefined;
|
|
131712
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131713
|
+
handle?: string | undefined;
|
|
131714
|
+
avatarUrl?: string | undefined;
|
|
131715
|
+
customUrl?: string | undefined;
|
|
131716
|
+
}[] | undefined;
|
|
131717
|
+
github?: {
|
|
131718
|
+
id: string;
|
|
131719
|
+
email?: string | undefined;
|
|
131720
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131721
|
+
handle?: string | undefined;
|
|
131722
|
+
avatarUrl?: string | undefined;
|
|
131723
|
+
customUrl?: string | undefined;
|
|
131724
|
+
}[] | undefined;
|
|
131725
|
+
gitlab?: {
|
|
131726
|
+
id: string;
|
|
131727
|
+
email?: string | undefined;
|
|
131728
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131729
|
+
handle?: string | undefined;
|
|
131730
|
+
avatarUrl?: string | undefined;
|
|
131731
|
+
customUrl?: string | undefined;
|
|
131732
|
+
}[] | undefined;
|
|
131733
|
+
bitbucket?: {
|
|
131734
|
+
id: string;
|
|
131735
|
+
email?: string | undefined;
|
|
131736
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131737
|
+
handle?: string | undefined;
|
|
131738
|
+
avatarUrl?: string | undefined;
|
|
131739
|
+
customUrl?: string | undefined;
|
|
131740
|
+
}[] | undefined;
|
|
131741
|
+
figma?: {
|
|
131742
|
+
id: string;
|
|
131743
|
+
email?: string | undefined;
|
|
131744
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131745
|
+
handle?: string | undefined;
|
|
131746
|
+
avatarUrl?: string | undefined;
|
|
131747
|
+
customUrl?: string | undefined;
|
|
131748
|
+
} | undefined;
|
|
131749
|
+
} | undefined;
|
|
131750
|
+
loggedOutAt?: Date | undefined;
|
|
131751
|
+
}, {
|
|
131752
|
+
id: string;
|
|
131753
|
+
createdAt: Date;
|
|
131754
|
+
email: string;
|
|
131755
|
+
profile: {
|
|
131756
|
+
name: string;
|
|
131757
|
+
avatar?: string | undefined;
|
|
131758
|
+
nickname?: string | undefined;
|
|
131759
|
+
onboarding?: {
|
|
131760
|
+
companyName?: string | undefined;
|
|
131761
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
131762
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
131763
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
131764
|
+
jobTitle?: string | undefined;
|
|
131765
|
+
phase?: string | undefined;
|
|
131766
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
131767
|
+
designSystemName?: string | undefined;
|
|
131768
|
+
defaultDestination?: string | undefined;
|
|
131769
|
+
figmaUrl?: string | undefined;
|
|
131770
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
131771
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
131772
|
+
} | undefined;
|
|
131773
|
+
};
|
|
131774
|
+
emailVerified: boolean;
|
|
131775
|
+
isProtected: boolean;
|
|
131776
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
131777
|
+
trialExpiresAt?: Date | undefined;
|
|
131778
|
+
linkedIntegrations?: {
|
|
131779
|
+
azure?: {
|
|
131780
|
+
id: string;
|
|
131781
|
+
email?: string | undefined;
|
|
131782
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131783
|
+
handle?: string | undefined;
|
|
131784
|
+
avatarUrl?: string | undefined;
|
|
131785
|
+
customUrl?: string | undefined;
|
|
131786
|
+
}[] | undefined;
|
|
131787
|
+
github?: {
|
|
131788
|
+
id: string;
|
|
131789
|
+
email?: string | undefined;
|
|
131790
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131791
|
+
handle?: string | undefined;
|
|
131792
|
+
avatarUrl?: string | undefined;
|
|
131793
|
+
customUrl?: string | undefined;
|
|
131794
|
+
}[] | undefined;
|
|
131795
|
+
gitlab?: {
|
|
131796
|
+
id: string;
|
|
131797
|
+
email?: string | undefined;
|
|
131798
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131799
|
+
handle?: string | undefined;
|
|
131800
|
+
avatarUrl?: string | undefined;
|
|
131801
|
+
customUrl?: string | undefined;
|
|
131802
|
+
}[] | undefined;
|
|
131803
|
+
bitbucket?: {
|
|
131804
|
+
id: string;
|
|
131805
|
+
email?: string | undefined;
|
|
131806
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131807
|
+
handle?: string | undefined;
|
|
131808
|
+
avatarUrl?: string | undefined;
|
|
131809
|
+
customUrl?: string | undefined;
|
|
131810
|
+
}[] | undefined;
|
|
131811
|
+
figma?: {
|
|
131812
|
+
id: string;
|
|
131813
|
+
email?: string | undefined;
|
|
131814
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131815
|
+
handle?: string | undefined;
|
|
131816
|
+
avatarUrl?: string | undefined;
|
|
131817
|
+
customUrl?: string | undefined;
|
|
131818
|
+
} | undefined;
|
|
131819
|
+
} | undefined;
|
|
131820
|
+
loggedOutAt?: Date | undefined;
|
|
131821
|
+
}>;
|
|
131822
|
+
documentationDomain: z.ZodOptional<z.ZodString>;
|
|
131823
|
+
}, "strip", z.ZodTypeAny, {
|
|
131824
|
+
invitedBy: {
|
|
131825
|
+
id: string;
|
|
131826
|
+
createdAt: Date;
|
|
131827
|
+
email: string;
|
|
131828
|
+
profile: {
|
|
131829
|
+
name: string;
|
|
131830
|
+
avatar?: string | undefined;
|
|
131831
|
+
nickname?: string | undefined;
|
|
131832
|
+
onboarding?: {
|
|
131833
|
+
companyName?: string | undefined;
|
|
131834
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
131835
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
131836
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
131837
|
+
jobTitle?: string | undefined;
|
|
131838
|
+
phase?: string | undefined;
|
|
131839
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
131840
|
+
designSystemName?: string | undefined;
|
|
131841
|
+
defaultDestination?: string | undefined;
|
|
131842
|
+
figmaUrl?: string | undefined;
|
|
131843
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
131844
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
131845
|
+
} | undefined;
|
|
131846
|
+
};
|
|
131847
|
+
emailVerified: boolean;
|
|
131848
|
+
isProtected: boolean;
|
|
131849
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
131850
|
+
trialExpiresAt?: Date | undefined;
|
|
131851
|
+
linkedIntegrations?: {
|
|
131852
|
+
azure?: {
|
|
131853
|
+
id: string;
|
|
131854
|
+
email?: string | undefined;
|
|
131855
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131856
|
+
handle?: string | undefined;
|
|
131857
|
+
avatarUrl?: string | undefined;
|
|
131858
|
+
customUrl?: string | undefined;
|
|
131859
|
+
}[] | undefined;
|
|
131860
|
+
github?: {
|
|
131861
|
+
id: string;
|
|
131862
|
+
email?: string | undefined;
|
|
131863
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131864
|
+
handle?: string | undefined;
|
|
131865
|
+
avatarUrl?: string | undefined;
|
|
131866
|
+
customUrl?: string | undefined;
|
|
131867
|
+
}[] | undefined;
|
|
131868
|
+
gitlab?: {
|
|
131869
|
+
id: string;
|
|
131870
|
+
email?: string | undefined;
|
|
131871
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131872
|
+
handle?: string | undefined;
|
|
131873
|
+
avatarUrl?: string | undefined;
|
|
131874
|
+
customUrl?: string | undefined;
|
|
131875
|
+
}[] | undefined;
|
|
131876
|
+
bitbucket?: {
|
|
131877
|
+
id: string;
|
|
131878
|
+
email?: string | undefined;
|
|
131879
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131880
|
+
handle?: string | undefined;
|
|
131881
|
+
avatarUrl?: string | undefined;
|
|
131882
|
+
customUrl?: string | undefined;
|
|
131883
|
+
}[] | undefined;
|
|
131884
|
+
figma?: {
|
|
131885
|
+
id: string;
|
|
131886
|
+
email?: string | undefined;
|
|
131887
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131888
|
+
handle?: string | undefined;
|
|
131889
|
+
avatarUrl?: string | undefined;
|
|
131890
|
+
customUrl?: string | undefined;
|
|
131891
|
+
} | undefined;
|
|
131892
|
+
} | undefined;
|
|
131893
|
+
loggedOutAt?: Date | undefined;
|
|
131894
|
+
};
|
|
131895
|
+
designSystem: {
|
|
131896
|
+
id: string;
|
|
131897
|
+
createdAt: Date;
|
|
131898
|
+
updatedAt: Date;
|
|
131899
|
+
name: string;
|
|
131900
|
+
description: string;
|
|
131901
|
+
isPublic: boolean;
|
|
131902
|
+
workspaceId: string;
|
|
131903
|
+
docSlug: string;
|
|
131904
|
+
docSlugDeprecated: string;
|
|
131905
|
+
isMultibrand: boolean;
|
|
131906
|
+
basePrefixes: string[];
|
|
131907
|
+
isApprovalFeatureEnabled: boolean;
|
|
131908
|
+
approvalRequiredForPublishing: boolean;
|
|
131909
|
+
accessMode: "Open" | "InviteOnly";
|
|
131910
|
+
membersGenerated: boolean;
|
|
131911
|
+
docExporterId?: string | undefined;
|
|
131912
|
+
docUserSlug?: string | undefined;
|
|
131913
|
+
docViewUrl?: string | undefined;
|
|
131914
|
+
designSystemSwitcher?: {
|
|
131915
|
+
isEnabled: boolean;
|
|
131916
|
+
designSystemIds: string[];
|
|
131917
|
+
} | undefined;
|
|
131918
|
+
};
|
|
131919
|
+
documentationDomain?: string | undefined;
|
|
131920
|
+
}, {
|
|
131921
|
+
invitedBy: {
|
|
131922
|
+
id: string;
|
|
131923
|
+
createdAt: Date;
|
|
131924
|
+
email: string;
|
|
131925
|
+
profile: {
|
|
131926
|
+
name: string;
|
|
131927
|
+
avatar?: string | undefined;
|
|
131928
|
+
nickname?: string | undefined;
|
|
131929
|
+
onboarding?: {
|
|
131930
|
+
companyName?: string | undefined;
|
|
131931
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
131932
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
131933
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
131934
|
+
jobTitle?: string | undefined;
|
|
131935
|
+
phase?: string | undefined;
|
|
131936
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
131937
|
+
designSystemName?: string | undefined;
|
|
131938
|
+
defaultDestination?: string | undefined;
|
|
131939
|
+
figmaUrl?: string | undefined;
|
|
131940
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
131941
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
131942
|
+
} | undefined;
|
|
131943
|
+
};
|
|
131944
|
+
emailVerified: boolean;
|
|
131945
|
+
isProtected: boolean;
|
|
131946
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
131947
|
+
trialExpiresAt?: Date | undefined;
|
|
131948
|
+
linkedIntegrations?: {
|
|
131949
|
+
azure?: {
|
|
131950
|
+
id: string;
|
|
131951
|
+
email?: string | undefined;
|
|
131952
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131953
|
+
handle?: string | undefined;
|
|
131954
|
+
avatarUrl?: string | undefined;
|
|
131955
|
+
customUrl?: string | undefined;
|
|
131956
|
+
}[] | undefined;
|
|
131957
|
+
github?: {
|
|
131958
|
+
id: string;
|
|
131959
|
+
email?: string | undefined;
|
|
131960
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131961
|
+
handle?: string | undefined;
|
|
131962
|
+
avatarUrl?: string | undefined;
|
|
131963
|
+
customUrl?: string | undefined;
|
|
131964
|
+
}[] | undefined;
|
|
131965
|
+
gitlab?: {
|
|
131966
|
+
id: string;
|
|
131967
|
+
email?: string | undefined;
|
|
131968
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131969
|
+
handle?: string | undefined;
|
|
131970
|
+
avatarUrl?: string | undefined;
|
|
131971
|
+
customUrl?: string | undefined;
|
|
131972
|
+
}[] | undefined;
|
|
131973
|
+
bitbucket?: {
|
|
131974
|
+
id: string;
|
|
131975
|
+
email?: string | undefined;
|
|
131976
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131977
|
+
handle?: string | undefined;
|
|
131978
|
+
avatarUrl?: string | undefined;
|
|
131979
|
+
customUrl?: string | undefined;
|
|
131980
|
+
}[] | undefined;
|
|
131981
|
+
figma?: {
|
|
131982
|
+
id: string;
|
|
131983
|
+
email?: string | undefined;
|
|
131984
|
+
authType?: "OAuth2" | "PAT" | undefined;
|
|
131985
|
+
handle?: string | undefined;
|
|
131986
|
+
avatarUrl?: string | undefined;
|
|
131987
|
+
customUrl?: string | undefined;
|
|
131988
|
+
} | undefined;
|
|
131989
|
+
} | undefined;
|
|
131990
|
+
loggedOutAt?: Date | undefined;
|
|
131991
|
+
};
|
|
131992
|
+
designSystem: {
|
|
131993
|
+
id: string;
|
|
131994
|
+
createdAt: Date;
|
|
131995
|
+
updatedAt: Date;
|
|
131996
|
+
name: string;
|
|
131997
|
+
description: string;
|
|
131998
|
+
isPublic: boolean;
|
|
131999
|
+
workspaceId: string;
|
|
132000
|
+
docSlug: string;
|
|
132001
|
+
docSlugDeprecated: string;
|
|
132002
|
+
isMultibrand: boolean;
|
|
132003
|
+
basePrefixes: string[];
|
|
132004
|
+
isApprovalFeatureEnabled: boolean;
|
|
132005
|
+
approvalRequiredForPublishing: boolean;
|
|
132006
|
+
accessMode: "Open" | "InviteOnly";
|
|
132007
|
+
membersGenerated: boolean;
|
|
132008
|
+
docExporterId?: string | null | undefined;
|
|
132009
|
+
docUserSlug?: string | null | undefined;
|
|
132010
|
+
docViewUrl?: string | null | undefined;
|
|
132011
|
+
designSystemSwitcher?: {
|
|
132012
|
+
isEnabled: boolean;
|
|
132013
|
+
designSystemIds: string[];
|
|
132014
|
+
} | null | undefined;
|
|
132015
|
+
};
|
|
132016
|
+
documentationDomain?: string | undefined;
|
|
132017
|
+
}>;
|
|
132018
|
+
type DesignSystemInviteEmailData = z.infer<typeof DesignSystemInviteEmailData>;
|
|
132019
|
+
|
|
131295
132020
|
declare const Event: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
131296
132021
|
type: z.ZodLiteral<"DesignSystemVersionReleased">;
|
|
131297
132022
|
workspaceId: z.ZodString;
|
|
@@ -162452,295 +163177,13 @@ declare const HANDLE_MIN_LENGTH = 2;
|
|
|
162452
163177
|
declare const HANDLE_MAX_LENGTH = 64;
|
|
162453
163178
|
declare const CreateWorkspaceInput: z.ZodObject<{
|
|
162454
163179
|
name: z.ZodString;
|
|
162455
|
-
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
162456
|
-
priceId: z.ZodString;
|
|
162457
|
-
billingEmail: z.ZodOptional<z.ZodString>;
|
|
162458
163180
|
handle: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
162459
|
-
invites: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
162460
|
-
email: z.ZodEffects<z.ZodString, string, string>;
|
|
162461
|
-
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
162462
|
-
}, "strip", z.ZodTypeAny, {
|
|
162463
|
-
email: string;
|
|
162464
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
162465
|
-
}, {
|
|
162466
|
-
email: string;
|
|
162467
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
162468
|
-
}>, "many">>;
|
|
162469
|
-
promoCode: z.ZodOptional<z.ZodString>;
|
|
162470
|
-
status: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
|
|
162471
|
-
planInterval: z.ZodOptional<z.ZodEnum<["daily", "monthly", "weekly", "yearly"]>>;
|
|
162472
|
-
seats: z.ZodOptional<z.ZodNumber>;
|
|
162473
|
-
seatLimit: z.ZodOptional<z.ZodNumber>;
|
|
162474
|
-
card: z.ZodOptional<z.ZodObject<{
|
|
162475
|
-
cardId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
162476
|
-
last4: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
162477
|
-
expiryMonth: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
162478
|
-
expiryYear: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
162479
|
-
brand: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
162480
|
-
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
162481
|
-
}, "strip", z.ZodTypeAny, {
|
|
162482
|
-
cardId?: string | null | undefined;
|
|
162483
|
-
last4?: string | null | undefined;
|
|
162484
|
-
expiryMonth?: string | null | undefined;
|
|
162485
|
-
expiryYear?: string | null | undefined;
|
|
162486
|
-
brand?: string | null | undefined;
|
|
162487
|
-
name?: string | null | undefined;
|
|
162488
|
-
}, {
|
|
162489
|
-
cardId?: string | null | undefined;
|
|
162490
|
-
last4?: string | null | undefined;
|
|
162491
|
-
expiryMonth?: string | null | undefined;
|
|
162492
|
-
expiryYear?: string | null | undefined;
|
|
162493
|
-
brand?: string | null | undefined;
|
|
162494
|
-
name?: string | null | undefined;
|
|
162495
|
-
}>>;
|
|
162496
|
-
sso: z.ZodOptional<z.ZodObject<{
|
|
162497
|
-
providerId: z.ZodString;
|
|
162498
|
-
defaultAutoInviteValue: z.ZodBoolean;
|
|
162499
|
-
autoInviteDomains: z.ZodRecord<z.ZodString, z.ZodBoolean>;
|
|
162500
|
-
skipDocsSupernovaLogin: z.ZodBoolean;
|
|
162501
|
-
areInvitesDisabled: z.ZodBoolean;
|
|
162502
|
-
isTestMode: z.ZodBoolean;
|
|
162503
|
-
emailDomains: z.ZodArray<z.ZodString, "many">;
|
|
162504
|
-
metadataXml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
162505
|
-
}, "strip", z.ZodTypeAny, {
|
|
162506
|
-
providerId: string;
|
|
162507
|
-
defaultAutoInviteValue: boolean;
|
|
162508
|
-
autoInviteDomains: Record<string, boolean>;
|
|
162509
|
-
skipDocsSupernovaLogin: boolean;
|
|
162510
|
-
areInvitesDisabled: boolean;
|
|
162511
|
-
isTestMode: boolean;
|
|
162512
|
-
emailDomains: string[];
|
|
162513
|
-
metadataXml?: string | null | undefined;
|
|
162514
|
-
}, {
|
|
162515
|
-
providerId: string;
|
|
162516
|
-
defaultAutoInviteValue: boolean;
|
|
162517
|
-
autoInviteDomains: Record<string, boolean>;
|
|
162518
|
-
skipDocsSupernovaLogin: boolean;
|
|
162519
|
-
areInvitesDisabled: boolean;
|
|
162520
|
-
isTestMode: boolean;
|
|
162521
|
-
emailDomains: string[];
|
|
162522
|
-
metadataXml?: string | null | undefined;
|
|
162523
|
-
}>>;
|
|
162524
|
-
npmRegistrySettings: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
162525
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]>;
|
|
162526
|
-
enabledScopes: z.ZodArray<z.ZodString, "many">;
|
|
162527
|
-
customRegistryUrl: z.ZodOptional<z.ZodString>;
|
|
162528
|
-
bypassProxy: z.ZodDefault<z.ZodBoolean>;
|
|
162529
|
-
npmProxyRegistryConfigId: z.ZodOptional<z.ZodString>;
|
|
162530
|
-
npmProxyVersion: z.ZodOptional<z.ZodNumber>;
|
|
162531
|
-
}, "strip", z.ZodTypeAny, {
|
|
162532
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
162533
|
-
enabledScopes: string[];
|
|
162534
|
-
bypassProxy: boolean;
|
|
162535
|
-
customRegistryUrl?: string | undefined;
|
|
162536
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
162537
|
-
npmProxyVersion?: number | undefined;
|
|
162538
|
-
}, {
|
|
162539
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
162540
|
-
enabledScopes: string[];
|
|
162541
|
-
customRegistryUrl?: string | undefined;
|
|
162542
|
-
bypassProxy?: boolean | undefined;
|
|
162543
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
162544
|
-
npmProxyVersion?: number | undefined;
|
|
162545
|
-
}>, z.ZodDiscriminatedUnion<"authType", [z.ZodObject<{
|
|
162546
|
-
authType: z.ZodLiteral<"Basic">;
|
|
162547
|
-
username: z.ZodString;
|
|
162548
|
-
password: z.ZodString;
|
|
162549
|
-
}, "strip", z.ZodTypeAny, {
|
|
162550
|
-
password: string;
|
|
162551
|
-
username: string;
|
|
162552
|
-
authType: "Basic";
|
|
162553
|
-
}, {
|
|
162554
|
-
password: string;
|
|
162555
|
-
username: string;
|
|
162556
|
-
authType: "Basic";
|
|
162557
|
-
}>, z.ZodObject<{
|
|
162558
|
-
authType: z.ZodLiteral<"Bearer">;
|
|
162559
|
-
accessToken: z.ZodString;
|
|
162560
|
-
}, "strip", z.ZodTypeAny, {
|
|
162561
|
-
accessToken: string;
|
|
162562
|
-
authType: "Bearer";
|
|
162563
|
-
}, {
|
|
162564
|
-
accessToken: string;
|
|
162565
|
-
authType: "Bearer";
|
|
162566
|
-
}>, z.ZodObject<{
|
|
162567
|
-
authType: z.ZodLiteral<"None">;
|
|
162568
|
-
}, "strip", z.ZodTypeAny, {
|
|
162569
|
-
authType: "None";
|
|
162570
|
-
}, {
|
|
162571
|
-
authType: "None";
|
|
162572
|
-
}>, z.ZodObject<{
|
|
162573
|
-
authType: z.ZodLiteral<"Custom">;
|
|
162574
|
-
authHeaderName: z.ZodString;
|
|
162575
|
-
authHeaderValue: z.ZodString;
|
|
162576
|
-
}, "strip", z.ZodTypeAny, {
|
|
162577
|
-
authType: "Custom";
|
|
162578
|
-
authHeaderName: string;
|
|
162579
|
-
authHeaderValue: string;
|
|
162580
|
-
}, {
|
|
162581
|
-
authType: "Custom";
|
|
162582
|
-
authHeaderName: string;
|
|
162583
|
-
authHeaderValue: string;
|
|
162584
|
-
}>]>>>;
|
|
162585
|
-
ipWhitelist: z.ZodOptional<z.ZodObject<{
|
|
162586
|
-
isEnabledForCloud: z.ZodBoolean;
|
|
162587
|
-
isEnabledForDocs: z.ZodBoolean;
|
|
162588
|
-
entries: z.ZodArray<z.ZodObject<{
|
|
162589
|
-
isEnabled: z.ZodBoolean;
|
|
162590
|
-
name: z.ZodString;
|
|
162591
|
-
range: z.ZodEffects<z.ZodString, string, string>;
|
|
162592
|
-
}, "strip", z.ZodTypeAny, {
|
|
162593
|
-
name: string;
|
|
162594
|
-
isEnabled: boolean;
|
|
162595
|
-
range: string;
|
|
162596
|
-
}, {
|
|
162597
|
-
name: string;
|
|
162598
|
-
isEnabled: boolean;
|
|
162599
|
-
range: string;
|
|
162600
|
-
}>, "many">;
|
|
162601
|
-
}, "strip", z.ZodTypeAny, {
|
|
162602
|
-
entries: {
|
|
162603
|
-
name: string;
|
|
162604
|
-
isEnabled: boolean;
|
|
162605
|
-
range: string;
|
|
162606
|
-
}[];
|
|
162607
|
-
isEnabledForCloud: boolean;
|
|
162608
|
-
isEnabledForDocs: boolean;
|
|
162609
|
-
}, {
|
|
162610
|
-
entries: {
|
|
162611
|
-
name: string;
|
|
162612
|
-
isEnabled: boolean;
|
|
162613
|
-
range: string;
|
|
162614
|
-
}[];
|
|
162615
|
-
isEnabledForCloud: boolean;
|
|
162616
|
-
isEnabledForDocs: boolean;
|
|
162617
|
-
}>>;
|
|
162618
163181
|
}, "strip", z.ZodTypeAny, {
|
|
162619
163182
|
name: string;
|
|
162620
|
-
priceId: string;
|
|
162621
|
-
product: "free" | "team" | "company" | "enterprise";
|
|
162622
|
-
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
162623
|
-
sso?: {
|
|
162624
|
-
providerId: string;
|
|
162625
|
-
defaultAutoInviteValue: boolean;
|
|
162626
|
-
autoInviteDomains: Record<string, boolean>;
|
|
162627
|
-
skipDocsSupernovaLogin: boolean;
|
|
162628
|
-
areInvitesDisabled: boolean;
|
|
162629
|
-
isTestMode: boolean;
|
|
162630
|
-
emailDomains: string[];
|
|
162631
|
-
metadataXml?: string | null | undefined;
|
|
162632
|
-
} | undefined;
|
|
162633
|
-
card?: {
|
|
162634
|
-
cardId?: string | null | undefined;
|
|
162635
|
-
last4?: string | null | undefined;
|
|
162636
|
-
expiryMonth?: string | null | undefined;
|
|
162637
|
-
expiryYear?: string | null | undefined;
|
|
162638
|
-
brand?: string | null | undefined;
|
|
162639
|
-
name?: string | null | undefined;
|
|
162640
|
-
} | undefined;
|
|
162641
|
-
planInterval?: "daily" | "monthly" | "weekly" | "yearly" | undefined;
|
|
162642
|
-
seats?: number | undefined;
|
|
162643
|
-
seatLimit?: number | undefined;
|
|
162644
163183
|
handle?: string | undefined;
|
|
162645
|
-
ipWhitelist?: {
|
|
162646
|
-
entries: {
|
|
162647
|
-
name: string;
|
|
162648
|
-
isEnabled: boolean;
|
|
162649
|
-
range: string;
|
|
162650
|
-
}[];
|
|
162651
|
-
isEnabledForCloud: boolean;
|
|
162652
|
-
isEnabledForDocs: boolean;
|
|
162653
|
-
} | undefined;
|
|
162654
|
-
npmRegistrySettings?: ({
|
|
162655
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
162656
|
-
enabledScopes: string[];
|
|
162657
|
-
bypassProxy: boolean;
|
|
162658
|
-
customRegistryUrl?: string | undefined;
|
|
162659
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
162660
|
-
npmProxyVersion?: number | undefined;
|
|
162661
|
-
} & ({
|
|
162662
|
-
password: string;
|
|
162663
|
-
username: string;
|
|
162664
|
-
authType: "Basic";
|
|
162665
|
-
} | {
|
|
162666
|
-
accessToken: string;
|
|
162667
|
-
authType: "Bearer";
|
|
162668
|
-
} | {
|
|
162669
|
-
authType: "None";
|
|
162670
|
-
} | {
|
|
162671
|
-
authType: "Custom";
|
|
162672
|
-
authHeaderName: string;
|
|
162673
|
-
authHeaderValue: string;
|
|
162674
|
-
})) | undefined;
|
|
162675
|
-
billingEmail?: string | undefined;
|
|
162676
|
-
invites?: {
|
|
162677
|
-
email: string;
|
|
162678
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
162679
|
-
}[] | undefined;
|
|
162680
|
-
promoCode?: string | undefined;
|
|
162681
163184
|
}, {
|
|
162682
163185
|
name: string;
|
|
162683
|
-
priceId: string;
|
|
162684
|
-
product: "free" | "team" | "company" | "enterprise";
|
|
162685
|
-
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
162686
|
-
sso?: {
|
|
162687
|
-
providerId: string;
|
|
162688
|
-
defaultAutoInviteValue: boolean;
|
|
162689
|
-
autoInviteDomains: Record<string, boolean>;
|
|
162690
|
-
skipDocsSupernovaLogin: boolean;
|
|
162691
|
-
areInvitesDisabled: boolean;
|
|
162692
|
-
isTestMode: boolean;
|
|
162693
|
-
emailDomains: string[];
|
|
162694
|
-
metadataXml?: string | null | undefined;
|
|
162695
|
-
} | undefined;
|
|
162696
|
-
card?: {
|
|
162697
|
-
cardId?: string | null | undefined;
|
|
162698
|
-
last4?: string | null | undefined;
|
|
162699
|
-
expiryMonth?: string | null | undefined;
|
|
162700
|
-
expiryYear?: string | null | undefined;
|
|
162701
|
-
brand?: string | null | undefined;
|
|
162702
|
-
name?: string | null | undefined;
|
|
162703
|
-
} | undefined;
|
|
162704
|
-
planInterval?: "daily" | "monthly" | "weekly" | "yearly" | undefined;
|
|
162705
|
-
seats?: number | undefined;
|
|
162706
|
-
seatLimit?: number | undefined;
|
|
162707
163186
|
handle?: string | undefined;
|
|
162708
|
-
ipWhitelist?: {
|
|
162709
|
-
entries: {
|
|
162710
|
-
name: string;
|
|
162711
|
-
isEnabled: boolean;
|
|
162712
|
-
range: string;
|
|
162713
|
-
}[];
|
|
162714
|
-
isEnabledForCloud: boolean;
|
|
162715
|
-
isEnabledForDocs: boolean;
|
|
162716
|
-
} | undefined;
|
|
162717
|
-
npmRegistrySettings?: ({
|
|
162718
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
162719
|
-
enabledScopes: string[];
|
|
162720
|
-
customRegistryUrl?: string | undefined;
|
|
162721
|
-
bypassProxy?: boolean | undefined;
|
|
162722
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
162723
|
-
npmProxyVersion?: number | undefined;
|
|
162724
|
-
} & ({
|
|
162725
|
-
password: string;
|
|
162726
|
-
username: string;
|
|
162727
|
-
authType: "Basic";
|
|
162728
|
-
} | {
|
|
162729
|
-
accessToken: string;
|
|
162730
|
-
authType: "Bearer";
|
|
162731
|
-
} | {
|
|
162732
|
-
authType: "None";
|
|
162733
|
-
} | {
|
|
162734
|
-
authType: "Custom";
|
|
162735
|
-
authHeaderName: string;
|
|
162736
|
-
authHeaderValue: string;
|
|
162737
|
-
})) | undefined;
|
|
162738
|
-
billingEmail?: string | undefined;
|
|
162739
|
-
invites?: {
|
|
162740
|
-
email: string;
|
|
162741
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
162742
|
-
}[] | undefined;
|
|
162743
|
-
promoCode?: string | undefined;
|
|
162744
163187
|
}>;
|
|
162745
163188
|
type CreateWorkspaceInput = z.infer<typeof CreateWorkspaceInput>;
|
|
162746
163189
|
|
|
@@ -162951,6 +163394,8 @@ declare const WorkspaceProfileUpdate: z.ZodObject<Omit<{
|
|
|
162951
163394
|
} | null | undefined;
|
|
162952
163395
|
}>;
|
|
162953
163396
|
type WorkspaceProfileUpdate = z.infer<typeof WorkspaceProfileUpdate>;
|
|
163397
|
+
type CreateWorkspaceDbInput = DbCreateInputOmit<Workspace>;
|
|
163398
|
+
type UpdateWorkspaceDbInput = DbUpdateInputOmit<Workspace>;
|
|
162954
163399
|
declare const WorkspaceIpWhitelistEntry: z.ZodObject<{
|
|
162955
163400
|
isEnabled: z.ZodBoolean;
|
|
162956
163401
|
name: z.ZodString;
|
|
@@ -166673,4 +167118,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
166673
167118
|
}>;
|
|
166674
167119
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
166675
167120
|
|
|
166676
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type 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 CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, DesignSystemInvite, DesignSystemMembers, DesignSystemMembership, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaNodeRenderFormat, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|
|
167121
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type 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 CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemMembers, DesignSystemMembership, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaNodeRenderFormat, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|