@supernova-studio/client 1.40.3 → 1.40.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +294 -59
- package/dist/index.d.ts +294 -59
- package/dist/index.js +43 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +42 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -373,6 +373,8 @@ declare const DTOAppBootstrapDataResponse: z$1.ZodObject<{
|
|
|
373
373
|
currentPeriodStart: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
374
374
|
currentPeriodEnd: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
375
375
|
cancelAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
376
|
+
fullSeatPriceId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
377
|
+
builderSeatPriceId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
376
378
|
subscriptionStatusUpdatedAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
377
379
|
}, "strip", z$1.ZodTypeAny, {
|
|
378
380
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -402,6 +404,8 @@ declare const DTOAppBootstrapDataResponse: z$1.ZodObject<{
|
|
|
402
404
|
currentPeriodStart?: string | undefined;
|
|
403
405
|
currentPeriodEnd?: string | undefined;
|
|
404
406
|
cancelAt?: string | undefined;
|
|
407
|
+
fullSeatPriceId?: string | undefined;
|
|
408
|
+
builderSeatPriceId?: string | undefined;
|
|
405
409
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
406
410
|
}, {
|
|
407
411
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -431,6 +435,8 @@ declare const DTOAppBootstrapDataResponse: z$1.ZodObject<{
|
|
|
431
435
|
currentPeriodStart?: string | null | undefined;
|
|
432
436
|
currentPeriodEnd?: string | null | undefined;
|
|
433
437
|
cancelAt?: string | null | undefined;
|
|
438
|
+
fullSeatPriceId?: string | null | undefined;
|
|
439
|
+
builderSeatPriceId?: string | null | undefined;
|
|
434
440
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
435
441
|
}>;
|
|
436
442
|
npmRegistry: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -522,6 +528,8 @@ declare const DTOAppBootstrapDataResponse: z$1.ZodObject<{
|
|
|
522
528
|
currentPeriodStart?: string | undefined;
|
|
523
529
|
currentPeriodEnd?: string | undefined;
|
|
524
530
|
cancelAt?: string | undefined;
|
|
531
|
+
fullSeatPriceId?: string | undefined;
|
|
532
|
+
builderSeatPriceId?: string | undefined;
|
|
525
533
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
526
534
|
};
|
|
527
535
|
aiFeaturesEnabled: boolean;
|
|
@@ -591,6 +599,8 @@ declare const DTOAppBootstrapDataResponse: z$1.ZodObject<{
|
|
|
591
599
|
currentPeriodStart?: string | null | undefined;
|
|
592
600
|
currentPeriodEnd?: string | null | undefined;
|
|
593
601
|
cancelAt?: string | null | undefined;
|
|
602
|
+
fullSeatPriceId?: string | null | undefined;
|
|
603
|
+
builderSeatPriceId?: string | null | undefined;
|
|
594
604
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
595
605
|
};
|
|
596
606
|
npmRegistry?: {
|
|
@@ -666,6 +676,8 @@ declare const DTOAppBootstrapDataResponse: z$1.ZodObject<{
|
|
|
666
676
|
currentPeriodStart?: string | undefined;
|
|
667
677
|
currentPeriodEnd?: string | undefined;
|
|
668
678
|
cancelAt?: string | undefined;
|
|
679
|
+
fullSeatPriceId?: string | undefined;
|
|
680
|
+
builderSeatPriceId?: string | undefined;
|
|
669
681
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
670
682
|
};
|
|
671
683
|
aiFeaturesEnabled: boolean;
|
|
@@ -741,6 +753,8 @@ declare const DTOAppBootstrapDataResponse: z$1.ZodObject<{
|
|
|
741
753
|
currentPeriodStart?: string | null | undefined;
|
|
742
754
|
currentPeriodEnd?: string | null | undefined;
|
|
743
755
|
cancelAt?: string | null | undefined;
|
|
756
|
+
fullSeatPriceId?: string | null | undefined;
|
|
757
|
+
builderSeatPriceId?: string | null | undefined;
|
|
744
758
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
745
759
|
};
|
|
746
760
|
npmRegistry?: {
|
|
@@ -1047,6 +1061,8 @@ declare const DTOAppBootstrapDataResponse: z$1.ZodObject<{
|
|
|
1047
1061
|
currentPeriodStart?: string | undefined;
|
|
1048
1062
|
currentPeriodEnd?: string | undefined;
|
|
1049
1063
|
cancelAt?: string | undefined;
|
|
1064
|
+
fullSeatPriceId?: string | undefined;
|
|
1065
|
+
builderSeatPriceId?: string | undefined;
|
|
1050
1066
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
1051
1067
|
};
|
|
1052
1068
|
aiFeaturesEnabled: boolean;
|
|
@@ -1175,6 +1191,8 @@ declare const DTOAppBootstrapDataResponse: z$1.ZodObject<{
|
|
|
1175
1191
|
currentPeriodStart?: string | null | undefined;
|
|
1176
1192
|
currentPeriodEnd?: string | null | undefined;
|
|
1177
1193
|
cancelAt?: string | null | undefined;
|
|
1194
|
+
fullSeatPriceId?: string | null | undefined;
|
|
1195
|
+
builderSeatPriceId?: string | null | undefined;
|
|
1178
1196
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
1179
1197
|
};
|
|
1180
1198
|
npmRegistry?: {
|
|
@@ -10063,6 +10081,8 @@ declare const DTOUserDesignSystemsResponse: z$1.ZodObject<{
|
|
|
10063
10081
|
currentPeriodStart: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10064
10082
|
currentPeriodEnd: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10065
10083
|
cancelAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10084
|
+
fullSeatPriceId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10085
|
+
builderSeatPriceId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10066
10086
|
subscriptionStatusUpdatedAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10067
10087
|
}, "strip", z$1.ZodTypeAny, {
|
|
10068
10088
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -10092,6 +10112,8 @@ declare const DTOUserDesignSystemsResponse: z$1.ZodObject<{
|
|
|
10092
10112
|
currentPeriodStart?: string | undefined;
|
|
10093
10113
|
currentPeriodEnd?: string | undefined;
|
|
10094
10114
|
cancelAt?: string | undefined;
|
|
10115
|
+
fullSeatPriceId?: string | undefined;
|
|
10116
|
+
builderSeatPriceId?: string | undefined;
|
|
10095
10117
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
10096
10118
|
}, {
|
|
10097
10119
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -10121,6 +10143,8 @@ declare const DTOUserDesignSystemsResponse: z$1.ZodObject<{
|
|
|
10121
10143
|
currentPeriodStart?: string | null | undefined;
|
|
10122
10144
|
currentPeriodEnd?: string | null | undefined;
|
|
10123
10145
|
cancelAt?: string | null | undefined;
|
|
10146
|
+
fullSeatPriceId?: string | null | undefined;
|
|
10147
|
+
builderSeatPriceId?: string | null | undefined;
|
|
10124
10148
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
10125
10149
|
}>;
|
|
10126
10150
|
npmRegistry: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -10212,6 +10236,8 @@ declare const DTOUserDesignSystemsResponse: z$1.ZodObject<{
|
|
|
10212
10236
|
currentPeriodStart?: string | undefined;
|
|
10213
10237
|
currentPeriodEnd?: string | undefined;
|
|
10214
10238
|
cancelAt?: string | undefined;
|
|
10239
|
+
fullSeatPriceId?: string | undefined;
|
|
10240
|
+
builderSeatPriceId?: string | undefined;
|
|
10215
10241
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
10216
10242
|
};
|
|
10217
10243
|
aiFeaturesEnabled: boolean;
|
|
@@ -10281,6 +10307,8 @@ declare const DTOUserDesignSystemsResponse: z$1.ZodObject<{
|
|
|
10281
10307
|
currentPeriodStart?: string | null | undefined;
|
|
10282
10308
|
currentPeriodEnd?: string | null | undefined;
|
|
10283
10309
|
cancelAt?: string | null | undefined;
|
|
10310
|
+
fullSeatPriceId?: string | null | undefined;
|
|
10311
|
+
builderSeatPriceId?: string | null | undefined;
|
|
10284
10312
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
10285
10313
|
};
|
|
10286
10314
|
npmRegistry?: {
|
|
@@ -10382,6 +10410,8 @@ declare const DTOUserDesignSystemsResponse: z$1.ZodObject<{
|
|
|
10382
10410
|
currentPeriodStart?: string | undefined;
|
|
10383
10411
|
currentPeriodEnd?: string | undefined;
|
|
10384
10412
|
cancelAt?: string | undefined;
|
|
10413
|
+
fullSeatPriceId?: string | undefined;
|
|
10414
|
+
builderSeatPriceId?: string | undefined;
|
|
10385
10415
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
10386
10416
|
};
|
|
10387
10417
|
aiFeaturesEnabled: boolean;
|
|
@@ -10483,6 +10513,8 @@ declare const DTOUserDesignSystemsResponse: z$1.ZodObject<{
|
|
|
10483
10513
|
currentPeriodStart?: string | null | undefined;
|
|
10484
10514
|
currentPeriodEnd?: string | null | undefined;
|
|
10485
10515
|
cancelAt?: string | null | undefined;
|
|
10516
|
+
fullSeatPriceId?: string | null | undefined;
|
|
10517
|
+
builderSeatPriceId?: string | null | undefined;
|
|
10486
10518
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
10487
10519
|
};
|
|
10488
10520
|
npmRegistry?: {
|
|
@@ -82174,13 +82206,13 @@ declare const DTOForgeComponentSet: z$1.ZodObject<{
|
|
|
82174
82206
|
}>;
|
|
82175
82207
|
declare const DTOForgeIconSet: z$1.ZodObject<{
|
|
82176
82208
|
type: z$1.ZodEnum<["Phosphor", "Lucide", "Tabler"]>;
|
|
82177
|
-
variant: z$1.
|
|
82209
|
+
variant: z$1.ZodOptional<z$1.ZodString>;
|
|
82178
82210
|
}, "strip", z$1.ZodTypeAny, {
|
|
82179
82211
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
82180
|
-
variant
|
|
82212
|
+
variant?: string | undefined;
|
|
82181
82213
|
}, {
|
|
82182
82214
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
82183
|
-
variant
|
|
82215
|
+
variant?: string | undefined;
|
|
82184
82216
|
}>;
|
|
82185
82217
|
declare const DTOForgeProjectContextV2: z$1.ZodObject<{
|
|
82186
82218
|
id: z$1.ZodString;
|
|
@@ -82199,13 +82231,13 @@ declare const DTOForgeProjectContextV2: z$1.ZodObject<{
|
|
|
82199
82231
|
}>;
|
|
82200
82232
|
iconSet: z$1.ZodObject<{
|
|
82201
82233
|
type: z$1.ZodEnum<["Phosphor", "Lucide", "Tabler"]>;
|
|
82202
|
-
variant: z$1.
|
|
82234
|
+
variant: z$1.ZodOptional<z$1.ZodString>;
|
|
82203
82235
|
}, "strip", z$1.ZodTypeAny, {
|
|
82204
82236
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
82205
|
-
variant
|
|
82237
|
+
variant?: string | undefined;
|
|
82206
82238
|
}, {
|
|
82207
82239
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
82208
|
-
variant
|
|
82240
|
+
variant?: string | undefined;
|
|
82209
82241
|
}>;
|
|
82210
82242
|
theme: z$1.ZodObject<{
|
|
82211
82243
|
background: z$1.ZodObject<{
|
|
@@ -89748,7 +89780,7 @@ declare const DTOForgeProjectContextV2: z$1.ZodObject<{
|
|
|
89748
89780
|
};
|
|
89749
89781
|
iconSet: {
|
|
89750
89782
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
89751
|
-
variant
|
|
89783
|
+
variant?: string | undefined;
|
|
89752
89784
|
};
|
|
89753
89785
|
description?: string | undefined;
|
|
89754
89786
|
designSystemId?: string | undefined;
|
|
@@ -90711,7 +90743,7 @@ declare const DTOForgeProjectContextV2: z$1.ZodObject<{
|
|
|
90711
90743
|
};
|
|
90712
90744
|
iconSet: {
|
|
90713
90745
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
90714
|
-
variant
|
|
90746
|
+
variant?: string | undefined;
|
|
90715
90747
|
};
|
|
90716
90748
|
description?: string | undefined;
|
|
90717
90749
|
designSystemId?: string | undefined;
|
|
@@ -90736,13 +90768,13 @@ declare const DTOForgeProjectContextCreateV2: z$1.ZodObject<Omit<{
|
|
|
90736
90768
|
}>;
|
|
90737
90769
|
iconSet: z$1.ZodObject<{
|
|
90738
90770
|
type: z$1.ZodEnum<["Phosphor", "Lucide", "Tabler"]>;
|
|
90739
|
-
variant: z$1.
|
|
90771
|
+
variant: z$1.ZodOptional<z$1.ZodString>;
|
|
90740
90772
|
}, "strip", z$1.ZodTypeAny, {
|
|
90741
90773
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
90742
|
-
variant
|
|
90774
|
+
variant?: string | undefined;
|
|
90743
90775
|
}, {
|
|
90744
90776
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
90745
|
-
variant
|
|
90777
|
+
variant?: string | undefined;
|
|
90746
90778
|
}>;
|
|
90747
90779
|
theme: z$1.ZodObject<{
|
|
90748
90780
|
background: z$1.ZodObject<{
|
|
@@ -98284,7 +98316,7 @@ declare const DTOForgeProjectContextCreateV2: z$1.ZodObject<Omit<{
|
|
|
98284
98316
|
};
|
|
98285
98317
|
iconSet: {
|
|
98286
98318
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
98287
|
-
variant
|
|
98319
|
+
variant?: string | undefined;
|
|
98288
98320
|
};
|
|
98289
98321
|
description?: string | undefined;
|
|
98290
98322
|
designSystemId?: string | undefined;
|
|
@@ -99246,7 +99278,7 @@ declare const DTOForgeProjectContextCreateV2: z$1.ZodObject<Omit<{
|
|
|
99246
99278
|
};
|
|
99247
99279
|
iconSet: {
|
|
99248
99280
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
99249
|
-
variant
|
|
99281
|
+
variant?: string | undefined;
|
|
99250
99282
|
};
|
|
99251
99283
|
description?: string | undefined;
|
|
99252
99284
|
designSystemId?: string | undefined;
|
|
@@ -105854,13 +105886,13 @@ declare const DTOForgeProjectContextUpdateV2: z$1.ZodObject<{
|
|
|
105854
105886
|
}>>;
|
|
105855
105887
|
iconSet: z$1.ZodOptional<z$1.ZodObject<{
|
|
105856
105888
|
type: z$1.ZodEnum<["Phosphor", "Lucide", "Tabler"]>;
|
|
105857
|
-
variant: z$1.
|
|
105889
|
+
variant: z$1.ZodOptional<z$1.ZodString>;
|
|
105858
105890
|
}, "strip", z$1.ZodTypeAny, {
|
|
105859
105891
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
105860
|
-
variant
|
|
105892
|
+
variant?: string | undefined;
|
|
105861
105893
|
}, {
|
|
105862
105894
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
105863
|
-
variant
|
|
105895
|
+
variant?: string | undefined;
|
|
105864
105896
|
}>>;
|
|
105865
105897
|
}, "strip", z$1.ZodTypeAny, {
|
|
105866
105898
|
name?: string | undefined;
|
|
@@ -106822,7 +106854,7 @@ declare const DTOForgeProjectContextUpdateV2: z$1.ZodObject<{
|
|
|
106822
106854
|
} | undefined;
|
|
106823
106855
|
iconSet?: {
|
|
106824
106856
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
106825
|
-
variant
|
|
106857
|
+
variant?: string | undefined;
|
|
106826
106858
|
} | undefined;
|
|
106827
106859
|
}, {
|
|
106828
106860
|
name?: string | undefined;
|
|
@@ -107784,7 +107816,7 @@ declare const DTOForgeProjectContextUpdateV2: z$1.ZodObject<{
|
|
|
107784
107816
|
} | undefined;
|
|
107785
107817
|
iconSet?: {
|
|
107786
107818
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
107787
|
-
variant
|
|
107819
|
+
variant?: string | undefined;
|
|
107788
107820
|
} | undefined;
|
|
107789
107821
|
}>;
|
|
107790
107822
|
type DTOForgeProjectContextUpdateV2 = z$1.infer<typeof DTOForgeProjectContextUpdateV2>;
|
|
@@ -107810,13 +107842,13 @@ declare const DTOForgeProjectContextResponseV2: z$1.ZodObject<{
|
|
|
107810
107842
|
}>;
|
|
107811
107843
|
iconSet: z$1.ZodObject<{
|
|
107812
107844
|
type: z$1.ZodEnum<["Phosphor", "Lucide", "Tabler"]>;
|
|
107813
|
-
variant: z$1.
|
|
107845
|
+
variant: z$1.ZodOptional<z$1.ZodString>;
|
|
107814
107846
|
}, "strip", z$1.ZodTypeAny, {
|
|
107815
107847
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
107816
|
-
variant
|
|
107848
|
+
variant?: string | undefined;
|
|
107817
107849
|
}, {
|
|
107818
107850
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
107819
|
-
variant
|
|
107851
|
+
variant?: string | undefined;
|
|
107820
107852
|
}>;
|
|
107821
107853
|
theme: z$1.ZodObject<{
|
|
107822
107854
|
background: z$1.ZodObject<{
|
|
@@ -115359,7 +115391,7 @@ declare const DTOForgeProjectContextResponseV2: z$1.ZodObject<{
|
|
|
115359
115391
|
};
|
|
115360
115392
|
iconSet: {
|
|
115361
115393
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
115362
|
-
variant
|
|
115394
|
+
variant?: string | undefined;
|
|
115363
115395
|
};
|
|
115364
115396
|
description?: string | undefined;
|
|
115365
115397
|
designSystemId?: string | undefined;
|
|
@@ -116322,7 +116354,7 @@ declare const DTOForgeProjectContextResponseV2: z$1.ZodObject<{
|
|
|
116322
116354
|
};
|
|
116323
116355
|
iconSet: {
|
|
116324
116356
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
116325
|
-
variant
|
|
116357
|
+
variant?: string | undefined;
|
|
116326
116358
|
};
|
|
116327
116359
|
description?: string | undefined;
|
|
116328
116360
|
designSystemId?: string | undefined;
|
|
@@ -117287,7 +117319,7 @@ declare const DTOForgeProjectContextResponseV2: z$1.ZodObject<{
|
|
|
117287
117319
|
};
|
|
117288
117320
|
iconSet: {
|
|
117289
117321
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
117290
|
-
variant
|
|
117322
|
+
variant?: string | undefined;
|
|
117291
117323
|
};
|
|
117292
117324
|
description?: string | undefined;
|
|
117293
117325
|
designSystemId?: string | undefined;
|
|
@@ -118252,7 +118284,7 @@ declare const DTOForgeProjectContextResponseV2: z$1.ZodObject<{
|
|
|
118252
118284
|
};
|
|
118253
118285
|
iconSet: {
|
|
118254
118286
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
118255
|
-
variant
|
|
118287
|
+
variant?: string | undefined;
|
|
118256
118288
|
};
|
|
118257
118289
|
description?: string | undefined;
|
|
118258
118290
|
designSystemId?: string | undefined;
|
|
@@ -118287,13 +118319,13 @@ declare const DTOForgeProjectContextListResponseV2: z$1.ZodObject<{
|
|
|
118287
118319
|
}>;
|
|
118288
118320
|
iconSet: z$1.ZodObject<{
|
|
118289
118321
|
type: z$1.ZodEnum<["Phosphor", "Lucide", "Tabler"]>;
|
|
118290
|
-
variant: z$1.
|
|
118322
|
+
variant: z$1.ZodOptional<z$1.ZodString>;
|
|
118291
118323
|
}, "strip", z$1.ZodTypeAny, {
|
|
118292
118324
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
118293
|
-
variant
|
|
118325
|
+
variant?: string | undefined;
|
|
118294
118326
|
}, {
|
|
118295
118327
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
118296
|
-
variant
|
|
118328
|
+
variant?: string | undefined;
|
|
118297
118329
|
}>;
|
|
118298
118330
|
theme: z$1.ZodObject<{
|
|
118299
118331
|
background: z$1.ZodObject<{
|
|
@@ -125836,7 +125868,7 @@ declare const DTOForgeProjectContextListResponseV2: z$1.ZodObject<{
|
|
|
125836
125868
|
};
|
|
125837
125869
|
iconSet: {
|
|
125838
125870
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
125839
|
-
variant
|
|
125871
|
+
variant?: string | undefined;
|
|
125840
125872
|
};
|
|
125841
125873
|
description?: string | undefined;
|
|
125842
125874
|
designSystemId?: string | undefined;
|
|
@@ -126799,7 +126831,7 @@ declare const DTOForgeProjectContextListResponseV2: z$1.ZodObject<{
|
|
|
126799
126831
|
};
|
|
126800
126832
|
iconSet: {
|
|
126801
126833
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
126802
|
-
variant
|
|
126834
|
+
variant?: string | undefined;
|
|
126803
126835
|
};
|
|
126804
126836
|
description?: string | undefined;
|
|
126805
126837
|
designSystemId?: string | undefined;
|
|
@@ -127764,7 +127796,7 @@ declare const DTOForgeProjectContextListResponseV2: z$1.ZodObject<{
|
|
|
127764
127796
|
};
|
|
127765
127797
|
iconSet: {
|
|
127766
127798
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
127767
|
-
variant
|
|
127799
|
+
variant?: string | undefined;
|
|
127768
127800
|
};
|
|
127769
127801
|
description?: string | undefined;
|
|
127770
127802
|
designSystemId?: string | undefined;
|
|
@@ -128729,7 +128761,7 @@ declare const DTOForgeProjectContextListResponseV2: z$1.ZodObject<{
|
|
|
128729
128761
|
};
|
|
128730
128762
|
iconSet: {
|
|
128731
128763
|
type: "Phosphor" | "Lucide" | "Tabler";
|
|
128732
|
-
variant
|
|
128764
|
+
variant?: string | undefined;
|
|
128733
128765
|
};
|
|
128734
128766
|
description?: string | undefined;
|
|
128735
128767
|
designSystemId?: string | undefined;
|
|
@@ -177859,6 +177891,72 @@ declare const DTOUserProfileUpdate: z$1.ZodObject<Omit<{
|
|
|
177859
177891
|
}>;
|
|
177860
177892
|
type DTOUserProfileUpdate = z$1.infer<typeof DTOUserProfileUpdate>;
|
|
177861
177893
|
|
|
177894
|
+
declare const DTOBillingCheckoutOldInput: z__default.ZodObject<{
|
|
177895
|
+
mode: z__default.ZodLiteral<undefined>;
|
|
177896
|
+
successUrl: z__default.ZodString;
|
|
177897
|
+
cancelUrl: z__default.ZodString;
|
|
177898
|
+
priceId: z__default.ZodString;
|
|
177899
|
+
quantity: z__default.ZodNumber;
|
|
177900
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
177901
|
+
successUrl: string;
|
|
177902
|
+
cancelUrl: string;
|
|
177903
|
+
priceId: string;
|
|
177904
|
+
quantity: number;
|
|
177905
|
+
mode?: undefined;
|
|
177906
|
+
}, {
|
|
177907
|
+
successUrl: string;
|
|
177908
|
+
cancelUrl: string;
|
|
177909
|
+
priceId: string;
|
|
177910
|
+
quantity: number;
|
|
177911
|
+
mode?: undefined;
|
|
177912
|
+
}>;
|
|
177913
|
+
type DTOBillingCheckoutOldInput = z__default.infer<typeof DTOBillingCheckoutOldInput>;
|
|
177914
|
+
declare const DTOBillingCheckoutSubscriptionChangeInput: z__default.ZodObject<{
|
|
177915
|
+
mode: z__default.ZodLiteral<"SubscriptionChange">;
|
|
177916
|
+
successUrl: z__default.ZodString;
|
|
177917
|
+
cancelUrl: z__default.ZodString;
|
|
177918
|
+
plan: z__default.ZodEnum<["pro", "team", "company"]>;
|
|
177919
|
+
interval: z__default.ZodEnum<["Monthly", "Yearly"]>;
|
|
177920
|
+
fullSeats: z__default.ZodNumber;
|
|
177921
|
+
builderSeats: z__default.ZodNumber;
|
|
177922
|
+
additionalCredits: z__default.ZodNumber;
|
|
177923
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
177924
|
+
mode: "SubscriptionChange";
|
|
177925
|
+
successUrl: string;
|
|
177926
|
+
cancelUrl: string;
|
|
177927
|
+
plan: "team" | "company" | "pro";
|
|
177928
|
+
interval: "Monthly" | "Yearly";
|
|
177929
|
+
fullSeats: number;
|
|
177930
|
+
builderSeats: number;
|
|
177931
|
+
additionalCredits: number;
|
|
177932
|
+
}, {
|
|
177933
|
+
mode: "SubscriptionChange";
|
|
177934
|
+
successUrl: string;
|
|
177935
|
+
cancelUrl: string;
|
|
177936
|
+
plan: "team" | "company" | "pro";
|
|
177937
|
+
interval: "Monthly" | "Yearly";
|
|
177938
|
+
fullSeats: number;
|
|
177939
|
+
builderSeats: number;
|
|
177940
|
+
additionalCredits: number;
|
|
177941
|
+
}>;
|
|
177942
|
+
type DTOBillingCheckoutSubscriptionChangeInput = z__default.infer<typeof DTOBillingCheckoutSubscriptionChangeInput>;
|
|
177943
|
+
declare const DTOBillingCheckoutCreditsTopUpInput: z__default.ZodObject<{
|
|
177944
|
+
mode: z__default.ZodLiteral<"CreditsTopUp">;
|
|
177945
|
+
successUrl: z__default.ZodString;
|
|
177946
|
+
cancelUrl: z__default.ZodString;
|
|
177947
|
+
centAmount: z__default.ZodNumber;
|
|
177948
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
177949
|
+
mode: "CreditsTopUp";
|
|
177950
|
+
successUrl: string;
|
|
177951
|
+
cancelUrl: string;
|
|
177952
|
+
centAmount: number;
|
|
177953
|
+
}, {
|
|
177954
|
+
mode: "CreditsTopUp";
|
|
177955
|
+
successUrl: string;
|
|
177956
|
+
cancelUrl: string;
|
|
177957
|
+
centAmount: number;
|
|
177958
|
+
}>;
|
|
177959
|
+
type DTOBillingCheckoutCreditsTopUpInput = z__default.infer<typeof DTOBillingCheckoutCreditsTopUpInput>;
|
|
177862
177960
|
declare const DTOBillingCreditsSpendInput: z__default.ZodObject<{
|
|
177863
177961
|
inputTokenCount: z__default.ZodNumber;
|
|
177864
177962
|
outputTokenCount: z__default.ZodNumber;
|
|
@@ -177901,28 +177999,67 @@ declare const DTOBillingCheckoutMode: z__default.ZodEnum<["SubscriptionChange",
|
|
|
177901
177999
|
type DTOBillingCheckoutMode = z__default.infer<typeof DTOBillingCheckoutMode>;
|
|
177902
178000
|
declare const DTOBillingCreditsSpendAction: z__default.ZodEnum<["Ask", "Build", "DocumentUpdate"]>;
|
|
177903
178001
|
type DTOBillingCreditsSpendAction = z__default.infer<typeof DTOBillingCreditsSpendAction>;
|
|
177904
|
-
declare const DTOBillingCheckoutInput: z__default.ZodObject<{
|
|
177905
|
-
|
|
178002
|
+
declare const DTOBillingCheckoutInput: z__default.ZodDiscriminatedUnion<"mode", [z__default.ZodObject<{
|
|
178003
|
+
mode: z__default.ZodLiteral<undefined>;
|
|
177906
178004
|
successUrl: z__default.ZodString;
|
|
177907
178005
|
cancelUrl: z__default.ZodString;
|
|
177908
|
-
|
|
177909
|
-
|
|
177910
|
-
mode: z__default.ZodDefault<z__default.ZodOptional<z__default.ZodEnum<["SubscriptionChange", "CreditsTopUp"]>>>;
|
|
178006
|
+
priceId: z__default.ZodString;
|
|
178007
|
+
quantity: z__default.ZodNumber;
|
|
177911
178008
|
}, "strip", z__default.ZodTypeAny, {
|
|
177912
178009
|
successUrl: string;
|
|
177913
178010
|
cancelUrl: string;
|
|
177914
|
-
|
|
177915
|
-
|
|
177916
|
-
|
|
177917
|
-
centAmount?: number | undefined;
|
|
178011
|
+
priceId: string;
|
|
178012
|
+
quantity: number;
|
|
178013
|
+
mode?: undefined;
|
|
177918
178014
|
}, {
|
|
177919
178015
|
successUrl: string;
|
|
177920
178016
|
cancelUrl: string;
|
|
177921
|
-
priceId
|
|
177922
|
-
quantity
|
|
177923
|
-
|
|
177924
|
-
|
|
177925
|
-
|
|
178017
|
+
priceId: string;
|
|
178018
|
+
quantity: number;
|
|
178019
|
+
mode?: undefined;
|
|
178020
|
+
}>, z__default.ZodObject<{
|
|
178021
|
+
mode: z__default.ZodLiteral<"SubscriptionChange">;
|
|
178022
|
+
successUrl: z__default.ZodString;
|
|
178023
|
+
cancelUrl: z__default.ZodString;
|
|
178024
|
+
plan: z__default.ZodEnum<["pro", "team", "company"]>;
|
|
178025
|
+
interval: z__default.ZodEnum<["Monthly", "Yearly"]>;
|
|
178026
|
+
fullSeats: z__default.ZodNumber;
|
|
178027
|
+
builderSeats: z__default.ZodNumber;
|
|
178028
|
+
additionalCredits: z__default.ZodNumber;
|
|
178029
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
178030
|
+
mode: "SubscriptionChange";
|
|
178031
|
+
successUrl: string;
|
|
178032
|
+
cancelUrl: string;
|
|
178033
|
+
plan: "team" | "company" | "pro";
|
|
178034
|
+
interval: "Monthly" | "Yearly";
|
|
178035
|
+
fullSeats: number;
|
|
178036
|
+
builderSeats: number;
|
|
178037
|
+
additionalCredits: number;
|
|
178038
|
+
}, {
|
|
178039
|
+
mode: "SubscriptionChange";
|
|
178040
|
+
successUrl: string;
|
|
178041
|
+
cancelUrl: string;
|
|
178042
|
+
plan: "team" | "company" | "pro";
|
|
178043
|
+
interval: "Monthly" | "Yearly";
|
|
178044
|
+
fullSeats: number;
|
|
178045
|
+
builderSeats: number;
|
|
178046
|
+
additionalCredits: number;
|
|
178047
|
+
}>, z__default.ZodObject<{
|
|
178048
|
+
mode: z__default.ZodLiteral<"CreditsTopUp">;
|
|
178049
|
+
successUrl: z__default.ZodString;
|
|
178050
|
+
cancelUrl: z__default.ZodString;
|
|
178051
|
+
centAmount: z__default.ZodNumber;
|
|
178052
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
178053
|
+
mode: "CreditsTopUp";
|
|
178054
|
+
successUrl: string;
|
|
178055
|
+
cancelUrl: string;
|
|
178056
|
+
centAmount: number;
|
|
178057
|
+
}, {
|
|
178058
|
+
mode: "CreditsTopUp";
|
|
178059
|
+
successUrl: string;
|
|
178060
|
+
cancelUrl: string;
|
|
178061
|
+
centAmount: number;
|
|
178062
|
+
}>]>;
|
|
177926
178063
|
type DTOBillingCheckoutInput = z__default.infer<typeof DTOBillingCheckoutInput>;
|
|
177927
178064
|
declare const DTOBillingCheckoutResponse: z__default.ZodObject<{
|
|
177928
178065
|
id: z__default.ZodString;
|
|
@@ -177935,6 +178072,8 @@ declare const DTOBillingCheckoutResponse: z__default.ZodObject<{
|
|
|
177935
178072
|
url?: string | null | undefined;
|
|
177936
178073
|
}>;
|
|
177937
178074
|
type DTOBillingCheckoutResponse = z__default.infer<typeof DTOBillingCheckoutResponse>;
|
|
178075
|
+
declare const DTOBillingSubscriptionInterval: z__default.ZodEnum<["Monthly", "Yearly"]>;
|
|
178076
|
+
type DTOBillingSubscriptionInterval = z__default.infer<typeof DTOBillingSubscriptionInterval>;
|
|
177938
178077
|
|
|
177939
178078
|
declare const DTOWorkspaceRole: z__default.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
|
|
177940
178079
|
type DTOWorkspaceRole = z__default.infer<typeof DTOWorkspaceRole>;
|
|
@@ -179293,6 +179432,8 @@ declare const DTOUserWorkspaceMembership: z$1.ZodObject<{
|
|
|
179293
179432
|
currentPeriodStart: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
179294
179433
|
currentPeriodEnd: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
179295
179434
|
cancelAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
179435
|
+
fullSeatPriceId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
179436
|
+
builderSeatPriceId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
179296
179437
|
subscriptionStatusUpdatedAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
179297
179438
|
}, "strip", z$1.ZodTypeAny, {
|
|
179298
179439
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -179322,6 +179463,8 @@ declare const DTOUserWorkspaceMembership: z$1.ZodObject<{
|
|
|
179322
179463
|
currentPeriodStart?: string | undefined;
|
|
179323
179464
|
currentPeriodEnd?: string | undefined;
|
|
179324
179465
|
cancelAt?: string | undefined;
|
|
179466
|
+
fullSeatPriceId?: string | undefined;
|
|
179467
|
+
builderSeatPriceId?: string | undefined;
|
|
179325
179468
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
179326
179469
|
}, {
|
|
179327
179470
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -179351,6 +179494,8 @@ declare const DTOUserWorkspaceMembership: z$1.ZodObject<{
|
|
|
179351
179494
|
currentPeriodStart?: string | null | undefined;
|
|
179352
179495
|
currentPeriodEnd?: string | null | undefined;
|
|
179353
179496
|
cancelAt?: string | null | undefined;
|
|
179497
|
+
fullSeatPriceId?: string | null | undefined;
|
|
179498
|
+
builderSeatPriceId?: string | null | undefined;
|
|
179354
179499
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
179355
179500
|
}>;
|
|
179356
179501
|
npmRegistry: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -179442,6 +179587,8 @@ declare const DTOUserWorkspaceMembership: z$1.ZodObject<{
|
|
|
179442
179587
|
currentPeriodStart?: string | undefined;
|
|
179443
179588
|
currentPeriodEnd?: string | undefined;
|
|
179444
179589
|
cancelAt?: string | undefined;
|
|
179590
|
+
fullSeatPriceId?: string | undefined;
|
|
179591
|
+
builderSeatPriceId?: string | undefined;
|
|
179445
179592
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
179446
179593
|
};
|
|
179447
179594
|
aiFeaturesEnabled: boolean;
|
|
@@ -179511,6 +179658,8 @@ declare const DTOUserWorkspaceMembership: z$1.ZodObject<{
|
|
|
179511
179658
|
currentPeriodStart?: string | null | undefined;
|
|
179512
179659
|
currentPeriodEnd?: string | null | undefined;
|
|
179513
179660
|
cancelAt?: string | null | undefined;
|
|
179661
|
+
fullSeatPriceId?: string | null | undefined;
|
|
179662
|
+
builderSeatPriceId?: string | null | undefined;
|
|
179514
179663
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
179515
179664
|
};
|
|
179516
179665
|
npmRegistry?: {
|
|
@@ -179586,6 +179735,8 @@ declare const DTOUserWorkspaceMembership: z$1.ZodObject<{
|
|
|
179586
179735
|
currentPeriodStart?: string | undefined;
|
|
179587
179736
|
currentPeriodEnd?: string | undefined;
|
|
179588
179737
|
cancelAt?: string | undefined;
|
|
179738
|
+
fullSeatPriceId?: string | undefined;
|
|
179739
|
+
builderSeatPriceId?: string | undefined;
|
|
179589
179740
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
179590
179741
|
};
|
|
179591
179742
|
aiFeaturesEnabled: boolean;
|
|
@@ -179661,6 +179812,8 @@ declare const DTOUserWorkspaceMembership: z$1.ZodObject<{
|
|
|
179661
179812
|
currentPeriodStart?: string | null | undefined;
|
|
179662
179813
|
currentPeriodEnd?: string | null | undefined;
|
|
179663
179814
|
cancelAt?: string | null | undefined;
|
|
179815
|
+
fullSeatPriceId?: string | null | undefined;
|
|
179816
|
+
builderSeatPriceId?: string | null | undefined;
|
|
179664
179817
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
179665
179818
|
};
|
|
179666
179819
|
npmRegistry?: {
|
|
@@ -180237,6 +180390,8 @@ declare const DTOUserWorkspaceMembershipsResponse: z$1.ZodObject<{
|
|
|
180237
180390
|
currentPeriodStart: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
180238
180391
|
currentPeriodEnd: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
180239
180392
|
cancelAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
180393
|
+
fullSeatPriceId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
180394
|
+
builderSeatPriceId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
180240
180395
|
subscriptionStatusUpdatedAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
180241
180396
|
}, "strip", z$1.ZodTypeAny, {
|
|
180242
180397
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -180266,6 +180421,8 @@ declare const DTOUserWorkspaceMembershipsResponse: z$1.ZodObject<{
|
|
|
180266
180421
|
currentPeriodStart?: string | undefined;
|
|
180267
180422
|
currentPeriodEnd?: string | undefined;
|
|
180268
180423
|
cancelAt?: string | undefined;
|
|
180424
|
+
fullSeatPriceId?: string | undefined;
|
|
180425
|
+
builderSeatPriceId?: string | undefined;
|
|
180269
180426
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
180270
180427
|
}, {
|
|
180271
180428
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -180295,6 +180452,8 @@ declare const DTOUserWorkspaceMembershipsResponse: z$1.ZodObject<{
|
|
|
180295
180452
|
currentPeriodStart?: string | null | undefined;
|
|
180296
180453
|
currentPeriodEnd?: string | null | undefined;
|
|
180297
180454
|
cancelAt?: string | null | undefined;
|
|
180455
|
+
fullSeatPriceId?: string | null | undefined;
|
|
180456
|
+
builderSeatPriceId?: string | null | undefined;
|
|
180298
180457
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
180299
180458
|
}>;
|
|
180300
180459
|
npmRegistry: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -180386,6 +180545,8 @@ declare const DTOUserWorkspaceMembershipsResponse: z$1.ZodObject<{
|
|
|
180386
180545
|
currentPeriodStart?: string | undefined;
|
|
180387
180546
|
currentPeriodEnd?: string | undefined;
|
|
180388
180547
|
cancelAt?: string | undefined;
|
|
180548
|
+
fullSeatPriceId?: string | undefined;
|
|
180549
|
+
builderSeatPriceId?: string | undefined;
|
|
180389
180550
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
180390
180551
|
};
|
|
180391
180552
|
aiFeaturesEnabled: boolean;
|
|
@@ -180455,6 +180616,8 @@ declare const DTOUserWorkspaceMembershipsResponse: z$1.ZodObject<{
|
|
|
180455
180616
|
currentPeriodStart?: string | null | undefined;
|
|
180456
180617
|
currentPeriodEnd?: string | null | undefined;
|
|
180457
180618
|
cancelAt?: string | null | undefined;
|
|
180619
|
+
fullSeatPriceId?: string | null | undefined;
|
|
180620
|
+
builderSeatPriceId?: string | null | undefined;
|
|
180458
180621
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
180459
180622
|
};
|
|
180460
180623
|
npmRegistry?: {
|
|
@@ -180530,6 +180693,8 @@ declare const DTOUserWorkspaceMembershipsResponse: z$1.ZodObject<{
|
|
|
180530
180693
|
currentPeriodStart?: string | undefined;
|
|
180531
180694
|
currentPeriodEnd?: string | undefined;
|
|
180532
180695
|
cancelAt?: string | undefined;
|
|
180696
|
+
fullSeatPriceId?: string | undefined;
|
|
180697
|
+
builderSeatPriceId?: string | undefined;
|
|
180533
180698
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
180534
180699
|
};
|
|
180535
180700
|
aiFeaturesEnabled: boolean;
|
|
@@ -180605,6 +180770,8 @@ declare const DTOUserWorkspaceMembershipsResponse: z$1.ZodObject<{
|
|
|
180605
180770
|
currentPeriodStart?: string | null | undefined;
|
|
180606
180771
|
currentPeriodEnd?: string | null | undefined;
|
|
180607
180772
|
cancelAt?: string | null | undefined;
|
|
180773
|
+
fullSeatPriceId?: string | null | undefined;
|
|
180774
|
+
builderSeatPriceId?: string | null | undefined;
|
|
180608
180775
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
180609
180776
|
};
|
|
180610
180777
|
npmRegistry?: {
|
|
@@ -180682,6 +180849,8 @@ declare const DTOUserWorkspaceMembershipsResponse: z$1.ZodObject<{
|
|
|
180682
180849
|
currentPeriodStart?: string | undefined;
|
|
180683
180850
|
currentPeriodEnd?: string | undefined;
|
|
180684
180851
|
cancelAt?: string | undefined;
|
|
180852
|
+
fullSeatPriceId?: string | undefined;
|
|
180853
|
+
builderSeatPriceId?: string | undefined;
|
|
180685
180854
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
180686
180855
|
};
|
|
180687
180856
|
aiFeaturesEnabled: boolean;
|
|
@@ -180759,6 +180928,8 @@ declare const DTOUserWorkspaceMembershipsResponse: z$1.ZodObject<{
|
|
|
180759
180928
|
currentPeriodStart?: string | null | undefined;
|
|
180760
180929
|
currentPeriodEnd?: string | null | undefined;
|
|
180761
180930
|
cancelAt?: string | null | undefined;
|
|
180931
|
+
fullSeatPriceId?: string | null | undefined;
|
|
180932
|
+
builderSeatPriceId?: string | null | undefined;
|
|
180762
180933
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
180763
180934
|
};
|
|
180764
180935
|
npmRegistry?: {
|
|
@@ -182230,6 +182401,9 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
182230
182401
|
stripeProductFeatures: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
182231
182402
|
stripeProductAdditionalFeatures: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
182232
182403
|
stripeSubscriptionMainItemId: z__default.ZodOptional<z__default.ZodString>;
|
|
182404
|
+
/**
|
|
182405
|
+
* @deprecated use `fullSeatPriceId` or `builderSeatPriceId`
|
|
182406
|
+
*/
|
|
182233
182407
|
planPriceId: z__default.ZodString;
|
|
182234
182408
|
planInterval: z__default.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
|
|
182235
182409
|
isPricePerCreator: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
@@ -182270,18 +182444,21 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
182270
182444
|
isTrial: z__default.ZodBoolean;
|
|
182271
182445
|
billingType: z__default.ZodOptional<z__default.ZodEnum<["Auto", "Invoice"]>>;
|
|
182272
182446
|
daysUntilDue: z__default.ZodOptional<z__default.ZodNumber>;
|
|
182447
|
+
fullSeatPriceId: z__default.ZodString;
|
|
182448
|
+
builderSeatPriceId: z__default.ZodOptional<z__default.ZodString>;
|
|
182273
182449
|
}, "strip", z__default.ZodTypeAny, {
|
|
182450
|
+
fullSeats: number;
|
|
182451
|
+
builderSeats: number;
|
|
182274
182452
|
product: "free" | "team" | "company" | "enterprise" | "pro";
|
|
182275
182453
|
planPriceId: string;
|
|
182276
182454
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
182277
182455
|
seats: number;
|
|
182278
182456
|
seatLimit: number;
|
|
182279
|
-
fullSeats: number;
|
|
182280
182457
|
fullSeatLimit: number;
|
|
182281
|
-
builderSeats: number;
|
|
182282
182458
|
builderSeatLimit: number;
|
|
182283
182459
|
amount: number;
|
|
182284
182460
|
isTrial: boolean;
|
|
182461
|
+
fullSeatPriceId: string;
|
|
182285
182462
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
182286
182463
|
stripeSubscriptionId?: string | undefined;
|
|
182287
182464
|
stripeCustomerId?: string | undefined;
|
|
@@ -182446,18 +182623,20 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
182446
182623
|
} | undefined;
|
|
182447
182624
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
182448
182625
|
daysUntilDue?: number | undefined;
|
|
182626
|
+
builderSeatPriceId?: string | undefined;
|
|
182449
182627
|
}, {
|
|
182628
|
+
fullSeats: number;
|
|
182629
|
+
builderSeats: number;
|
|
182450
182630
|
product: "free" | "team" | "company" | "enterprise" | "pro";
|
|
182451
182631
|
planPriceId: string;
|
|
182452
182632
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
182453
182633
|
seats: number;
|
|
182454
182634
|
seatLimit: number;
|
|
182455
|
-
fullSeats: number;
|
|
182456
182635
|
fullSeatLimit: number;
|
|
182457
|
-
builderSeats: number;
|
|
182458
182636
|
builderSeatLimit: number;
|
|
182459
182637
|
amount: number;
|
|
182460
182638
|
isTrial: boolean;
|
|
182639
|
+
fullSeatPriceId: string;
|
|
182461
182640
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
182462
182641
|
stripeSubscriptionId?: string | undefined;
|
|
182463
182642
|
stripeCustomerId?: string | undefined;
|
|
@@ -182622,6 +182801,7 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
182622
182801
|
} | undefined;
|
|
182623
182802
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
182624
182803
|
daysUntilDue?: number | undefined;
|
|
182804
|
+
builderSeatPriceId?: string | undefined;
|
|
182625
182805
|
}>;
|
|
182626
182806
|
type DTOSubscription = z__default.infer<typeof DTOSubscription>;
|
|
182627
182807
|
declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
@@ -183272,6 +183452,9 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
183272
183452
|
stripeProductFeatures: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
183273
183453
|
stripeProductAdditionalFeatures: z__default.ZodOptional<z__default.ZodArray<z__default.ZodString, "many">>;
|
|
183274
183454
|
stripeSubscriptionMainItemId: z__default.ZodOptional<z__default.ZodString>;
|
|
183455
|
+
/**
|
|
183456
|
+
* @deprecated use `fullSeatPriceId` or `builderSeatPriceId`
|
|
183457
|
+
*/
|
|
183275
183458
|
planPriceId: z__default.ZodString;
|
|
183276
183459
|
planInterval: z__default.ZodEnum<["daily", "monthly", "weekly", "yearly"]>;
|
|
183277
183460
|
isPricePerCreator: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
@@ -183312,18 +183495,21 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
183312
183495
|
isTrial: z__default.ZodBoolean;
|
|
183313
183496
|
billingType: z__default.ZodOptional<z__default.ZodEnum<["Auto", "Invoice"]>>;
|
|
183314
183497
|
daysUntilDue: z__default.ZodOptional<z__default.ZodNumber>;
|
|
183498
|
+
fullSeatPriceId: z__default.ZodString;
|
|
183499
|
+
builderSeatPriceId: z__default.ZodOptional<z__default.ZodString>;
|
|
183315
183500
|
}, "strip", z__default.ZodTypeAny, {
|
|
183501
|
+
fullSeats: number;
|
|
183502
|
+
builderSeats: number;
|
|
183316
183503
|
product: "free" | "team" | "company" | "enterprise" | "pro";
|
|
183317
183504
|
planPriceId: string;
|
|
183318
183505
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
183319
183506
|
seats: number;
|
|
183320
183507
|
seatLimit: number;
|
|
183321
|
-
fullSeats: number;
|
|
183322
183508
|
fullSeatLimit: number;
|
|
183323
|
-
builderSeats: number;
|
|
183324
183509
|
builderSeatLimit: number;
|
|
183325
183510
|
amount: number;
|
|
183326
183511
|
isTrial: boolean;
|
|
183512
|
+
fullSeatPriceId: string;
|
|
183327
183513
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
183328
183514
|
stripeSubscriptionId?: string | undefined;
|
|
183329
183515
|
stripeCustomerId?: string | undefined;
|
|
@@ -183488,18 +183674,20 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
183488
183674
|
} | undefined;
|
|
183489
183675
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
183490
183676
|
daysUntilDue?: number | undefined;
|
|
183677
|
+
builderSeatPriceId?: string | undefined;
|
|
183491
183678
|
}, {
|
|
183679
|
+
fullSeats: number;
|
|
183680
|
+
builderSeats: number;
|
|
183492
183681
|
product: "free" | "team" | "company" | "enterprise" | "pro";
|
|
183493
183682
|
planPriceId: string;
|
|
183494
183683
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
183495
183684
|
seats: number;
|
|
183496
183685
|
seatLimit: number;
|
|
183497
|
-
fullSeats: number;
|
|
183498
183686
|
fullSeatLimit: number;
|
|
183499
|
-
builderSeats: number;
|
|
183500
183687
|
builderSeatLimit: number;
|
|
183501
183688
|
amount: number;
|
|
183502
183689
|
isTrial: boolean;
|
|
183690
|
+
fullSeatPriceId: string;
|
|
183503
183691
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
183504
183692
|
stripeSubscriptionId?: string | undefined;
|
|
183505
183693
|
stripeCustomerId?: string | undefined;
|
|
@@ -183664,6 +183852,7 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
183664
183852
|
} | undefined;
|
|
183665
183853
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
183666
183854
|
daysUntilDue?: number | undefined;
|
|
183855
|
+
builderSeatPriceId?: string | undefined;
|
|
183667
183856
|
}>;
|
|
183668
183857
|
creditBalance: z__default.ZodOptional<z__default.ZodObject<{
|
|
183669
183858
|
paidTopUp: z__default.ZodOptional<z__default.ZodObject<{
|
|
@@ -183820,17 +184009,18 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
183820
184009
|
}>;
|
|
183821
184010
|
}, "strip", z__default.ZodTypeAny, {
|
|
183822
184011
|
subscription: {
|
|
184012
|
+
fullSeats: number;
|
|
184013
|
+
builderSeats: number;
|
|
183823
184014
|
product: "free" | "team" | "company" | "enterprise" | "pro";
|
|
183824
184015
|
planPriceId: string;
|
|
183825
184016
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
183826
184017
|
seats: number;
|
|
183827
184018
|
seatLimit: number;
|
|
183828
|
-
fullSeats: number;
|
|
183829
184019
|
fullSeatLimit: number;
|
|
183830
|
-
builderSeats: number;
|
|
183831
184020
|
builderSeatLimit: number;
|
|
183832
184021
|
amount: number;
|
|
183833
184022
|
isTrial: boolean;
|
|
184023
|
+
fullSeatPriceId: string;
|
|
183834
184024
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
183835
184025
|
stripeSubscriptionId?: string | undefined;
|
|
183836
184026
|
stripeCustomerId?: string | undefined;
|
|
@@ -183995,6 +184185,7 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
183995
184185
|
} | undefined;
|
|
183996
184186
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
183997
184187
|
daysUntilDue?: number | undefined;
|
|
184188
|
+
builderSeatPriceId?: string | undefined;
|
|
183998
184189
|
};
|
|
183999
184190
|
creditsPrices: {
|
|
184000
184191
|
creditsToCentsConversionRate: number;
|
|
@@ -184029,17 +184220,18 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
184029
184220
|
} | undefined;
|
|
184030
184221
|
}, {
|
|
184031
184222
|
subscription: {
|
|
184223
|
+
fullSeats: number;
|
|
184224
|
+
builderSeats: number;
|
|
184032
184225
|
product: "free" | "team" | "company" | "enterprise" | "pro";
|
|
184033
184226
|
planPriceId: string;
|
|
184034
184227
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
184035
184228
|
seats: number;
|
|
184036
184229
|
seatLimit: number;
|
|
184037
|
-
fullSeats: number;
|
|
184038
184230
|
fullSeatLimit: number;
|
|
184039
|
-
builderSeats: number;
|
|
184040
184231
|
builderSeatLimit: number;
|
|
184041
184232
|
amount: number;
|
|
184042
184233
|
isTrial: boolean;
|
|
184234
|
+
fullSeatPriceId: string;
|
|
184043
184235
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
184044
184236
|
stripeSubscriptionId?: string | undefined;
|
|
184045
184237
|
stripeCustomerId?: string | undefined;
|
|
@@ -184204,6 +184396,7 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
184204
184396
|
} | undefined;
|
|
184205
184397
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
184206
184398
|
daysUntilDue?: number | undefined;
|
|
184399
|
+
builderSeatPriceId?: string | undefined;
|
|
184207
184400
|
};
|
|
184208
184401
|
creditsPrices: {
|
|
184209
184402
|
creditsToCentsConversionRate: number;
|
|
@@ -184642,6 +184835,8 @@ declare const DTOWorkspace: z$1.ZodObject<{
|
|
|
184642
184835
|
currentPeriodStart: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
184643
184836
|
currentPeriodEnd: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
184644
184837
|
cancelAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
184838
|
+
fullSeatPriceId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
184839
|
+
builderSeatPriceId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
184645
184840
|
subscriptionStatusUpdatedAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
184646
184841
|
}, "strip", z$1.ZodTypeAny, {
|
|
184647
184842
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -184671,6 +184866,8 @@ declare const DTOWorkspace: z$1.ZodObject<{
|
|
|
184671
184866
|
currentPeriodStart?: string | undefined;
|
|
184672
184867
|
currentPeriodEnd?: string | undefined;
|
|
184673
184868
|
cancelAt?: string | undefined;
|
|
184869
|
+
fullSeatPriceId?: string | undefined;
|
|
184870
|
+
builderSeatPriceId?: string | undefined;
|
|
184674
184871
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
184675
184872
|
}, {
|
|
184676
184873
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -184700,6 +184897,8 @@ declare const DTOWorkspace: z$1.ZodObject<{
|
|
|
184700
184897
|
currentPeriodStart?: string | null | undefined;
|
|
184701
184898
|
currentPeriodEnd?: string | null | undefined;
|
|
184702
184899
|
cancelAt?: string | null | undefined;
|
|
184900
|
+
fullSeatPriceId?: string | null | undefined;
|
|
184901
|
+
builderSeatPriceId?: string | null | undefined;
|
|
184703
184902
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
184704
184903
|
}>;
|
|
184705
184904
|
npmRegistry: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -184791,6 +184990,8 @@ declare const DTOWorkspace: z$1.ZodObject<{
|
|
|
184791
184990
|
currentPeriodStart?: string | undefined;
|
|
184792
184991
|
currentPeriodEnd?: string | undefined;
|
|
184793
184992
|
cancelAt?: string | undefined;
|
|
184993
|
+
fullSeatPriceId?: string | undefined;
|
|
184994
|
+
builderSeatPriceId?: string | undefined;
|
|
184794
184995
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
184795
184996
|
};
|
|
184796
184997
|
aiFeaturesEnabled: boolean;
|
|
@@ -184860,6 +185061,8 @@ declare const DTOWorkspace: z$1.ZodObject<{
|
|
|
184860
185061
|
currentPeriodStart?: string | null | undefined;
|
|
184861
185062
|
currentPeriodEnd?: string | null | undefined;
|
|
184862
185063
|
cancelAt?: string | null | undefined;
|
|
185064
|
+
fullSeatPriceId?: string | null | undefined;
|
|
185065
|
+
builderSeatPriceId?: string | null | undefined;
|
|
184863
185066
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
184864
185067
|
};
|
|
184865
185068
|
npmRegistry?: {
|
|
@@ -185048,6 +185251,8 @@ declare const DTOWorkspaceResponse: z$1.ZodObject<{
|
|
|
185048
185251
|
currentPeriodStart: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
185049
185252
|
currentPeriodEnd: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
185050
185253
|
cancelAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
185254
|
+
fullSeatPriceId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
185255
|
+
builderSeatPriceId: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
185051
185256
|
subscriptionStatusUpdatedAt: z$1.ZodEffects<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodType<string, z$1.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
185052
185257
|
}, "strip", z$1.ZodTypeAny, {
|
|
185053
185258
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -185077,6 +185282,8 @@ declare const DTOWorkspaceResponse: z$1.ZodObject<{
|
|
|
185077
185282
|
currentPeriodStart?: string | undefined;
|
|
185078
185283
|
currentPeriodEnd?: string | undefined;
|
|
185079
185284
|
cancelAt?: string | undefined;
|
|
185285
|
+
fullSeatPriceId?: string | undefined;
|
|
185286
|
+
builderSeatPriceId?: string | undefined;
|
|
185080
185287
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
185081
185288
|
}, {
|
|
185082
185289
|
product: "company" | "enterprise" | "free" | "team" | "pro";
|
|
@@ -185106,6 +185313,8 @@ declare const DTOWorkspaceResponse: z$1.ZodObject<{
|
|
|
185106
185313
|
currentPeriodStart?: string | null | undefined;
|
|
185107
185314
|
currentPeriodEnd?: string | null | undefined;
|
|
185108
185315
|
cancelAt?: string | null | undefined;
|
|
185316
|
+
fullSeatPriceId?: string | null | undefined;
|
|
185317
|
+
builderSeatPriceId?: string | null | undefined;
|
|
185109
185318
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
185110
185319
|
}>;
|
|
185111
185320
|
npmRegistry: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -185197,6 +185406,8 @@ declare const DTOWorkspaceResponse: z$1.ZodObject<{
|
|
|
185197
185406
|
currentPeriodStart?: string | undefined;
|
|
185198
185407
|
currentPeriodEnd?: string | undefined;
|
|
185199
185408
|
cancelAt?: string | undefined;
|
|
185409
|
+
fullSeatPriceId?: string | undefined;
|
|
185410
|
+
builderSeatPriceId?: string | undefined;
|
|
185200
185411
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
185201
185412
|
};
|
|
185202
185413
|
aiFeaturesEnabled: boolean;
|
|
@@ -185266,6 +185477,8 @@ declare const DTOWorkspaceResponse: z$1.ZodObject<{
|
|
|
185266
185477
|
currentPeriodStart?: string | null | undefined;
|
|
185267
185478
|
currentPeriodEnd?: string | null | undefined;
|
|
185268
185479
|
cancelAt?: string | null | undefined;
|
|
185480
|
+
fullSeatPriceId?: string | null | undefined;
|
|
185481
|
+
builderSeatPriceId?: string | null | undefined;
|
|
185269
185482
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
185270
185483
|
};
|
|
185271
185484
|
npmRegistry?: {
|
|
@@ -185337,6 +185550,8 @@ declare const DTOWorkspaceResponse: z$1.ZodObject<{
|
|
|
185337
185550
|
currentPeriodStart?: string | undefined;
|
|
185338
185551
|
currentPeriodEnd?: string | undefined;
|
|
185339
185552
|
cancelAt?: string | undefined;
|
|
185553
|
+
fullSeatPriceId?: string | undefined;
|
|
185554
|
+
builderSeatPriceId?: string | undefined;
|
|
185340
185555
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
185341
185556
|
};
|
|
185342
185557
|
aiFeaturesEnabled: boolean;
|
|
@@ -185408,6 +185623,8 @@ declare const DTOWorkspaceResponse: z$1.ZodObject<{
|
|
|
185408
185623
|
currentPeriodStart?: string | null | undefined;
|
|
185409
185624
|
currentPeriodEnd?: string | null | undefined;
|
|
185410
185625
|
cancelAt?: string | null | undefined;
|
|
185626
|
+
fullSeatPriceId?: string | null | undefined;
|
|
185627
|
+
builderSeatPriceId?: string | null | undefined;
|
|
185411
185628
|
subscriptionStatusUpdatedAt?: string | null | undefined;
|
|
185412
185629
|
};
|
|
185413
185630
|
npmRegistry?: {
|
|
@@ -196273,6 +196490,8 @@ declare class DesignSystemsEndpoint {
|
|
|
196273
196490
|
currentPeriodStart?: string | undefined;
|
|
196274
196491
|
currentPeriodEnd?: string | undefined;
|
|
196275
196492
|
cancelAt?: string | undefined;
|
|
196493
|
+
fullSeatPriceId?: string | undefined;
|
|
196494
|
+
builderSeatPriceId?: string | undefined;
|
|
196276
196495
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
196277
196496
|
};
|
|
196278
196497
|
aiFeaturesEnabled: boolean;
|
|
@@ -198020,6 +198239,8 @@ declare class WorkspaceInvitationsEndpoint {
|
|
|
198020
198239
|
currentPeriodStart?: string | undefined;
|
|
198021
198240
|
currentPeriodEnd?: string | undefined;
|
|
198022
198241
|
cancelAt?: string | undefined;
|
|
198242
|
+
fullSeatPriceId?: string | undefined;
|
|
198243
|
+
builderSeatPriceId?: string | undefined;
|
|
198023
198244
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
198024
198245
|
};
|
|
198025
198246
|
aiFeaturesEnabled: boolean;
|
|
@@ -198152,6 +198373,8 @@ declare class WorkspaceMembersEndpoint {
|
|
|
198152
198373
|
currentPeriodStart?: string | undefined;
|
|
198153
198374
|
currentPeriodEnd?: string | undefined;
|
|
198154
198375
|
cancelAt?: string | undefined;
|
|
198376
|
+
fullSeatPriceId?: string | undefined;
|
|
198377
|
+
builderSeatPriceId?: string | undefined;
|
|
198155
198378
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
198156
198379
|
};
|
|
198157
198380
|
aiFeaturesEnabled: boolean;
|
|
@@ -198225,6 +198448,8 @@ declare class WorkspaceMembersEndpoint {
|
|
|
198225
198448
|
currentPeriodStart?: string | undefined;
|
|
198226
198449
|
currentPeriodEnd?: string | undefined;
|
|
198227
198450
|
cancelAt?: string | undefined;
|
|
198451
|
+
fullSeatPriceId?: string | undefined;
|
|
198452
|
+
builderSeatPriceId?: string | undefined;
|
|
198228
198453
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
198229
198454
|
};
|
|
198230
198455
|
aiFeaturesEnabled: boolean;
|
|
@@ -198331,6 +198556,8 @@ declare class WorkspacesEndpoint {
|
|
|
198331
198556
|
currentPeriodStart?: string | undefined;
|
|
198332
198557
|
currentPeriodEnd?: string | undefined;
|
|
198333
198558
|
cancelAt?: string | undefined;
|
|
198559
|
+
fullSeatPriceId?: string | undefined;
|
|
198560
|
+
builderSeatPriceId?: string | undefined;
|
|
198334
198561
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
198335
198562
|
};
|
|
198336
198563
|
aiFeaturesEnabled: boolean;
|
|
@@ -198404,6 +198631,8 @@ declare class WorkspacesEndpoint {
|
|
|
198404
198631
|
currentPeriodStart?: string | undefined;
|
|
198405
198632
|
currentPeriodEnd?: string | undefined;
|
|
198406
198633
|
cancelAt?: string | undefined;
|
|
198634
|
+
fullSeatPriceId?: string | undefined;
|
|
198635
|
+
builderSeatPriceId?: string | undefined;
|
|
198407
198636
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
198408
198637
|
};
|
|
198409
198638
|
aiFeaturesEnabled: boolean;
|
|
@@ -198481,6 +198710,8 @@ declare class WorkspacesEndpoint {
|
|
|
198481
198710
|
currentPeriodStart?: string | undefined;
|
|
198482
198711
|
currentPeriodEnd?: string | undefined;
|
|
198483
198712
|
cancelAt?: string | undefined;
|
|
198713
|
+
fullSeatPriceId?: string | undefined;
|
|
198714
|
+
builderSeatPriceId?: string | undefined;
|
|
198484
198715
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
198485
198716
|
};
|
|
198486
198717
|
aiFeaturesEnabled: boolean;
|
|
@@ -198611,6 +198842,8 @@ declare class WorkspacesEndpoint {
|
|
|
198611
198842
|
currentPeriodStart?: string | undefined;
|
|
198612
198843
|
currentPeriodEnd?: string | undefined;
|
|
198613
198844
|
cancelAt?: string | undefined;
|
|
198845
|
+
fullSeatPriceId?: string | undefined;
|
|
198846
|
+
builderSeatPriceId?: string | undefined;
|
|
198614
198847
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
198615
198848
|
};
|
|
198616
198849
|
aiFeaturesEnabled: boolean;
|
|
@@ -198733,6 +198966,8 @@ declare class UsersEndpoint {
|
|
|
198733
198966
|
currentPeriodStart?: string | undefined;
|
|
198734
198967
|
currentPeriodEnd?: string | undefined;
|
|
198735
198968
|
cancelAt?: string | undefined;
|
|
198969
|
+
fullSeatPriceId?: string | undefined;
|
|
198970
|
+
builderSeatPriceId?: string | undefined;
|
|
198736
198971
|
subscriptionStatusUpdatedAt?: string | undefined;
|
|
198737
198972
|
};
|
|
198738
198973
|
aiFeaturesEnabled: boolean;
|
|
@@ -201585,4 +201820,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
201585
201820
|
reason: ValidationErrorReason | undefined;
|
|
201586
201821
|
};
|
|
201587
201822
|
|
|
201588
|
-
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, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutResponse, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, 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, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, 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, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, 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, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, 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, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, 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, 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, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, 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, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, 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, 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 };
|
|
201823
|
+
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, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingSubscriptionInterval, 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, DTOFeatureEventAgentResponseFinished, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, 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, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, 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, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, 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, DTOForgeProjectCreateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRemoveResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdateResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, 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, 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, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, 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, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, 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, 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 };
|