@supernova-studio/client 1.44.4 → 1.44.5
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 +225 -101
- package/dist/index.d.ts +225 -101
- package/dist/index.js +12 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -357,10 +357,11 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
357
357
|
seatLimit: z.ZodNumber;
|
|
358
358
|
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
359
359
|
monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
360
|
-
builderSeatLimit: z.ZodOptional<z.
|
|
361
|
-
fullSeatLimit: z.ZodOptional<z.
|
|
362
|
-
|
|
363
|
-
|
|
360
|
+
builderSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
361
|
+
fullSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
362
|
+
additionalCredits: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
363
|
+
builderSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
364
|
+
fullSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
364
365
|
status: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
|
|
365
366
|
subscriptionStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete", z.ZodTypeDef, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete">>>, NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined>;
|
|
366
367
|
internalStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
|
|
@@ -374,6 +375,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
374
375
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
375
376
|
fullSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
376
377
|
builderSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
378
|
+
additionalCreditsPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
377
379
|
subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
378
380
|
}, "strip", z.ZodTypeAny, {
|
|
379
381
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -394,6 +396,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
394
396
|
monthlyCreditGrantAmount?: number | undefined;
|
|
395
397
|
builderSeatLimit?: number | undefined;
|
|
396
398
|
fullSeatLimit?: number | undefined;
|
|
399
|
+
additionalCredits?: number | undefined;
|
|
397
400
|
builderSeats?: number | undefined;
|
|
398
401
|
fullSeats?: number | undefined;
|
|
399
402
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -405,6 +408,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
405
408
|
cancelAt?: string | undefined;
|
|
406
409
|
fullSeatPriceId?: string | undefined;
|
|
407
410
|
builderSeatPriceId?: string | undefined;
|
|
411
|
+
additionalCreditsPriceId?: string | undefined;
|
|
408
412
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
409
413
|
}, {
|
|
410
414
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -423,10 +427,11 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
423
427
|
} | null | undefined;
|
|
424
428
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
425
429
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
426
|
-
builderSeatLimit?: number | undefined;
|
|
427
|
-
fullSeatLimit?: number | undefined;
|
|
428
|
-
|
|
429
|
-
|
|
430
|
+
builderSeatLimit?: number | null | undefined;
|
|
431
|
+
fullSeatLimit?: number | null | undefined;
|
|
432
|
+
additionalCredits?: number | null | undefined;
|
|
433
|
+
builderSeats?: number | null | undefined;
|
|
434
|
+
fullSeats?: number | null | undefined;
|
|
430
435
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
431
436
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
432
437
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -436,6 +441,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
436
441
|
cancelAt?: string | null | undefined;
|
|
437
442
|
fullSeatPriceId?: string | null | undefined;
|
|
438
443
|
builderSeatPriceId?: string | null | undefined;
|
|
444
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
439
445
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
440
446
|
}>;
|
|
441
447
|
npmRegistry: z.ZodOptional<z.ZodObject<{
|
|
@@ -518,6 +524,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
518
524
|
monthlyCreditGrantAmount?: number | undefined;
|
|
519
525
|
builderSeatLimit?: number | undefined;
|
|
520
526
|
fullSeatLimit?: number | undefined;
|
|
527
|
+
additionalCredits?: number | undefined;
|
|
521
528
|
builderSeats?: number | undefined;
|
|
522
529
|
fullSeats?: number | undefined;
|
|
523
530
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -529,6 +536,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
529
536
|
cancelAt?: string | undefined;
|
|
530
537
|
fullSeatPriceId?: string | undefined;
|
|
531
538
|
builderSeatPriceId?: string | undefined;
|
|
539
|
+
additionalCreditsPriceId?: string | undefined;
|
|
532
540
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
533
541
|
};
|
|
534
542
|
aiFeaturesEnabled: boolean;
|
|
@@ -587,10 +595,11 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
587
595
|
} | null | undefined;
|
|
588
596
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
589
597
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
590
|
-
builderSeatLimit?: number | undefined;
|
|
591
|
-
fullSeatLimit?: number | undefined;
|
|
592
|
-
|
|
593
|
-
|
|
598
|
+
builderSeatLimit?: number | null | undefined;
|
|
599
|
+
fullSeatLimit?: number | null | undefined;
|
|
600
|
+
additionalCredits?: number | null | undefined;
|
|
601
|
+
builderSeats?: number | null | undefined;
|
|
602
|
+
fullSeats?: number | null | undefined;
|
|
594
603
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
595
604
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
596
605
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -600,6 +609,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
600
609
|
cancelAt?: string | null | undefined;
|
|
601
610
|
fullSeatPriceId?: string | null | undefined;
|
|
602
611
|
builderSeatPriceId?: string | null | undefined;
|
|
612
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
603
613
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
604
614
|
};
|
|
605
615
|
npmRegistry?: {
|
|
@@ -666,6 +676,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
666
676
|
monthlyCreditGrantAmount?: number | undefined;
|
|
667
677
|
builderSeatLimit?: number | undefined;
|
|
668
678
|
fullSeatLimit?: number | undefined;
|
|
679
|
+
additionalCredits?: number | undefined;
|
|
669
680
|
builderSeats?: number | undefined;
|
|
670
681
|
fullSeats?: number | undefined;
|
|
671
682
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -677,6 +688,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
677
688
|
cancelAt?: string | undefined;
|
|
678
689
|
fullSeatPriceId?: string | undefined;
|
|
679
690
|
builderSeatPriceId?: string | undefined;
|
|
691
|
+
additionalCreditsPriceId?: string | undefined;
|
|
680
692
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
681
693
|
};
|
|
682
694
|
aiFeaturesEnabled: boolean;
|
|
@@ -741,10 +753,11 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
741
753
|
} | null | undefined;
|
|
742
754
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
743
755
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
744
|
-
builderSeatLimit?: number | undefined;
|
|
745
|
-
fullSeatLimit?: number | undefined;
|
|
746
|
-
|
|
747
|
-
|
|
756
|
+
builderSeatLimit?: number | null | undefined;
|
|
757
|
+
fullSeatLimit?: number | null | undefined;
|
|
758
|
+
additionalCredits?: number | null | undefined;
|
|
759
|
+
builderSeats?: number | null | undefined;
|
|
760
|
+
fullSeats?: number | null | undefined;
|
|
748
761
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
749
762
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
750
763
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -754,6 +767,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
754
767
|
cancelAt?: string | null | undefined;
|
|
755
768
|
fullSeatPriceId?: string | null | undefined;
|
|
756
769
|
builderSeatPriceId?: string | null | undefined;
|
|
770
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
757
771
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
758
772
|
};
|
|
759
773
|
npmRegistry?: {
|
|
@@ -1051,6 +1065,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
1051
1065
|
monthlyCreditGrantAmount?: number | undefined;
|
|
1052
1066
|
builderSeatLimit?: number | undefined;
|
|
1053
1067
|
fullSeatLimit?: number | undefined;
|
|
1068
|
+
additionalCredits?: number | undefined;
|
|
1054
1069
|
builderSeats?: number | undefined;
|
|
1055
1070
|
fullSeats?: number | undefined;
|
|
1056
1071
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -1062,6 +1077,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
1062
1077
|
cancelAt?: string | undefined;
|
|
1063
1078
|
fullSeatPriceId?: string | undefined;
|
|
1064
1079
|
builderSeatPriceId?: string | undefined;
|
|
1080
|
+
additionalCreditsPriceId?: string | undefined;
|
|
1065
1081
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
1066
1082
|
};
|
|
1067
1083
|
aiFeaturesEnabled: boolean;
|
|
@@ -1179,10 +1195,11 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
1179
1195
|
} | null | undefined;
|
|
1180
1196
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
1181
1197
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
1182
|
-
builderSeatLimit?: number | undefined;
|
|
1183
|
-
fullSeatLimit?: number | undefined;
|
|
1184
|
-
|
|
1185
|
-
|
|
1198
|
+
builderSeatLimit?: number | null | undefined;
|
|
1199
|
+
fullSeatLimit?: number | null | undefined;
|
|
1200
|
+
additionalCredits?: number | null | undefined;
|
|
1201
|
+
builderSeats?: number | null | undefined;
|
|
1202
|
+
fullSeats?: number | null | undefined;
|
|
1186
1203
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
1187
1204
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
1188
1205
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -1192,6 +1209,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
1192
1209
|
cancelAt?: string | null | undefined;
|
|
1193
1210
|
fullSeatPriceId?: string | null | undefined;
|
|
1194
1211
|
builderSeatPriceId?: string | null | undefined;
|
|
1212
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
1195
1213
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
1196
1214
|
};
|
|
1197
1215
|
npmRegistry?: {
|
|
@@ -10065,10 +10083,11 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
|
|
|
10065
10083
|
seatLimit: z.ZodNumber;
|
|
10066
10084
|
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10067
10085
|
monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
10068
|
-
builderSeatLimit: z.ZodOptional<z.
|
|
10069
|
-
fullSeatLimit: z.ZodOptional<z.
|
|
10070
|
-
|
|
10071
|
-
|
|
10086
|
+
builderSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
10087
|
+
fullSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
10088
|
+
additionalCredits: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
10089
|
+
builderSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
10090
|
+
fullSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
10072
10091
|
status: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
|
|
10073
10092
|
subscriptionStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete", z.ZodTypeDef, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete">>>, NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined>;
|
|
10074
10093
|
internalStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
|
|
@@ -10082,6 +10101,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
|
|
|
10082
10101
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10083
10102
|
fullSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10084
10103
|
builderSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10104
|
+
additionalCreditsPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10085
10105
|
subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10086
10106
|
}, "strip", z.ZodTypeAny, {
|
|
10087
10107
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -10102,6 +10122,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
|
|
|
10102
10122
|
monthlyCreditGrantAmount?: number | undefined;
|
|
10103
10123
|
builderSeatLimit?: number | undefined;
|
|
10104
10124
|
fullSeatLimit?: number | undefined;
|
|
10125
|
+
additionalCredits?: number | undefined;
|
|
10105
10126
|
builderSeats?: number | undefined;
|
|
10106
10127
|
fullSeats?: number | undefined;
|
|
10107
10128
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -10113,6 +10134,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
|
|
|
10113
10134
|
cancelAt?: string | undefined;
|
|
10114
10135
|
fullSeatPriceId?: string | undefined;
|
|
10115
10136
|
builderSeatPriceId?: string | undefined;
|
|
10137
|
+
additionalCreditsPriceId?: string | undefined;
|
|
10116
10138
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
10117
10139
|
}, {
|
|
10118
10140
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -10131,10 +10153,11 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
|
|
|
10131
10153
|
} | null | undefined;
|
|
10132
10154
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
10133
10155
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
10134
|
-
builderSeatLimit?: number | undefined;
|
|
10135
|
-
fullSeatLimit?: number | undefined;
|
|
10136
|
-
|
|
10137
|
-
|
|
10156
|
+
builderSeatLimit?: number | null | undefined;
|
|
10157
|
+
fullSeatLimit?: number | null | undefined;
|
|
10158
|
+
additionalCredits?: number | null | undefined;
|
|
10159
|
+
builderSeats?: number | null | undefined;
|
|
10160
|
+
fullSeats?: number | null | undefined;
|
|
10138
10161
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
10139
10162
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
10140
10163
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -10144,6 +10167,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
|
|
|
10144
10167
|
cancelAt?: string | null | undefined;
|
|
10145
10168
|
fullSeatPriceId?: string | null | undefined;
|
|
10146
10169
|
builderSeatPriceId?: string | null | undefined;
|
|
10170
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
10147
10171
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
10148
10172
|
}>;
|
|
10149
10173
|
npmRegistry: z.ZodOptional<z.ZodObject<{
|
|
@@ -10226,6 +10250,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
|
|
|
10226
10250
|
monthlyCreditGrantAmount?: number | undefined;
|
|
10227
10251
|
builderSeatLimit?: number | undefined;
|
|
10228
10252
|
fullSeatLimit?: number | undefined;
|
|
10253
|
+
additionalCredits?: number | undefined;
|
|
10229
10254
|
builderSeats?: number | undefined;
|
|
10230
10255
|
fullSeats?: number | undefined;
|
|
10231
10256
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -10237,6 +10262,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
|
|
|
10237
10262
|
cancelAt?: string | undefined;
|
|
10238
10263
|
fullSeatPriceId?: string | undefined;
|
|
10239
10264
|
builderSeatPriceId?: string | undefined;
|
|
10265
|
+
additionalCreditsPriceId?: string | undefined;
|
|
10240
10266
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
10241
10267
|
};
|
|
10242
10268
|
aiFeaturesEnabled: boolean;
|
|
@@ -10295,10 +10321,11 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
|
|
|
10295
10321
|
} | null | undefined;
|
|
10296
10322
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
10297
10323
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
10298
|
-
builderSeatLimit?: number | undefined;
|
|
10299
|
-
fullSeatLimit?: number | undefined;
|
|
10300
|
-
|
|
10301
|
-
|
|
10324
|
+
builderSeatLimit?: number | null | undefined;
|
|
10325
|
+
fullSeatLimit?: number | null | undefined;
|
|
10326
|
+
additionalCredits?: number | null | undefined;
|
|
10327
|
+
builderSeats?: number | null | undefined;
|
|
10328
|
+
fullSeats?: number | null | undefined;
|
|
10302
10329
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
10303
10330
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
10304
10331
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -10308,6 +10335,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
|
|
|
10308
10335
|
cancelAt?: string | null | undefined;
|
|
10309
10336
|
fullSeatPriceId?: string | null | undefined;
|
|
10310
10337
|
builderSeatPriceId?: string | null | undefined;
|
|
10338
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
10311
10339
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
10312
10340
|
};
|
|
10313
10341
|
npmRegistry?: {
|
|
@@ -10400,6 +10428,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
|
|
|
10400
10428
|
monthlyCreditGrantAmount?: number | undefined;
|
|
10401
10429
|
builderSeatLimit?: number | undefined;
|
|
10402
10430
|
fullSeatLimit?: number | undefined;
|
|
10431
|
+
additionalCredits?: number | undefined;
|
|
10403
10432
|
builderSeats?: number | undefined;
|
|
10404
10433
|
fullSeats?: number | undefined;
|
|
10405
10434
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -10411,6 +10440,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
|
|
|
10411
10440
|
cancelAt?: string | undefined;
|
|
10412
10441
|
fullSeatPriceId?: string | undefined;
|
|
10413
10442
|
builderSeatPriceId?: string | undefined;
|
|
10443
|
+
additionalCreditsPriceId?: string | undefined;
|
|
10414
10444
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
10415
10445
|
};
|
|
10416
10446
|
aiFeaturesEnabled: boolean;
|
|
@@ -10501,10 +10531,11 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
|
|
|
10501
10531
|
} | null | undefined;
|
|
10502
10532
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
10503
10533
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
10504
|
-
builderSeatLimit?: number | undefined;
|
|
10505
|
-
fullSeatLimit?: number | undefined;
|
|
10506
|
-
|
|
10507
|
-
|
|
10534
|
+
builderSeatLimit?: number | null | undefined;
|
|
10535
|
+
fullSeatLimit?: number | null | undefined;
|
|
10536
|
+
additionalCredits?: number | null | undefined;
|
|
10537
|
+
builderSeats?: number | null | undefined;
|
|
10538
|
+
fullSeats?: number | null | undefined;
|
|
10508
10539
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
10509
10540
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
10510
10541
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -10514,6 +10545,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
|
|
|
10514
10545
|
cancelAt?: string | null | undefined;
|
|
10515
10546
|
fullSeatPriceId?: string | null | undefined;
|
|
10516
10547
|
builderSeatPriceId?: string | null | undefined;
|
|
10548
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
10517
10549
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
10518
10550
|
};
|
|
10519
10551
|
npmRegistry?: {
|
|
@@ -229612,10 +229644,11 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229612
229644
|
seatLimit: z.ZodNumber;
|
|
229613
229645
|
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
229614
229646
|
monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
229615
|
-
builderSeatLimit: z.ZodOptional<z.
|
|
229616
|
-
fullSeatLimit: z.ZodOptional<z.
|
|
229617
|
-
|
|
229618
|
-
|
|
229647
|
+
builderSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
229648
|
+
fullSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
229649
|
+
additionalCredits: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
229650
|
+
builderSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
229651
|
+
fullSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
229619
229652
|
status: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
|
|
229620
229653
|
subscriptionStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete", z.ZodTypeDef, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete">>>, NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined>;
|
|
229621
229654
|
internalStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
|
|
@@ -229629,6 +229662,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229629
229662
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
229630
229663
|
fullSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
229631
229664
|
builderSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
229665
|
+
additionalCreditsPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
229632
229666
|
subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
229633
229667
|
}, "strip", z.ZodTypeAny, {
|
|
229634
229668
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -229649,6 +229683,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229649
229683
|
monthlyCreditGrantAmount?: number | undefined;
|
|
229650
229684
|
builderSeatLimit?: number | undefined;
|
|
229651
229685
|
fullSeatLimit?: number | undefined;
|
|
229686
|
+
additionalCredits?: number | undefined;
|
|
229652
229687
|
builderSeats?: number | undefined;
|
|
229653
229688
|
fullSeats?: number | undefined;
|
|
229654
229689
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -229660,6 +229695,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229660
229695
|
cancelAt?: string | undefined;
|
|
229661
229696
|
fullSeatPriceId?: string | undefined;
|
|
229662
229697
|
builderSeatPriceId?: string | undefined;
|
|
229698
|
+
additionalCreditsPriceId?: string | undefined;
|
|
229663
229699
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
229664
229700
|
}, {
|
|
229665
229701
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -229678,10 +229714,11 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229678
229714
|
} | null | undefined;
|
|
229679
229715
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
229680
229716
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
229681
|
-
builderSeatLimit?: number | undefined;
|
|
229682
|
-
fullSeatLimit?: number | undefined;
|
|
229683
|
-
|
|
229684
|
-
|
|
229717
|
+
builderSeatLimit?: number | null | undefined;
|
|
229718
|
+
fullSeatLimit?: number | null | undefined;
|
|
229719
|
+
additionalCredits?: number | null | undefined;
|
|
229720
|
+
builderSeats?: number | null | undefined;
|
|
229721
|
+
fullSeats?: number | null | undefined;
|
|
229685
229722
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
229686
229723
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
229687
229724
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -229691,6 +229728,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229691
229728
|
cancelAt?: string | null | undefined;
|
|
229692
229729
|
fullSeatPriceId?: string | null | undefined;
|
|
229693
229730
|
builderSeatPriceId?: string | null | undefined;
|
|
229731
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
229694
229732
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
229695
229733
|
}>;
|
|
229696
229734
|
npmRegistry: z.ZodOptional<z.ZodObject<{
|
|
@@ -229773,6 +229811,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229773
229811
|
monthlyCreditGrantAmount?: number | undefined;
|
|
229774
229812
|
builderSeatLimit?: number | undefined;
|
|
229775
229813
|
fullSeatLimit?: number | undefined;
|
|
229814
|
+
additionalCredits?: number | undefined;
|
|
229776
229815
|
builderSeats?: number | undefined;
|
|
229777
229816
|
fullSeats?: number | undefined;
|
|
229778
229817
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -229784,6 +229823,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229784
229823
|
cancelAt?: string | undefined;
|
|
229785
229824
|
fullSeatPriceId?: string | undefined;
|
|
229786
229825
|
builderSeatPriceId?: string | undefined;
|
|
229826
|
+
additionalCreditsPriceId?: string | undefined;
|
|
229787
229827
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
229788
229828
|
};
|
|
229789
229829
|
aiFeaturesEnabled: boolean;
|
|
@@ -229842,10 +229882,11 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229842
229882
|
} | null | undefined;
|
|
229843
229883
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
229844
229884
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
229845
|
-
builderSeatLimit?: number | undefined;
|
|
229846
|
-
fullSeatLimit?: number | undefined;
|
|
229847
|
-
|
|
229848
|
-
|
|
229885
|
+
builderSeatLimit?: number | null | undefined;
|
|
229886
|
+
fullSeatLimit?: number | null | undefined;
|
|
229887
|
+
additionalCredits?: number | null | undefined;
|
|
229888
|
+
builderSeats?: number | null | undefined;
|
|
229889
|
+
fullSeats?: number | null | undefined;
|
|
229849
229890
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
229850
229891
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
229851
229892
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -229855,6 +229896,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229855
229896
|
cancelAt?: string | null | undefined;
|
|
229856
229897
|
fullSeatPriceId?: string | null | undefined;
|
|
229857
229898
|
builderSeatPriceId?: string | null | undefined;
|
|
229899
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
229858
229900
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
229859
229901
|
};
|
|
229860
229902
|
npmRegistry?: {
|
|
@@ -229921,6 +229963,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229921
229963
|
monthlyCreditGrantAmount?: number | undefined;
|
|
229922
229964
|
builderSeatLimit?: number | undefined;
|
|
229923
229965
|
fullSeatLimit?: number | undefined;
|
|
229966
|
+
additionalCredits?: number | undefined;
|
|
229924
229967
|
builderSeats?: number | undefined;
|
|
229925
229968
|
fullSeats?: number | undefined;
|
|
229926
229969
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -229932,6 +229975,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229932
229975
|
cancelAt?: string | undefined;
|
|
229933
229976
|
fullSeatPriceId?: string | undefined;
|
|
229934
229977
|
builderSeatPriceId?: string | undefined;
|
|
229978
|
+
additionalCreditsPriceId?: string | undefined;
|
|
229935
229979
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
229936
229980
|
};
|
|
229937
229981
|
aiFeaturesEnabled: boolean;
|
|
@@ -229996,10 +230040,11 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229996
230040
|
} | null | undefined;
|
|
229997
230041
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
229998
230042
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
229999
|
-
builderSeatLimit?: number | undefined;
|
|
230000
|
-
fullSeatLimit?: number | undefined;
|
|
230001
|
-
|
|
230002
|
-
|
|
230043
|
+
builderSeatLimit?: number | null | undefined;
|
|
230044
|
+
fullSeatLimit?: number | null | undefined;
|
|
230045
|
+
additionalCredits?: number | null | undefined;
|
|
230046
|
+
builderSeats?: number | null | undefined;
|
|
230047
|
+
fullSeats?: number | null | undefined;
|
|
230003
230048
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
230004
230049
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
230005
230050
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -230009,6 +230054,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
230009
230054
|
cancelAt?: string | null | undefined;
|
|
230010
230055
|
fullSeatPriceId?: string | null | undefined;
|
|
230011
230056
|
builderSeatPriceId?: string | null | undefined;
|
|
230057
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
230012
230058
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
230013
230059
|
};
|
|
230014
230060
|
npmRegistry?: {
|
|
@@ -230618,10 +230664,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230618
230664
|
seatLimit: z.ZodNumber;
|
|
230619
230665
|
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
230620
230666
|
monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
230621
|
-
builderSeatLimit: z.ZodOptional<z.
|
|
230622
|
-
fullSeatLimit: z.ZodOptional<z.
|
|
230623
|
-
|
|
230624
|
-
|
|
230667
|
+
builderSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
230668
|
+
fullSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
230669
|
+
additionalCredits: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
230670
|
+
builderSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
230671
|
+
fullSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
230625
230672
|
status: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
|
|
230626
230673
|
subscriptionStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete", z.ZodTypeDef, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete">>>, NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined>;
|
|
230627
230674
|
internalStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
|
|
@@ -230635,6 +230682,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230635
230682
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
230636
230683
|
fullSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
230637
230684
|
builderSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
230685
|
+
additionalCreditsPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
230638
230686
|
subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
230639
230687
|
}, "strip", z.ZodTypeAny, {
|
|
230640
230688
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -230655,6 +230703,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230655
230703
|
monthlyCreditGrantAmount?: number | undefined;
|
|
230656
230704
|
builderSeatLimit?: number | undefined;
|
|
230657
230705
|
fullSeatLimit?: number | undefined;
|
|
230706
|
+
additionalCredits?: number | undefined;
|
|
230658
230707
|
builderSeats?: number | undefined;
|
|
230659
230708
|
fullSeats?: number | undefined;
|
|
230660
230709
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -230666,6 +230715,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230666
230715
|
cancelAt?: string | undefined;
|
|
230667
230716
|
fullSeatPriceId?: string | undefined;
|
|
230668
230717
|
builderSeatPriceId?: string | undefined;
|
|
230718
|
+
additionalCreditsPriceId?: string | undefined;
|
|
230669
230719
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
230670
230720
|
}, {
|
|
230671
230721
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -230684,10 +230734,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230684
230734
|
} | null | undefined;
|
|
230685
230735
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
230686
230736
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
230687
|
-
builderSeatLimit?: number | undefined;
|
|
230688
|
-
fullSeatLimit?: number | undefined;
|
|
230689
|
-
|
|
230690
|
-
|
|
230737
|
+
builderSeatLimit?: number | null | undefined;
|
|
230738
|
+
fullSeatLimit?: number | null | undefined;
|
|
230739
|
+
additionalCredits?: number | null | undefined;
|
|
230740
|
+
builderSeats?: number | null | undefined;
|
|
230741
|
+
fullSeats?: number | null | undefined;
|
|
230691
230742
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
230692
230743
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
230693
230744
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -230697,6 +230748,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230697
230748
|
cancelAt?: string | null | undefined;
|
|
230698
230749
|
fullSeatPriceId?: string | null | undefined;
|
|
230699
230750
|
builderSeatPriceId?: string | null | undefined;
|
|
230751
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
230700
230752
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
230701
230753
|
}>;
|
|
230702
230754
|
npmRegistry: z.ZodOptional<z.ZodObject<{
|
|
@@ -230779,6 +230831,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230779
230831
|
monthlyCreditGrantAmount?: number | undefined;
|
|
230780
230832
|
builderSeatLimit?: number | undefined;
|
|
230781
230833
|
fullSeatLimit?: number | undefined;
|
|
230834
|
+
additionalCredits?: number | undefined;
|
|
230782
230835
|
builderSeats?: number | undefined;
|
|
230783
230836
|
fullSeats?: number | undefined;
|
|
230784
230837
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -230790,6 +230843,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230790
230843
|
cancelAt?: string | undefined;
|
|
230791
230844
|
fullSeatPriceId?: string | undefined;
|
|
230792
230845
|
builderSeatPriceId?: string | undefined;
|
|
230846
|
+
additionalCreditsPriceId?: string | undefined;
|
|
230793
230847
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
230794
230848
|
};
|
|
230795
230849
|
aiFeaturesEnabled: boolean;
|
|
@@ -230848,10 +230902,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230848
230902
|
} | null | undefined;
|
|
230849
230903
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
230850
230904
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
230851
|
-
builderSeatLimit?: number | undefined;
|
|
230852
|
-
fullSeatLimit?: number | undefined;
|
|
230853
|
-
|
|
230854
|
-
|
|
230905
|
+
builderSeatLimit?: number | null | undefined;
|
|
230906
|
+
fullSeatLimit?: number | null | undefined;
|
|
230907
|
+
additionalCredits?: number | null | undefined;
|
|
230908
|
+
builderSeats?: number | null | undefined;
|
|
230909
|
+
fullSeats?: number | null | undefined;
|
|
230855
230910
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
230856
230911
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
230857
230912
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -230861,6 +230916,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230861
230916
|
cancelAt?: string | null | undefined;
|
|
230862
230917
|
fullSeatPriceId?: string | null | undefined;
|
|
230863
230918
|
builderSeatPriceId?: string | null | undefined;
|
|
230919
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
230864
230920
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
230865
230921
|
};
|
|
230866
230922
|
npmRegistry?: {
|
|
@@ -230927,6 +230983,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230927
230983
|
monthlyCreditGrantAmount?: number | undefined;
|
|
230928
230984
|
builderSeatLimit?: number | undefined;
|
|
230929
230985
|
fullSeatLimit?: number | undefined;
|
|
230986
|
+
additionalCredits?: number | undefined;
|
|
230930
230987
|
builderSeats?: number | undefined;
|
|
230931
230988
|
fullSeats?: number | undefined;
|
|
230932
230989
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -230938,6 +230995,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230938
230995
|
cancelAt?: string | undefined;
|
|
230939
230996
|
fullSeatPriceId?: string | undefined;
|
|
230940
230997
|
builderSeatPriceId?: string | undefined;
|
|
230998
|
+
additionalCreditsPriceId?: string | undefined;
|
|
230941
230999
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
230942
231000
|
};
|
|
230943
231001
|
aiFeaturesEnabled: boolean;
|
|
@@ -231002,10 +231060,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
231002
231060
|
} | null | undefined;
|
|
231003
231061
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
231004
231062
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
231005
|
-
builderSeatLimit?: number | undefined;
|
|
231006
|
-
fullSeatLimit?: number | undefined;
|
|
231007
|
-
|
|
231008
|
-
|
|
231063
|
+
builderSeatLimit?: number | null | undefined;
|
|
231064
|
+
fullSeatLimit?: number | null | undefined;
|
|
231065
|
+
additionalCredits?: number | null | undefined;
|
|
231066
|
+
builderSeats?: number | null | undefined;
|
|
231067
|
+
fullSeats?: number | null | undefined;
|
|
231009
231068
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
231010
231069
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
231011
231070
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -231015,6 +231074,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
231015
231074
|
cancelAt?: string | null | undefined;
|
|
231016
231075
|
fullSeatPriceId?: string | null | undefined;
|
|
231017
231076
|
builderSeatPriceId?: string | null | undefined;
|
|
231077
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
231018
231078
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
231019
231079
|
};
|
|
231020
231080
|
npmRegistry?: {
|
|
@@ -231083,6 +231143,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
231083
231143
|
monthlyCreditGrantAmount?: number | undefined;
|
|
231084
231144
|
builderSeatLimit?: number | undefined;
|
|
231085
231145
|
fullSeatLimit?: number | undefined;
|
|
231146
|
+
additionalCredits?: number | undefined;
|
|
231086
231147
|
builderSeats?: number | undefined;
|
|
231087
231148
|
fullSeats?: number | undefined;
|
|
231088
231149
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -231094,6 +231155,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
231094
231155
|
cancelAt?: string | undefined;
|
|
231095
231156
|
fullSeatPriceId?: string | undefined;
|
|
231096
231157
|
builderSeatPriceId?: string | undefined;
|
|
231158
|
+
additionalCreditsPriceId?: string | undefined;
|
|
231097
231159
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
231098
231160
|
};
|
|
231099
231161
|
aiFeaturesEnabled: boolean;
|
|
@@ -231160,10 +231222,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
231160
231222
|
} | null | undefined;
|
|
231161
231223
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
231162
231224
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
231163
|
-
builderSeatLimit?: number | undefined;
|
|
231164
|
-
fullSeatLimit?: number | undefined;
|
|
231165
|
-
|
|
231166
|
-
|
|
231225
|
+
builderSeatLimit?: number | null | undefined;
|
|
231226
|
+
fullSeatLimit?: number | null | undefined;
|
|
231227
|
+
additionalCredits?: number | null | undefined;
|
|
231228
|
+
builderSeats?: number | null | undefined;
|
|
231229
|
+
fullSeats?: number | null | undefined;
|
|
231167
231230
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
231168
231231
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
231169
231232
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -231173,6 +231236,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
231173
231236
|
cancelAt?: string | null | undefined;
|
|
231174
231237
|
fullSeatPriceId?: string | null | undefined;
|
|
231175
231238
|
builderSeatPriceId?: string | null | undefined;
|
|
231239
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
231176
231240
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
231177
231241
|
};
|
|
231178
231242
|
npmRegistry?: {
|
|
@@ -232999,6 +233063,7 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
232999
233063
|
fullSeatLimit: z$1.ZodNumber;
|
|
233000
233064
|
builderSeats: z$1.ZodNumber;
|
|
233001
233065
|
builderSeatLimit: z$1.ZodNumber;
|
|
233066
|
+
additionalCredits: z$1.ZodNumber;
|
|
233002
233067
|
currentPeriodStart: z$1.ZodOptional<z$1.ZodString>;
|
|
233003
233068
|
currentPeriodEnd: z$1.ZodOptional<z$1.ZodString>;
|
|
233004
233069
|
subscriptionStatusUpdatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -233031,9 +233096,11 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
233031
233096
|
daysUntilDue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
233032
233097
|
fullSeatPriceId: z$1.ZodString;
|
|
233033
233098
|
builderSeatPriceId: z$1.ZodOptional<z$1.ZodString>;
|
|
233099
|
+
additionalCreditsPriceId: z$1.ZodOptional<z$1.ZodString>;
|
|
233034
233100
|
}, "strip", z$1.ZodTypeAny, {
|
|
233035
233101
|
fullSeats: number;
|
|
233036
233102
|
builderSeats: number;
|
|
233103
|
+
additionalCredits: number;
|
|
233037
233104
|
amount: number;
|
|
233038
233105
|
isTrial: boolean;
|
|
233039
233106
|
product: "free" | "pro" | "team" | "company" | "enterprise";
|
|
@@ -233209,9 +233276,11 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
233209
233276
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
233210
233277
|
daysUntilDue?: number | undefined;
|
|
233211
233278
|
builderSeatPriceId?: string | undefined;
|
|
233279
|
+
additionalCreditsPriceId?: string | undefined;
|
|
233212
233280
|
}, {
|
|
233213
233281
|
fullSeats: number;
|
|
233214
233282
|
builderSeats: number;
|
|
233283
|
+
additionalCredits: number;
|
|
233215
233284
|
amount: number;
|
|
233216
233285
|
isTrial: boolean;
|
|
233217
233286
|
product: "free" | "pro" | "team" | "company" | "enterprise";
|
|
@@ -233387,6 +233456,7 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
233387
233456
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
233388
233457
|
daysUntilDue?: number | undefined;
|
|
233389
233458
|
builderSeatPriceId?: string | undefined;
|
|
233459
|
+
additionalCreditsPriceId?: string | undefined;
|
|
233390
233460
|
}>;
|
|
233391
233461
|
type DTOSubscription = z$1.infer<typeof DTOSubscription>;
|
|
233392
233462
|
declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
@@ -234050,6 +234120,7 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
234050
234120
|
fullSeatLimit: z$1.ZodNumber;
|
|
234051
234121
|
builderSeats: z$1.ZodNumber;
|
|
234052
234122
|
builderSeatLimit: z$1.ZodNumber;
|
|
234123
|
+
additionalCredits: z$1.ZodNumber;
|
|
234053
234124
|
currentPeriodStart: z$1.ZodOptional<z$1.ZodString>;
|
|
234054
234125
|
currentPeriodEnd: z$1.ZodOptional<z$1.ZodString>;
|
|
234055
234126
|
subscriptionStatusUpdatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -234082,9 +234153,11 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
234082
234153
|
daysUntilDue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
234083
234154
|
fullSeatPriceId: z$1.ZodString;
|
|
234084
234155
|
builderSeatPriceId: z$1.ZodOptional<z$1.ZodString>;
|
|
234156
|
+
additionalCreditsPriceId: z$1.ZodOptional<z$1.ZodString>;
|
|
234085
234157
|
}, "strip", z$1.ZodTypeAny, {
|
|
234086
234158
|
fullSeats: number;
|
|
234087
234159
|
builderSeats: number;
|
|
234160
|
+
additionalCredits: number;
|
|
234088
234161
|
amount: number;
|
|
234089
234162
|
isTrial: boolean;
|
|
234090
234163
|
product: "free" | "pro" | "team" | "company" | "enterprise";
|
|
@@ -234260,9 +234333,11 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
234260
234333
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
234261
234334
|
daysUntilDue?: number | undefined;
|
|
234262
234335
|
builderSeatPriceId?: string | undefined;
|
|
234336
|
+
additionalCreditsPriceId?: string | undefined;
|
|
234263
234337
|
}, {
|
|
234264
234338
|
fullSeats: number;
|
|
234265
234339
|
builderSeats: number;
|
|
234340
|
+
additionalCredits: number;
|
|
234266
234341
|
amount: number;
|
|
234267
234342
|
isTrial: boolean;
|
|
234268
234343
|
product: "free" | "pro" | "team" | "company" | "enterprise";
|
|
@@ -234438,6 +234513,7 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
234438
234513
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
234439
234514
|
daysUntilDue?: number | undefined;
|
|
234440
234515
|
builderSeatPriceId?: string | undefined;
|
|
234516
|
+
additionalCreditsPriceId?: string | undefined;
|
|
234441
234517
|
}>;
|
|
234442
234518
|
creditBalance: z$1.ZodOptional<z$1.ZodObject<{
|
|
234443
234519
|
paidTopUp: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -234596,6 +234672,7 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
234596
234672
|
subscription: {
|
|
234597
234673
|
fullSeats: number;
|
|
234598
234674
|
builderSeats: number;
|
|
234675
|
+
additionalCredits: number;
|
|
234599
234676
|
amount: number;
|
|
234600
234677
|
isTrial: boolean;
|
|
234601
234678
|
product: "free" | "pro" | "team" | "company" | "enterprise";
|
|
@@ -234771,6 +234848,7 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
234771
234848
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
234772
234849
|
daysUntilDue?: number | undefined;
|
|
234773
234850
|
builderSeatPriceId?: string | undefined;
|
|
234851
|
+
additionalCreditsPriceId?: string | undefined;
|
|
234774
234852
|
};
|
|
234775
234853
|
creditsPrices: {
|
|
234776
234854
|
creditsToCentsConversionRate: number;
|
|
@@ -234807,6 +234885,7 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
234807
234885
|
subscription: {
|
|
234808
234886
|
fullSeats: number;
|
|
234809
234887
|
builderSeats: number;
|
|
234888
|
+
additionalCredits: number;
|
|
234810
234889
|
amount: number;
|
|
234811
234890
|
isTrial: boolean;
|
|
234812
234891
|
product: "free" | "pro" | "team" | "company" | "enterprise";
|
|
@@ -234982,6 +235061,7 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
234982
235061
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
234983
235062
|
daysUntilDue?: number | undefined;
|
|
234984
235063
|
builderSeatPriceId?: string | undefined;
|
|
235064
|
+
additionalCreditsPriceId?: string | undefined;
|
|
234985
235065
|
};
|
|
234986
235066
|
creditsPrices: {
|
|
234987
235067
|
creditsToCentsConversionRate: number;
|
|
@@ -235501,10 +235581,11 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235501
235581
|
seatLimit: z.ZodNumber;
|
|
235502
235582
|
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235503
235583
|
monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
235504
|
-
builderSeatLimit: z.ZodOptional<z.
|
|
235505
|
-
fullSeatLimit: z.ZodOptional<z.
|
|
235506
|
-
|
|
235507
|
-
|
|
235584
|
+
builderSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
235585
|
+
fullSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
235586
|
+
additionalCredits: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
235587
|
+
builderSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
235588
|
+
fullSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
235508
235589
|
status: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
|
|
235509
235590
|
subscriptionStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete", z.ZodTypeDef, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete">>>, NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined>;
|
|
235510
235591
|
internalStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
|
|
@@ -235518,6 +235599,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235518
235599
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235519
235600
|
fullSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235520
235601
|
builderSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235602
|
+
additionalCreditsPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235521
235603
|
subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235522
235604
|
}, "strip", z.ZodTypeAny, {
|
|
235523
235605
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -235538,6 +235620,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235538
235620
|
monthlyCreditGrantAmount?: number | undefined;
|
|
235539
235621
|
builderSeatLimit?: number | undefined;
|
|
235540
235622
|
fullSeatLimit?: number | undefined;
|
|
235623
|
+
additionalCredits?: number | undefined;
|
|
235541
235624
|
builderSeats?: number | undefined;
|
|
235542
235625
|
fullSeats?: number | undefined;
|
|
235543
235626
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -235549,6 +235632,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235549
235632
|
cancelAt?: string | undefined;
|
|
235550
235633
|
fullSeatPriceId?: string | undefined;
|
|
235551
235634
|
builderSeatPriceId?: string | undefined;
|
|
235635
|
+
additionalCreditsPriceId?: string | undefined;
|
|
235552
235636
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
235553
235637
|
}, {
|
|
235554
235638
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -235567,10 +235651,11 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235567
235651
|
} | null | undefined;
|
|
235568
235652
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
235569
235653
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
235570
|
-
builderSeatLimit?: number | undefined;
|
|
235571
|
-
fullSeatLimit?: number | undefined;
|
|
235572
|
-
|
|
235573
|
-
|
|
235654
|
+
builderSeatLimit?: number | null | undefined;
|
|
235655
|
+
fullSeatLimit?: number | null | undefined;
|
|
235656
|
+
additionalCredits?: number | null | undefined;
|
|
235657
|
+
builderSeats?: number | null | undefined;
|
|
235658
|
+
fullSeats?: number | null | undefined;
|
|
235574
235659
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
235575
235660
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
235576
235661
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -235580,6 +235665,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235580
235665
|
cancelAt?: string | null | undefined;
|
|
235581
235666
|
fullSeatPriceId?: string | null | undefined;
|
|
235582
235667
|
builderSeatPriceId?: string | null | undefined;
|
|
235668
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
235583
235669
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
235584
235670
|
}>;
|
|
235585
235671
|
npmRegistry: z.ZodOptional<z.ZodObject<{
|
|
@@ -235662,6 +235748,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235662
235748
|
monthlyCreditGrantAmount?: number | undefined;
|
|
235663
235749
|
builderSeatLimit?: number | undefined;
|
|
235664
235750
|
fullSeatLimit?: number | undefined;
|
|
235751
|
+
additionalCredits?: number | undefined;
|
|
235665
235752
|
builderSeats?: number | undefined;
|
|
235666
235753
|
fullSeats?: number | undefined;
|
|
235667
235754
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -235673,6 +235760,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235673
235760
|
cancelAt?: string | undefined;
|
|
235674
235761
|
fullSeatPriceId?: string | undefined;
|
|
235675
235762
|
builderSeatPriceId?: string | undefined;
|
|
235763
|
+
additionalCreditsPriceId?: string | undefined;
|
|
235676
235764
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
235677
235765
|
};
|
|
235678
235766
|
aiFeaturesEnabled: boolean;
|
|
@@ -235731,10 +235819,11 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235731
235819
|
} | null | undefined;
|
|
235732
235820
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
235733
235821
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
235734
|
-
builderSeatLimit?: number | undefined;
|
|
235735
|
-
fullSeatLimit?: number | undefined;
|
|
235736
|
-
|
|
235737
|
-
|
|
235822
|
+
builderSeatLimit?: number | null | undefined;
|
|
235823
|
+
fullSeatLimit?: number | null | undefined;
|
|
235824
|
+
additionalCredits?: number | null | undefined;
|
|
235825
|
+
builderSeats?: number | null | undefined;
|
|
235826
|
+
fullSeats?: number | null | undefined;
|
|
235738
235827
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
235739
235828
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
235740
235829
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -235744,6 +235833,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235744
235833
|
cancelAt?: string | null | undefined;
|
|
235745
235834
|
fullSeatPriceId?: string | null | undefined;
|
|
235746
235835
|
builderSeatPriceId?: string | null | undefined;
|
|
235836
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
235747
235837
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
235748
235838
|
};
|
|
235749
235839
|
npmRegistry?: {
|
|
@@ -235917,10 +236007,11 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
235917
236007
|
seatLimit: z.ZodNumber;
|
|
235918
236008
|
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235919
236009
|
monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
235920
|
-
builderSeatLimit: z.ZodOptional<z.
|
|
235921
|
-
fullSeatLimit: z.ZodOptional<z.
|
|
235922
|
-
|
|
235923
|
-
|
|
236010
|
+
builderSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
236011
|
+
fullSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
236012
|
+
additionalCredits: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
236013
|
+
builderSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
236014
|
+
fullSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
235924
236015
|
status: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
|
|
235925
236016
|
subscriptionStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete", z.ZodTypeDef, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete">>>, NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined>;
|
|
235926
236017
|
internalStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
|
|
@@ -235934,6 +236025,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
235934
236025
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235935
236026
|
fullSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235936
236027
|
builderSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
236028
|
+
additionalCreditsPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235937
236029
|
subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235938
236030
|
}, "strip", z.ZodTypeAny, {
|
|
235939
236031
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -235954,6 +236046,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
235954
236046
|
monthlyCreditGrantAmount?: number | undefined;
|
|
235955
236047
|
builderSeatLimit?: number | undefined;
|
|
235956
236048
|
fullSeatLimit?: number | undefined;
|
|
236049
|
+
additionalCredits?: number | undefined;
|
|
235957
236050
|
builderSeats?: number | undefined;
|
|
235958
236051
|
fullSeats?: number | undefined;
|
|
235959
236052
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -235965,6 +236058,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
235965
236058
|
cancelAt?: string | undefined;
|
|
235966
236059
|
fullSeatPriceId?: string | undefined;
|
|
235967
236060
|
builderSeatPriceId?: string | undefined;
|
|
236061
|
+
additionalCreditsPriceId?: string | undefined;
|
|
235968
236062
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
235969
236063
|
}, {
|
|
235970
236064
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -235983,10 +236077,11 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
235983
236077
|
} | null | undefined;
|
|
235984
236078
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
235985
236079
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
235986
|
-
builderSeatLimit?: number | undefined;
|
|
235987
|
-
fullSeatLimit?: number | undefined;
|
|
235988
|
-
|
|
235989
|
-
|
|
236080
|
+
builderSeatLimit?: number | null | undefined;
|
|
236081
|
+
fullSeatLimit?: number | null | undefined;
|
|
236082
|
+
additionalCredits?: number | null | undefined;
|
|
236083
|
+
builderSeats?: number | null | undefined;
|
|
236084
|
+
fullSeats?: number | null | undefined;
|
|
235990
236085
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
235991
236086
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
235992
236087
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -235996,6 +236091,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
235996
236091
|
cancelAt?: string | null | undefined;
|
|
235997
236092
|
fullSeatPriceId?: string | null | undefined;
|
|
235998
236093
|
builderSeatPriceId?: string | null | undefined;
|
|
236094
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
235999
236095
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
236000
236096
|
}>;
|
|
236001
236097
|
npmRegistry: z.ZodOptional<z.ZodObject<{
|
|
@@ -236078,6 +236174,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
236078
236174
|
monthlyCreditGrantAmount?: number | undefined;
|
|
236079
236175
|
builderSeatLimit?: number | undefined;
|
|
236080
236176
|
fullSeatLimit?: number | undefined;
|
|
236177
|
+
additionalCredits?: number | undefined;
|
|
236081
236178
|
builderSeats?: number | undefined;
|
|
236082
236179
|
fullSeats?: number | undefined;
|
|
236083
236180
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -236089,6 +236186,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
236089
236186
|
cancelAt?: string | undefined;
|
|
236090
236187
|
fullSeatPriceId?: string | undefined;
|
|
236091
236188
|
builderSeatPriceId?: string | undefined;
|
|
236189
|
+
additionalCreditsPriceId?: string | undefined;
|
|
236092
236190
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
236093
236191
|
};
|
|
236094
236192
|
aiFeaturesEnabled: boolean;
|
|
@@ -236147,10 +236245,11 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
236147
236245
|
} | null | undefined;
|
|
236148
236246
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
236149
236247
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
236150
|
-
builderSeatLimit?: number | undefined;
|
|
236151
|
-
fullSeatLimit?: number | undefined;
|
|
236152
|
-
|
|
236153
|
-
|
|
236248
|
+
builderSeatLimit?: number | null | undefined;
|
|
236249
|
+
fullSeatLimit?: number | null | undefined;
|
|
236250
|
+
additionalCredits?: number | null | undefined;
|
|
236251
|
+
builderSeats?: number | null | undefined;
|
|
236252
|
+
fullSeats?: number | null | undefined;
|
|
236154
236253
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
236155
236254
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
236156
236255
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -236160,6 +236259,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
236160
236259
|
cancelAt?: string | null | undefined;
|
|
236161
236260
|
fullSeatPriceId?: string | null | undefined;
|
|
236162
236261
|
builderSeatPriceId?: string | null | undefined;
|
|
236262
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
236163
236263
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
236164
236264
|
};
|
|
236165
236265
|
npmRegistry?: {
|
|
@@ -236222,6 +236322,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
236222
236322
|
monthlyCreditGrantAmount?: number | undefined;
|
|
236223
236323
|
builderSeatLimit?: number | undefined;
|
|
236224
236324
|
fullSeatLimit?: number | undefined;
|
|
236325
|
+
additionalCredits?: number | undefined;
|
|
236225
236326
|
builderSeats?: number | undefined;
|
|
236226
236327
|
fullSeats?: number | undefined;
|
|
236227
236328
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -236233,6 +236334,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
236233
236334
|
cancelAt?: string | undefined;
|
|
236234
236335
|
fullSeatPriceId?: string | undefined;
|
|
236235
236336
|
builderSeatPriceId?: string | undefined;
|
|
236337
|
+
additionalCreditsPriceId?: string | undefined;
|
|
236236
236338
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
236237
236339
|
};
|
|
236238
236340
|
aiFeaturesEnabled: boolean;
|
|
@@ -236293,10 +236395,11 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
236293
236395
|
} | null | undefined;
|
|
236294
236396
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
236295
236397
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
236296
|
-
builderSeatLimit?: number | undefined;
|
|
236297
|
-
fullSeatLimit?: number | undefined;
|
|
236298
|
-
|
|
236299
|
-
|
|
236398
|
+
builderSeatLimit?: number | null | undefined;
|
|
236399
|
+
fullSeatLimit?: number | null | undefined;
|
|
236400
|
+
additionalCredits?: number | null | undefined;
|
|
236401
|
+
builderSeats?: number | null | undefined;
|
|
236402
|
+
fullSeats?: number | null | undefined;
|
|
236300
236403
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
236301
236404
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
236302
236405
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -236306,6 +236409,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
236306
236409
|
cancelAt?: string | null | undefined;
|
|
236307
236410
|
fullSeatPriceId?: string | null | undefined;
|
|
236308
236411
|
builderSeatPriceId?: string | null | undefined;
|
|
236412
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
236309
236413
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
236310
236414
|
};
|
|
236311
236415
|
npmRegistry?: {
|
|
@@ -246984,6 +247088,7 @@ declare class DesignSystemsEndpoint {
|
|
|
246984
247088
|
monthlyCreditGrantAmount?: number | undefined;
|
|
246985
247089
|
builderSeatLimit?: number | undefined;
|
|
246986
247090
|
fullSeatLimit?: number | undefined;
|
|
247091
|
+
additionalCredits?: number | undefined;
|
|
246987
247092
|
builderSeats?: number | undefined;
|
|
246988
247093
|
fullSeats?: number | undefined;
|
|
246989
247094
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -246995,6 +247100,7 @@ declare class DesignSystemsEndpoint {
|
|
|
246995
247100
|
cancelAt?: string | undefined;
|
|
246996
247101
|
fullSeatPriceId?: string | undefined;
|
|
246997
247102
|
builderSeatPriceId?: string | undefined;
|
|
247103
|
+
additionalCreditsPriceId?: string | undefined;
|
|
246998
247104
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
246999
247105
|
};
|
|
247000
247106
|
aiFeaturesEnabled: boolean;
|
|
@@ -253439,6 +253545,7 @@ declare class WorkspaceInvitationsEndpoint {
|
|
|
253439
253545
|
monthlyCreditGrantAmount?: number | undefined;
|
|
253440
253546
|
builderSeatLimit?: number | undefined;
|
|
253441
253547
|
fullSeatLimit?: number | undefined;
|
|
253548
|
+
additionalCredits?: number | undefined;
|
|
253442
253549
|
builderSeats?: number | undefined;
|
|
253443
253550
|
fullSeats?: number | undefined;
|
|
253444
253551
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -253450,6 +253557,7 @@ declare class WorkspaceInvitationsEndpoint {
|
|
|
253450
253557
|
cancelAt?: string | undefined;
|
|
253451
253558
|
fullSeatPriceId?: string | undefined;
|
|
253452
253559
|
builderSeatPriceId?: string | undefined;
|
|
253560
|
+
additionalCreditsPriceId?: string | undefined;
|
|
253453
253561
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
253454
253562
|
};
|
|
253455
253563
|
aiFeaturesEnabled: boolean;
|
|
@@ -253576,6 +253684,7 @@ declare class WorkspaceMembersEndpoint {
|
|
|
253576
253684
|
monthlyCreditGrantAmount?: number | undefined;
|
|
253577
253685
|
builderSeatLimit?: number | undefined;
|
|
253578
253686
|
fullSeatLimit?: number | undefined;
|
|
253687
|
+
additionalCredits?: number | undefined;
|
|
253579
253688
|
builderSeats?: number | undefined;
|
|
253580
253689
|
fullSeats?: number | undefined;
|
|
253581
253690
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -253587,6 +253696,7 @@ declare class WorkspaceMembersEndpoint {
|
|
|
253587
253696
|
cancelAt?: string | undefined;
|
|
253588
253697
|
fullSeatPriceId?: string | undefined;
|
|
253589
253698
|
builderSeatPriceId?: string | undefined;
|
|
253699
|
+
additionalCreditsPriceId?: string | undefined;
|
|
253590
253700
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
253591
253701
|
};
|
|
253592
253702
|
aiFeaturesEnabled: boolean;
|
|
@@ -253651,6 +253761,7 @@ declare class WorkspaceMembersEndpoint {
|
|
|
253651
253761
|
monthlyCreditGrantAmount?: number | undefined;
|
|
253652
253762
|
builderSeatLimit?: number | undefined;
|
|
253653
253763
|
fullSeatLimit?: number | undefined;
|
|
253764
|
+
additionalCredits?: number | undefined;
|
|
253654
253765
|
builderSeats?: number | undefined;
|
|
253655
253766
|
fullSeats?: number | undefined;
|
|
253656
253767
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -253662,6 +253773,7 @@ declare class WorkspaceMembersEndpoint {
|
|
|
253662
253773
|
cancelAt?: string | undefined;
|
|
253663
253774
|
fullSeatPriceId?: string | undefined;
|
|
253664
253775
|
builderSeatPriceId?: string | undefined;
|
|
253776
|
+
additionalCreditsPriceId?: string | undefined;
|
|
253665
253777
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
253666
253778
|
};
|
|
253667
253779
|
aiFeaturesEnabled: boolean;
|
|
@@ -253714,6 +253826,7 @@ declare class WorkspaceSubscriptionEndpoint {
|
|
|
253714
253826
|
subscription: {
|
|
253715
253827
|
fullSeats: number;
|
|
253716
253828
|
builderSeats: number;
|
|
253829
|
+
additionalCredits: number;
|
|
253717
253830
|
amount: number;
|
|
253718
253831
|
isTrial: boolean;
|
|
253719
253832
|
product: "free" | "pro" | "team" | "company" | "enterprise";
|
|
@@ -253889,6 +254002,7 @@ declare class WorkspaceSubscriptionEndpoint {
|
|
|
253889
254002
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
253890
254003
|
daysUntilDue?: number | undefined;
|
|
253891
254004
|
builderSeatPriceId?: string | undefined;
|
|
254005
|
+
additionalCreditsPriceId?: string | undefined;
|
|
253892
254006
|
};
|
|
253893
254007
|
creditsPrices: {
|
|
253894
254008
|
creditsToCentsConversionRate: number;
|
|
@@ -253988,6 +254102,7 @@ declare class WorkspacesEndpoint {
|
|
|
253988
254102
|
monthlyCreditGrantAmount?: number | undefined;
|
|
253989
254103
|
builderSeatLimit?: number | undefined;
|
|
253990
254104
|
fullSeatLimit?: number | undefined;
|
|
254105
|
+
additionalCredits?: number | undefined;
|
|
253991
254106
|
builderSeats?: number | undefined;
|
|
253992
254107
|
fullSeats?: number | undefined;
|
|
253993
254108
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -253999,6 +254114,7 @@ declare class WorkspacesEndpoint {
|
|
|
253999
254114
|
cancelAt?: string | undefined;
|
|
254000
254115
|
fullSeatPriceId?: string | undefined;
|
|
254001
254116
|
builderSeatPriceId?: string | undefined;
|
|
254117
|
+
additionalCreditsPriceId?: string | undefined;
|
|
254002
254118
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
254003
254119
|
};
|
|
254004
254120
|
aiFeaturesEnabled: boolean;
|
|
@@ -254063,6 +254179,7 @@ declare class WorkspacesEndpoint {
|
|
|
254063
254179
|
monthlyCreditGrantAmount?: number | undefined;
|
|
254064
254180
|
builderSeatLimit?: number | undefined;
|
|
254065
254181
|
fullSeatLimit?: number | undefined;
|
|
254182
|
+
additionalCredits?: number | undefined;
|
|
254066
254183
|
builderSeats?: number | undefined;
|
|
254067
254184
|
fullSeats?: number | undefined;
|
|
254068
254185
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -254074,6 +254191,7 @@ declare class WorkspacesEndpoint {
|
|
|
254074
254191
|
cancelAt?: string | undefined;
|
|
254075
254192
|
fullSeatPriceId?: string | undefined;
|
|
254076
254193
|
builderSeatPriceId?: string | undefined;
|
|
254194
|
+
additionalCreditsPriceId?: string | undefined;
|
|
254077
254195
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
254078
254196
|
};
|
|
254079
254197
|
aiFeaturesEnabled: boolean;
|
|
@@ -254142,6 +254260,7 @@ declare class WorkspacesEndpoint {
|
|
|
254142
254260
|
monthlyCreditGrantAmount?: number | undefined;
|
|
254143
254261
|
builderSeatLimit?: number | undefined;
|
|
254144
254262
|
fullSeatLimit?: number | undefined;
|
|
254263
|
+
additionalCredits?: number | undefined;
|
|
254145
254264
|
builderSeats?: number | undefined;
|
|
254146
254265
|
fullSeats?: number | undefined;
|
|
254147
254266
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -254153,6 +254272,7 @@ declare class WorkspacesEndpoint {
|
|
|
254153
254272
|
cancelAt?: string | undefined;
|
|
254154
254273
|
fullSeatPriceId?: string | undefined;
|
|
254155
254274
|
builderSeatPriceId?: string | undefined;
|
|
254275
|
+
additionalCreditsPriceId?: string | undefined;
|
|
254156
254276
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
254157
254277
|
};
|
|
254158
254278
|
aiFeaturesEnabled: boolean;
|
|
@@ -254273,6 +254393,7 @@ declare class WorkspacesEndpoint {
|
|
|
254273
254393
|
monthlyCreditGrantAmount?: number | undefined;
|
|
254274
254394
|
builderSeatLimit?: number | undefined;
|
|
254275
254395
|
fullSeatLimit?: number | undefined;
|
|
254396
|
+
additionalCredits?: number | undefined;
|
|
254276
254397
|
builderSeats?: number | undefined;
|
|
254277
254398
|
fullSeats?: number | undefined;
|
|
254278
254399
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -254284,6 +254405,7 @@ declare class WorkspacesEndpoint {
|
|
|
254284
254405
|
cancelAt?: string | undefined;
|
|
254285
254406
|
fullSeatPriceId?: string | undefined;
|
|
254286
254407
|
builderSeatPriceId?: string | undefined;
|
|
254408
|
+
additionalCreditsPriceId?: string | undefined;
|
|
254287
254409
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
254288
254410
|
};
|
|
254289
254411
|
aiFeaturesEnabled: boolean;
|
|
@@ -254567,6 +254689,7 @@ declare class UsersEndpoint {
|
|
|
254567
254689
|
monthlyCreditGrantAmount?: number | undefined;
|
|
254568
254690
|
builderSeatLimit?: number | undefined;
|
|
254569
254691
|
fullSeatLimit?: number | undefined;
|
|
254692
|
+
additionalCredits?: number | undefined;
|
|
254570
254693
|
builderSeats?: number | undefined;
|
|
254571
254694
|
fullSeats?: number | undefined;
|
|
254572
254695
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -254578,6 +254701,7 @@ declare class UsersEndpoint {
|
|
|
254578
254701
|
cancelAt?: string | undefined;
|
|
254579
254702
|
fullSeatPriceId?: string | undefined;
|
|
254580
254703
|
builderSeatPriceId?: string | undefined;
|
|
254704
|
+
additionalCreditsPriceId?: string | undefined;
|
|
254581
254705
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
254582
254706
|
};
|
|
254583
254707
|
aiFeaturesEnabled: boolean;
|
|
@@ -257468,4 +257592,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
257468
257592
|
reason: ValidationErrorReason | undefined;
|
|
257469
257593
|
};
|
|
257470
257594
|
|
|
257471
|
-
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectDefaultRole, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, zodQueryBoolean };
|
|
257595
|
+
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectDefaultRole, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, zodQueryBoolean };
|