@supernova-studio/model 1.44.1 → 1.44.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +288 -208
- package/dist/index.d.ts +288 -208
- package/dist/index.js +24 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +365 -347
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -11797,6 +11797,13 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
11797
11797
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
11798
11798
|
isProtected: z$1.ZodBoolean;
|
|
11799
11799
|
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
11800
|
+
emailSettings: z$1.ZodObject<{
|
|
11801
|
+
marketingEmails: z$1.ZodBoolean;
|
|
11802
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
11803
|
+
marketingEmails: boolean;
|
|
11804
|
+
}, {
|
|
11805
|
+
marketingEmails: boolean;
|
|
11806
|
+
}>;
|
|
11800
11807
|
}, "strip", z$1.ZodTypeAny, {
|
|
11801
11808
|
email: string;
|
|
11802
11809
|
id: string;
|
|
@@ -11841,6 +11848,9 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
11841
11848
|
};
|
|
11842
11849
|
createdAt: Date;
|
|
11843
11850
|
isProtected: boolean;
|
|
11851
|
+
emailSettings: {
|
|
11852
|
+
marketingEmails: boolean;
|
|
11853
|
+
};
|
|
11844
11854
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
11845
11855
|
loggedOutAt?: Date | undefined;
|
|
11846
11856
|
}, {
|
|
@@ -11887,6 +11897,9 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
11887
11897
|
};
|
|
11888
11898
|
createdAt: Date;
|
|
11889
11899
|
isProtected: boolean;
|
|
11900
|
+
emailSettings: {
|
|
11901
|
+
marketingEmails: boolean;
|
|
11902
|
+
};
|
|
11890
11903
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
11891
11904
|
loggedOutAt?: Date | undefined;
|
|
11892
11905
|
}>;
|
|
@@ -22012,6 +22025,9 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
22012
22025
|
};
|
|
22013
22026
|
createdAt: Date;
|
|
22014
22027
|
isProtected: boolean;
|
|
22028
|
+
emailSettings: {
|
|
22029
|
+
marketingEmails: boolean;
|
|
22030
|
+
};
|
|
22015
22031
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
22016
22032
|
loggedOutAt?: Date | undefined;
|
|
22017
22033
|
};
|
|
@@ -22948,6 +22964,9 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
22948
22964
|
};
|
|
22949
22965
|
createdAt: Date;
|
|
22950
22966
|
isProtected: boolean;
|
|
22967
|
+
emailSettings: {
|
|
22968
|
+
marketingEmails: boolean;
|
|
22969
|
+
};
|
|
22951
22970
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
22952
22971
|
loggedOutAt?: Date | undefined;
|
|
22953
22972
|
};
|
|
@@ -32520,6 +32539,13 @@ declare const UserSession: z$1.ZodObject<{
|
|
|
32520
32539
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
32521
32540
|
isProtected: z$1.ZodBoolean;
|
|
32522
32541
|
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
32542
|
+
emailSettings: z$1.ZodObject<{
|
|
32543
|
+
marketingEmails: z$1.ZodBoolean;
|
|
32544
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
32545
|
+
marketingEmails: boolean;
|
|
32546
|
+
}, {
|
|
32547
|
+
marketingEmails: boolean;
|
|
32548
|
+
}>;
|
|
32523
32549
|
}, "strip", z$1.ZodTypeAny, {
|
|
32524
32550
|
email: string;
|
|
32525
32551
|
id: string;
|
|
@@ -32564,6 +32590,9 @@ declare const UserSession: z$1.ZodObject<{
|
|
|
32564
32590
|
};
|
|
32565
32591
|
createdAt: Date;
|
|
32566
32592
|
isProtected: boolean;
|
|
32593
|
+
emailSettings: {
|
|
32594
|
+
marketingEmails: boolean;
|
|
32595
|
+
};
|
|
32567
32596
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
32568
32597
|
loggedOutAt?: Date | undefined;
|
|
32569
32598
|
}, {
|
|
@@ -32610,6 +32639,9 @@ declare const UserSession: z$1.ZodObject<{
|
|
|
32610
32639
|
};
|
|
32611
32640
|
createdAt: Date;
|
|
32612
32641
|
isProtected: boolean;
|
|
32642
|
+
emailSettings: {
|
|
32643
|
+
marketingEmails: boolean;
|
|
32644
|
+
};
|
|
32613
32645
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
32614
32646
|
loggedOutAt?: Date | undefined;
|
|
32615
32647
|
}>>;
|
|
@@ -32671,6 +32703,9 @@ declare const UserSession: z$1.ZodObject<{
|
|
|
32671
32703
|
};
|
|
32672
32704
|
createdAt: Date;
|
|
32673
32705
|
isProtected: boolean;
|
|
32706
|
+
emailSettings: {
|
|
32707
|
+
marketingEmails: boolean;
|
|
32708
|
+
};
|
|
32674
32709
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
32675
32710
|
loggedOutAt?: Date | undefined;
|
|
32676
32711
|
} | null;
|
|
@@ -32732,6 +32767,9 @@ declare const UserSession: z$1.ZodObject<{
|
|
|
32732
32767
|
};
|
|
32733
32768
|
createdAt: Date;
|
|
32734
32769
|
isProtected: boolean;
|
|
32770
|
+
emailSettings: {
|
|
32771
|
+
marketingEmails: boolean;
|
|
32772
|
+
};
|
|
32735
32773
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
32736
32774
|
loggedOutAt?: Date | undefined;
|
|
32737
32775
|
} | null;
|
|
@@ -144761,6 +144799,13 @@ declare const DesignSystemInviteEmailData: z$1.ZodObject<{
|
|
|
144761
144799
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
144762
144800
|
isProtected: z$1.ZodBoolean;
|
|
144763
144801
|
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
144802
|
+
emailSettings: z$1.ZodObject<{
|
|
144803
|
+
marketingEmails: z$1.ZodBoolean;
|
|
144804
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
144805
|
+
marketingEmails: boolean;
|
|
144806
|
+
}, {
|
|
144807
|
+
marketingEmails: boolean;
|
|
144808
|
+
}>;
|
|
144764
144809
|
}, "strip", z$1.ZodTypeAny, {
|
|
144765
144810
|
email: string;
|
|
144766
144811
|
id: string;
|
|
@@ -144805,6 +144850,9 @@ declare const DesignSystemInviteEmailData: z$1.ZodObject<{
|
|
|
144805
144850
|
};
|
|
144806
144851
|
createdAt: Date;
|
|
144807
144852
|
isProtected: boolean;
|
|
144853
|
+
emailSettings: {
|
|
144854
|
+
marketingEmails: boolean;
|
|
144855
|
+
};
|
|
144808
144856
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
144809
144857
|
loggedOutAt?: Date | undefined;
|
|
144810
144858
|
}, {
|
|
@@ -144851,6 +144899,9 @@ declare const DesignSystemInviteEmailData: z$1.ZodObject<{
|
|
|
144851
144899
|
};
|
|
144852
144900
|
createdAt: Date;
|
|
144853
144901
|
isProtected: boolean;
|
|
144902
|
+
emailSettings: {
|
|
144903
|
+
marketingEmails: boolean;
|
|
144904
|
+
};
|
|
144854
144905
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
144855
144906
|
loggedOutAt?: Date | undefined;
|
|
144856
144907
|
}>;
|
|
@@ -145001,6 +145052,9 @@ declare const DesignSystemInviteEmailData: z$1.ZodObject<{
|
|
|
145001
145052
|
};
|
|
145002
145053
|
createdAt: Date;
|
|
145003
145054
|
isProtected: boolean;
|
|
145055
|
+
emailSettings: {
|
|
145056
|
+
marketingEmails: boolean;
|
|
145057
|
+
};
|
|
145004
145058
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
145005
145059
|
loggedOutAt?: Date | undefined;
|
|
145006
145060
|
};
|
|
@@ -145174,6 +145228,9 @@ declare const DesignSystemInviteEmailData: z$1.ZodObject<{
|
|
|
145174
145228
|
};
|
|
145175
145229
|
createdAt: Date;
|
|
145176
145230
|
isProtected: boolean;
|
|
145231
|
+
emailSettings: {
|
|
145232
|
+
marketingEmails: boolean;
|
|
145233
|
+
};
|
|
145177
145234
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
145178
145235
|
loggedOutAt?: Date | undefined;
|
|
145179
145236
|
};
|
|
@@ -146024,6 +146081,13 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
|
|
|
146024
146081
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
146025
146082
|
isProtected: z$1.ZodBoolean;
|
|
146026
146083
|
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
146084
|
+
emailSettings: z$1.ZodObject<{
|
|
146085
|
+
marketingEmails: z$1.ZodBoolean;
|
|
146086
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
146087
|
+
marketingEmails: boolean;
|
|
146088
|
+
}, {
|
|
146089
|
+
marketingEmails: boolean;
|
|
146090
|
+
}>;
|
|
146027
146091
|
}, "strip", z$1.ZodTypeAny, {
|
|
146028
146092
|
email: string;
|
|
146029
146093
|
id: string;
|
|
@@ -146068,6 +146132,9 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
|
|
|
146068
146132
|
};
|
|
146069
146133
|
createdAt: Date;
|
|
146070
146134
|
isProtected: boolean;
|
|
146135
|
+
emailSettings: {
|
|
146136
|
+
marketingEmails: boolean;
|
|
146137
|
+
};
|
|
146071
146138
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
146072
146139
|
loggedOutAt?: Date | undefined;
|
|
146073
146140
|
}, {
|
|
@@ -146114,6 +146181,9 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
|
|
|
146114
146181
|
};
|
|
146115
146182
|
createdAt: Date;
|
|
146116
146183
|
isProtected: boolean;
|
|
146184
|
+
emailSettings: {
|
|
146185
|
+
marketingEmails: boolean;
|
|
146186
|
+
};
|
|
146117
146187
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
146118
146188
|
loggedOutAt?: Date | undefined;
|
|
146119
146189
|
}>;
|
|
@@ -146264,6 +146334,9 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
|
|
|
146264
146334
|
};
|
|
146265
146335
|
createdAt: Date;
|
|
146266
146336
|
isProtected: boolean;
|
|
146337
|
+
emailSettings: {
|
|
146338
|
+
marketingEmails: boolean;
|
|
146339
|
+
};
|
|
146267
146340
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
146268
146341
|
loggedOutAt?: Date | undefined;
|
|
146269
146342
|
};
|
|
@@ -146414,6 +146487,9 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
|
|
|
146414
146487
|
};
|
|
146415
146488
|
createdAt: Date;
|
|
146416
146489
|
isProtected: boolean;
|
|
146490
|
+
emailSettings: {
|
|
146491
|
+
marketingEmails: boolean;
|
|
146492
|
+
};
|
|
146417
146493
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
146418
146494
|
loggedOutAt?: Date | undefined;
|
|
146419
146495
|
};
|
|
@@ -154540,6 +154616,13 @@ declare const ForgeIterationMessage: z$1.ZodObject<{
|
|
|
154540
154616
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
154541
154617
|
isProtected: z$1.ZodBoolean;
|
|
154542
154618
|
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
154619
|
+
emailSettings: z$1.ZodObject<{
|
|
154620
|
+
marketingEmails: z$1.ZodBoolean;
|
|
154621
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
154622
|
+
marketingEmails: boolean;
|
|
154623
|
+
}, {
|
|
154624
|
+
marketingEmails: boolean;
|
|
154625
|
+
}>;
|
|
154543
154626
|
}, "strip", z$1.ZodTypeAny, {
|
|
154544
154627
|
email: string;
|
|
154545
154628
|
id: string;
|
|
@@ -154584,6 +154667,9 @@ declare const ForgeIterationMessage: z$1.ZodObject<{
|
|
|
154584
154667
|
};
|
|
154585
154668
|
createdAt: Date;
|
|
154586
154669
|
isProtected: boolean;
|
|
154670
|
+
emailSettings: {
|
|
154671
|
+
marketingEmails: boolean;
|
|
154672
|
+
};
|
|
154587
154673
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
154588
154674
|
loggedOutAt?: Date | undefined;
|
|
154589
154675
|
}, {
|
|
@@ -154630,6 +154716,9 @@ declare const ForgeIterationMessage: z$1.ZodObject<{
|
|
|
154630
154716
|
};
|
|
154631
154717
|
createdAt: Date;
|
|
154632
154718
|
isProtected: boolean;
|
|
154719
|
+
emailSettings: {
|
|
154720
|
+
marketingEmails: boolean;
|
|
154721
|
+
};
|
|
154633
154722
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
154634
154723
|
loggedOutAt?: Date | undefined;
|
|
154635
154724
|
}>>;
|
|
@@ -154682,6 +154771,9 @@ declare const ForgeIterationMessage: z$1.ZodObject<{
|
|
|
154682
154771
|
};
|
|
154683
154772
|
createdAt: Date;
|
|
154684
154773
|
isProtected: boolean;
|
|
154774
|
+
emailSettings: {
|
|
154775
|
+
marketingEmails: boolean;
|
|
154776
|
+
};
|
|
154685
154777
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
154686
154778
|
loggedOutAt?: Date | undefined;
|
|
154687
154779
|
} | undefined;
|
|
@@ -154750,6 +154842,9 @@ declare const ForgeIterationMessage: z$1.ZodObject<{
|
|
|
154750
154842
|
};
|
|
154751
154843
|
createdAt: Date;
|
|
154752
154844
|
isProtected: boolean;
|
|
154845
|
+
emailSettings: {
|
|
154846
|
+
marketingEmails: boolean;
|
|
154847
|
+
};
|
|
154753
154848
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
154754
154849
|
loggedOutAt?: Date | undefined;
|
|
154755
154850
|
} | undefined;
|
|
@@ -154842,6 +154937,9 @@ declare const ForgeIterationMessage: z$1.ZodObject<{
|
|
|
154842
154937
|
};
|
|
154843
154938
|
createdAt: Date;
|
|
154844
154939
|
isProtected: boolean;
|
|
154940
|
+
emailSettings: {
|
|
154941
|
+
marketingEmails: boolean;
|
|
154942
|
+
};
|
|
154845
154943
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
154846
154944
|
loggedOutAt?: Date | undefined;
|
|
154847
154945
|
} | undefined;
|
|
@@ -154923,6 +155021,9 @@ declare const ForgeIterationMessage: z$1.ZodObject<{
|
|
|
154923
155021
|
};
|
|
154924
155022
|
createdAt: Date;
|
|
154925
155023
|
isProtected: boolean;
|
|
155024
|
+
emailSettings: {
|
|
155025
|
+
marketingEmails: boolean;
|
|
155026
|
+
};
|
|
154926
155027
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
154927
155028
|
loggedOutAt?: Date | undefined;
|
|
154928
155029
|
} | undefined;
|
|
@@ -155223,6 +155324,13 @@ declare const ForgeParticipant: z$1.ZodObject<{
|
|
|
155223
155324
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
155224
155325
|
isProtected: z$1.ZodBoolean;
|
|
155225
155326
|
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
155327
|
+
emailSettings: z$1.ZodObject<{
|
|
155328
|
+
marketingEmails: z$1.ZodBoolean;
|
|
155329
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
155330
|
+
marketingEmails: boolean;
|
|
155331
|
+
}, {
|
|
155332
|
+
marketingEmails: boolean;
|
|
155333
|
+
}>;
|
|
155226
155334
|
}, "strip", z$1.ZodTypeAny, {
|
|
155227
155335
|
email: string;
|
|
155228
155336
|
id: string;
|
|
@@ -155267,6 +155375,9 @@ declare const ForgeParticipant: z$1.ZodObject<{
|
|
|
155267
155375
|
};
|
|
155268
155376
|
createdAt: Date;
|
|
155269
155377
|
isProtected: boolean;
|
|
155378
|
+
emailSettings: {
|
|
155379
|
+
marketingEmails: boolean;
|
|
155380
|
+
};
|
|
155270
155381
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
155271
155382
|
loggedOutAt?: Date | undefined;
|
|
155272
155383
|
}, {
|
|
@@ -155313,6 +155424,9 @@ declare const ForgeParticipant: z$1.ZodObject<{
|
|
|
155313
155424
|
};
|
|
155314
155425
|
createdAt: Date;
|
|
155315
155426
|
isProtected: boolean;
|
|
155427
|
+
emailSettings: {
|
|
155428
|
+
marketingEmails: boolean;
|
|
155429
|
+
};
|
|
155316
155430
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
155317
155431
|
loggedOutAt?: Date | undefined;
|
|
155318
155432
|
}>>;
|
|
@@ -155365,6 +155479,9 @@ declare const ForgeParticipant: z$1.ZodObject<{
|
|
|
155365
155479
|
};
|
|
155366
155480
|
createdAt: Date;
|
|
155367
155481
|
isProtected: boolean;
|
|
155482
|
+
emailSettings: {
|
|
155483
|
+
marketingEmails: boolean;
|
|
155484
|
+
};
|
|
155368
155485
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
155369
155486
|
loggedOutAt?: Date | undefined;
|
|
155370
155487
|
} | undefined;
|
|
@@ -155433,6 +155550,9 @@ declare const ForgeParticipant: z$1.ZodObject<{
|
|
|
155433
155550
|
};
|
|
155434
155551
|
createdAt: Date;
|
|
155435
155552
|
isProtected: boolean;
|
|
155553
|
+
emailSettings: {
|
|
155554
|
+
marketingEmails: boolean;
|
|
155555
|
+
};
|
|
155436
155556
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
155437
155557
|
loggedOutAt?: Date | undefined;
|
|
155438
155558
|
} | undefined;
|
|
@@ -157997,6 +158117,13 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
157997
158117
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
157998
158118
|
isProtected: z$1.ZodBoolean;
|
|
157999
158119
|
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
158120
|
+
emailSettings: z$1.ZodObject<{
|
|
158121
|
+
marketingEmails: z$1.ZodBoolean;
|
|
158122
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
158123
|
+
marketingEmails: boolean;
|
|
158124
|
+
}, {
|
|
158125
|
+
marketingEmails: boolean;
|
|
158126
|
+
}>;
|
|
158000
158127
|
}, "strip", z$1.ZodTypeAny, {
|
|
158001
158128
|
email: string;
|
|
158002
158129
|
id: string;
|
|
@@ -158041,6 +158168,9 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
158041
158168
|
};
|
|
158042
158169
|
createdAt: Date;
|
|
158043
158170
|
isProtected: boolean;
|
|
158171
|
+
emailSettings: {
|
|
158172
|
+
marketingEmails: boolean;
|
|
158173
|
+
};
|
|
158044
158174
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
158045
158175
|
loggedOutAt?: Date | undefined;
|
|
158046
158176
|
}, {
|
|
@@ -158087,6 +158217,9 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
158087
158217
|
};
|
|
158088
158218
|
createdAt: Date;
|
|
158089
158219
|
isProtected: boolean;
|
|
158220
|
+
emailSettings: {
|
|
158221
|
+
marketingEmails: boolean;
|
|
158222
|
+
};
|
|
158090
158223
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
158091
158224
|
loggedOutAt?: Date | undefined;
|
|
158092
158225
|
}>>;
|
|
@@ -158139,6 +158272,9 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
158139
158272
|
};
|
|
158140
158273
|
createdAt: Date;
|
|
158141
158274
|
isProtected: boolean;
|
|
158275
|
+
emailSettings: {
|
|
158276
|
+
marketingEmails: boolean;
|
|
158277
|
+
};
|
|
158142
158278
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
158143
158279
|
loggedOutAt?: Date | undefined;
|
|
158144
158280
|
} | undefined;
|
|
@@ -158207,6 +158343,9 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
158207
158343
|
};
|
|
158208
158344
|
createdAt: Date;
|
|
158209
158345
|
isProtected: boolean;
|
|
158346
|
+
emailSettings: {
|
|
158347
|
+
marketingEmails: boolean;
|
|
158348
|
+
};
|
|
158210
158349
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
158211
158350
|
loggedOutAt?: Date | undefined;
|
|
158212
158351
|
} | undefined;
|
|
@@ -158299,6 +158438,9 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
158299
158438
|
};
|
|
158300
158439
|
createdAt: Date;
|
|
158301
158440
|
isProtected: boolean;
|
|
158441
|
+
emailSettings: {
|
|
158442
|
+
marketingEmails: boolean;
|
|
158443
|
+
};
|
|
158302
158444
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
158303
158445
|
loggedOutAt?: Date | undefined;
|
|
158304
158446
|
} | undefined;
|
|
@@ -158380,6 +158522,9 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
158380
158522
|
};
|
|
158381
158523
|
createdAt: Date;
|
|
158382
158524
|
isProtected: boolean;
|
|
158525
|
+
emailSettings: {
|
|
158526
|
+
marketingEmails: boolean;
|
|
158527
|
+
};
|
|
158383
158528
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
158384
158529
|
loggedOutAt?: Date | undefined;
|
|
158385
158530
|
} | undefined;
|
|
@@ -158606,6 +158751,9 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
158606
158751
|
};
|
|
158607
158752
|
createdAt: Date;
|
|
158608
158753
|
isProtected: boolean;
|
|
158754
|
+
emailSettings: {
|
|
158755
|
+
marketingEmails: boolean;
|
|
158756
|
+
};
|
|
158609
158757
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
158610
158758
|
loggedOutAt?: Date | undefined;
|
|
158611
158759
|
} | undefined;
|
|
@@ -158739,6 +158887,9 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
158739
158887
|
};
|
|
158740
158888
|
createdAt: Date;
|
|
158741
158889
|
isProtected: boolean;
|
|
158890
|
+
emailSettings: {
|
|
158891
|
+
marketingEmails: boolean;
|
|
158892
|
+
};
|
|
158742
158893
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
158743
158894
|
loggedOutAt?: Date | undefined;
|
|
158744
158895
|
} | undefined;
|
|
@@ -158871,6 +159022,35 @@ type ForgeSection = z$1.infer<typeof ForgeSection>;
|
|
|
158871
159022
|
declare const ForgeProjectSectionChildType: z$1.ZodEnum<["Artifact", "Feature"]>;
|
|
158872
159023
|
type ForgeProjectSectionChildType = z$1.infer<typeof ForgeProjectSectionChildType>;
|
|
158873
159024
|
|
|
159025
|
+
declare const ForgeRelationType: z$1.ZodEnum<["Feature", "Document"]>;
|
|
159026
|
+
type ForgeRelationType = z$1.infer<typeof ForgeRelationType>;
|
|
159027
|
+
declare const ForgeRelation: z$1.ZodObject<{
|
|
159028
|
+
id: z$1.ZodString;
|
|
159029
|
+
projectId: z$1.ZodString;
|
|
159030
|
+
sourceItemId: z$1.ZodString;
|
|
159031
|
+
sourceItemType: z$1.ZodEnum<["Feature", "Document"]>;
|
|
159032
|
+
targetItemId: z$1.ZodString;
|
|
159033
|
+
targetItemType: z$1.ZodEnum<["Feature", "Document"]>;
|
|
159034
|
+
createdAt: z$1.ZodString;
|
|
159035
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
159036
|
+
id: string;
|
|
159037
|
+
createdAt: string;
|
|
159038
|
+
projectId: string;
|
|
159039
|
+
sourceItemId: string;
|
|
159040
|
+
sourceItemType: "Feature" | "Document";
|
|
159041
|
+
targetItemId: string;
|
|
159042
|
+
targetItemType: "Feature" | "Document";
|
|
159043
|
+
}, {
|
|
159044
|
+
id: string;
|
|
159045
|
+
createdAt: string;
|
|
159046
|
+
projectId: string;
|
|
159047
|
+
sourceItemId: string;
|
|
159048
|
+
sourceItemType: "Feature" | "Document";
|
|
159049
|
+
targetItemId: string;
|
|
159050
|
+
targetItemType: "Feature" | "Document";
|
|
159051
|
+
}>;
|
|
159052
|
+
type ForgeRelation = z$1.infer<typeof ForgeRelation>;
|
|
159053
|
+
|
|
158874
159054
|
declare enum OAuthProviderNames {
|
|
158875
159055
|
Figma = "figma",
|
|
158876
159056
|
Azure = "azure",
|
|
@@ -188224,6 +188404,31 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188224
188404
|
projectId: string;
|
|
188225
188405
|
sortOrder?: number | undefined;
|
|
188226
188406
|
}>, "many">;
|
|
188407
|
+
relations: z$1.ZodArray<z$1.ZodObject<{
|
|
188408
|
+
id: z$1.ZodString;
|
|
188409
|
+
projectId: z$1.ZodString;
|
|
188410
|
+
sourceItemId: z$1.ZodString;
|
|
188411
|
+
sourceItemType: z$1.ZodEnum<["Feature", "Document"]>;
|
|
188412
|
+
targetItemId: z$1.ZodString;
|
|
188413
|
+
targetItemType: z$1.ZodEnum<["Feature", "Document"]>;
|
|
188414
|
+
createdAt: z$1.ZodString;
|
|
188415
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
188416
|
+
id: string;
|
|
188417
|
+
createdAt: string;
|
|
188418
|
+
projectId: string;
|
|
188419
|
+
sourceItemId: string;
|
|
188420
|
+
sourceItemType: "Feature" | "Document";
|
|
188421
|
+
targetItemId: string;
|
|
188422
|
+
targetItemType: "Feature" | "Document";
|
|
188423
|
+
}, {
|
|
188424
|
+
id: string;
|
|
188425
|
+
createdAt: string;
|
|
188426
|
+
projectId: string;
|
|
188427
|
+
sourceItemId: string;
|
|
188428
|
+
sourceItemType: "Feature" | "Document";
|
|
188429
|
+
targetItemId: string;
|
|
188430
|
+
targetItemType: "Feature" | "Document";
|
|
188431
|
+
}>, "many">;
|
|
188227
188432
|
}, "strip", z$1.ZodTypeAny, {
|
|
188228
188433
|
features: {
|
|
188229
188434
|
status: "Draft" | "ReadyForDevelopment";
|
|
@@ -188275,6 +188480,15 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188275
188480
|
sortOrder: number;
|
|
188276
188481
|
projectId: string;
|
|
188277
188482
|
}[];
|
|
188483
|
+
relations: {
|
|
188484
|
+
id: string;
|
|
188485
|
+
createdAt: string;
|
|
188486
|
+
projectId: string;
|
|
188487
|
+
sourceItemId: string;
|
|
188488
|
+
sourceItemType: "Feature" | "Document";
|
|
188489
|
+
targetItemId: string;
|
|
188490
|
+
targetItemType: "Feature" | "Document";
|
|
188491
|
+
}[];
|
|
188278
188492
|
}, {
|
|
188279
188493
|
features: {
|
|
188280
188494
|
id: string;
|
|
@@ -188326,6 +188540,15 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188326
188540
|
projectId: string;
|
|
188327
188541
|
sortOrder?: number | undefined;
|
|
188328
188542
|
}[];
|
|
188543
|
+
relations: {
|
|
188544
|
+
id: string;
|
|
188545
|
+
createdAt: string;
|
|
188546
|
+
projectId: string;
|
|
188547
|
+
sourceItemId: string;
|
|
188548
|
+
sourceItemType: "Feature" | "Document";
|
|
188549
|
+
targetItemId: string;
|
|
188550
|
+
targetItemType: "Feature" | "Document";
|
|
188551
|
+
}[];
|
|
188329
188552
|
}>;
|
|
188330
188553
|
type ForgeProjectRoomInitialState = z$1.infer<typeof ForgeProjectRoomInitialState>;
|
|
188331
188554
|
declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
@@ -188475,6 +188698,31 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
188475
188698
|
sortOrder?: number | undefined;
|
|
188476
188699
|
}>, "many">>;
|
|
188477
188700
|
featureSectionIdsToDelete: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
188701
|
+
relations: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
188702
|
+
id: z$1.ZodString;
|
|
188703
|
+
projectId: z$1.ZodString;
|
|
188704
|
+
sourceItemId: z$1.ZodString;
|
|
188705
|
+
sourceItemType: z$1.ZodEnum<["Feature", "Document"]>;
|
|
188706
|
+
targetItemId: z$1.ZodString;
|
|
188707
|
+
targetItemType: z$1.ZodEnum<["Feature", "Document"]>;
|
|
188708
|
+
createdAt: z$1.ZodString;
|
|
188709
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
188710
|
+
id: string;
|
|
188711
|
+
createdAt: string;
|
|
188712
|
+
projectId: string;
|
|
188713
|
+
sourceItemId: string;
|
|
188714
|
+
sourceItemType: "Feature" | "Document";
|
|
188715
|
+
targetItemId: string;
|
|
188716
|
+
targetItemType: "Feature" | "Document";
|
|
188717
|
+
}, {
|
|
188718
|
+
id: string;
|
|
188719
|
+
createdAt: string;
|
|
188720
|
+
projectId: string;
|
|
188721
|
+
sourceItemId: string;
|
|
188722
|
+
sourceItemType: "Feature" | "Document";
|
|
188723
|
+
targetItemId: string;
|
|
188724
|
+
targetItemType: "Feature" | "Document";
|
|
188725
|
+
}>, "many">>;
|
|
188478
188726
|
executedTransactionIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
188479
188727
|
}, "strip", z$1.ZodTypeAny, {
|
|
188480
188728
|
features?: {
|
|
@@ -188528,6 +188776,15 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
188528
188776
|
sortOrder: number;
|
|
188529
188777
|
projectId: string;
|
|
188530
188778
|
}[] | undefined;
|
|
188779
|
+
relations?: {
|
|
188780
|
+
id: string;
|
|
188781
|
+
createdAt: string;
|
|
188782
|
+
projectId: string;
|
|
188783
|
+
sourceItemId: string;
|
|
188784
|
+
sourceItemType: "Feature" | "Document";
|
|
188785
|
+
targetItemId: string;
|
|
188786
|
+
targetItemType: "Feature" | "Document";
|
|
188787
|
+
}[] | undefined;
|
|
188531
188788
|
artifactIdsToDelete?: string[] | undefined;
|
|
188532
188789
|
featureIdsToDelete?: string[] | undefined;
|
|
188533
188790
|
artifactSectionIdsToDelete?: string[] | undefined;
|
|
@@ -188584,6 +188841,15 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
188584
188841
|
projectId: string;
|
|
188585
188842
|
sortOrder?: number | undefined;
|
|
188586
188843
|
}[] | undefined;
|
|
188844
|
+
relations?: {
|
|
188845
|
+
id: string;
|
|
188846
|
+
createdAt: string;
|
|
188847
|
+
projectId: string;
|
|
188848
|
+
sourceItemId: string;
|
|
188849
|
+
sourceItemType: "Feature" | "Document";
|
|
188850
|
+
targetItemId: string;
|
|
188851
|
+
targetItemType: "Feature" | "Document";
|
|
188852
|
+
}[] | undefined;
|
|
188587
188853
|
artifactIdsToDelete?: string[] | undefined;
|
|
188588
188854
|
featureIdsToDelete?: string[] | undefined;
|
|
188589
188855
|
artifactSectionIdsToDelete?: string[] | undefined;
|
|
@@ -189766,213 +190032,6 @@ declare const UserProfile: z$1.ZodObject<{
|
|
|
189766
190032
|
} | null | undefined;
|
|
189767
190033
|
}>;
|
|
189768
190034
|
type UserProfile = z$1.infer<typeof UserProfile>;
|
|
189769
|
-
declare const UserProfileUpdate: z$1.ZodObject<Omit<{
|
|
189770
|
-
name: z$1.ZodOptional<z$1.ZodString>;
|
|
189771
|
-
avatar: z$1.ZodOptional<z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>>;
|
|
189772
|
-
nickname: z$1.ZodOptional<z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>>;
|
|
189773
|
-
onboarding: z$1.ZodOptional<z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
|
|
189774
|
-
companyName?: string | undefined;
|
|
189775
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
189776
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
189777
|
-
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
189778
|
-
jobTitle?: string | undefined;
|
|
189779
|
-
phase?: string | undefined;
|
|
189780
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
189781
|
-
designSystemName?: string | undefined;
|
|
189782
|
-
defaultDestination?: string | undefined;
|
|
189783
|
-
figmaUrl?: string | undefined;
|
|
189784
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
189785
|
-
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
189786
|
-
}, z$1.ZodTypeDef, {
|
|
189787
|
-
companyName?: string | undefined;
|
|
189788
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
189789
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
189790
|
-
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
189791
|
-
jobTitle?: string | undefined;
|
|
189792
|
-
phase?: string | undefined;
|
|
189793
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
189794
|
-
designSystemName?: string | undefined;
|
|
189795
|
-
defaultDestination?: string | undefined;
|
|
189796
|
-
figmaUrl?: string | undefined;
|
|
189797
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
189798
|
-
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
189799
|
-
}>>>, {
|
|
189800
|
-
companyName?: string | undefined;
|
|
189801
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
189802
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
189803
|
-
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
189804
|
-
jobTitle?: string | undefined;
|
|
189805
|
-
phase?: string | undefined;
|
|
189806
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
189807
|
-
designSystemName?: string | undefined;
|
|
189808
|
-
defaultDestination?: string | undefined;
|
|
189809
|
-
figmaUrl?: string | undefined;
|
|
189810
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
189811
|
-
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
189812
|
-
} | undefined, {
|
|
189813
|
-
companyName?: string | undefined;
|
|
189814
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
189815
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
189816
|
-
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
189817
|
-
jobTitle?: string | undefined;
|
|
189818
|
-
phase?: string | undefined;
|
|
189819
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
189820
|
-
designSystemName?: string | undefined;
|
|
189821
|
-
defaultDestination?: string | undefined;
|
|
189822
|
-
figmaUrl?: string | undefined;
|
|
189823
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
189824
|
-
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
189825
|
-
} | null | undefined>>;
|
|
189826
|
-
theme: z$1.ZodOptional<z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
|
|
189827
|
-
backgroundColor?: string | undefined;
|
|
189828
|
-
accentColor?: string | undefined;
|
|
189829
|
-
contrast?: number | undefined;
|
|
189830
|
-
isSecondaryEnabled?: boolean | undefined;
|
|
189831
|
-
secondaryBackgroundColor?: string | undefined;
|
|
189832
|
-
secondaryContrast?: number | undefined;
|
|
189833
|
-
isEditorWhite?: boolean | undefined;
|
|
189834
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
189835
|
-
}, z$1.ZodTypeDef, {
|
|
189836
|
-
backgroundColor?: string | undefined;
|
|
189837
|
-
accentColor?: string | undefined;
|
|
189838
|
-
contrast?: number | undefined;
|
|
189839
|
-
isSecondaryEnabled?: boolean | undefined;
|
|
189840
|
-
secondaryBackgroundColor?: string | undefined;
|
|
189841
|
-
secondaryContrast?: number | undefined;
|
|
189842
|
-
isEditorWhite?: boolean | undefined;
|
|
189843
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
189844
|
-
}>>>, {
|
|
189845
|
-
backgroundColor?: string | undefined;
|
|
189846
|
-
accentColor?: string | undefined;
|
|
189847
|
-
contrast?: number | undefined;
|
|
189848
|
-
isSecondaryEnabled?: boolean | undefined;
|
|
189849
|
-
secondaryBackgroundColor?: string | undefined;
|
|
189850
|
-
secondaryContrast?: number | undefined;
|
|
189851
|
-
isEditorWhite?: boolean | undefined;
|
|
189852
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
189853
|
-
} | undefined, {
|
|
189854
|
-
backgroundColor?: string | undefined;
|
|
189855
|
-
accentColor?: string | undefined;
|
|
189856
|
-
contrast?: number | undefined;
|
|
189857
|
-
isSecondaryEnabled?: boolean | undefined;
|
|
189858
|
-
secondaryBackgroundColor?: string | undefined;
|
|
189859
|
-
secondaryContrast?: number | undefined;
|
|
189860
|
-
isEditorWhite?: boolean | undefined;
|
|
189861
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
189862
|
-
} | null | undefined>>;
|
|
189863
|
-
portalTheme: z$1.ZodOptional<z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<{
|
|
189864
|
-
backgroundColor?: string | undefined;
|
|
189865
|
-
accentColor?: string | undefined;
|
|
189866
|
-
contrast?: number | undefined;
|
|
189867
|
-
isSecondaryEnabled?: boolean | undefined;
|
|
189868
|
-
secondaryBackgroundColor?: string | undefined;
|
|
189869
|
-
secondaryContrast?: number | undefined;
|
|
189870
|
-
isEditorWhite?: boolean | undefined;
|
|
189871
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
189872
|
-
}, z$1.ZodTypeDef, {
|
|
189873
|
-
backgroundColor?: string | undefined;
|
|
189874
|
-
accentColor?: string | undefined;
|
|
189875
|
-
contrast?: number | undefined;
|
|
189876
|
-
isSecondaryEnabled?: boolean | undefined;
|
|
189877
|
-
secondaryBackgroundColor?: string | undefined;
|
|
189878
|
-
secondaryContrast?: number | undefined;
|
|
189879
|
-
isEditorWhite?: boolean | undefined;
|
|
189880
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
189881
|
-
}>>>, {
|
|
189882
|
-
backgroundColor?: string | undefined;
|
|
189883
|
-
accentColor?: string | undefined;
|
|
189884
|
-
contrast?: number | undefined;
|
|
189885
|
-
isSecondaryEnabled?: boolean | undefined;
|
|
189886
|
-
secondaryBackgroundColor?: string | undefined;
|
|
189887
|
-
secondaryContrast?: number | undefined;
|
|
189888
|
-
isEditorWhite?: boolean | undefined;
|
|
189889
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
189890
|
-
} | undefined, {
|
|
189891
|
-
backgroundColor?: string | undefined;
|
|
189892
|
-
accentColor?: string | undefined;
|
|
189893
|
-
contrast?: number | undefined;
|
|
189894
|
-
isSecondaryEnabled?: boolean | undefined;
|
|
189895
|
-
secondaryBackgroundColor?: string | undefined;
|
|
189896
|
-
secondaryContrast?: number | undefined;
|
|
189897
|
-
isEditorWhite?: boolean | undefined;
|
|
189898
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
189899
|
-
} | null | undefined>>;
|
|
189900
|
-
}, "avatar">, "strip", z$1.ZodTypeAny, {
|
|
189901
|
-
name?: string | undefined;
|
|
189902
|
-
nickname?: string | undefined;
|
|
189903
|
-
theme?: {
|
|
189904
|
-
backgroundColor?: string | undefined;
|
|
189905
|
-
accentColor?: string | undefined;
|
|
189906
|
-
contrast?: number | undefined;
|
|
189907
|
-
isSecondaryEnabled?: boolean | undefined;
|
|
189908
|
-
secondaryBackgroundColor?: string | undefined;
|
|
189909
|
-
secondaryContrast?: number | undefined;
|
|
189910
|
-
isEditorWhite?: boolean | undefined;
|
|
189911
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
189912
|
-
} | undefined;
|
|
189913
|
-
onboarding?: {
|
|
189914
|
-
companyName?: string | undefined;
|
|
189915
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
189916
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
189917
|
-
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
189918
|
-
jobTitle?: string | undefined;
|
|
189919
|
-
phase?: string | undefined;
|
|
189920
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
189921
|
-
designSystemName?: string | undefined;
|
|
189922
|
-
defaultDestination?: string | undefined;
|
|
189923
|
-
figmaUrl?: string | undefined;
|
|
189924
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
189925
|
-
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
189926
|
-
} | undefined;
|
|
189927
|
-
portalTheme?: {
|
|
189928
|
-
backgroundColor?: string | undefined;
|
|
189929
|
-
accentColor?: string | undefined;
|
|
189930
|
-
contrast?: number | undefined;
|
|
189931
|
-
isSecondaryEnabled?: boolean | undefined;
|
|
189932
|
-
secondaryBackgroundColor?: string | undefined;
|
|
189933
|
-
secondaryContrast?: number | undefined;
|
|
189934
|
-
isEditorWhite?: boolean | undefined;
|
|
189935
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
189936
|
-
} | undefined;
|
|
189937
|
-
}, {
|
|
189938
|
-
name?: string | undefined;
|
|
189939
|
-
nickname?: string | null | undefined;
|
|
189940
|
-
theme?: {
|
|
189941
|
-
backgroundColor?: string | undefined;
|
|
189942
|
-
accentColor?: string | undefined;
|
|
189943
|
-
contrast?: number | undefined;
|
|
189944
|
-
isSecondaryEnabled?: boolean | undefined;
|
|
189945
|
-
secondaryBackgroundColor?: string | undefined;
|
|
189946
|
-
secondaryContrast?: number | undefined;
|
|
189947
|
-
isEditorWhite?: boolean | undefined;
|
|
189948
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
189949
|
-
} | null | undefined;
|
|
189950
|
-
onboarding?: {
|
|
189951
|
-
companyName?: string | undefined;
|
|
189952
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
189953
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
189954
|
-
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
189955
|
-
jobTitle?: string | undefined;
|
|
189956
|
-
phase?: string | undefined;
|
|
189957
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
189958
|
-
designSystemName?: string | undefined;
|
|
189959
|
-
defaultDestination?: string | undefined;
|
|
189960
|
-
figmaUrl?: string | undefined;
|
|
189961
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
189962
|
-
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
189963
|
-
} | null | undefined;
|
|
189964
|
-
portalTheme?: {
|
|
189965
|
-
backgroundColor?: string | undefined;
|
|
189966
|
-
accentColor?: string | undefined;
|
|
189967
|
-
contrast?: number | undefined;
|
|
189968
|
-
isSecondaryEnabled?: boolean | undefined;
|
|
189969
|
-
secondaryBackgroundColor?: string | undefined;
|
|
189970
|
-
secondaryContrast?: number | undefined;
|
|
189971
|
-
isEditorWhite?: boolean | undefined;
|
|
189972
|
-
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | "DefaultPortal" | undefined;
|
|
189973
|
-
} | null | undefined;
|
|
189974
|
-
}>;
|
|
189975
|
-
type UserProfileUpdate = z$1.infer<typeof UserProfileUpdate>;
|
|
189976
190035
|
|
|
189977
190036
|
declare const UserTest: z$1.ZodObject<{
|
|
189978
190037
|
id: z$1.ZodString;
|
|
@@ -189988,6 +190047,14 @@ type UserTest = z$1.infer<typeof UserTest>;
|
|
|
189988
190047
|
|
|
189989
190048
|
declare const UserSource: z$1.ZodEnum<["SignUp", "Invite", "SSO"]>;
|
|
189990
190049
|
type UserSource = z$1.infer<typeof UserSource>;
|
|
190050
|
+
declare const UserEmailSettings: z$1.ZodObject<{
|
|
190051
|
+
marketingEmails: z$1.ZodBoolean;
|
|
190052
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
190053
|
+
marketingEmails: boolean;
|
|
190054
|
+
}, {
|
|
190055
|
+
marketingEmails: boolean;
|
|
190056
|
+
}>;
|
|
190057
|
+
type UserEmailSettings = z$1.infer<typeof UserEmailSettings>;
|
|
189991
190058
|
declare const User: z$1.ZodObject<{
|
|
189992
190059
|
id: z$1.ZodString;
|
|
189993
190060
|
email: z$1.ZodString;
|
|
@@ -190203,6 +190270,13 @@ declare const User: z$1.ZodObject<{
|
|
|
190203
190270
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
190204
190271
|
isProtected: z$1.ZodBoolean;
|
|
190205
190272
|
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
190273
|
+
emailSettings: z$1.ZodObject<{
|
|
190274
|
+
marketingEmails: z$1.ZodBoolean;
|
|
190275
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
190276
|
+
marketingEmails: boolean;
|
|
190277
|
+
}, {
|
|
190278
|
+
marketingEmails: boolean;
|
|
190279
|
+
}>;
|
|
190206
190280
|
}, "strip", z$1.ZodTypeAny, {
|
|
190207
190281
|
email: string;
|
|
190208
190282
|
id: string;
|
|
@@ -190247,6 +190321,9 @@ declare const User: z$1.ZodObject<{
|
|
|
190247
190321
|
};
|
|
190248
190322
|
createdAt: Date;
|
|
190249
190323
|
isProtected: boolean;
|
|
190324
|
+
emailSettings: {
|
|
190325
|
+
marketingEmails: boolean;
|
|
190326
|
+
};
|
|
190250
190327
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
190251
190328
|
loggedOutAt?: Date | undefined;
|
|
190252
190329
|
}, {
|
|
@@ -190293,6 +190370,9 @@ declare const User: z$1.ZodObject<{
|
|
|
190293
190370
|
};
|
|
190294
190371
|
createdAt: Date;
|
|
190295
190372
|
isProtected: boolean;
|
|
190373
|
+
emailSettings: {
|
|
190374
|
+
marketingEmails: boolean;
|
|
190375
|
+
};
|
|
190296
190376
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
190297
190377
|
loggedOutAt?: Date | undefined;
|
|
190298
190378
|
}>;
|
|
@@ -190303,4 +190383,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
190303
190383
|
token: PersonalAccessToken;
|
|
190304
190384
|
};
|
|
190305
190385
|
|
|
190306
|
-
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, BaseTheme, 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 CreateForgeFeatureRoom, type CreateForgeProjectArtifactRoom, type CreateForgeProjectInvitation, type CreateForgeProjectMembership, type CreateForgeProjectRoom, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreateProjectFeature, 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, type DefinedProps, 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, ForgeChatMessageUserScore, ForgeChatMessageUserScoreType, ForgeChatThread, type ForgeFeatureParsedRoomId, ForgeFeatureRoom, type ForgeFeatureRoomOwner, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeParticipant, ForgeProjectArtifact, ForgeProjectArtifactContent, ForgeProjectArtifactContentData, type ForgeProjectArtifactParsedRoomId, ForgeProjectArtifactRoom, type ForgeProjectArtifactRoomOwner, ForgeProjectFigmaNode, ForgeProjectFigmaNodeRenderInput, ForgeProjectFile, ForgeProjectInvitation, ForgeProjectIteration, ForgeProjectIterationMergeMeta, ForgeProjectMembership, type ForgeProjectParsedRoomId, ForgeProjectRole, ForgeProjectRoom, ForgeProjectRoomInitialState, type ForgeProjectRoomOwner, ForgeProjectRoomUpdate, ForgeProjectSectionChildType, ForgeSection, 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, Id, 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 NullToUndefined, 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, PageScreenshotInput, PageScreenshotOutput, 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, PortalSettingsSidebar, PortalSettingsSidebarLink, PortalSettingsSidebarSection, PortalSettingsTheme, PortalTheme, PortalThemePreset, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, ProjectFeature, ProjectFeatureStatus, 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, SentryTraceHeaders, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SortOrder, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, 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 UpdateForgeFeatureRoom, type UpdateForgeProjectArtifactRoom, type UpdateForgeProjectRoom, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdateProjectFeature, 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, UserThemePreset, 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, WorkspaceSeatType, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, deriveWorkspaceSeatTypeFromRole, designTokenImportModelTypeFilter, designTokenTypeFilter, errorToString, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, hasTruthyProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, nullsToUndefined, parseUrl, pickDefined, 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 };
|
|
190386
|
+
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, BaseTheme, 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 CreateForgeFeatureRoom, type CreateForgeProjectArtifactRoom, type CreateForgeProjectInvitation, type CreateForgeProjectMembership, type CreateForgeProjectRoom, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreateProjectFeature, 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, type DefinedProps, 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, ForgeChatMessageUserScore, ForgeChatMessageUserScoreType, ForgeChatThread, type ForgeFeatureParsedRoomId, ForgeFeatureRoom, type ForgeFeatureRoomOwner, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeParticipant, ForgeProjectArtifact, ForgeProjectArtifactContent, ForgeProjectArtifactContentData, type ForgeProjectArtifactParsedRoomId, ForgeProjectArtifactRoom, type ForgeProjectArtifactRoomOwner, ForgeProjectFigmaNode, ForgeProjectFigmaNodeRenderInput, ForgeProjectFile, ForgeProjectInvitation, ForgeProjectIteration, ForgeProjectIterationMergeMeta, ForgeProjectMembership, type ForgeProjectParsedRoomId, ForgeProjectRole, ForgeProjectRoom, ForgeProjectRoomInitialState, type ForgeProjectRoomOwner, ForgeProjectRoomUpdate, ForgeProjectSectionChildType, ForgeRelation, ForgeRelationType, ForgeSection, 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, Id, 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 NullToUndefined, 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, PageScreenshotInput, PageScreenshotOutput, 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, PortalSettingsSidebar, PortalSettingsSidebarLink, PortalSettingsSidebarSection, PortalSettingsTheme, PortalTheme, PortalThemePreset, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, ProjectFeature, ProjectFeatureStatus, 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, SentryTraceHeaders, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SortOrder, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, 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 UpdateForgeFeatureRoom, type UpdateForgeProjectArtifactRoom, type UpdateForgeProjectRoom, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdateProjectFeature, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserEmailSettings, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, UserSource, UserTest, UserTheme, UserThemePreset, 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, WorkspaceSeatType, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, deriveWorkspaceSeatTypeFromRole, designTokenImportModelTypeFilter, designTokenTypeFilter, errorToString, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, hasTruthyProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, nullsToUndefined, parseUrl, pickDefined, 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 };
|