@supernova-studio/client 1.19.1 → 1.19.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.mjs CHANGED
@@ -7039,8 +7039,12 @@ import { z as z249 } from "zod";
7039
7039
 
7040
7040
  // src/api/dto/workspaces/billing.ts
7041
7041
  import z238 from "zod";
7042
+ var DTOBillingSupportedModels = z238.enum(["GPT_4_1", "GPT_4_1_MINI", "GPT_4O", "O1"]);
7042
7043
  var DTOBillingCreditsSpendInput = z238.object({
7043
- amount: z238.number()
7044
+ inputTokenCount: z238.number().int().nonnegative(),
7045
+ outputTokenCount: z238.number().int().nonnegative(),
7046
+ inputCachedTokenCount: z238.number().int().nonnegative().optional(),
7047
+ modelName: DTOBillingSupportedModels
7044
7048
  });
7045
7049
  var DTOBillingCreditsSpendResponse = z238.object({
7046
7050
  hasSpentCredits: z238.boolean()
@@ -17798,6 +17802,7 @@ export {
17798
17802
  DTOBffUploadImportRequestBody,
17799
17803
  DTOBillingCreditsSpendInput,
17800
17804
  DTOBillingCreditsSpendResponse,
17805
+ DTOBillingSupportedModels,
17801
17806
  DTOBrand,
17802
17807
  DTOBrandCreatePayload,
17803
17808
  DTOBrandCreateResponse,