@supernova-studio/model 1.10.0 → 1.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -162405,6 +162405,2572 @@ declare const FeatureFlag: z.ZodObject<{
162405
162405
  }>;
162406
162406
  type FeatureFlag = z.infer<typeof FeatureFlag>;
162407
162407
 
162408
+ declare const ForgeAvatarBuilder: z.ZodObject<{
162409
+ headType: z.ZodString;
162410
+ hairType: z.ZodString;
162411
+ accessory1Type: z.ZodString;
162412
+ accessory2Type: z.ZodString;
162413
+ }, "strip", z.ZodTypeAny, {
162414
+ headType: string;
162415
+ hairType: string;
162416
+ accessory1Type: string;
162417
+ accessory2Type: string;
162418
+ }, {
162419
+ headType: string;
162420
+ hairType: string;
162421
+ accessory1Type: string;
162422
+ accessory2Type: string;
162423
+ }>;
162424
+ type ForgeAvatarBuilder = z.infer<typeof ForgeAvatarBuilder>;
162425
+ declare const ForgeAgent: z.ZodObject<{
162426
+ avatar: z.ZodUnion<[z.ZodString, z.ZodObject<{
162427
+ headType: z.ZodString;
162428
+ hairType: z.ZodString;
162429
+ accessory1Type: z.ZodString;
162430
+ accessory2Type: z.ZodString;
162431
+ }, "strip", z.ZodTypeAny, {
162432
+ headType: string;
162433
+ hairType: string;
162434
+ accessory1Type: string;
162435
+ accessory2Type: string;
162436
+ }, {
162437
+ headType: string;
162438
+ hairType: string;
162439
+ accessory1Type: string;
162440
+ accessory2Type: string;
162441
+ }>]>;
162442
+ avatarUrl: z.ZodOptional<z.ZodString>;
162443
+ behavior: z.ZodEnum<["coder", "writer", "designer"]>;
162444
+ id: z.ZodString;
162445
+ name: z.ZodString;
162446
+ personality: z.ZodEnum<["neutral", "assertive", "crazy"]>;
162447
+ projectId: z.ZodString;
162448
+ }, "strip", z.ZodTypeAny, {
162449
+ avatar: string | {
162450
+ headType: string;
162451
+ hairType: string;
162452
+ accessory1Type: string;
162453
+ accessory2Type: string;
162454
+ };
162455
+ id: string;
162456
+ name: string;
162457
+ behavior: "designer" | "coder" | "writer";
162458
+ projectId: string;
162459
+ personality: "neutral" | "assertive" | "crazy";
162460
+ avatarUrl?: string | undefined;
162461
+ }, {
162462
+ avatar: string | {
162463
+ headType: string;
162464
+ hairType: string;
162465
+ accessory1Type: string;
162466
+ accessory2Type: string;
162467
+ };
162468
+ id: string;
162469
+ name: string;
162470
+ behavior: "designer" | "coder" | "writer";
162471
+ projectId: string;
162472
+ personality: "neutral" | "assertive" | "crazy";
162473
+ avatarUrl?: string | undefined;
162474
+ }>;
162475
+ type ForgeAgent = z.infer<typeof ForgeAgent>;
162476
+ type CreateForgeAgent = Omit<DbCreateInputOmit<ForgeAgent>, "projectId">;
162477
+ type UpdateForgeAgent = Omit<DbUpdate<ForgeAgent>, "projectId">;
162478
+
162479
+ declare const ForgeBuildArtifactFiles: z.ZodArray<z.ZodObject<{
162480
+ path: z.ZodString;
162481
+ content: z.ZodString;
162482
+ isVisibleToUser: z.ZodOptional<z.ZodBoolean>;
162483
+ }, "strip", z.ZodTypeAny, {
162484
+ path: string;
162485
+ content: string;
162486
+ isVisibleToUser?: boolean | undefined;
162487
+ }, {
162488
+ path: string;
162489
+ content: string;
162490
+ isVisibleToUser?: boolean | undefined;
162491
+ }>, "many">;
162492
+ declare const ForgeBuildArtifactEnvironment: z.ZodObject<{
162493
+ dependencies: z.ZodRecord<z.ZodString, z.ZodString>;
162494
+ }, "strip", z.ZodTypeAny, {
162495
+ dependencies: Record<string, string>;
162496
+ }, {
162497
+ dependencies: Record<string, string>;
162498
+ }>;
162499
+ declare const ForgeFileArtifact: z.ZodObject<z.objectUtil.extendShape<{
162500
+ id: z.ZodString;
162501
+ createdAt: z.ZodDate;
162502
+ projectIterationId: z.ZodString;
162503
+ }, {
162504
+ type: z.ZodEnum<["file/text", "file/pdf", "file/image"]>;
162505
+ fileName: z.ZodString;
162506
+ uploadedFileUrl: z.ZodString;
162507
+ }>, "strip", z.ZodTypeAny, {
162508
+ type: "file/text" | "file/pdf" | "file/image";
162509
+ id: string;
162510
+ createdAt: Date;
162511
+ fileName: string;
162512
+ projectIterationId: string;
162513
+ uploadedFileUrl: string;
162514
+ }, {
162515
+ type: "file/text" | "file/pdf" | "file/image";
162516
+ id: string;
162517
+ createdAt: Date;
162518
+ fileName: string;
162519
+ projectIterationId: string;
162520
+ uploadedFileUrl: string;
162521
+ }>;
162522
+ type ForgeFileArtifact = z.infer<typeof ForgeFileArtifact>;
162523
+ declare const ForgeFigmaArtifact: z.ZodObject<z.objectUtil.extendShape<{
162524
+ id: z.ZodString;
162525
+ createdAt: z.ZodDate;
162526
+ projectIterationId: z.ZodString;
162527
+ }, {
162528
+ type: z.ZodLiteral<"figma/node">;
162529
+ figmaFileUrl: z.ZodString;
162530
+ figmaNodeId: z.ZodString;
162531
+ figmaFileName: z.ZodOptional<z.ZodString>;
162532
+ previewUrl: z.ZodOptional<z.ZodString>;
162533
+ }>, "strip", z.ZodTypeAny, {
162534
+ type: "figma/node";
162535
+ id: string;
162536
+ createdAt: Date;
162537
+ projectIterationId: string;
162538
+ figmaFileUrl: string;
162539
+ figmaNodeId: string;
162540
+ previewUrl?: string | undefined;
162541
+ figmaFileName?: string | undefined;
162542
+ }, {
162543
+ type: "figma/node";
162544
+ id: string;
162545
+ createdAt: Date;
162546
+ projectIterationId: string;
162547
+ figmaFileUrl: string;
162548
+ figmaNodeId: string;
162549
+ previewUrl?: string | undefined;
162550
+ figmaFileName?: string | undefined;
162551
+ }>;
162552
+ type ForgeFigmaArtifact = z.infer<typeof ForgeFigmaArtifact>;
162553
+ declare const ForgeSpecArtifact: z.ZodObject<z.objectUtil.extendShape<{
162554
+ id: z.ZodString;
162555
+ createdAt: z.ZodDate;
162556
+ projectIterationId: z.ZodString;
162557
+ }, {
162558
+ type: z.ZodLiteral<"spec">;
162559
+ fileName: z.ZodString;
162560
+ yjsDocId: z.ZodString;
162561
+ markdownText: z.ZodString;
162562
+ }>, "strip", z.ZodTypeAny, {
162563
+ type: "spec";
162564
+ id: string;
162565
+ createdAt: Date;
162566
+ fileName: string;
162567
+ projectIterationId: string;
162568
+ yjsDocId: string;
162569
+ markdownText: string;
162570
+ }, {
162571
+ type: "spec";
162572
+ id: string;
162573
+ createdAt: Date;
162574
+ fileName: string;
162575
+ projectIterationId: string;
162576
+ yjsDocId: string;
162577
+ markdownText: string;
162578
+ }>;
162579
+ type ForgeSpecArtifact = z.infer<typeof ForgeSpecArtifact>;
162580
+ declare const ForgeBuildArtifact: z.ZodObject<z.objectUtil.extendShape<{
162581
+ id: z.ZodString;
162582
+ createdAt: z.ZodDate;
162583
+ projectIterationId: z.ZodString;
162584
+ }, {
162585
+ type: z.ZodLiteral<"build">;
162586
+ participantId: z.ZodString;
162587
+ files: z.ZodArray<z.ZodObject<{
162588
+ path: z.ZodString;
162589
+ content: z.ZodString;
162590
+ isVisibleToUser: z.ZodOptional<z.ZodBoolean>;
162591
+ }, "strip", z.ZodTypeAny, {
162592
+ path: string;
162593
+ content: string;
162594
+ isVisibleToUser?: boolean | undefined;
162595
+ }, {
162596
+ path: string;
162597
+ content: string;
162598
+ isVisibleToUser?: boolean | undefined;
162599
+ }>, "many">;
162600
+ environment: z.ZodObject<{
162601
+ dependencies: z.ZodRecord<z.ZodString, z.ZodString>;
162602
+ }, "strip", z.ZodTypeAny, {
162603
+ dependencies: Record<string, string>;
162604
+ }, {
162605
+ dependencies: Record<string, string>;
162606
+ }>;
162607
+ }>, "strip", z.ZodTypeAny, {
162608
+ type: "build";
162609
+ files: {
162610
+ path: string;
162611
+ content: string;
162612
+ isVisibleToUser?: boolean | undefined;
162613
+ }[];
162614
+ id: string;
162615
+ createdAt: Date;
162616
+ environment: {
162617
+ dependencies: Record<string, string>;
162618
+ };
162619
+ projectIterationId: string;
162620
+ participantId: string;
162621
+ }, {
162622
+ type: "build";
162623
+ files: {
162624
+ path: string;
162625
+ content: string;
162626
+ isVisibleToUser?: boolean | undefined;
162627
+ }[];
162628
+ id: string;
162629
+ createdAt: Date;
162630
+ environment: {
162631
+ dependencies: Record<string, string>;
162632
+ };
162633
+ projectIterationId: string;
162634
+ participantId: string;
162635
+ }>;
162636
+ type ForgeBuildArtifact = z.infer<typeof ForgeBuildArtifact>;
162637
+ declare const ForgeArtifact: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
162638
+ id: z.ZodString;
162639
+ createdAt: z.ZodDate;
162640
+ projectIterationId: z.ZodString;
162641
+ }, {
162642
+ type: z.ZodLiteral<"build">;
162643
+ participantId: z.ZodString;
162644
+ files: z.ZodArray<z.ZodObject<{
162645
+ path: z.ZodString;
162646
+ content: z.ZodString;
162647
+ isVisibleToUser: z.ZodOptional<z.ZodBoolean>;
162648
+ }, "strip", z.ZodTypeAny, {
162649
+ path: string;
162650
+ content: string;
162651
+ isVisibleToUser?: boolean | undefined;
162652
+ }, {
162653
+ path: string;
162654
+ content: string;
162655
+ isVisibleToUser?: boolean | undefined;
162656
+ }>, "many">;
162657
+ environment: z.ZodObject<{
162658
+ dependencies: z.ZodRecord<z.ZodString, z.ZodString>;
162659
+ }, "strip", z.ZodTypeAny, {
162660
+ dependencies: Record<string, string>;
162661
+ }, {
162662
+ dependencies: Record<string, string>;
162663
+ }>;
162664
+ }>, "strip", z.ZodTypeAny, {
162665
+ type: "build";
162666
+ files: {
162667
+ path: string;
162668
+ content: string;
162669
+ isVisibleToUser?: boolean | undefined;
162670
+ }[];
162671
+ id: string;
162672
+ createdAt: Date;
162673
+ environment: {
162674
+ dependencies: Record<string, string>;
162675
+ };
162676
+ projectIterationId: string;
162677
+ participantId: string;
162678
+ }, {
162679
+ type: "build";
162680
+ files: {
162681
+ path: string;
162682
+ content: string;
162683
+ isVisibleToUser?: boolean | undefined;
162684
+ }[];
162685
+ id: string;
162686
+ createdAt: Date;
162687
+ environment: {
162688
+ dependencies: Record<string, string>;
162689
+ };
162690
+ projectIterationId: string;
162691
+ participantId: string;
162692
+ }>, z.ZodObject<z.objectUtil.extendShape<{
162693
+ id: z.ZodString;
162694
+ createdAt: z.ZodDate;
162695
+ projectIterationId: z.ZodString;
162696
+ }, {
162697
+ type: z.ZodLiteral<"spec">;
162698
+ fileName: z.ZodString;
162699
+ yjsDocId: z.ZodString;
162700
+ markdownText: z.ZodString;
162701
+ }>, "strip", z.ZodTypeAny, {
162702
+ type: "spec";
162703
+ id: string;
162704
+ createdAt: Date;
162705
+ fileName: string;
162706
+ projectIterationId: string;
162707
+ yjsDocId: string;
162708
+ markdownText: string;
162709
+ }, {
162710
+ type: "spec";
162711
+ id: string;
162712
+ createdAt: Date;
162713
+ fileName: string;
162714
+ projectIterationId: string;
162715
+ yjsDocId: string;
162716
+ markdownText: string;
162717
+ }>, z.ZodObject<z.objectUtil.extendShape<{
162718
+ id: z.ZodString;
162719
+ createdAt: z.ZodDate;
162720
+ projectIterationId: z.ZodString;
162721
+ }, {
162722
+ type: z.ZodLiteral<"figma/node">;
162723
+ figmaFileUrl: z.ZodString;
162724
+ figmaNodeId: z.ZodString;
162725
+ figmaFileName: z.ZodOptional<z.ZodString>;
162726
+ previewUrl: z.ZodOptional<z.ZodString>;
162727
+ }>, "strip", z.ZodTypeAny, {
162728
+ type: "figma/node";
162729
+ id: string;
162730
+ createdAt: Date;
162731
+ projectIterationId: string;
162732
+ figmaFileUrl: string;
162733
+ figmaNodeId: string;
162734
+ previewUrl?: string | undefined;
162735
+ figmaFileName?: string | undefined;
162736
+ }, {
162737
+ type: "figma/node";
162738
+ id: string;
162739
+ createdAt: Date;
162740
+ projectIterationId: string;
162741
+ figmaFileUrl: string;
162742
+ figmaNodeId: string;
162743
+ previewUrl?: string | undefined;
162744
+ figmaFileName?: string | undefined;
162745
+ }>, z.ZodObject<z.objectUtil.extendShape<{
162746
+ id: z.ZodString;
162747
+ createdAt: z.ZodDate;
162748
+ projectIterationId: z.ZodString;
162749
+ }, {
162750
+ type: z.ZodEnum<["file/text", "file/pdf", "file/image"]>;
162751
+ fileName: z.ZodString;
162752
+ uploadedFileUrl: z.ZodString;
162753
+ }>, "strip", z.ZodTypeAny, {
162754
+ type: "file/text" | "file/pdf" | "file/image";
162755
+ id: string;
162756
+ createdAt: Date;
162757
+ fileName: string;
162758
+ projectIterationId: string;
162759
+ uploadedFileUrl: string;
162760
+ }, {
162761
+ type: "file/text" | "file/pdf" | "file/image";
162762
+ id: string;
162763
+ createdAt: Date;
162764
+ fileName: string;
162765
+ projectIterationId: string;
162766
+ uploadedFileUrl: string;
162767
+ }>]>;
162768
+ type ForgeArtifact = z.infer<typeof ForgeArtifact>;
162769
+
162770
+ declare const ForgeIterationMessageStep: z.ZodObject<{
162771
+ name: z.ZodString;
162772
+ text: z.ZodString;
162773
+ status: z.ZodEnum<["pending", "started", "completed", "error"]>;
162774
+ }, "strip", z.ZodTypeAny, {
162775
+ status: "error" | "pending" | "started" | "completed";
162776
+ name: string;
162777
+ text: string;
162778
+ }, {
162779
+ status: "error" | "pending" | "started" | "completed";
162780
+ name: string;
162781
+ text: string;
162782
+ }>;
162783
+ declare const ForgeIterationMessage: z.ZodObject<{
162784
+ id: z.ZodString;
162785
+ createdAt: z.ZodDate;
162786
+ participantId: z.ZodString;
162787
+ participant: z.ZodObject<{
162788
+ id: z.ZodString;
162789
+ agentId: z.ZodOptional<z.ZodString>;
162790
+ agent: z.ZodOptional<z.ZodObject<{
162791
+ avatar: z.ZodUnion<[z.ZodString, z.ZodObject<{
162792
+ headType: z.ZodString;
162793
+ hairType: z.ZodString;
162794
+ accessory1Type: z.ZodString;
162795
+ accessory2Type: z.ZodString;
162796
+ }, "strip", z.ZodTypeAny, {
162797
+ headType: string;
162798
+ hairType: string;
162799
+ accessory1Type: string;
162800
+ accessory2Type: string;
162801
+ }, {
162802
+ headType: string;
162803
+ hairType: string;
162804
+ accessory1Type: string;
162805
+ accessory2Type: string;
162806
+ }>]>;
162807
+ avatarUrl: z.ZodOptional<z.ZodString>;
162808
+ behavior: z.ZodEnum<["coder", "writer", "designer"]>;
162809
+ id: z.ZodString;
162810
+ name: z.ZodString;
162811
+ personality: z.ZodEnum<["neutral", "assertive", "crazy"]>;
162812
+ projectId: z.ZodString;
162813
+ }, "strip", z.ZodTypeAny, {
162814
+ avatar: string | {
162815
+ headType: string;
162816
+ hairType: string;
162817
+ accessory1Type: string;
162818
+ accessory2Type: string;
162819
+ };
162820
+ id: string;
162821
+ name: string;
162822
+ behavior: "designer" | "coder" | "writer";
162823
+ projectId: string;
162824
+ personality: "neutral" | "assertive" | "crazy";
162825
+ avatarUrl?: string | undefined;
162826
+ }, {
162827
+ avatar: string | {
162828
+ headType: string;
162829
+ hairType: string;
162830
+ accessory1Type: string;
162831
+ accessory2Type: string;
162832
+ };
162833
+ id: string;
162834
+ name: string;
162835
+ behavior: "designer" | "coder" | "writer";
162836
+ projectId: string;
162837
+ personality: "neutral" | "assertive" | "crazy";
162838
+ avatarUrl?: string | undefined;
162839
+ }>>;
162840
+ projectIterationId: z.ZodString;
162841
+ role: z.ZodEnum<["editor", "viewer"]>;
162842
+ type: z.ZodEnum<["Agent", "User"]>;
162843
+ userId: z.ZodOptional<z.ZodString>;
162844
+ user: z.ZodOptional<z.ZodObject<{
162845
+ id: z.ZodString;
162846
+ email: z.ZodString;
162847
+ createdAt: z.ZodDate;
162848
+ profile: z.ZodObject<{
162849
+ name: z.ZodString;
162850
+ avatar: z.ZodOptional<z.ZodString>;
162851
+ nickname: z.ZodOptional<z.ZodString>;
162852
+ onboarding: z.ZodOptional<z.ZodObject<{
162853
+ companyName: z.ZodOptional<z.ZodString>;
162854
+ numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
162855
+ numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
162856
+ department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
162857
+ jobTitle: z.ZodOptional<z.ZodString>;
162858
+ phase: z.ZodOptional<z.ZodString>;
162859
+ jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
162860
+ designSystemName: z.ZodOptional<z.ZodString>;
162861
+ defaultDestination: z.ZodOptional<z.ZodString>;
162862
+ figmaUrl: z.ZodOptional<z.ZodString>;
162863
+ isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
162864
+ isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
162865
+ }, "strip", z.ZodTypeAny, {
162866
+ companyName?: string | undefined;
162867
+ numberOfPeopleInOrg?: string | undefined;
162868
+ numberOfPeopleInDesignTeam?: string | undefined;
162869
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
162870
+ jobTitle?: string | undefined;
162871
+ phase?: string | undefined;
162872
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
162873
+ designSystemName?: string | undefined;
162874
+ defaultDestination?: string | undefined;
162875
+ figmaUrl?: string | undefined;
162876
+ isPageDraftOnboardingFinished?: boolean | undefined;
162877
+ isApprovalsOnboardingFinished?: boolean | undefined;
162878
+ }, {
162879
+ companyName?: string | undefined;
162880
+ numberOfPeopleInOrg?: string | undefined;
162881
+ numberOfPeopleInDesignTeam?: string | undefined;
162882
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
162883
+ jobTitle?: string | undefined;
162884
+ phase?: string | undefined;
162885
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
162886
+ designSystemName?: string | undefined;
162887
+ defaultDestination?: string | undefined;
162888
+ figmaUrl?: string | undefined;
162889
+ isPageDraftOnboardingFinished?: boolean | undefined;
162890
+ isApprovalsOnboardingFinished?: boolean | undefined;
162891
+ }>>;
162892
+ theme: z.ZodOptional<z.ZodObject<{
162893
+ preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
162894
+ backgroundColor: z.ZodOptional<z.ZodString>;
162895
+ accentColor: z.ZodOptional<z.ZodString>;
162896
+ contrast: z.ZodOptional<z.ZodNumber>;
162897
+ isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
162898
+ secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
162899
+ secondaryContrast: z.ZodOptional<z.ZodNumber>;
162900
+ isEditorWhite: z.ZodOptional<z.ZodBoolean>;
162901
+ }, "strip", z.ZodTypeAny, {
162902
+ backgroundColor?: string | undefined;
162903
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
162904
+ accentColor?: string | undefined;
162905
+ contrast?: number | undefined;
162906
+ isSecondaryEnabled?: boolean | undefined;
162907
+ secondaryBackgroundColor?: string | undefined;
162908
+ secondaryContrast?: number | undefined;
162909
+ isEditorWhite?: boolean | undefined;
162910
+ }, {
162911
+ backgroundColor?: string | undefined;
162912
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
162913
+ accentColor?: string | undefined;
162914
+ contrast?: number | undefined;
162915
+ isSecondaryEnabled?: boolean | undefined;
162916
+ secondaryBackgroundColor?: string | undefined;
162917
+ secondaryContrast?: number | undefined;
162918
+ isEditorWhite?: boolean | undefined;
162919
+ }>>;
162920
+ }, "strip", z.ZodTypeAny, {
162921
+ name: string;
162922
+ avatar?: string | undefined;
162923
+ nickname?: string | undefined;
162924
+ theme?: {
162925
+ backgroundColor?: string | undefined;
162926
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
162927
+ accentColor?: string | undefined;
162928
+ contrast?: number | undefined;
162929
+ isSecondaryEnabled?: boolean | undefined;
162930
+ secondaryBackgroundColor?: string | undefined;
162931
+ secondaryContrast?: number | undefined;
162932
+ isEditorWhite?: boolean | undefined;
162933
+ } | undefined;
162934
+ onboarding?: {
162935
+ companyName?: string | undefined;
162936
+ numberOfPeopleInOrg?: string | undefined;
162937
+ numberOfPeopleInDesignTeam?: string | undefined;
162938
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
162939
+ jobTitle?: string | undefined;
162940
+ phase?: string | undefined;
162941
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
162942
+ designSystemName?: string | undefined;
162943
+ defaultDestination?: string | undefined;
162944
+ figmaUrl?: string | undefined;
162945
+ isPageDraftOnboardingFinished?: boolean | undefined;
162946
+ isApprovalsOnboardingFinished?: boolean | undefined;
162947
+ } | undefined;
162948
+ }, {
162949
+ name: string;
162950
+ avatar?: string | undefined;
162951
+ nickname?: string | undefined;
162952
+ theme?: {
162953
+ backgroundColor?: string | undefined;
162954
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
162955
+ accentColor?: string | undefined;
162956
+ contrast?: number | undefined;
162957
+ isSecondaryEnabled?: boolean | undefined;
162958
+ secondaryBackgroundColor?: string | undefined;
162959
+ secondaryContrast?: number | undefined;
162960
+ isEditorWhite?: boolean | undefined;
162961
+ } | undefined;
162962
+ onboarding?: {
162963
+ companyName?: string | undefined;
162964
+ numberOfPeopleInOrg?: string | undefined;
162965
+ numberOfPeopleInDesignTeam?: string | undefined;
162966
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
162967
+ jobTitle?: string | undefined;
162968
+ phase?: string | undefined;
162969
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
162970
+ designSystemName?: string | undefined;
162971
+ defaultDestination?: string | undefined;
162972
+ figmaUrl?: string | undefined;
162973
+ isPageDraftOnboardingFinished?: boolean | undefined;
162974
+ isApprovalsOnboardingFinished?: boolean | undefined;
162975
+ } | undefined;
162976
+ }>;
162977
+ loggedOutAt: z.ZodOptional<z.ZodDate>;
162978
+ isProtected: z.ZodBoolean;
162979
+ source: z.ZodOptional<z.ZodEnum<["SignUp", "Invite", "SSO"]>>;
162980
+ }, "strip", z.ZodTypeAny, {
162981
+ email: string;
162982
+ id: string;
162983
+ profile: {
162984
+ name: string;
162985
+ avatar?: string | undefined;
162986
+ nickname?: string | undefined;
162987
+ theme?: {
162988
+ backgroundColor?: string | undefined;
162989
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
162990
+ accentColor?: string | undefined;
162991
+ contrast?: number | undefined;
162992
+ isSecondaryEnabled?: boolean | undefined;
162993
+ secondaryBackgroundColor?: string | undefined;
162994
+ secondaryContrast?: number | undefined;
162995
+ isEditorWhite?: boolean | undefined;
162996
+ } | undefined;
162997
+ onboarding?: {
162998
+ companyName?: string | undefined;
162999
+ numberOfPeopleInOrg?: string | undefined;
163000
+ numberOfPeopleInDesignTeam?: string | undefined;
163001
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
163002
+ jobTitle?: string | undefined;
163003
+ phase?: string | undefined;
163004
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
163005
+ designSystemName?: string | undefined;
163006
+ defaultDestination?: string | undefined;
163007
+ figmaUrl?: string | undefined;
163008
+ isPageDraftOnboardingFinished?: boolean | undefined;
163009
+ isApprovalsOnboardingFinished?: boolean | undefined;
163010
+ } | undefined;
163011
+ };
163012
+ createdAt: Date;
163013
+ isProtected: boolean;
163014
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
163015
+ loggedOutAt?: Date | undefined;
163016
+ }, {
163017
+ email: string;
163018
+ id: string;
163019
+ profile: {
163020
+ name: string;
163021
+ avatar?: string | undefined;
163022
+ nickname?: string | undefined;
163023
+ theme?: {
163024
+ backgroundColor?: string | undefined;
163025
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
163026
+ accentColor?: string | undefined;
163027
+ contrast?: number | undefined;
163028
+ isSecondaryEnabled?: boolean | undefined;
163029
+ secondaryBackgroundColor?: string | undefined;
163030
+ secondaryContrast?: number | undefined;
163031
+ isEditorWhite?: boolean | undefined;
163032
+ } | undefined;
163033
+ onboarding?: {
163034
+ companyName?: string | undefined;
163035
+ numberOfPeopleInOrg?: string | undefined;
163036
+ numberOfPeopleInDesignTeam?: string | undefined;
163037
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
163038
+ jobTitle?: string | undefined;
163039
+ phase?: string | undefined;
163040
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
163041
+ designSystemName?: string | undefined;
163042
+ defaultDestination?: string | undefined;
163043
+ figmaUrl?: string | undefined;
163044
+ isPageDraftOnboardingFinished?: boolean | undefined;
163045
+ isApprovalsOnboardingFinished?: boolean | undefined;
163046
+ } | undefined;
163047
+ };
163048
+ createdAt: Date;
163049
+ isProtected: boolean;
163050
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
163051
+ loggedOutAt?: Date | undefined;
163052
+ }>>;
163053
+ }, "strip", z.ZodTypeAny, {
163054
+ type: "User" | "Agent";
163055
+ id: string;
163056
+ role: "editor" | "viewer";
163057
+ projectIterationId: string;
163058
+ user?: {
163059
+ email: string;
163060
+ id: string;
163061
+ profile: {
163062
+ name: string;
163063
+ avatar?: string | undefined;
163064
+ nickname?: string | undefined;
163065
+ theme?: {
163066
+ backgroundColor?: string | undefined;
163067
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
163068
+ accentColor?: string | undefined;
163069
+ contrast?: number | undefined;
163070
+ isSecondaryEnabled?: boolean | undefined;
163071
+ secondaryBackgroundColor?: string | undefined;
163072
+ secondaryContrast?: number | undefined;
163073
+ isEditorWhite?: boolean | undefined;
163074
+ } | undefined;
163075
+ onboarding?: {
163076
+ companyName?: string | undefined;
163077
+ numberOfPeopleInOrg?: string | undefined;
163078
+ numberOfPeopleInDesignTeam?: string | undefined;
163079
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
163080
+ jobTitle?: string | undefined;
163081
+ phase?: string | undefined;
163082
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
163083
+ designSystemName?: string | undefined;
163084
+ defaultDestination?: string | undefined;
163085
+ figmaUrl?: string | undefined;
163086
+ isPageDraftOnboardingFinished?: boolean | undefined;
163087
+ isApprovalsOnboardingFinished?: boolean | undefined;
163088
+ } | undefined;
163089
+ };
163090
+ createdAt: Date;
163091
+ isProtected: boolean;
163092
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
163093
+ loggedOutAt?: Date | undefined;
163094
+ } | undefined;
163095
+ userId?: string | undefined;
163096
+ agentId?: string | undefined;
163097
+ agent?: {
163098
+ avatar: string | {
163099
+ headType: string;
163100
+ hairType: string;
163101
+ accessory1Type: string;
163102
+ accessory2Type: string;
163103
+ };
163104
+ id: string;
163105
+ name: string;
163106
+ behavior: "designer" | "coder" | "writer";
163107
+ projectId: string;
163108
+ personality: "neutral" | "assertive" | "crazy";
163109
+ avatarUrl?: string | undefined;
163110
+ } | undefined;
163111
+ }, {
163112
+ type: "User" | "Agent";
163113
+ id: string;
163114
+ role: "editor" | "viewer";
163115
+ projectIterationId: string;
163116
+ user?: {
163117
+ email: string;
163118
+ id: string;
163119
+ profile: {
163120
+ name: string;
163121
+ avatar?: string | undefined;
163122
+ nickname?: string | undefined;
163123
+ theme?: {
163124
+ backgroundColor?: string | undefined;
163125
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
163126
+ accentColor?: string | undefined;
163127
+ contrast?: number | undefined;
163128
+ isSecondaryEnabled?: boolean | undefined;
163129
+ secondaryBackgroundColor?: string | undefined;
163130
+ secondaryContrast?: number | undefined;
163131
+ isEditorWhite?: boolean | undefined;
163132
+ } | undefined;
163133
+ onboarding?: {
163134
+ companyName?: string | undefined;
163135
+ numberOfPeopleInOrg?: string | undefined;
163136
+ numberOfPeopleInDesignTeam?: string | undefined;
163137
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
163138
+ jobTitle?: string | undefined;
163139
+ phase?: string | undefined;
163140
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
163141
+ designSystemName?: string | undefined;
163142
+ defaultDestination?: string | undefined;
163143
+ figmaUrl?: string | undefined;
163144
+ isPageDraftOnboardingFinished?: boolean | undefined;
163145
+ isApprovalsOnboardingFinished?: boolean | undefined;
163146
+ } | undefined;
163147
+ };
163148
+ createdAt: Date;
163149
+ isProtected: boolean;
163150
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
163151
+ loggedOutAt?: Date | undefined;
163152
+ } | undefined;
163153
+ userId?: string | undefined;
163154
+ agentId?: string | undefined;
163155
+ agent?: {
163156
+ avatar: string | {
163157
+ headType: string;
163158
+ hairType: string;
163159
+ accessory1Type: string;
163160
+ accessory2Type: string;
163161
+ };
163162
+ id: string;
163163
+ name: string;
163164
+ behavior: "designer" | "coder" | "writer";
163165
+ projectId: string;
163166
+ personality: "neutral" | "assertive" | "crazy";
163167
+ avatarUrl?: string | undefined;
163168
+ } | undefined;
163169
+ }>;
163170
+ projectIterationId: z.ZodString;
163171
+ steps: z.ZodOptional<z.ZodArray<z.ZodObject<{
163172
+ name: z.ZodString;
163173
+ text: z.ZodString;
163174
+ status: z.ZodEnum<["pending", "started", "completed", "error"]>;
163175
+ }, "strip", z.ZodTypeAny, {
163176
+ status: "error" | "pending" | "started" | "completed";
163177
+ name: string;
163178
+ text: string;
163179
+ }, {
163180
+ status: "error" | "pending" | "started" | "completed";
163181
+ name: string;
163182
+ text: string;
163183
+ }>, "many">>;
163184
+ type: z.ZodEnum<["note", "action", "steps"]>;
163185
+ text: z.ZodString;
163186
+ }, "strip", z.ZodTypeAny, {
163187
+ type: "steps" | "note" | "action";
163188
+ id: string;
163189
+ createdAt: Date;
163190
+ text: string;
163191
+ projectIterationId: string;
163192
+ participantId: string;
163193
+ participant: {
163194
+ type: "User" | "Agent";
163195
+ id: string;
163196
+ role: "editor" | "viewer";
163197
+ projectIterationId: string;
163198
+ user?: {
163199
+ email: string;
163200
+ id: string;
163201
+ profile: {
163202
+ name: string;
163203
+ avatar?: string | undefined;
163204
+ nickname?: string | undefined;
163205
+ theme?: {
163206
+ backgroundColor?: string | undefined;
163207
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
163208
+ accentColor?: string | undefined;
163209
+ contrast?: number | undefined;
163210
+ isSecondaryEnabled?: boolean | undefined;
163211
+ secondaryBackgroundColor?: string | undefined;
163212
+ secondaryContrast?: number | undefined;
163213
+ isEditorWhite?: boolean | undefined;
163214
+ } | undefined;
163215
+ onboarding?: {
163216
+ companyName?: string | undefined;
163217
+ numberOfPeopleInOrg?: string | undefined;
163218
+ numberOfPeopleInDesignTeam?: string | undefined;
163219
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
163220
+ jobTitle?: string | undefined;
163221
+ phase?: string | undefined;
163222
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
163223
+ designSystemName?: string | undefined;
163224
+ defaultDestination?: string | undefined;
163225
+ figmaUrl?: string | undefined;
163226
+ isPageDraftOnboardingFinished?: boolean | undefined;
163227
+ isApprovalsOnboardingFinished?: boolean | undefined;
163228
+ } | undefined;
163229
+ };
163230
+ createdAt: Date;
163231
+ isProtected: boolean;
163232
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
163233
+ loggedOutAt?: Date | undefined;
163234
+ } | undefined;
163235
+ userId?: string | undefined;
163236
+ agentId?: string | undefined;
163237
+ agent?: {
163238
+ avatar: string | {
163239
+ headType: string;
163240
+ hairType: string;
163241
+ accessory1Type: string;
163242
+ accessory2Type: string;
163243
+ };
163244
+ id: string;
163245
+ name: string;
163246
+ behavior: "designer" | "coder" | "writer";
163247
+ projectId: string;
163248
+ personality: "neutral" | "assertive" | "crazy";
163249
+ avatarUrl?: string | undefined;
163250
+ } | undefined;
163251
+ };
163252
+ steps?: {
163253
+ status: "error" | "pending" | "started" | "completed";
163254
+ name: string;
163255
+ text: string;
163256
+ }[] | undefined;
163257
+ }, {
163258
+ type: "steps" | "note" | "action";
163259
+ id: string;
163260
+ createdAt: Date;
163261
+ text: string;
163262
+ projectIterationId: string;
163263
+ participantId: string;
163264
+ participant: {
163265
+ type: "User" | "Agent";
163266
+ id: string;
163267
+ role: "editor" | "viewer";
163268
+ projectIterationId: string;
163269
+ user?: {
163270
+ email: string;
163271
+ id: string;
163272
+ profile: {
163273
+ name: string;
163274
+ avatar?: string | undefined;
163275
+ nickname?: string | undefined;
163276
+ theme?: {
163277
+ backgroundColor?: string | undefined;
163278
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
163279
+ accentColor?: string | undefined;
163280
+ contrast?: number | undefined;
163281
+ isSecondaryEnabled?: boolean | undefined;
163282
+ secondaryBackgroundColor?: string | undefined;
163283
+ secondaryContrast?: number | undefined;
163284
+ isEditorWhite?: boolean | undefined;
163285
+ } | undefined;
163286
+ onboarding?: {
163287
+ companyName?: string | undefined;
163288
+ numberOfPeopleInOrg?: string | undefined;
163289
+ numberOfPeopleInDesignTeam?: string | undefined;
163290
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
163291
+ jobTitle?: string | undefined;
163292
+ phase?: string | undefined;
163293
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
163294
+ designSystemName?: string | undefined;
163295
+ defaultDestination?: string | undefined;
163296
+ figmaUrl?: string | undefined;
163297
+ isPageDraftOnboardingFinished?: boolean | undefined;
163298
+ isApprovalsOnboardingFinished?: boolean | undefined;
163299
+ } | undefined;
163300
+ };
163301
+ createdAt: Date;
163302
+ isProtected: boolean;
163303
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
163304
+ loggedOutAt?: Date | undefined;
163305
+ } | undefined;
163306
+ userId?: string | undefined;
163307
+ agentId?: string | undefined;
163308
+ agent?: {
163309
+ avatar: string | {
163310
+ headType: string;
163311
+ hairType: string;
163312
+ accessory1Type: string;
163313
+ accessory2Type: string;
163314
+ };
163315
+ id: string;
163316
+ name: string;
163317
+ behavior: "designer" | "coder" | "writer";
163318
+ projectId: string;
163319
+ personality: "neutral" | "assertive" | "crazy";
163320
+ avatarUrl?: string | undefined;
163321
+ } | undefined;
163322
+ };
163323
+ steps?: {
163324
+ status: "error" | "pending" | "started" | "completed";
163325
+ name: string;
163326
+ text: string;
163327
+ }[] | undefined;
163328
+ }>;
163329
+ type ForgeIterationMessage = z.infer<typeof ForgeIterationMessage>;
163330
+
163331
+ declare const ForgeMeta: z.ZodObject<{
163332
+ name: z.ZodString;
163333
+ description: z.ZodOptional<z.ZodString>;
163334
+ }, "strip", z.ZodTypeAny, {
163335
+ name: string;
163336
+ description?: string | undefined;
163337
+ }, {
163338
+ name: string;
163339
+ description?: string | undefined;
163340
+ }>;
163341
+ type ForgeMeta = z.infer<typeof ForgeMeta>;
163342
+
163343
+ declare const ForgeParticipant: z.ZodObject<{
163344
+ id: z.ZodString;
163345
+ agentId: z.ZodOptional<z.ZodString>;
163346
+ agent: z.ZodOptional<z.ZodObject<{
163347
+ avatar: z.ZodUnion<[z.ZodString, z.ZodObject<{
163348
+ headType: z.ZodString;
163349
+ hairType: z.ZodString;
163350
+ accessory1Type: z.ZodString;
163351
+ accessory2Type: z.ZodString;
163352
+ }, "strip", z.ZodTypeAny, {
163353
+ headType: string;
163354
+ hairType: string;
163355
+ accessory1Type: string;
163356
+ accessory2Type: string;
163357
+ }, {
163358
+ headType: string;
163359
+ hairType: string;
163360
+ accessory1Type: string;
163361
+ accessory2Type: string;
163362
+ }>]>;
163363
+ avatarUrl: z.ZodOptional<z.ZodString>;
163364
+ behavior: z.ZodEnum<["coder", "writer", "designer"]>;
163365
+ id: z.ZodString;
163366
+ name: z.ZodString;
163367
+ personality: z.ZodEnum<["neutral", "assertive", "crazy"]>;
163368
+ projectId: z.ZodString;
163369
+ }, "strip", z.ZodTypeAny, {
163370
+ avatar: string | {
163371
+ headType: string;
163372
+ hairType: string;
163373
+ accessory1Type: string;
163374
+ accessory2Type: string;
163375
+ };
163376
+ id: string;
163377
+ name: string;
163378
+ behavior: "designer" | "coder" | "writer";
163379
+ projectId: string;
163380
+ personality: "neutral" | "assertive" | "crazy";
163381
+ avatarUrl?: string | undefined;
163382
+ }, {
163383
+ avatar: string | {
163384
+ headType: string;
163385
+ hairType: string;
163386
+ accessory1Type: string;
163387
+ accessory2Type: string;
163388
+ };
163389
+ id: string;
163390
+ name: string;
163391
+ behavior: "designer" | "coder" | "writer";
163392
+ projectId: string;
163393
+ personality: "neutral" | "assertive" | "crazy";
163394
+ avatarUrl?: string | undefined;
163395
+ }>>;
163396
+ projectIterationId: z.ZodString;
163397
+ role: z.ZodEnum<["editor", "viewer"]>;
163398
+ type: z.ZodEnum<["Agent", "User"]>;
163399
+ userId: z.ZodOptional<z.ZodString>;
163400
+ user: z.ZodOptional<z.ZodObject<{
163401
+ id: z.ZodString;
163402
+ email: z.ZodString;
163403
+ createdAt: z.ZodDate;
163404
+ profile: z.ZodObject<{
163405
+ name: z.ZodString;
163406
+ avatar: z.ZodOptional<z.ZodString>;
163407
+ nickname: z.ZodOptional<z.ZodString>;
163408
+ onboarding: z.ZodOptional<z.ZodObject<{
163409
+ companyName: z.ZodOptional<z.ZodString>;
163410
+ numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
163411
+ numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
163412
+ department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
163413
+ jobTitle: z.ZodOptional<z.ZodString>;
163414
+ phase: z.ZodOptional<z.ZodString>;
163415
+ jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
163416
+ designSystemName: z.ZodOptional<z.ZodString>;
163417
+ defaultDestination: z.ZodOptional<z.ZodString>;
163418
+ figmaUrl: z.ZodOptional<z.ZodString>;
163419
+ isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
163420
+ isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
163421
+ }, "strip", z.ZodTypeAny, {
163422
+ companyName?: string | undefined;
163423
+ numberOfPeopleInOrg?: string | undefined;
163424
+ numberOfPeopleInDesignTeam?: string | undefined;
163425
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
163426
+ jobTitle?: string | undefined;
163427
+ phase?: string | undefined;
163428
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
163429
+ designSystemName?: string | undefined;
163430
+ defaultDestination?: string | undefined;
163431
+ figmaUrl?: string | undefined;
163432
+ isPageDraftOnboardingFinished?: boolean | undefined;
163433
+ isApprovalsOnboardingFinished?: boolean | undefined;
163434
+ }, {
163435
+ companyName?: string | undefined;
163436
+ numberOfPeopleInOrg?: string | undefined;
163437
+ numberOfPeopleInDesignTeam?: string | undefined;
163438
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
163439
+ jobTitle?: string | undefined;
163440
+ phase?: string | undefined;
163441
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
163442
+ designSystemName?: string | undefined;
163443
+ defaultDestination?: string | undefined;
163444
+ figmaUrl?: string | undefined;
163445
+ isPageDraftOnboardingFinished?: boolean | undefined;
163446
+ isApprovalsOnboardingFinished?: boolean | undefined;
163447
+ }>>;
163448
+ theme: z.ZodOptional<z.ZodObject<{
163449
+ preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
163450
+ backgroundColor: z.ZodOptional<z.ZodString>;
163451
+ accentColor: z.ZodOptional<z.ZodString>;
163452
+ contrast: z.ZodOptional<z.ZodNumber>;
163453
+ isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
163454
+ secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
163455
+ secondaryContrast: z.ZodOptional<z.ZodNumber>;
163456
+ isEditorWhite: z.ZodOptional<z.ZodBoolean>;
163457
+ }, "strip", z.ZodTypeAny, {
163458
+ backgroundColor?: string | undefined;
163459
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
163460
+ accentColor?: string | undefined;
163461
+ contrast?: number | undefined;
163462
+ isSecondaryEnabled?: boolean | undefined;
163463
+ secondaryBackgroundColor?: string | undefined;
163464
+ secondaryContrast?: number | undefined;
163465
+ isEditorWhite?: boolean | undefined;
163466
+ }, {
163467
+ backgroundColor?: string | undefined;
163468
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
163469
+ accentColor?: string | undefined;
163470
+ contrast?: number | undefined;
163471
+ isSecondaryEnabled?: boolean | undefined;
163472
+ secondaryBackgroundColor?: string | undefined;
163473
+ secondaryContrast?: number | undefined;
163474
+ isEditorWhite?: boolean | undefined;
163475
+ }>>;
163476
+ }, "strip", z.ZodTypeAny, {
163477
+ name: string;
163478
+ avatar?: string | undefined;
163479
+ nickname?: string | undefined;
163480
+ theme?: {
163481
+ backgroundColor?: string | undefined;
163482
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
163483
+ accentColor?: string | undefined;
163484
+ contrast?: number | undefined;
163485
+ isSecondaryEnabled?: boolean | undefined;
163486
+ secondaryBackgroundColor?: string | undefined;
163487
+ secondaryContrast?: number | undefined;
163488
+ isEditorWhite?: boolean | undefined;
163489
+ } | undefined;
163490
+ onboarding?: {
163491
+ companyName?: string | undefined;
163492
+ numberOfPeopleInOrg?: string | undefined;
163493
+ numberOfPeopleInDesignTeam?: string | undefined;
163494
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
163495
+ jobTitle?: string | undefined;
163496
+ phase?: string | undefined;
163497
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
163498
+ designSystemName?: string | undefined;
163499
+ defaultDestination?: string | undefined;
163500
+ figmaUrl?: string | undefined;
163501
+ isPageDraftOnboardingFinished?: boolean | undefined;
163502
+ isApprovalsOnboardingFinished?: boolean | undefined;
163503
+ } | undefined;
163504
+ }, {
163505
+ name: string;
163506
+ avatar?: string | undefined;
163507
+ nickname?: string | undefined;
163508
+ theme?: {
163509
+ backgroundColor?: string | undefined;
163510
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
163511
+ accentColor?: string | undefined;
163512
+ contrast?: number | undefined;
163513
+ isSecondaryEnabled?: boolean | undefined;
163514
+ secondaryBackgroundColor?: string | undefined;
163515
+ secondaryContrast?: number | undefined;
163516
+ isEditorWhite?: boolean | undefined;
163517
+ } | undefined;
163518
+ onboarding?: {
163519
+ companyName?: string | undefined;
163520
+ numberOfPeopleInOrg?: string | undefined;
163521
+ numberOfPeopleInDesignTeam?: string | undefined;
163522
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
163523
+ jobTitle?: string | undefined;
163524
+ phase?: string | undefined;
163525
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
163526
+ designSystemName?: string | undefined;
163527
+ defaultDestination?: string | undefined;
163528
+ figmaUrl?: string | undefined;
163529
+ isPageDraftOnboardingFinished?: boolean | undefined;
163530
+ isApprovalsOnboardingFinished?: boolean | undefined;
163531
+ } | undefined;
163532
+ }>;
163533
+ loggedOutAt: z.ZodOptional<z.ZodDate>;
163534
+ isProtected: z.ZodBoolean;
163535
+ source: z.ZodOptional<z.ZodEnum<["SignUp", "Invite", "SSO"]>>;
163536
+ }, "strip", z.ZodTypeAny, {
163537
+ email: string;
163538
+ id: string;
163539
+ profile: {
163540
+ name: string;
163541
+ avatar?: string | undefined;
163542
+ nickname?: string | undefined;
163543
+ theme?: {
163544
+ backgroundColor?: string | undefined;
163545
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
163546
+ accentColor?: string | undefined;
163547
+ contrast?: number | undefined;
163548
+ isSecondaryEnabled?: boolean | undefined;
163549
+ secondaryBackgroundColor?: string | undefined;
163550
+ secondaryContrast?: number | undefined;
163551
+ isEditorWhite?: boolean | undefined;
163552
+ } | undefined;
163553
+ onboarding?: {
163554
+ companyName?: string | undefined;
163555
+ numberOfPeopleInOrg?: string | undefined;
163556
+ numberOfPeopleInDesignTeam?: string | undefined;
163557
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
163558
+ jobTitle?: string | undefined;
163559
+ phase?: string | undefined;
163560
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
163561
+ designSystemName?: string | undefined;
163562
+ defaultDestination?: string | undefined;
163563
+ figmaUrl?: string | undefined;
163564
+ isPageDraftOnboardingFinished?: boolean | undefined;
163565
+ isApprovalsOnboardingFinished?: boolean | undefined;
163566
+ } | undefined;
163567
+ };
163568
+ createdAt: Date;
163569
+ isProtected: boolean;
163570
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
163571
+ loggedOutAt?: Date | undefined;
163572
+ }, {
163573
+ email: string;
163574
+ id: string;
163575
+ profile: {
163576
+ name: string;
163577
+ avatar?: string | undefined;
163578
+ nickname?: string | undefined;
163579
+ theme?: {
163580
+ backgroundColor?: string | undefined;
163581
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
163582
+ accentColor?: string | undefined;
163583
+ contrast?: number | undefined;
163584
+ isSecondaryEnabled?: boolean | undefined;
163585
+ secondaryBackgroundColor?: string | undefined;
163586
+ secondaryContrast?: number | undefined;
163587
+ isEditorWhite?: boolean | undefined;
163588
+ } | undefined;
163589
+ onboarding?: {
163590
+ companyName?: string | undefined;
163591
+ numberOfPeopleInOrg?: string | undefined;
163592
+ numberOfPeopleInDesignTeam?: string | undefined;
163593
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
163594
+ jobTitle?: string | undefined;
163595
+ phase?: string | undefined;
163596
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
163597
+ designSystemName?: string | undefined;
163598
+ defaultDestination?: string | undefined;
163599
+ figmaUrl?: string | undefined;
163600
+ isPageDraftOnboardingFinished?: boolean | undefined;
163601
+ isApprovalsOnboardingFinished?: boolean | undefined;
163602
+ } | undefined;
163603
+ };
163604
+ createdAt: Date;
163605
+ isProtected: boolean;
163606
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
163607
+ loggedOutAt?: Date | undefined;
163608
+ }>>;
163609
+ }, "strip", z.ZodTypeAny, {
163610
+ type: "User" | "Agent";
163611
+ id: string;
163612
+ role: "editor" | "viewer";
163613
+ projectIterationId: string;
163614
+ user?: {
163615
+ email: string;
163616
+ id: string;
163617
+ profile: {
163618
+ name: string;
163619
+ avatar?: string | undefined;
163620
+ nickname?: string | undefined;
163621
+ theme?: {
163622
+ backgroundColor?: string | undefined;
163623
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
163624
+ accentColor?: string | undefined;
163625
+ contrast?: number | undefined;
163626
+ isSecondaryEnabled?: boolean | undefined;
163627
+ secondaryBackgroundColor?: string | undefined;
163628
+ secondaryContrast?: number | undefined;
163629
+ isEditorWhite?: boolean | undefined;
163630
+ } | undefined;
163631
+ onboarding?: {
163632
+ companyName?: string | undefined;
163633
+ numberOfPeopleInOrg?: string | undefined;
163634
+ numberOfPeopleInDesignTeam?: string | undefined;
163635
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
163636
+ jobTitle?: string | undefined;
163637
+ phase?: string | undefined;
163638
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
163639
+ designSystemName?: string | undefined;
163640
+ defaultDestination?: string | undefined;
163641
+ figmaUrl?: string | undefined;
163642
+ isPageDraftOnboardingFinished?: boolean | undefined;
163643
+ isApprovalsOnboardingFinished?: boolean | undefined;
163644
+ } | undefined;
163645
+ };
163646
+ createdAt: Date;
163647
+ isProtected: boolean;
163648
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
163649
+ loggedOutAt?: Date | undefined;
163650
+ } | undefined;
163651
+ userId?: string | undefined;
163652
+ agentId?: string | undefined;
163653
+ agent?: {
163654
+ avatar: string | {
163655
+ headType: string;
163656
+ hairType: string;
163657
+ accessory1Type: string;
163658
+ accessory2Type: string;
163659
+ };
163660
+ id: string;
163661
+ name: string;
163662
+ behavior: "designer" | "coder" | "writer";
163663
+ projectId: string;
163664
+ personality: "neutral" | "assertive" | "crazy";
163665
+ avatarUrl?: string | undefined;
163666
+ } | undefined;
163667
+ }, {
163668
+ type: "User" | "Agent";
163669
+ id: string;
163670
+ role: "editor" | "viewer";
163671
+ projectIterationId: string;
163672
+ user?: {
163673
+ email: string;
163674
+ id: string;
163675
+ profile: {
163676
+ name: string;
163677
+ avatar?: string | undefined;
163678
+ nickname?: string | undefined;
163679
+ theme?: {
163680
+ backgroundColor?: string | undefined;
163681
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
163682
+ accentColor?: string | undefined;
163683
+ contrast?: number | undefined;
163684
+ isSecondaryEnabled?: boolean | undefined;
163685
+ secondaryBackgroundColor?: string | undefined;
163686
+ secondaryContrast?: number | undefined;
163687
+ isEditorWhite?: boolean | undefined;
163688
+ } | undefined;
163689
+ onboarding?: {
163690
+ companyName?: string | undefined;
163691
+ numberOfPeopleInOrg?: string | undefined;
163692
+ numberOfPeopleInDesignTeam?: string | undefined;
163693
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
163694
+ jobTitle?: string | undefined;
163695
+ phase?: string | undefined;
163696
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
163697
+ designSystemName?: string | undefined;
163698
+ defaultDestination?: string | undefined;
163699
+ figmaUrl?: string | undefined;
163700
+ isPageDraftOnboardingFinished?: boolean | undefined;
163701
+ isApprovalsOnboardingFinished?: boolean | undefined;
163702
+ } | undefined;
163703
+ };
163704
+ createdAt: Date;
163705
+ isProtected: boolean;
163706
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
163707
+ loggedOutAt?: Date | undefined;
163708
+ } | undefined;
163709
+ userId?: string | undefined;
163710
+ agentId?: string | undefined;
163711
+ agent?: {
163712
+ avatar: string | {
163713
+ headType: string;
163714
+ hairType: string;
163715
+ accessory1Type: string;
163716
+ accessory2Type: string;
163717
+ };
163718
+ id: string;
163719
+ name: string;
163720
+ behavior: "designer" | "coder" | "writer";
163721
+ projectId: string;
163722
+ personality: "neutral" | "assertive" | "crazy";
163723
+ avatarUrl?: string | undefined;
163724
+ } | undefined;
163725
+ }>;
163726
+ type ForgeParticipant = z.infer<typeof ForgeParticipant>;
163727
+
163728
+ declare const ForgeProjectContextDependency: z.ZodObject<{
163729
+ packageName: z.ZodString;
163730
+ type: z.ZodLiteral<"npm">;
163731
+ version: z.ZodDefault<z.ZodString>;
163732
+ }, "strip", z.ZodTypeAny, {
163733
+ type: "npm";
163734
+ version: string;
163735
+ packageName: string;
163736
+ }, {
163737
+ type: "npm";
163738
+ packageName: string;
163739
+ version?: string | undefined;
163740
+ }>;
163741
+ type ForgeProjectContextDependency = z.infer<typeof ForgeProjectContextDependency>;
163742
+ declare const ForgeProjectContextTailwindConfig: z.ZodObject<{
163743
+ content: z.ZodString;
163744
+ version: z.ZodString;
163745
+ }, "strip", z.ZodTypeAny, {
163746
+ version: string;
163747
+ content: string;
163748
+ }, {
163749
+ version: string;
163750
+ content: string;
163751
+ }>;
163752
+ type ForgeProjectContextTailwindConfig = z.infer<typeof ForgeProjectContextTailwindConfig>;
163753
+ declare const ForgeProjectContext: z.ZodObject<{
163754
+ createdAt: z.ZodDate;
163755
+ definition: z.ZodString;
163756
+ dependencies: z.ZodArray<z.ZodObject<{
163757
+ packageName: z.ZodString;
163758
+ type: z.ZodLiteral<"npm">;
163759
+ version: z.ZodDefault<z.ZodString>;
163760
+ }, "strip", z.ZodTypeAny, {
163761
+ type: "npm";
163762
+ version: string;
163763
+ packageName: string;
163764
+ }, {
163765
+ type: "npm";
163766
+ packageName: string;
163767
+ version?: string | undefined;
163768
+ }>, "many">;
163769
+ designSystemId: z.ZodString;
163770
+ id: z.ZodString;
163771
+ meta: z.ZodObject<{
163772
+ name: z.ZodString;
163773
+ description: z.ZodOptional<z.ZodString>;
163774
+ }, "strip", z.ZodTypeAny, {
163775
+ name: string;
163776
+ description?: string | undefined;
163777
+ }, {
163778
+ name: string;
163779
+ description?: string | undefined;
163780
+ }>;
163781
+ name: z.ZodString;
163782
+ npmProxySettings: z.ZodIntersection<z.ZodObject<{
163783
+ registryType: z.ZodEnum<["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]>;
163784
+ enabledScopes: z.ZodArray<z.ZodString, "many">;
163785
+ customRegistryUrl: z.ZodOptional<z.ZodString>;
163786
+ bypassProxy: z.ZodDefault<z.ZodBoolean>;
163787
+ npmProxyRegistryConfigId: z.ZodOptional<z.ZodString>;
163788
+ npmProxyVersion: z.ZodOptional<z.ZodNumber>;
163789
+ }, "strip", z.ZodTypeAny, {
163790
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
163791
+ enabledScopes: string[];
163792
+ bypassProxy: boolean;
163793
+ customRegistryUrl?: string | undefined;
163794
+ npmProxyRegistryConfigId?: string | undefined;
163795
+ npmProxyVersion?: number | undefined;
163796
+ }, {
163797
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
163798
+ enabledScopes: string[];
163799
+ customRegistryUrl?: string | undefined;
163800
+ bypassProxy?: boolean | undefined;
163801
+ npmProxyRegistryConfigId?: string | undefined;
163802
+ npmProxyVersion?: number | undefined;
163803
+ }>, z.ZodDiscriminatedUnion<"authType", [z.ZodObject<{
163804
+ authType: z.ZodLiteral<"Basic">;
163805
+ username: z.ZodString;
163806
+ password: z.ZodString;
163807
+ }, "strip", z.ZodTypeAny, {
163808
+ password: string;
163809
+ username: string;
163810
+ authType: "Basic";
163811
+ }, {
163812
+ password: string;
163813
+ username: string;
163814
+ authType: "Basic";
163815
+ }>, z.ZodObject<{
163816
+ authType: z.ZodLiteral<"Bearer">;
163817
+ accessToken: z.ZodString;
163818
+ }, "strip", z.ZodTypeAny, {
163819
+ accessToken: string;
163820
+ authType: "Bearer";
163821
+ }, {
163822
+ accessToken: string;
163823
+ authType: "Bearer";
163824
+ }>, z.ZodObject<{
163825
+ authType: z.ZodLiteral<"None">;
163826
+ }, "strip", z.ZodTypeAny, {
163827
+ authType: "None";
163828
+ }, {
163829
+ authType: "None";
163830
+ }>, z.ZodObject<{
163831
+ authType: z.ZodLiteral<"Custom">;
163832
+ authHeaderName: z.ZodString;
163833
+ authHeaderValue: z.ZodString;
163834
+ }, "strip", z.ZodTypeAny, {
163835
+ authType: "Custom";
163836
+ authHeaderName: string;
163837
+ authHeaderValue: string;
163838
+ }, {
163839
+ authType: "Custom";
163840
+ authHeaderName: string;
163841
+ authHeaderValue: string;
163842
+ }>]>>;
163843
+ platform: z.ZodEnum<["react", "vue", "angular"]>;
163844
+ styling: z.ZodEnum<["css", "tailwind"]>;
163845
+ tailwindConfig: z.ZodOptional<z.ZodObject<{
163846
+ content: z.ZodString;
163847
+ version: z.ZodString;
163848
+ }, "strip", z.ZodTypeAny, {
163849
+ version: string;
163850
+ content: string;
163851
+ }, {
163852
+ version: string;
163853
+ content: string;
163854
+ }>>;
163855
+ updatedAt: z.ZodDate;
163856
+ workspaceId: z.ZodString;
163857
+ }, "strip", z.ZodTypeAny, {
163858
+ id: string;
163859
+ name: string;
163860
+ createdAt: Date;
163861
+ updatedAt: Date;
163862
+ workspaceId: string;
163863
+ designSystemId: string;
163864
+ dependencies: {
163865
+ type: "npm";
163866
+ version: string;
163867
+ packageName: string;
163868
+ }[];
163869
+ meta: {
163870
+ name: string;
163871
+ description?: string | undefined;
163872
+ };
163873
+ definition: string;
163874
+ npmProxySettings: {
163875
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
163876
+ enabledScopes: string[];
163877
+ bypassProxy: boolean;
163878
+ customRegistryUrl?: string | undefined;
163879
+ npmProxyRegistryConfigId?: string | undefined;
163880
+ npmProxyVersion?: number | undefined;
163881
+ } & ({
163882
+ password: string;
163883
+ username: string;
163884
+ authType: "Basic";
163885
+ } | {
163886
+ accessToken: string;
163887
+ authType: "Bearer";
163888
+ } | {
163889
+ authType: "None";
163890
+ } | {
163891
+ authType: "Custom";
163892
+ authHeaderName: string;
163893
+ authHeaderValue: string;
163894
+ });
163895
+ platform: "react" | "vue" | "angular";
163896
+ styling: "css" | "tailwind";
163897
+ tailwindConfig?: {
163898
+ version: string;
163899
+ content: string;
163900
+ } | undefined;
163901
+ }, {
163902
+ id: string;
163903
+ name: string;
163904
+ createdAt: Date;
163905
+ updatedAt: Date;
163906
+ workspaceId: string;
163907
+ designSystemId: string;
163908
+ dependencies: {
163909
+ type: "npm";
163910
+ packageName: string;
163911
+ version?: string | undefined;
163912
+ }[];
163913
+ meta: {
163914
+ name: string;
163915
+ description?: string | undefined;
163916
+ };
163917
+ definition: string;
163918
+ npmProxySettings: {
163919
+ registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
163920
+ enabledScopes: string[];
163921
+ customRegistryUrl?: string | undefined;
163922
+ bypassProxy?: boolean | undefined;
163923
+ npmProxyRegistryConfigId?: string | undefined;
163924
+ npmProxyVersion?: number | undefined;
163925
+ } & ({
163926
+ password: string;
163927
+ username: string;
163928
+ authType: "Basic";
163929
+ } | {
163930
+ accessToken: string;
163931
+ authType: "Bearer";
163932
+ } | {
163933
+ authType: "None";
163934
+ } | {
163935
+ authType: "Custom";
163936
+ authHeaderName: string;
163937
+ authHeaderValue: string;
163938
+ });
163939
+ platform: "react" | "vue" | "angular";
163940
+ styling: "css" | "tailwind";
163941
+ tailwindConfig?: {
163942
+ version: string;
163943
+ content: string;
163944
+ } | undefined;
163945
+ }>;
163946
+ type ForgeProjectContext = z.infer<typeof ForgeProjectContext>;
163947
+ type CreateForgeProjectContext = Omit<DbCreateInputOmit<ForgeProjectContext>, "workspaceId">;
163948
+ type UpdateForgeProjectContext = Omit<DbUpdate<ForgeProjectContext>, "workspaceId">;
163949
+
163950
+ declare const ForgeProjectIterationMergeMeta: z.ZodObject<{
163951
+ mergeByUserId: z.ZodString;
163952
+ mergeAt: z.ZodDate;
163953
+ }, "strip", z.ZodTypeAny, {
163954
+ mergeByUserId: string;
163955
+ mergeAt: Date;
163956
+ }, {
163957
+ mergeByUserId: string;
163958
+ mergeAt: Date;
163959
+ }>;
163960
+ declare const ForgeProjectIteration: z.ZodObject<{
163961
+ branchId: z.ZodOptional<z.ZodString>;
163962
+ buildArtifactId: z.ZodString;
163963
+ createdAt: z.ZodDate;
163964
+ fpId: z.ZodString;
163965
+ id: z.ZodString;
163966
+ locked: z.ZodBoolean;
163967
+ messages: z.ZodArray<z.ZodObject<{
163968
+ id: z.ZodString;
163969
+ createdAt: z.ZodDate;
163970
+ participantId: z.ZodString;
163971
+ participant: z.ZodObject<{
163972
+ id: z.ZodString;
163973
+ agentId: z.ZodOptional<z.ZodString>;
163974
+ agent: z.ZodOptional<z.ZodObject<{
163975
+ avatar: z.ZodUnion<[z.ZodString, z.ZodObject<{
163976
+ headType: z.ZodString;
163977
+ hairType: z.ZodString;
163978
+ accessory1Type: z.ZodString;
163979
+ accessory2Type: z.ZodString;
163980
+ }, "strip", z.ZodTypeAny, {
163981
+ headType: string;
163982
+ hairType: string;
163983
+ accessory1Type: string;
163984
+ accessory2Type: string;
163985
+ }, {
163986
+ headType: string;
163987
+ hairType: string;
163988
+ accessory1Type: string;
163989
+ accessory2Type: string;
163990
+ }>]>;
163991
+ avatarUrl: z.ZodOptional<z.ZodString>;
163992
+ behavior: z.ZodEnum<["coder", "writer", "designer"]>;
163993
+ id: z.ZodString;
163994
+ name: z.ZodString;
163995
+ personality: z.ZodEnum<["neutral", "assertive", "crazy"]>;
163996
+ projectId: z.ZodString;
163997
+ }, "strip", z.ZodTypeAny, {
163998
+ avatar: string | {
163999
+ headType: string;
164000
+ hairType: string;
164001
+ accessory1Type: string;
164002
+ accessory2Type: string;
164003
+ };
164004
+ id: string;
164005
+ name: string;
164006
+ behavior: "designer" | "coder" | "writer";
164007
+ projectId: string;
164008
+ personality: "neutral" | "assertive" | "crazy";
164009
+ avatarUrl?: string | undefined;
164010
+ }, {
164011
+ avatar: string | {
164012
+ headType: string;
164013
+ hairType: string;
164014
+ accessory1Type: string;
164015
+ accessory2Type: string;
164016
+ };
164017
+ id: string;
164018
+ name: string;
164019
+ behavior: "designer" | "coder" | "writer";
164020
+ projectId: string;
164021
+ personality: "neutral" | "assertive" | "crazy";
164022
+ avatarUrl?: string | undefined;
164023
+ }>>;
164024
+ projectIterationId: z.ZodString;
164025
+ role: z.ZodEnum<["editor", "viewer"]>;
164026
+ type: z.ZodEnum<["Agent", "User"]>;
164027
+ userId: z.ZodOptional<z.ZodString>;
164028
+ user: z.ZodOptional<z.ZodObject<{
164029
+ id: z.ZodString;
164030
+ email: z.ZodString;
164031
+ createdAt: z.ZodDate;
164032
+ profile: z.ZodObject<{
164033
+ name: z.ZodString;
164034
+ avatar: z.ZodOptional<z.ZodString>;
164035
+ nickname: z.ZodOptional<z.ZodString>;
164036
+ onboarding: z.ZodOptional<z.ZodObject<{
164037
+ companyName: z.ZodOptional<z.ZodString>;
164038
+ numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
164039
+ numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
164040
+ department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
164041
+ jobTitle: z.ZodOptional<z.ZodString>;
164042
+ phase: z.ZodOptional<z.ZodString>;
164043
+ jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
164044
+ designSystemName: z.ZodOptional<z.ZodString>;
164045
+ defaultDestination: z.ZodOptional<z.ZodString>;
164046
+ figmaUrl: z.ZodOptional<z.ZodString>;
164047
+ isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
164048
+ isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
164049
+ }, "strip", z.ZodTypeAny, {
164050
+ companyName?: string | undefined;
164051
+ numberOfPeopleInOrg?: string | undefined;
164052
+ numberOfPeopleInDesignTeam?: string | undefined;
164053
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
164054
+ jobTitle?: string | undefined;
164055
+ phase?: string | undefined;
164056
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
164057
+ designSystemName?: string | undefined;
164058
+ defaultDestination?: string | undefined;
164059
+ figmaUrl?: string | undefined;
164060
+ isPageDraftOnboardingFinished?: boolean | undefined;
164061
+ isApprovalsOnboardingFinished?: boolean | undefined;
164062
+ }, {
164063
+ companyName?: string | undefined;
164064
+ numberOfPeopleInOrg?: string | undefined;
164065
+ numberOfPeopleInDesignTeam?: string | undefined;
164066
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
164067
+ jobTitle?: string | undefined;
164068
+ phase?: string | undefined;
164069
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
164070
+ designSystemName?: string | undefined;
164071
+ defaultDestination?: string | undefined;
164072
+ figmaUrl?: string | undefined;
164073
+ isPageDraftOnboardingFinished?: boolean | undefined;
164074
+ isApprovalsOnboardingFinished?: boolean | undefined;
164075
+ }>>;
164076
+ theme: z.ZodOptional<z.ZodObject<{
164077
+ preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
164078
+ backgroundColor: z.ZodOptional<z.ZodString>;
164079
+ accentColor: z.ZodOptional<z.ZodString>;
164080
+ contrast: z.ZodOptional<z.ZodNumber>;
164081
+ isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
164082
+ secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
164083
+ secondaryContrast: z.ZodOptional<z.ZodNumber>;
164084
+ isEditorWhite: z.ZodOptional<z.ZodBoolean>;
164085
+ }, "strip", z.ZodTypeAny, {
164086
+ backgroundColor?: string | undefined;
164087
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
164088
+ accentColor?: string | undefined;
164089
+ contrast?: number | undefined;
164090
+ isSecondaryEnabled?: boolean | undefined;
164091
+ secondaryBackgroundColor?: string | undefined;
164092
+ secondaryContrast?: number | undefined;
164093
+ isEditorWhite?: boolean | undefined;
164094
+ }, {
164095
+ backgroundColor?: string | undefined;
164096
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
164097
+ accentColor?: string | undefined;
164098
+ contrast?: number | undefined;
164099
+ isSecondaryEnabled?: boolean | undefined;
164100
+ secondaryBackgroundColor?: string | undefined;
164101
+ secondaryContrast?: number | undefined;
164102
+ isEditorWhite?: boolean | undefined;
164103
+ }>>;
164104
+ }, "strip", z.ZodTypeAny, {
164105
+ name: string;
164106
+ avatar?: string | undefined;
164107
+ nickname?: string | undefined;
164108
+ theme?: {
164109
+ backgroundColor?: string | undefined;
164110
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
164111
+ accentColor?: string | undefined;
164112
+ contrast?: number | undefined;
164113
+ isSecondaryEnabled?: boolean | undefined;
164114
+ secondaryBackgroundColor?: string | undefined;
164115
+ secondaryContrast?: number | undefined;
164116
+ isEditorWhite?: boolean | undefined;
164117
+ } | undefined;
164118
+ onboarding?: {
164119
+ companyName?: string | undefined;
164120
+ numberOfPeopleInOrg?: string | undefined;
164121
+ numberOfPeopleInDesignTeam?: string | undefined;
164122
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
164123
+ jobTitle?: string | undefined;
164124
+ phase?: string | undefined;
164125
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
164126
+ designSystemName?: string | undefined;
164127
+ defaultDestination?: string | undefined;
164128
+ figmaUrl?: string | undefined;
164129
+ isPageDraftOnboardingFinished?: boolean | undefined;
164130
+ isApprovalsOnboardingFinished?: boolean | undefined;
164131
+ } | undefined;
164132
+ }, {
164133
+ name: string;
164134
+ avatar?: string | undefined;
164135
+ nickname?: string | undefined;
164136
+ theme?: {
164137
+ backgroundColor?: string | undefined;
164138
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
164139
+ accentColor?: string | undefined;
164140
+ contrast?: number | undefined;
164141
+ isSecondaryEnabled?: boolean | undefined;
164142
+ secondaryBackgroundColor?: string | undefined;
164143
+ secondaryContrast?: number | undefined;
164144
+ isEditorWhite?: boolean | undefined;
164145
+ } | undefined;
164146
+ onboarding?: {
164147
+ companyName?: string | undefined;
164148
+ numberOfPeopleInOrg?: string | undefined;
164149
+ numberOfPeopleInDesignTeam?: string | undefined;
164150
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
164151
+ jobTitle?: string | undefined;
164152
+ phase?: string | undefined;
164153
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
164154
+ designSystemName?: string | undefined;
164155
+ defaultDestination?: string | undefined;
164156
+ figmaUrl?: string | undefined;
164157
+ isPageDraftOnboardingFinished?: boolean | undefined;
164158
+ isApprovalsOnboardingFinished?: boolean | undefined;
164159
+ } | undefined;
164160
+ }>;
164161
+ loggedOutAt: z.ZodOptional<z.ZodDate>;
164162
+ isProtected: z.ZodBoolean;
164163
+ source: z.ZodOptional<z.ZodEnum<["SignUp", "Invite", "SSO"]>>;
164164
+ }, "strip", z.ZodTypeAny, {
164165
+ email: string;
164166
+ id: string;
164167
+ profile: {
164168
+ name: string;
164169
+ avatar?: string | undefined;
164170
+ nickname?: string | undefined;
164171
+ theme?: {
164172
+ backgroundColor?: string | undefined;
164173
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
164174
+ accentColor?: string | undefined;
164175
+ contrast?: number | undefined;
164176
+ isSecondaryEnabled?: boolean | undefined;
164177
+ secondaryBackgroundColor?: string | undefined;
164178
+ secondaryContrast?: number | undefined;
164179
+ isEditorWhite?: boolean | undefined;
164180
+ } | undefined;
164181
+ onboarding?: {
164182
+ companyName?: string | undefined;
164183
+ numberOfPeopleInOrg?: string | undefined;
164184
+ numberOfPeopleInDesignTeam?: string | undefined;
164185
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
164186
+ jobTitle?: string | undefined;
164187
+ phase?: string | undefined;
164188
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
164189
+ designSystemName?: string | undefined;
164190
+ defaultDestination?: string | undefined;
164191
+ figmaUrl?: string | undefined;
164192
+ isPageDraftOnboardingFinished?: boolean | undefined;
164193
+ isApprovalsOnboardingFinished?: boolean | undefined;
164194
+ } | undefined;
164195
+ };
164196
+ createdAt: Date;
164197
+ isProtected: boolean;
164198
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
164199
+ loggedOutAt?: Date | undefined;
164200
+ }, {
164201
+ email: string;
164202
+ id: string;
164203
+ profile: {
164204
+ name: string;
164205
+ avatar?: string | undefined;
164206
+ nickname?: string | undefined;
164207
+ theme?: {
164208
+ backgroundColor?: string | undefined;
164209
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
164210
+ accentColor?: string | undefined;
164211
+ contrast?: number | undefined;
164212
+ isSecondaryEnabled?: boolean | undefined;
164213
+ secondaryBackgroundColor?: string | undefined;
164214
+ secondaryContrast?: number | undefined;
164215
+ isEditorWhite?: boolean | undefined;
164216
+ } | undefined;
164217
+ onboarding?: {
164218
+ companyName?: string | undefined;
164219
+ numberOfPeopleInOrg?: string | undefined;
164220
+ numberOfPeopleInDesignTeam?: string | undefined;
164221
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
164222
+ jobTitle?: string | undefined;
164223
+ phase?: string | undefined;
164224
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
164225
+ designSystemName?: string | undefined;
164226
+ defaultDestination?: string | undefined;
164227
+ figmaUrl?: string | undefined;
164228
+ isPageDraftOnboardingFinished?: boolean | undefined;
164229
+ isApprovalsOnboardingFinished?: boolean | undefined;
164230
+ } | undefined;
164231
+ };
164232
+ createdAt: Date;
164233
+ isProtected: boolean;
164234
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
164235
+ loggedOutAt?: Date | undefined;
164236
+ }>>;
164237
+ }, "strip", z.ZodTypeAny, {
164238
+ type: "User" | "Agent";
164239
+ id: string;
164240
+ role: "editor" | "viewer";
164241
+ projectIterationId: string;
164242
+ user?: {
164243
+ email: string;
164244
+ id: string;
164245
+ profile: {
164246
+ name: string;
164247
+ avatar?: string | undefined;
164248
+ nickname?: string | undefined;
164249
+ theme?: {
164250
+ backgroundColor?: string | undefined;
164251
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
164252
+ accentColor?: string | undefined;
164253
+ contrast?: number | undefined;
164254
+ isSecondaryEnabled?: boolean | undefined;
164255
+ secondaryBackgroundColor?: string | undefined;
164256
+ secondaryContrast?: number | undefined;
164257
+ isEditorWhite?: boolean | undefined;
164258
+ } | undefined;
164259
+ onboarding?: {
164260
+ companyName?: string | undefined;
164261
+ numberOfPeopleInOrg?: string | undefined;
164262
+ numberOfPeopleInDesignTeam?: string | undefined;
164263
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
164264
+ jobTitle?: string | undefined;
164265
+ phase?: string | undefined;
164266
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
164267
+ designSystemName?: string | undefined;
164268
+ defaultDestination?: string | undefined;
164269
+ figmaUrl?: string | undefined;
164270
+ isPageDraftOnboardingFinished?: boolean | undefined;
164271
+ isApprovalsOnboardingFinished?: boolean | undefined;
164272
+ } | undefined;
164273
+ };
164274
+ createdAt: Date;
164275
+ isProtected: boolean;
164276
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
164277
+ loggedOutAt?: Date | undefined;
164278
+ } | undefined;
164279
+ userId?: string | undefined;
164280
+ agentId?: string | undefined;
164281
+ agent?: {
164282
+ avatar: string | {
164283
+ headType: string;
164284
+ hairType: string;
164285
+ accessory1Type: string;
164286
+ accessory2Type: string;
164287
+ };
164288
+ id: string;
164289
+ name: string;
164290
+ behavior: "designer" | "coder" | "writer";
164291
+ projectId: string;
164292
+ personality: "neutral" | "assertive" | "crazy";
164293
+ avatarUrl?: string | undefined;
164294
+ } | undefined;
164295
+ }, {
164296
+ type: "User" | "Agent";
164297
+ id: string;
164298
+ role: "editor" | "viewer";
164299
+ projectIterationId: string;
164300
+ user?: {
164301
+ email: string;
164302
+ id: string;
164303
+ profile: {
164304
+ name: string;
164305
+ avatar?: string | undefined;
164306
+ nickname?: string | undefined;
164307
+ theme?: {
164308
+ backgroundColor?: string | undefined;
164309
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
164310
+ accentColor?: string | undefined;
164311
+ contrast?: number | undefined;
164312
+ isSecondaryEnabled?: boolean | undefined;
164313
+ secondaryBackgroundColor?: string | undefined;
164314
+ secondaryContrast?: number | undefined;
164315
+ isEditorWhite?: boolean | undefined;
164316
+ } | undefined;
164317
+ onboarding?: {
164318
+ companyName?: string | undefined;
164319
+ numberOfPeopleInOrg?: string | undefined;
164320
+ numberOfPeopleInDesignTeam?: string | undefined;
164321
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
164322
+ jobTitle?: string | undefined;
164323
+ phase?: string | undefined;
164324
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
164325
+ designSystemName?: string | undefined;
164326
+ defaultDestination?: string | undefined;
164327
+ figmaUrl?: string | undefined;
164328
+ isPageDraftOnboardingFinished?: boolean | undefined;
164329
+ isApprovalsOnboardingFinished?: boolean | undefined;
164330
+ } | undefined;
164331
+ };
164332
+ createdAt: Date;
164333
+ isProtected: boolean;
164334
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
164335
+ loggedOutAt?: Date | undefined;
164336
+ } | undefined;
164337
+ userId?: string | undefined;
164338
+ agentId?: string | undefined;
164339
+ agent?: {
164340
+ avatar: string | {
164341
+ headType: string;
164342
+ hairType: string;
164343
+ accessory1Type: string;
164344
+ accessory2Type: string;
164345
+ };
164346
+ id: string;
164347
+ name: string;
164348
+ behavior: "designer" | "coder" | "writer";
164349
+ projectId: string;
164350
+ personality: "neutral" | "assertive" | "crazy";
164351
+ avatarUrl?: string | undefined;
164352
+ } | undefined;
164353
+ }>;
164354
+ projectIterationId: z.ZodString;
164355
+ steps: z.ZodOptional<z.ZodArray<z.ZodObject<{
164356
+ name: z.ZodString;
164357
+ text: z.ZodString;
164358
+ status: z.ZodEnum<["pending", "started", "completed", "error"]>;
164359
+ }, "strip", z.ZodTypeAny, {
164360
+ status: "error" | "pending" | "started" | "completed";
164361
+ name: string;
164362
+ text: string;
164363
+ }, {
164364
+ status: "error" | "pending" | "started" | "completed";
164365
+ name: string;
164366
+ text: string;
164367
+ }>, "many">>;
164368
+ type: z.ZodEnum<["note", "action", "steps"]>;
164369
+ text: z.ZodString;
164370
+ }, "strip", z.ZodTypeAny, {
164371
+ type: "steps" | "note" | "action";
164372
+ id: string;
164373
+ createdAt: Date;
164374
+ text: string;
164375
+ projectIterationId: string;
164376
+ participantId: string;
164377
+ participant: {
164378
+ type: "User" | "Agent";
164379
+ id: string;
164380
+ role: "editor" | "viewer";
164381
+ projectIterationId: string;
164382
+ user?: {
164383
+ email: string;
164384
+ id: string;
164385
+ profile: {
164386
+ name: string;
164387
+ avatar?: string | undefined;
164388
+ nickname?: string | undefined;
164389
+ theme?: {
164390
+ backgroundColor?: string | undefined;
164391
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
164392
+ accentColor?: string | undefined;
164393
+ contrast?: number | undefined;
164394
+ isSecondaryEnabled?: boolean | undefined;
164395
+ secondaryBackgroundColor?: string | undefined;
164396
+ secondaryContrast?: number | undefined;
164397
+ isEditorWhite?: boolean | undefined;
164398
+ } | undefined;
164399
+ onboarding?: {
164400
+ companyName?: string | undefined;
164401
+ numberOfPeopleInOrg?: string | undefined;
164402
+ numberOfPeopleInDesignTeam?: string | undefined;
164403
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
164404
+ jobTitle?: string | undefined;
164405
+ phase?: string | undefined;
164406
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
164407
+ designSystemName?: string | undefined;
164408
+ defaultDestination?: string | undefined;
164409
+ figmaUrl?: string | undefined;
164410
+ isPageDraftOnboardingFinished?: boolean | undefined;
164411
+ isApprovalsOnboardingFinished?: boolean | undefined;
164412
+ } | undefined;
164413
+ };
164414
+ createdAt: Date;
164415
+ isProtected: boolean;
164416
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
164417
+ loggedOutAt?: Date | undefined;
164418
+ } | undefined;
164419
+ userId?: string | undefined;
164420
+ agentId?: string | undefined;
164421
+ agent?: {
164422
+ avatar: string | {
164423
+ headType: string;
164424
+ hairType: string;
164425
+ accessory1Type: string;
164426
+ accessory2Type: string;
164427
+ };
164428
+ id: string;
164429
+ name: string;
164430
+ behavior: "designer" | "coder" | "writer";
164431
+ projectId: string;
164432
+ personality: "neutral" | "assertive" | "crazy";
164433
+ avatarUrl?: string | undefined;
164434
+ } | undefined;
164435
+ };
164436
+ steps?: {
164437
+ status: "error" | "pending" | "started" | "completed";
164438
+ name: string;
164439
+ text: string;
164440
+ }[] | undefined;
164441
+ }, {
164442
+ type: "steps" | "note" | "action";
164443
+ id: string;
164444
+ createdAt: Date;
164445
+ text: string;
164446
+ projectIterationId: string;
164447
+ participantId: string;
164448
+ participant: {
164449
+ type: "User" | "Agent";
164450
+ id: string;
164451
+ role: "editor" | "viewer";
164452
+ projectIterationId: string;
164453
+ user?: {
164454
+ email: string;
164455
+ id: string;
164456
+ profile: {
164457
+ name: string;
164458
+ avatar?: string | undefined;
164459
+ nickname?: string | undefined;
164460
+ theme?: {
164461
+ backgroundColor?: string | undefined;
164462
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
164463
+ accentColor?: string | undefined;
164464
+ contrast?: number | undefined;
164465
+ isSecondaryEnabled?: boolean | undefined;
164466
+ secondaryBackgroundColor?: string | undefined;
164467
+ secondaryContrast?: number | undefined;
164468
+ isEditorWhite?: boolean | undefined;
164469
+ } | undefined;
164470
+ onboarding?: {
164471
+ companyName?: string | undefined;
164472
+ numberOfPeopleInOrg?: string | undefined;
164473
+ numberOfPeopleInDesignTeam?: string | undefined;
164474
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
164475
+ jobTitle?: string | undefined;
164476
+ phase?: string | undefined;
164477
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
164478
+ designSystemName?: string | undefined;
164479
+ defaultDestination?: string | undefined;
164480
+ figmaUrl?: string | undefined;
164481
+ isPageDraftOnboardingFinished?: boolean | undefined;
164482
+ isApprovalsOnboardingFinished?: boolean | undefined;
164483
+ } | undefined;
164484
+ };
164485
+ createdAt: Date;
164486
+ isProtected: boolean;
164487
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
164488
+ loggedOutAt?: Date | undefined;
164489
+ } | undefined;
164490
+ userId?: string | undefined;
164491
+ agentId?: string | undefined;
164492
+ agent?: {
164493
+ avatar: string | {
164494
+ headType: string;
164495
+ hairType: string;
164496
+ accessory1Type: string;
164497
+ accessory2Type: string;
164498
+ };
164499
+ id: string;
164500
+ name: string;
164501
+ behavior: "designer" | "coder" | "writer";
164502
+ projectId: string;
164503
+ personality: "neutral" | "assertive" | "crazy";
164504
+ avatarUrl?: string | undefined;
164505
+ } | undefined;
164506
+ };
164507
+ steps?: {
164508
+ status: "error" | "pending" | "started" | "completed";
164509
+ name: string;
164510
+ text: string;
164511
+ }[] | undefined;
164512
+ }>, "many">;
164513
+ artifacts: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
164514
+ id: z.ZodString;
164515
+ createdAt: z.ZodDate;
164516
+ projectIterationId: z.ZodString;
164517
+ }, {
164518
+ type: z.ZodLiteral<"build">;
164519
+ participantId: z.ZodString;
164520
+ files: z.ZodArray<z.ZodObject<{
164521
+ path: z.ZodString;
164522
+ content: z.ZodString;
164523
+ isVisibleToUser: z.ZodOptional<z.ZodBoolean>;
164524
+ }, "strip", z.ZodTypeAny, {
164525
+ path: string;
164526
+ content: string;
164527
+ isVisibleToUser?: boolean | undefined;
164528
+ }, {
164529
+ path: string;
164530
+ content: string;
164531
+ isVisibleToUser?: boolean | undefined;
164532
+ }>, "many">;
164533
+ environment: z.ZodObject<{
164534
+ dependencies: z.ZodRecord<z.ZodString, z.ZodString>;
164535
+ }, "strip", z.ZodTypeAny, {
164536
+ dependencies: Record<string, string>;
164537
+ }, {
164538
+ dependencies: Record<string, string>;
164539
+ }>;
164540
+ }>, "strip", z.ZodTypeAny, {
164541
+ type: "build";
164542
+ files: {
164543
+ path: string;
164544
+ content: string;
164545
+ isVisibleToUser?: boolean | undefined;
164546
+ }[];
164547
+ id: string;
164548
+ createdAt: Date;
164549
+ environment: {
164550
+ dependencies: Record<string, string>;
164551
+ };
164552
+ projectIterationId: string;
164553
+ participantId: string;
164554
+ }, {
164555
+ type: "build";
164556
+ files: {
164557
+ path: string;
164558
+ content: string;
164559
+ isVisibleToUser?: boolean | undefined;
164560
+ }[];
164561
+ id: string;
164562
+ createdAt: Date;
164563
+ environment: {
164564
+ dependencies: Record<string, string>;
164565
+ };
164566
+ projectIterationId: string;
164567
+ participantId: string;
164568
+ }>, z.ZodObject<z.objectUtil.extendShape<{
164569
+ id: z.ZodString;
164570
+ createdAt: z.ZodDate;
164571
+ projectIterationId: z.ZodString;
164572
+ }, {
164573
+ type: z.ZodLiteral<"spec">;
164574
+ fileName: z.ZodString;
164575
+ yjsDocId: z.ZodString;
164576
+ markdownText: z.ZodString;
164577
+ }>, "strip", z.ZodTypeAny, {
164578
+ type: "spec";
164579
+ id: string;
164580
+ createdAt: Date;
164581
+ fileName: string;
164582
+ projectIterationId: string;
164583
+ yjsDocId: string;
164584
+ markdownText: string;
164585
+ }, {
164586
+ type: "spec";
164587
+ id: string;
164588
+ createdAt: Date;
164589
+ fileName: string;
164590
+ projectIterationId: string;
164591
+ yjsDocId: string;
164592
+ markdownText: string;
164593
+ }>, z.ZodObject<z.objectUtil.extendShape<{
164594
+ id: z.ZodString;
164595
+ createdAt: z.ZodDate;
164596
+ projectIterationId: z.ZodString;
164597
+ }, {
164598
+ type: z.ZodLiteral<"figma/node">;
164599
+ figmaFileUrl: z.ZodString;
164600
+ figmaNodeId: z.ZodString;
164601
+ figmaFileName: z.ZodOptional<z.ZodString>;
164602
+ previewUrl: z.ZodOptional<z.ZodString>;
164603
+ }>, "strip", z.ZodTypeAny, {
164604
+ type: "figma/node";
164605
+ id: string;
164606
+ createdAt: Date;
164607
+ projectIterationId: string;
164608
+ figmaFileUrl: string;
164609
+ figmaNodeId: string;
164610
+ previewUrl?: string | undefined;
164611
+ figmaFileName?: string | undefined;
164612
+ }, {
164613
+ type: "figma/node";
164614
+ id: string;
164615
+ createdAt: Date;
164616
+ projectIterationId: string;
164617
+ figmaFileUrl: string;
164618
+ figmaNodeId: string;
164619
+ previewUrl?: string | undefined;
164620
+ figmaFileName?: string | undefined;
164621
+ }>, z.ZodObject<z.objectUtil.extendShape<{
164622
+ id: z.ZodString;
164623
+ createdAt: z.ZodDate;
164624
+ projectIterationId: z.ZodString;
164625
+ }, {
164626
+ type: z.ZodEnum<["file/text", "file/pdf", "file/image"]>;
164627
+ fileName: z.ZodString;
164628
+ uploadedFileUrl: z.ZodString;
164629
+ }>, "strip", z.ZodTypeAny, {
164630
+ type: "file/text" | "file/pdf" | "file/image";
164631
+ id: string;
164632
+ createdAt: Date;
164633
+ fileName: string;
164634
+ projectIterationId: string;
164635
+ uploadedFileUrl: string;
164636
+ }, {
164637
+ type: "file/text" | "file/pdf" | "file/image";
164638
+ id: string;
164639
+ createdAt: Date;
164640
+ fileName: string;
164641
+ projectIterationId: string;
164642
+ uploadedFileUrl: string;
164643
+ }>]>, "many">;
164644
+ previousIterationId: z.ZodOptional<z.ZodString>;
164645
+ mergeMeta: z.ZodOptional<z.ZodObject<{
164646
+ mergeByUserId: z.ZodString;
164647
+ mergeAt: z.ZodDate;
164648
+ }, "strip", z.ZodTypeAny, {
164649
+ mergeByUserId: string;
164650
+ mergeAt: Date;
164651
+ }, {
164652
+ mergeByUserId: string;
164653
+ mergeAt: Date;
164654
+ }>>;
164655
+ }, "strip", z.ZodTypeAny, {
164656
+ id: string;
164657
+ messages: {
164658
+ type: "steps" | "note" | "action";
164659
+ id: string;
164660
+ createdAt: Date;
164661
+ text: string;
164662
+ projectIterationId: string;
164663
+ participantId: string;
164664
+ participant: {
164665
+ type: "User" | "Agent";
164666
+ id: string;
164667
+ role: "editor" | "viewer";
164668
+ projectIterationId: string;
164669
+ user?: {
164670
+ email: string;
164671
+ id: string;
164672
+ profile: {
164673
+ name: string;
164674
+ avatar?: string | undefined;
164675
+ nickname?: string | undefined;
164676
+ theme?: {
164677
+ backgroundColor?: string | undefined;
164678
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
164679
+ accentColor?: string | undefined;
164680
+ contrast?: number | undefined;
164681
+ isSecondaryEnabled?: boolean | undefined;
164682
+ secondaryBackgroundColor?: string | undefined;
164683
+ secondaryContrast?: number | undefined;
164684
+ isEditorWhite?: boolean | undefined;
164685
+ } | undefined;
164686
+ onboarding?: {
164687
+ companyName?: string | undefined;
164688
+ numberOfPeopleInOrg?: string | undefined;
164689
+ numberOfPeopleInDesignTeam?: string | undefined;
164690
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
164691
+ jobTitle?: string | undefined;
164692
+ phase?: string | undefined;
164693
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
164694
+ designSystemName?: string | undefined;
164695
+ defaultDestination?: string | undefined;
164696
+ figmaUrl?: string | undefined;
164697
+ isPageDraftOnboardingFinished?: boolean | undefined;
164698
+ isApprovalsOnboardingFinished?: boolean | undefined;
164699
+ } | undefined;
164700
+ };
164701
+ createdAt: Date;
164702
+ isProtected: boolean;
164703
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
164704
+ loggedOutAt?: Date | undefined;
164705
+ } | undefined;
164706
+ userId?: string | undefined;
164707
+ agentId?: string | undefined;
164708
+ agent?: {
164709
+ avatar: string | {
164710
+ headType: string;
164711
+ hairType: string;
164712
+ accessory1Type: string;
164713
+ accessory2Type: string;
164714
+ };
164715
+ id: string;
164716
+ name: string;
164717
+ behavior: "designer" | "coder" | "writer";
164718
+ projectId: string;
164719
+ personality: "neutral" | "assertive" | "crazy";
164720
+ avatarUrl?: string | undefined;
164721
+ } | undefined;
164722
+ };
164723
+ steps?: {
164724
+ status: "error" | "pending" | "started" | "completed";
164725
+ name: string;
164726
+ text: string;
164727
+ }[] | undefined;
164728
+ }[];
164729
+ createdAt: Date;
164730
+ buildArtifactId: string;
164731
+ fpId: string;
164732
+ locked: boolean;
164733
+ artifacts: ({
164734
+ type: "file/text" | "file/pdf" | "file/image";
164735
+ id: string;
164736
+ createdAt: Date;
164737
+ fileName: string;
164738
+ projectIterationId: string;
164739
+ uploadedFileUrl: string;
164740
+ } | {
164741
+ type: "figma/node";
164742
+ id: string;
164743
+ createdAt: Date;
164744
+ projectIterationId: string;
164745
+ figmaFileUrl: string;
164746
+ figmaNodeId: string;
164747
+ previewUrl?: string | undefined;
164748
+ figmaFileName?: string | undefined;
164749
+ } | {
164750
+ type: "spec";
164751
+ id: string;
164752
+ createdAt: Date;
164753
+ fileName: string;
164754
+ projectIterationId: string;
164755
+ yjsDocId: string;
164756
+ markdownText: string;
164757
+ } | {
164758
+ type: "build";
164759
+ files: {
164760
+ path: string;
164761
+ content: string;
164762
+ isVisibleToUser?: boolean | undefined;
164763
+ }[];
164764
+ id: string;
164765
+ createdAt: Date;
164766
+ environment: {
164767
+ dependencies: Record<string, string>;
164768
+ };
164769
+ projectIterationId: string;
164770
+ participantId: string;
164771
+ })[];
164772
+ branchId?: string | undefined;
164773
+ previousIterationId?: string | undefined;
164774
+ mergeMeta?: {
164775
+ mergeByUserId: string;
164776
+ mergeAt: Date;
164777
+ } | undefined;
164778
+ }, {
164779
+ id: string;
164780
+ messages: {
164781
+ type: "steps" | "note" | "action";
164782
+ id: string;
164783
+ createdAt: Date;
164784
+ text: string;
164785
+ projectIterationId: string;
164786
+ participantId: string;
164787
+ participant: {
164788
+ type: "User" | "Agent";
164789
+ id: string;
164790
+ role: "editor" | "viewer";
164791
+ projectIterationId: string;
164792
+ user?: {
164793
+ email: string;
164794
+ id: string;
164795
+ profile: {
164796
+ name: string;
164797
+ avatar?: string | undefined;
164798
+ nickname?: string | undefined;
164799
+ theme?: {
164800
+ backgroundColor?: string | undefined;
164801
+ preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
164802
+ accentColor?: string | undefined;
164803
+ contrast?: number | undefined;
164804
+ isSecondaryEnabled?: boolean | undefined;
164805
+ secondaryBackgroundColor?: string | undefined;
164806
+ secondaryContrast?: number | undefined;
164807
+ isEditorWhite?: boolean | undefined;
164808
+ } | undefined;
164809
+ onboarding?: {
164810
+ companyName?: string | undefined;
164811
+ numberOfPeopleInOrg?: string | undefined;
164812
+ numberOfPeopleInDesignTeam?: string | undefined;
164813
+ department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
164814
+ jobTitle?: string | undefined;
164815
+ phase?: string | undefined;
164816
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
164817
+ designSystemName?: string | undefined;
164818
+ defaultDestination?: string | undefined;
164819
+ figmaUrl?: string | undefined;
164820
+ isPageDraftOnboardingFinished?: boolean | undefined;
164821
+ isApprovalsOnboardingFinished?: boolean | undefined;
164822
+ } | undefined;
164823
+ };
164824
+ createdAt: Date;
164825
+ isProtected: boolean;
164826
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
164827
+ loggedOutAt?: Date | undefined;
164828
+ } | undefined;
164829
+ userId?: string | undefined;
164830
+ agentId?: string | undefined;
164831
+ agent?: {
164832
+ avatar: string | {
164833
+ headType: string;
164834
+ hairType: string;
164835
+ accessory1Type: string;
164836
+ accessory2Type: string;
164837
+ };
164838
+ id: string;
164839
+ name: string;
164840
+ behavior: "designer" | "coder" | "writer";
164841
+ projectId: string;
164842
+ personality: "neutral" | "assertive" | "crazy";
164843
+ avatarUrl?: string | undefined;
164844
+ } | undefined;
164845
+ };
164846
+ steps?: {
164847
+ status: "error" | "pending" | "started" | "completed";
164848
+ name: string;
164849
+ text: string;
164850
+ }[] | undefined;
164851
+ }[];
164852
+ createdAt: Date;
164853
+ buildArtifactId: string;
164854
+ fpId: string;
164855
+ locked: boolean;
164856
+ artifacts: ({
164857
+ type: "file/text" | "file/pdf" | "file/image";
164858
+ id: string;
164859
+ createdAt: Date;
164860
+ fileName: string;
164861
+ projectIterationId: string;
164862
+ uploadedFileUrl: string;
164863
+ } | {
164864
+ type: "figma/node";
164865
+ id: string;
164866
+ createdAt: Date;
164867
+ projectIterationId: string;
164868
+ figmaFileUrl: string;
164869
+ figmaNodeId: string;
164870
+ previewUrl?: string | undefined;
164871
+ figmaFileName?: string | undefined;
164872
+ } | {
164873
+ type: "spec";
164874
+ id: string;
164875
+ createdAt: Date;
164876
+ fileName: string;
164877
+ projectIterationId: string;
164878
+ yjsDocId: string;
164879
+ markdownText: string;
164880
+ } | {
164881
+ type: "build";
164882
+ files: {
164883
+ path: string;
164884
+ content: string;
164885
+ isVisibleToUser?: boolean | undefined;
164886
+ }[];
164887
+ id: string;
164888
+ createdAt: Date;
164889
+ environment: {
164890
+ dependencies: Record<string, string>;
164891
+ };
164892
+ projectIterationId: string;
164893
+ participantId: string;
164894
+ })[];
164895
+ branchId?: string | undefined;
164896
+ previousIterationId?: string | undefined;
164897
+ mergeMeta?: {
164898
+ mergeByUserId: string;
164899
+ mergeAt: Date;
164900
+ } | undefined;
164901
+ }>;
164902
+ type ForgeProjectIteration = z.infer<typeof ForgeProjectIteration>;
164903
+
164904
+ declare const ForgeProjectPrivilegeSchema: z.ZodObject<{
164905
+ userId: z.ZodString;
164906
+ fpId: z.ZodString;
164907
+ role: z.ZodString;
164908
+ }, "strip", z.ZodTypeAny, {
164909
+ userId: string;
164910
+ role: string;
164911
+ fpId: string;
164912
+ }, {
164913
+ userId: string;
164914
+ role: string;
164915
+ fpId: string;
164916
+ }>;
164917
+ type ForgeProjectMembership = z.infer<typeof ForgeProjectPrivilegeSchema>;
164918
+ type CreateForgeProjectMembership = DbCreateInputOmit<ForgeProjectMembership>;
164919
+
164920
+ declare const ForgeProjectTag: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
164921
+ declare const ForgeProject: z.ZodObject<{
164922
+ createdAt: z.ZodDate;
164923
+ createdByUserId: z.ZodString;
164924
+ fpContextId: z.ZodString;
164925
+ id: z.ZodString;
164926
+ instruction: z.ZodNullable<z.ZodString>;
164927
+ meta: z.ZodObject<{
164928
+ name: z.ZodString;
164929
+ description: z.ZodOptional<z.ZodString>;
164930
+ }, "strip", z.ZodTypeAny, {
164931
+ name: string;
164932
+ description?: string | undefined;
164933
+ }, {
164934
+ name: string;
164935
+ description?: string | undefined;
164936
+ }>;
164937
+ name: z.ZodString;
164938
+ tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
164939
+ updatedAt: z.ZodOptional<z.ZodDate>;
164940
+ workspaceId: z.ZodString;
164941
+ }, "strip", z.ZodTypeAny, {
164942
+ instruction: string | null;
164943
+ id: string;
164944
+ name: string;
164945
+ createdAt: Date;
164946
+ workspaceId: string;
164947
+ tags: string[];
164948
+ meta: {
164949
+ name: string;
164950
+ description?: string | undefined;
164951
+ };
164952
+ createdByUserId: string;
164953
+ fpContextId: string;
164954
+ updatedAt?: Date | undefined;
164955
+ }, {
164956
+ instruction: string | null;
164957
+ id: string;
164958
+ name: string;
164959
+ createdAt: Date;
164960
+ workspaceId: string;
164961
+ meta: {
164962
+ name: string;
164963
+ description?: string | undefined;
164964
+ };
164965
+ createdByUserId: string;
164966
+ fpContextId: string;
164967
+ updatedAt?: Date | undefined;
164968
+ tags?: string[] | undefined;
164969
+ }>;
164970
+ type ForgeProject = z.infer<typeof ForgeProject>;
164971
+ type CreateForgeProject = Omit<DbCreateInputOmit<ForgeProject>, "workspaceId" | "createdByUserId">;
164972
+ type UpdateForgeProject = Omit<DbUpdate<ForgeProject>, "fpContextId" | "workspaceId" | "createdByUserId">;
164973
+
162408
164974
  declare enum OAuthProviderNames {
162409
164975
  Figma = "figma",
162410
164976
  Azure = "azure",
@@ -192698,4 +195264,4 @@ type PersonalAccessTokenWithUser = {
192698
195264
  token: PersonalAccessToken;
192699
195265
  };
192700
195266
 
192701
- export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatThread, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsTheme, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
195267
+ export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateForgeAgent, type CreateForgeProject, type CreateForgeProjectContext, type CreateForgeProjectMembership, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeAgent, ForgeArtifact, ForgeAvatarBuilder, ForgeBuildArtifact, ForgeBuildArtifactEnvironment, ForgeBuildArtifactFiles, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatThread, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeMeta, ForgeParticipant, ForgeProject, ForgeProjectContext, ForgeProjectContextDependency, ForgeProjectContextTailwindConfig, ForgeProjectIteration, ForgeProjectIterationMergeMeta, type ForgeProjectMembership, ForgeProjectPrivilegeSchema, ForgeProjectTag, ForgeSpecArtifact, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsTheme, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateForgeAgent, type UpdateForgeProject, type UpdateForgeProjectContext, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };