@supernova-studio/client 1.44.4 → 1.44.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +225 -101
- package/dist/index.d.ts +225 -101
- package/dist/index.js +12 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -426,10 +426,11 @@ var Subscription = z12.object({
|
|
|
426
426
|
seatLimit: z12.number(),
|
|
427
427
|
monthlyCreditGrantAnchor: nullishToOptional(z12.string()),
|
|
428
428
|
monthlyCreditGrantAmount: nullishToOptional(z12.number()),
|
|
429
|
-
builderSeatLimit: z12.number()
|
|
430
|
-
fullSeatLimit: z12.number()
|
|
431
|
-
|
|
432
|
-
|
|
429
|
+
builderSeatLimit: nullishToOptional(z12.number()),
|
|
430
|
+
fullSeatLimit: nullishToOptional(z12.number()),
|
|
431
|
+
additionalCredits: nullishToOptional(z12.number()),
|
|
432
|
+
builderSeats: nullishToOptional(z12.number()),
|
|
433
|
+
fullSeats: nullishToOptional(z12.number()),
|
|
433
434
|
status: nullishToOptional(InternalStatusSchema),
|
|
434
435
|
subscriptionStatus: nullishToOptional(StripeSubscriptionStatusSchema),
|
|
435
436
|
internalStatus: nullishToOptional(InternalStatusSchema),
|
|
@@ -443,6 +444,7 @@ var Subscription = z12.object({
|
|
|
443
444
|
cancelAt: nullishToOptional(z12.string()),
|
|
444
445
|
fullSeatPriceId: nullishToOptional(z12.string()),
|
|
445
446
|
builderSeatPriceId: nullishToOptional(z12.string()),
|
|
447
|
+
additionalCreditsPriceId: nullishToOptional(z12.string()),
|
|
446
448
|
subscriptionStatusUpdatedAt: nullishToOptional(z12.string())
|
|
447
449
|
});
|
|
448
450
|
var ForgeChatMessageSenderType = z13.enum([
|
|
@@ -7465,6 +7467,7 @@ var DTOSubscription = z248.object({
|
|
|
7465
7467
|
fullSeatLimit: z248.number(),
|
|
7466
7468
|
builderSeats: z248.number(),
|
|
7467
7469
|
builderSeatLimit: z248.number(),
|
|
7470
|
+
additionalCredits: z248.number(),
|
|
7468
7471
|
currentPeriodStart: z248.string().optional(),
|
|
7469
7472
|
currentPeriodEnd: z248.string().optional(),
|
|
7470
7473
|
subscriptionStatusUpdatedAt: z248.string().optional(),
|
|
@@ -7476,7 +7479,8 @@ var DTOSubscription = z248.object({
|
|
|
7476
7479
|
billingType: BillingTypeSchema.optional(),
|
|
7477
7480
|
daysUntilDue: z248.number().optional(),
|
|
7478
7481
|
fullSeatPriceId: z248.string(),
|
|
7479
|
-
builderSeatPriceId: z248.string().optional()
|
|
7482
|
+
builderSeatPriceId: z248.string().optional(),
|
|
7483
|
+
additionalCreditsPriceId: z248.string().optional()
|
|
7480
7484
|
});
|
|
7481
7485
|
var DTOSubscriptionResponse = z248.object({
|
|
7482
7486
|
subscription: DTOSubscription,
|
|
@@ -12441,9 +12445,6 @@ var WorkspaceNpmRegistryEndpoint = class {
|
|
|
12441
12445
|
}
|
|
12442
12446
|
};
|
|
12443
12447
|
|
|
12444
|
-
// src/api/endpoints/workspaces/workspaces.ts
|
|
12445
|
-
import { z as z353 } from "zod";
|
|
12446
|
-
|
|
12447
12448
|
// src/api/endpoints/workspaces/subscription.ts
|
|
12448
12449
|
import { z as z352 } from "zod";
|
|
12449
12450
|
var WorkspaceSubscriptionEndpoint = class {
|
|
@@ -12474,6 +12475,7 @@ var WorkspaceSubscriptionEndpoint = class {
|
|
|
12474
12475
|
};
|
|
12475
12476
|
|
|
12476
12477
|
// src/api/endpoints/workspaces/workspaces.ts
|
|
12478
|
+
import { z as z353 } from "zod";
|
|
12477
12479
|
var WorkspacesEndpoint = class {
|
|
12478
12480
|
constructor(requestExecutor) {
|
|
12479
12481
|
this.requestExecutor = requestExecutor;
|
|
@@ -19943,6 +19945,7 @@ export {
|
|
|
19943
19945
|
WorkspaceInvitationsEndpoint,
|
|
19944
19946
|
WorkspaceMembersEndpoint,
|
|
19945
19947
|
WorkspaceNpmRegistryEndpoint,
|
|
19948
|
+
WorkspaceSubscriptionEndpoint,
|
|
19946
19949
|
WorkspacesEndpoint,
|
|
19947
19950
|
applyActionsLocally,
|
|
19948
19951
|
applyPrivacyConfigurationToNestedItems,
|