@supernova-studio/model 1.44.2 → 1.44.4
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 +337 -257
- package/dist/index.d.ts +337 -257
- package/dist/index.js +25 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +366 -348
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1348,7 +1348,7 @@ declare const PostStripePortalSessionOutputSchema: z$1.ZodObject<{
|
|
|
1348
1348
|
type StripePortalSessionInput = z$1.infer<typeof PostStripePortalSessionBodyInputSchema>;
|
|
1349
1349
|
type StripePortalSessionOutput = z$1.infer<typeof PostStripePortalSessionOutputSchema>;
|
|
1350
1350
|
|
|
1351
|
-
declare const BillingIntervalSchema: z$1.ZodEnum<["daily", "monthly", "
|
|
1351
|
+
declare const BillingIntervalSchema: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
1352
1352
|
declare const PriceSchema: z$1.ZodObject<{
|
|
1353
1353
|
stripePriceId: z$1.ZodString;
|
|
1354
1354
|
stripeProductId: z$1.ZodString;
|
|
@@ -1356,7 +1356,7 @@ declare const PriceSchema: z$1.ZodObject<{
|
|
|
1356
1356
|
stripeProductDescription: z$1.ZodOptional<z$1.ZodString>;
|
|
1357
1357
|
active: z$1.ZodBoolean;
|
|
1358
1358
|
amount: z$1.ZodNumber;
|
|
1359
|
-
interval: z$1.ZodEnum<["daily", "monthly", "
|
|
1359
|
+
interval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
1360
1360
|
isPricePerCreator: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
1361
1361
|
isTrial: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
1362
1362
|
isHidden: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
@@ -1372,7 +1372,7 @@ declare const PriceSchema: z$1.ZodObject<{
|
|
|
1372
1372
|
stripePriceId: string;
|
|
1373
1373
|
stripeProductId: string;
|
|
1374
1374
|
active: boolean;
|
|
1375
|
-
interval: "daily" | "monthly" | "
|
|
1375
|
+
interval: "daily" | "monthly" | "yearly";
|
|
1376
1376
|
stripeProductName?: string | undefined;
|
|
1377
1377
|
stripeProductDescription?: string | undefined;
|
|
1378
1378
|
isPricePerCreator?: boolean | undefined;
|
|
@@ -1390,7 +1390,7 @@ declare const PriceSchema: z$1.ZodObject<{
|
|
|
1390
1390
|
stripePriceId: string;
|
|
1391
1391
|
stripeProductId: string;
|
|
1392
1392
|
active: boolean;
|
|
1393
|
-
interval: "daily" | "monthly" | "
|
|
1393
|
+
interval: "daily" | "monthly" | "yearly";
|
|
1394
1394
|
stripeProductName?: string | undefined;
|
|
1395
1395
|
stripeProductDescription?: string | undefined;
|
|
1396
1396
|
isPricePerCreator?: boolean | undefined;
|
|
@@ -1465,7 +1465,7 @@ declare const Subscription: z$1.ZodObject<{
|
|
|
1465
1465
|
stripeCustomerId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1466
1466
|
product: z$1.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
|
|
1467
1467
|
planPriceId: z$1.ZodString;
|
|
1468
|
-
planInterval: z$1.ZodEnum<["daily", "monthly", "
|
|
1468
|
+
planInterval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
1469
1469
|
currentPeriodStart: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1470
1470
|
currentPeriodEnd: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1471
1471
|
cancelAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -1477,7 +1477,7 @@ declare const Subscription: z$1.ZodObject<{
|
|
|
1477
1477
|
seats: number;
|
|
1478
1478
|
seatLimit: number;
|
|
1479
1479
|
planPriceId: string;
|
|
1480
|
-
planInterval: "daily" | "monthly" | "
|
|
1480
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
1481
1481
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
1482
1482
|
card?: {
|
|
1483
1483
|
name?: string | null | undefined;
|
|
@@ -1508,7 +1508,7 @@ declare const Subscription: z$1.ZodObject<{
|
|
|
1508
1508
|
seats: number;
|
|
1509
1509
|
seatLimit: number;
|
|
1510
1510
|
planPriceId: string;
|
|
1511
|
-
planInterval: "daily" | "monthly" | "
|
|
1511
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
1512
1512
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
1513
1513
|
card?: {
|
|
1514
1514
|
name?: string | null | undefined;
|
|
@@ -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
|
}>;
|
|
@@ -12047,7 +12060,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
12047
12060
|
stripeCustomerId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
12048
12061
|
product: z$1.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
|
|
12049
12062
|
planPriceId: z$1.ZodString;
|
|
12050
|
-
planInterval: z$1.ZodEnum<["daily", "monthly", "
|
|
12063
|
+
planInterval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
12051
12064
|
currentPeriodStart: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
12052
12065
|
currentPeriodEnd: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
12053
12066
|
cancelAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -12059,7 +12072,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
12059
12072
|
seats: number;
|
|
12060
12073
|
seatLimit: number;
|
|
12061
12074
|
planPriceId: string;
|
|
12062
|
-
planInterval: "daily" | "monthly" | "
|
|
12075
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
12063
12076
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
12064
12077
|
card?: {
|
|
12065
12078
|
name?: string | null | undefined;
|
|
@@ -12090,7 +12103,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
12090
12103
|
seats: number;
|
|
12091
12104
|
seatLimit: number;
|
|
12092
12105
|
planPriceId: string;
|
|
12093
|
-
planInterval: "daily" | "monthly" | "
|
|
12106
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
12094
12107
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
12095
12108
|
card?: {
|
|
12096
12109
|
name?: string | null | undefined;
|
|
@@ -12301,7 +12314,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
12301
12314
|
seats: number;
|
|
12302
12315
|
seatLimit: number;
|
|
12303
12316
|
planPriceId: string;
|
|
12304
|
-
planInterval: "daily" | "monthly" | "
|
|
12317
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
12305
12318
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
12306
12319
|
card?: {
|
|
12307
12320
|
name?: string | null | undefined;
|
|
@@ -12401,7 +12414,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
12401
12414
|
seats: number;
|
|
12402
12415
|
seatLimit: number;
|
|
12403
12416
|
planPriceId: string;
|
|
12404
|
-
planInterval: "daily" | "monthly" | "
|
|
12417
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
12405
12418
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
12406
12419
|
card?: {
|
|
12407
12420
|
name?: string | null | undefined;
|
|
@@ -19320,7 +19333,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
19320
19333
|
seats: number;
|
|
19321
19334
|
seatLimit: number;
|
|
19322
19335
|
planPriceId: string;
|
|
19323
|
-
planInterval: "daily" | "monthly" | "
|
|
19336
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
19324
19337
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
19325
19338
|
card?: {
|
|
19326
19339
|
name?: string | null | undefined;
|
|
@@ -20214,7 +20227,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
20214
20227
|
seats: number;
|
|
20215
20228
|
seatLimit: number;
|
|
20216
20229
|
planPriceId: string;
|
|
20217
|
-
planInterval: "daily" | "monthly" | "
|
|
20230
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
20218
20231
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
20219
20232
|
card?: {
|
|
20220
20233
|
name?: string | null | undefined;
|
|
@@ -21110,7 +21123,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
21110
21123
|
seats: number;
|
|
21111
21124
|
seatLimit: number;
|
|
21112
21125
|
planPriceId: string;
|
|
21113
|
-
planInterval: "daily" | "monthly" | "
|
|
21126
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
21114
21127
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
21115
21128
|
card?: {
|
|
21116
21129
|
name?: string | null | undefined;
|
|
@@ -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
|
};
|
|
@@ -22046,7 +22062,7 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
22046
22062
|
seats: number;
|
|
22047
22063
|
seatLimit: number;
|
|
22048
22064
|
planPriceId: string;
|
|
22049
|
-
planInterval: "daily" | "monthly" | "
|
|
22065
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
22050
22066
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
22051
22067
|
card?: {
|
|
22052
22068
|
name?: string | null | undefined;
|
|
@@ -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
|
};
|
|
@@ -23111,7 +23130,7 @@ declare const WorkspaceDump: z$1.ZodObject<{
|
|
|
23111
23130
|
stripeCustomerId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23112
23131
|
product: z$1.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
|
|
23113
23132
|
planPriceId: z$1.ZodString;
|
|
23114
|
-
planInterval: z$1.ZodEnum<["daily", "monthly", "
|
|
23133
|
+
planInterval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
23115
23134
|
currentPeriodStart: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23116
23135
|
currentPeriodEnd: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23117
23136
|
cancelAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -23123,7 +23142,7 @@ declare const WorkspaceDump: z$1.ZodObject<{
|
|
|
23123
23142
|
seats: number;
|
|
23124
23143
|
seatLimit: number;
|
|
23125
23144
|
planPriceId: string;
|
|
23126
|
-
planInterval: "daily" | "monthly" | "
|
|
23145
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
23127
23146
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
23128
23147
|
card?: {
|
|
23129
23148
|
name?: string | null | undefined;
|
|
@@ -23154,7 +23173,7 @@ declare const WorkspaceDump: z$1.ZodObject<{
|
|
|
23154
23173
|
seats: number;
|
|
23155
23174
|
seatLimit: number;
|
|
23156
23175
|
planPriceId: string;
|
|
23157
|
-
planInterval: "daily" | "monthly" | "
|
|
23176
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
23158
23177
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
23159
23178
|
card?: {
|
|
23160
23179
|
name?: string | null | undefined;
|
|
@@ -23365,7 +23384,7 @@ declare const WorkspaceDump: z$1.ZodObject<{
|
|
|
23365
23384
|
seats: number;
|
|
23366
23385
|
seatLimit: number;
|
|
23367
23386
|
planPriceId: string;
|
|
23368
|
-
planInterval: "daily" | "monthly" | "
|
|
23387
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
23369
23388
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
23370
23389
|
card?: {
|
|
23371
23390
|
name?: string | null | undefined;
|
|
@@ -23465,7 +23484,7 @@ declare const WorkspaceDump: z$1.ZodObject<{
|
|
|
23465
23484
|
seats: number;
|
|
23466
23485
|
seatLimit: number;
|
|
23467
23486
|
planPriceId: string;
|
|
23468
|
-
planInterval: "daily" | "monthly" | "
|
|
23487
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
23469
23488
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
23470
23489
|
card?: {
|
|
23471
23490
|
name?: string | null | undefined;
|
|
@@ -30384,7 +30403,7 @@ declare const WorkspaceDump: z$1.ZodObject<{
|
|
|
30384
30403
|
seats: number;
|
|
30385
30404
|
seatLimit: number;
|
|
30386
30405
|
planPriceId: string;
|
|
30387
|
-
planInterval: "daily" | "monthly" | "
|
|
30406
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
30388
30407
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
30389
30408
|
card?: {
|
|
30390
30409
|
name?: string | null | undefined;
|
|
@@ -31278,7 +31297,7 @@ declare const WorkspaceDump: z$1.ZodObject<{
|
|
|
31278
31297
|
seats: number;
|
|
31279
31298
|
seatLimit: number;
|
|
31280
31299
|
planPriceId: string;
|
|
31281
|
-
planInterval: "daily" | "monthly" | "
|
|
31300
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
31282
31301
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
31283
31302
|
card?: {
|
|
31284
31303
|
name?: string | null | undefined;
|
|
@@ -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;
|
|
@@ -139265,7 +139303,7 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
139265
139303
|
stripeCustomerId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
139266
139304
|
product: z$1.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
|
|
139267
139305
|
planPriceId: z$1.ZodString;
|
|
139268
|
-
planInterval: z$1.ZodEnum<["daily", "monthly", "
|
|
139306
|
+
planInterval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
139269
139307
|
currentPeriodStart: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
139270
139308
|
currentPeriodEnd: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
139271
139309
|
cancelAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -139277,7 +139315,7 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
139277
139315
|
seats: number;
|
|
139278
139316
|
seatLimit: number;
|
|
139279
139317
|
planPriceId: string;
|
|
139280
|
-
planInterval: "daily" | "monthly" | "
|
|
139318
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
139281
139319
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
139282
139320
|
card?: {
|
|
139283
139321
|
name?: string | null | undefined;
|
|
@@ -139308,7 +139346,7 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
139308
139346
|
seats: number;
|
|
139309
139347
|
seatLimit: number;
|
|
139310
139348
|
planPriceId: string;
|
|
139311
|
-
planInterval: "daily" | "monthly" | "
|
|
139349
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
139312
139350
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
139313
139351
|
card?: {
|
|
139314
139352
|
name?: string | null | undefined;
|
|
@@ -139519,7 +139557,7 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
139519
139557
|
seats: number;
|
|
139520
139558
|
seatLimit: number;
|
|
139521
139559
|
planPriceId: string;
|
|
139522
|
-
planInterval: "daily" | "monthly" | "
|
|
139560
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
139523
139561
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
139524
139562
|
card?: {
|
|
139525
139563
|
name?: string | null | undefined;
|
|
@@ -139619,7 +139657,7 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
139619
139657
|
seats: number;
|
|
139620
139658
|
seatLimit: number;
|
|
139621
139659
|
planPriceId: string;
|
|
139622
|
-
planInterval: "daily" | "monthly" | "
|
|
139660
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
139623
139661
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
139624
139662
|
card?: {
|
|
139625
139663
|
name?: string | null | undefined;
|
|
@@ -139849,7 +139887,7 @@ declare const WorkspaceWithDesignSystems: z$1.ZodObject<{
|
|
|
139849
139887
|
stripeCustomerId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
139850
139888
|
product: z$1.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
|
|
139851
139889
|
planPriceId: z$1.ZodString;
|
|
139852
|
-
planInterval: z$1.ZodEnum<["daily", "monthly", "
|
|
139890
|
+
planInterval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
139853
139891
|
currentPeriodStart: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
139854
139892
|
currentPeriodEnd: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
139855
139893
|
cancelAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -139861,7 +139899,7 @@ declare const WorkspaceWithDesignSystems: z$1.ZodObject<{
|
|
|
139861
139899
|
seats: number;
|
|
139862
139900
|
seatLimit: number;
|
|
139863
139901
|
planPriceId: string;
|
|
139864
|
-
planInterval: "daily" | "monthly" | "
|
|
139902
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
139865
139903
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
139866
139904
|
card?: {
|
|
139867
139905
|
name?: string | null | undefined;
|
|
@@ -139892,7 +139930,7 @@ declare const WorkspaceWithDesignSystems: z$1.ZodObject<{
|
|
|
139892
139930
|
seats: number;
|
|
139893
139931
|
seatLimit: number;
|
|
139894
139932
|
planPriceId: string;
|
|
139895
|
-
planInterval: "daily" | "monthly" | "
|
|
139933
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
139896
139934
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
139897
139935
|
card?: {
|
|
139898
139936
|
name?: string | null | undefined;
|
|
@@ -140103,7 +140141,7 @@ declare const WorkspaceWithDesignSystems: z$1.ZodObject<{
|
|
|
140103
140141
|
seats: number;
|
|
140104
140142
|
seatLimit: number;
|
|
140105
140143
|
planPriceId: string;
|
|
140106
|
-
planInterval: "daily" | "monthly" | "
|
|
140144
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
140107
140145
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
140108
140146
|
card?: {
|
|
140109
140147
|
name?: string | null | undefined;
|
|
@@ -140203,7 +140241,7 @@ declare const WorkspaceWithDesignSystems: z$1.ZodObject<{
|
|
|
140203
140241
|
seats: number;
|
|
140204
140242
|
seatLimit: number;
|
|
140205
140243
|
planPriceId: string;
|
|
140206
|
-
planInterval: "daily" | "monthly" | "
|
|
140244
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
140207
140245
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
140208
140246
|
card?: {
|
|
140209
140247
|
name?: string | null | undefined;
|
|
@@ -140381,7 +140419,7 @@ declare const WorkspaceWithDesignSystems: z$1.ZodObject<{
|
|
|
140381
140419
|
seats: number;
|
|
140382
140420
|
seatLimit: number;
|
|
140383
140421
|
planPriceId: string;
|
|
140384
|
-
planInterval: "daily" | "monthly" | "
|
|
140422
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
140385
140423
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
140386
140424
|
card?: {
|
|
140387
140425
|
name?: string | null | undefined;
|
|
@@ -140506,7 +140544,7 @@ declare const WorkspaceWithDesignSystems: z$1.ZodObject<{
|
|
|
140506
140544
|
seats: number;
|
|
140507
140545
|
seatLimit: number;
|
|
140508
140546
|
planPriceId: string;
|
|
140509
|
-
planInterval: "daily" | "monthly" | "
|
|
140547
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
140510
140548
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
140511
140549
|
card?: {
|
|
140512
140550
|
name?: string | null | undefined;
|
|
@@ -144044,7 +144082,7 @@ declare const DesignSystemInviteEmailData: z$1.ZodObject<{
|
|
|
144044
144082
|
stripeCustomerId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
144045
144083
|
product: z$1.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
|
|
144046
144084
|
planPriceId: z$1.ZodString;
|
|
144047
|
-
planInterval: z$1.ZodEnum<["daily", "monthly", "
|
|
144085
|
+
planInterval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
144048
144086
|
currentPeriodStart: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
144049
144087
|
currentPeriodEnd: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
144050
144088
|
cancelAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -144056,7 +144094,7 @@ declare const DesignSystemInviteEmailData: z$1.ZodObject<{
|
|
|
144056
144094
|
seats: number;
|
|
144057
144095
|
seatLimit: number;
|
|
144058
144096
|
planPriceId: string;
|
|
144059
|
-
planInterval: "daily" | "monthly" | "
|
|
144097
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
144060
144098
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
144061
144099
|
card?: {
|
|
144062
144100
|
name?: string | null | undefined;
|
|
@@ -144087,7 +144125,7 @@ declare const DesignSystemInviteEmailData: z$1.ZodObject<{
|
|
|
144087
144125
|
seats: number;
|
|
144088
144126
|
seatLimit: number;
|
|
144089
144127
|
planPriceId: string;
|
|
144090
|
-
planInterval: "daily" | "monthly" | "
|
|
144128
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
144091
144129
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
144092
144130
|
card?: {
|
|
144093
144131
|
name?: string | null | undefined;
|
|
@@ -144298,7 +144336,7 @@ declare const DesignSystemInviteEmailData: z$1.ZodObject<{
|
|
|
144298
144336
|
seats: number;
|
|
144299
144337
|
seatLimit: number;
|
|
144300
144338
|
planPriceId: string;
|
|
144301
|
-
planInterval: "daily" | "monthly" | "
|
|
144339
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
144302
144340
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
144303
144341
|
card?: {
|
|
144304
144342
|
name?: string | null | undefined;
|
|
@@ -144398,7 +144436,7 @@ declare const DesignSystemInviteEmailData: z$1.ZodObject<{
|
|
|
144398
144436
|
seats: number;
|
|
144399
144437
|
seatLimit: number;
|
|
144400
144438
|
planPriceId: string;
|
|
144401
|
-
planInterval: "daily" | "monthly" | "
|
|
144439
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
144402
144440
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
144403
144441
|
card?: {
|
|
144404
144442
|
name?: string | null | undefined;
|
|
@@ -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
|
}>;
|
|
@@ -144885,7 +144936,7 @@ declare const DesignSystemInviteEmailData: z$1.ZodObject<{
|
|
|
144885
144936
|
seats: number;
|
|
144886
144937
|
seatLimit: number;
|
|
144887
144938
|
planPriceId: string;
|
|
144888
|
-
planInterval: "daily" | "monthly" | "
|
|
144939
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
144889
144940
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
144890
144941
|
card?: {
|
|
144891
144942
|
name?: string | null | undefined;
|
|
@@ -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
|
};
|
|
@@ -145058,7 +145112,7 @@ declare const DesignSystemInviteEmailData: z$1.ZodObject<{
|
|
|
145058
145112
|
seats: number;
|
|
145059
145113
|
seatLimit: number;
|
|
145060
145114
|
planPriceId: string;
|
|
145061
|
-
planInterval: "daily" | "monthly" | "
|
|
145115
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
145062
145116
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
145063
145117
|
card?: {
|
|
145064
145118
|
name?: string | null | undefined;
|
|
@@ -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
|
};
|
|
@@ -145383,7 +145440,7 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
|
|
|
145383
145440
|
stripeCustomerId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
145384
145441
|
product: z$1.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
|
|
145385
145442
|
planPriceId: z$1.ZodString;
|
|
145386
|
-
planInterval: z$1.ZodEnum<["daily", "monthly", "
|
|
145443
|
+
planInterval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
145387
145444
|
currentPeriodStart: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
145388
145445
|
currentPeriodEnd: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
145389
145446
|
cancelAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -145395,7 +145452,7 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
|
|
|
145395
145452
|
seats: number;
|
|
145396
145453
|
seatLimit: number;
|
|
145397
145454
|
planPriceId: string;
|
|
145398
|
-
planInterval: "daily" | "monthly" | "
|
|
145455
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
145399
145456
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
145400
145457
|
card?: {
|
|
145401
145458
|
name?: string | null | undefined;
|
|
@@ -145426,7 +145483,7 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
|
|
|
145426
145483
|
seats: number;
|
|
145427
145484
|
seatLimit: number;
|
|
145428
145485
|
planPriceId: string;
|
|
145429
|
-
planInterval: "daily" | "monthly" | "
|
|
145486
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
145430
145487
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
145431
145488
|
card?: {
|
|
145432
145489
|
name?: string | null | undefined;
|
|
@@ -145637,7 +145694,7 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
|
|
|
145637
145694
|
seats: number;
|
|
145638
145695
|
seatLimit: number;
|
|
145639
145696
|
planPriceId: string;
|
|
145640
|
-
planInterval: "daily" | "monthly" | "
|
|
145697
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
145641
145698
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
145642
145699
|
card?: {
|
|
145643
145700
|
name?: string | null | undefined;
|
|
@@ -145737,7 +145794,7 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
|
|
|
145737
145794
|
seats: number;
|
|
145738
145795
|
seatLimit: number;
|
|
145739
145796
|
planPriceId: string;
|
|
145740
|
-
planInterval: "daily" | "monthly" | "
|
|
145797
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
145741
145798
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
145742
145799
|
card?: {
|
|
145743
145800
|
name?: string | null | undefined;
|
|
@@ -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
|
}>;
|
|
@@ -146148,7 +146218,7 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
|
|
|
146148
146218
|
seats: number;
|
|
146149
146219
|
seatLimit: number;
|
|
146150
146220
|
planPriceId: string;
|
|
146151
|
-
planInterval: "daily" | "monthly" | "
|
|
146221
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
146152
146222
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
146153
146223
|
card?: {
|
|
146154
146224
|
name?: string | null | undefined;
|
|
@@ -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
|
};
|
|
@@ -146298,7 +146371,7 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
|
|
|
146298
146371
|
seats: number;
|
|
146299
146372
|
seatLimit: number;
|
|
146300
146373
|
planPriceId: string;
|
|
146301
|
-
planInterval: "daily" | "monthly" | "
|
|
146374
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
146302
146375
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
146303
146376
|
card?: {
|
|
146304
146377
|
name?: string | null | undefined;
|
|
@@ -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 };
|