@supernova-studio/client 1.11.0 → 1.11.2

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"]>;
@@ -78280,6 +78280,119 @@ declare const DTOForgeProjectActionFeatureDelete: z__default.ZodObject<{
78280
78280
  };
78281
78281
  }>;
78282
78282
  type DTOForgeProjectActionFeatureDelete = z__default.infer<typeof DTOForgeProjectActionFeatureDelete>;
78283
+ declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
78284
+ type: z__default.ZodLiteral<"ArtifactCreate">;
78285
+ input: z__default.ZodObject<Omit<{
78286
+ id: z__default.ZodString;
78287
+ projectId: z__default.ZodString;
78288
+ iterationId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
78289
+ title: z__default.ZodString;
78290
+ previewUrl: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
78291
+ path: z__default.ZodString;
78292
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
78293
+ createdAt: z__default.ZodDate;
78294
+ updatedAt: z__default.ZodDate;
78295
+ createdByUserId: z__default.ZodString;
78296
+ }, "createdAt" | "updatedAt" | "createdByUserId" | "projectId">, "strip", z__default.ZodTypeAny, {
78297
+ id: string;
78298
+ path: string;
78299
+ sortOrder: number;
78300
+ title: string;
78301
+ previewUrl?: string | null | undefined;
78302
+ iterationId?: string | null | undefined;
78303
+ }, {
78304
+ id: string;
78305
+ path: string;
78306
+ title: string;
78307
+ sortOrder?: number | undefined;
78308
+ previewUrl?: string | null | undefined;
78309
+ iterationId?: string | null | undefined;
78310
+ }>;
78311
+ }, "strip", z__default.ZodTypeAny, {
78312
+ type: "ArtifactCreate";
78313
+ input: {
78314
+ id: string;
78315
+ path: string;
78316
+ sortOrder: number;
78317
+ title: string;
78318
+ previewUrl?: string | null | undefined;
78319
+ iterationId?: string | null | undefined;
78320
+ };
78321
+ }, {
78322
+ type: "ArtifactCreate";
78323
+ input: {
78324
+ id: string;
78325
+ path: string;
78326
+ title: string;
78327
+ sortOrder?: number | undefined;
78328
+ previewUrl?: string | null | undefined;
78329
+ iterationId?: string | null | undefined;
78330
+ };
78331
+ }>;
78332
+ type DTOForgeProjectActionArtifactCreate = z__default.infer<typeof DTOForgeProjectActionArtifactCreate>;
78333
+ declare const DTOForgeProjectActionArtifactUpdate: z__default.ZodObject<{
78334
+ type: z__default.ZodLiteral<"ArtifactUpdate">;
78335
+ input: z__default.ZodObject<{
78336
+ path: z__default.ZodOptional<z__default.ZodString>;
78337
+ sortOrder: z__default.ZodOptional<z__default.ZodDefault<z__default.ZodNumber>>;
78338
+ title: z__default.ZodOptional<z__default.ZodString>;
78339
+ previewUrl: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
78340
+ } & {
78341
+ id: z__default.ZodString;
78342
+ }, "strip", z__default.ZodTypeAny, {
78343
+ id: string;
78344
+ path?: string | undefined;
78345
+ sortOrder?: number | undefined;
78346
+ title?: string | undefined;
78347
+ previewUrl?: string | null | undefined;
78348
+ }, {
78349
+ id: string;
78350
+ path?: string | undefined;
78351
+ sortOrder?: number | undefined;
78352
+ title?: string | undefined;
78353
+ previewUrl?: string | null | undefined;
78354
+ }>;
78355
+ }, "strip", z__default.ZodTypeAny, {
78356
+ type: "ArtifactUpdate";
78357
+ input: {
78358
+ id: string;
78359
+ path?: string | undefined;
78360
+ sortOrder?: number | undefined;
78361
+ title?: string | undefined;
78362
+ previewUrl?: string | null | undefined;
78363
+ };
78364
+ }, {
78365
+ type: "ArtifactUpdate";
78366
+ input: {
78367
+ id: string;
78368
+ path?: string | undefined;
78369
+ sortOrder?: number | undefined;
78370
+ title?: string | undefined;
78371
+ previewUrl?: string | null | undefined;
78372
+ };
78373
+ }>;
78374
+ type DTOForgeProjectActionArtifactUpdate = z__default.infer<typeof DTOForgeProjectActionArtifactUpdate>;
78375
+ declare const DTOForgeProjectActionArtifactDelete: z__default.ZodObject<{
78376
+ type: z__default.ZodLiteral<"ArtifactDelete">;
78377
+ input: z__default.ZodObject<{
78378
+ id: z__default.ZodString;
78379
+ }, "strip", z__default.ZodTypeAny, {
78380
+ id: string;
78381
+ }, {
78382
+ id: string;
78383
+ }>;
78384
+ }, "strip", z__default.ZodTypeAny, {
78385
+ type: "ArtifactDelete";
78386
+ input: {
78387
+ id: string;
78388
+ };
78389
+ }, {
78390
+ type: "ArtifactDelete";
78391
+ input: {
78392
+ id: string;
78393
+ };
78394
+ }>;
78395
+ type DTOForgeProjectActionArtifactDelete = z__default.infer<typeof DTOForgeProjectActionArtifactDelete>;
78283
78396
  declare const DTOForgeProjectAction: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
78284
78397
  type: z__default.ZodLiteral<"FeatureCreate">;
78285
78398
  input: z__default.ZodObject<{
@@ -78357,6 +78470,113 @@ declare const DTOForgeProjectAction: z__default.ZodDiscriminatedUnion<"type", [z
78357
78470
  input: {
78358
78471
  id: string;
78359
78472
  };
78473
+ }>, z__default.ZodObject<{
78474
+ type: z__default.ZodLiteral<"ArtifactCreate">;
78475
+ input: z__default.ZodObject<Omit<{
78476
+ id: z__default.ZodString;
78477
+ projectId: z__default.ZodString;
78478
+ iterationId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
78479
+ title: z__default.ZodString;
78480
+ previewUrl: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
78481
+ path: z__default.ZodString;
78482
+ sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
78483
+ createdAt: z__default.ZodDate;
78484
+ updatedAt: z__default.ZodDate;
78485
+ createdByUserId: z__default.ZodString;
78486
+ }, "createdAt" | "updatedAt" | "createdByUserId" | "projectId">, "strip", z__default.ZodTypeAny, {
78487
+ id: string;
78488
+ path: string;
78489
+ sortOrder: number;
78490
+ title: string;
78491
+ previewUrl?: string | null | undefined;
78492
+ iterationId?: string | null | undefined;
78493
+ }, {
78494
+ id: string;
78495
+ path: string;
78496
+ title: string;
78497
+ sortOrder?: number | undefined;
78498
+ previewUrl?: string | null | undefined;
78499
+ iterationId?: string | null | undefined;
78500
+ }>;
78501
+ }, "strip", z__default.ZodTypeAny, {
78502
+ type: "ArtifactCreate";
78503
+ input: {
78504
+ id: string;
78505
+ path: string;
78506
+ sortOrder: number;
78507
+ title: string;
78508
+ previewUrl?: string | null | undefined;
78509
+ iterationId?: string | null | undefined;
78510
+ };
78511
+ }, {
78512
+ type: "ArtifactCreate";
78513
+ input: {
78514
+ id: string;
78515
+ path: string;
78516
+ title: string;
78517
+ sortOrder?: number | undefined;
78518
+ previewUrl?: string | null | undefined;
78519
+ iterationId?: string | null | undefined;
78520
+ };
78521
+ }>, z__default.ZodObject<{
78522
+ type: z__default.ZodLiteral<"ArtifactUpdate">;
78523
+ input: z__default.ZodObject<{
78524
+ path: z__default.ZodOptional<z__default.ZodString>;
78525
+ sortOrder: z__default.ZodOptional<z__default.ZodDefault<z__default.ZodNumber>>;
78526
+ title: z__default.ZodOptional<z__default.ZodString>;
78527
+ previewUrl: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
78528
+ } & {
78529
+ id: z__default.ZodString;
78530
+ }, "strip", z__default.ZodTypeAny, {
78531
+ id: string;
78532
+ path?: string | undefined;
78533
+ sortOrder?: number | undefined;
78534
+ title?: string | undefined;
78535
+ previewUrl?: string | null | undefined;
78536
+ }, {
78537
+ id: string;
78538
+ path?: string | undefined;
78539
+ sortOrder?: number | undefined;
78540
+ title?: string | undefined;
78541
+ previewUrl?: string | null | undefined;
78542
+ }>;
78543
+ }, "strip", z__default.ZodTypeAny, {
78544
+ type: "ArtifactUpdate";
78545
+ input: {
78546
+ id: string;
78547
+ path?: string | undefined;
78548
+ sortOrder?: number | undefined;
78549
+ title?: string | undefined;
78550
+ previewUrl?: string | null | undefined;
78551
+ };
78552
+ }, {
78553
+ type: "ArtifactUpdate";
78554
+ input: {
78555
+ id: string;
78556
+ path?: string | undefined;
78557
+ sortOrder?: number | undefined;
78558
+ title?: string | undefined;
78559
+ previewUrl?: string | null | undefined;
78560
+ };
78561
+ }>, z__default.ZodObject<{
78562
+ type: z__default.ZodLiteral<"ArtifactDelete">;
78563
+ input: z__default.ZodObject<{
78564
+ id: z__default.ZodString;
78565
+ }, "strip", z__default.ZodTypeAny, {
78566
+ id: string;
78567
+ }, {
78568
+ id: string;
78569
+ }>;
78570
+ }, "strip", z__default.ZodTypeAny, {
78571
+ type: "ArtifactDelete";
78572
+ input: {
78573
+ id: string;
78574
+ };
78575
+ }, {
78576
+ type: "ArtifactDelete";
78577
+ input: {
78578
+ id: string;
78579
+ };
78360
78580
  }>]>;
78361
78581
  type DTOForgeProjectAction = z__default.infer<typeof DTOForgeProjectAction>;
78362
78582
  type DTOForgeProjectActionType = DTOForgeProjectAction["type"];
@@ -78426,24 +78646,28 @@ declare const DTOForgeProjectArtifact: z$1.ZodObject<{
78426
78646
  iterationId?: string | null | undefined;
78427
78647
  }>;
78428
78648
  type DTOForgeProjectArtifact = z$1.infer<typeof DTOForgeProjectArtifact>;
78429
- declare const DTOForgeProjectArtifactUpdate: z$1.ZodObject<{
78649
+ declare const DTOForgeProjectArtifactUpdateInput: z$1.ZodObject<{
78430
78650
  path: z$1.ZodOptional<z$1.ZodString>;
78431
78651
  sortOrder: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodNumber>>;
78432
78652
  title: z$1.ZodOptional<z$1.ZodString>;
78433
78653
  previewUrl: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
78654
+ } & {
78655
+ id: z$1.ZodString;
78434
78656
  }, "strip", z$1.ZodTypeAny, {
78657
+ id: string;
78435
78658
  path?: string | undefined;
78436
78659
  sortOrder?: number | undefined;
78437
78660
  title?: string | undefined;
78438
78661
  previewUrl?: string | null | undefined;
78439
78662
  }, {
78663
+ id: string;
78440
78664
  path?: string | undefined;
78441
78665
  sortOrder?: number | undefined;
78442
78666
  title?: string | undefined;
78443
78667
  previewUrl?: string | null | undefined;
78444
78668
  }>;
78445
- type DTOForgeProjectArtifactUpdate = z$1.infer<typeof DTOForgeProjectArtifactUpdate>;
78446
- declare const DTOForgeProjectArtifactCreate: z$1.ZodObject<Omit<{
78669
+ type DTOForgeProjectArtifactUpdateInput = z$1.infer<typeof DTOForgeProjectArtifactUpdateInput>;
78670
+ declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<Omit<{
78447
78671
  id: z$1.ZodString;
78448
78672
  projectId: z$1.ZodString;
78449
78673
  iterationId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
@@ -78454,20 +78678,30 @@ declare const DTOForgeProjectArtifactCreate: z$1.ZodObject<Omit<{
78454
78678
  createdAt: z$1.ZodDate;
78455
78679
  updatedAt: z$1.ZodDate;
78456
78680
  createdByUserId: z$1.ZodString;
78457
- }, "id" | "createdAt" | "updatedAt" | "createdByUserId" | "projectId">, "strip", z$1.ZodTypeAny, {
78681
+ }, "createdAt" | "updatedAt" | "createdByUserId" | "projectId">, "strip", z$1.ZodTypeAny, {
78682
+ id: string;
78458
78683
  path: string;
78459
78684
  sortOrder: number;
78460
78685
  title: string;
78461
78686
  previewUrl?: string | null | undefined;
78462
78687
  iterationId?: string | null | undefined;
78463
78688
  }, {
78689
+ id: string;
78464
78690
  path: string;
78465
78691
  title: string;
78466
78692
  sortOrder?: number | undefined;
78467
78693
  previewUrl?: string | null | undefined;
78468
78694
  iterationId?: string | null | undefined;
78469
78695
  }>;
78470
- type DTOForgeProjectArtifactCreate = z$1.infer<typeof DTOForgeProjectArtifactCreate>;
78696
+ type DTOForgeProjectArtifactCreateInput = z$1.infer<typeof DTOForgeProjectArtifactCreateInput>;
78697
+ declare const DTOForgeProjectArtifactDeleteInput: z$1.ZodObject<{
78698
+ id: z$1.ZodString;
78699
+ }, "strip", z$1.ZodTypeAny, {
78700
+ id: string;
78701
+ }, {
78702
+ id: string;
78703
+ }>;
78704
+ type DTOForgeProjectArtifactDeleteInput = z$1.infer<typeof DTOForgeProjectArtifactDeleteInput>;
78471
78705
  declare const DTOForgeProjectArtifactGetResponse: z$1.ZodObject<{
78472
78706
  artifact: z$1.ZodObject<{
78473
78707
  id: z$1.ZodString;
@@ -123884,6 +124118,61 @@ declare const DTOSubscription: z__default.ZodObject<{
123884
124118
  isTrial: z__default.ZodBoolean;
123885
124119
  billingType: z__default.ZodOptional<z__default.ZodEnum<["Auto", "Invoice"]>>;
123886
124120
  daysUntilDue: z__default.ZodOptional<z__default.ZodNumber>;
124121
+ creditBalance: z__default.ZodObject<{
124122
+ oneTime: z__default.ZodObject<{
124123
+ total: z__default.ZodNumber;
124124
+ used: z__default.ZodNumber;
124125
+ balance: z__default.ZodNumber;
124126
+ }, "strip", z__default.ZodTypeAny, {
124127
+ total: number;
124128
+ used: number;
124129
+ balance: number;
124130
+ }, {
124131
+ total: number;
124132
+ used: number;
124133
+ balance: number;
124134
+ }>;
124135
+ recurring: z__default.ZodObject<{
124136
+ total: z__default.ZodNumber;
124137
+ used: z__default.ZodNumber;
124138
+ balance: z__default.ZodNumber;
124139
+ resetAt: z__default.ZodOptional<z__default.ZodString>;
124140
+ }, "strip", z__default.ZodTypeAny, {
124141
+ total: number;
124142
+ used: number;
124143
+ balance: number;
124144
+ resetAt?: string | undefined;
124145
+ }, {
124146
+ total: number;
124147
+ used: number;
124148
+ balance: number;
124149
+ resetAt?: string | undefined;
124150
+ }>;
124151
+ }, "strip", z__default.ZodTypeAny, {
124152
+ oneTime: {
124153
+ total: number;
124154
+ used: number;
124155
+ balance: number;
124156
+ };
124157
+ recurring: {
124158
+ total: number;
124159
+ used: number;
124160
+ balance: number;
124161
+ resetAt?: string | undefined;
124162
+ };
124163
+ }, {
124164
+ oneTime: {
124165
+ total: number;
124166
+ used: number;
124167
+ balance: number;
124168
+ };
124169
+ recurring: {
124170
+ total: number;
124171
+ used: number;
124172
+ balance: number;
124173
+ resetAt?: string | undefined;
124174
+ };
124175
+ }>;
123887
124176
  }, "strip", z__default.ZodTypeAny, {
123888
124177
  product: "free" | "team" | "company" | "enterprise";
123889
124178
  planPriceId: string;
@@ -123892,6 +124181,19 @@ declare const DTOSubscription: z__default.ZodObject<{
123892
124181
  seatLimit: number;
123893
124182
  amount: number;
123894
124183
  isTrial: boolean;
124184
+ creditBalance: {
124185
+ oneTime: {
124186
+ total: number;
124187
+ used: number;
124188
+ balance: number;
124189
+ };
124190
+ recurring: {
124191
+ total: number;
124192
+ used: number;
124193
+ balance: number;
124194
+ resetAt?: string | undefined;
124195
+ };
124196
+ };
123895
124197
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
123896
124198
  stripeSubscriptionId?: string | undefined;
123897
124199
  stripeCustomerId?: string | undefined;
@@ -124054,6 +124356,19 @@ declare const DTOSubscription: z__default.ZodObject<{
124054
124356
  seatLimit: number;
124055
124357
  amount: number;
124056
124358
  isTrial: boolean;
124359
+ creditBalance: {
124360
+ oneTime: {
124361
+ total: number;
124362
+ used: number;
124363
+ balance: number;
124364
+ };
124365
+ recurring: {
124366
+ total: number;
124367
+ used: number;
124368
+ balance: number;
124369
+ resetAt?: string | undefined;
124370
+ };
124371
+ };
124057
124372
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
124058
124373
  stripeSubscriptionId?: string | undefined;
124059
124374
  stripeCustomerId?: string | undefined;
@@ -124848,6 +125163,61 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
124848
125163
  isTrial: z__default.ZodBoolean;
124849
125164
  billingType: z__default.ZodOptional<z__default.ZodEnum<["Auto", "Invoice"]>>;
124850
125165
  daysUntilDue: z__default.ZodOptional<z__default.ZodNumber>;
125166
+ creditBalance: z__default.ZodObject<{
125167
+ oneTime: z__default.ZodObject<{
125168
+ total: z__default.ZodNumber;
125169
+ used: z__default.ZodNumber;
125170
+ balance: z__default.ZodNumber;
125171
+ }, "strip", z__default.ZodTypeAny, {
125172
+ total: number;
125173
+ used: number;
125174
+ balance: number;
125175
+ }, {
125176
+ total: number;
125177
+ used: number;
125178
+ balance: number;
125179
+ }>;
125180
+ recurring: z__default.ZodObject<{
125181
+ total: z__default.ZodNumber;
125182
+ used: z__default.ZodNumber;
125183
+ balance: z__default.ZodNumber;
125184
+ resetAt: z__default.ZodOptional<z__default.ZodString>;
125185
+ }, "strip", z__default.ZodTypeAny, {
125186
+ total: number;
125187
+ used: number;
125188
+ balance: number;
125189
+ resetAt?: string | undefined;
125190
+ }, {
125191
+ total: number;
125192
+ used: number;
125193
+ balance: number;
125194
+ resetAt?: string | undefined;
125195
+ }>;
125196
+ }, "strip", z__default.ZodTypeAny, {
125197
+ oneTime: {
125198
+ total: number;
125199
+ used: number;
125200
+ balance: number;
125201
+ };
125202
+ recurring: {
125203
+ total: number;
125204
+ used: number;
125205
+ balance: number;
125206
+ resetAt?: string | undefined;
125207
+ };
125208
+ }, {
125209
+ oneTime: {
125210
+ total: number;
125211
+ used: number;
125212
+ balance: number;
125213
+ };
125214
+ recurring: {
125215
+ total: number;
125216
+ used: number;
125217
+ balance: number;
125218
+ resetAt?: string | undefined;
125219
+ };
125220
+ }>;
124851
125221
  }, "strip", z__default.ZodTypeAny, {
124852
125222
  product: "free" | "team" | "company" | "enterprise";
124853
125223
  planPriceId: string;
@@ -124856,6 +125226,19 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
124856
125226
  seatLimit: number;
124857
125227
  amount: number;
124858
125228
  isTrial: boolean;
125229
+ creditBalance: {
125230
+ oneTime: {
125231
+ total: number;
125232
+ used: number;
125233
+ balance: number;
125234
+ };
125235
+ recurring: {
125236
+ total: number;
125237
+ used: number;
125238
+ balance: number;
125239
+ resetAt?: string | undefined;
125240
+ };
125241
+ };
124859
125242
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
124860
125243
  stripeSubscriptionId?: string | undefined;
124861
125244
  stripeCustomerId?: string | undefined;
@@ -125018,6 +125401,19 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
125018
125401
  seatLimit: number;
125019
125402
  amount: number;
125020
125403
  isTrial: boolean;
125404
+ creditBalance: {
125405
+ oneTime: {
125406
+ total: number;
125407
+ used: number;
125408
+ balance: number;
125409
+ };
125410
+ recurring: {
125411
+ total: number;
125412
+ used: number;
125413
+ balance: number;
125414
+ resetAt?: string | undefined;
125415
+ };
125416
+ };
125021
125417
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
125022
125418
  stripeSubscriptionId?: string | undefined;
125023
125419
  stripeCustomerId?: string | undefined;
@@ -125182,6 +125578,19 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
125182
125578
  seatLimit: number;
125183
125579
  amount: number;
125184
125580
  isTrial: boolean;
125581
+ creditBalance: {
125582
+ oneTime: {
125583
+ total: number;
125584
+ used: number;
125585
+ balance: number;
125586
+ };
125587
+ recurring: {
125588
+ total: number;
125589
+ used: number;
125590
+ balance: number;
125591
+ resetAt?: string | undefined;
125592
+ };
125593
+ };
125185
125594
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
125186
125595
  stripeSubscriptionId?: string | undefined;
125187
125596
  stripeCustomerId?: string | undefined;
@@ -125346,6 +125755,19 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
125346
125755
  seatLimit: number;
125347
125756
  amount: number;
125348
125757
  isTrial: boolean;
125758
+ creditBalance: {
125759
+ oneTime: {
125760
+ total: number;
125761
+ used: number;
125762
+ balance: number;
125763
+ };
125764
+ recurring: {
125765
+ total: number;
125766
+ used: number;
125767
+ balance: number;
125768
+ resetAt?: string | undefined;
125769
+ };
125770
+ };
125349
125771
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
125350
125772
  stripeSubscriptionId?: string | undefined;
125351
125773
  stripeCustomerId?: string | undefined;
@@ -127542,6 +127964,7 @@ declare class ExportersEndpoint {
127542
127964
  role: "Owner" | "OwnerArchived" | "User";
127543
127965
  exporterId: string;
127544
127966
  }[];
127967
+ total: number;
127545
127968
  exporters: {
127546
127969
  id: string;
127547
127970
  name: string;
@@ -127676,7 +128099,6 @@ declare class ExportersEndpoint {
127676
128099
  deprecationNote?: string | undefined;
127677
128100
  replacementExporterId?: string | undefined;
127678
128101
  }[];
127679
- total: number;
127680
128102
  }>;
127681
128103
  get(workspaceId: string, exporterId: string): Promise<{
127682
128104
  membership: {
@@ -141961,4 +142383,4 @@ declare function isValidRedirectPath(path: string): {
141961
142383
  reason: ValidationErrorReason | undefined;
141962
142384
  };
141963
142385
 
141964
- 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 };
142386
+ 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, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, 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 };