@supernova-studio/client 1.10.25 → 1.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -55540,6 +55540,7 @@ declare const DTOExporterListResponse: z$1.ZodObject<{
55540
55540
  role: "Owner" | "OwnerArchived" | "User";
55541
55541
  exporterId: string;
55542
55542
  }[];
55543
+ total: number;
55543
55544
  exporters: {
55544
55545
  id: string;
55545
55546
  name: string;
@@ -55674,13 +55675,13 @@ declare const DTOExporterListResponse: z$1.ZodObject<{
55674
55675
  deprecationNote?: string | undefined;
55675
55676
  replacementExporterId?: string | undefined;
55676
55677
  }[];
55677
- total: number;
55678
55678
  }, {
55679
55679
  membership: {
55680
55680
  workspaceId: string;
55681
55681
  role: "Owner" | "OwnerArchived" | "User";
55682
55682
  exporterId: string;
55683
55683
  }[];
55684
+ total: number;
55684
55685
  exporters: {
55685
55686
  id: string;
55686
55687
  name: string;
@@ -55815,7 +55816,6 @@ declare const DTOExporterListResponse: z$1.ZodObject<{
55815
55816
  deprecationNote?: string | undefined;
55816
55817
  replacementExporterId?: string | undefined;
55817
55818
  }[];
55818
- total: number;
55819
55819
  }>;
55820
55820
  type DTOExporterListResponse = z$1.infer<typeof DTOExporterListResponse>;
55821
55821
  declare const DTOExporterGitProviderEnum: z$1.ZodEnum<["github", "gitlab", "bitbucket", "azure"]>;
@@ -78197,6 +78197,173 @@ declare const DTODeleteForgeParticipantResponse: z$1.ZodObject<{
78197
78197
  }>;
78198
78198
  type DTODeleteForgeParticipantResponse = z$1.infer<typeof DTODeleteForgeParticipantResponse>;
78199
78199
 
78200
+ declare const DTOForgeProjectActionFeatureCreate: z__default.ZodObject<{
78201
+ type: z__default.ZodLiteral<"FeatureCreate">;
78202
+ input: z__default.ZodObject<{
78203
+ id: z__default.ZodString;
78204
+ name: z__default.ZodString;
78205
+ description: z__default.ZodString;
78206
+ }, "strip", z__default.ZodTypeAny, {
78207
+ id: string;
78208
+ name: string;
78209
+ description: string;
78210
+ }, {
78211
+ id: string;
78212
+ name: string;
78213
+ description: string;
78214
+ }>;
78215
+ }, "strip", z__default.ZodTypeAny, {
78216
+ type: "FeatureCreate";
78217
+ input: {
78218
+ id: string;
78219
+ name: string;
78220
+ description: string;
78221
+ };
78222
+ }, {
78223
+ type: "FeatureCreate";
78224
+ input: {
78225
+ id: string;
78226
+ name: string;
78227
+ description: string;
78228
+ };
78229
+ }>;
78230
+ type DTOForgeProjectActionFeatureCreate = z__default.infer<typeof DTOForgeProjectActionFeatureCreate>;
78231
+ declare const DTOForgeProjectActionFeatureUpdate: z__default.ZodObject<{
78232
+ type: z__default.ZodLiteral<"FeatureUpdate">;
78233
+ input: z__default.ZodObject<{
78234
+ id: z__default.ZodString;
78235
+ name: z__default.ZodString;
78236
+ description: z__default.ZodString;
78237
+ }, "strip", z__default.ZodTypeAny, {
78238
+ id: string;
78239
+ name: string;
78240
+ description: string;
78241
+ }, {
78242
+ id: string;
78243
+ name: string;
78244
+ description: string;
78245
+ }>;
78246
+ }, "strip", z__default.ZodTypeAny, {
78247
+ type: "FeatureUpdate";
78248
+ input: {
78249
+ id: string;
78250
+ name: string;
78251
+ description: string;
78252
+ };
78253
+ }, {
78254
+ type: "FeatureUpdate";
78255
+ input: {
78256
+ id: string;
78257
+ name: string;
78258
+ description: string;
78259
+ };
78260
+ }>;
78261
+ type DTOForgeProjectActionFeatureUpdate = z__default.infer<typeof DTOForgeProjectActionFeatureUpdate>;
78262
+ declare const DTOForgeProjectActionFeatureDelete: z__default.ZodObject<{
78263
+ type: z__default.ZodLiteral<"FeatureDelete">;
78264
+ input: z__default.ZodObject<{
78265
+ id: z__default.ZodString;
78266
+ }, "strip", z__default.ZodTypeAny, {
78267
+ id: string;
78268
+ }, {
78269
+ id: string;
78270
+ }>;
78271
+ }, "strip", z__default.ZodTypeAny, {
78272
+ type: "FeatureDelete";
78273
+ input: {
78274
+ id: string;
78275
+ };
78276
+ }, {
78277
+ type: "FeatureDelete";
78278
+ input: {
78279
+ id: string;
78280
+ };
78281
+ }>;
78282
+ type DTOForgeProjectActionFeatureDelete = z__default.infer<typeof DTOForgeProjectActionFeatureDelete>;
78283
+ declare const DTOForgeProjectAction: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
78284
+ type: z__default.ZodLiteral<"FeatureCreate">;
78285
+ input: z__default.ZodObject<{
78286
+ id: z__default.ZodString;
78287
+ name: z__default.ZodString;
78288
+ description: z__default.ZodString;
78289
+ }, "strip", z__default.ZodTypeAny, {
78290
+ id: string;
78291
+ name: string;
78292
+ description: string;
78293
+ }, {
78294
+ id: string;
78295
+ name: string;
78296
+ description: string;
78297
+ }>;
78298
+ }, "strip", z__default.ZodTypeAny, {
78299
+ type: "FeatureCreate";
78300
+ input: {
78301
+ id: string;
78302
+ name: string;
78303
+ description: string;
78304
+ };
78305
+ }, {
78306
+ type: "FeatureCreate";
78307
+ input: {
78308
+ id: string;
78309
+ name: string;
78310
+ description: string;
78311
+ };
78312
+ }>, z__default.ZodObject<{
78313
+ type: z__default.ZodLiteral<"FeatureUpdate">;
78314
+ input: z__default.ZodObject<{
78315
+ id: z__default.ZodString;
78316
+ name: z__default.ZodString;
78317
+ description: z__default.ZodString;
78318
+ }, "strip", z__default.ZodTypeAny, {
78319
+ id: string;
78320
+ name: string;
78321
+ description: string;
78322
+ }, {
78323
+ id: string;
78324
+ name: string;
78325
+ description: string;
78326
+ }>;
78327
+ }, "strip", z__default.ZodTypeAny, {
78328
+ type: "FeatureUpdate";
78329
+ input: {
78330
+ id: string;
78331
+ name: string;
78332
+ description: string;
78333
+ };
78334
+ }, {
78335
+ type: "FeatureUpdate";
78336
+ input: {
78337
+ id: string;
78338
+ name: string;
78339
+ description: string;
78340
+ };
78341
+ }>, z__default.ZodObject<{
78342
+ type: z__default.ZodLiteral<"FeatureDelete">;
78343
+ input: z__default.ZodObject<{
78344
+ id: z__default.ZodString;
78345
+ }, "strip", z__default.ZodTypeAny, {
78346
+ id: string;
78347
+ }, {
78348
+ id: string;
78349
+ }>;
78350
+ }, "strip", z__default.ZodTypeAny, {
78351
+ type: "FeatureDelete";
78352
+ input: {
78353
+ id: string;
78354
+ };
78355
+ }, {
78356
+ type: "FeatureDelete";
78357
+ input: {
78358
+ id: string;
78359
+ };
78360
+ }>]>;
78361
+ type DTOForgeProjectAction = z__default.infer<typeof DTOForgeProjectAction>;
78362
+ type DTOForgeProjectActionType = DTOForgeProjectAction["type"];
78363
+ type DTOForgeProjectActionOfType<T extends DTOForgeProjectActionType> = Extract<DTOForgeProjectAction, {
78364
+ type: T;
78365
+ }>;
78366
+
78200
78367
  declare const DTOForgeProjectArtifactRoom: z$1.ZodObject<{
78201
78368
  id: z$1.ZodString;
78202
78369
  }, "strip", z$1.ZodTypeAny, {
@@ -80315,6 +80482,96 @@ declare const DTOForgeProjectContextRemoveResponse: z$1.ZodObject<{
80315
80482
  }>;
80316
80483
  type DTOForgeProjectContextRemoveResponse = z$1.infer<typeof DTOForgeProjectContextRemoveResponse>;
80317
80484
 
80485
+ declare const DTOForgeProjectFeature: z__default.ZodObject<{
80486
+ id: z__default.ZodString;
80487
+ name: z__default.ZodString;
80488
+ description: z__default.ZodString;
80489
+ isArchived: z__default.ZodBoolean;
80490
+ }, "strip", z__default.ZodTypeAny, {
80491
+ id: string;
80492
+ name: string;
80493
+ description: string;
80494
+ isArchived: boolean;
80495
+ }, {
80496
+ id: string;
80497
+ name: string;
80498
+ description: string;
80499
+ isArchived: boolean;
80500
+ }>;
80501
+ type DTOForgeProjectFeature = z__default.infer<typeof DTOForgeProjectFeature>;
80502
+ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
80503
+ features: z__default.ZodArray<z__default.ZodObject<{
80504
+ id: z__default.ZodString;
80505
+ name: z__default.ZodString;
80506
+ description: z__default.ZodString;
80507
+ isArchived: z__default.ZodBoolean;
80508
+ }, "strip", z__default.ZodTypeAny, {
80509
+ id: string;
80510
+ name: string;
80511
+ description: string;
80512
+ isArchived: boolean;
80513
+ }, {
80514
+ id: string;
80515
+ name: string;
80516
+ description: string;
80517
+ isArchived: boolean;
80518
+ }>, "many">;
80519
+ }, "strip", z__default.ZodTypeAny, {
80520
+ features: {
80521
+ id: string;
80522
+ name: string;
80523
+ description: string;
80524
+ isArchived: boolean;
80525
+ }[];
80526
+ }, {
80527
+ features: {
80528
+ id: string;
80529
+ name: string;
80530
+ description: string;
80531
+ isArchived: boolean;
80532
+ }[];
80533
+ }>;
80534
+ type DTOForgeProjectFeatureListResponse = z__default.infer<typeof DTOForgeProjectFeatureListResponse>;
80535
+ declare const DTOForgeProjectFeatureCreateInput: z__default.ZodObject<{
80536
+ id: z__default.ZodString;
80537
+ name: z__default.ZodString;
80538
+ description: z__default.ZodString;
80539
+ }, "strip", z__default.ZodTypeAny, {
80540
+ id: string;
80541
+ name: string;
80542
+ description: string;
80543
+ }, {
80544
+ id: string;
80545
+ name: string;
80546
+ description: string;
80547
+ }>;
80548
+ type DTOForgeProjectFeatureCreateInput = z__default.infer<typeof DTOForgeProjectFeatureCreateInput>;
80549
+ declare const DTOForgeProjectFeatureUpdateInput: z__default.ZodObject<{
80550
+ id: z__default.ZodString;
80551
+ name: z__default.ZodOptional<z__default.ZodString>;
80552
+ description: z__default.ZodOptional<z__default.ZodString>;
80553
+ isArchived: z__default.ZodOptional<z__default.ZodBoolean>;
80554
+ }, "strip", z__default.ZodTypeAny, {
80555
+ id: string;
80556
+ name?: string | undefined;
80557
+ description?: string | undefined;
80558
+ isArchived?: boolean | undefined;
80559
+ }, {
80560
+ id: string;
80561
+ name?: string | undefined;
80562
+ description?: string | undefined;
80563
+ isArchived?: boolean | undefined;
80564
+ }>;
80565
+ type DTOForgeProjectFeatureUpdateInput = z__default.infer<typeof DTOForgeProjectFeatureUpdateInput>;
80566
+ declare const DTOForgeProjectFeatureDeleteInput: z__default.ZodObject<{
80567
+ id: z__default.ZodString;
80568
+ }, "strip", z__default.ZodTypeAny, {
80569
+ id: string;
80570
+ }, {
80571
+ id: string;
80572
+ }>;
80573
+ type DTOForgeProjectFeatureDeleteInput = z__default.infer<typeof DTOForgeProjectFeatureDeleteInput>;
80574
+
80318
80575
  declare const DTOForgeProjectInvitation: z$1.ZodObject<{
80319
80576
  email: z$1.ZodString;
80320
80577
  forgeProjectId: z$1.ZodString;
@@ -98655,7 +98912,7 @@ declare const DTOCreateForgeProject: z$1.ZodObject<Pick<{
98655
98912
  workspaceId: z$1.ZodString;
98656
98913
  accessMode: z$1.ZodEnum<["InviteOnly", "Open"]>;
98657
98914
  isArchived: z$1.ZodOptional<z$1.ZodBoolean>;
98658
- }, "name" | "meta" | "tags" | "accessMode" | "fpContextId" | "instruction" | "isArchived">, "strip", z$1.ZodTypeAny, {
98915
+ }, "name" | "meta" | "tags" | "accessMode" | "isArchived" | "fpContextId" | "instruction">, "strip", z$1.ZodTypeAny, {
98659
98916
  name: string;
98660
98917
  meta: {
98661
98918
  name: string;
@@ -98693,9 +98950,9 @@ declare const DTOUpdateForgeProject: z$1.ZodObject<{
98693
98950
  }>>;
98694
98951
  tags: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodArray<z$1.ZodString, "many">>>;
98695
98952
  accessMode: z$1.ZodOptional<z$1.ZodEnum<["InviteOnly", "Open"]>>;
98953
+ isArchived: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodBoolean>>;
98696
98954
  fpContextId: z$1.ZodOptional<z$1.ZodString>;
98697
98955
  instruction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
98698
- isArchived: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodBoolean>>;
98699
98956
  } & {
98700
98957
  id: z$1.ZodString;
98701
98958
  membersToRetain: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>;
@@ -98708,9 +98965,9 @@ declare const DTOUpdateForgeProject: z$1.ZodObject<{
98708
98965
  } | undefined;
98709
98966
  tags?: string[] | undefined;
98710
98967
  accessMode?: "Open" | "InviteOnly" | undefined;
98968
+ isArchived?: boolean | undefined;
98711
98969
  fpContextId?: string | undefined;
98712
98970
  instruction?: string | null | undefined;
98713
- isArchived?: boolean | undefined;
98714
98971
  membersToRetain?: string[] | undefined;
98715
98972
  }, {
98716
98973
  id: string;
@@ -98721,9 +98978,9 @@ declare const DTOUpdateForgeProject: z$1.ZodObject<{
98721
98978
  } | undefined;
98722
98979
  tags?: string[] | undefined;
98723
98980
  accessMode?: "Open" | "InviteOnly" | undefined;
98981
+ isArchived?: boolean | undefined;
98724
98982
  fpContextId?: string | undefined;
98725
98983
  instruction?: string | null | undefined;
98726
- isArchived?: boolean | undefined;
98727
98984
  membersToRetain?: string[] | undefined;
98728
98985
  }>;
98729
98986
  type DTOUpdateForgeProject = z$1.infer<typeof DTOUpdateForgeProject>;
@@ -123627,6 +123884,61 @@ declare const DTOSubscription: z__default.ZodObject<{
123627
123884
  isTrial: z__default.ZodBoolean;
123628
123885
  billingType: z__default.ZodOptional<z__default.ZodEnum<["Auto", "Invoice"]>>;
123629
123886
  daysUntilDue: z__default.ZodOptional<z__default.ZodNumber>;
123887
+ creditBalance: z__default.ZodObject<{
123888
+ oneTime: z__default.ZodObject<{
123889
+ total: z__default.ZodNumber;
123890
+ used: z__default.ZodNumber;
123891
+ balance: z__default.ZodNumber;
123892
+ }, "strip", z__default.ZodTypeAny, {
123893
+ total: number;
123894
+ used: number;
123895
+ balance: number;
123896
+ }, {
123897
+ total: number;
123898
+ used: number;
123899
+ balance: number;
123900
+ }>;
123901
+ recurring: z__default.ZodObject<{
123902
+ total: z__default.ZodNumber;
123903
+ used: z__default.ZodNumber;
123904
+ balance: z__default.ZodNumber;
123905
+ resetAt: z__default.ZodOptional<z__default.ZodString>;
123906
+ }, "strip", z__default.ZodTypeAny, {
123907
+ total: number;
123908
+ used: number;
123909
+ balance: number;
123910
+ resetAt?: string | undefined;
123911
+ }, {
123912
+ total: number;
123913
+ used: number;
123914
+ balance: number;
123915
+ resetAt?: string | undefined;
123916
+ }>;
123917
+ }, "strip", z__default.ZodTypeAny, {
123918
+ oneTime: {
123919
+ total: number;
123920
+ used: number;
123921
+ balance: number;
123922
+ };
123923
+ recurring: {
123924
+ total: number;
123925
+ used: number;
123926
+ balance: number;
123927
+ resetAt?: string | undefined;
123928
+ };
123929
+ }, {
123930
+ oneTime: {
123931
+ total: number;
123932
+ used: number;
123933
+ balance: number;
123934
+ };
123935
+ recurring: {
123936
+ total: number;
123937
+ used: number;
123938
+ balance: number;
123939
+ resetAt?: string | undefined;
123940
+ };
123941
+ }>;
123630
123942
  }, "strip", z__default.ZodTypeAny, {
123631
123943
  product: "free" | "team" | "company" | "enterprise";
123632
123944
  planPriceId: string;
@@ -123635,6 +123947,19 @@ declare const DTOSubscription: z__default.ZodObject<{
123635
123947
  seatLimit: number;
123636
123948
  amount: number;
123637
123949
  isTrial: boolean;
123950
+ creditBalance: {
123951
+ oneTime: {
123952
+ total: number;
123953
+ used: number;
123954
+ balance: number;
123955
+ };
123956
+ recurring: {
123957
+ total: number;
123958
+ used: number;
123959
+ balance: number;
123960
+ resetAt?: string | undefined;
123961
+ };
123962
+ };
123638
123963
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
123639
123964
  stripeSubscriptionId?: string | undefined;
123640
123965
  stripeCustomerId?: string | undefined;
@@ -123797,6 +124122,19 @@ declare const DTOSubscription: z__default.ZodObject<{
123797
124122
  seatLimit: number;
123798
124123
  amount: number;
123799
124124
  isTrial: boolean;
124125
+ creditBalance: {
124126
+ oneTime: {
124127
+ total: number;
124128
+ used: number;
124129
+ balance: number;
124130
+ };
124131
+ recurring: {
124132
+ total: number;
124133
+ used: number;
124134
+ balance: number;
124135
+ resetAt?: string | undefined;
124136
+ };
124137
+ };
123800
124138
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
123801
124139
  stripeSubscriptionId?: string | undefined;
123802
124140
  stripeCustomerId?: string | undefined;
@@ -124591,6 +124929,61 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
124591
124929
  isTrial: z__default.ZodBoolean;
124592
124930
  billingType: z__default.ZodOptional<z__default.ZodEnum<["Auto", "Invoice"]>>;
124593
124931
  daysUntilDue: z__default.ZodOptional<z__default.ZodNumber>;
124932
+ creditBalance: z__default.ZodObject<{
124933
+ oneTime: z__default.ZodObject<{
124934
+ total: z__default.ZodNumber;
124935
+ used: z__default.ZodNumber;
124936
+ balance: z__default.ZodNumber;
124937
+ }, "strip", z__default.ZodTypeAny, {
124938
+ total: number;
124939
+ used: number;
124940
+ balance: number;
124941
+ }, {
124942
+ total: number;
124943
+ used: number;
124944
+ balance: number;
124945
+ }>;
124946
+ recurring: z__default.ZodObject<{
124947
+ total: z__default.ZodNumber;
124948
+ used: z__default.ZodNumber;
124949
+ balance: z__default.ZodNumber;
124950
+ resetAt: z__default.ZodOptional<z__default.ZodString>;
124951
+ }, "strip", z__default.ZodTypeAny, {
124952
+ total: number;
124953
+ used: number;
124954
+ balance: number;
124955
+ resetAt?: string | undefined;
124956
+ }, {
124957
+ total: number;
124958
+ used: number;
124959
+ balance: number;
124960
+ resetAt?: string | undefined;
124961
+ }>;
124962
+ }, "strip", z__default.ZodTypeAny, {
124963
+ oneTime: {
124964
+ total: number;
124965
+ used: number;
124966
+ balance: number;
124967
+ };
124968
+ recurring: {
124969
+ total: number;
124970
+ used: number;
124971
+ balance: number;
124972
+ resetAt?: string | undefined;
124973
+ };
124974
+ }, {
124975
+ oneTime: {
124976
+ total: number;
124977
+ used: number;
124978
+ balance: number;
124979
+ };
124980
+ recurring: {
124981
+ total: number;
124982
+ used: number;
124983
+ balance: number;
124984
+ resetAt?: string | undefined;
124985
+ };
124986
+ }>;
124594
124987
  }, "strip", z__default.ZodTypeAny, {
124595
124988
  product: "free" | "team" | "company" | "enterprise";
124596
124989
  planPriceId: string;
@@ -124599,6 +124992,19 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
124599
124992
  seatLimit: number;
124600
124993
  amount: number;
124601
124994
  isTrial: boolean;
124995
+ creditBalance: {
124996
+ oneTime: {
124997
+ total: number;
124998
+ used: number;
124999
+ balance: number;
125000
+ };
125001
+ recurring: {
125002
+ total: number;
125003
+ used: number;
125004
+ balance: number;
125005
+ resetAt?: string | undefined;
125006
+ };
125007
+ };
124602
125008
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
124603
125009
  stripeSubscriptionId?: string | undefined;
124604
125010
  stripeCustomerId?: string | undefined;
@@ -124761,6 +125167,19 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
124761
125167
  seatLimit: number;
124762
125168
  amount: number;
124763
125169
  isTrial: boolean;
125170
+ creditBalance: {
125171
+ oneTime: {
125172
+ total: number;
125173
+ used: number;
125174
+ balance: number;
125175
+ };
125176
+ recurring: {
125177
+ total: number;
125178
+ used: number;
125179
+ balance: number;
125180
+ resetAt?: string | undefined;
125181
+ };
125182
+ };
124764
125183
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
124765
125184
  stripeSubscriptionId?: string | undefined;
124766
125185
  stripeCustomerId?: string | undefined;
@@ -124925,6 +125344,19 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
124925
125344
  seatLimit: number;
124926
125345
  amount: number;
124927
125346
  isTrial: boolean;
125347
+ creditBalance: {
125348
+ oneTime: {
125349
+ total: number;
125350
+ used: number;
125351
+ balance: number;
125352
+ };
125353
+ recurring: {
125354
+ total: number;
125355
+ used: number;
125356
+ balance: number;
125357
+ resetAt?: string | undefined;
125358
+ };
125359
+ };
124928
125360
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
124929
125361
  stripeSubscriptionId?: string | undefined;
124930
125362
  stripeCustomerId?: string | undefined;
@@ -125089,6 +125521,19 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
125089
125521
  seatLimit: number;
125090
125522
  amount: number;
125091
125523
  isTrial: boolean;
125524
+ creditBalance: {
125525
+ oneTime: {
125526
+ total: number;
125527
+ used: number;
125528
+ balance: number;
125529
+ };
125530
+ recurring: {
125531
+ total: number;
125532
+ used: number;
125533
+ balance: number;
125534
+ resetAt?: string | undefined;
125535
+ };
125536
+ };
125092
125537
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
125093
125538
  stripeSubscriptionId?: string | undefined;
125094
125539
  stripeCustomerId?: string | undefined;
@@ -127285,6 +127730,7 @@ declare class ExportersEndpoint {
127285
127730
  role: "Owner" | "OwnerArchived" | "User";
127286
127731
  exporterId: string;
127287
127732
  }[];
127733
+ total: number;
127288
127734
  exporters: {
127289
127735
  id: string;
127290
127736
  name: string;
@@ -127419,7 +127865,6 @@ declare class ExportersEndpoint {
127419
127865
  deprecationNote?: string | undefined;
127420
127866
  replacementExporterId?: string | undefined;
127421
127867
  }[];
127422
- total: number;
127423
127868
  }>;
127424
127869
  get(workspaceId: string, exporterId: string): Promise<{
127425
127870
  membership: {
@@ -141704,4 +142149,4 @@ declare function isValidRedirectPath(path: string): {
141704
142149
  reason: ValidationErrorReason | undefined;
141705
142150
  };
141706
142151
 
141707
- export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, 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, DTOCreateForgeProject, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeProjectResponse, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, 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, 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, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreate, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdate, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectsListResponse, 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, DTORemoveForgeProjectResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUGetForgeProjectResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, 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, 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, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContextsEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, 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, 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 };
142152
+ export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, 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, DTOCreateForgeProject, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeProjectResponse, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, 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, 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, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAction, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreate, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdate, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectsListResponse, 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, DTORemoveForgeProjectResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUGetForgeProjectResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, 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, 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, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContextsEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, 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, 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 };