@supernova-studio/client 1.44.4 → 1.44.6
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 +292 -101
- package/dist/index.d.ts +292 -101
- package/dist/index.js +30 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +29 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
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?: {
|
|
@@ -69441,6 +69473,8 @@ declare const DTOFeatureArtifact: z$1.ZodObject<{
|
|
|
69441
69473
|
filePath?: string | undefined;
|
|
69442
69474
|
}>;
|
|
69443
69475
|
type DTOFeatureArtifact = z$1.infer<typeof DTOFeatureArtifact>;
|
|
69476
|
+
declare const DTOFeatureIterationState: z$1.ZodEnum<["InProgress", "Success", "Error", "Timeout"]>;
|
|
69477
|
+
type DTOFeatureIterationState = z$1.infer<typeof DTOFeatureIterationState>;
|
|
69444
69478
|
declare const DTOFeatureIteration: z$1.ZodObject<{
|
|
69445
69479
|
id: z$1.ZodString;
|
|
69446
69480
|
/**
|
|
@@ -69457,8 +69491,20 @@ declare const DTOFeatureIteration: z$1.ZodObject<{
|
|
|
69457
69491
|
startedFromMessageId: z$1.ZodString;
|
|
69458
69492
|
/**
|
|
69459
69493
|
* Indicates whether the iteration is currently being generated by an agent
|
|
69494
|
+
* @deprecated use `state`
|
|
69460
69495
|
*/
|
|
69461
69496
|
isInProgress: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
69497
|
+
/**
|
|
69498
|
+
* Indicates current processing (creation) state of this iteration.
|
|
69499
|
+
* This property is optional only for backward compatibility with data stored in Liveblocks rooms.
|
|
69500
|
+
* It can be treated as non-optional (undefined doesn't have any meaning here).
|
|
69501
|
+
*
|
|
69502
|
+
* - InProgress: iteration is being created by an AI agent
|
|
69503
|
+
* - Success: iteration has been successfully finished and is ready to be consumed
|
|
69504
|
+
* - Error: an error has occured during iteration processing, the iteration cannot be consumed
|
|
69505
|
+
* - Timeout: the iteration hasn't been finished in a reasonable time, the iteration cannot be consumed
|
|
69506
|
+
*/
|
|
69507
|
+
state: z$1.ZodOptional<z$1.ZodEnum<["InProgress", "Success", "Error", "Timeout"]>>;
|
|
69462
69508
|
/**
|
|
69463
69509
|
* URL of a static preview of the feature
|
|
69464
69510
|
*/
|
|
@@ -69545,6 +69591,7 @@ declare const DTOFeatureIteration: z$1.ZodObject<{
|
|
|
69545
69591
|
name: string;
|
|
69546
69592
|
startedFromMessageId: string;
|
|
69547
69593
|
updatedAt?: string | undefined;
|
|
69594
|
+
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
69548
69595
|
thumbnailUrl?: string | undefined;
|
|
69549
69596
|
baseIterationId?: string | undefined;
|
|
69550
69597
|
isInProgress?: boolean | undefined;
|
|
@@ -69573,6 +69620,7 @@ declare const DTOFeatureIteration: z$1.ZodObject<{
|
|
|
69573
69620
|
name: string;
|
|
69574
69621
|
startedFromMessageId: string;
|
|
69575
69622
|
updatedAt?: string | undefined;
|
|
69623
|
+
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
69576
69624
|
thumbnailUrl?: string | undefined;
|
|
69577
69625
|
baseIterationId?: string | undefined;
|
|
69578
69626
|
isInProgress?: boolean | undefined;
|
|
@@ -69829,8 +69877,20 @@ declare const DTOFeatureIterationCreateInput: z$1.ZodObject<Pick<{
|
|
|
69829
69877
|
startedFromMessageId: z$1.ZodString;
|
|
69830
69878
|
/**
|
|
69831
69879
|
* Indicates whether the iteration is currently being generated by an agent
|
|
69880
|
+
* @deprecated use `state`
|
|
69832
69881
|
*/
|
|
69833
69882
|
isInProgress: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
69883
|
+
/**
|
|
69884
|
+
* Indicates current processing (creation) state of this iteration.
|
|
69885
|
+
* This property is optional only for backward compatibility with data stored in Liveblocks rooms.
|
|
69886
|
+
* It can be treated as non-optional (undefined doesn't have any meaning here).
|
|
69887
|
+
*
|
|
69888
|
+
* - InProgress: iteration is being created by an AI agent
|
|
69889
|
+
* - Success: iteration has been successfully finished and is ready to be consumed
|
|
69890
|
+
* - Error: an error has occured during iteration processing, the iteration cannot be consumed
|
|
69891
|
+
* - Timeout: the iteration hasn't been finished in a reasonable time, the iteration cannot be consumed
|
|
69892
|
+
*/
|
|
69893
|
+
state: z$1.ZodOptional<z$1.ZodEnum<["InProgress", "Success", "Error", "Timeout"]>>;
|
|
69834
69894
|
/**
|
|
69835
69895
|
* URL of a static preview of the feature
|
|
69836
69896
|
*/
|
|
@@ -70702,8 +70762,20 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
70702
70762
|
startedFromMessageId: z$1.ZodString;
|
|
70703
70763
|
/**
|
|
70704
70764
|
* Indicates whether the iteration is currently being generated by an agent
|
|
70765
|
+
* @deprecated use `state`
|
|
70705
70766
|
*/
|
|
70706
70767
|
isInProgress: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
70768
|
+
/**
|
|
70769
|
+
* Indicates current processing (creation) state of this iteration.
|
|
70770
|
+
* This property is optional only for backward compatibility with data stored in Liveblocks rooms.
|
|
70771
|
+
* It can be treated as non-optional (undefined doesn't have any meaning here).
|
|
70772
|
+
*
|
|
70773
|
+
* - InProgress: iteration is being created by an AI agent
|
|
70774
|
+
* - Success: iteration has been successfully finished and is ready to be consumed
|
|
70775
|
+
* - Error: an error has occured during iteration processing, the iteration cannot be consumed
|
|
70776
|
+
* - Timeout: the iteration hasn't been finished in a reasonable time, the iteration cannot be consumed
|
|
70777
|
+
*/
|
|
70778
|
+
state: z$1.ZodOptional<z$1.ZodEnum<["InProgress", "Success", "Error", "Timeout"]>>;
|
|
70707
70779
|
/**
|
|
70708
70780
|
* URL of a static preview of the feature
|
|
70709
70781
|
*/
|
|
@@ -70790,6 +70862,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
70790
70862
|
name: string;
|
|
70791
70863
|
startedFromMessageId: string;
|
|
70792
70864
|
updatedAt?: string | undefined;
|
|
70865
|
+
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
70793
70866
|
thumbnailUrl?: string | undefined;
|
|
70794
70867
|
baseIterationId?: string | undefined;
|
|
70795
70868
|
isInProgress?: boolean | undefined;
|
|
@@ -70818,6 +70891,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
70818
70891
|
name: string;
|
|
70819
70892
|
startedFromMessageId: string;
|
|
70820
70893
|
updatedAt?: string | undefined;
|
|
70894
|
+
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
70821
70895
|
thumbnailUrl?: string | undefined;
|
|
70822
70896
|
baseIterationId?: string | undefined;
|
|
70823
70897
|
isInProgress?: boolean | undefined;
|
|
@@ -70848,6 +70922,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
70848
70922
|
name: string;
|
|
70849
70923
|
startedFromMessageId: string;
|
|
70850
70924
|
updatedAt?: string | undefined;
|
|
70925
|
+
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
70851
70926
|
thumbnailUrl?: string | undefined;
|
|
70852
70927
|
baseIterationId?: string | undefined;
|
|
70853
70928
|
isInProgress?: boolean | undefined;
|
|
@@ -70878,6 +70953,7 @@ declare const DTOFeatureIterationListResponse: z$1.ZodObject<{
|
|
|
70878
70953
|
name: string;
|
|
70879
70954
|
startedFromMessageId: string;
|
|
70880
70955
|
updatedAt?: string | undefined;
|
|
70956
|
+
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
70881
70957
|
thumbnailUrl?: string | undefined;
|
|
70882
70958
|
baseIterationId?: string | undefined;
|
|
70883
70959
|
isInProgress?: boolean | undefined;
|
|
@@ -70920,8 +70996,20 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
70920
70996
|
startedFromMessageId: z$1.ZodString;
|
|
70921
70997
|
/**
|
|
70922
70998
|
* Indicates whether the iteration is currently being generated by an agent
|
|
70999
|
+
* @deprecated use `state`
|
|
70923
71000
|
*/
|
|
70924
71001
|
isInProgress: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
71002
|
+
/**
|
|
71003
|
+
* Indicates current processing (creation) state of this iteration.
|
|
71004
|
+
* This property is optional only for backward compatibility with data stored in Liveblocks rooms.
|
|
71005
|
+
* It can be treated as non-optional (undefined doesn't have any meaning here).
|
|
71006
|
+
*
|
|
71007
|
+
* - InProgress: iteration is being created by an AI agent
|
|
71008
|
+
* - Success: iteration has been successfully finished and is ready to be consumed
|
|
71009
|
+
* - Error: an error has occured during iteration processing, the iteration cannot be consumed
|
|
71010
|
+
* - Timeout: the iteration hasn't been finished in a reasonable time, the iteration cannot be consumed
|
|
71011
|
+
*/
|
|
71012
|
+
state: z$1.ZodOptional<z$1.ZodEnum<["InProgress", "Success", "Error", "Timeout"]>>;
|
|
70925
71013
|
/**
|
|
70926
71014
|
* URL of a static preview of the feature
|
|
70927
71015
|
*/
|
|
@@ -71008,6 +71096,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
71008
71096
|
name: string;
|
|
71009
71097
|
startedFromMessageId: string;
|
|
71010
71098
|
updatedAt?: string | undefined;
|
|
71099
|
+
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
71011
71100
|
thumbnailUrl?: string | undefined;
|
|
71012
71101
|
baseIterationId?: string | undefined;
|
|
71013
71102
|
isInProgress?: boolean | undefined;
|
|
@@ -71036,6 +71125,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
71036
71125
|
name: string;
|
|
71037
71126
|
startedFromMessageId: string;
|
|
71038
71127
|
updatedAt?: string | undefined;
|
|
71128
|
+
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
71039
71129
|
thumbnailUrl?: string | undefined;
|
|
71040
71130
|
baseIterationId?: string | undefined;
|
|
71041
71131
|
isInProgress?: boolean | undefined;
|
|
@@ -71066,6 +71156,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
71066
71156
|
name: string;
|
|
71067
71157
|
startedFromMessageId: string;
|
|
71068
71158
|
updatedAt?: string | undefined;
|
|
71159
|
+
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
71069
71160
|
thumbnailUrl?: string | undefined;
|
|
71070
71161
|
baseIterationId?: string | undefined;
|
|
71071
71162
|
isInProgress?: boolean | undefined;
|
|
@@ -71096,6 +71187,7 @@ declare const DTOFeatureIterationResponse: z$1.ZodObject<{
|
|
|
71096
71187
|
name: string;
|
|
71097
71188
|
startedFromMessageId: string;
|
|
71098
71189
|
updatedAt?: string | undefined;
|
|
71190
|
+
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
71099
71191
|
thumbnailUrl?: string | undefined;
|
|
71100
71192
|
baseIterationId?: string | undefined;
|
|
71101
71193
|
isInProgress?: boolean | undefined;
|
|
@@ -222113,6 +222205,8 @@ declare const DTOThreadSubjectType: z$1.ZodEnum<["ForgeDocument", "ForgeFeature"
|
|
|
222113
222205
|
type DTOThreadSubjectType = z$1.infer<typeof DTOThreadSubjectType>;
|
|
222114
222206
|
declare const DTOThreadAgentType: z$1.ZodEnum<["Ask", "Document", "Prototype", "ReleaseNotes"]>;
|
|
222115
222207
|
type DTOThreadAgentType = z$1.infer<typeof DTOThreadAgentType>;
|
|
222208
|
+
declare const DTOThreadPromptState: z$1.ZodEnum<["Success", "Timeout", "Error"]>;
|
|
222209
|
+
type DTOThreadPromptState = z$1.infer<typeof DTOThreadPromptState>;
|
|
222116
222210
|
declare const DTOThread: z$1.ZodObject<{
|
|
222117
222211
|
id: z$1.ZodString;
|
|
222118
222212
|
liveblocksRoomId: z$1.ZodString;
|
|
@@ -222548,12 +222642,15 @@ type DTOThreadMessageAttachmentsCreateInput = z$1.infer<typeof DTOThreadMessageA
|
|
|
222548
222642
|
declare const DTOThreadMessageFinalizeInput: z$1.ZodObject<{
|
|
222549
222643
|
messageId: z$1.ZodString;
|
|
222550
222644
|
agentMessageBody: z$1.ZodOptional<z$1.ZodString>;
|
|
222645
|
+
promptState: z$1.ZodOptional<z$1.ZodEnum<["Success", "Timeout", "Error"]>>;
|
|
222551
222646
|
}, "strip", z$1.ZodTypeAny, {
|
|
222552
222647
|
messageId: string;
|
|
222553
222648
|
agentMessageBody?: string | undefined;
|
|
222649
|
+
promptState?: "Success" | "Error" | "Timeout" | undefined;
|
|
222554
222650
|
}, {
|
|
222555
222651
|
messageId: string;
|
|
222556
222652
|
agentMessageBody?: string | undefined;
|
|
222653
|
+
promptState?: "Success" | "Error" | "Timeout" | undefined;
|
|
222557
222654
|
}>;
|
|
222558
222655
|
type DTOThreadMessageFinalizeInput = z$1.infer<typeof DTOThreadMessageFinalizeInput>;
|
|
222559
222656
|
declare const DTOThreadMessageCreateInput: z$1.ZodObject<Pick<{
|
|
@@ -229612,10 +229709,11 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229612
229709
|
seatLimit: z.ZodNumber;
|
|
229613
229710
|
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
229614
229711
|
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
|
-
|
|
229712
|
+
builderSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
229713
|
+
fullSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
229714
|
+
additionalCredits: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
229715
|
+
builderSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
229716
|
+
fullSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
229619
229717
|
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
229718
|
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
229719
|
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 +229727,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229629
229727
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
229630
229728
|
fullSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
229631
229729
|
builderSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
229730
|
+
additionalCreditsPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
229632
229731
|
subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
229633
229732
|
}, "strip", z.ZodTypeAny, {
|
|
229634
229733
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -229649,6 +229748,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229649
229748
|
monthlyCreditGrantAmount?: number | undefined;
|
|
229650
229749
|
builderSeatLimit?: number | undefined;
|
|
229651
229750
|
fullSeatLimit?: number | undefined;
|
|
229751
|
+
additionalCredits?: number | undefined;
|
|
229652
229752
|
builderSeats?: number | undefined;
|
|
229653
229753
|
fullSeats?: number | undefined;
|
|
229654
229754
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -229660,6 +229760,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229660
229760
|
cancelAt?: string | undefined;
|
|
229661
229761
|
fullSeatPriceId?: string | undefined;
|
|
229662
229762
|
builderSeatPriceId?: string | undefined;
|
|
229763
|
+
additionalCreditsPriceId?: string | undefined;
|
|
229663
229764
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
229664
229765
|
}, {
|
|
229665
229766
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -229678,10 +229779,11 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229678
229779
|
} | null | undefined;
|
|
229679
229780
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
229680
229781
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
229681
|
-
builderSeatLimit?: number | undefined;
|
|
229682
|
-
fullSeatLimit?: number | undefined;
|
|
229683
|
-
|
|
229684
|
-
|
|
229782
|
+
builderSeatLimit?: number | null | undefined;
|
|
229783
|
+
fullSeatLimit?: number | null | undefined;
|
|
229784
|
+
additionalCredits?: number | null | undefined;
|
|
229785
|
+
builderSeats?: number | null | undefined;
|
|
229786
|
+
fullSeats?: number | null | undefined;
|
|
229685
229787
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
229686
229788
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
229687
229789
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -229691,6 +229793,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229691
229793
|
cancelAt?: string | null | undefined;
|
|
229692
229794
|
fullSeatPriceId?: string | null | undefined;
|
|
229693
229795
|
builderSeatPriceId?: string | null | undefined;
|
|
229796
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
229694
229797
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
229695
229798
|
}>;
|
|
229696
229799
|
npmRegistry: z.ZodOptional<z.ZodObject<{
|
|
@@ -229773,6 +229876,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229773
229876
|
monthlyCreditGrantAmount?: number | undefined;
|
|
229774
229877
|
builderSeatLimit?: number | undefined;
|
|
229775
229878
|
fullSeatLimit?: number | undefined;
|
|
229879
|
+
additionalCredits?: number | undefined;
|
|
229776
229880
|
builderSeats?: number | undefined;
|
|
229777
229881
|
fullSeats?: number | undefined;
|
|
229778
229882
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -229784,6 +229888,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229784
229888
|
cancelAt?: string | undefined;
|
|
229785
229889
|
fullSeatPriceId?: string | undefined;
|
|
229786
229890
|
builderSeatPriceId?: string | undefined;
|
|
229891
|
+
additionalCreditsPriceId?: string | undefined;
|
|
229787
229892
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
229788
229893
|
};
|
|
229789
229894
|
aiFeaturesEnabled: boolean;
|
|
@@ -229842,10 +229947,11 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229842
229947
|
} | null | undefined;
|
|
229843
229948
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
229844
229949
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
229845
|
-
builderSeatLimit?: number | undefined;
|
|
229846
|
-
fullSeatLimit?: number | undefined;
|
|
229847
|
-
|
|
229848
|
-
|
|
229950
|
+
builderSeatLimit?: number | null | undefined;
|
|
229951
|
+
fullSeatLimit?: number | null | undefined;
|
|
229952
|
+
additionalCredits?: number | null | undefined;
|
|
229953
|
+
builderSeats?: number | null | undefined;
|
|
229954
|
+
fullSeats?: number | null | undefined;
|
|
229849
229955
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
229850
229956
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
229851
229957
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -229855,6 +229961,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229855
229961
|
cancelAt?: string | null | undefined;
|
|
229856
229962
|
fullSeatPriceId?: string | null | undefined;
|
|
229857
229963
|
builderSeatPriceId?: string | null | undefined;
|
|
229964
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
229858
229965
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
229859
229966
|
};
|
|
229860
229967
|
npmRegistry?: {
|
|
@@ -229921,6 +230028,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229921
230028
|
monthlyCreditGrantAmount?: number | undefined;
|
|
229922
230029
|
builderSeatLimit?: number | undefined;
|
|
229923
230030
|
fullSeatLimit?: number | undefined;
|
|
230031
|
+
additionalCredits?: number | undefined;
|
|
229924
230032
|
builderSeats?: number | undefined;
|
|
229925
230033
|
fullSeats?: number | undefined;
|
|
229926
230034
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -229932,6 +230040,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229932
230040
|
cancelAt?: string | undefined;
|
|
229933
230041
|
fullSeatPriceId?: string | undefined;
|
|
229934
230042
|
builderSeatPriceId?: string | undefined;
|
|
230043
|
+
additionalCreditsPriceId?: string | undefined;
|
|
229935
230044
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
229936
230045
|
};
|
|
229937
230046
|
aiFeaturesEnabled: boolean;
|
|
@@ -229996,10 +230105,11 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229996
230105
|
} | null | undefined;
|
|
229997
230106
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
229998
230107
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
229999
|
-
builderSeatLimit?: number | undefined;
|
|
230000
|
-
fullSeatLimit?: number | undefined;
|
|
230001
|
-
|
|
230002
|
-
|
|
230108
|
+
builderSeatLimit?: number | null | undefined;
|
|
230109
|
+
fullSeatLimit?: number | null | undefined;
|
|
230110
|
+
additionalCredits?: number | null | undefined;
|
|
230111
|
+
builderSeats?: number | null | undefined;
|
|
230112
|
+
fullSeats?: number | null | undefined;
|
|
230003
230113
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
230004
230114
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
230005
230115
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -230009,6 +230119,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
230009
230119
|
cancelAt?: string | null | undefined;
|
|
230010
230120
|
fullSeatPriceId?: string | null | undefined;
|
|
230011
230121
|
builderSeatPriceId?: string | null | undefined;
|
|
230122
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
230012
230123
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
230013
230124
|
};
|
|
230014
230125
|
npmRegistry?: {
|
|
@@ -230618,10 +230729,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230618
230729
|
seatLimit: z.ZodNumber;
|
|
230619
230730
|
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
230620
230731
|
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
|
-
|
|
230732
|
+
builderSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
230733
|
+
fullSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
230734
|
+
additionalCredits: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
230735
|
+
builderSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
230736
|
+
fullSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
230625
230737
|
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
230738
|
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
230739
|
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 +230747,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230635
230747
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
230636
230748
|
fullSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
230637
230749
|
builderSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
230750
|
+
additionalCreditsPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
230638
230751
|
subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
230639
230752
|
}, "strip", z.ZodTypeAny, {
|
|
230640
230753
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -230655,6 +230768,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230655
230768
|
monthlyCreditGrantAmount?: number | undefined;
|
|
230656
230769
|
builderSeatLimit?: number | undefined;
|
|
230657
230770
|
fullSeatLimit?: number | undefined;
|
|
230771
|
+
additionalCredits?: number | undefined;
|
|
230658
230772
|
builderSeats?: number | undefined;
|
|
230659
230773
|
fullSeats?: number | undefined;
|
|
230660
230774
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -230666,6 +230780,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230666
230780
|
cancelAt?: string | undefined;
|
|
230667
230781
|
fullSeatPriceId?: string | undefined;
|
|
230668
230782
|
builderSeatPriceId?: string | undefined;
|
|
230783
|
+
additionalCreditsPriceId?: string | undefined;
|
|
230669
230784
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
230670
230785
|
}, {
|
|
230671
230786
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -230684,10 +230799,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230684
230799
|
} | null | undefined;
|
|
230685
230800
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
230686
230801
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
230687
|
-
builderSeatLimit?: number | undefined;
|
|
230688
|
-
fullSeatLimit?: number | undefined;
|
|
230689
|
-
|
|
230690
|
-
|
|
230802
|
+
builderSeatLimit?: number | null | undefined;
|
|
230803
|
+
fullSeatLimit?: number | null | undefined;
|
|
230804
|
+
additionalCredits?: number | null | undefined;
|
|
230805
|
+
builderSeats?: number | null | undefined;
|
|
230806
|
+
fullSeats?: number | null | undefined;
|
|
230691
230807
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
230692
230808
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
230693
230809
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -230697,6 +230813,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230697
230813
|
cancelAt?: string | null | undefined;
|
|
230698
230814
|
fullSeatPriceId?: string | null | undefined;
|
|
230699
230815
|
builderSeatPriceId?: string | null | undefined;
|
|
230816
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
230700
230817
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
230701
230818
|
}>;
|
|
230702
230819
|
npmRegistry: z.ZodOptional<z.ZodObject<{
|
|
@@ -230779,6 +230896,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230779
230896
|
monthlyCreditGrantAmount?: number | undefined;
|
|
230780
230897
|
builderSeatLimit?: number | undefined;
|
|
230781
230898
|
fullSeatLimit?: number | undefined;
|
|
230899
|
+
additionalCredits?: number | undefined;
|
|
230782
230900
|
builderSeats?: number | undefined;
|
|
230783
230901
|
fullSeats?: number | undefined;
|
|
230784
230902
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -230790,6 +230908,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230790
230908
|
cancelAt?: string | undefined;
|
|
230791
230909
|
fullSeatPriceId?: string | undefined;
|
|
230792
230910
|
builderSeatPriceId?: string | undefined;
|
|
230911
|
+
additionalCreditsPriceId?: string | undefined;
|
|
230793
230912
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
230794
230913
|
};
|
|
230795
230914
|
aiFeaturesEnabled: boolean;
|
|
@@ -230848,10 +230967,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230848
230967
|
} | null | undefined;
|
|
230849
230968
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
230850
230969
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
230851
|
-
builderSeatLimit?: number | undefined;
|
|
230852
|
-
fullSeatLimit?: number | undefined;
|
|
230853
|
-
|
|
230854
|
-
|
|
230970
|
+
builderSeatLimit?: number | null | undefined;
|
|
230971
|
+
fullSeatLimit?: number | null | undefined;
|
|
230972
|
+
additionalCredits?: number | null | undefined;
|
|
230973
|
+
builderSeats?: number | null | undefined;
|
|
230974
|
+
fullSeats?: number | null | undefined;
|
|
230855
230975
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
230856
230976
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
230857
230977
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -230861,6 +230981,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230861
230981
|
cancelAt?: string | null | undefined;
|
|
230862
230982
|
fullSeatPriceId?: string | null | undefined;
|
|
230863
230983
|
builderSeatPriceId?: string | null | undefined;
|
|
230984
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
230864
230985
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
230865
230986
|
};
|
|
230866
230987
|
npmRegistry?: {
|
|
@@ -230927,6 +231048,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230927
231048
|
monthlyCreditGrantAmount?: number | undefined;
|
|
230928
231049
|
builderSeatLimit?: number | undefined;
|
|
230929
231050
|
fullSeatLimit?: number | undefined;
|
|
231051
|
+
additionalCredits?: number | undefined;
|
|
230930
231052
|
builderSeats?: number | undefined;
|
|
230931
231053
|
fullSeats?: number | undefined;
|
|
230932
231054
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -230938,6 +231060,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230938
231060
|
cancelAt?: string | undefined;
|
|
230939
231061
|
fullSeatPriceId?: string | undefined;
|
|
230940
231062
|
builderSeatPriceId?: string | undefined;
|
|
231063
|
+
additionalCreditsPriceId?: string | undefined;
|
|
230941
231064
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
230942
231065
|
};
|
|
230943
231066
|
aiFeaturesEnabled: boolean;
|
|
@@ -231002,10 +231125,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
231002
231125
|
} | null | undefined;
|
|
231003
231126
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
231004
231127
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
231005
|
-
builderSeatLimit?: number | undefined;
|
|
231006
|
-
fullSeatLimit?: number | undefined;
|
|
231007
|
-
|
|
231008
|
-
|
|
231128
|
+
builderSeatLimit?: number | null | undefined;
|
|
231129
|
+
fullSeatLimit?: number | null | undefined;
|
|
231130
|
+
additionalCredits?: number | null | undefined;
|
|
231131
|
+
builderSeats?: number | null | undefined;
|
|
231132
|
+
fullSeats?: number | null | undefined;
|
|
231009
231133
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
231010
231134
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
231011
231135
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -231015,6 +231139,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
231015
231139
|
cancelAt?: string | null | undefined;
|
|
231016
231140
|
fullSeatPriceId?: string | null | undefined;
|
|
231017
231141
|
builderSeatPriceId?: string | null | undefined;
|
|
231142
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
231018
231143
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
231019
231144
|
};
|
|
231020
231145
|
npmRegistry?: {
|
|
@@ -231083,6 +231208,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
231083
231208
|
monthlyCreditGrantAmount?: number | undefined;
|
|
231084
231209
|
builderSeatLimit?: number | undefined;
|
|
231085
231210
|
fullSeatLimit?: number | undefined;
|
|
231211
|
+
additionalCredits?: number | undefined;
|
|
231086
231212
|
builderSeats?: number | undefined;
|
|
231087
231213
|
fullSeats?: number | undefined;
|
|
231088
231214
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -231094,6 +231220,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
231094
231220
|
cancelAt?: string | undefined;
|
|
231095
231221
|
fullSeatPriceId?: string | undefined;
|
|
231096
231222
|
builderSeatPriceId?: string | undefined;
|
|
231223
|
+
additionalCreditsPriceId?: string | undefined;
|
|
231097
231224
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
231098
231225
|
};
|
|
231099
231226
|
aiFeaturesEnabled: boolean;
|
|
@@ -231160,10 +231287,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
231160
231287
|
} | null | undefined;
|
|
231161
231288
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
231162
231289
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
231163
|
-
builderSeatLimit?: number | undefined;
|
|
231164
|
-
fullSeatLimit?: number | undefined;
|
|
231165
|
-
|
|
231166
|
-
|
|
231290
|
+
builderSeatLimit?: number | null | undefined;
|
|
231291
|
+
fullSeatLimit?: number | null | undefined;
|
|
231292
|
+
additionalCredits?: number | null | undefined;
|
|
231293
|
+
builderSeats?: number | null | undefined;
|
|
231294
|
+
fullSeats?: number | null | undefined;
|
|
231167
231295
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
231168
231296
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
231169
231297
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -231173,6 +231301,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
231173
231301
|
cancelAt?: string | null | undefined;
|
|
231174
231302
|
fullSeatPriceId?: string | null | undefined;
|
|
231175
231303
|
builderSeatPriceId?: string | null | undefined;
|
|
231304
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
231176
231305
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
231177
231306
|
};
|
|
231178
231307
|
npmRegistry?: {
|
|
@@ -232999,6 +233128,7 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
232999
233128
|
fullSeatLimit: z$1.ZodNumber;
|
|
233000
233129
|
builderSeats: z$1.ZodNumber;
|
|
233001
233130
|
builderSeatLimit: z$1.ZodNumber;
|
|
233131
|
+
additionalCredits: z$1.ZodNumber;
|
|
233002
233132
|
currentPeriodStart: z$1.ZodOptional<z$1.ZodString>;
|
|
233003
233133
|
currentPeriodEnd: z$1.ZodOptional<z$1.ZodString>;
|
|
233004
233134
|
subscriptionStatusUpdatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -233031,9 +233161,11 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
233031
233161
|
daysUntilDue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
233032
233162
|
fullSeatPriceId: z$1.ZodString;
|
|
233033
233163
|
builderSeatPriceId: z$1.ZodOptional<z$1.ZodString>;
|
|
233164
|
+
additionalCreditsPriceId: z$1.ZodOptional<z$1.ZodString>;
|
|
233034
233165
|
}, "strip", z$1.ZodTypeAny, {
|
|
233035
233166
|
fullSeats: number;
|
|
233036
233167
|
builderSeats: number;
|
|
233168
|
+
additionalCredits: number;
|
|
233037
233169
|
amount: number;
|
|
233038
233170
|
isTrial: boolean;
|
|
233039
233171
|
product: "free" | "pro" | "team" | "company" | "enterprise";
|
|
@@ -233209,9 +233341,11 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
233209
233341
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
233210
233342
|
daysUntilDue?: number | undefined;
|
|
233211
233343
|
builderSeatPriceId?: string | undefined;
|
|
233344
|
+
additionalCreditsPriceId?: string | undefined;
|
|
233212
233345
|
}, {
|
|
233213
233346
|
fullSeats: number;
|
|
233214
233347
|
builderSeats: number;
|
|
233348
|
+
additionalCredits: number;
|
|
233215
233349
|
amount: number;
|
|
233216
233350
|
isTrial: boolean;
|
|
233217
233351
|
product: "free" | "pro" | "team" | "company" | "enterprise";
|
|
@@ -233387,6 +233521,7 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
233387
233521
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
233388
233522
|
daysUntilDue?: number | undefined;
|
|
233389
233523
|
builderSeatPriceId?: string | undefined;
|
|
233524
|
+
additionalCreditsPriceId?: string | undefined;
|
|
233390
233525
|
}>;
|
|
233391
233526
|
type DTOSubscription = z$1.infer<typeof DTOSubscription>;
|
|
233392
233527
|
declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
@@ -234050,6 +234185,7 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
234050
234185
|
fullSeatLimit: z$1.ZodNumber;
|
|
234051
234186
|
builderSeats: z$1.ZodNumber;
|
|
234052
234187
|
builderSeatLimit: z$1.ZodNumber;
|
|
234188
|
+
additionalCredits: z$1.ZodNumber;
|
|
234053
234189
|
currentPeriodStart: z$1.ZodOptional<z$1.ZodString>;
|
|
234054
234190
|
currentPeriodEnd: z$1.ZodOptional<z$1.ZodString>;
|
|
234055
234191
|
subscriptionStatusUpdatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -234082,9 +234218,11 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
234082
234218
|
daysUntilDue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
234083
234219
|
fullSeatPriceId: z$1.ZodString;
|
|
234084
234220
|
builderSeatPriceId: z$1.ZodOptional<z$1.ZodString>;
|
|
234221
|
+
additionalCreditsPriceId: z$1.ZodOptional<z$1.ZodString>;
|
|
234085
234222
|
}, "strip", z$1.ZodTypeAny, {
|
|
234086
234223
|
fullSeats: number;
|
|
234087
234224
|
builderSeats: number;
|
|
234225
|
+
additionalCredits: number;
|
|
234088
234226
|
amount: number;
|
|
234089
234227
|
isTrial: boolean;
|
|
234090
234228
|
product: "free" | "pro" | "team" | "company" | "enterprise";
|
|
@@ -234260,9 +234398,11 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
234260
234398
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
234261
234399
|
daysUntilDue?: number | undefined;
|
|
234262
234400
|
builderSeatPriceId?: string | undefined;
|
|
234401
|
+
additionalCreditsPriceId?: string | undefined;
|
|
234263
234402
|
}, {
|
|
234264
234403
|
fullSeats: number;
|
|
234265
234404
|
builderSeats: number;
|
|
234405
|
+
additionalCredits: number;
|
|
234266
234406
|
amount: number;
|
|
234267
234407
|
isTrial: boolean;
|
|
234268
234408
|
product: "free" | "pro" | "team" | "company" | "enterprise";
|
|
@@ -234438,6 +234578,7 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
234438
234578
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
234439
234579
|
daysUntilDue?: number | undefined;
|
|
234440
234580
|
builderSeatPriceId?: string | undefined;
|
|
234581
|
+
additionalCreditsPriceId?: string | undefined;
|
|
234441
234582
|
}>;
|
|
234442
234583
|
creditBalance: z$1.ZodOptional<z$1.ZodObject<{
|
|
234443
234584
|
paidTopUp: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -234596,6 +234737,7 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
234596
234737
|
subscription: {
|
|
234597
234738
|
fullSeats: number;
|
|
234598
234739
|
builderSeats: number;
|
|
234740
|
+
additionalCredits: number;
|
|
234599
234741
|
amount: number;
|
|
234600
234742
|
isTrial: boolean;
|
|
234601
234743
|
product: "free" | "pro" | "team" | "company" | "enterprise";
|
|
@@ -234771,6 +234913,7 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
234771
234913
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
234772
234914
|
daysUntilDue?: number | undefined;
|
|
234773
234915
|
builderSeatPriceId?: string | undefined;
|
|
234916
|
+
additionalCreditsPriceId?: string | undefined;
|
|
234774
234917
|
};
|
|
234775
234918
|
creditsPrices: {
|
|
234776
234919
|
creditsToCentsConversionRate: number;
|
|
@@ -234807,6 +234950,7 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
234807
234950
|
subscription: {
|
|
234808
234951
|
fullSeats: number;
|
|
234809
234952
|
builderSeats: number;
|
|
234953
|
+
additionalCredits: number;
|
|
234810
234954
|
amount: number;
|
|
234811
234955
|
isTrial: boolean;
|
|
234812
234956
|
product: "free" | "pro" | "team" | "company" | "enterprise";
|
|
@@ -234982,6 +235126,7 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
234982
235126
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
234983
235127
|
daysUntilDue?: number | undefined;
|
|
234984
235128
|
builderSeatPriceId?: string | undefined;
|
|
235129
|
+
additionalCreditsPriceId?: string | undefined;
|
|
234985
235130
|
};
|
|
234986
235131
|
creditsPrices: {
|
|
234987
235132
|
creditsToCentsConversionRate: number;
|
|
@@ -235501,10 +235646,11 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235501
235646
|
seatLimit: z.ZodNumber;
|
|
235502
235647
|
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235503
235648
|
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
|
-
|
|
235649
|
+
builderSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
235650
|
+
fullSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
235651
|
+
additionalCredits: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
235652
|
+
builderSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
235653
|
+
fullSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
235508
235654
|
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
235655
|
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
235656
|
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 +235664,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235518
235664
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235519
235665
|
fullSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235520
235666
|
builderSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235667
|
+
additionalCreditsPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235521
235668
|
subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235522
235669
|
}, "strip", z.ZodTypeAny, {
|
|
235523
235670
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -235538,6 +235685,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235538
235685
|
monthlyCreditGrantAmount?: number | undefined;
|
|
235539
235686
|
builderSeatLimit?: number | undefined;
|
|
235540
235687
|
fullSeatLimit?: number | undefined;
|
|
235688
|
+
additionalCredits?: number | undefined;
|
|
235541
235689
|
builderSeats?: number | undefined;
|
|
235542
235690
|
fullSeats?: number | undefined;
|
|
235543
235691
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -235549,6 +235697,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235549
235697
|
cancelAt?: string | undefined;
|
|
235550
235698
|
fullSeatPriceId?: string | undefined;
|
|
235551
235699
|
builderSeatPriceId?: string | undefined;
|
|
235700
|
+
additionalCreditsPriceId?: string | undefined;
|
|
235552
235701
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
235553
235702
|
}, {
|
|
235554
235703
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -235567,10 +235716,11 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235567
235716
|
} | null | undefined;
|
|
235568
235717
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
235569
235718
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
235570
|
-
builderSeatLimit?: number | undefined;
|
|
235571
|
-
fullSeatLimit?: number | undefined;
|
|
235572
|
-
|
|
235573
|
-
|
|
235719
|
+
builderSeatLimit?: number | null | undefined;
|
|
235720
|
+
fullSeatLimit?: number | null | undefined;
|
|
235721
|
+
additionalCredits?: number | null | undefined;
|
|
235722
|
+
builderSeats?: number | null | undefined;
|
|
235723
|
+
fullSeats?: number | null | undefined;
|
|
235574
235724
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
235575
235725
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
235576
235726
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -235580,6 +235730,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235580
235730
|
cancelAt?: string | null | undefined;
|
|
235581
235731
|
fullSeatPriceId?: string | null | undefined;
|
|
235582
235732
|
builderSeatPriceId?: string | null | undefined;
|
|
235733
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
235583
235734
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
235584
235735
|
}>;
|
|
235585
235736
|
npmRegistry: z.ZodOptional<z.ZodObject<{
|
|
@@ -235662,6 +235813,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235662
235813
|
monthlyCreditGrantAmount?: number | undefined;
|
|
235663
235814
|
builderSeatLimit?: number | undefined;
|
|
235664
235815
|
fullSeatLimit?: number | undefined;
|
|
235816
|
+
additionalCredits?: number | undefined;
|
|
235665
235817
|
builderSeats?: number | undefined;
|
|
235666
235818
|
fullSeats?: number | undefined;
|
|
235667
235819
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -235673,6 +235825,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235673
235825
|
cancelAt?: string | undefined;
|
|
235674
235826
|
fullSeatPriceId?: string | undefined;
|
|
235675
235827
|
builderSeatPriceId?: string | undefined;
|
|
235828
|
+
additionalCreditsPriceId?: string | undefined;
|
|
235676
235829
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
235677
235830
|
};
|
|
235678
235831
|
aiFeaturesEnabled: boolean;
|
|
@@ -235731,10 +235884,11 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235731
235884
|
} | null | undefined;
|
|
235732
235885
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
235733
235886
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
235734
|
-
builderSeatLimit?: number | undefined;
|
|
235735
|
-
fullSeatLimit?: number | undefined;
|
|
235736
|
-
|
|
235737
|
-
|
|
235887
|
+
builderSeatLimit?: number | null | undefined;
|
|
235888
|
+
fullSeatLimit?: number | null | undefined;
|
|
235889
|
+
additionalCredits?: number | null | undefined;
|
|
235890
|
+
builderSeats?: number | null | undefined;
|
|
235891
|
+
fullSeats?: number | null | undefined;
|
|
235738
235892
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
235739
235893
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
235740
235894
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -235744,6 +235898,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235744
235898
|
cancelAt?: string | null | undefined;
|
|
235745
235899
|
fullSeatPriceId?: string | null | undefined;
|
|
235746
235900
|
builderSeatPriceId?: string | null | undefined;
|
|
235901
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
235747
235902
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
235748
235903
|
};
|
|
235749
235904
|
npmRegistry?: {
|
|
@@ -235917,10 +236072,11 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
235917
236072
|
seatLimit: z.ZodNumber;
|
|
235918
236073
|
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235919
236074
|
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
|
-
|
|
236075
|
+
builderSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
236076
|
+
fullSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
236077
|
+
additionalCredits: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
236078
|
+
builderSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
236079
|
+
fullSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
235924
236080
|
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
236081
|
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
236082
|
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 +236090,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
235934
236090
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235935
236091
|
fullSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235936
236092
|
builderSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
236093
|
+
additionalCreditsPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235937
236094
|
subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235938
236095
|
}, "strip", z.ZodTypeAny, {
|
|
235939
236096
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -235954,6 +236111,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
235954
236111
|
monthlyCreditGrantAmount?: number | undefined;
|
|
235955
236112
|
builderSeatLimit?: number | undefined;
|
|
235956
236113
|
fullSeatLimit?: number | undefined;
|
|
236114
|
+
additionalCredits?: number | undefined;
|
|
235957
236115
|
builderSeats?: number | undefined;
|
|
235958
236116
|
fullSeats?: number | undefined;
|
|
235959
236117
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -235965,6 +236123,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
235965
236123
|
cancelAt?: string | undefined;
|
|
235966
236124
|
fullSeatPriceId?: string | undefined;
|
|
235967
236125
|
builderSeatPriceId?: string | undefined;
|
|
236126
|
+
additionalCreditsPriceId?: string | undefined;
|
|
235968
236127
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
235969
236128
|
}, {
|
|
235970
236129
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -235983,10 +236142,11 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
235983
236142
|
} | null | undefined;
|
|
235984
236143
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
235985
236144
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
235986
|
-
builderSeatLimit?: number | undefined;
|
|
235987
|
-
fullSeatLimit?: number | undefined;
|
|
235988
|
-
|
|
235989
|
-
|
|
236145
|
+
builderSeatLimit?: number | null | undefined;
|
|
236146
|
+
fullSeatLimit?: number | null | undefined;
|
|
236147
|
+
additionalCredits?: number | null | undefined;
|
|
236148
|
+
builderSeats?: number | null | undefined;
|
|
236149
|
+
fullSeats?: number | null | undefined;
|
|
235990
236150
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
235991
236151
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
235992
236152
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -235996,6 +236156,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
235996
236156
|
cancelAt?: string | null | undefined;
|
|
235997
236157
|
fullSeatPriceId?: string | null | undefined;
|
|
235998
236158
|
builderSeatPriceId?: string | null | undefined;
|
|
236159
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
235999
236160
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
236000
236161
|
}>;
|
|
236001
236162
|
npmRegistry: z.ZodOptional<z.ZodObject<{
|
|
@@ -236078,6 +236239,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
236078
236239
|
monthlyCreditGrantAmount?: number | undefined;
|
|
236079
236240
|
builderSeatLimit?: number | undefined;
|
|
236080
236241
|
fullSeatLimit?: number | undefined;
|
|
236242
|
+
additionalCredits?: number | undefined;
|
|
236081
236243
|
builderSeats?: number | undefined;
|
|
236082
236244
|
fullSeats?: number | undefined;
|
|
236083
236245
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -236089,6 +236251,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
236089
236251
|
cancelAt?: string | undefined;
|
|
236090
236252
|
fullSeatPriceId?: string | undefined;
|
|
236091
236253
|
builderSeatPriceId?: string | undefined;
|
|
236254
|
+
additionalCreditsPriceId?: string | undefined;
|
|
236092
236255
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
236093
236256
|
};
|
|
236094
236257
|
aiFeaturesEnabled: boolean;
|
|
@@ -236147,10 +236310,11 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
236147
236310
|
} | null | undefined;
|
|
236148
236311
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
236149
236312
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
236150
|
-
builderSeatLimit?: number | undefined;
|
|
236151
|
-
fullSeatLimit?: number | undefined;
|
|
236152
|
-
|
|
236153
|
-
|
|
236313
|
+
builderSeatLimit?: number | null | undefined;
|
|
236314
|
+
fullSeatLimit?: number | null | undefined;
|
|
236315
|
+
additionalCredits?: number | null | undefined;
|
|
236316
|
+
builderSeats?: number | null | undefined;
|
|
236317
|
+
fullSeats?: number | null | undefined;
|
|
236154
236318
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
236155
236319
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
236156
236320
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -236160,6 +236324,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
236160
236324
|
cancelAt?: string | null | undefined;
|
|
236161
236325
|
fullSeatPriceId?: string | null | undefined;
|
|
236162
236326
|
builderSeatPriceId?: string | null | undefined;
|
|
236327
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
236163
236328
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
236164
236329
|
};
|
|
236165
236330
|
npmRegistry?: {
|
|
@@ -236222,6 +236387,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
236222
236387
|
monthlyCreditGrantAmount?: number | undefined;
|
|
236223
236388
|
builderSeatLimit?: number | undefined;
|
|
236224
236389
|
fullSeatLimit?: number | undefined;
|
|
236390
|
+
additionalCredits?: number | undefined;
|
|
236225
236391
|
builderSeats?: number | undefined;
|
|
236226
236392
|
fullSeats?: number | undefined;
|
|
236227
236393
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -236233,6 +236399,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
236233
236399
|
cancelAt?: string | undefined;
|
|
236234
236400
|
fullSeatPriceId?: string | undefined;
|
|
236235
236401
|
builderSeatPriceId?: string | undefined;
|
|
236402
|
+
additionalCreditsPriceId?: string | undefined;
|
|
236236
236403
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
236237
236404
|
};
|
|
236238
236405
|
aiFeaturesEnabled: boolean;
|
|
@@ -236293,10 +236460,11 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
236293
236460
|
} | null | undefined;
|
|
236294
236461
|
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
236295
236462
|
monthlyCreditGrantAmount?: number | null | undefined;
|
|
236296
|
-
builderSeatLimit?: number | undefined;
|
|
236297
|
-
fullSeatLimit?: number | undefined;
|
|
236298
|
-
|
|
236299
|
-
|
|
236463
|
+
builderSeatLimit?: number | null | undefined;
|
|
236464
|
+
fullSeatLimit?: number | null | undefined;
|
|
236465
|
+
additionalCredits?: number | null | undefined;
|
|
236466
|
+
builderSeats?: number | null | undefined;
|
|
236467
|
+
fullSeats?: number | null | undefined;
|
|
236300
236468
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
|
|
236301
236469
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
236302
236470
|
stripeSubscriptionId?: string | null | undefined;
|
|
@@ -236306,6 +236474,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
236306
236474
|
cancelAt?: string | null | undefined;
|
|
236307
236475
|
fullSeatPriceId?: string | null | undefined;
|
|
236308
236476
|
builderSeatPriceId?: string | null | undefined;
|
|
236477
|
+
additionalCreditsPriceId?: string | null | undefined;
|
|
236309
236478
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
236310
236479
|
};
|
|
236311
236480
|
npmRegistry?: {
|
|
@@ -246984,6 +247153,7 @@ declare class DesignSystemsEndpoint {
|
|
|
246984
247153
|
monthlyCreditGrantAmount?: number | undefined;
|
|
246985
247154
|
builderSeatLimit?: number | undefined;
|
|
246986
247155
|
fullSeatLimit?: number | undefined;
|
|
247156
|
+
additionalCredits?: number | undefined;
|
|
246987
247157
|
builderSeats?: number | undefined;
|
|
246988
247158
|
fullSeats?: number | undefined;
|
|
246989
247159
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -246995,6 +247165,7 @@ declare class DesignSystemsEndpoint {
|
|
|
246995
247165
|
cancelAt?: string | undefined;
|
|
246996
247166
|
fullSeatPriceId?: string | undefined;
|
|
246997
247167
|
builderSeatPriceId?: string | undefined;
|
|
247168
|
+
additionalCreditsPriceId?: string | undefined;
|
|
246998
247169
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
246999
247170
|
};
|
|
247000
247171
|
aiFeaturesEnabled: boolean;
|
|
@@ -247327,6 +247498,7 @@ declare class ForgeFeatureIterationsEndpoint {
|
|
|
247327
247498
|
name: string;
|
|
247328
247499
|
startedFromMessageId: string;
|
|
247329
247500
|
updatedAt?: string | undefined;
|
|
247501
|
+
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
247330
247502
|
thumbnailUrl?: string | undefined;
|
|
247331
247503
|
baseIterationId?: string | undefined;
|
|
247332
247504
|
isInProgress?: boolean | undefined;
|
|
@@ -247487,6 +247659,7 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
247487
247659
|
name: string;
|
|
247488
247660
|
startedFromMessageId: string;
|
|
247489
247661
|
updatedAt?: string | undefined;
|
|
247662
|
+
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
247490
247663
|
thumbnailUrl?: string | undefined;
|
|
247491
247664
|
baseIterationId?: string | undefined;
|
|
247492
247665
|
isInProgress?: boolean | undefined;
|
|
@@ -253439,6 +253612,7 @@ declare class WorkspaceInvitationsEndpoint {
|
|
|
253439
253612
|
monthlyCreditGrantAmount?: number | undefined;
|
|
253440
253613
|
builderSeatLimit?: number | undefined;
|
|
253441
253614
|
fullSeatLimit?: number | undefined;
|
|
253615
|
+
additionalCredits?: number | undefined;
|
|
253442
253616
|
builderSeats?: number | undefined;
|
|
253443
253617
|
fullSeats?: number | undefined;
|
|
253444
253618
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -253450,6 +253624,7 @@ declare class WorkspaceInvitationsEndpoint {
|
|
|
253450
253624
|
cancelAt?: string | undefined;
|
|
253451
253625
|
fullSeatPriceId?: string | undefined;
|
|
253452
253626
|
builderSeatPriceId?: string | undefined;
|
|
253627
|
+
additionalCreditsPriceId?: string | undefined;
|
|
253453
253628
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
253454
253629
|
};
|
|
253455
253630
|
aiFeaturesEnabled: boolean;
|
|
@@ -253576,6 +253751,7 @@ declare class WorkspaceMembersEndpoint {
|
|
|
253576
253751
|
monthlyCreditGrantAmount?: number | undefined;
|
|
253577
253752
|
builderSeatLimit?: number | undefined;
|
|
253578
253753
|
fullSeatLimit?: number | undefined;
|
|
253754
|
+
additionalCredits?: number | undefined;
|
|
253579
253755
|
builderSeats?: number | undefined;
|
|
253580
253756
|
fullSeats?: number | undefined;
|
|
253581
253757
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -253587,6 +253763,7 @@ declare class WorkspaceMembersEndpoint {
|
|
|
253587
253763
|
cancelAt?: string | undefined;
|
|
253588
253764
|
fullSeatPriceId?: string | undefined;
|
|
253589
253765
|
builderSeatPriceId?: string | undefined;
|
|
253766
|
+
additionalCreditsPriceId?: string | undefined;
|
|
253590
253767
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
253591
253768
|
};
|
|
253592
253769
|
aiFeaturesEnabled: boolean;
|
|
@@ -253651,6 +253828,7 @@ declare class WorkspaceMembersEndpoint {
|
|
|
253651
253828
|
monthlyCreditGrantAmount?: number | undefined;
|
|
253652
253829
|
builderSeatLimit?: number | undefined;
|
|
253653
253830
|
fullSeatLimit?: number | undefined;
|
|
253831
|
+
additionalCredits?: number | undefined;
|
|
253654
253832
|
builderSeats?: number | undefined;
|
|
253655
253833
|
fullSeats?: number | undefined;
|
|
253656
253834
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -253662,6 +253840,7 @@ declare class WorkspaceMembersEndpoint {
|
|
|
253662
253840
|
cancelAt?: string | undefined;
|
|
253663
253841
|
fullSeatPriceId?: string | undefined;
|
|
253664
253842
|
builderSeatPriceId?: string | undefined;
|
|
253843
|
+
additionalCreditsPriceId?: string | undefined;
|
|
253665
253844
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
253666
253845
|
};
|
|
253667
253846
|
aiFeaturesEnabled: boolean;
|
|
@@ -253714,6 +253893,7 @@ declare class WorkspaceSubscriptionEndpoint {
|
|
|
253714
253893
|
subscription: {
|
|
253715
253894
|
fullSeats: number;
|
|
253716
253895
|
builderSeats: number;
|
|
253896
|
+
additionalCredits: number;
|
|
253717
253897
|
amount: number;
|
|
253718
253898
|
isTrial: boolean;
|
|
253719
253899
|
product: "free" | "pro" | "team" | "company" | "enterprise";
|
|
@@ -253889,6 +254069,7 @@ declare class WorkspaceSubscriptionEndpoint {
|
|
|
253889
254069
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
253890
254070
|
daysUntilDue?: number | undefined;
|
|
253891
254071
|
builderSeatPriceId?: string | undefined;
|
|
254072
|
+
additionalCreditsPriceId?: string | undefined;
|
|
253892
254073
|
};
|
|
253893
254074
|
creditsPrices: {
|
|
253894
254075
|
creditsToCentsConversionRate: number;
|
|
@@ -253988,6 +254169,7 @@ declare class WorkspacesEndpoint {
|
|
|
253988
254169
|
monthlyCreditGrantAmount?: number | undefined;
|
|
253989
254170
|
builderSeatLimit?: number | undefined;
|
|
253990
254171
|
fullSeatLimit?: number | undefined;
|
|
254172
|
+
additionalCredits?: number | undefined;
|
|
253991
254173
|
builderSeats?: number | undefined;
|
|
253992
254174
|
fullSeats?: number | undefined;
|
|
253993
254175
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -253999,6 +254181,7 @@ declare class WorkspacesEndpoint {
|
|
|
253999
254181
|
cancelAt?: string | undefined;
|
|
254000
254182
|
fullSeatPriceId?: string | undefined;
|
|
254001
254183
|
builderSeatPriceId?: string | undefined;
|
|
254184
|
+
additionalCreditsPriceId?: string | undefined;
|
|
254002
254185
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
254003
254186
|
};
|
|
254004
254187
|
aiFeaturesEnabled: boolean;
|
|
@@ -254063,6 +254246,7 @@ declare class WorkspacesEndpoint {
|
|
|
254063
254246
|
monthlyCreditGrantAmount?: number | undefined;
|
|
254064
254247
|
builderSeatLimit?: number | undefined;
|
|
254065
254248
|
fullSeatLimit?: number | undefined;
|
|
254249
|
+
additionalCredits?: number | undefined;
|
|
254066
254250
|
builderSeats?: number | undefined;
|
|
254067
254251
|
fullSeats?: number | undefined;
|
|
254068
254252
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -254074,6 +254258,7 @@ declare class WorkspacesEndpoint {
|
|
|
254074
254258
|
cancelAt?: string | undefined;
|
|
254075
254259
|
fullSeatPriceId?: string | undefined;
|
|
254076
254260
|
builderSeatPriceId?: string | undefined;
|
|
254261
|
+
additionalCreditsPriceId?: string | undefined;
|
|
254077
254262
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
254078
254263
|
};
|
|
254079
254264
|
aiFeaturesEnabled: boolean;
|
|
@@ -254142,6 +254327,7 @@ declare class WorkspacesEndpoint {
|
|
|
254142
254327
|
monthlyCreditGrantAmount?: number | undefined;
|
|
254143
254328
|
builderSeatLimit?: number | undefined;
|
|
254144
254329
|
fullSeatLimit?: number | undefined;
|
|
254330
|
+
additionalCredits?: number | undefined;
|
|
254145
254331
|
builderSeats?: number | undefined;
|
|
254146
254332
|
fullSeats?: number | undefined;
|
|
254147
254333
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -254153,6 +254339,7 @@ declare class WorkspacesEndpoint {
|
|
|
254153
254339
|
cancelAt?: string | undefined;
|
|
254154
254340
|
fullSeatPriceId?: string | undefined;
|
|
254155
254341
|
builderSeatPriceId?: string | undefined;
|
|
254342
|
+
additionalCreditsPriceId?: string | undefined;
|
|
254156
254343
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
254157
254344
|
};
|
|
254158
254345
|
aiFeaturesEnabled: boolean;
|
|
@@ -254273,6 +254460,7 @@ declare class WorkspacesEndpoint {
|
|
|
254273
254460
|
monthlyCreditGrantAmount?: number | undefined;
|
|
254274
254461
|
builderSeatLimit?: number | undefined;
|
|
254275
254462
|
fullSeatLimit?: number | undefined;
|
|
254463
|
+
additionalCredits?: number | undefined;
|
|
254276
254464
|
builderSeats?: number | undefined;
|
|
254277
254465
|
fullSeats?: number | undefined;
|
|
254278
254466
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -254284,6 +254472,7 @@ declare class WorkspacesEndpoint {
|
|
|
254284
254472
|
cancelAt?: string | undefined;
|
|
254285
254473
|
fullSeatPriceId?: string | undefined;
|
|
254286
254474
|
builderSeatPriceId?: string | undefined;
|
|
254475
|
+
additionalCreditsPriceId?: string | undefined;
|
|
254287
254476
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
254288
254477
|
};
|
|
254289
254478
|
aiFeaturesEnabled: boolean;
|
|
@@ -254567,6 +254756,7 @@ declare class UsersEndpoint {
|
|
|
254567
254756
|
monthlyCreditGrantAmount?: number | undefined;
|
|
254568
254757
|
builderSeatLimit?: number | undefined;
|
|
254569
254758
|
fullSeatLimit?: number | undefined;
|
|
254759
|
+
additionalCredits?: number | undefined;
|
|
254570
254760
|
builderSeats?: number | undefined;
|
|
254571
254761
|
fullSeats?: number | undefined;
|
|
254572
254762
|
subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
|
|
@@ -254578,6 +254768,7 @@ declare class UsersEndpoint {
|
|
|
254578
254768
|
cancelAt?: string | undefined;
|
|
254579
254769
|
fullSeatPriceId?: string | undefined;
|
|
254580
254770
|
builderSeatPriceId?: string | undefined;
|
|
254771
|
+
additionalCreditsPriceId?: string | undefined;
|
|
254581
254772
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
254582
254773
|
};
|
|
254583
254774
|
aiFeaturesEnabled: boolean;
|
|
@@ -257468,4 +257659,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
257468
257659
|
reason: ValidationErrorReason | undefined;
|
|
257469
257660
|
};
|
|
257470
257661
|
|
|
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 };
|
|
257662
|
+
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, DTOFeatureIterationState, 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, DTOThreadPromptState, 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 };
|