@supernova-studio/client 1.44.3 → 1.44.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +412 -88
- package/dist/index.d.ts +412 -88
- package/dist/index.js +55 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +105 -56
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -368,7 +368,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
368
368
|
stripeCustomerId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
369
369
|
product: z.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
|
|
370
370
|
planPriceId: z.ZodString;
|
|
371
|
-
planInterval: z.ZodEnum<["daily", "monthly", "
|
|
371
|
+
planInterval: z.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
372
372
|
currentPeriodStart: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
373
373
|
currentPeriodEnd: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
374
374
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -380,7 +380,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
380
380
|
seats: number;
|
|
381
381
|
seatLimit: number;
|
|
382
382
|
planPriceId: string;
|
|
383
|
-
planInterval: "daily" | "monthly" | "
|
|
383
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
384
384
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
385
385
|
card?: {
|
|
386
386
|
name?: string | null | undefined;
|
|
@@ -411,7 +411,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
411
411
|
seats: number;
|
|
412
412
|
seatLimit: number;
|
|
413
413
|
planPriceId: string;
|
|
414
|
-
planInterval: "daily" | "monthly" | "
|
|
414
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
415
415
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
416
416
|
card?: {
|
|
417
417
|
name?: string | null | undefined;
|
|
@@ -504,7 +504,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
504
504
|
seats: number;
|
|
505
505
|
seatLimit: number;
|
|
506
506
|
planPriceId: string;
|
|
507
|
-
planInterval: "daily" | "monthly" | "
|
|
507
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
508
508
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
509
509
|
card?: {
|
|
510
510
|
name?: string | null | undefined;
|
|
@@ -575,7 +575,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
575
575
|
seats: number;
|
|
576
576
|
seatLimit: number;
|
|
577
577
|
planPriceId: string;
|
|
578
|
-
planInterval: "daily" | "monthly" | "
|
|
578
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
579
579
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
580
580
|
card?: {
|
|
581
581
|
name?: string | null | undefined;
|
|
@@ -652,7 +652,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
652
652
|
seats: number;
|
|
653
653
|
seatLimit: number;
|
|
654
654
|
planPriceId: string;
|
|
655
|
-
planInterval: "daily" | "monthly" | "
|
|
655
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
656
656
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
657
657
|
card?: {
|
|
658
658
|
name?: string | null | undefined;
|
|
@@ -729,7 +729,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
729
729
|
seats: number;
|
|
730
730
|
seatLimit: number;
|
|
731
731
|
planPriceId: string;
|
|
732
|
-
planInterval: "daily" | "monthly" | "
|
|
732
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
733
733
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
734
734
|
card?: {
|
|
735
735
|
name?: string | null | undefined;
|
|
@@ -1037,7 +1037,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
1037
1037
|
seats: number;
|
|
1038
1038
|
seatLimit: number;
|
|
1039
1039
|
planPriceId: string;
|
|
1040
|
-
planInterval: "daily" | "monthly" | "
|
|
1040
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
1041
1041
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
1042
1042
|
card?: {
|
|
1043
1043
|
name?: string | null | undefined;
|
|
@@ -1167,7 +1167,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
1167
1167
|
seats: number;
|
|
1168
1168
|
seatLimit: number;
|
|
1169
1169
|
planPriceId: string;
|
|
1170
|
-
planInterval: "daily" | "monthly" | "
|
|
1170
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
1171
1171
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
1172
1172
|
card?: {
|
|
1173
1173
|
name?: string | null | undefined;
|
|
@@ -10076,7 +10076,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
|
|
|
10076
10076
|
stripeCustomerId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10077
10077
|
product: z.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
|
|
10078
10078
|
planPriceId: z.ZodString;
|
|
10079
|
-
planInterval: z.ZodEnum<["daily", "monthly", "
|
|
10079
|
+
planInterval: z.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
10080
10080
|
currentPeriodStart: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10081
10081
|
currentPeriodEnd: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10082
10082
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -10088,7 +10088,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
|
|
|
10088
10088
|
seats: number;
|
|
10089
10089
|
seatLimit: number;
|
|
10090
10090
|
planPriceId: string;
|
|
10091
|
-
planInterval: "daily" | "monthly" | "
|
|
10091
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
10092
10092
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
10093
10093
|
card?: {
|
|
10094
10094
|
name?: string | null | undefined;
|
|
@@ -10119,7 +10119,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
|
|
|
10119
10119
|
seats: number;
|
|
10120
10120
|
seatLimit: number;
|
|
10121
10121
|
planPriceId: string;
|
|
10122
|
-
planInterval: "daily" | "monthly" | "
|
|
10122
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
10123
10123
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
10124
10124
|
card?: {
|
|
10125
10125
|
name?: string | null | undefined;
|
|
@@ -10212,7 +10212,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
|
|
|
10212
10212
|
seats: number;
|
|
10213
10213
|
seatLimit: number;
|
|
10214
10214
|
planPriceId: string;
|
|
10215
|
-
planInterval: "daily" | "monthly" | "
|
|
10215
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
10216
10216
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
10217
10217
|
card?: {
|
|
10218
10218
|
name?: string | null | undefined;
|
|
@@ -10283,7 +10283,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
|
|
|
10283
10283
|
seats: number;
|
|
10284
10284
|
seatLimit: number;
|
|
10285
10285
|
planPriceId: string;
|
|
10286
|
-
planInterval: "daily" | "monthly" | "
|
|
10286
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
10287
10287
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
10288
10288
|
card?: {
|
|
10289
10289
|
name?: string | null | undefined;
|
|
@@ -10386,7 +10386,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
|
|
|
10386
10386
|
seats: number;
|
|
10387
10387
|
seatLimit: number;
|
|
10388
10388
|
planPriceId: string;
|
|
10389
|
-
planInterval: "daily" | "monthly" | "
|
|
10389
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
10390
10390
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
10391
10391
|
card?: {
|
|
10392
10392
|
name?: string | null | undefined;
|
|
@@ -10489,7 +10489,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
|
|
|
10489
10489
|
seats: number;
|
|
10490
10490
|
seatLimit: number;
|
|
10491
10491
|
planPriceId: string;
|
|
10492
|
-
planInterval: "daily" | "monthly" | "
|
|
10492
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
10493
10493
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
10494
10494
|
card?: {
|
|
10495
10495
|
name?: string | null | undefined;
|
|
@@ -228015,19 +228015,19 @@ declare const DTOBillingCreditsSpendAction: z$1.ZodEnum<["Ask", "Build", "Docume
|
|
|
228015
228015
|
type DTOBillingCreditsSpendAction = z$1.infer<typeof DTOBillingCreditsSpendAction>;
|
|
228016
228016
|
declare const DTOBillingSubscriptionChangePreviewInput: z$1.ZodObject<{
|
|
228017
228017
|
plan: z$1.ZodEnum<["free", "pro", "team", "company", "enterprise"]>;
|
|
228018
|
-
interval: z$1.ZodEnum<["daily", "monthly", "
|
|
228018
|
+
interval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
228019
228019
|
fullSeats: z$1.ZodNumber;
|
|
228020
228020
|
builderSeats: z$1.ZodNumber;
|
|
228021
228021
|
additionalCredits: z$1.ZodNumber;
|
|
228022
228022
|
}, "strip", z$1.ZodTypeAny, {
|
|
228023
228023
|
plan: "free" | "pro" | "team" | "company" | "enterprise";
|
|
228024
|
-
interval: "daily" | "monthly" | "
|
|
228024
|
+
interval: "daily" | "monthly" | "yearly";
|
|
228025
228025
|
fullSeats: number;
|
|
228026
228026
|
builderSeats: number;
|
|
228027
228027
|
additionalCredits: number;
|
|
228028
228028
|
}, {
|
|
228029
228029
|
plan: "free" | "pro" | "team" | "company" | "enterprise";
|
|
228030
|
-
interval: "daily" | "monthly" | "
|
|
228030
|
+
interval: "daily" | "monthly" | "yearly";
|
|
228031
228031
|
fullSeats: number;
|
|
228032
228032
|
builderSeats: number;
|
|
228033
228033
|
additionalCredits: number;
|
|
@@ -228094,13 +228094,13 @@ declare const DTOBillingCheckoutSubscriptionChangeInput: z$1.ZodObject<{
|
|
|
228094
228094
|
successUrl: z$1.ZodString;
|
|
228095
228095
|
cancelUrl: z$1.ZodString;
|
|
228096
228096
|
plan: z$1.ZodEnum<["free", "pro", "team", "company", "enterprise"]>;
|
|
228097
|
-
interval: z$1.ZodEnum<["daily", "monthly", "
|
|
228097
|
+
interval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
228098
228098
|
fullSeats: z$1.ZodNumber;
|
|
228099
228099
|
builderSeats: z$1.ZodNumber;
|
|
228100
228100
|
additionalCredits: z$1.ZodNumber;
|
|
228101
228101
|
}, "strip", z$1.ZodTypeAny, {
|
|
228102
228102
|
plan: "free" | "pro" | "team" | "company" | "enterprise";
|
|
228103
|
-
interval: "daily" | "monthly" | "
|
|
228103
|
+
interval: "daily" | "monthly" | "yearly";
|
|
228104
228104
|
fullSeats: number;
|
|
228105
228105
|
builderSeats: number;
|
|
228106
228106
|
additionalCredits: number;
|
|
@@ -228109,7 +228109,7 @@ declare const DTOBillingCheckoutSubscriptionChangeInput: z$1.ZodObject<{
|
|
|
228109
228109
|
cancelUrl: string;
|
|
228110
228110
|
}, {
|
|
228111
228111
|
plan: "free" | "pro" | "team" | "company" | "enterprise";
|
|
228112
|
-
interval: "daily" | "monthly" | "
|
|
228112
|
+
interval: "daily" | "monthly" | "yearly";
|
|
228113
228113
|
fullSeats: number;
|
|
228114
228114
|
builderSeats: number;
|
|
228115
228115
|
additionalCredits: number;
|
|
@@ -228158,13 +228158,13 @@ declare const DTOBillingCheckoutInput: z$1.ZodDiscriminatedUnion<"mode", [z$1.Zo
|
|
|
228158
228158
|
successUrl: z$1.ZodString;
|
|
228159
228159
|
cancelUrl: z$1.ZodString;
|
|
228160
228160
|
plan: z$1.ZodEnum<["free", "pro", "team", "company", "enterprise"]>;
|
|
228161
|
-
interval: z$1.ZodEnum<["daily", "monthly", "
|
|
228161
|
+
interval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
228162
228162
|
fullSeats: z$1.ZodNumber;
|
|
228163
228163
|
builderSeats: z$1.ZodNumber;
|
|
228164
228164
|
additionalCredits: z$1.ZodNumber;
|
|
228165
228165
|
}, "strip", z$1.ZodTypeAny, {
|
|
228166
228166
|
plan: "free" | "pro" | "team" | "company" | "enterprise";
|
|
228167
|
-
interval: "daily" | "monthly" | "
|
|
228167
|
+
interval: "daily" | "monthly" | "yearly";
|
|
228168
228168
|
fullSeats: number;
|
|
228169
228169
|
builderSeats: number;
|
|
228170
228170
|
additionalCredits: number;
|
|
@@ -228173,7 +228173,7 @@ declare const DTOBillingCheckoutInput: z$1.ZodDiscriminatedUnion<"mode", [z$1.Zo
|
|
|
228173
228173
|
cancelUrl: string;
|
|
228174
228174
|
}, {
|
|
228175
228175
|
plan: "free" | "pro" | "team" | "company" | "enterprise";
|
|
228176
|
-
interval: "daily" | "monthly" | "
|
|
228176
|
+
interval: "daily" | "monthly" | "yearly";
|
|
228177
228177
|
fullSeats: number;
|
|
228178
228178
|
builderSeats: number;
|
|
228179
228179
|
additionalCredits: number;
|
|
@@ -228215,7 +228215,7 @@ declare const DTOWorkspaceSeatType: z$1.ZodEnum<["Full", "Builder", "None"]>;
|
|
|
228215
228215
|
type DTOWorkspaceSeatType = z$1.infer<typeof DTOWorkspaceSeatType>;
|
|
228216
228216
|
declare const DTOWorkspaceBilledSeatType: z$1.ZodEnum<["Full", "Builder"]>;
|
|
228217
228217
|
type DTOWorkspaceBilledSeatType = z$1.infer<typeof DTOWorkspaceBilledSeatType>;
|
|
228218
|
-
declare const DTOBillingInterval: z$1.ZodEnum<["daily", "monthly", "
|
|
228218
|
+
declare const DTOBillingInterval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
228219
228219
|
type DTOBillingInterval = z$1.infer<typeof DTOBillingInterval>;
|
|
228220
228220
|
declare const DTOProductCode: z$1.ZodEnum<["free", "pro", "team", "company", "enterprise"]>;
|
|
228221
228221
|
type DTOProductCode = z$1.infer<typeof DTOProductCode>;
|
|
@@ -229623,7 +229623,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229623
229623
|
stripeCustomerId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
229624
229624
|
product: z.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
|
|
229625
229625
|
planPriceId: z.ZodString;
|
|
229626
|
-
planInterval: z.ZodEnum<["daily", "monthly", "
|
|
229626
|
+
planInterval: z.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
229627
229627
|
currentPeriodStart: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
229628
229628
|
currentPeriodEnd: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
229629
229629
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -229635,7 +229635,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229635
229635
|
seats: number;
|
|
229636
229636
|
seatLimit: number;
|
|
229637
229637
|
planPriceId: string;
|
|
229638
|
-
planInterval: "daily" | "monthly" | "
|
|
229638
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
229639
229639
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
229640
229640
|
card?: {
|
|
229641
229641
|
name?: string | null | undefined;
|
|
@@ -229666,7 +229666,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229666
229666
|
seats: number;
|
|
229667
229667
|
seatLimit: number;
|
|
229668
229668
|
planPriceId: string;
|
|
229669
|
-
planInterval: "daily" | "monthly" | "
|
|
229669
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
229670
229670
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
229671
229671
|
card?: {
|
|
229672
229672
|
name?: string | null | undefined;
|
|
@@ -229759,7 +229759,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229759
229759
|
seats: number;
|
|
229760
229760
|
seatLimit: number;
|
|
229761
229761
|
planPriceId: string;
|
|
229762
|
-
planInterval: "daily" | "monthly" | "
|
|
229762
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
229763
229763
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
229764
229764
|
card?: {
|
|
229765
229765
|
name?: string | null | undefined;
|
|
@@ -229830,7 +229830,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229830
229830
|
seats: number;
|
|
229831
229831
|
seatLimit: number;
|
|
229832
229832
|
planPriceId: string;
|
|
229833
|
-
planInterval: "daily" | "monthly" | "
|
|
229833
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
229834
229834
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
229835
229835
|
card?: {
|
|
229836
229836
|
name?: string | null | undefined;
|
|
@@ -229907,7 +229907,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229907
229907
|
seats: number;
|
|
229908
229908
|
seatLimit: number;
|
|
229909
229909
|
planPriceId: string;
|
|
229910
|
-
planInterval: "daily" | "monthly" | "
|
|
229910
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
229911
229911
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
229912
229912
|
card?: {
|
|
229913
229913
|
name?: string | null | undefined;
|
|
@@ -229984,7 +229984,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
229984
229984
|
seats: number;
|
|
229985
229985
|
seatLimit: number;
|
|
229986
229986
|
planPriceId: string;
|
|
229987
|
-
planInterval: "daily" | "monthly" | "
|
|
229987
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
229988
229988
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
229989
229989
|
card?: {
|
|
229990
229990
|
name?: string | null | undefined;
|
|
@@ -230629,7 +230629,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230629
230629
|
stripeCustomerId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
230630
230630
|
product: z.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
|
|
230631
230631
|
planPriceId: z.ZodString;
|
|
230632
|
-
planInterval: z.ZodEnum<["daily", "monthly", "
|
|
230632
|
+
planInterval: z.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
230633
230633
|
currentPeriodStart: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
230634
230634
|
currentPeriodEnd: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
230635
230635
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -230641,7 +230641,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230641
230641
|
seats: number;
|
|
230642
230642
|
seatLimit: number;
|
|
230643
230643
|
planPriceId: string;
|
|
230644
|
-
planInterval: "daily" | "monthly" | "
|
|
230644
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
230645
230645
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
230646
230646
|
card?: {
|
|
230647
230647
|
name?: string | null | undefined;
|
|
@@ -230672,7 +230672,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230672
230672
|
seats: number;
|
|
230673
230673
|
seatLimit: number;
|
|
230674
230674
|
planPriceId: string;
|
|
230675
|
-
planInterval: "daily" | "monthly" | "
|
|
230675
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
230676
230676
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
230677
230677
|
card?: {
|
|
230678
230678
|
name?: string | null | undefined;
|
|
@@ -230765,7 +230765,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230765
230765
|
seats: number;
|
|
230766
230766
|
seatLimit: number;
|
|
230767
230767
|
planPriceId: string;
|
|
230768
|
-
planInterval: "daily" | "monthly" | "
|
|
230768
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
230769
230769
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
230770
230770
|
card?: {
|
|
230771
230771
|
name?: string | null | undefined;
|
|
@@ -230836,7 +230836,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230836
230836
|
seats: number;
|
|
230837
230837
|
seatLimit: number;
|
|
230838
230838
|
planPriceId: string;
|
|
230839
|
-
planInterval: "daily" | "monthly" | "
|
|
230839
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
230840
230840
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
230841
230841
|
card?: {
|
|
230842
230842
|
name?: string | null | undefined;
|
|
@@ -230913,7 +230913,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230913
230913
|
seats: number;
|
|
230914
230914
|
seatLimit: number;
|
|
230915
230915
|
planPriceId: string;
|
|
230916
|
-
planInterval: "daily" | "monthly" | "
|
|
230916
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
230917
230917
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
230918
230918
|
card?: {
|
|
230919
230919
|
name?: string | null | undefined;
|
|
@@ -230990,7 +230990,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
230990
230990
|
seats: number;
|
|
230991
230991
|
seatLimit: number;
|
|
230992
230992
|
planPriceId: string;
|
|
230993
|
-
planInterval: "daily" | "monthly" | "
|
|
230993
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
230994
230994
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
230995
230995
|
card?: {
|
|
230996
230996
|
name?: string | null | undefined;
|
|
@@ -231069,7 +231069,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
231069
231069
|
seats: number;
|
|
231070
231070
|
seatLimit: number;
|
|
231071
231071
|
planPriceId: string;
|
|
231072
|
-
planInterval: "daily" | "monthly" | "
|
|
231072
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
231073
231073
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
231074
231074
|
card?: {
|
|
231075
231075
|
name?: string | null | undefined;
|
|
@@ -231148,7 +231148,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
231148
231148
|
seats: number;
|
|
231149
231149
|
seatLimit: number;
|
|
231150
231150
|
planPriceId: string;
|
|
231151
|
-
planInterval: "daily" | "monthly" | "
|
|
231151
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
231152
231152
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
231153
231153
|
card?: {
|
|
231154
231154
|
name?: string | null | undefined;
|
|
@@ -231912,7 +231912,7 @@ declare const DTOProductPrice: z$1.ZodObject<{
|
|
|
231912
231912
|
/** @deprecated use `isActive` */
|
|
231913
231913
|
active: z$1.ZodBoolean;
|
|
231914
231914
|
amount: z$1.ZodNumber;
|
|
231915
|
-
interval: z$1.ZodEnum<["daily", "monthly", "
|
|
231915
|
+
interval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
231916
231916
|
isPricePerCreator: z$1.ZodBoolean;
|
|
231917
231917
|
isTrial: z$1.ZodBoolean;
|
|
231918
231918
|
isHidden: z$1.ZodBoolean;
|
|
@@ -231925,7 +231925,7 @@ declare const DTOProductPrice: z$1.ZodObject<{
|
|
|
231925
231925
|
stripeProductFeatures: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
231926
231926
|
stripeProductAdditionalFeatures: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
231927
231927
|
}, "strip", z$1.ZodTypeAny, {
|
|
231928
|
-
interval: "daily" | "monthly" | "
|
|
231928
|
+
interval: "daily" | "monthly" | "yearly";
|
|
231929
231929
|
seatType: "Full" | "Builder";
|
|
231930
231930
|
active: boolean;
|
|
231931
231931
|
isActive: boolean;
|
|
@@ -231941,7 +231941,7 @@ declare const DTOProductPrice: z$1.ZodObject<{
|
|
|
231941
231941
|
stripeProductFeatures?: string[] | undefined;
|
|
231942
231942
|
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
231943
231943
|
}, {
|
|
231944
|
-
interval: "daily" | "monthly" | "
|
|
231944
|
+
interval: "daily" | "monthly" | "yearly";
|
|
231945
231945
|
seatType: "Full" | "Builder";
|
|
231946
231946
|
active: boolean;
|
|
231947
231947
|
isActive: boolean;
|
|
@@ -231966,7 +231966,7 @@ declare const DTOProduct: z$1.ZodObject<{
|
|
|
231966
231966
|
/** @deprecated use `isActive` */
|
|
231967
231967
|
active: z$1.ZodBoolean;
|
|
231968
231968
|
amount: z$1.ZodNumber;
|
|
231969
|
-
interval: z$1.ZodEnum<["daily", "monthly", "
|
|
231969
|
+
interval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
231970
231970
|
isPricePerCreator: z$1.ZodBoolean;
|
|
231971
231971
|
isTrial: z$1.ZodBoolean;
|
|
231972
231972
|
isHidden: z$1.ZodBoolean;
|
|
@@ -231979,7 +231979,7 @@ declare const DTOProduct: z$1.ZodObject<{
|
|
|
231979
231979
|
stripeProductFeatures: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
231980
231980
|
stripeProductAdditionalFeatures: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
231981
231981
|
}, "strip", z$1.ZodTypeAny, {
|
|
231982
|
-
interval: "daily" | "monthly" | "
|
|
231982
|
+
interval: "daily" | "monthly" | "yearly";
|
|
231983
231983
|
seatType: "Full" | "Builder";
|
|
231984
231984
|
active: boolean;
|
|
231985
231985
|
isActive: boolean;
|
|
@@ -231995,7 +231995,7 @@ declare const DTOProduct: z$1.ZodObject<{
|
|
|
231995
231995
|
stripeProductFeatures?: string[] | undefined;
|
|
231996
231996
|
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
231997
231997
|
}, {
|
|
231998
|
-
interval: "daily" | "monthly" | "
|
|
231998
|
+
interval: "daily" | "monthly" | "yearly";
|
|
231999
231999
|
seatType: "Full" | "Builder";
|
|
232000
232000
|
active: boolean;
|
|
232001
232001
|
isActive: boolean;
|
|
@@ -232015,7 +232015,7 @@ declare const DTOProduct: z$1.ZodObject<{
|
|
|
232015
232015
|
code: "free" | "pro" | "team" | "company" | "enterprise";
|
|
232016
232016
|
allowedInviteRoles: ("Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor")[];
|
|
232017
232017
|
prices: {
|
|
232018
|
-
interval: "daily" | "monthly" | "
|
|
232018
|
+
interval: "daily" | "monthly" | "yearly";
|
|
232019
232019
|
seatType: "Full" | "Builder";
|
|
232020
232020
|
active: boolean;
|
|
232021
232021
|
isActive: boolean;
|
|
@@ -232035,7 +232035,7 @@ declare const DTOProduct: z$1.ZodObject<{
|
|
|
232035
232035
|
code: "free" | "pro" | "team" | "company" | "enterprise";
|
|
232036
232036
|
allowedInviteRoles: ("Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor")[];
|
|
232037
232037
|
prices: {
|
|
232038
|
-
interval: "daily" | "monthly" | "
|
|
232038
|
+
interval: "daily" | "monthly" | "yearly";
|
|
232039
232039
|
seatType: "Full" | "Builder";
|
|
232040
232040
|
active: boolean;
|
|
232041
232041
|
isActive: boolean;
|
|
@@ -232062,7 +232062,7 @@ declare const DTOAvailableProductListResponse: z$1.ZodObject<{
|
|
|
232062
232062
|
/** @deprecated use `isActive` */
|
|
232063
232063
|
active: z$1.ZodBoolean;
|
|
232064
232064
|
amount: z$1.ZodNumber;
|
|
232065
|
-
interval: z$1.ZodEnum<["daily", "monthly", "
|
|
232065
|
+
interval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
232066
232066
|
isPricePerCreator: z$1.ZodBoolean;
|
|
232067
232067
|
isTrial: z$1.ZodBoolean;
|
|
232068
232068
|
isHidden: z$1.ZodBoolean;
|
|
@@ -232075,7 +232075,7 @@ declare const DTOAvailableProductListResponse: z$1.ZodObject<{
|
|
|
232075
232075
|
stripeProductFeatures: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
232076
232076
|
stripeProductAdditionalFeatures: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
|
|
232077
232077
|
}, "strip", z$1.ZodTypeAny, {
|
|
232078
|
-
interval: "daily" | "monthly" | "
|
|
232078
|
+
interval: "daily" | "monthly" | "yearly";
|
|
232079
232079
|
seatType: "Full" | "Builder";
|
|
232080
232080
|
active: boolean;
|
|
232081
232081
|
isActive: boolean;
|
|
@@ -232091,7 +232091,7 @@ declare const DTOAvailableProductListResponse: z$1.ZodObject<{
|
|
|
232091
232091
|
stripeProductFeatures?: string[] | undefined;
|
|
232092
232092
|
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
232093
232093
|
}, {
|
|
232094
|
-
interval: "daily" | "monthly" | "
|
|
232094
|
+
interval: "daily" | "monthly" | "yearly";
|
|
232095
232095
|
seatType: "Full" | "Builder";
|
|
232096
232096
|
active: boolean;
|
|
232097
232097
|
isActive: boolean;
|
|
@@ -232111,7 +232111,7 @@ declare const DTOAvailableProductListResponse: z$1.ZodObject<{
|
|
|
232111
232111
|
code: "free" | "pro" | "team" | "company" | "enterprise";
|
|
232112
232112
|
allowedInviteRoles: ("Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor")[];
|
|
232113
232113
|
prices: {
|
|
232114
|
-
interval: "daily" | "monthly" | "
|
|
232114
|
+
interval: "daily" | "monthly" | "yearly";
|
|
232115
232115
|
seatType: "Full" | "Builder";
|
|
232116
232116
|
active: boolean;
|
|
232117
232117
|
isActive: boolean;
|
|
@@ -232131,7 +232131,7 @@ declare const DTOAvailableProductListResponse: z$1.ZodObject<{
|
|
|
232131
232131
|
code: "free" | "pro" | "team" | "company" | "enterprise";
|
|
232132
232132
|
allowedInviteRoles: ("Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor")[];
|
|
232133
232133
|
prices: {
|
|
232134
|
-
interval: "daily" | "monthly" | "
|
|
232134
|
+
interval: "daily" | "monthly" | "yearly";
|
|
232135
232135
|
seatType: "Full" | "Builder";
|
|
232136
232136
|
active: boolean;
|
|
232137
232137
|
isActive: boolean;
|
|
@@ -232153,7 +232153,7 @@ declare const DTOAvailableProductListResponse: z$1.ZodObject<{
|
|
|
232153
232153
|
code: "free" | "pro" | "team" | "company" | "enterprise";
|
|
232154
232154
|
allowedInviteRoles: ("Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor")[];
|
|
232155
232155
|
prices: {
|
|
232156
|
-
interval: "daily" | "monthly" | "
|
|
232156
|
+
interval: "daily" | "monthly" | "yearly";
|
|
232157
232157
|
seatType: "Full" | "Builder";
|
|
232158
232158
|
active: boolean;
|
|
232159
232159
|
isActive: boolean;
|
|
@@ -232175,7 +232175,7 @@ declare const DTOAvailableProductListResponse: z$1.ZodObject<{
|
|
|
232175
232175
|
code: "free" | "pro" | "team" | "company" | "enterprise";
|
|
232176
232176
|
allowedInviteRoles: ("Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor")[];
|
|
232177
232177
|
prices: {
|
|
232178
|
-
interval: "daily" | "monthly" | "
|
|
232178
|
+
interval: "daily" | "monthly" | "yearly";
|
|
232179
232179
|
seatType: "Full" | "Builder";
|
|
232180
232180
|
active: boolean;
|
|
232181
232181
|
isActive: boolean;
|
|
@@ -232990,7 +232990,7 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
232990
232990
|
* @deprecated use `fullSeatPriceId` or `builderSeatPriceId`
|
|
232991
232991
|
*/
|
|
232992
232992
|
planPriceId: z$1.ZodString;
|
|
232993
|
-
planInterval: z$1.ZodEnum<["daily", "monthly", "
|
|
232993
|
+
planInterval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
232994
232994
|
isPricePerCreator: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
232995
232995
|
legacyVersion: z$1.ZodOptional<z$1.ZodString>;
|
|
232996
232996
|
seats: z$1.ZodNumber;
|
|
@@ -233038,7 +233038,7 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
233038
233038
|
isTrial: boolean;
|
|
233039
233039
|
product: "free" | "pro" | "team" | "company" | "enterprise";
|
|
233040
233040
|
planPriceId: string;
|
|
233041
|
-
planInterval: "daily" | "monthly" | "
|
|
233041
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
233042
233042
|
seats: number;
|
|
233043
233043
|
seatLimit: number;
|
|
233044
233044
|
fullSeatLimit: number;
|
|
@@ -233216,7 +233216,7 @@ declare const DTOSubscription: z$1.ZodObject<{
|
|
|
233216
233216
|
isTrial: boolean;
|
|
233217
233217
|
product: "free" | "pro" | "team" | "company" | "enterprise";
|
|
233218
233218
|
planPriceId: string;
|
|
233219
|
-
planInterval: "daily" | "monthly" | "
|
|
233219
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
233220
233220
|
seats: number;
|
|
233221
233221
|
seatLimit: number;
|
|
233222
233222
|
fullSeatLimit: number;
|
|
@@ -234041,7 +234041,7 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
234041
234041
|
* @deprecated use `fullSeatPriceId` or `builderSeatPriceId`
|
|
234042
234042
|
*/
|
|
234043
234043
|
planPriceId: z$1.ZodString;
|
|
234044
|
-
planInterval: z$1.ZodEnum<["daily", "monthly", "
|
|
234044
|
+
planInterval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
234045
234045
|
isPricePerCreator: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
234046
234046
|
legacyVersion: z$1.ZodOptional<z$1.ZodString>;
|
|
234047
234047
|
seats: z$1.ZodNumber;
|
|
@@ -234089,7 +234089,7 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
234089
234089
|
isTrial: boolean;
|
|
234090
234090
|
product: "free" | "pro" | "team" | "company" | "enterprise";
|
|
234091
234091
|
planPriceId: string;
|
|
234092
|
-
planInterval: "daily" | "monthly" | "
|
|
234092
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
234093
234093
|
seats: number;
|
|
234094
234094
|
seatLimit: number;
|
|
234095
234095
|
fullSeatLimit: number;
|
|
@@ -234267,7 +234267,7 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
234267
234267
|
isTrial: boolean;
|
|
234268
234268
|
product: "free" | "pro" | "team" | "company" | "enterprise";
|
|
234269
234269
|
planPriceId: string;
|
|
234270
|
-
planInterval: "daily" | "monthly" | "
|
|
234270
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
234271
234271
|
seats: number;
|
|
234272
234272
|
seatLimit: number;
|
|
234273
234273
|
fullSeatLimit: number;
|
|
@@ -234600,7 +234600,7 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
234600
234600
|
isTrial: boolean;
|
|
234601
234601
|
product: "free" | "pro" | "team" | "company" | "enterprise";
|
|
234602
234602
|
planPriceId: string;
|
|
234603
|
-
planInterval: "daily" | "monthly" | "
|
|
234603
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
234604
234604
|
seats: number;
|
|
234605
234605
|
seatLimit: number;
|
|
234606
234606
|
fullSeatLimit: number;
|
|
@@ -234811,7 +234811,7 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
|
|
|
234811
234811
|
isTrial: boolean;
|
|
234812
234812
|
product: "free" | "pro" | "team" | "company" | "enterprise";
|
|
234813
234813
|
planPriceId: string;
|
|
234814
|
-
planInterval: "daily" | "monthly" | "
|
|
234814
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
234815
234815
|
seats: number;
|
|
234816
234816
|
seatLimit: number;
|
|
234817
234817
|
fullSeatLimit: number;
|
|
@@ -235027,6 +235027,102 @@ declare const DTOCreditsPrices: z$1.ZodObject<{
|
|
|
235027
235027
|
purchaseTopUpCreditsToCentsConversionRate: number;
|
|
235028
235028
|
}>;
|
|
235029
235029
|
type DTOCreditsPrices = z$1.infer<typeof DTOCreditsPrices>;
|
|
235030
|
+
declare const DTOSubscriptionUpdatePreview: z$1.ZodObject<{
|
|
235031
|
+
proration: z$1.ZodObject<{
|
|
235032
|
+
amount: z$1.ZodNumber;
|
|
235033
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
235034
|
+
amount: number;
|
|
235035
|
+
}, {
|
|
235036
|
+
amount: number;
|
|
235037
|
+
}>;
|
|
235038
|
+
nextBillingCycle: z$1.ZodObject<{
|
|
235039
|
+
amount: z$1.ZodNumber;
|
|
235040
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
235041
|
+
amount: number;
|
|
235042
|
+
}, {
|
|
235043
|
+
amount: number;
|
|
235044
|
+
}>;
|
|
235045
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
235046
|
+
proration: {
|
|
235047
|
+
amount: number;
|
|
235048
|
+
};
|
|
235049
|
+
nextBillingCycle: {
|
|
235050
|
+
amount: number;
|
|
235051
|
+
};
|
|
235052
|
+
}, {
|
|
235053
|
+
proration: {
|
|
235054
|
+
amount: number;
|
|
235055
|
+
};
|
|
235056
|
+
nextBillingCycle: {
|
|
235057
|
+
amount: number;
|
|
235058
|
+
};
|
|
235059
|
+
}>;
|
|
235060
|
+
type DTOSubscriptionUpdatePreview = z$1.infer<typeof DTOSubscriptionUpdatePreview>;
|
|
235061
|
+
declare const DTOSubscriptionUpdatePreviewResponse: z$1.ZodObject<{
|
|
235062
|
+
preview: z$1.ZodObject<{
|
|
235063
|
+
proration: z$1.ZodObject<{
|
|
235064
|
+
amount: z$1.ZodNumber;
|
|
235065
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
235066
|
+
amount: number;
|
|
235067
|
+
}, {
|
|
235068
|
+
amount: number;
|
|
235069
|
+
}>;
|
|
235070
|
+
nextBillingCycle: z$1.ZodObject<{
|
|
235071
|
+
amount: z$1.ZodNumber;
|
|
235072
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
235073
|
+
amount: number;
|
|
235074
|
+
}, {
|
|
235075
|
+
amount: number;
|
|
235076
|
+
}>;
|
|
235077
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
235078
|
+
proration: {
|
|
235079
|
+
amount: number;
|
|
235080
|
+
};
|
|
235081
|
+
nextBillingCycle: {
|
|
235082
|
+
amount: number;
|
|
235083
|
+
};
|
|
235084
|
+
}, {
|
|
235085
|
+
proration: {
|
|
235086
|
+
amount: number;
|
|
235087
|
+
};
|
|
235088
|
+
nextBillingCycle: {
|
|
235089
|
+
amount: number;
|
|
235090
|
+
};
|
|
235091
|
+
}>;
|
|
235092
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
235093
|
+
preview: {
|
|
235094
|
+
proration: {
|
|
235095
|
+
amount: number;
|
|
235096
|
+
};
|
|
235097
|
+
nextBillingCycle: {
|
|
235098
|
+
amount: number;
|
|
235099
|
+
};
|
|
235100
|
+
};
|
|
235101
|
+
}, {
|
|
235102
|
+
preview: {
|
|
235103
|
+
proration: {
|
|
235104
|
+
amount: number;
|
|
235105
|
+
};
|
|
235106
|
+
nextBillingCycle: {
|
|
235107
|
+
amount: number;
|
|
235108
|
+
};
|
|
235109
|
+
};
|
|
235110
|
+
}>;
|
|
235111
|
+
type DTOSubscriptionUpdatePreviewResponse = z$1.infer<typeof DTOSubscriptionUpdatePreviewResponse>;
|
|
235112
|
+
declare const DTOSubscriptionUpdateInput: z$1.ZodObject<{
|
|
235113
|
+
additionalCredits: z$1.ZodNumber;
|
|
235114
|
+
builderSeats: z$1.ZodNumber;
|
|
235115
|
+
fullSeats: z$1.ZodNumber;
|
|
235116
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
235117
|
+
fullSeats: number;
|
|
235118
|
+
builderSeats: number;
|
|
235119
|
+
additionalCredits: number;
|
|
235120
|
+
}, {
|
|
235121
|
+
fullSeats: number;
|
|
235122
|
+
builderSeats: number;
|
|
235123
|
+
additionalCredits: number;
|
|
235124
|
+
}>;
|
|
235125
|
+
type DTOSubscriptionUpdateInput = z$1.infer<typeof DTOSubscriptionUpdateInput>;
|
|
235030
235126
|
|
|
235031
235127
|
declare const DTOTransferOwnershipPayload: z.ZodObject<{
|
|
235032
235128
|
newOwnerId: z.ZodString;
|
|
@@ -235416,7 +235512,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235416
235512
|
stripeCustomerId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235417
235513
|
product: z.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
|
|
235418
235514
|
planPriceId: z.ZodString;
|
|
235419
|
-
planInterval: z.ZodEnum<["daily", "monthly", "
|
|
235515
|
+
planInterval: z.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
235420
235516
|
currentPeriodStart: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235421
235517
|
currentPeriodEnd: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235422
235518
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -235428,7 +235524,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235428
235524
|
seats: number;
|
|
235429
235525
|
seatLimit: number;
|
|
235430
235526
|
planPriceId: string;
|
|
235431
|
-
planInterval: "daily" | "monthly" | "
|
|
235527
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
235432
235528
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
235433
235529
|
card?: {
|
|
235434
235530
|
name?: string | null | undefined;
|
|
@@ -235459,7 +235555,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235459
235555
|
seats: number;
|
|
235460
235556
|
seatLimit: number;
|
|
235461
235557
|
planPriceId: string;
|
|
235462
|
-
planInterval: "daily" | "monthly" | "
|
|
235558
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
235463
235559
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
235464
235560
|
card?: {
|
|
235465
235561
|
name?: string | null | undefined;
|
|
@@ -235552,7 +235648,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235552
235648
|
seats: number;
|
|
235553
235649
|
seatLimit: number;
|
|
235554
235650
|
planPriceId: string;
|
|
235555
|
-
planInterval: "daily" | "monthly" | "
|
|
235651
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
235556
235652
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
235557
235653
|
card?: {
|
|
235558
235654
|
name?: string | null | undefined;
|
|
@@ -235623,7 +235719,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
235623
235719
|
seats: number;
|
|
235624
235720
|
seatLimit: number;
|
|
235625
235721
|
planPriceId: string;
|
|
235626
|
-
planInterval: "daily" | "monthly" | "
|
|
235722
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
235627
235723
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
235628
235724
|
card?: {
|
|
235629
235725
|
name?: string | null | undefined;
|
|
@@ -235832,7 +235928,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
235832
235928
|
stripeCustomerId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235833
235929
|
product: z.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
|
|
235834
235930
|
planPriceId: z.ZodString;
|
|
235835
|
-
planInterval: z.ZodEnum<["daily", "monthly", "
|
|
235931
|
+
planInterval: z.ZodEnum<["daily", "monthly", "yearly"]>;
|
|
235836
235932
|
currentPeriodStart: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235837
235933
|
currentPeriodEnd: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
235838
235934
|
cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -235844,7 +235940,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
235844
235940
|
seats: number;
|
|
235845
235941
|
seatLimit: number;
|
|
235846
235942
|
planPriceId: string;
|
|
235847
|
-
planInterval: "daily" | "monthly" | "
|
|
235943
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
235848
235944
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
235849
235945
|
card?: {
|
|
235850
235946
|
name?: string | null | undefined;
|
|
@@ -235875,7 +235971,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
235875
235971
|
seats: number;
|
|
235876
235972
|
seatLimit: number;
|
|
235877
235973
|
planPriceId: string;
|
|
235878
|
-
planInterval: "daily" | "monthly" | "
|
|
235974
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
235879
235975
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
235880
235976
|
card?: {
|
|
235881
235977
|
name?: string | null | undefined;
|
|
@@ -235968,7 +236064,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
235968
236064
|
seats: number;
|
|
235969
236065
|
seatLimit: number;
|
|
235970
236066
|
planPriceId: string;
|
|
235971
|
-
planInterval: "daily" | "monthly" | "
|
|
236067
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
235972
236068
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
235973
236069
|
card?: {
|
|
235974
236070
|
name?: string | null | undefined;
|
|
@@ -236039,7 +236135,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
236039
236135
|
seats: number;
|
|
236040
236136
|
seatLimit: number;
|
|
236041
236137
|
planPriceId: string;
|
|
236042
|
-
planInterval: "daily" | "monthly" | "
|
|
236138
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
236043
236139
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
236044
236140
|
card?: {
|
|
236045
236141
|
name?: string | null | undefined;
|
|
@@ -236112,7 +236208,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
236112
236208
|
seats: number;
|
|
236113
236209
|
seatLimit: number;
|
|
236114
236210
|
planPriceId: string;
|
|
236115
|
-
planInterval: "daily" | "monthly" | "
|
|
236211
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
236116
236212
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
236117
236213
|
card?: {
|
|
236118
236214
|
name?: string | null | undefined;
|
|
@@ -236185,7 +236281,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
236185
236281
|
seats: number;
|
|
236186
236282
|
seatLimit: number;
|
|
236187
236283
|
planPriceId: string;
|
|
236188
|
-
planInterval: "daily" | "monthly" | "
|
|
236284
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
236189
236285
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
|
|
236190
236286
|
card?: {
|
|
236191
236287
|
name?: string | null | undefined;
|
|
@@ -246874,7 +246970,7 @@ declare class DesignSystemsEndpoint {
|
|
|
246874
246970
|
seats: number;
|
|
246875
246971
|
seatLimit: number;
|
|
246876
246972
|
planPriceId: string;
|
|
246877
|
-
planInterval: "daily" | "monthly" | "
|
|
246973
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
246878
246974
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
246879
246975
|
card?: {
|
|
246880
246976
|
name?: string | null | undefined;
|
|
@@ -253329,7 +253425,7 @@ declare class WorkspaceInvitationsEndpoint {
|
|
|
253329
253425
|
seats: number;
|
|
253330
253426
|
seatLimit: number;
|
|
253331
253427
|
planPriceId: string;
|
|
253332
|
-
planInterval: "daily" | "monthly" | "
|
|
253428
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
253333
253429
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
253334
253430
|
card?: {
|
|
253335
253431
|
name?: string | null | undefined;
|
|
@@ -253466,7 +253562,7 @@ declare class WorkspaceMembersEndpoint {
|
|
|
253466
253562
|
seats: number;
|
|
253467
253563
|
seatLimit: number;
|
|
253468
253564
|
planPriceId: string;
|
|
253469
|
-
planInterval: "daily" | "monthly" | "
|
|
253565
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
253470
253566
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
253471
253567
|
card?: {
|
|
253472
253568
|
name?: string | null | undefined;
|
|
@@ -253541,7 +253637,7 @@ declare class WorkspaceMembersEndpoint {
|
|
|
253541
253637
|
seats: number;
|
|
253542
253638
|
seatLimit: number;
|
|
253543
253639
|
planPriceId: string;
|
|
253544
|
-
planInterval: "daily" | "monthly" | "
|
|
253640
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
253545
253641
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
253546
253642
|
card?: {
|
|
253547
253643
|
name?: string | null | undefined;
|
|
@@ -253611,6 +253707,234 @@ declare class WorkspaceNpmRegistryEndpoint {
|
|
|
253611
253707
|
}>;
|
|
253612
253708
|
}
|
|
253613
253709
|
|
|
253710
|
+
declare class WorkspaceSubscriptionEndpoint {
|
|
253711
|
+
private readonly requestExecutor;
|
|
253712
|
+
constructor(requestExecutor: RequestExecutor);
|
|
253713
|
+
get(workspaceId: string): Promise<{
|
|
253714
|
+
subscription: {
|
|
253715
|
+
fullSeats: number;
|
|
253716
|
+
builderSeats: number;
|
|
253717
|
+
amount: number;
|
|
253718
|
+
isTrial: boolean;
|
|
253719
|
+
product: "free" | "pro" | "team" | "company" | "enterprise";
|
|
253720
|
+
planPriceId: string;
|
|
253721
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
253722
|
+
seats: number;
|
|
253723
|
+
seatLimit: number;
|
|
253724
|
+
fullSeatLimit: number;
|
|
253725
|
+
builderSeatLimit: number;
|
|
253726
|
+
fullSeatPriceId: string;
|
|
253727
|
+
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
253728
|
+
isPricePerCreator?: boolean | undefined;
|
|
253729
|
+
legacyVersion?: string | undefined;
|
|
253730
|
+
stripeProductDescription?: string | undefined;
|
|
253731
|
+
stripeProductFeatures?: string[] | undefined;
|
|
253732
|
+
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
253733
|
+
stripeSubscriptionId?: string | undefined;
|
|
253734
|
+
stripeCustomerId?: string | undefined;
|
|
253735
|
+
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
253736
|
+
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
253737
|
+
featuresSummary?: {
|
|
253738
|
+
analytics: {
|
|
253739
|
+
errorMessage: string;
|
|
253740
|
+
errorReason: string;
|
|
253741
|
+
max?: number | undefined;
|
|
253742
|
+
};
|
|
253743
|
+
themes: {
|
|
253744
|
+
errorMessage: string;
|
|
253745
|
+
errorReason: string;
|
|
253746
|
+
max?: number | undefined;
|
|
253747
|
+
};
|
|
253748
|
+
designSystems: {
|
|
253749
|
+
errorMessage: string;
|
|
253750
|
+
errorReason: string;
|
|
253751
|
+
max?: number | undefined;
|
|
253752
|
+
};
|
|
253753
|
+
designSystemSources: {
|
|
253754
|
+
errorMessage: string;
|
|
253755
|
+
errorReason: string;
|
|
253756
|
+
noImportJobsErrorMessage: string;
|
|
253757
|
+
noImportJobsErrorReason: string;
|
|
253758
|
+
max?: number | undefined;
|
|
253759
|
+
};
|
|
253760
|
+
designSystemVersions: {
|
|
253761
|
+
errorMessage: string;
|
|
253762
|
+
errorReason: string;
|
|
253763
|
+
max?: number | undefined;
|
|
253764
|
+
};
|
|
253765
|
+
brands: {
|
|
253766
|
+
errorMessage: string;
|
|
253767
|
+
errorReason: string;
|
|
253768
|
+
max?: number | undefined;
|
|
253769
|
+
};
|
|
253770
|
+
codegenSchedules: {
|
|
253771
|
+
errorMessage: string;
|
|
253772
|
+
errorReason: string;
|
|
253773
|
+
max?: number | undefined;
|
|
253774
|
+
};
|
|
253775
|
+
publicDocumentation: {
|
|
253776
|
+
errorMessage: string;
|
|
253777
|
+
errorReason: string;
|
|
253778
|
+
enabled: boolean;
|
|
253779
|
+
};
|
|
253780
|
+
customDocumentationUrl: {
|
|
253781
|
+
errorMessage: string;
|
|
253782
|
+
errorReason: string;
|
|
253783
|
+
enabled: boolean;
|
|
253784
|
+
};
|
|
253785
|
+
customDocumentationViewButton: {
|
|
253786
|
+
errorMessage: string;
|
|
253787
|
+
errorReason: string;
|
|
253788
|
+
enabled: boolean;
|
|
253789
|
+
};
|
|
253790
|
+
designSystemSourceAutoImport: {
|
|
253791
|
+
errorMessage: string;
|
|
253792
|
+
errorReason: string;
|
|
253793
|
+
enabled: boolean;
|
|
253794
|
+
};
|
|
253795
|
+
designSystemSlug: {
|
|
253796
|
+
errorMessage: string;
|
|
253797
|
+
errorReason: string;
|
|
253798
|
+
enabled: boolean;
|
|
253799
|
+
};
|
|
253800
|
+
ipWhitelisting: {
|
|
253801
|
+
errorMessage: string;
|
|
253802
|
+
errorReason: string;
|
|
253803
|
+
enabled: boolean;
|
|
253804
|
+
};
|
|
253805
|
+
npmRegistry: {
|
|
253806
|
+
errorMessage: string;
|
|
253807
|
+
errorReason: string;
|
|
253808
|
+
enabled: boolean;
|
|
253809
|
+
};
|
|
253810
|
+
sso: {
|
|
253811
|
+
errorMessage: string;
|
|
253812
|
+
errorReason: string;
|
|
253813
|
+
enabled: boolean;
|
|
253814
|
+
};
|
|
253815
|
+
workspacePaidSeats: {
|
|
253816
|
+
errorMessage: string;
|
|
253817
|
+
errorReason: string;
|
|
253818
|
+
max?: number | undefined;
|
|
253819
|
+
};
|
|
253820
|
+
workspaceViewers: {
|
|
253821
|
+
errorMessage: string;
|
|
253822
|
+
errorReason: string;
|
|
253823
|
+
max?: number | undefined;
|
|
253824
|
+
};
|
|
253825
|
+
customDocumentationExporter: {
|
|
253826
|
+
errorMessage: string;
|
|
253827
|
+
errorReason: string;
|
|
253828
|
+
enabled: boolean;
|
|
253829
|
+
};
|
|
253830
|
+
protectedPages: {
|
|
253831
|
+
errorMessage: string;
|
|
253832
|
+
errorReason: string;
|
|
253833
|
+
enabled: boolean;
|
|
253834
|
+
};
|
|
253835
|
+
approvals: {
|
|
253836
|
+
errorMessage: string;
|
|
253837
|
+
errorReason: string;
|
|
253838
|
+
enabled: boolean;
|
|
253839
|
+
};
|
|
253840
|
+
selectivePublishing: {
|
|
253841
|
+
errorMessage: string;
|
|
253842
|
+
errorReason: string;
|
|
253843
|
+
enabled: boolean;
|
|
253844
|
+
};
|
|
253845
|
+
designSystemAccessModes: {
|
|
253846
|
+
errorMessage: string;
|
|
253847
|
+
errorReason: string;
|
|
253848
|
+
enabled: boolean;
|
|
253849
|
+
};
|
|
253850
|
+
designSystemRoles: {
|
|
253851
|
+
errorMessage: string;
|
|
253852
|
+
errorReason: string;
|
|
253853
|
+
enabled: boolean;
|
|
253854
|
+
};
|
|
253855
|
+
documentationPageRedirects: {
|
|
253856
|
+
errorMessage: string;
|
|
253857
|
+
errorReason: string;
|
|
253858
|
+
enabled: boolean;
|
|
253859
|
+
};
|
|
253860
|
+
designSystemFileSize: {
|
|
253861
|
+
errorMessage: string;
|
|
253862
|
+
errorReason: string;
|
|
253863
|
+
max?: number | undefined;
|
|
253864
|
+
};
|
|
253865
|
+
forgeActiveProjects: {
|
|
253866
|
+
errorMessage: string;
|
|
253867
|
+
errorReason: string;
|
|
253868
|
+
max?: number | undefined;
|
|
253869
|
+
};
|
|
253870
|
+
forgeProjectFileSize: {
|
|
253871
|
+
errorMessage: string;
|
|
253872
|
+
errorReason: string;
|
|
253873
|
+
max?: number | undefined;
|
|
253874
|
+
};
|
|
253875
|
+
} | undefined;
|
|
253876
|
+
stripeSubscriptionMainItemId?: string | undefined;
|
|
253877
|
+
currentPeriodStart?: string | undefined;
|
|
253878
|
+
currentPeriodEnd?: string | undefined;
|
|
253879
|
+
subscriptionStatusUpdatedAt?: string | undefined;
|
|
253880
|
+
cancelAt?: string | null | undefined;
|
|
253881
|
+
card?: {
|
|
253882
|
+
name?: string | null | undefined;
|
|
253883
|
+
cardId?: string | null | undefined;
|
|
253884
|
+
last4?: string | null | undefined;
|
|
253885
|
+
expiryMonth?: string | null | undefined;
|
|
253886
|
+
expiryYear?: string | null | undefined;
|
|
253887
|
+
brand?: string | null | undefined;
|
|
253888
|
+
} | undefined;
|
|
253889
|
+
billingType?: "Auto" | "Invoice" | undefined;
|
|
253890
|
+
daysUntilDue?: number | undefined;
|
|
253891
|
+
builderSeatPriceId?: string | undefined;
|
|
253892
|
+
};
|
|
253893
|
+
creditsPrices: {
|
|
253894
|
+
creditsToCentsConversionRate: number;
|
|
253895
|
+
purchaseTopUpCreditsToCentsConversionRate: number;
|
|
253896
|
+
};
|
|
253897
|
+
creditBalance?: {
|
|
253898
|
+
free?: {
|
|
253899
|
+
credits: {
|
|
253900
|
+
total: number;
|
|
253901
|
+
used: number;
|
|
253902
|
+
balance: number;
|
|
253903
|
+
resetAt?: string | undefined;
|
|
253904
|
+
};
|
|
253905
|
+
spendingLimit: {
|
|
253906
|
+
total: number;
|
|
253907
|
+
used: number;
|
|
253908
|
+
balance: number;
|
|
253909
|
+
resetAt?: string | undefined;
|
|
253910
|
+
};
|
|
253911
|
+
} | undefined;
|
|
253912
|
+
paidTopUp?: {
|
|
253913
|
+
total: number;
|
|
253914
|
+
used: number;
|
|
253915
|
+
balance: number;
|
|
253916
|
+
} | undefined;
|
|
253917
|
+
paidRecurring?: {
|
|
253918
|
+
total: number;
|
|
253919
|
+
used: number;
|
|
253920
|
+
balance: number;
|
|
253921
|
+
resetAt?: string | undefined;
|
|
253922
|
+
} | undefined;
|
|
253923
|
+
} | undefined;
|
|
253924
|
+
}>;
|
|
253925
|
+
update(workspaceId: string, body: DTOSubscriptionUpdateInput): Promise<any>;
|
|
253926
|
+
previewUpdate(workspaceId: string, body: DTOSubscriptionUpdateInput): Promise<{
|
|
253927
|
+
preview: {
|
|
253928
|
+
proration: {
|
|
253929
|
+
amount: number;
|
|
253930
|
+
};
|
|
253931
|
+
nextBillingCycle: {
|
|
253932
|
+
amount: number;
|
|
253933
|
+
};
|
|
253934
|
+
};
|
|
253935
|
+
}>;
|
|
253936
|
+
}
|
|
253937
|
+
|
|
253614
253938
|
declare class WorkspacesEndpoint {
|
|
253615
253939
|
private readonly requestExecutor;
|
|
253616
253940
|
members: WorkspaceMembersEndpoint;
|
|
@@ -253618,6 +253942,7 @@ declare class WorkspacesEndpoint {
|
|
|
253618
253942
|
npmRegistry: WorkspaceNpmRegistryEndpoint;
|
|
253619
253943
|
chatThreads: WorkspaceChatThreadsEndpoint;
|
|
253620
253944
|
integrations: WorkspaceIntegrationsEndpoint;
|
|
253945
|
+
subscription: WorkspaceSubscriptionEndpoint;
|
|
253621
253946
|
constructor(requestExecutor: RequestExecutor);
|
|
253622
253947
|
create(body: DTOWorkspaceCreateInput): Promise<{
|
|
253623
253948
|
workspace: {
|
|
@@ -253649,7 +253974,7 @@ declare class WorkspacesEndpoint {
|
|
|
253649
253974
|
seats: number;
|
|
253650
253975
|
seatLimit: number;
|
|
253651
253976
|
planPriceId: string;
|
|
253652
|
-
planInterval: "daily" | "monthly" | "
|
|
253977
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
253653
253978
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
253654
253979
|
card?: {
|
|
253655
253980
|
name?: string | null | undefined;
|
|
@@ -253724,7 +254049,7 @@ declare class WorkspacesEndpoint {
|
|
|
253724
254049
|
seats: number;
|
|
253725
254050
|
seatLimit: number;
|
|
253726
254051
|
planPriceId: string;
|
|
253727
|
-
planInterval: "daily" | "monthly" | "
|
|
254052
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
253728
254053
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
253729
254054
|
card?: {
|
|
253730
254055
|
name?: string | null | undefined;
|
|
@@ -253803,7 +254128,7 @@ declare class WorkspacesEndpoint {
|
|
|
253803
254128
|
seats: number;
|
|
253804
254129
|
seatLimit: number;
|
|
253805
254130
|
planPriceId: string;
|
|
253806
|
-
planInterval: "daily" | "monthly" | "
|
|
254131
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
253807
254132
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
253808
254133
|
card?: {
|
|
253809
254134
|
name?: string | null | undefined;
|
|
@@ -253848,7 +254173,6 @@ declare class WorkspacesEndpoint {
|
|
|
253848
254173
|
};
|
|
253849
254174
|
}>;
|
|
253850
254175
|
delete(workspaceId: string): Promise<any>;
|
|
253851
|
-
subscription(workspaceId: string): Promise<any>;
|
|
253852
254176
|
getPortalSettings(workspaceId: string): Promise<{
|
|
253853
254177
|
portalSettings: {
|
|
253854
254178
|
id: string;
|
|
@@ -253935,7 +254259,7 @@ declare class WorkspacesEndpoint {
|
|
|
253935
254259
|
seats: number;
|
|
253936
254260
|
seatLimit: number;
|
|
253937
254261
|
planPriceId: string;
|
|
253938
|
-
planInterval: "daily" | "monthly" | "
|
|
254262
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
253939
254263
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
253940
254264
|
card?: {
|
|
253941
254265
|
name?: string | null | undefined;
|
|
@@ -254229,7 +254553,7 @@ declare class UsersEndpoint {
|
|
|
254229
254553
|
seats: number;
|
|
254230
254554
|
seatLimit: number;
|
|
254231
254555
|
planPriceId: string;
|
|
254232
|
-
planInterval: "daily" | "monthly" | "
|
|
254556
|
+
planInterval: "daily" | "monthly" | "yearly";
|
|
254233
254557
|
status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
|
|
254234
254558
|
card?: {
|
|
254235
254559
|
name?: string | null | undefined;
|
|
@@ -257144,4 +257468,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
257144
257468
|
reason: ValidationErrorReason | undefined;
|
|
257145
257469
|
};
|
|
257146
257470
|
|
|
257147
|
-
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, 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 };
|
|
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 };
|