@supernova-studio/client 1.11.1 → 1.11.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +331 -80
- package/dist/index.d.ts +331 -80
- package/dist/index.js +69 -34
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1147 -1112
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -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
|
|
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
|
|
78446
|
-
declare const
|
|
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
|
-
}, "
|
|
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
|
|
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,7 +124118,7 @@ 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>;
|
|
123887
|
-
creditBalance: z__default.ZodObject<{
|
|
124121
|
+
creditBalance: z__default.ZodOptional<z__default.ZodObject<{
|
|
123888
124122
|
oneTime: z__default.ZodObject<{
|
|
123889
124123
|
total: z__default.ZodNumber;
|
|
123890
124124
|
used: z__default.ZodNumber;
|
|
@@ -123938,7 +124172,7 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
123938
124172
|
balance: number;
|
|
123939
124173
|
resetAt?: string | undefined;
|
|
123940
124174
|
};
|
|
123941
|
-
}
|
|
124175
|
+
}>>;
|
|
123942
124176
|
}, "strip", z__default.ZodTypeAny, {
|
|
123943
124177
|
product: "free" | "team" | "company" | "enterprise";
|
|
123944
124178
|
planPriceId: string;
|
|
@@ -123947,19 +124181,6 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
123947
124181
|
seatLimit: number;
|
|
123948
124182
|
amount: number;
|
|
123949
124183
|
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
|
-
};
|
|
123963
124184
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
123964
124185
|
stripeSubscriptionId?: string | undefined;
|
|
123965
124186
|
stripeCustomerId?: string | undefined;
|
|
@@ -124114,15 +124335,7 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
124114
124335
|
} | undefined;
|
|
124115
124336
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
124116
124337
|
daysUntilDue?: number | undefined;
|
|
124117
|
-
|
|
124118
|
-
product: "free" | "team" | "company" | "enterprise";
|
|
124119
|
-
planPriceId: string;
|
|
124120
|
-
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
124121
|
-
seats: number;
|
|
124122
|
-
seatLimit: number;
|
|
124123
|
-
amount: number;
|
|
124124
|
-
isTrial: boolean;
|
|
124125
|
-
creditBalance: {
|
|
124338
|
+
creditBalance?: {
|
|
124126
124339
|
oneTime: {
|
|
124127
124340
|
total: number;
|
|
124128
124341
|
used: number;
|
|
@@ -124134,7 +124347,15 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
124134
124347
|
balance: number;
|
|
124135
124348
|
resetAt?: string | undefined;
|
|
124136
124349
|
};
|
|
124137
|
-
};
|
|
124350
|
+
} | undefined;
|
|
124351
|
+
}, {
|
|
124352
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
124353
|
+
planPriceId: string;
|
|
124354
|
+
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
124355
|
+
seats: number;
|
|
124356
|
+
seatLimit: number;
|
|
124357
|
+
amount: number;
|
|
124358
|
+
isTrial: boolean;
|
|
124138
124359
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
124139
124360
|
stripeSubscriptionId?: string | undefined;
|
|
124140
124361
|
stripeCustomerId?: string | undefined;
|
|
@@ -124289,6 +124510,19 @@ declare const DTOSubscription: z__default.ZodObject<{
|
|
|
124289
124510
|
} | undefined;
|
|
124290
124511
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
124291
124512
|
daysUntilDue?: number | undefined;
|
|
124513
|
+
creditBalance?: {
|
|
124514
|
+
oneTime: {
|
|
124515
|
+
total: number;
|
|
124516
|
+
used: number;
|
|
124517
|
+
balance: number;
|
|
124518
|
+
};
|
|
124519
|
+
recurring: {
|
|
124520
|
+
total: number;
|
|
124521
|
+
used: number;
|
|
124522
|
+
balance: number;
|
|
124523
|
+
resetAt?: string | undefined;
|
|
124524
|
+
};
|
|
124525
|
+
} | undefined;
|
|
124292
124526
|
}>;
|
|
124293
124527
|
type DTOSubscription = z__default.infer<typeof DTOSubscription>;
|
|
124294
124528
|
declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
@@ -124929,7 +125163,7 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
124929
125163
|
isTrial: z__default.ZodBoolean;
|
|
124930
125164
|
billingType: z__default.ZodOptional<z__default.ZodEnum<["Auto", "Invoice"]>>;
|
|
124931
125165
|
daysUntilDue: z__default.ZodOptional<z__default.ZodNumber>;
|
|
124932
|
-
creditBalance: z__default.ZodObject<{
|
|
125166
|
+
creditBalance: z__default.ZodOptional<z__default.ZodObject<{
|
|
124933
125167
|
oneTime: z__default.ZodObject<{
|
|
124934
125168
|
total: z__default.ZodNumber;
|
|
124935
125169
|
used: z__default.ZodNumber;
|
|
@@ -124983,7 +125217,7 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
124983
125217
|
balance: number;
|
|
124984
125218
|
resetAt?: string | undefined;
|
|
124985
125219
|
};
|
|
124986
|
-
}
|
|
125220
|
+
}>>;
|
|
124987
125221
|
}, "strip", z__default.ZodTypeAny, {
|
|
124988
125222
|
product: "free" | "team" | "company" | "enterprise";
|
|
124989
125223
|
planPriceId: string;
|
|
@@ -124992,19 +125226,6 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
124992
125226
|
seatLimit: number;
|
|
124993
125227
|
amount: number;
|
|
124994
125228
|
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
|
-
};
|
|
125008
125229
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
125009
125230
|
stripeSubscriptionId?: string | undefined;
|
|
125010
125231
|
stripeCustomerId?: string | undefined;
|
|
@@ -125159,15 +125380,7 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
125159
125380
|
} | undefined;
|
|
125160
125381
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
125161
125382
|
daysUntilDue?: number | undefined;
|
|
125162
|
-
|
|
125163
|
-
product: "free" | "team" | "company" | "enterprise";
|
|
125164
|
-
planPriceId: string;
|
|
125165
|
-
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
125166
|
-
seats: number;
|
|
125167
|
-
seatLimit: number;
|
|
125168
|
-
amount: number;
|
|
125169
|
-
isTrial: boolean;
|
|
125170
|
-
creditBalance: {
|
|
125383
|
+
creditBalance?: {
|
|
125171
125384
|
oneTime: {
|
|
125172
125385
|
total: number;
|
|
125173
125386
|
used: number;
|
|
@@ -125179,7 +125392,15 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
125179
125392
|
balance: number;
|
|
125180
125393
|
resetAt?: string | undefined;
|
|
125181
125394
|
};
|
|
125182
|
-
};
|
|
125395
|
+
} | undefined;
|
|
125396
|
+
}, {
|
|
125397
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
125398
|
+
planPriceId: string;
|
|
125399
|
+
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
125400
|
+
seats: number;
|
|
125401
|
+
seatLimit: number;
|
|
125402
|
+
amount: number;
|
|
125403
|
+
isTrial: boolean;
|
|
125183
125404
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
125184
125405
|
stripeSubscriptionId?: string | undefined;
|
|
125185
125406
|
stripeCustomerId?: string | undefined;
|
|
@@ -125334,17 +125555,7 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
125334
125555
|
} | undefined;
|
|
125335
125556
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
125336
125557
|
daysUntilDue?: number | undefined;
|
|
125337
|
-
|
|
125338
|
-
}, "strip", z__default.ZodTypeAny, {
|
|
125339
|
-
subscription: {
|
|
125340
|
-
product: "free" | "team" | "company" | "enterprise";
|
|
125341
|
-
planPriceId: string;
|
|
125342
|
-
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
125343
|
-
seats: number;
|
|
125344
|
-
seatLimit: number;
|
|
125345
|
-
amount: number;
|
|
125346
|
-
isTrial: boolean;
|
|
125347
|
-
creditBalance: {
|
|
125558
|
+
creditBalance?: {
|
|
125348
125559
|
oneTime: {
|
|
125349
125560
|
total: number;
|
|
125350
125561
|
used: number;
|
|
@@ -125356,7 +125567,17 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
125356
125567
|
balance: number;
|
|
125357
125568
|
resetAt?: string | undefined;
|
|
125358
125569
|
};
|
|
125359
|
-
};
|
|
125570
|
+
} | undefined;
|
|
125571
|
+
}>;
|
|
125572
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
125573
|
+
subscription: {
|
|
125574
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
125575
|
+
planPriceId: string;
|
|
125576
|
+
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
125577
|
+
seats: number;
|
|
125578
|
+
seatLimit: number;
|
|
125579
|
+
amount: number;
|
|
125580
|
+
isTrial: boolean;
|
|
125360
125581
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
125361
125582
|
stripeSubscriptionId?: string | undefined;
|
|
125362
125583
|
stripeCustomerId?: string | undefined;
|
|
@@ -125511,17 +125732,7 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
125511
125732
|
} | undefined;
|
|
125512
125733
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
125513
125734
|
daysUntilDue?: number | undefined;
|
|
125514
|
-
|
|
125515
|
-
}, {
|
|
125516
|
-
subscription: {
|
|
125517
|
-
product: "free" | "team" | "company" | "enterprise";
|
|
125518
|
-
planPriceId: string;
|
|
125519
|
-
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
125520
|
-
seats: number;
|
|
125521
|
-
seatLimit: number;
|
|
125522
|
-
amount: number;
|
|
125523
|
-
isTrial: boolean;
|
|
125524
|
-
creditBalance: {
|
|
125735
|
+
creditBalance?: {
|
|
125525
125736
|
oneTime: {
|
|
125526
125737
|
total: number;
|
|
125527
125738
|
used: number;
|
|
@@ -125533,7 +125744,17 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
125533
125744
|
balance: number;
|
|
125534
125745
|
resetAt?: string | undefined;
|
|
125535
125746
|
};
|
|
125536
|
-
};
|
|
125747
|
+
} | undefined;
|
|
125748
|
+
};
|
|
125749
|
+
}, {
|
|
125750
|
+
subscription: {
|
|
125751
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
125752
|
+
planPriceId: string;
|
|
125753
|
+
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
125754
|
+
seats: number;
|
|
125755
|
+
seatLimit: number;
|
|
125756
|
+
amount: number;
|
|
125757
|
+
isTrial: boolean;
|
|
125537
125758
|
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
125538
125759
|
stripeSubscriptionId?: string | undefined;
|
|
125539
125760
|
stripeCustomerId?: string | undefined;
|
|
@@ -125688,6 +125909,19 @@ declare const DTOSubscriptionResponse: z__default.ZodObject<{
|
|
|
125688
125909
|
} | undefined;
|
|
125689
125910
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
125690
125911
|
daysUntilDue?: number | undefined;
|
|
125912
|
+
creditBalance?: {
|
|
125913
|
+
oneTime: {
|
|
125914
|
+
total: number;
|
|
125915
|
+
used: number;
|
|
125916
|
+
balance: number;
|
|
125917
|
+
};
|
|
125918
|
+
recurring: {
|
|
125919
|
+
total: number;
|
|
125920
|
+
used: number;
|
|
125921
|
+
balance: number;
|
|
125922
|
+
resetAt?: string | undefined;
|
|
125923
|
+
};
|
|
125924
|
+
} | undefined;
|
|
125691
125925
|
};
|
|
125692
125926
|
}>;
|
|
125693
125927
|
type DTOSubscriptionResponse = z__default.infer<typeof DTOSubscriptionResponse>;
|
|
@@ -126766,6 +127000,23 @@ declare const DTOWorkspaceResponse: z$1.ZodObject<{
|
|
|
126766
127000
|
}>;
|
|
126767
127001
|
type DTOWorkspaceResponse = z$1.infer<typeof DTOWorkspaceResponse>;
|
|
126768
127002
|
|
|
127003
|
+
declare const DTOBillingCreditsSpendInput: z__default.ZodObject<{
|
|
127004
|
+
amount: z__default.ZodNumber;
|
|
127005
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
127006
|
+
amount: number;
|
|
127007
|
+
}, {
|
|
127008
|
+
amount: number;
|
|
127009
|
+
}>;
|
|
127010
|
+
type DTOBillingCreditsSpendInput = z__default.infer<typeof DTOBillingCreditsSpendInput>;
|
|
127011
|
+
declare const DTOBillingCreditsSpendResponse: z__default.ZodObject<{
|
|
127012
|
+
hasSpentCredits: z__default.ZodBoolean;
|
|
127013
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
127014
|
+
hasSpentCredits: boolean;
|
|
127015
|
+
}, {
|
|
127016
|
+
hasSpentCredits: boolean;
|
|
127017
|
+
}>;
|
|
127018
|
+
type DTOBillingCreditsSpendResponse = z__default.infer<typeof DTOBillingCreditsSpendResponse>;
|
|
127019
|
+
|
|
126769
127020
|
type PageAnalyticsInput = {
|
|
126770
127021
|
pagePersistentId: string;
|
|
126771
127022
|
priorDataPoints: PublishedDocPageVisitsEntry[];
|
|
@@ -142149,4 +142400,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
142149
142400
|
reason: ValidationErrorReason | undefined;
|
|
142150
142401
|
};
|
|
142151
142402
|
|
|
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 };
|
|
142403
|
+
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, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, 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 };
|