@supernova-studio/model 0.54.34 → 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 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;
@@ -166393,4 +167118,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
166393
167118
  }>;
166394
167119
  type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
166395
167120
 
166396
- 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, 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 };
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 };