@supernova-studio/client 1.11.0 → 1.11.1

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
@@ -7148,7 +7148,20 @@ var DTOSubscription = z239.object({
7148
7148
  amount: z239.number(),
7149
7149
  isTrial: z239.boolean(),
7150
7150
  billingType: BillingTypeSchema.optional(),
7151
- daysUntilDue: z239.number().optional()
7151
+ daysUntilDue: z239.number().optional(),
7152
+ creditBalance: z239.object({
7153
+ oneTime: z239.object({
7154
+ total: z239.number(),
7155
+ used: z239.number(),
7156
+ balance: z239.number()
7157
+ }),
7158
+ recurring: z239.object({
7159
+ total: z239.number(),
7160
+ used: z239.number(),
7161
+ balance: z239.number(),
7162
+ resetAt: z239.string().optional()
7163
+ })
7164
+ })
7152
7165
  });
7153
7166
  var DTOSubscriptionResponse = z239.object({
7154
7167
  subscription: DTOSubscription