@supernova-studio/client 1.44.3 → 1.44.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -357,10 +357,11 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
357
357
  seatLimit: z.ZodNumber;
358
358
  monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
359
359
  monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
360
- builderSeatLimit: z.ZodOptional<z.ZodNumber>;
361
- fullSeatLimit: z.ZodOptional<z.ZodNumber>;
362
- builderSeats: z.ZodOptional<z.ZodNumber>;
363
- fullSeats: z.ZodOptional<z.ZodNumber>;
360
+ builderSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
361
+ fullSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
362
+ additionalCredits: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
363
+ builderSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
364
+ fullSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
364
365
  status: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
365
366
  subscriptionStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete", z.ZodTypeDef, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete">>>, NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined>;
366
367
  internalStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
@@ -368,19 +369,20 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
368
369
  stripeCustomerId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
369
370
  product: z.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
370
371
  planPriceId: z.ZodString;
371
- planInterval: z.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
372
+ planInterval: z.ZodEnum<["daily", "monthly", "yearly"]>;
372
373
  currentPeriodStart: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
373
374
  currentPeriodEnd: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
374
375
  cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
375
376
  fullSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
376
377
  builderSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
378
+ additionalCreditsPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
377
379
  subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
378
380
  }, "strip", z.ZodTypeAny, {
379
381
  product: "company" | "enterprise" | "free" | "team" | "pro";
380
382
  seats: number;
381
383
  seatLimit: number;
382
384
  planPriceId: string;
383
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
385
+ planInterval: "daily" | "monthly" | "yearly";
384
386
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
385
387
  card?: {
386
388
  name?: string | null | undefined;
@@ -394,6 +396,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
394
396
  monthlyCreditGrantAmount?: number | undefined;
395
397
  builderSeatLimit?: number | undefined;
396
398
  fullSeatLimit?: number | undefined;
399
+ additionalCredits?: number | undefined;
397
400
  builderSeats?: number | undefined;
398
401
  fullSeats?: number | undefined;
399
402
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -405,13 +408,14 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
405
408
  cancelAt?: string | undefined;
406
409
  fullSeatPriceId?: string | undefined;
407
410
  builderSeatPriceId?: string | undefined;
411
+ additionalCreditsPriceId?: string | undefined;
408
412
  subscriptionStatusUpdatedAt?: string | undefined;
409
413
  }, {
410
414
  product: "company" | "enterprise" | "free" | "team" | "pro";
411
415
  seats: number;
412
416
  seatLimit: number;
413
417
  planPriceId: string;
414
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
418
+ planInterval: "daily" | "monthly" | "yearly";
415
419
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
416
420
  card?: {
417
421
  name?: string | null | undefined;
@@ -423,10 +427,11 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
423
427
  } | null | undefined;
424
428
  monthlyCreditGrantAnchor?: string | null | undefined;
425
429
  monthlyCreditGrantAmount?: number | null | undefined;
426
- builderSeatLimit?: number | undefined;
427
- fullSeatLimit?: number | undefined;
428
- builderSeats?: number | undefined;
429
- fullSeats?: number | undefined;
430
+ builderSeatLimit?: number | null | undefined;
431
+ fullSeatLimit?: number | null | undefined;
432
+ additionalCredits?: number | null | undefined;
433
+ builderSeats?: number | null | undefined;
434
+ fullSeats?: number | null | undefined;
430
435
  subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
431
436
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
432
437
  stripeSubscriptionId?: string | null | undefined;
@@ -436,6 +441,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
436
441
  cancelAt?: string | null | undefined;
437
442
  fullSeatPriceId?: string | null | undefined;
438
443
  builderSeatPriceId?: string | null | undefined;
444
+ additionalCreditsPriceId?: string | null | undefined;
439
445
  subscriptionStatusUpdatedAt?: string | null | undefined;
440
446
  }>;
441
447
  npmRegistry: z.ZodOptional<z.ZodObject<{
@@ -504,7 +510,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
504
510
  seats: number;
505
511
  seatLimit: number;
506
512
  planPriceId: string;
507
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
513
+ planInterval: "daily" | "monthly" | "yearly";
508
514
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
509
515
  card?: {
510
516
  name?: string | null | undefined;
@@ -518,6 +524,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
518
524
  monthlyCreditGrantAmount?: number | undefined;
519
525
  builderSeatLimit?: number | undefined;
520
526
  fullSeatLimit?: number | undefined;
527
+ additionalCredits?: number | undefined;
521
528
  builderSeats?: number | undefined;
522
529
  fullSeats?: number | undefined;
523
530
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -529,6 +536,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
529
536
  cancelAt?: string | undefined;
530
537
  fullSeatPriceId?: string | undefined;
531
538
  builderSeatPriceId?: string | undefined;
539
+ additionalCreditsPriceId?: string | undefined;
532
540
  subscriptionStatusUpdatedAt?: string | undefined;
533
541
  };
534
542
  aiFeaturesEnabled: boolean;
@@ -575,7 +583,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
575
583
  seats: number;
576
584
  seatLimit: number;
577
585
  planPriceId: string;
578
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
586
+ planInterval: "daily" | "monthly" | "yearly";
579
587
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
580
588
  card?: {
581
589
  name?: string | null | undefined;
@@ -587,10 +595,11 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
587
595
  } | null | undefined;
588
596
  monthlyCreditGrantAnchor?: string | null | undefined;
589
597
  monthlyCreditGrantAmount?: number | null | undefined;
590
- builderSeatLimit?: number | undefined;
591
- fullSeatLimit?: number | undefined;
592
- builderSeats?: number | undefined;
593
- fullSeats?: number | undefined;
598
+ builderSeatLimit?: number | null | undefined;
599
+ fullSeatLimit?: number | null | undefined;
600
+ additionalCredits?: number | null | undefined;
601
+ builderSeats?: number | null | undefined;
602
+ fullSeats?: number | null | undefined;
594
603
  subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
595
604
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
596
605
  stripeSubscriptionId?: string | null | undefined;
@@ -600,6 +609,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
600
609
  cancelAt?: string | null | undefined;
601
610
  fullSeatPriceId?: string | null | undefined;
602
611
  builderSeatPriceId?: string | null | undefined;
612
+ additionalCreditsPriceId?: string | null | undefined;
603
613
  subscriptionStatusUpdatedAt?: string | null | undefined;
604
614
  };
605
615
  npmRegistry?: {
@@ -652,7 +662,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
652
662
  seats: number;
653
663
  seatLimit: number;
654
664
  planPriceId: string;
655
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
665
+ planInterval: "daily" | "monthly" | "yearly";
656
666
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
657
667
  card?: {
658
668
  name?: string | null | undefined;
@@ -666,6 +676,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
666
676
  monthlyCreditGrantAmount?: number | undefined;
667
677
  builderSeatLimit?: number | undefined;
668
678
  fullSeatLimit?: number | undefined;
679
+ additionalCredits?: number | undefined;
669
680
  builderSeats?: number | undefined;
670
681
  fullSeats?: number | undefined;
671
682
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -677,6 +688,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
677
688
  cancelAt?: string | undefined;
678
689
  fullSeatPriceId?: string | undefined;
679
690
  builderSeatPriceId?: string | undefined;
691
+ additionalCreditsPriceId?: string | undefined;
680
692
  subscriptionStatusUpdatedAt?: string | undefined;
681
693
  };
682
694
  aiFeaturesEnabled: boolean;
@@ -729,7 +741,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
729
741
  seats: number;
730
742
  seatLimit: number;
731
743
  planPriceId: string;
732
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
744
+ planInterval: "daily" | "monthly" | "yearly";
733
745
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
734
746
  card?: {
735
747
  name?: string | null | undefined;
@@ -741,10 +753,11 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
741
753
  } | null | undefined;
742
754
  monthlyCreditGrantAnchor?: string | null | undefined;
743
755
  monthlyCreditGrantAmount?: number | null | undefined;
744
- builderSeatLimit?: number | undefined;
745
- fullSeatLimit?: number | undefined;
746
- builderSeats?: number | undefined;
747
- fullSeats?: number | undefined;
756
+ builderSeatLimit?: number | null | undefined;
757
+ fullSeatLimit?: number | null | undefined;
758
+ additionalCredits?: number | null | undefined;
759
+ builderSeats?: number | null | undefined;
760
+ fullSeats?: number | null | undefined;
748
761
  subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
749
762
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
750
763
  stripeSubscriptionId?: string | null | undefined;
@@ -754,6 +767,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
754
767
  cancelAt?: string | null | undefined;
755
768
  fullSeatPriceId?: string | null | undefined;
756
769
  builderSeatPriceId?: string | null | undefined;
770
+ additionalCreditsPriceId?: string | null | undefined;
757
771
  subscriptionStatusUpdatedAt?: string | null | undefined;
758
772
  };
759
773
  npmRegistry?: {
@@ -1037,7 +1051,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
1037
1051
  seats: number;
1038
1052
  seatLimit: number;
1039
1053
  planPriceId: string;
1040
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
1054
+ planInterval: "daily" | "monthly" | "yearly";
1041
1055
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
1042
1056
  card?: {
1043
1057
  name?: string | null | undefined;
@@ -1051,6 +1065,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
1051
1065
  monthlyCreditGrantAmount?: number | undefined;
1052
1066
  builderSeatLimit?: number | undefined;
1053
1067
  fullSeatLimit?: number | undefined;
1068
+ additionalCredits?: number | undefined;
1054
1069
  builderSeats?: number | undefined;
1055
1070
  fullSeats?: number | undefined;
1056
1071
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -1062,6 +1077,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
1062
1077
  cancelAt?: string | undefined;
1063
1078
  fullSeatPriceId?: string | undefined;
1064
1079
  builderSeatPriceId?: string | undefined;
1080
+ additionalCreditsPriceId?: string | undefined;
1065
1081
  subscriptionStatusUpdatedAt?: string | undefined;
1066
1082
  };
1067
1083
  aiFeaturesEnabled: boolean;
@@ -1167,7 +1183,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
1167
1183
  seats: number;
1168
1184
  seatLimit: number;
1169
1185
  planPriceId: string;
1170
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
1186
+ planInterval: "daily" | "monthly" | "yearly";
1171
1187
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
1172
1188
  card?: {
1173
1189
  name?: string | null | undefined;
@@ -1179,10 +1195,11 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
1179
1195
  } | null | undefined;
1180
1196
  monthlyCreditGrantAnchor?: string | null | undefined;
1181
1197
  monthlyCreditGrantAmount?: number | null | undefined;
1182
- builderSeatLimit?: number | undefined;
1183
- fullSeatLimit?: number | undefined;
1184
- builderSeats?: number | undefined;
1185
- fullSeats?: number | undefined;
1198
+ builderSeatLimit?: number | null | undefined;
1199
+ fullSeatLimit?: number | null | undefined;
1200
+ additionalCredits?: number | null | undefined;
1201
+ builderSeats?: number | null | undefined;
1202
+ fullSeats?: number | null | undefined;
1186
1203
  subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
1187
1204
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
1188
1205
  stripeSubscriptionId?: string | null | undefined;
@@ -1192,6 +1209,7 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
1192
1209
  cancelAt?: string | null | undefined;
1193
1210
  fullSeatPriceId?: string | null | undefined;
1194
1211
  builderSeatPriceId?: string | null | undefined;
1212
+ additionalCreditsPriceId?: string | null | undefined;
1195
1213
  subscriptionStatusUpdatedAt?: string | null | undefined;
1196
1214
  };
1197
1215
  npmRegistry?: {
@@ -10065,10 +10083,11 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
10065
10083
  seatLimit: z.ZodNumber;
10066
10084
  monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
10067
10085
  monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
10068
- builderSeatLimit: z.ZodOptional<z.ZodNumber>;
10069
- fullSeatLimit: z.ZodOptional<z.ZodNumber>;
10070
- builderSeats: z.ZodOptional<z.ZodNumber>;
10071
- fullSeats: z.ZodOptional<z.ZodNumber>;
10086
+ builderSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
10087
+ fullSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
10088
+ additionalCredits: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
10089
+ builderSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
10090
+ fullSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
10072
10091
  status: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
10073
10092
  subscriptionStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete", z.ZodTypeDef, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete">>>, NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined>;
10074
10093
  internalStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
@@ -10076,19 +10095,20 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
10076
10095
  stripeCustomerId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
10077
10096
  product: z.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
10078
10097
  planPriceId: z.ZodString;
10079
- planInterval: z.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
10098
+ planInterval: z.ZodEnum<["daily", "monthly", "yearly"]>;
10080
10099
  currentPeriodStart: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
10081
10100
  currentPeriodEnd: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
10082
10101
  cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
10083
10102
  fullSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
10084
10103
  builderSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
10104
+ additionalCreditsPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
10085
10105
  subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
10086
10106
  }, "strip", z.ZodTypeAny, {
10087
10107
  product: "company" | "enterprise" | "free" | "team" | "pro";
10088
10108
  seats: number;
10089
10109
  seatLimit: number;
10090
10110
  planPriceId: string;
10091
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
10111
+ planInterval: "daily" | "monthly" | "yearly";
10092
10112
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
10093
10113
  card?: {
10094
10114
  name?: string | null | undefined;
@@ -10102,6 +10122,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
10102
10122
  monthlyCreditGrantAmount?: number | undefined;
10103
10123
  builderSeatLimit?: number | undefined;
10104
10124
  fullSeatLimit?: number | undefined;
10125
+ additionalCredits?: number | undefined;
10105
10126
  builderSeats?: number | undefined;
10106
10127
  fullSeats?: number | undefined;
10107
10128
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -10113,13 +10134,14 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
10113
10134
  cancelAt?: string | undefined;
10114
10135
  fullSeatPriceId?: string | undefined;
10115
10136
  builderSeatPriceId?: string | undefined;
10137
+ additionalCreditsPriceId?: string | undefined;
10116
10138
  subscriptionStatusUpdatedAt?: string | undefined;
10117
10139
  }, {
10118
10140
  product: "company" | "enterprise" | "free" | "team" | "pro";
10119
10141
  seats: number;
10120
10142
  seatLimit: number;
10121
10143
  planPriceId: string;
10122
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
10144
+ planInterval: "daily" | "monthly" | "yearly";
10123
10145
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
10124
10146
  card?: {
10125
10147
  name?: string | null | undefined;
@@ -10131,10 +10153,11 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
10131
10153
  } | null | undefined;
10132
10154
  monthlyCreditGrantAnchor?: string | null | undefined;
10133
10155
  monthlyCreditGrantAmount?: number | null | undefined;
10134
- builderSeatLimit?: number | undefined;
10135
- fullSeatLimit?: number | undefined;
10136
- builderSeats?: number | undefined;
10137
- fullSeats?: number | undefined;
10156
+ builderSeatLimit?: number | null | undefined;
10157
+ fullSeatLimit?: number | null | undefined;
10158
+ additionalCredits?: number | null | undefined;
10159
+ builderSeats?: number | null | undefined;
10160
+ fullSeats?: number | null | undefined;
10138
10161
  subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
10139
10162
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
10140
10163
  stripeSubscriptionId?: string | null | undefined;
@@ -10144,6 +10167,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
10144
10167
  cancelAt?: string | null | undefined;
10145
10168
  fullSeatPriceId?: string | null | undefined;
10146
10169
  builderSeatPriceId?: string | null | undefined;
10170
+ additionalCreditsPriceId?: string | null | undefined;
10147
10171
  subscriptionStatusUpdatedAt?: string | null | undefined;
10148
10172
  }>;
10149
10173
  npmRegistry: z.ZodOptional<z.ZodObject<{
@@ -10212,7 +10236,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
10212
10236
  seats: number;
10213
10237
  seatLimit: number;
10214
10238
  planPriceId: string;
10215
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
10239
+ planInterval: "daily" | "monthly" | "yearly";
10216
10240
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
10217
10241
  card?: {
10218
10242
  name?: string | null | undefined;
@@ -10226,6 +10250,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
10226
10250
  monthlyCreditGrantAmount?: number | undefined;
10227
10251
  builderSeatLimit?: number | undefined;
10228
10252
  fullSeatLimit?: number | undefined;
10253
+ additionalCredits?: number | undefined;
10229
10254
  builderSeats?: number | undefined;
10230
10255
  fullSeats?: number | undefined;
10231
10256
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -10237,6 +10262,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
10237
10262
  cancelAt?: string | undefined;
10238
10263
  fullSeatPriceId?: string | undefined;
10239
10264
  builderSeatPriceId?: string | undefined;
10265
+ additionalCreditsPriceId?: string | undefined;
10240
10266
  subscriptionStatusUpdatedAt?: string | undefined;
10241
10267
  };
10242
10268
  aiFeaturesEnabled: boolean;
@@ -10283,7 +10309,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
10283
10309
  seats: number;
10284
10310
  seatLimit: number;
10285
10311
  planPriceId: string;
10286
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
10312
+ planInterval: "daily" | "monthly" | "yearly";
10287
10313
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
10288
10314
  card?: {
10289
10315
  name?: string | null | undefined;
@@ -10295,10 +10321,11 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
10295
10321
  } | null | undefined;
10296
10322
  monthlyCreditGrantAnchor?: string | null | undefined;
10297
10323
  monthlyCreditGrantAmount?: number | null | undefined;
10298
- builderSeatLimit?: number | undefined;
10299
- fullSeatLimit?: number | undefined;
10300
- builderSeats?: number | undefined;
10301
- fullSeats?: number | undefined;
10324
+ builderSeatLimit?: number | null | undefined;
10325
+ fullSeatLimit?: number | null | undefined;
10326
+ additionalCredits?: number | null | undefined;
10327
+ builderSeats?: number | null | undefined;
10328
+ fullSeats?: number | null | undefined;
10302
10329
  subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
10303
10330
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
10304
10331
  stripeSubscriptionId?: string | null | undefined;
@@ -10308,6 +10335,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
10308
10335
  cancelAt?: string | null | undefined;
10309
10336
  fullSeatPriceId?: string | null | undefined;
10310
10337
  builderSeatPriceId?: string | null | undefined;
10338
+ additionalCreditsPriceId?: string | null | undefined;
10311
10339
  subscriptionStatusUpdatedAt?: string | null | undefined;
10312
10340
  };
10313
10341
  npmRegistry?: {
@@ -10386,7 +10414,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
10386
10414
  seats: number;
10387
10415
  seatLimit: number;
10388
10416
  planPriceId: string;
10389
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
10417
+ planInterval: "daily" | "monthly" | "yearly";
10390
10418
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
10391
10419
  card?: {
10392
10420
  name?: string | null | undefined;
@@ -10400,6 +10428,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
10400
10428
  monthlyCreditGrantAmount?: number | undefined;
10401
10429
  builderSeatLimit?: number | undefined;
10402
10430
  fullSeatLimit?: number | undefined;
10431
+ additionalCredits?: number | undefined;
10403
10432
  builderSeats?: number | undefined;
10404
10433
  fullSeats?: number | undefined;
10405
10434
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -10411,6 +10440,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
10411
10440
  cancelAt?: string | undefined;
10412
10441
  fullSeatPriceId?: string | undefined;
10413
10442
  builderSeatPriceId?: string | undefined;
10443
+ additionalCreditsPriceId?: string | undefined;
10414
10444
  subscriptionStatusUpdatedAt?: string | undefined;
10415
10445
  };
10416
10446
  aiFeaturesEnabled: boolean;
@@ -10489,7 +10519,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
10489
10519
  seats: number;
10490
10520
  seatLimit: number;
10491
10521
  planPriceId: string;
10492
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
10522
+ planInterval: "daily" | "monthly" | "yearly";
10493
10523
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
10494
10524
  card?: {
10495
10525
  name?: string | null | undefined;
@@ -10501,10 +10531,11 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
10501
10531
  } | null | undefined;
10502
10532
  monthlyCreditGrantAnchor?: string | null | undefined;
10503
10533
  monthlyCreditGrantAmount?: number | null | undefined;
10504
- builderSeatLimit?: number | undefined;
10505
- fullSeatLimit?: number | undefined;
10506
- builderSeats?: number | undefined;
10507
- fullSeats?: number | undefined;
10534
+ builderSeatLimit?: number | null | undefined;
10535
+ fullSeatLimit?: number | null | undefined;
10536
+ additionalCredits?: number | null | undefined;
10537
+ builderSeats?: number | null | undefined;
10538
+ fullSeats?: number | null | undefined;
10508
10539
  subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
10509
10540
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
10510
10541
  stripeSubscriptionId?: string | null | undefined;
@@ -10514,6 +10545,7 @@ declare const DTOUserDesignSystemsResponse: z.ZodObject<{
10514
10545
  cancelAt?: string | null | undefined;
10515
10546
  fullSeatPriceId?: string | null | undefined;
10516
10547
  builderSeatPriceId?: string | null | undefined;
10548
+ additionalCreditsPriceId?: string | null | undefined;
10517
10549
  subscriptionStatusUpdatedAt?: string | null | undefined;
10518
10550
  };
10519
10551
  npmRegistry?: {
@@ -228015,19 +228047,19 @@ declare const DTOBillingCreditsSpendAction: z$1.ZodEnum<["Ask", "Build", "Docume
228015
228047
  type DTOBillingCreditsSpendAction = z$1.infer<typeof DTOBillingCreditsSpendAction>;
228016
228048
  declare const DTOBillingSubscriptionChangePreviewInput: z$1.ZodObject<{
228017
228049
  plan: z$1.ZodEnum<["free", "pro", "team", "company", "enterprise"]>;
228018
- interval: z$1.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
228050
+ interval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
228019
228051
  fullSeats: z$1.ZodNumber;
228020
228052
  builderSeats: z$1.ZodNumber;
228021
228053
  additionalCredits: z$1.ZodNumber;
228022
228054
  }, "strip", z$1.ZodTypeAny, {
228023
228055
  plan: "free" | "pro" | "team" | "company" | "enterprise";
228024
- interval: "daily" | "monthly" | "weekly" | "yearly";
228056
+ interval: "daily" | "monthly" | "yearly";
228025
228057
  fullSeats: number;
228026
228058
  builderSeats: number;
228027
228059
  additionalCredits: number;
228028
228060
  }, {
228029
228061
  plan: "free" | "pro" | "team" | "company" | "enterprise";
228030
- interval: "daily" | "monthly" | "weekly" | "yearly";
228062
+ interval: "daily" | "monthly" | "yearly";
228031
228063
  fullSeats: number;
228032
228064
  builderSeats: number;
228033
228065
  additionalCredits: number;
@@ -228094,13 +228126,13 @@ declare const DTOBillingCheckoutSubscriptionChangeInput: z$1.ZodObject<{
228094
228126
  successUrl: z$1.ZodString;
228095
228127
  cancelUrl: z$1.ZodString;
228096
228128
  plan: z$1.ZodEnum<["free", "pro", "team", "company", "enterprise"]>;
228097
- interval: z$1.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
228129
+ interval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
228098
228130
  fullSeats: z$1.ZodNumber;
228099
228131
  builderSeats: z$1.ZodNumber;
228100
228132
  additionalCredits: z$1.ZodNumber;
228101
228133
  }, "strip", z$1.ZodTypeAny, {
228102
228134
  plan: "free" | "pro" | "team" | "company" | "enterprise";
228103
- interval: "daily" | "monthly" | "weekly" | "yearly";
228135
+ interval: "daily" | "monthly" | "yearly";
228104
228136
  fullSeats: number;
228105
228137
  builderSeats: number;
228106
228138
  additionalCredits: number;
@@ -228109,7 +228141,7 @@ declare const DTOBillingCheckoutSubscriptionChangeInput: z$1.ZodObject<{
228109
228141
  cancelUrl: string;
228110
228142
  }, {
228111
228143
  plan: "free" | "pro" | "team" | "company" | "enterprise";
228112
- interval: "daily" | "monthly" | "weekly" | "yearly";
228144
+ interval: "daily" | "monthly" | "yearly";
228113
228145
  fullSeats: number;
228114
228146
  builderSeats: number;
228115
228147
  additionalCredits: number;
@@ -228158,13 +228190,13 @@ declare const DTOBillingCheckoutInput: z$1.ZodDiscriminatedUnion<"mode", [z$1.Zo
228158
228190
  successUrl: z$1.ZodString;
228159
228191
  cancelUrl: z$1.ZodString;
228160
228192
  plan: z$1.ZodEnum<["free", "pro", "team", "company", "enterprise"]>;
228161
- interval: z$1.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
228193
+ interval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
228162
228194
  fullSeats: z$1.ZodNumber;
228163
228195
  builderSeats: z$1.ZodNumber;
228164
228196
  additionalCredits: z$1.ZodNumber;
228165
228197
  }, "strip", z$1.ZodTypeAny, {
228166
228198
  plan: "free" | "pro" | "team" | "company" | "enterprise";
228167
- interval: "daily" | "monthly" | "weekly" | "yearly";
228199
+ interval: "daily" | "monthly" | "yearly";
228168
228200
  fullSeats: number;
228169
228201
  builderSeats: number;
228170
228202
  additionalCredits: number;
@@ -228173,7 +228205,7 @@ declare const DTOBillingCheckoutInput: z$1.ZodDiscriminatedUnion<"mode", [z$1.Zo
228173
228205
  cancelUrl: string;
228174
228206
  }, {
228175
228207
  plan: "free" | "pro" | "team" | "company" | "enterprise";
228176
- interval: "daily" | "monthly" | "weekly" | "yearly";
228208
+ interval: "daily" | "monthly" | "yearly";
228177
228209
  fullSeats: number;
228178
228210
  builderSeats: number;
228179
228211
  additionalCredits: number;
@@ -228215,7 +228247,7 @@ declare const DTOWorkspaceSeatType: z$1.ZodEnum<["Full", "Builder", "None"]>;
228215
228247
  type DTOWorkspaceSeatType = z$1.infer<typeof DTOWorkspaceSeatType>;
228216
228248
  declare const DTOWorkspaceBilledSeatType: z$1.ZodEnum<["Full", "Builder"]>;
228217
228249
  type DTOWorkspaceBilledSeatType = z$1.infer<typeof DTOWorkspaceBilledSeatType>;
228218
- declare const DTOBillingInterval: z$1.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
228250
+ declare const DTOBillingInterval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
228219
228251
  type DTOBillingInterval = z$1.infer<typeof DTOBillingInterval>;
228220
228252
  declare const DTOProductCode: z$1.ZodEnum<["free", "pro", "team", "company", "enterprise"]>;
228221
228253
  type DTOProductCode = z$1.infer<typeof DTOProductCode>;
@@ -229612,10 +229644,11 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
229612
229644
  seatLimit: z.ZodNumber;
229613
229645
  monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
229614
229646
  monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
229615
- builderSeatLimit: z.ZodOptional<z.ZodNumber>;
229616
- fullSeatLimit: z.ZodOptional<z.ZodNumber>;
229617
- builderSeats: z.ZodOptional<z.ZodNumber>;
229618
- fullSeats: z.ZodOptional<z.ZodNumber>;
229647
+ builderSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
229648
+ fullSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
229649
+ additionalCredits: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
229650
+ builderSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
229651
+ fullSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
229619
229652
  status: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
229620
229653
  subscriptionStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete", z.ZodTypeDef, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete">>>, NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined>;
229621
229654
  internalStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
@@ -229623,19 +229656,20 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
229623
229656
  stripeCustomerId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
229624
229657
  product: z.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
229625
229658
  planPriceId: z.ZodString;
229626
- planInterval: z.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
229659
+ planInterval: z.ZodEnum<["daily", "monthly", "yearly"]>;
229627
229660
  currentPeriodStart: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
229628
229661
  currentPeriodEnd: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
229629
229662
  cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
229630
229663
  fullSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
229631
229664
  builderSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
229665
+ additionalCreditsPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
229632
229666
  subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
229633
229667
  }, "strip", z.ZodTypeAny, {
229634
229668
  product: "company" | "enterprise" | "free" | "team" | "pro";
229635
229669
  seats: number;
229636
229670
  seatLimit: number;
229637
229671
  planPriceId: string;
229638
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
229672
+ planInterval: "daily" | "monthly" | "yearly";
229639
229673
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
229640
229674
  card?: {
229641
229675
  name?: string | null | undefined;
@@ -229649,6 +229683,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
229649
229683
  monthlyCreditGrantAmount?: number | undefined;
229650
229684
  builderSeatLimit?: number | undefined;
229651
229685
  fullSeatLimit?: number | undefined;
229686
+ additionalCredits?: number | undefined;
229652
229687
  builderSeats?: number | undefined;
229653
229688
  fullSeats?: number | undefined;
229654
229689
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -229660,13 +229695,14 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
229660
229695
  cancelAt?: string | undefined;
229661
229696
  fullSeatPriceId?: string | undefined;
229662
229697
  builderSeatPriceId?: string | undefined;
229698
+ additionalCreditsPriceId?: string | undefined;
229663
229699
  subscriptionStatusUpdatedAt?: string | undefined;
229664
229700
  }, {
229665
229701
  product: "company" | "enterprise" | "free" | "team" | "pro";
229666
229702
  seats: number;
229667
229703
  seatLimit: number;
229668
229704
  planPriceId: string;
229669
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
229705
+ planInterval: "daily" | "monthly" | "yearly";
229670
229706
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
229671
229707
  card?: {
229672
229708
  name?: string | null | undefined;
@@ -229678,10 +229714,11 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
229678
229714
  } | null | undefined;
229679
229715
  monthlyCreditGrantAnchor?: string | null | undefined;
229680
229716
  monthlyCreditGrantAmount?: number | null | undefined;
229681
- builderSeatLimit?: number | undefined;
229682
- fullSeatLimit?: number | undefined;
229683
- builderSeats?: number | undefined;
229684
- fullSeats?: number | undefined;
229717
+ builderSeatLimit?: number | null | undefined;
229718
+ fullSeatLimit?: number | null | undefined;
229719
+ additionalCredits?: number | null | undefined;
229720
+ builderSeats?: number | null | undefined;
229721
+ fullSeats?: number | null | undefined;
229685
229722
  subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
229686
229723
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
229687
229724
  stripeSubscriptionId?: string | null | undefined;
@@ -229691,6 +229728,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
229691
229728
  cancelAt?: string | null | undefined;
229692
229729
  fullSeatPriceId?: string | null | undefined;
229693
229730
  builderSeatPriceId?: string | null | undefined;
229731
+ additionalCreditsPriceId?: string | null | undefined;
229694
229732
  subscriptionStatusUpdatedAt?: string | null | undefined;
229695
229733
  }>;
229696
229734
  npmRegistry: z.ZodOptional<z.ZodObject<{
@@ -229759,7 +229797,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
229759
229797
  seats: number;
229760
229798
  seatLimit: number;
229761
229799
  planPriceId: string;
229762
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
229800
+ planInterval: "daily" | "monthly" | "yearly";
229763
229801
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
229764
229802
  card?: {
229765
229803
  name?: string | null | undefined;
@@ -229773,6 +229811,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
229773
229811
  monthlyCreditGrantAmount?: number | undefined;
229774
229812
  builderSeatLimit?: number | undefined;
229775
229813
  fullSeatLimit?: number | undefined;
229814
+ additionalCredits?: number | undefined;
229776
229815
  builderSeats?: number | undefined;
229777
229816
  fullSeats?: number | undefined;
229778
229817
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -229784,6 +229823,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
229784
229823
  cancelAt?: string | undefined;
229785
229824
  fullSeatPriceId?: string | undefined;
229786
229825
  builderSeatPriceId?: string | undefined;
229826
+ additionalCreditsPriceId?: string | undefined;
229787
229827
  subscriptionStatusUpdatedAt?: string | undefined;
229788
229828
  };
229789
229829
  aiFeaturesEnabled: boolean;
@@ -229830,7 +229870,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
229830
229870
  seats: number;
229831
229871
  seatLimit: number;
229832
229872
  planPriceId: string;
229833
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
229873
+ planInterval: "daily" | "monthly" | "yearly";
229834
229874
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
229835
229875
  card?: {
229836
229876
  name?: string | null | undefined;
@@ -229842,10 +229882,11 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
229842
229882
  } | null | undefined;
229843
229883
  monthlyCreditGrantAnchor?: string | null | undefined;
229844
229884
  monthlyCreditGrantAmount?: number | null | undefined;
229845
- builderSeatLimit?: number | undefined;
229846
- fullSeatLimit?: number | undefined;
229847
- builderSeats?: number | undefined;
229848
- fullSeats?: number | undefined;
229885
+ builderSeatLimit?: number | null | undefined;
229886
+ fullSeatLimit?: number | null | undefined;
229887
+ additionalCredits?: number | null | undefined;
229888
+ builderSeats?: number | null | undefined;
229889
+ fullSeats?: number | null | undefined;
229849
229890
  subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
229850
229891
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
229851
229892
  stripeSubscriptionId?: string | null | undefined;
@@ -229855,6 +229896,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
229855
229896
  cancelAt?: string | null | undefined;
229856
229897
  fullSeatPriceId?: string | null | undefined;
229857
229898
  builderSeatPriceId?: string | null | undefined;
229899
+ additionalCreditsPriceId?: string | null | undefined;
229858
229900
  subscriptionStatusUpdatedAt?: string | null | undefined;
229859
229901
  };
229860
229902
  npmRegistry?: {
@@ -229907,7 +229949,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
229907
229949
  seats: number;
229908
229950
  seatLimit: number;
229909
229951
  planPriceId: string;
229910
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
229952
+ planInterval: "daily" | "monthly" | "yearly";
229911
229953
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
229912
229954
  card?: {
229913
229955
  name?: string | null | undefined;
@@ -229921,6 +229963,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
229921
229963
  monthlyCreditGrantAmount?: number | undefined;
229922
229964
  builderSeatLimit?: number | undefined;
229923
229965
  fullSeatLimit?: number | undefined;
229966
+ additionalCredits?: number | undefined;
229924
229967
  builderSeats?: number | undefined;
229925
229968
  fullSeats?: number | undefined;
229926
229969
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -229932,6 +229975,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
229932
229975
  cancelAt?: string | undefined;
229933
229976
  fullSeatPriceId?: string | undefined;
229934
229977
  builderSeatPriceId?: string | undefined;
229978
+ additionalCreditsPriceId?: string | undefined;
229935
229979
  subscriptionStatusUpdatedAt?: string | undefined;
229936
229980
  };
229937
229981
  aiFeaturesEnabled: boolean;
@@ -229984,7 +230028,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
229984
230028
  seats: number;
229985
230029
  seatLimit: number;
229986
230030
  planPriceId: string;
229987
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
230031
+ planInterval: "daily" | "monthly" | "yearly";
229988
230032
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
229989
230033
  card?: {
229990
230034
  name?: string | null | undefined;
@@ -229996,10 +230040,11 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
229996
230040
  } | null | undefined;
229997
230041
  monthlyCreditGrantAnchor?: string | null | undefined;
229998
230042
  monthlyCreditGrantAmount?: number | null | undefined;
229999
- builderSeatLimit?: number | undefined;
230000
- fullSeatLimit?: number | undefined;
230001
- builderSeats?: number | undefined;
230002
- fullSeats?: number | undefined;
230043
+ builderSeatLimit?: number | null | undefined;
230044
+ fullSeatLimit?: number | null | undefined;
230045
+ additionalCredits?: number | null | undefined;
230046
+ builderSeats?: number | null | undefined;
230047
+ fullSeats?: number | null | undefined;
230003
230048
  subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
230004
230049
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
230005
230050
  stripeSubscriptionId?: string | null | undefined;
@@ -230009,6 +230054,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
230009
230054
  cancelAt?: string | null | undefined;
230010
230055
  fullSeatPriceId?: string | null | undefined;
230011
230056
  builderSeatPriceId?: string | null | undefined;
230057
+ additionalCreditsPriceId?: string | null | undefined;
230012
230058
  subscriptionStatusUpdatedAt?: string | null | undefined;
230013
230059
  };
230014
230060
  npmRegistry?: {
@@ -230618,10 +230664,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
230618
230664
  seatLimit: z.ZodNumber;
230619
230665
  monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
230620
230666
  monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
230621
- builderSeatLimit: z.ZodOptional<z.ZodNumber>;
230622
- fullSeatLimit: z.ZodOptional<z.ZodNumber>;
230623
- builderSeats: z.ZodOptional<z.ZodNumber>;
230624
- fullSeats: z.ZodOptional<z.ZodNumber>;
230667
+ builderSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
230668
+ fullSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
230669
+ additionalCredits: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
230670
+ builderSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
230671
+ fullSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
230625
230672
  status: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
230626
230673
  subscriptionStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete", z.ZodTypeDef, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete">>>, NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined>;
230627
230674
  internalStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
@@ -230629,19 +230676,20 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
230629
230676
  stripeCustomerId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
230630
230677
  product: z.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
230631
230678
  planPriceId: z.ZodString;
230632
- planInterval: z.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
230679
+ planInterval: z.ZodEnum<["daily", "monthly", "yearly"]>;
230633
230680
  currentPeriodStart: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
230634
230681
  currentPeriodEnd: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
230635
230682
  cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
230636
230683
  fullSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
230637
230684
  builderSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
230685
+ additionalCreditsPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
230638
230686
  subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
230639
230687
  }, "strip", z.ZodTypeAny, {
230640
230688
  product: "company" | "enterprise" | "free" | "team" | "pro";
230641
230689
  seats: number;
230642
230690
  seatLimit: number;
230643
230691
  planPriceId: string;
230644
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
230692
+ planInterval: "daily" | "monthly" | "yearly";
230645
230693
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
230646
230694
  card?: {
230647
230695
  name?: string | null | undefined;
@@ -230655,6 +230703,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
230655
230703
  monthlyCreditGrantAmount?: number | undefined;
230656
230704
  builderSeatLimit?: number | undefined;
230657
230705
  fullSeatLimit?: number | undefined;
230706
+ additionalCredits?: number | undefined;
230658
230707
  builderSeats?: number | undefined;
230659
230708
  fullSeats?: number | undefined;
230660
230709
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -230666,13 +230715,14 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
230666
230715
  cancelAt?: string | undefined;
230667
230716
  fullSeatPriceId?: string | undefined;
230668
230717
  builderSeatPriceId?: string | undefined;
230718
+ additionalCreditsPriceId?: string | undefined;
230669
230719
  subscriptionStatusUpdatedAt?: string | undefined;
230670
230720
  }, {
230671
230721
  product: "company" | "enterprise" | "free" | "team" | "pro";
230672
230722
  seats: number;
230673
230723
  seatLimit: number;
230674
230724
  planPriceId: string;
230675
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
230725
+ planInterval: "daily" | "monthly" | "yearly";
230676
230726
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
230677
230727
  card?: {
230678
230728
  name?: string | null | undefined;
@@ -230684,10 +230734,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
230684
230734
  } | null | undefined;
230685
230735
  monthlyCreditGrantAnchor?: string | null | undefined;
230686
230736
  monthlyCreditGrantAmount?: number | null | undefined;
230687
- builderSeatLimit?: number | undefined;
230688
- fullSeatLimit?: number | undefined;
230689
- builderSeats?: number | undefined;
230690
- fullSeats?: number | undefined;
230737
+ builderSeatLimit?: number | null | undefined;
230738
+ fullSeatLimit?: number | null | undefined;
230739
+ additionalCredits?: number | null | undefined;
230740
+ builderSeats?: number | null | undefined;
230741
+ fullSeats?: number | null | undefined;
230691
230742
  subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
230692
230743
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
230693
230744
  stripeSubscriptionId?: string | null | undefined;
@@ -230697,6 +230748,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
230697
230748
  cancelAt?: string | null | undefined;
230698
230749
  fullSeatPriceId?: string | null | undefined;
230699
230750
  builderSeatPriceId?: string | null | undefined;
230751
+ additionalCreditsPriceId?: string | null | undefined;
230700
230752
  subscriptionStatusUpdatedAt?: string | null | undefined;
230701
230753
  }>;
230702
230754
  npmRegistry: z.ZodOptional<z.ZodObject<{
@@ -230765,7 +230817,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
230765
230817
  seats: number;
230766
230818
  seatLimit: number;
230767
230819
  planPriceId: string;
230768
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
230820
+ planInterval: "daily" | "monthly" | "yearly";
230769
230821
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
230770
230822
  card?: {
230771
230823
  name?: string | null | undefined;
@@ -230779,6 +230831,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
230779
230831
  monthlyCreditGrantAmount?: number | undefined;
230780
230832
  builderSeatLimit?: number | undefined;
230781
230833
  fullSeatLimit?: number | undefined;
230834
+ additionalCredits?: number | undefined;
230782
230835
  builderSeats?: number | undefined;
230783
230836
  fullSeats?: number | undefined;
230784
230837
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -230790,6 +230843,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
230790
230843
  cancelAt?: string | undefined;
230791
230844
  fullSeatPriceId?: string | undefined;
230792
230845
  builderSeatPriceId?: string | undefined;
230846
+ additionalCreditsPriceId?: string | undefined;
230793
230847
  subscriptionStatusUpdatedAt?: string | undefined;
230794
230848
  };
230795
230849
  aiFeaturesEnabled: boolean;
@@ -230836,7 +230890,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
230836
230890
  seats: number;
230837
230891
  seatLimit: number;
230838
230892
  planPriceId: string;
230839
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
230893
+ planInterval: "daily" | "monthly" | "yearly";
230840
230894
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
230841
230895
  card?: {
230842
230896
  name?: string | null | undefined;
@@ -230848,10 +230902,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
230848
230902
  } | null | undefined;
230849
230903
  monthlyCreditGrantAnchor?: string | null | undefined;
230850
230904
  monthlyCreditGrantAmount?: number | null | undefined;
230851
- builderSeatLimit?: number | undefined;
230852
- fullSeatLimit?: number | undefined;
230853
- builderSeats?: number | undefined;
230854
- fullSeats?: number | undefined;
230905
+ builderSeatLimit?: number | null | undefined;
230906
+ fullSeatLimit?: number | null | undefined;
230907
+ additionalCredits?: number | null | undefined;
230908
+ builderSeats?: number | null | undefined;
230909
+ fullSeats?: number | null | undefined;
230855
230910
  subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
230856
230911
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
230857
230912
  stripeSubscriptionId?: string | null | undefined;
@@ -230861,6 +230916,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
230861
230916
  cancelAt?: string | null | undefined;
230862
230917
  fullSeatPriceId?: string | null | undefined;
230863
230918
  builderSeatPriceId?: string | null | undefined;
230919
+ additionalCreditsPriceId?: string | null | undefined;
230864
230920
  subscriptionStatusUpdatedAt?: string | null | undefined;
230865
230921
  };
230866
230922
  npmRegistry?: {
@@ -230913,7 +230969,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
230913
230969
  seats: number;
230914
230970
  seatLimit: number;
230915
230971
  planPriceId: string;
230916
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
230972
+ planInterval: "daily" | "monthly" | "yearly";
230917
230973
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
230918
230974
  card?: {
230919
230975
  name?: string | null | undefined;
@@ -230927,6 +230983,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
230927
230983
  monthlyCreditGrantAmount?: number | undefined;
230928
230984
  builderSeatLimit?: number | undefined;
230929
230985
  fullSeatLimit?: number | undefined;
230986
+ additionalCredits?: number | undefined;
230930
230987
  builderSeats?: number | undefined;
230931
230988
  fullSeats?: number | undefined;
230932
230989
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -230938,6 +230995,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
230938
230995
  cancelAt?: string | undefined;
230939
230996
  fullSeatPriceId?: string | undefined;
230940
230997
  builderSeatPriceId?: string | undefined;
230998
+ additionalCreditsPriceId?: string | undefined;
230941
230999
  subscriptionStatusUpdatedAt?: string | undefined;
230942
231000
  };
230943
231001
  aiFeaturesEnabled: boolean;
@@ -230990,7 +231048,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
230990
231048
  seats: number;
230991
231049
  seatLimit: number;
230992
231050
  planPriceId: string;
230993
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
231051
+ planInterval: "daily" | "monthly" | "yearly";
230994
231052
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
230995
231053
  card?: {
230996
231054
  name?: string | null | undefined;
@@ -231002,10 +231060,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
231002
231060
  } | null | undefined;
231003
231061
  monthlyCreditGrantAnchor?: string | null | undefined;
231004
231062
  monthlyCreditGrantAmount?: number | null | undefined;
231005
- builderSeatLimit?: number | undefined;
231006
- fullSeatLimit?: number | undefined;
231007
- builderSeats?: number | undefined;
231008
- fullSeats?: number | undefined;
231063
+ builderSeatLimit?: number | null | undefined;
231064
+ fullSeatLimit?: number | null | undefined;
231065
+ additionalCredits?: number | null | undefined;
231066
+ builderSeats?: number | null | undefined;
231067
+ fullSeats?: number | null | undefined;
231009
231068
  subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
231010
231069
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
231011
231070
  stripeSubscriptionId?: string | null | undefined;
@@ -231015,6 +231074,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
231015
231074
  cancelAt?: string | null | undefined;
231016
231075
  fullSeatPriceId?: string | null | undefined;
231017
231076
  builderSeatPriceId?: string | null | undefined;
231077
+ additionalCreditsPriceId?: string | null | undefined;
231018
231078
  subscriptionStatusUpdatedAt?: string | null | undefined;
231019
231079
  };
231020
231080
  npmRegistry?: {
@@ -231069,7 +231129,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
231069
231129
  seats: number;
231070
231130
  seatLimit: number;
231071
231131
  planPriceId: string;
231072
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
231132
+ planInterval: "daily" | "monthly" | "yearly";
231073
231133
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
231074
231134
  card?: {
231075
231135
  name?: string | null | undefined;
@@ -231083,6 +231143,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
231083
231143
  monthlyCreditGrantAmount?: number | undefined;
231084
231144
  builderSeatLimit?: number | undefined;
231085
231145
  fullSeatLimit?: number | undefined;
231146
+ additionalCredits?: number | undefined;
231086
231147
  builderSeats?: number | undefined;
231087
231148
  fullSeats?: number | undefined;
231088
231149
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -231094,6 +231155,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
231094
231155
  cancelAt?: string | undefined;
231095
231156
  fullSeatPriceId?: string | undefined;
231096
231157
  builderSeatPriceId?: string | undefined;
231158
+ additionalCreditsPriceId?: string | undefined;
231097
231159
  subscriptionStatusUpdatedAt?: string | undefined;
231098
231160
  };
231099
231161
  aiFeaturesEnabled: boolean;
@@ -231148,7 +231210,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
231148
231210
  seats: number;
231149
231211
  seatLimit: number;
231150
231212
  planPriceId: string;
231151
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
231213
+ planInterval: "daily" | "monthly" | "yearly";
231152
231214
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
231153
231215
  card?: {
231154
231216
  name?: string | null | undefined;
@@ -231160,10 +231222,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
231160
231222
  } | null | undefined;
231161
231223
  monthlyCreditGrantAnchor?: string | null | undefined;
231162
231224
  monthlyCreditGrantAmount?: number | null | undefined;
231163
- builderSeatLimit?: number | undefined;
231164
- fullSeatLimit?: number | undefined;
231165
- builderSeats?: number | undefined;
231166
- fullSeats?: number | undefined;
231225
+ builderSeatLimit?: number | null | undefined;
231226
+ fullSeatLimit?: number | null | undefined;
231227
+ additionalCredits?: number | null | undefined;
231228
+ builderSeats?: number | null | undefined;
231229
+ fullSeats?: number | null | undefined;
231167
231230
  subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
231168
231231
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
231169
231232
  stripeSubscriptionId?: string | null | undefined;
@@ -231173,6 +231236,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
231173
231236
  cancelAt?: string | null | undefined;
231174
231237
  fullSeatPriceId?: string | null | undefined;
231175
231238
  builderSeatPriceId?: string | null | undefined;
231239
+ additionalCreditsPriceId?: string | null | undefined;
231176
231240
  subscriptionStatusUpdatedAt?: string | null | undefined;
231177
231241
  };
231178
231242
  npmRegistry?: {
@@ -231912,7 +231976,7 @@ declare const DTOProductPrice: z$1.ZodObject<{
231912
231976
  /** @deprecated use `isActive` */
231913
231977
  active: z$1.ZodBoolean;
231914
231978
  amount: z$1.ZodNumber;
231915
- interval: z$1.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
231979
+ interval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
231916
231980
  isPricePerCreator: z$1.ZodBoolean;
231917
231981
  isTrial: z$1.ZodBoolean;
231918
231982
  isHidden: z$1.ZodBoolean;
@@ -231925,7 +231989,7 @@ declare const DTOProductPrice: z$1.ZodObject<{
231925
231989
  stripeProductFeatures: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
231926
231990
  stripeProductAdditionalFeatures: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
231927
231991
  }, "strip", z$1.ZodTypeAny, {
231928
- interval: "daily" | "monthly" | "weekly" | "yearly";
231992
+ interval: "daily" | "monthly" | "yearly";
231929
231993
  seatType: "Full" | "Builder";
231930
231994
  active: boolean;
231931
231995
  isActive: boolean;
@@ -231941,7 +232005,7 @@ declare const DTOProductPrice: z$1.ZodObject<{
231941
232005
  stripeProductFeatures?: string[] | undefined;
231942
232006
  stripeProductAdditionalFeatures?: string[] | undefined;
231943
232007
  }, {
231944
- interval: "daily" | "monthly" | "weekly" | "yearly";
232008
+ interval: "daily" | "monthly" | "yearly";
231945
232009
  seatType: "Full" | "Builder";
231946
232010
  active: boolean;
231947
232011
  isActive: boolean;
@@ -231966,7 +232030,7 @@ declare const DTOProduct: z$1.ZodObject<{
231966
232030
  /** @deprecated use `isActive` */
231967
232031
  active: z$1.ZodBoolean;
231968
232032
  amount: z$1.ZodNumber;
231969
- interval: z$1.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
232033
+ interval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
231970
232034
  isPricePerCreator: z$1.ZodBoolean;
231971
232035
  isTrial: z$1.ZodBoolean;
231972
232036
  isHidden: z$1.ZodBoolean;
@@ -231979,7 +232043,7 @@ declare const DTOProduct: z$1.ZodObject<{
231979
232043
  stripeProductFeatures: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
231980
232044
  stripeProductAdditionalFeatures: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
231981
232045
  }, "strip", z$1.ZodTypeAny, {
231982
- interval: "daily" | "monthly" | "weekly" | "yearly";
232046
+ interval: "daily" | "monthly" | "yearly";
231983
232047
  seatType: "Full" | "Builder";
231984
232048
  active: boolean;
231985
232049
  isActive: boolean;
@@ -231995,7 +232059,7 @@ declare const DTOProduct: z$1.ZodObject<{
231995
232059
  stripeProductFeatures?: string[] | undefined;
231996
232060
  stripeProductAdditionalFeatures?: string[] | undefined;
231997
232061
  }, {
231998
- interval: "daily" | "monthly" | "weekly" | "yearly";
232062
+ interval: "daily" | "monthly" | "yearly";
231999
232063
  seatType: "Full" | "Builder";
232000
232064
  active: boolean;
232001
232065
  isActive: boolean;
@@ -232015,7 +232079,7 @@ declare const DTOProduct: z$1.ZodObject<{
232015
232079
  code: "free" | "pro" | "team" | "company" | "enterprise";
232016
232080
  allowedInviteRoles: ("Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor")[];
232017
232081
  prices: {
232018
- interval: "daily" | "monthly" | "weekly" | "yearly";
232082
+ interval: "daily" | "monthly" | "yearly";
232019
232083
  seatType: "Full" | "Builder";
232020
232084
  active: boolean;
232021
232085
  isActive: boolean;
@@ -232035,7 +232099,7 @@ declare const DTOProduct: z$1.ZodObject<{
232035
232099
  code: "free" | "pro" | "team" | "company" | "enterprise";
232036
232100
  allowedInviteRoles: ("Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor")[];
232037
232101
  prices: {
232038
- interval: "daily" | "monthly" | "weekly" | "yearly";
232102
+ interval: "daily" | "monthly" | "yearly";
232039
232103
  seatType: "Full" | "Builder";
232040
232104
  active: boolean;
232041
232105
  isActive: boolean;
@@ -232062,7 +232126,7 @@ declare const DTOAvailableProductListResponse: z$1.ZodObject<{
232062
232126
  /** @deprecated use `isActive` */
232063
232127
  active: z$1.ZodBoolean;
232064
232128
  amount: z$1.ZodNumber;
232065
- interval: z$1.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
232129
+ interval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
232066
232130
  isPricePerCreator: z$1.ZodBoolean;
232067
232131
  isTrial: z$1.ZodBoolean;
232068
232132
  isHidden: z$1.ZodBoolean;
@@ -232075,7 +232139,7 @@ declare const DTOAvailableProductListResponse: z$1.ZodObject<{
232075
232139
  stripeProductFeatures: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
232076
232140
  stripeProductAdditionalFeatures: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
232077
232141
  }, "strip", z$1.ZodTypeAny, {
232078
- interval: "daily" | "monthly" | "weekly" | "yearly";
232142
+ interval: "daily" | "monthly" | "yearly";
232079
232143
  seatType: "Full" | "Builder";
232080
232144
  active: boolean;
232081
232145
  isActive: boolean;
@@ -232091,7 +232155,7 @@ declare const DTOAvailableProductListResponse: z$1.ZodObject<{
232091
232155
  stripeProductFeatures?: string[] | undefined;
232092
232156
  stripeProductAdditionalFeatures?: string[] | undefined;
232093
232157
  }, {
232094
- interval: "daily" | "monthly" | "weekly" | "yearly";
232158
+ interval: "daily" | "monthly" | "yearly";
232095
232159
  seatType: "Full" | "Builder";
232096
232160
  active: boolean;
232097
232161
  isActive: boolean;
@@ -232111,7 +232175,7 @@ declare const DTOAvailableProductListResponse: z$1.ZodObject<{
232111
232175
  code: "free" | "pro" | "team" | "company" | "enterprise";
232112
232176
  allowedInviteRoles: ("Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor")[];
232113
232177
  prices: {
232114
- interval: "daily" | "monthly" | "weekly" | "yearly";
232178
+ interval: "daily" | "monthly" | "yearly";
232115
232179
  seatType: "Full" | "Builder";
232116
232180
  active: boolean;
232117
232181
  isActive: boolean;
@@ -232131,7 +232195,7 @@ declare const DTOAvailableProductListResponse: z$1.ZodObject<{
232131
232195
  code: "free" | "pro" | "team" | "company" | "enterprise";
232132
232196
  allowedInviteRoles: ("Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor")[];
232133
232197
  prices: {
232134
- interval: "daily" | "monthly" | "weekly" | "yearly";
232198
+ interval: "daily" | "monthly" | "yearly";
232135
232199
  seatType: "Full" | "Builder";
232136
232200
  active: boolean;
232137
232201
  isActive: boolean;
@@ -232153,7 +232217,7 @@ declare const DTOAvailableProductListResponse: z$1.ZodObject<{
232153
232217
  code: "free" | "pro" | "team" | "company" | "enterprise";
232154
232218
  allowedInviteRoles: ("Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor")[];
232155
232219
  prices: {
232156
- interval: "daily" | "monthly" | "weekly" | "yearly";
232220
+ interval: "daily" | "monthly" | "yearly";
232157
232221
  seatType: "Full" | "Builder";
232158
232222
  active: boolean;
232159
232223
  isActive: boolean;
@@ -232175,7 +232239,7 @@ declare const DTOAvailableProductListResponse: z$1.ZodObject<{
232175
232239
  code: "free" | "pro" | "team" | "company" | "enterprise";
232176
232240
  allowedInviteRoles: ("Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor")[];
232177
232241
  prices: {
232178
- interval: "daily" | "monthly" | "weekly" | "yearly";
232242
+ interval: "daily" | "monthly" | "yearly";
232179
232243
  seatType: "Full" | "Builder";
232180
232244
  active: boolean;
232181
232245
  isActive: boolean;
@@ -232990,7 +233054,7 @@ declare const DTOSubscription: z$1.ZodObject<{
232990
233054
  * @deprecated use `fullSeatPriceId` or `builderSeatPriceId`
232991
233055
  */
232992
233056
  planPriceId: z$1.ZodString;
232993
- planInterval: z$1.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
233057
+ planInterval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
232994
233058
  isPricePerCreator: z$1.ZodOptional<z$1.ZodBoolean>;
232995
233059
  legacyVersion: z$1.ZodOptional<z$1.ZodString>;
232996
233060
  seats: z$1.ZodNumber;
@@ -232999,6 +233063,7 @@ declare const DTOSubscription: z$1.ZodObject<{
232999
233063
  fullSeatLimit: z$1.ZodNumber;
233000
233064
  builderSeats: z$1.ZodNumber;
233001
233065
  builderSeatLimit: z$1.ZodNumber;
233066
+ additionalCredits: z$1.ZodNumber;
233002
233067
  currentPeriodStart: z$1.ZodOptional<z$1.ZodString>;
233003
233068
  currentPeriodEnd: z$1.ZodOptional<z$1.ZodString>;
233004
233069
  subscriptionStatusUpdatedAt: z$1.ZodOptional<z$1.ZodString>;
@@ -233031,14 +233096,16 @@ declare const DTOSubscription: z$1.ZodObject<{
233031
233096
  daysUntilDue: z$1.ZodOptional<z$1.ZodNumber>;
233032
233097
  fullSeatPriceId: z$1.ZodString;
233033
233098
  builderSeatPriceId: z$1.ZodOptional<z$1.ZodString>;
233099
+ additionalCreditsPriceId: z$1.ZodOptional<z$1.ZodString>;
233034
233100
  }, "strip", z$1.ZodTypeAny, {
233035
233101
  fullSeats: number;
233036
233102
  builderSeats: number;
233103
+ additionalCredits: number;
233037
233104
  amount: number;
233038
233105
  isTrial: boolean;
233039
233106
  product: "free" | "pro" | "team" | "company" | "enterprise";
233040
233107
  planPriceId: string;
233041
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
233108
+ planInterval: "daily" | "monthly" | "yearly";
233042
233109
  seats: number;
233043
233110
  seatLimit: number;
233044
233111
  fullSeatLimit: number;
@@ -233209,14 +233276,16 @@ declare const DTOSubscription: z$1.ZodObject<{
233209
233276
  billingType?: "Auto" | "Invoice" | undefined;
233210
233277
  daysUntilDue?: number | undefined;
233211
233278
  builderSeatPriceId?: string | undefined;
233279
+ additionalCreditsPriceId?: string | undefined;
233212
233280
  }, {
233213
233281
  fullSeats: number;
233214
233282
  builderSeats: number;
233283
+ additionalCredits: number;
233215
233284
  amount: number;
233216
233285
  isTrial: boolean;
233217
233286
  product: "free" | "pro" | "team" | "company" | "enterprise";
233218
233287
  planPriceId: string;
233219
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
233288
+ planInterval: "daily" | "monthly" | "yearly";
233220
233289
  seats: number;
233221
233290
  seatLimit: number;
233222
233291
  fullSeatLimit: number;
@@ -233387,6 +233456,7 @@ declare const DTOSubscription: z$1.ZodObject<{
233387
233456
  billingType?: "Auto" | "Invoice" | undefined;
233388
233457
  daysUntilDue?: number | undefined;
233389
233458
  builderSeatPriceId?: string | undefined;
233459
+ additionalCreditsPriceId?: string | undefined;
233390
233460
  }>;
233391
233461
  type DTOSubscription = z$1.infer<typeof DTOSubscription>;
233392
233462
  declare const DTOSubscriptionResponse: z$1.ZodObject<{
@@ -234041,7 +234111,7 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
234041
234111
  * @deprecated use `fullSeatPriceId` or `builderSeatPriceId`
234042
234112
  */
234043
234113
  planPriceId: z$1.ZodString;
234044
- planInterval: z$1.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
234114
+ planInterval: z$1.ZodEnum<["daily", "monthly", "yearly"]>;
234045
234115
  isPricePerCreator: z$1.ZodOptional<z$1.ZodBoolean>;
234046
234116
  legacyVersion: z$1.ZodOptional<z$1.ZodString>;
234047
234117
  seats: z$1.ZodNumber;
@@ -234050,6 +234120,7 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
234050
234120
  fullSeatLimit: z$1.ZodNumber;
234051
234121
  builderSeats: z$1.ZodNumber;
234052
234122
  builderSeatLimit: z$1.ZodNumber;
234123
+ additionalCredits: z$1.ZodNumber;
234053
234124
  currentPeriodStart: z$1.ZodOptional<z$1.ZodString>;
234054
234125
  currentPeriodEnd: z$1.ZodOptional<z$1.ZodString>;
234055
234126
  subscriptionStatusUpdatedAt: z$1.ZodOptional<z$1.ZodString>;
@@ -234082,14 +234153,16 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
234082
234153
  daysUntilDue: z$1.ZodOptional<z$1.ZodNumber>;
234083
234154
  fullSeatPriceId: z$1.ZodString;
234084
234155
  builderSeatPriceId: z$1.ZodOptional<z$1.ZodString>;
234156
+ additionalCreditsPriceId: z$1.ZodOptional<z$1.ZodString>;
234085
234157
  }, "strip", z$1.ZodTypeAny, {
234086
234158
  fullSeats: number;
234087
234159
  builderSeats: number;
234160
+ additionalCredits: number;
234088
234161
  amount: number;
234089
234162
  isTrial: boolean;
234090
234163
  product: "free" | "pro" | "team" | "company" | "enterprise";
234091
234164
  planPriceId: string;
234092
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
234165
+ planInterval: "daily" | "monthly" | "yearly";
234093
234166
  seats: number;
234094
234167
  seatLimit: number;
234095
234168
  fullSeatLimit: number;
@@ -234260,14 +234333,16 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
234260
234333
  billingType?: "Auto" | "Invoice" | undefined;
234261
234334
  daysUntilDue?: number | undefined;
234262
234335
  builderSeatPriceId?: string | undefined;
234336
+ additionalCreditsPriceId?: string | undefined;
234263
234337
  }, {
234264
234338
  fullSeats: number;
234265
234339
  builderSeats: number;
234340
+ additionalCredits: number;
234266
234341
  amount: number;
234267
234342
  isTrial: boolean;
234268
234343
  product: "free" | "pro" | "team" | "company" | "enterprise";
234269
234344
  planPriceId: string;
234270
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
234345
+ planInterval: "daily" | "monthly" | "yearly";
234271
234346
  seats: number;
234272
234347
  seatLimit: number;
234273
234348
  fullSeatLimit: number;
@@ -234438,6 +234513,7 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
234438
234513
  billingType?: "Auto" | "Invoice" | undefined;
234439
234514
  daysUntilDue?: number | undefined;
234440
234515
  builderSeatPriceId?: string | undefined;
234516
+ additionalCreditsPriceId?: string | undefined;
234441
234517
  }>;
234442
234518
  creditBalance: z$1.ZodOptional<z$1.ZodObject<{
234443
234519
  paidTopUp: z$1.ZodOptional<z$1.ZodObject<{
@@ -234596,11 +234672,12 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
234596
234672
  subscription: {
234597
234673
  fullSeats: number;
234598
234674
  builderSeats: number;
234675
+ additionalCredits: number;
234599
234676
  amount: number;
234600
234677
  isTrial: boolean;
234601
234678
  product: "free" | "pro" | "team" | "company" | "enterprise";
234602
234679
  planPriceId: string;
234603
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
234680
+ planInterval: "daily" | "monthly" | "yearly";
234604
234681
  seats: number;
234605
234682
  seatLimit: number;
234606
234683
  fullSeatLimit: number;
@@ -234771,6 +234848,7 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
234771
234848
  billingType?: "Auto" | "Invoice" | undefined;
234772
234849
  daysUntilDue?: number | undefined;
234773
234850
  builderSeatPriceId?: string | undefined;
234851
+ additionalCreditsPriceId?: string | undefined;
234774
234852
  };
234775
234853
  creditsPrices: {
234776
234854
  creditsToCentsConversionRate: number;
@@ -234807,11 +234885,12 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
234807
234885
  subscription: {
234808
234886
  fullSeats: number;
234809
234887
  builderSeats: number;
234888
+ additionalCredits: number;
234810
234889
  amount: number;
234811
234890
  isTrial: boolean;
234812
234891
  product: "free" | "pro" | "team" | "company" | "enterprise";
234813
234892
  planPriceId: string;
234814
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
234893
+ planInterval: "daily" | "monthly" | "yearly";
234815
234894
  seats: number;
234816
234895
  seatLimit: number;
234817
234896
  fullSeatLimit: number;
@@ -234982,6 +235061,7 @@ declare const DTOSubscriptionResponse: z$1.ZodObject<{
234982
235061
  billingType?: "Auto" | "Invoice" | undefined;
234983
235062
  daysUntilDue?: number | undefined;
234984
235063
  builderSeatPriceId?: string | undefined;
235064
+ additionalCreditsPriceId?: string | undefined;
234985
235065
  };
234986
235066
  creditsPrices: {
234987
235067
  creditsToCentsConversionRate: number;
@@ -235027,6 +235107,102 @@ declare const DTOCreditsPrices: z$1.ZodObject<{
235027
235107
  purchaseTopUpCreditsToCentsConversionRate: number;
235028
235108
  }>;
235029
235109
  type DTOCreditsPrices = z$1.infer<typeof DTOCreditsPrices>;
235110
+ declare const DTOSubscriptionUpdatePreview: z$1.ZodObject<{
235111
+ proration: z$1.ZodObject<{
235112
+ amount: z$1.ZodNumber;
235113
+ }, "strip", z$1.ZodTypeAny, {
235114
+ amount: number;
235115
+ }, {
235116
+ amount: number;
235117
+ }>;
235118
+ nextBillingCycle: z$1.ZodObject<{
235119
+ amount: z$1.ZodNumber;
235120
+ }, "strip", z$1.ZodTypeAny, {
235121
+ amount: number;
235122
+ }, {
235123
+ amount: number;
235124
+ }>;
235125
+ }, "strip", z$1.ZodTypeAny, {
235126
+ proration: {
235127
+ amount: number;
235128
+ };
235129
+ nextBillingCycle: {
235130
+ amount: number;
235131
+ };
235132
+ }, {
235133
+ proration: {
235134
+ amount: number;
235135
+ };
235136
+ nextBillingCycle: {
235137
+ amount: number;
235138
+ };
235139
+ }>;
235140
+ type DTOSubscriptionUpdatePreview = z$1.infer<typeof DTOSubscriptionUpdatePreview>;
235141
+ declare const DTOSubscriptionUpdatePreviewResponse: z$1.ZodObject<{
235142
+ preview: z$1.ZodObject<{
235143
+ proration: z$1.ZodObject<{
235144
+ amount: z$1.ZodNumber;
235145
+ }, "strip", z$1.ZodTypeAny, {
235146
+ amount: number;
235147
+ }, {
235148
+ amount: number;
235149
+ }>;
235150
+ nextBillingCycle: z$1.ZodObject<{
235151
+ amount: z$1.ZodNumber;
235152
+ }, "strip", z$1.ZodTypeAny, {
235153
+ amount: number;
235154
+ }, {
235155
+ amount: number;
235156
+ }>;
235157
+ }, "strip", z$1.ZodTypeAny, {
235158
+ proration: {
235159
+ amount: number;
235160
+ };
235161
+ nextBillingCycle: {
235162
+ amount: number;
235163
+ };
235164
+ }, {
235165
+ proration: {
235166
+ amount: number;
235167
+ };
235168
+ nextBillingCycle: {
235169
+ amount: number;
235170
+ };
235171
+ }>;
235172
+ }, "strip", z$1.ZodTypeAny, {
235173
+ preview: {
235174
+ proration: {
235175
+ amount: number;
235176
+ };
235177
+ nextBillingCycle: {
235178
+ amount: number;
235179
+ };
235180
+ };
235181
+ }, {
235182
+ preview: {
235183
+ proration: {
235184
+ amount: number;
235185
+ };
235186
+ nextBillingCycle: {
235187
+ amount: number;
235188
+ };
235189
+ };
235190
+ }>;
235191
+ type DTOSubscriptionUpdatePreviewResponse = z$1.infer<typeof DTOSubscriptionUpdatePreviewResponse>;
235192
+ declare const DTOSubscriptionUpdateInput: z$1.ZodObject<{
235193
+ additionalCredits: z$1.ZodNumber;
235194
+ builderSeats: z$1.ZodNumber;
235195
+ fullSeats: z$1.ZodNumber;
235196
+ }, "strip", z$1.ZodTypeAny, {
235197
+ fullSeats: number;
235198
+ builderSeats: number;
235199
+ additionalCredits: number;
235200
+ }, {
235201
+ fullSeats: number;
235202
+ builderSeats: number;
235203
+ additionalCredits: number;
235204
+ }>;
235205
+ type DTOSubscriptionUpdateInput = z$1.infer<typeof DTOSubscriptionUpdateInput>;
235030
235206
 
235031
235207
  declare const DTOTransferOwnershipPayload: z.ZodObject<{
235032
235208
  newOwnerId: z.ZodString;
@@ -235405,10 +235581,11 @@ declare const DTOWorkspace: z.ZodObject<{
235405
235581
  seatLimit: z.ZodNumber;
235406
235582
  monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
235407
235583
  monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
235408
- builderSeatLimit: z.ZodOptional<z.ZodNumber>;
235409
- fullSeatLimit: z.ZodOptional<z.ZodNumber>;
235410
- builderSeats: z.ZodOptional<z.ZodNumber>;
235411
- fullSeats: z.ZodOptional<z.ZodNumber>;
235584
+ builderSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
235585
+ fullSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
235586
+ additionalCredits: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
235587
+ builderSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
235588
+ fullSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
235412
235589
  status: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
235413
235590
  subscriptionStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete", z.ZodTypeDef, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete">>>, NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined>;
235414
235591
  internalStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
@@ -235416,19 +235593,20 @@ declare const DTOWorkspace: z.ZodObject<{
235416
235593
  stripeCustomerId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
235417
235594
  product: z.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
235418
235595
  planPriceId: z.ZodString;
235419
- planInterval: z.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
235596
+ planInterval: z.ZodEnum<["daily", "monthly", "yearly"]>;
235420
235597
  currentPeriodStart: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
235421
235598
  currentPeriodEnd: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
235422
235599
  cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
235423
235600
  fullSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
235424
235601
  builderSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
235602
+ additionalCreditsPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
235425
235603
  subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
235426
235604
  }, "strip", z.ZodTypeAny, {
235427
235605
  product: "company" | "enterprise" | "free" | "team" | "pro";
235428
235606
  seats: number;
235429
235607
  seatLimit: number;
235430
235608
  planPriceId: string;
235431
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
235609
+ planInterval: "daily" | "monthly" | "yearly";
235432
235610
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
235433
235611
  card?: {
235434
235612
  name?: string | null | undefined;
@@ -235442,6 +235620,7 @@ declare const DTOWorkspace: z.ZodObject<{
235442
235620
  monthlyCreditGrantAmount?: number | undefined;
235443
235621
  builderSeatLimit?: number | undefined;
235444
235622
  fullSeatLimit?: number | undefined;
235623
+ additionalCredits?: number | undefined;
235445
235624
  builderSeats?: number | undefined;
235446
235625
  fullSeats?: number | undefined;
235447
235626
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -235453,13 +235632,14 @@ declare const DTOWorkspace: z.ZodObject<{
235453
235632
  cancelAt?: string | undefined;
235454
235633
  fullSeatPriceId?: string | undefined;
235455
235634
  builderSeatPriceId?: string | undefined;
235635
+ additionalCreditsPriceId?: string | undefined;
235456
235636
  subscriptionStatusUpdatedAt?: string | undefined;
235457
235637
  }, {
235458
235638
  product: "company" | "enterprise" | "free" | "team" | "pro";
235459
235639
  seats: number;
235460
235640
  seatLimit: number;
235461
235641
  planPriceId: string;
235462
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
235642
+ planInterval: "daily" | "monthly" | "yearly";
235463
235643
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
235464
235644
  card?: {
235465
235645
  name?: string | null | undefined;
@@ -235471,10 +235651,11 @@ declare const DTOWorkspace: z.ZodObject<{
235471
235651
  } | null | undefined;
235472
235652
  monthlyCreditGrantAnchor?: string | null | undefined;
235473
235653
  monthlyCreditGrantAmount?: number | null | undefined;
235474
- builderSeatLimit?: number | undefined;
235475
- fullSeatLimit?: number | undefined;
235476
- builderSeats?: number | undefined;
235477
- fullSeats?: number | undefined;
235654
+ builderSeatLimit?: number | null | undefined;
235655
+ fullSeatLimit?: number | null | undefined;
235656
+ additionalCredits?: number | null | undefined;
235657
+ builderSeats?: number | null | undefined;
235658
+ fullSeats?: number | null | undefined;
235478
235659
  subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
235479
235660
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
235480
235661
  stripeSubscriptionId?: string | null | undefined;
@@ -235484,6 +235665,7 @@ declare const DTOWorkspace: z.ZodObject<{
235484
235665
  cancelAt?: string | null | undefined;
235485
235666
  fullSeatPriceId?: string | null | undefined;
235486
235667
  builderSeatPriceId?: string | null | undefined;
235668
+ additionalCreditsPriceId?: string | null | undefined;
235487
235669
  subscriptionStatusUpdatedAt?: string | null | undefined;
235488
235670
  }>;
235489
235671
  npmRegistry: z.ZodOptional<z.ZodObject<{
@@ -235552,7 +235734,7 @@ declare const DTOWorkspace: z.ZodObject<{
235552
235734
  seats: number;
235553
235735
  seatLimit: number;
235554
235736
  planPriceId: string;
235555
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
235737
+ planInterval: "daily" | "monthly" | "yearly";
235556
235738
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
235557
235739
  card?: {
235558
235740
  name?: string | null | undefined;
@@ -235566,6 +235748,7 @@ declare const DTOWorkspace: z.ZodObject<{
235566
235748
  monthlyCreditGrantAmount?: number | undefined;
235567
235749
  builderSeatLimit?: number | undefined;
235568
235750
  fullSeatLimit?: number | undefined;
235751
+ additionalCredits?: number | undefined;
235569
235752
  builderSeats?: number | undefined;
235570
235753
  fullSeats?: number | undefined;
235571
235754
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -235577,6 +235760,7 @@ declare const DTOWorkspace: z.ZodObject<{
235577
235760
  cancelAt?: string | undefined;
235578
235761
  fullSeatPriceId?: string | undefined;
235579
235762
  builderSeatPriceId?: string | undefined;
235763
+ additionalCreditsPriceId?: string | undefined;
235580
235764
  subscriptionStatusUpdatedAt?: string | undefined;
235581
235765
  };
235582
235766
  aiFeaturesEnabled: boolean;
@@ -235623,7 +235807,7 @@ declare const DTOWorkspace: z.ZodObject<{
235623
235807
  seats: number;
235624
235808
  seatLimit: number;
235625
235809
  planPriceId: string;
235626
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
235810
+ planInterval: "daily" | "monthly" | "yearly";
235627
235811
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
235628
235812
  card?: {
235629
235813
  name?: string | null | undefined;
@@ -235635,10 +235819,11 @@ declare const DTOWorkspace: z.ZodObject<{
235635
235819
  } | null | undefined;
235636
235820
  monthlyCreditGrantAnchor?: string | null | undefined;
235637
235821
  monthlyCreditGrantAmount?: number | null | undefined;
235638
- builderSeatLimit?: number | undefined;
235639
- fullSeatLimit?: number | undefined;
235640
- builderSeats?: number | undefined;
235641
- fullSeats?: number | undefined;
235822
+ builderSeatLimit?: number | null | undefined;
235823
+ fullSeatLimit?: number | null | undefined;
235824
+ additionalCredits?: number | null | undefined;
235825
+ builderSeats?: number | null | undefined;
235826
+ fullSeats?: number | null | undefined;
235642
235827
  subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
235643
235828
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
235644
235829
  stripeSubscriptionId?: string | null | undefined;
@@ -235648,6 +235833,7 @@ declare const DTOWorkspace: z.ZodObject<{
235648
235833
  cancelAt?: string | null | undefined;
235649
235834
  fullSeatPriceId?: string | null | undefined;
235650
235835
  builderSeatPriceId?: string | null | undefined;
235836
+ additionalCreditsPriceId?: string | null | undefined;
235651
235837
  subscriptionStatusUpdatedAt?: string | null | undefined;
235652
235838
  };
235653
235839
  npmRegistry?: {
@@ -235821,10 +236007,11 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
235821
236007
  seatLimit: z.ZodNumber;
235822
236008
  monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
235823
236009
  monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
235824
- builderSeatLimit: z.ZodOptional<z.ZodNumber>;
235825
- fullSeatLimit: z.ZodOptional<z.ZodNumber>;
235826
- builderSeats: z.ZodOptional<z.ZodNumber>;
235827
- fullSeats: z.ZodOptional<z.ZodNumber>;
236010
+ builderSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
236011
+ fullSeatLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
236012
+ additionalCredits: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
236013
+ builderSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
236014
+ fullSeats: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
235828
236015
  status: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
235829
236016
  subscriptionStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete", z.ZodTypeDef, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete">>>, NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined, "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined>;
235830
236017
  internalStatus: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free", z.ZodTypeDef, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free">>>, NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined, "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined>;
@@ -235832,19 +236019,20 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
235832
236019
  stripeCustomerId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
235833
236020
  product: z.ZodEnum<["free", "team", "company", "enterprise", "pro"]>;
235834
236021
  planPriceId: z.ZodString;
235835
- planInterval: z.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
236022
+ planInterval: z.ZodEnum<["daily", "monthly", "yearly"]>;
235836
236023
  currentPeriodStart: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
235837
236024
  currentPeriodEnd: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
235838
236025
  cancelAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
235839
236026
  fullSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
235840
236027
  builderSeatPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
236028
+ additionalCreditsPriceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
235841
236029
  subscriptionStatusUpdatedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
235842
236030
  }, "strip", z.ZodTypeAny, {
235843
236031
  product: "company" | "enterprise" | "free" | "team" | "pro";
235844
236032
  seats: number;
235845
236033
  seatLimit: number;
235846
236034
  planPriceId: string;
235847
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
236035
+ planInterval: "daily" | "monthly" | "yearly";
235848
236036
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
235849
236037
  card?: {
235850
236038
  name?: string | null | undefined;
@@ -235858,6 +236046,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
235858
236046
  monthlyCreditGrantAmount?: number | undefined;
235859
236047
  builderSeatLimit?: number | undefined;
235860
236048
  fullSeatLimit?: number | undefined;
236049
+ additionalCredits?: number | undefined;
235861
236050
  builderSeats?: number | undefined;
235862
236051
  fullSeats?: number | undefined;
235863
236052
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -235869,13 +236058,14 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
235869
236058
  cancelAt?: string | undefined;
235870
236059
  fullSeatPriceId?: string | undefined;
235871
236060
  builderSeatPriceId?: string | undefined;
236061
+ additionalCreditsPriceId?: string | undefined;
235872
236062
  subscriptionStatusUpdatedAt?: string | undefined;
235873
236063
  }, {
235874
236064
  product: "company" | "enterprise" | "free" | "team" | "pro";
235875
236065
  seats: number;
235876
236066
  seatLimit: number;
235877
236067
  planPriceId: string;
235878
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
236068
+ planInterval: "daily" | "monthly" | "yearly";
235879
236069
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
235880
236070
  card?: {
235881
236071
  name?: string | null | undefined;
@@ -235887,10 +236077,11 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
235887
236077
  } | null | undefined;
235888
236078
  monthlyCreditGrantAnchor?: string | null | undefined;
235889
236079
  monthlyCreditGrantAmount?: number | null | undefined;
235890
- builderSeatLimit?: number | undefined;
235891
- fullSeatLimit?: number | undefined;
235892
- builderSeats?: number | undefined;
235893
- fullSeats?: number | undefined;
236080
+ builderSeatLimit?: number | null | undefined;
236081
+ fullSeatLimit?: number | null | undefined;
236082
+ additionalCredits?: number | null | undefined;
236083
+ builderSeats?: number | null | undefined;
236084
+ fullSeats?: number | null | undefined;
235894
236085
  subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
235895
236086
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
235896
236087
  stripeSubscriptionId?: string | null | undefined;
@@ -235900,6 +236091,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
235900
236091
  cancelAt?: string | null | undefined;
235901
236092
  fullSeatPriceId?: string | null | undefined;
235902
236093
  builderSeatPriceId?: string | null | undefined;
236094
+ additionalCreditsPriceId?: string | null | undefined;
235903
236095
  subscriptionStatusUpdatedAt?: string | null | undefined;
235904
236096
  }>;
235905
236097
  npmRegistry: z.ZodOptional<z.ZodObject<{
@@ -235968,7 +236160,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
235968
236160
  seats: number;
235969
236161
  seatLimit: number;
235970
236162
  planPriceId: string;
235971
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
236163
+ planInterval: "daily" | "monthly" | "yearly";
235972
236164
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
235973
236165
  card?: {
235974
236166
  name?: string | null | undefined;
@@ -235982,6 +236174,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
235982
236174
  monthlyCreditGrantAmount?: number | undefined;
235983
236175
  builderSeatLimit?: number | undefined;
235984
236176
  fullSeatLimit?: number | undefined;
236177
+ additionalCredits?: number | undefined;
235985
236178
  builderSeats?: number | undefined;
235986
236179
  fullSeats?: number | undefined;
235987
236180
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -235993,6 +236186,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
235993
236186
  cancelAt?: string | undefined;
235994
236187
  fullSeatPriceId?: string | undefined;
235995
236188
  builderSeatPriceId?: string | undefined;
236189
+ additionalCreditsPriceId?: string | undefined;
235996
236190
  subscriptionStatusUpdatedAt?: string | undefined;
235997
236191
  };
235998
236192
  aiFeaturesEnabled: boolean;
@@ -236039,7 +236233,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
236039
236233
  seats: number;
236040
236234
  seatLimit: number;
236041
236235
  planPriceId: string;
236042
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
236236
+ planInterval: "daily" | "monthly" | "yearly";
236043
236237
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
236044
236238
  card?: {
236045
236239
  name?: string | null | undefined;
@@ -236051,10 +236245,11 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
236051
236245
  } | null | undefined;
236052
236246
  monthlyCreditGrantAnchor?: string | null | undefined;
236053
236247
  monthlyCreditGrantAmount?: number | null | undefined;
236054
- builderSeatLimit?: number | undefined;
236055
- fullSeatLimit?: number | undefined;
236056
- builderSeats?: number | undefined;
236057
- fullSeats?: number | undefined;
236248
+ builderSeatLimit?: number | null | undefined;
236249
+ fullSeatLimit?: number | null | undefined;
236250
+ additionalCredits?: number | null | undefined;
236251
+ builderSeats?: number | null | undefined;
236252
+ fullSeats?: number | null | undefined;
236058
236253
  subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
236059
236254
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
236060
236255
  stripeSubscriptionId?: string | null | undefined;
@@ -236064,6 +236259,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
236064
236259
  cancelAt?: string | null | undefined;
236065
236260
  fullSeatPriceId?: string | null | undefined;
236066
236261
  builderSeatPriceId?: string | null | undefined;
236262
+ additionalCreditsPriceId?: string | null | undefined;
236067
236263
  subscriptionStatusUpdatedAt?: string | null | undefined;
236068
236264
  };
236069
236265
  npmRegistry?: {
@@ -236112,7 +236308,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
236112
236308
  seats: number;
236113
236309
  seatLimit: number;
236114
236310
  planPriceId: string;
236115
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
236311
+ planInterval: "daily" | "monthly" | "yearly";
236116
236312
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
236117
236313
  card?: {
236118
236314
  name?: string | null | undefined;
@@ -236126,6 +236322,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
236126
236322
  monthlyCreditGrantAmount?: number | undefined;
236127
236323
  builderSeatLimit?: number | undefined;
236128
236324
  fullSeatLimit?: number | undefined;
236325
+ additionalCredits?: number | undefined;
236129
236326
  builderSeats?: number | undefined;
236130
236327
  fullSeats?: number | undefined;
236131
236328
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -236137,6 +236334,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
236137
236334
  cancelAt?: string | undefined;
236138
236335
  fullSeatPriceId?: string | undefined;
236139
236336
  builderSeatPriceId?: string | undefined;
236337
+ additionalCreditsPriceId?: string | undefined;
236140
236338
  subscriptionStatusUpdatedAt?: string | undefined;
236141
236339
  };
236142
236340
  aiFeaturesEnabled: boolean;
@@ -236185,7 +236383,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
236185
236383
  seats: number;
236186
236384
  seatLimit: number;
236187
236385
  planPriceId: string;
236188
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
236386
+ planInterval: "daily" | "monthly" | "yearly";
236189
236387
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
236190
236388
  card?: {
236191
236389
  name?: string | null | undefined;
@@ -236197,10 +236395,11 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
236197
236395
  } | null | undefined;
236198
236396
  monthlyCreditGrantAnchor?: string | null | undefined;
236199
236397
  monthlyCreditGrantAmount?: number | null | undefined;
236200
- builderSeatLimit?: number | undefined;
236201
- fullSeatLimit?: number | undefined;
236202
- builderSeats?: number | undefined;
236203
- fullSeats?: number | undefined;
236398
+ builderSeatLimit?: number | null | undefined;
236399
+ fullSeatLimit?: number | null | undefined;
236400
+ additionalCredits?: number | null | undefined;
236401
+ builderSeats?: number | null | undefined;
236402
+ fullSeats?: number | null | undefined;
236204
236403
  subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | null | undefined;
236205
236404
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | null | undefined;
236206
236405
  stripeSubscriptionId?: string | null | undefined;
@@ -236210,6 +236409,7 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
236210
236409
  cancelAt?: string | null | undefined;
236211
236410
  fullSeatPriceId?: string | null | undefined;
236212
236411
  builderSeatPriceId?: string | null | undefined;
236412
+ additionalCreditsPriceId?: string | null | undefined;
236213
236413
  subscriptionStatusUpdatedAt?: string | null | undefined;
236214
236414
  };
236215
236415
  npmRegistry?: {
@@ -246874,7 +247074,7 @@ declare class DesignSystemsEndpoint {
246874
247074
  seats: number;
246875
247075
  seatLimit: number;
246876
247076
  planPriceId: string;
246877
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
247077
+ planInterval: "daily" | "monthly" | "yearly";
246878
247078
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
246879
247079
  card?: {
246880
247080
  name?: string | null | undefined;
@@ -246888,6 +247088,7 @@ declare class DesignSystemsEndpoint {
246888
247088
  monthlyCreditGrantAmount?: number | undefined;
246889
247089
  builderSeatLimit?: number | undefined;
246890
247090
  fullSeatLimit?: number | undefined;
247091
+ additionalCredits?: number | undefined;
246891
247092
  builderSeats?: number | undefined;
246892
247093
  fullSeats?: number | undefined;
246893
247094
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -246899,6 +247100,7 @@ declare class DesignSystemsEndpoint {
246899
247100
  cancelAt?: string | undefined;
246900
247101
  fullSeatPriceId?: string | undefined;
246901
247102
  builderSeatPriceId?: string | undefined;
247103
+ additionalCreditsPriceId?: string | undefined;
246902
247104
  subscriptionStatusUpdatedAt?: string | undefined;
246903
247105
  };
246904
247106
  aiFeaturesEnabled: boolean;
@@ -253329,7 +253531,7 @@ declare class WorkspaceInvitationsEndpoint {
253329
253531
  seats: number;
253330
253532
  seatLimit: number;
253331
253533
  planPriceId: string;
253332
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
253534
+ planInterval: "daily" | "monthly" | "yearly";
253333
253535
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
253334
253536
  card?: {
253335
253537
  name?: string | null | undefined;
@@ -253343,6 +253545,7 @@ declare class WorkspaceInvitationsEndpoint {
253343
253545
  monthlyCreditGrantAmount?: number | undefined;
253344
253546
  builderSeatLimit?: number | undefined;
253345
253547
  fullSeatLimit?: number | undefined;
253548
+ additionalCredits?: number | undefined;
253346
253549
  builderSeats?: number | undefined;
253347
253550
  fullSeats?: number | undefined;
253348
253551
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -253354,6 +253557,7 @@ declare class WorkspaceInvitationsEndpoint {
253354
253557
  cancelAt?: string | undefined;
253355
253558
  fullSeatPriceId?: string | undefined;
253356
253559
  builderSeatPriceId?: string | undefined;
253560
+ additionalCreditsPriceId?: string | undefined;
253357
253561
  subscriptionStatusUpdatedAt?: string | undefined;
253358
253562
  };
253359
253563
  aiFeaturesEnabled: boolean;
@@ -253466,7 +253670,7 @@ declare class WorkspaceMembersEndpoint {
253466
253670
  seats: number;
253467
253671
  seatLimit: number;
253468
253672
  planPriceId: string;
253469
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
253673
+ planInterval: "daily" | "monthly" | "yearly";
253470
253674
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
253471
253675
  card?: {
253472
253676
  name?: string | null | undefined;
@@ -253480,6 +253684,7 @@ declare class WorkspaceMembersEndpoint {
253480
253684
  monthlyCreditGrantAmount?: number | undefined;
253481
253685
  builderSeatLimit?: number | undefined;
253482
253686
  fullSeatLimit?: number | undefined;
253687
+ additionalCredits?: number | undefined;
253483
253688
  builderSeats?: number | undefined;
253484
253689
  fullSeats?: number | undefined;
253485
253690
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -253491,6 +253696,7 @@ declare class WorkspaceMembersEndpoint {
253491
253696
  cancelAt?: string | undefined;
253492
253697
  fullSeatPriceId?: string | undefined;
253493
253698
  builderSeatPriceId?: string | undefined;
253699
+ additionalCreditsPriceId?: string | undefined;
253494
253700
  subscriptionStatusUpdatedAt?: string | undefined;
253495
253701
  };
253496
253702
  aiFeaturesEnabled: boolean;
@@ -253541,7 +253747,7 @@ declare class WorkspaceMembersEndpoint {
253541
253747
  seats: number;
253542
253748
  seatLimit: number;
253543
253749
  planPriceId: string;
253544
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
253750
+ planInterval: "daily" | "monthly" | "yearly";
253545
253751
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
253546
253752
  card?: {
253547
253753
  name?: string | null | undefined;
@@ -253555,6 +253761,7 @@ declare class WorkspaceMembersEndpoint {
253555
253761
  monthlyCreditGrantAmount?: number | undefined;
253556
253762
  builderSeatLimit?: number | undefined;
253557
253763
  fullSeatLimit?: number | undefined;
253764
+ additionalCredits?: number | undefined;
253558
253765
  builderSeats?: number | undefined;
253559
253766
  fullSeats?: number | undefined;
253560
253767
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -253566,6 +253773,7 @@ declare class WorkspaceMembersEndpoint {
253566
253773
  cancelAt?: string | undefined;
253567
253774
  fullSeatPriceId?: string | undefined;
253568
253775
  builderSeatPriceId?: string | undefined;
253776
+ additionalCreditsPriceId?: string | undefined;
253569
253777
  subscriptionStatusUpdatedAt?: string | undefined;
253570
253778
  };
253571
253779
  aiFeaturesEnabled: boolean;
@@ -253611,6 +253819,236 @@ declare class WorkspaceNpmRegistryEndpoint {
253611
253819
  }>;
253612
253820
  }
253613
253821
 
253822
+ declare class WorkspaceSubscriptionEndpoint {
253823
+ private readonly requestExecutor;
253824
+ constructor(requestExecutor: RequestExecutor);
253825
+ get(workspaceId: string): Promise<{
253826
+ subscription: {
253827
+ fullSeats: number;
253828
+ builderSeats: number;
253829
+ additionalCredits: number;
253830
+ amount: number;
253831
+ isTrial: boolean;
253832
+ product: "free" | "pro" | "team" | "company" | "enterprise";
253833
+ planPriceId: string;
253834
+ planInterval: "daily" | "monthly" | "yearly";
253835
+ seats: number;
253836
+ seatLimit: number;
253837
+ fullSeatLimit: number;
253838
+ builderSeatLimit: number;
253839
+ fullSeatPriceId: string;
253840
+ status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
253841
+ isPricePerCreator?: boolean | undefined;
253842
+ legacyVersion?: string | undefined;
253843
+ stripeProductDescription?: string | undefined;
253844
+ stripeProductFeatures?: string[] | undefined;
253845
+ stripeProductAdditionalFeatures?: string[] | undefined;
253846
+ stripeSubscriptionId?: string | undefined;
253847
+ stripeCustomerId?: string | undefined;
253848
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
253849
+ internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
253850
+ featuresSummary?: {
253851
+ analytics: {
253852
+ errorMessage: string;
253853
+ errorReason: string;
253854
+ max?: number | undefined;
253855
+ };
253856
+ themes: {
253857
+ errorMessage: string;
253858
+ errorReason: string;
253859
+ max?: number | undefined;
253860
+ };
253861
+ designSystems: {
253862
+ errorMessage: string;
253863
+ errorReason: string;
253864
+ max?: number | undefined;
253865
+ };
253866
+ designSystemSources: {
253867
+ errorMessage: string;
253868
+ errorReason: string;
253869
+ noImportJobsErrorMessage: string;
253870
+ noImportJobsErrorReason: string;
253871
+ max?: number | undefined;
253872
+ };
253873
+ designSystemVersions: {
253874
+ errorMessage: string;
253875
+ errorReason: string;
253876
+ max?: number | undefined;
253877
+ };
253878
+ brands: {
253879
+ errorMessage: string;
253880
+ errorReason: string;
253881
+ max?: number | undefined;
253882
+ };
253883
+ codegenSchedules: {
253884
+ errorMessage: string;
253885
+ errorReason: string;
253886
+ max?: number | undefined;
253887
+ };
253888
+ publicDocumentation: {
253889
+ errorMessage: string;
253890
+ errorReason: string;
253891
+ enabled: boolean;
253892
+ };
253893
+ customDocumentationUrl: {
253894
+ errorMessage: string;
253895
+ errorReason: string;
253896
+ enabled: boolean;
253897
+ };
253898
+ customDocumentationViewButton: {
253899
+ errorMessage: string;
253900
+ errorReason: string;
253901
+ enabled: boolean;
253902
+ };
253903
+ designSystemSourceAutoImport: {
253904
+ errorMessage: string;
253905
+ errorReason: string;
253906
+ enabled: boolean;
253907
+ };
253908
+ designSystemSlug: {
253909
+ errorMessage: string;
253910
+ errorReason: string;
253911
+ enabled: boolean;
253912
+ };
253913
+ ipWhitelisting: {
253914
+ errorMessage: string;
253915
+ errorReason: string;
253916
+ enabled: boolean;
253917
+ };
253918
+ npmRegistry: {
253919
+ errorMessage: string;
253920
+ errorReason: string;
253921
+ enabled: boolean;
253922
+ };
253923
+ sso: {
253924
+ errorMessage: string;
253925
+ errorReason: string;
253926
+ enabled: boolean;
253927
+ };
253928
+ workspacePaidSeats: {
253929
+ errorMessage: string;
253930
+ errorReason: string;
253931
+ max?: number | undefined;
253932
+ };
253933
+ workspaceViewers: {
253934
+ errorMessage: string;
253935
+ errorReason: string;
253936
+ max?: number | undefined;
253937
+ };
253938
+ customDocumentationExporter: {
253939
+ errorMessage: string;
253940
+ errorReason: string;
253941
+ enabled: boolean;
253942
+ };
253943
+ protectedPages: {
253944
+ errorMessage: string;
253945
+ errorReason: string;
253946
+ enabled: boolean;
253947
+ };
253948
+ approvals: {
253949
+ errorMessage: string;
253950
+ errorReason: string;
253951
+ enabled: boolean;
253952
+ };
253953
+ selectivePublishing: {
253954
+ errorMessage: string;
253955
+ errorReason: string;
253956
+ enabled: boolean;
253957
+ };
253958
+ designSystemAccessModes: {
253959
+ errorMessage: string;
253960
+ errorReason: string;
253961
+ enabled: boolean;
253962
+ };
253963
+ designSystemRoles: {
253964
+ errorMessage: string;
253965
+ errorReason: string;
253966
+ enabled: boolean;
253967
+ };
253968
+ documentationPageRedirects: {
253969
+ errorMessage: string;
253970
+ errorReason: string;
253971
+ enabled: boolean;
253972
+ };
253973
+ designSystemFileSize: {
253974
+ errorMessage: string;
253975
+ errorReason: string;
253976
+ max?: number | undefined;
253977
+ };
253978
+ forgeActiveProjects: {
253979
+ errorMessage: string;
253980
+ errorReason: string;
253981
+ max?: number | undefined;
253982
+ };
253983
+ forgeProjectFileSize: {
253984
+ errorMessage: string;
253985
+ errorReason: string;
253986
+ max?: number | undefined;
253987
+ };
253988
+ } | undefined;
253989
+ stripeSubscriptionMainItemId?: string | undefined;
253990
+ currentPeriodStart?: string | undefined;
253991
+ currentPeriodEnd?: string | undefined;
253992
+ subscriptionStatusUpdatedAt?: string | undefined;
253993
+ cancelAt?: string | null | undefined;
253994
+ card?: {
253995
+ name?: string | null | undefined;
253996
+ cardId?: string | null | undefined;
253997
+ last4?: string | null | undefined;
253998
+ expiryMonth?: string | null | undefined;
253999
+ expiryYear?: string | null | undefined;
254000
+ brand?: string | null | undefined;
254001
+ } | undefined;
254002
+ billingType?: "Auto" | "Invoice" | undefined;
254003
+ daysUntilDue?: number | undefined;
254004
+ builderSeatPriceId?: string | undefined;
254005
+ additionalCreditsPriceId?: string | undefined;
254006
+ };
254007
+ creditsPrices: {
254008
+ creditsToCentsConversionRate: number;
254009
+ purchaseTopUpCreditsToCentsConversionRate: number;
254010
+ };
254011
+ creditBalance?: {
254012
+ free?: {
254013
+ credits: {
254014
+ total: number;
254015
+ used: number;
254016
+ balance: number;
254017
+ resetAt?: string | undefined;
254018
+ };
254019
+ spendingLimit: {
254020
+ total: number;
254021
+ used: number;
254022
+ balance: number;
254023
+ resetAt?: string | undefined;
254024
+ };
254025
+ } | undefined;
254026
+ paidTopUp?: {
254027
+ total: number;
254028
+ used: number;
254029
+ balance: number;
254030
+ } | undefined;
254031
+ paidRecurring?: {
254032
+ total: number;
254033
+ used: number;
254034
+ balance: number;
254035
+ resetAt?: string | undefined;
254036
+ } | undefined;
254037
+ } | undefined;
254038
+ }>;
254039
+ update(workspaceId: string, body: DTOSubscriptionUpdateInput): Promise<any>;
254040
+ previewUpdate(workspaceId: string, body: DTOSubscriptionUpdateInput): Promise<{
254041
+ preview: {
254042
+ proration: {
254043
+ amount: number;
254044
+ };
254045
+ nextBillingCycle: {
254046
+ amount: number;
254047
+ };
254048
+ };
254049
+ }>;
254050
+ }
254051
+
253614
254052
  declare class WorkspacesEndpoint {
253615
254053
  private readonly requestExecutor;
253616
254054
  members: WorkspaceMembersEndpoint;
@@ -253618,6 +254056,7 @@ declare class WorkspacesEndpoint {
253618
254056
  npmRegistry: WorkspaceNpmRegistryEndpoint;
253619
254057
  chatThreads: WorkspaceChatThreadsEndpoint;
253620
254058
  integrations: WorkspaceIntegrationsEndpoint;
254059
+ subscription: WorkspaceSubscriptionEndpoint;
253621
254060
  constructor(requestExecutor: RequestExecutor);
253622
254061
  create(body: DTOWorkspaceCreateInput): Promise<{
253623
254062
  workspace: {
@@ -253649,7 +254088,7 @@ declare class WorkspacesEndpoint {
253649
254088
  seats: number;
253650
254089
  seatLimit: number;
253651
254090
  planPriceId: string;
253652
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
254091
+ planInterval: "daily" | "monthly" | "yearly";
253653
254092
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
253654
254093
  card?: {
253655
254094
  name?: string | null | undefined;
@@ -253663,6 +254102,7 @@ declare class WorkspacesEndpoint {
253663
254102
  monthlyCreditGrantAmount?: number | undefined;
253664
254103
  builderSeatLimit?: number | undefined;
253665
254104
  fullSeatLimit?: number | undefined;
254105
+ additionalCredits?: number | undefined;
253666
254106
  builderSeats?: number | undefined;
253667
254107
  fullSeats?: number | undefined;
253668
254108
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -253674,6 +254114,7 @@ declare class WorkspacesEndpoint {
253674
254114
  cancelAt?: string | undefined;
253675
254115
  fullSeatPriceId?: string | undefined;
253676
254116
  builderSeatPriceId?: string | undefined;
254117
+ additionalCreditsPriceId?: string | undefined;
253677
254118
  subscriptionStatusUpdatedAt?: string | undefined;
253678
254119
  };
253679
254120
  aiFeaturesEnabled: boolean;
@@ -253724,7 +254165,7 @@ declare class WorkspacesEndpoint {
253724
254165
  seats: number;
253725
254166
  seatLimit: number;
253726
254167
  planPriceId: string;
253727
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
254168
+ planInterval: "daily" | "monthly" | "yearly";
253728
254169
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
253729
254170
  card?: {
253730
254171
  name?: string | null | undefined;
@@ -253738,6 +254179,7 @@ declare class WorkspacesEndpoint {
253738
254179
  monthlyCreditGrantAmount?: number | undefined;
253739
254180
  builderSeatLimit?: number | undefined;
253740
254181
  fullSeatLimit?: number | undefined;
254182
+ additionalCredits?: number | undefined;
253741
254183
  builderSeats?: number | undefined;
253742
254184
  fullSeats?: number | undefined;
253743
254185
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -253749,6 +254191,7 @@ declare class WorkspacesEndpoint {
253749
254191
  cancelAt?: string | undefined;
253750
254192
  fullSeatPriceId?: string | undefined;
253751
254193
  builderSeatPriceId?: string | undefined;
254194
+ additionalCreditsPriceId?: string | undefined;
253752
254195
  subscriptionStatusUpdatedAt?: string | undefined;
253753
254196
  };
253754
254197
  aiFeaturesEnabled: boolean;
@@ -253803,7 +254246,7 @@ declare class WorkspacesEndpoint {
253803
254246
  seats: number;
253804
254247
  seatLimit: number;
253805
254248
  planPriceId: string;
253806
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
254249
+ planInterval: "daily" | "monthly" | "yearly";
253807
254250
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
253808
254251
  card?: {
253809
254252
  name?: string | null | undefined;
@@ -253817,6 +254260,7 @@ declare class WorkspacesEndpoint {
253817
254260
  monthlyCreditGrantAmount?: number | undefined;
253818
254261
  builderSeatLimit?: number | undefined;
253819
254262
  fullSeatLimit?: number | undefined;
254263
+ additionalCredits?: number | undefined;
253820
254264
  builderSeats?: number | undefined;
253821
254265
  fullSeats?: number | undefined;
253822
254266
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -253828,6 +254272,7 @@ declare class WorkspacesEndpoint {
253828
254272
  cancelAt?: string | undefined;
253829
254273
  fullSeatPriceId?: string | undefined;
253830
254274
  builderSeatPriceId?: string | undefined;
254275
+ additionalCreditsPriceId?: string | undefined;
253831
254276
  subscriptionStatusUpdatedAt?: string | undefined;
253832
254277
  };
253833
254278
  aiFeaturesEnabled: boolean;
@@ -253848,7 +254293,6 @@ declare class WorkspacesEndpoint {
253848
254293
  };
253849
254294
  }>;
253850
254295
  delete(workspaceId: string): Promise<any>;
253851
- subscription(workspaceId: string): Promise<any>;
253852
254296
  getPortalSettings(workspaceId: string): Promise<{
253853
254297
  portalSettings: {
253854
254298
  id: string;
@@ -253935,7 +254379,7 @@ declare class WorkspacesEndpoint {
253935
254379
  seats: number;
253936
254380
  seatLimit: number;
253937
254381
  planPriceId: string;
253938
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
254382
+ planInterval: "daily" | "monthly" | "yearly";
253939
254383
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
253940
254384
  card?: {
253941
254385
  name?: string | null | undefined;
@@ -253949,6 +254393,7 @@ declare class WorkspacesEndpoint {
253949
254393
  monthlyCreditGrantAmount?: number | undefined;
253950
254394
  builderSeatLimit?: number | undefined;
253951
254395
  fullSeatLimit?: number | undefined;
254396
+ additionalCredits?: number | undefined;
253952
254397
  builderSeats?: number | undefined;
253953
254398
  fullSeats?: number | undefined;
253954
254399
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -253960,6 +254405,7 @@ declare class WorkspacesEndpoint {
253960
254405
  cancelAt?: string | undefined;
253961
254406
  fullSeatPriceId?: string | undefined;
253962
254407
  builderSeatPriceId?: string | undefined;
254408
+ additionalCreditsPriceId?: string | undefined;
253963
254409
  subscriptionStatusUpdatedAt?: string | undefined;
253964
254410
  };
253965
254411
  aiFeaturesEnabled: boolean;
@@ -254229,7 +254675,7 @@ declare class UsersEndpoint {
254229
254675
  seats: number;
254230
254676
  seatLimit: number;
254231
254677
  planPriceId: string;
254232
- planInterval: "daily" | "monthly" | "weekly" | "yearly";
254678
+ planInterval: "daily" | "monthly" | "yearly";
254233
254679
  status?: NonNullable<"active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free"> | undefined;
254234
254680
  card?: {
254235
254681
  name?: string | null | undefined;
@@ -254243,6 +254689,7 @@ declare class UsersEndpoint {
254243
254689
  monthlyCreditGrantAmount?: number | undefined;
254244
254690
  builderSeatLimit?: number | undefined;
254245
254691
  fullSeatLimit?: number | undefined;
254692
+ additionalCredits?: number | undefined;
254246
254693
  builderSeats?: number | undefined;
254247
254694
  fullSeats?: number | undefined;
254248
254695
  subscriptionStatus?: NonNullable<"unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete"> | undefined;
@@ -254254,6 +254701,7 @@ declare class UsersEndpoint {
254254
254701
  cancelAt?: string | undefined;
254255
254702
  fullSeatPriceId?: string | undefined;
254256
254703
  builderSeatPriceId?: string | undefined;
254704
+ additionalCreditsPriceId?: string | undefined;
254257
254705
  subscriptionStatusUpdatedAt?: string | undefined;
254258
254706
  };
254259
254707
  aiFeaturesEnabled: boolean;
@@ -257144,4 +257592,4 @@ declare function isValidRedirectPath(path: string): {
257144
257592
  reason: ValidationErrorReason | undefined;
257145
257593
  };
257146
257594
 
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 };
257595
+ export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeatureSandbox, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectDefaultRole, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, zodQueryBoolean };