@supernova-studio/client 1.34.1 → 1.34.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.mts +29 -1
- package/dist/index.d.ts +29 -1
- package/dist/index.js +8 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -7298,6 +7298,10 @@ var DTOCreditBalance = z247.object({
|
|
|
7298
7298
|
})
|
|
7299
7299
|
}).optional()
|
|
7300
7300
|
}).optional();
|
|
7301
|
+
var DTOCreditsPrices = z247.object({
|
|
7302
|
+
creditsToCentsConversionRate: z247.number(),
|
|
7303
|
+
purchaseTopUpCreditsToCentsConversionRate: z247.number()
|
|
7304
|
+
});
|
|
7301
7305
|
var DTOSubscription = z247.object({
|
|
7302
7306
|
stripeSubscriptionId: z247.string().optional(),
|
|
7303
7307
|
stripeCustomerId: z247.string().optional(),
|
|
@@ -7333,7 +7337,8 @@ var DTOSubscription = z247.object({
|
|
|
7333
7337
|
});
|
|
7334
7338
|
var DTOSubscriptionResponse = z247.object({
|
|
7335
7339
|
subscription: DTOSubscription,
|
|
7336
|
-
creditBalance: DTOCreditBalance
|
|
7340
|
+
creditBalance: DTOCreditBalance,
|
|
7341
|
+
creditsPrices: DTOCreditsPrices
|
|
7337
7342
|
});
|
|
7338
7343
|
|
|
7339
7344
|
// src/api/dto/workspaces/transfer-ownership.ts
|
|
@@ -18296,6 +18301,7 @@ export {
|
|
|
18296
18301
|
DTOCreateForgeSpecArtifact,
|
|
18297
18302
|
DTOCreateVersionInput,
|
|
18298
18303
|
DTOCreditBalance,
|
|
18304
|
+
DTOCreditsPrices,
|
|
18299
18305
|
DTODataSource,
|
|
18300
18306
|
DTODataSourceFigma,
|
|
18301
18307
|
DTODataSourceFigmaCloud,
|