@dodopayments/bun 0.1.0 → 0.1.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.cjs CHANGED
@@ -4180,7 +4180,7 @@ const safeJSON = (text) => {
4180
4180
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
4181
4181
  const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
4182
4182
 
4183
- const VERSION = '2.4.6'; // x-release-please-version
4183
+ const VERSION = '2.23.2'; // x-release-please-version
4184
4184
 
4185
4185
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
4186
4186
  /**
@@ -4390,6 +4390,25 @@ const FallbackEncoder = ({ headers, body }) => {
4390
4390
  };
4391
4391
  };
4392
4392
 
4393
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
4394
+ /**
4395
+ * Basic re-implementation of `qs.stringify` for primitive types.
4396
+ */
4397
+ function stringifyQuery(query) {
4398
+ return Object.entries(query)
4399
+ .filter(([_, value]) => typeof value !== 'undefined')
4400
+ .map(([key, value]) => {
4401
+ if (typeof value === 'string' || typeof value === 'number' || typeof value === 'boolean') {
4402
+ return `${encodeURIComponent(key)}=${encodeURIComponent(value)}`;
4403
+ }
4404
+ if (value === null) {
4405
+ return `${encodeURIComponent(key)}=`;
4406
+ }
4407
+ throw new DodoPaymentsError(`Cannot stringify type ${typeof value}; Expected string, number, boolean, or null. If you need to pass nested query parameters, you can manually encode them, e.g. { query: { 'foo[key1]': value1, 'foo[key2]': value2 } }, and please open a GitHub issue requesting better support for your use case.`);
4408
+ })
4409
+ .join('&');
4410
+ }
4411
+
4393
4412
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
4394
4413
  const levelNumbers = {
4395
4414
  off: 0,
@@ -4483,6 +4502,11 @@ async function defaultParseResponse(client, props) {
4483
4502
  const mediaType = contentType?.split(';')[0]?.trim();
4484
4503
  const isJSON = mediaType?.includes('application/json') || mediaType?.endsWith('+json');
4485
4504
  if (isJSON) {
4505
+ const contentLength = response.headers.get('content-length');
4506
+ if (contentLength === '0') {
4507
+ // if there is no content we can't do anything
4508
+ return undefined;
4509
+ }
4486
4510
  const json = await response.json();
4487
4511
  return json;
4488
4512
  }
@@ -4903,6 +4927,16 @@ class Addons extends APIResource {
4903
4927
  }
4904
4928
  }
4905
4929
 
4930
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
4931
+ let Balances$1 = class Balances extends APIResource {
4932
+ retrieveLedger(query = {}, options) {
4933
+ return this._client.getAPIList('/balances/ledger', (DefaultPageNumberPagination), {
4934
+ query,
4935
+ ...options,
4936
+ });
4937
+ }
4938
+ };
4939
+
4906
4940
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
4907
4941
  class Brands extends APIResource {
4908
4942
  create(body, options) {
@@ -4933,66 +4967,155 @@ class CheckoutSessions extends APIResource {
4933
4967
  retrieve(id, options) {
4934
4968
  return this._client.get(path `/checkouts/${id}`, options);
4935
4969
  }
4936
- }
4937
-
4938
- // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
4939
- let CustomerPortal$1 = class CustomerPortal extends APIResource {
4940
- create(customerID, params = {}, options) {
4941
- const { send_email } = params ?? {};
4942
- return this._client.post(path `/customers/${customerID}/customer-portal/session`, {
4943
- query: { send_email },
4944
- ...options,
4945
- });
4946
- }
4947
- };
4948
-
4949
- // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
4950
- class LedgerEntries extends APIResource {
4951
- create(customerID, body, options) {
4952
- return this._client.post(path `/customers/${customerID}/wallets/ledger-entries`, { body, ...options });
4953
- }
4954
- list(customerID, query = {}, options) {
4955
- return this._client.getAPIList(path `/customers/${customerID}/wallets/ledger-entries`, (DefaultPageNumberPagination), { query, ...options });
4970
+ preview(body, options) {
4971
+ return this._client.post('/checkouts/preview', { body, ...options });
4956
4972
  }
4957
4973
  }
4958
4974
 
4959
4975
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
4960
- class Wallets extends APIResource {
4961
- constructor() {
4962
- super(...arguments);
4963
- this.ledgerEntries = new LedgerEntries(this._client);
4964
- }
4965
- list(customerID, options) {
4966
- return this._client.get(path `/customers/${customerID}/wallets`, options);
4967
- }
4968
- }
4969
- Wallets.LedgerEntries = LedgerEntries;
4970
-
4971
- // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
4972
- class Customers extends APIResource {
4973
- constructor() {
4974
- super(...arguments);
4975
- this.customerPortal = new CustomerPortal$1(this._client);
4976
- this.wallets = new Wallets(this._client);
4976
+ class Balances extends APIResource {
4977
+ /**
4978
+ * Returns the credit balance details for a specific customer and credit
4979
+ * entitlement.
4980
+ *
4981
+ * # Authentication
4982
+ *
4983
+ * Requires an API key with `Viewer` role or higher.
4984
+ *
4985
+ * # Path Parameters
4986
+ *
4987
+ * - `credit_entitlement_id` - The unique identifier of the credit entitlement
4988
+ * - `customer_id` - The unique identifier of the customer
4989
+ *
4990
+ * # Responses
4991
+ *
4992
+ * - `200 OK` - Returns the customer's balance
4993
+ * - `404 Not Found` - Credit entitlement or customer balance not found
4994
+ * - `500 Internal Server Error` - Database or server error
4995
+ */
4996
+ retrieve(customerID, params, options) {
4997
+ const { credit_entitlement_id } = params;
4998
+ return this._client.get(path `/credit-entitlements/${credit_entitlement_id}/balances/${customerID}`, options);
4977
4999
  }
4978
- create(body, options) {
4979
- return this._client.post('/customers', { body, ...options });
5000
+ /**
5001
+ * Returns a paginated list of customer credit balances for the given credit
5002
+ * entitlement.
5003
+ *
5004
+ * # Authentication
5005
+ *
5006
+ * Requires an API key with `Viewer` role or higher.
5007
+ *
5008
+ * # Path Parameters
5009
+ *
5010
+ * - `credit_entitlement_id` - The unique identifier of the credit entitlement
5011
+ *
5012
+ * # Query Parameters
5013
+ *
5014
+ * - `page_size` - Number of items per page (default: 10, max: 100)
5015
+ * - `page_number` - Zero-based page number (default: 0)
5016
+ * - `customer_id` - Optional filter by specific customer
5017
+ *
5018
+ * # Responses
5019
+ *
5020
+ * - `200 OK` - Returns list of customer balances
5021
+ * - `404 Not Found` - Credit entitlement not found
5022
+ * - `500 Internal Server Error` - Database or server error
5023
+ */
5024
+ list(creditEntitlementID, query = {}, options) {
5025
+ return this._client.getAPIList(path `/credit-entitlements/${creditEntitlementID}/balances`, (DefaultPageNumberPagination), { query, ...options });
4980
5026
  }
4981
- retrieve(customerID, options) {
4982
- return this._client.get(path `/customers/${customerID}`, options);
5027
+ /**
5028
+ * For credit entries, a new grant is created. For debit entries, credits are
5029
+ * deducted from existing grants using FIFO (oldest first).
5030
+ *
5031
+ * # Authentication
5032
+ *
5033
+ * Requires an API key with `Editor` role.
5034
+ *
5035
+ * # Path Parameters
5036
+ *
5037
+ * - `credit_entitlement_id` - The unique identifier of the credit entitlement
5038
+ * - `customer_id` - The unique identifier of the customer
5039
+ *
5040
+ * # Request Body
5041
+ *
5042
+ * - `entry_type` - "credit" or "debit"
5043
+ * - `amount` - Amount to credit or debit
5044
+ * - `reason` - Optional human-readable reason
5045
+ * - `expires_at` - Optional expiration for credited amount (only for credit type)
5046
+ * - `idempotency_key` - Optional key to prevent duplicate entries
5047
+ *
5048
+ * # Responses
5049
+ *
5050
+ * - `201 Created` - Ledger entry created successfully
5051
+ * - `400 Bad Request` - Invalid request (e.g., debit with insufficient balance)
5052
+ * - `404 Not Found` - Credit entitlement or customer not found
5053
+ * - `409 Conflict` - Idempotency key already exists
5054
+ * - `500 Internal Server Error` - Database or server error
5055
+ */
5056
+ createLedgerEntry(customerID, params, options) {
5057
+ const { credit_entitlement_id, ...body } = params;
5058
+ return this._client.post(path `/credit-entitlements/${credit_entitlement_id}/balances/${customerID}/ledger-entries`, { body, ...options });
4983
5059
  }
4984
- update(customerID, body, options) {
4985
- return this._client.patch(path `/customers/${customerID}`, { body, ...options });
5060
+ /**
5061
+ * Returns a paginated list of credit grants with optional filtering by status.
5062
+ *
5063
+ * # Authentication
5064
+ *
5065
+ * Requires an API key with `Viewer` role or higher.
5066
+ *
5067
+ * # Path Parameters
5068
+ *
5069
+ * - `credit_entitlement_id` - The unique identifier of the credit entitlement
5070
+ * - `customer_id` - The unique identifier of the customer
5071
+ *
5072
+ * # Query Parameters
5073
+ *
5074
+ * - `page_size` - Number of items per page (default: 10, max: 100)
5075
+ * - `page_number` - Zero-based page number (default: 0)
5076
+ * - `status` - Filter by status: active, expired, depleted
5077
+ *
5078
+ * # Responses
5079
+ *
5080
+ * - `200 OK` - Returns list of grants
5081
+ * - `404 Not Found` - Credit entitlement not found
5082
+ * - `500 Internal Server Error` - Database or server error
5083
+ */
5084
+ listGrants(customerID, params, options) {
5085
+ const { credit_entitlement_id, ...query } = params;
5086
+ return this._client.getAPIList(path `/credit-entitlements/${credit_entitlement_id}/balances/${customerID}/grants`, (DefaultPageNumberPagination), { query, ...options });
4986
5087
  }
4987
- list(query = {}, options) {
4988
- return this._client.getAPIList('/customers', (DefaultPageNumberPagination), {
4989
- query,
4990
- ...options,
4991
- });
5088
+ /**
5089
+ * Returns a paginated list of credit transaction history with optional filtering.
5090
+ *
5091
+ * # Authentication
5092
+ *
5093
+ * Requires an API key with `Viewer` role or higher.
5094
+ *
5095
+ * # Path Parameters
5096
+ *
5097
+ * - `credit_entitlement_id` - The unique identifier of the credit entitlement
5098
+ * - `customer_id` - The unique identifier of the customer
5099
+ *
5100
+ * # Query Parameters
5101
+ *
5102
+ * - `page_size` - Number of items per page (default: 10, max: 100)
5103
+ * - `page_number` - Zero-based page number (default: 0)
5104
+ * - `transaction_type` - Filter by transaction type
5105
+ * - `start_date` - Filter entries from this date
5106
+ * - `end_date` - Filter entries until this date
5107
+ *
5108
+ * # Responses
5109
+ *
5110
+ * - `200 OK` - Returns list of ledger entries
5111
+ * - `404 Not Found` - Credit entitlement not found
5112
+ * - `500 Internal Server Error` - Database or server error
5113
+ */
5114
+ listLedger(customerID, params, options) {
5115
+ const { credit_entitlement_id, ...query } = params;
5116
+ return this._client.getAPIList(path `/credit-entitlements/${credit_entitlement_id}/balances/${customerID}/ledger`, (DefaultPageNumberPagination), { query, ...options });
4992
5117
  }
4993
5118
  }
4994
- Customers.CustomerPortal = CustomerPortal$1;
4995
- Customers.Wallets = Wallets;
4996
5119
 
4997
5120
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
4998
5121
  const brand_privateNullableHeaders = /* @__PURE__ */ Symbol('brand.privateNullableHeaders');
@@ -5062,6 +5185,313 @@ const buildHeaders = (newHeaders) => {
5062
5185
  return { [brand_privateNullableHeaders]: true, values: targetHeaders, nulls: nullHeaders };
5063
5186
  };
5064
5187
 
5188
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
5189
+ class CreditEntitlements extends APIResource {
5190
+ constructor() {
5191
+ super(...arguments);
5192
+ this.balances = new Balances(this._client);
5193
+ }
5194
+ /**
5195
+ * Credit entitlements define reusable credit templates that can be attached to
5196
+ * products. Each entitlement defines how credits behave in terms of expiration,
5197
+ * rollover, and overage.
5198
+ *
5199
+ * # Authentication
5200
+ *
5201
+ * Requires an API key with `Editor` role.
5202
+ *
5203
+ * # Request Body
5204
+ *
5205
+ * - `name` - Human-readable name of the credit entitlement (1-255 characters,
5206
+ * required)
5207
+ * - `description` - Optional description (max 1000 characters)
5208
+ * - `precision` - Decimal precision for credit amounts (0-10 decimal places)
5209
+ * - `unit` - Unit of measurement for the credit (e.g., "API Calls", "Tokens",
5210
+ * "Credits")
5211
+ * - `expires_after_days` - Number of days after which credits expire (optional)
5212
+ * - `rollover_enabled` - Whether unused credits can rollover to the next period
5213
+ * - `rollover_percentage` - Percentage of unused credits that rollover (0-100)
5214
+ * - `rollover_timeframe_count` - Count of timeframe periods for rollover limit
5215
+ * - `rollover_timeframe_interval` - Interval type (day, week, month, year)
5216
+ * - `max_rollover_count` - Maximum number of times credits can be rolled over
5217
+ * - `overage_enabled` - Whether overage charges apply when credits run out
5218
+ * (requires price_per_unit)
5219
+ * - `overage_limit` - Maximum overage units allowed (optional)
5220
+ * - `currency` - Currency for pricing (required if price_per_unit is set)
5221
+ * - `price_per_unit` - Price per credit unit (decimal)
5222
+ *
5223
+ * # Responses
5224
+ *
5225
+ * - `201 Created` - Credit entitlement created successfully, returns the full
5226
+ * entitlement object
5227
+ * - `422 Unprocessable Entity` - Invalid request parameters or validation failure
5228
+ * - `500 Internal Server Error` - Database or server error
5229
+ *
5230
+ * # Business Logic
5231
+ *
5232
+ * - A unique ID with prefix `cde_` is automatically generated for the entitlement
5233
+ * - Created and updated timestamps are automatically set
5234
+ * - Currency is required when price_per_unit is set
5235
+ * - price_per_unit is required when overage_enabled is true
5236
+ * - rollover_timeframe_count and rollover_timeframe_interval must both be set or
5237
+ * both be null
5238
+ */
5239
+ create(body, options) {
5240
+ return this._client.post('/credit-entitlements', { body, ...options });
5241
+ }
5242
+ /**
5243
+ * Returns the full details of a single credit entitlement including all
5244
+ * configuration settings for expiration, rollover, and overage policies.
5245
+ *
5246
+ * # Authentication
5247
+ *
5248
+ * Requires an API key with `Viewer` role or higher.
5249
+ *
5250
+ * # Path Parameters
5251
+ *
5252
+ * - `id` - The unique identifier of the credit entitlement (format: `cde_...`)
5253
+ *
5254
+ * # Responses
5255
+ *
5256
+ * - `200 OK` - Returns the full credit entitlement object
5257
+ * - `404 Not Found` - Credit entitlement does not exist or does not belong to the
5258
+ * authenticated business
5259
+ * - `500 Internal Server Error` - Database or server error
5260
+ *
5261
+ * # Business Logic
5262
+ *
5263
+ * - Only non-deleted credit entitlements can be retrieved through this endpoint
5264
+ * - The entitlement must belong to the authenticated business (business_id check)
5265
+ * - Deleted entitlements return a 404 error and must be retrieved via the list
5266
+ * endpoint with `deleted=true`
5267
+ */
5268
+ retrieve(id, options) {
5269
+ return this._client.get(path `/credit-entitlements/${id}`, options);
5270
+ }
5271
+ /**
5272
+ * Allows partial updates to a credit entitlement's configuration. Only the fields
5273
+ * provided in the request body will be updated; all other fields remain unchanged.
5274
+ * This endpoint supports nullable fields using the double option pattern.
5275
+ *
5276
+ * # Authentication
5277
+ *
5278
+ * Requires an API key with `Editor` role.
5279
+ *
5280
+ * # Path Parameters
5281
+ *
5282
+ * - `id` - The unique identifier of the credit entitlement to update (format:
5283
+ * `cde_...`)
5284
+ *
5285
+ * # Request Body (all fields optional)
5286
+ *
5287
+ * - `name` - Human-readable name of the credit entitlement (1-255 characters)
5288
+ * - `description` - Optional description (max 1000 characters)
5289
+ * - `unit` - Unit of measurement for the credit (1-50 characters)
5290
+ *
5291
+ * Note: `precision` cannot be modified after creation as it would invalidate
5292
+ * existing grants.
5293
+ *
5294
+ * - `expires_after_days` - Number of days after which credits expire (use `null`
5295
+ * to remove expiration)
5296
+ * - `rollover_enabled` - Whether unused credits can rollover to the next period
5297
+ * - `rollover_percentage` - Percentage of unused credits that rollover (0-100,
5298
+ * nullable)
5299
+ * - `rollover_timeframe_count` - Count of timeframe periods for rollover limit
5300
+ * (nullable)
5301
+ * - `rollover_timeframe_interval` - Interval type (day, week, month, year,
5302
+ * nullable)
5303
+ * - `max_rollover_count` - Maximum number of times credits can be rolled over
5304
+ * (nullable)
5305
+ * - `overage_enabled` - Whether overage charges apply when credits run out
5306
+ * - `overage_limit` - Maximum overage units allowed (nullable)
5307
+ * - `currency` - Currency for pricing (nullable)
5308
+ * - `price_per_unit` - Price per credit unit (decimal, nullable)
5309
+ *
5310
+ * # Responses
5311
+ *
5312
+ * - `200 OK` - Credit entitlement updated successfully
5313
+ * - `404 Not Found` - Credit entitlement does not exist or does not belong to the
5314
+ * authenticated business
5315
+ * - `422 Unprocessable Entity` - Invalid request parameters or validation failure
5316
+ * - `500 Internal Server Error` - Database or server error
5317
+ *
5318
+ * # Business Logic
5319
+ *
5320
+ * - Only non-deleted credit entitlements can be updated
5321
+ * - Fields set to `null` explicitly will clear the database value (using double
5322
+ * option pattern)
5323
+ * - The `updated_at` timestamp is automatically updated on successful modification
5324
+ * - Changes take effect immediately but do not retroactively affect existing
5325
+ * credit grants
5326
+ * - The merged state is validated: currency required with price, rollover
5327
+ * timeframe fields together, price required for overage
5328
+ */
5329
+ update(id, body, options) {
5330
+ return this._client.patch(path `/credit-entitlements/${id}`, {
5331
+ body,
5332
+ ...options,
5333
+ headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
5334
+ });
5335
+ }
5336
+ /**
5337
+ * Returns a paginated list of credit entitlements, allowing filtering of deleted
5338
+ * entitlements. By default, only non-deleted entitlements are returned.
5339
+ *
5340
+ * # Authentication
5341
+ *
5342
+ * Requires an API key with `Viewer` role or higher.
5343
+ *
5344
+ * # Query Parameters
5345
+ *
5346
+ * - `page_size` - Number of items per page (default: 10, max: 100)
5347
+ * - `page_number` - Zero-based page number (default: 0)
5348
+ * - `deleted` - Boolean flag to list deleted entitlements instead of active ones
5349
+ * (default: false)
5350
+ *
5351
+ * # Responses
5352
+ *
5353
+ * - `200 OK` - Returns a list of credit entitlements wrapped in a response object
5354
+ * - `422 Unprocessable Entity` - Invalid query parameters (e.g., page_size > 100)
5355
+ * - `500 Internal Server Error` - Database or server error
5356
+ *
5357
+ * # Business Logic
5358
+ *
5359
+ * - Results are ordered by creation date in descending order (newest first)
5360
+ * - Only entitlements belonging to the authenticated business are returned
5361
+ * - The `deleted` parameter controls visibility of soft-deleted entitlements
5362
+ * - Pagination uses offset-based pagination (offset = page_number \* page_size)
5363
+ */
5364
+ list(query = {}, options) {
5365
+ return this._client.getAPIList('/credit-entitlements', (DefaultPageNumberPagination), {
5366
+ query,
5367
+ ...options,
5368
+ });
5369
+ }
5370
+ delete(id, options) {
5371
+ return this._client.delete(path `/credit-entitlements/${id}`, {
5372
+ ...options,
5373
+ headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
5374
+ });
5375
+ }
5376
+ /**
5377
+ * Undeletes a soft-deleted credit entitlement by clearing `deleted_at`, making it
5378
+ * available again through standard list and get endpoints.
5379
+ *
5380
+ * # Authentication
5381
+ *
5382
+ * Requires an API key with `Editor` role.
5383
+ *
5384
+ * # Path Parameters
5385
+ *
5386
+ * - `id` - The unique identifier of the credit entitlement to restore (format:
5387
+ * `cde_...`)
5388
+ *
5389
+ * # Responses
5390
+ *
5391
+ * - `200 OK` - Credit entitlement restored successfully
5392
+ * - `500 Internal Server Error` - Database error, entitlement not found, or
5393
+ * entitlement is not deleted
5394
+ *
5395
+ * # Business Logic
5396
+ *
5397
+ * - Only deleted credit entitlements can be restored
5398
+ * - The query filters for `deleted_at IS NOT NULL`, so non-deleted entitlements
5399
+ * will result in 0 rows affected
5400
+ * - If no rows are affected (entitlement doesn't exist, doesn't belong to
5401
+ * business, or is not deleted), returns 500
5402
+ * - The `updated_at` timestamp is automatically updated on successful restoration
5403
+ * - Once restored, the entitlement becomes immediately available in the standard
5404
+ * list and get endpoints
5405
+ * - All configuration settings are preserved during delete/restore operations
5406
+ *
5407
+ * # Error Handling
5408
+ *
5409
+ * This endpoint returns 500 Internal Server Error in several cases:
5410
+ *
5411
+ * - The credit entitlement does not exist
5412
+ * - The credit entitlement belongs to a different business
5413
+ * - The credit entitlement is not currently deleted (already active)
5414
+ *
5415
+ * Callers should verify the entitlement exists and is deleted before calling this
5416
+ * endpoint.
5417
+ */
5418
+ undelete(id, options) {
5419
+ return this._client.post(path `/credit-entitlements/${id}/undelete`, {
5420
+ ...options,
5421
+ headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
5422
+ });
5423
+ }
5424
+ }
5425
+ CreditEntitlements.Balances = Balances;
5426
+
5427
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
5428
+ let CustomerPortal$1 = class CustomerPortal extends APIResource {
5429
+ create(customerID, params = {}, options) {
5430
+ const { send_email } = params ?? {};
5431
+ return this._client.post(path `/customers/${customerID}/customer-portal/session`, {
5432
+ query: { send_email },
5433
+ ...options,
5434
+ });
5435
+ }
5436
+ };
5437
+
5438
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
5439
+ class LedgerEntries extends APIResource {
5440
+ create(customerID, body, options) {
5441
+ return this._client.post(path `/customers/${customerID}/wallets/ledger-entries`, { body, ...options });
5442
+ }
5443
+ list(customerID, query = {}, options) {
5444
+ return this._client.getAPIList(path `/customers/${customerID}/wallets/ledger-entries`, (DefaultPageNumberPagination), { query, ...options });
5445
+ }
5446
+ }
5447
+
5448
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
5449
+ class Wallets extends APIResource {
5450
+ constructor() {
5451
+ super(...arguments);
5452
+ this.ledgerEntries = new LedgerEntries(this._client);
5453
+ }
5454
+ list(customerID, options) {
5455
+ return this._client.get(path `/customers/${customerID}/wallets`, options);
5456
+ }
5457
+ }
5458
+ Wallets.LedgerEntries = LedgerEntries;
5459
+
5460
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
5461
+ class Customers extends APIResource {
5462
+ constructor() {
5463
+ super(...arguments);
5464
+ this.customerPortal = new CustomerPortal$1(this._client);
5465
+ this.wallets = new Wallets(this._client);
5466
+ }
5467
+ create(body, options) {
5468
+ return this._client.post('/customers', { body, ...options });
5469
+ }
5470
+ retrieve(customerID, options) {
5471
+ return this._client.get(path `/customers/${customerID}`, options);
5472
+ }
5473
+ update(customerID, body, options) {
5474
+ return this._client.patch(path `/customers/${customerID}`, { body, ...options });
5475
+ }
5476
+ list(query = {}, options) {
5477
+ return this._client.getAPIList('/customers', (DefaultPageNumberPagination), {
5478
+ query,
5479
+ ...options,
5480
+ });
5481
+ }
5482
+ /**
5483
+ * List all credit entitlements for a customer with their current balances
5484
+ */
5485
+ listCreditEntitlements(customerID, options) {
5486
+ return this._client.get(path `/customers/${customerID}/credit-entitlements`, options);
5487
+ }
5488
+ retrievePaymentMethods(customerID, options) {
5489
+ return this._client.get(path `/customers/${customerID}/payment-methods`, options);
5490
+ }
5491
+ }
5492
+ Customers.CustomerPortal = CustomerPortal$1;
5493
+ Customers.Wallets = Wallets;
5494
+
5065
5495
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
5066
5496
  class Discounts extends APIResource {
5067
5497
  /**
@@ -5101,6 +5531,14 @@ class Discounts extends APIResource {
5101
5531
  headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
5102
5532
  });
5103
5533
  }
5534
+ /**
5535
+ * Validate and fetch a discount by its code name (e.g., "SAVE20"). This allows
5536
+ * real-time validation directly against the API using the human-readable discount
5537
+ * code instead of requiring the internal discount_id.
5538
+ */
5539
+ retrieveByCode(code, options) {
5540
+ return this._client.get(path `/discounts/code/${code}`, options);
5541
+ }
5104
5542
  }
5105
5543
 
5106
5544
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
@@ -5299,6 +5737,9 @@ class Misc extends APIResource {
5299
5737
 
5300
5738
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
5301
5739
  class Payments extends APIResource {
5740
+ /**
5741
+ * @deprecated
5742
+ */
5302
5743
  create(body, options) {
5303
5744
  return this._client.post('/payments', { body, ...options });
5304
5745
  }
@@ -5334,11 +5775,29 @@ class Images extends APIResource {
5334
5775
  }
5335
5776
  }
5336
5777
 
5778
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
5779
+ class ShortLinks extends APIResource {
5780
+ /**
5781
+ * Gives a Short Checkout URL with custom slug for a product. Uses a Static
5782
+ * Checkout URL under the hood.
5783
+ */
5784
+ create(id, body, options) {
5785
+ return this._client.post(path `/products/${id}/short_links`, { body, ...options });
5786
+ }
5787
+ /**
5788
+ * Lists all short links created by the business.
5789
+ */
5790
+ list(query = {}, options) {
5791
+ return this._client.getAPIList('/products/short_links', (DefaultPageNumberPagination), { query, ...options });
5792
+ }
5793
+ }
5794
+
5337
5795
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
5338
5796
  class Products extends APIResource {
5339
5797
  constructor() {
5340
5798
  super(...arguments);
5341
5799
  this.images = new Images(this._client);
5800
+ this.shortLinks = new ShortLinks(this._client);
5342
5801
  }
5343
5802
  create(body, options) {
5344
5803
  return this._client.post('/products', { body, ...options });
@@ -5376,6 +5835,7 @@ class Products extends APIResource {
5376
5835
  }
5377
5836
  }
5378
5837
  Products.Images = Images;
5838
+ Products.ShortLinks = ShortLinks;
5379
5839
 
5380
5840
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
5381
5841
  class Refunds extends APIResource {
@@ -5395,6 +5855,9 @@ class Refunds extends APIResource {
5395
5855
 
5396
5856
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
5397
5857
  class Subscriptions extends APIResource {
5858
+ /**
5859
+ * @deprecated
5860
+ */
5398
5861
  create(body, options) {
5399
5862
  return this._client.post('/subscriptions', { body, ...options });
5400
5863
  }
@@ -5420,6 +5883,15 @@ class Subscriptions extends APIResource {
5420
5883
  charge(subscriptionID, body, options) {
5421
5884
  return this._client.post(path `/subscriptions/${subscriptionID}/charge`, { body, ...options });
5422
5885
  }
5886
+ previewChangePlan(subscriptionID, body, options) {
5887
+ return this._client.post(path `/subscriptions/${subscriptionID}/change-plan/preview`, {
5888
+ body,
5889
+ ...options,
5890
+ });
5891
+ }
5892
+ retrieveCreditUsage(subscriptionID, options) {
5893
+ return this._client.get(path `/subscriptions/${subscriptionID}/credit-usage`, options);
5894
+ }
5423
5895
  /**
5424
5896
  * Get detailed usage history for a subscription that includes usage-based billing
5425
5897
  * (metered components). This endpoint provides insights into customer usage
@@ -5467,6 +5939,12 @@ class Subscriptions extends APIResource {
5467
5939
  retrieveUsageHistory(subscriptionID, query = {}, options) {
5468
5940
  return this._client.getAPIList(path `/subscriptions/${subscriptionID}/usage-history`, (DefaultPageNumberPagination), { query, ...options });
5469
5941
  }
5942
+ updatePaymentMethod(subscriptionID, body, options) {
5943
+ return this._client.post(path `/subscriptions/${subscriptionID}/update-payment-method`, {
5944
+ body,
5945
+ ...options,
5946
+ });
5947
+ }
5470
5948
  }
5471
5949
 
5472
5950
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
@@ -6588,6 +7066,8 @@ class DodoPayments {
6588
7066
  this.webhookEvents = new WebhookEvents(this);
6589
7067
  this.usageEvents = new UsageEvents(this);
6590
7068
  this.meters = new Meters(this);
7069
+ this.balances = new Balances$1(this);
7070
+ this.creditEntitlements = new CreditEntitlements(this);
6591
7071
  if (bearerToken === undefined) {
6592
7072
  throw new DodoPaymentsError("The DODO_PAYMENTS_API_KEY environment variable is missing or empty; either provide it, or instantiate the DodoPayments client with an bearerToken option, like new DodoPayments({ bearerToken: 'My Bearer Token' }).");
6593
7073
  }
@@ -6652,18 +7132,7 @@ class DodoPayments {
6652
7132
  * Basic re-implementation of `qs.stringify` for primitive types.
6653
7133
  */
6654
7134
  stringifyQuery(query) {
6655
- return Object.entries(query)
6656
- .filter(([_, value]) => typeof value !== 'undefined')
6657
- .map(([key, value]) => {
6658
- if (typeof value === 'string' || typeof value === 'number' || typeof value === 'boolean') {
6659
- return `${encodeURIComponent(key)}=${encodeURIComponent(value)}`;
6660
- }
6661
- if (value === null) {
6662
- return `${encodeURIComponent(key)}=`;
6663
- }
6664
- throw new DodoPaymentsError(`Cannot stringify type ${typeof value}; Expected string, number, boolean, or null. If you need to pass nested query parameters, you can manually encode them, e.g. { query: { 'foo[key1]': value1, 'foo[key2]': value2 } }, and please open a GitHub issue requesting better support for your use case.`);
6665
- })
6666
- .join('&');
7135
+ return stringifyQuery(query);
6667
7136
  }
6668
7137
  getUserAgent() {
6669
7138
  return `${this.constructor.name}/JS ${VERSION}`;
@@ -6827,7 +7296,9 @@ class DodoPayments {
6827
7296
  return { response, options, controller, requestLogID, retryOfRequestLogID, startTime };
6828
7297
  }
6829
7298
  getAPIList(path, Page, opts) {
6830
- return this.requestAPIList(Page, { method: 'get', path, ...opts });
7299
+ return this.requestAPIList(Page, opts && 'then' in opts ?
7300
+ opts.then((opts) => ({ method: 'get', path, ...opts }))
7301
+ : { method: 'get', path, ...opts });
6831
7302
  }
6832
7303
  requestAPIList(Page, options) {
6833
7304
  const request = this.makeRequest(options, null, undefined);
@@ -6835,9 +7306,10 @@ class DodoPayments {
6835
7306
  }
6836
7307
  async fetchWithTimeout(url, init, ms, controller) {
6837
7308
  const { signal, method, ...options } = init || {};
7309
+ const abort = this._makeAbort(controller);
6838
7310
  if (signal)
6839
- signal.addEventListener('abort', () => controller.abort());
6840
- const timeout = setTimeout(() => controller.abort(), ms);
7311
+ signal.addEventListener('abort', abort, { once: true });
7312
+ const timeout = setTimeout(abort, ms);
6841
7313
  const isReadableBody = (globalThis.ReadableStream && options.body instanceof globalThis.ReadableStream) ||
6842
7314
  (typeof options.body === 'object' && options.body !== null && Symbol.asyncIterator in options.body);
6843
7315
  const fetchOptions = {
@@ -6902,9 +7374,9 @@ class DodoPayments {
6902
7374
  timeoutMillis = Date.parse(retryAfterHeader) - Date.now();
6903
7375
  }
6904
7376
  }
6905
- // If the API asks us to wait a certain amount of time (and it's a reasonable amount),
6906
- // just do what it says, but otherwise calculate a default
6907
- if (!(timeoutMillis && 0 <= timeoutMillis && timeoutMillis < 60 * 1000)) {
7377
+ // If the API asks us to wait a certain amount of time, just do what it
7378
+ // says, but otherwise calculate a default
7379
+ if (timeoutMillis === undefined) {
6908
7380
  const maxRetries = options.maxRetries ?? this.maxRetries;
6909
7381
  timeoutMillis = this.calculateDefaultRetryTimeoutMillis(retriesRemaining, maxRetries);
6910
7382
  }
@@ -6966,6 +7438,11 @@ class DodoPayments {
6966
7438
  this.validateHeaders(headers);
6967
7439
  return headers.values;
6968
7440
  }
7441
+ _makeAbort(controller) {
7442
+ // note: we can't just inline this method inside `fetchWithTimeout()` because then the closure
7443
+ // would capture all request options, and cause a memory leak.
7444
+ return () => controller.abort();
7445
+ }
6969
7446
  buildBody({ options: { body, headers: rawHeaders } }) {
6970
7447
  if (!body) {
6971
7448
  return { bodyHeaders: undefined, body: undefined };
@@ -6994,6 +7471,13 @@ class DodoPayments {
6994
7471
  (Symbol.iterator in body && 'next' in body && typeof body.next === 'function'))) {
6995
7472
  return { bodyHeaders: undefined, body: ReadableStreamFrom(body) };
6996
7473
  }
7474
+ else if (typeof body === 'object' &&
7475
+ headers.values.get('content-type') === 'application/x-www-form-urlencoded') {
7476
+ return {
7477
+ bodyHeaders: { 'content-type': 'application/x-www-form-urlencoded' },
7478
+ body: this.stringifyQuery(body),
7479
+ };
7480
+ }
6997
7481
  else {
6998
7482
  return __classPrivateFieldGet(this, _DodoPayments_encoder, "f").call(this, { body, headers });
6999
7483
  }
@@ -7038,6 +7522,8 @@ DodoPayments.Webhooks = Webhooks$1;
7038
7522
  DodoPayments.WebhookEvents = WebhookEvents;
7039
7523
  DodoPayments.UsageEvents = UsageEvents;
7040
7524
  DodoPayments.Meters = Meters;
7525
+ DodoPayments.Balances = Balances$1;
7526
+ DodoPayments.CreditEntitlements = CreditEntitlements;
7041
7527
 
7042
7528
  // src/checkout/checkout.ts
7043
7529
  var checkoutQuerySchema = objectType({
@@ -7658,23 +8144,33 @@ var PaymentSchema = objectType({
7658
8144
  payload_type: literalType("Payment"),
7659
8145
  billing: objectType({
7660
8146
  city: stringType().nullable(),
7661
- country: stringType().nullable(),
8147
+ country: stringType(),
7662
8148
  state: stringType().nullable(),
7663
8149
  street: stringType().nullable(),
7664
8150
  zipcode: stringType().nullable()
7665
8151
  }),
7666
8152
  brand_id: stringType(),
7667
8153
  business_id: stringType(),
8154
+ card_holder_name: stringType().nullable(),
7668
8155
  card_issuing_country: stringType().nullable(),
7669
8156
  card_last_four: stringType().nullable(),
7670
8157
  card_network: stringType().nullable(),
7671
8158
  card_type: stringType().nullable(),
8159
+ checkout_session_id: stringType().nullable(),
7672
8160
  created_at: stringType().transform((d) => new Date(d)),
7673
8161
  currency: stringType(),
8162
+ custom_field_responses: arrayType(
8163
+ objectType({
8164
+ key: stringType(),
8165
+ value: stringType()
8166
+ })
8167
+ ).nullable(),
7674
8168
  customer: objectType({
7675
8169
  customer_id: stringType(),
7676
8170
  email: stringType(),
7677
- name: stringType().nullable()
8171
+ metadata: recordType(anyType()),
8172
+ name: stringType(),
8173
+ phone_number: stringType().nullable()
7678
8174
  }),
7679
8175
  digital_products_delivered: booleanType(),
7680
8176
  discount_id: stringType().nullable(),
@@ -7685,27 +8181,25 @@ var PaymentSchema = objectType({
7685
8181
  created_at: stringType().transform((d) => new Date(d)),
7686
8182
  currency: stringType(),
7687
8183
  dispute_id: stringType(),
7688
- dispute_stage: enumType([
7689
- "pre_dispute",
7690
- "dispute_opened",
7691
- "dispute_won",
7692
- "dispute_lost"
7693
- ]),
8184
+ dispute_stage: enumType(["pre_dispute", "dispute", "pre_arbitration"]),
7694
8185
  dispute_status: enumType([
7695
8186
  "dispute_opened",
7696
- "dispute_won",
7697
- "dispute_lost",
8187
+ "dispute_expired",
7698
8188
  "dispute_accepted",
7699
8189
  "dispute_cancelled",
7700
- "dispute_challenged"
8190
+ "dispute_challenged",
8191
+ "dispute_won",
8192
+ "dispute_lost"
7701
8193
  ]),
7702
8194
  payment_id: stringType(),
7703
8195
  remarks: stringType().nullable()
7704
8196
  })
7705
- ).nullable(),
8197
+ ).default([]),
7706
8198
  error_code: stringType().nullable(),
7707
8199
  error_message: stringType().nullable(),
7708
- metadata: recordType(anyType()).nullable(),
8200
+ invoice_id: stringType().nullable(),
8201
+ invoice_url: stringType().nullable(),
8202
+ metadata: recordType(anyType()),
7709
8203
  payment_id: stringType(),
7710
8204
  payment_link: stringType().nullable(),
7711
8205
  payment_method: stringType().nullable(),
@@ -7718,21 +8212,34 @@ var PaymentSchema = objectType({
7718
8212
  ).nullable(),
7719
8213
  refunds: arrayType(
7720
8214
  objectType({
7721
- amount: numberType(),
8215
+ amount: numberType().nullable(),
7722
8216
  business_id: stringType(),
7723
8217
  created_at: stringType().transform((d) => new Date(d)),
7724
- currency: stringType(),
8218
+ currency: stringType().nullable(),
7725
8219
  is_partial: booleanType(),
7726
8220
  payment_id: stringType(),
7727
8221
  reason: stringType().nullable(),
7728
8222
  refund_id: stringType(),
7729
- status: enumType(["succeeded", "failed", "pending"])
8223
+ status: enumType(["succeeded", "failed", "pending", "review"])
7730
8224
  })
7731
- ).nullable(),
8225
+ ),
8226
+ refund_status: enumType(["partial", "full"]).nullable(),
7732
8227
  settlement_amount: numberType(),
7733
8228
  settlement_currency: stringType(),
7734
8229
  settlement_tax: numberType().nullable(),
7735
- status: enumType(["succeeded", "failed", "pending", "processing", "cancelled"]),
8230
+ status: enumType([
8231
+ "succeeded",
8232
+ "failed",
8233
+ "cancelled",
8234
+ "processing",
8235
+ "requires_customer_action",
8236
+ "requires_merchant_action",
8237
+ "requires_payment_method",
8238
+ "requires_confirmation",
8239
+ "requires_capture",
8240
+ "partially_captured",
8241
+ "partially_captured_and_capturable"
8242
+ ]).nullable(),
7736
8243
  subscription_id: stringType().nullable(),
7737
8244
  tax: numberType().nullable(),
7738
8245
  total_amount: numberType(),
@@ -7745,10 +8252,10 @@ var SubscriptionSchema = objectType({
7745
8252
  addon_id: stringType(),
7746
8253
  quantity: numberType()
7747
8254
  })
7748
- ).nullable(),
8255
+ ),
7749
8256
  billing: objectType({
7750
8257
  city: stringType().nullable(),
7751
- country: stringType().nullable(),
8258
+ country: stringType(),
7752
8259
  state: stringType().nullable(),
7753
8260
  street: stringType().nullable(),
7754
8261
  zipcode: stringType().nullable()
@@ -7760,15 +8267,72 @@ var SubscriptionSchema = objectType({
7760
8267
  customer: objectType({
7761
8268
  customer_id: stringType(),
7762
8269
  email: stringType(),
7763
- name: stringType().nullable()
8270
+ metadata: recordType(anyType()),
8271
+ name: stringType(),
8272
+ phone_number: stringType().nullable()
7764
8273
  }),
8274
+ custom_field_responses: arrayType(
8275
+ objectType({
8276
+ key: stringType(),
8277
+ value: stringType()
8278
+ })
8279
+ ).nullable(),
8280
+ discount_cycles_remaining: numberType().nullable(),
7765
8281
  discount_id: stringType().nullable(),
7766
- metadata: recordType(anyType()).nullable(),
7767
- next_billing_date: stringType().transform((d) => new Date(d)).nullable(),
8282
+ expires_at: stringType().transform((d) => new Date(d)).nullable(),
8283
+ credit_entitlement_cart: arrayType(
8284
+ objectType({
8285
+ credit_entitlement_id: stringType(),
8286
+ credit_entitlement_name: stringType(),
8287
+ credits_amount: stringType(),
8288
+ overage_balance: stringType(),
8289
+ overage_behavior: enumType([
8290
+ "forgive_at_reset",
8291
+ "invoice_at_billing",
8292
+ "carry_deficit",
8293
+ "carry_deficit_auto_repay"
8294
+ ]),
8295
+ overage_enabled: booleanType(),
8296
+ product_id: stringType(),
8297
+ remaining_balance: stringType(),
8298
+ rollover_enabled: booleanType(),
8299
+ unit: stringType(),
8300
+ expires_after_days: numberType().nullable(),
8301
+ low_balance_threshold_percent: numberType().nullable(),
8302
+ max_rollover_count: numberType().nullable(),
8303
+ overage_limit: stringType().nullable(),
8304
+ rollover_percentage: numberType().nullable(),
8305
+ rollover_timeframe_count: numberType().nullable(),
8306
+ rollover_timeframe_interval: enumType(["Day", "Week", "Month", "Year"]).nullable()
8307
+ })
8308
+ ),
8309
+ meter_credit_entitlement_cart: arrayType(
8310
+ objectType({
8311
+ credit_entitlement_id: stringType(),
8312
+ meter_id: stringType(),
8313
+ meter_name: stringType(),
8314
+ meter_units_per_credit: stringType(),
8315
+ product_id: stringType()
8316
+ })
8317
+ ),
8318
+ meters: arrayType(
8319
+ objectType({
8320
+ currency: stringType(),
8321
+ description: stringType().nullable(),
8322
+ free_threshold: numberType(),
8323
+ measurement_unit: stringType(),
8324
+ meter_id: stringType(),
8325
+ name: stringType(),
8326
+ price_per_unit: stringType().nullable()
8327
+ })
8328
+ ),
8329
+ metadata: recordType(anyType()),
8330
+ next_billing_date: stringType().transform((d) => new Date(d)),
7768
8331
  on_demand: booleanType(),
7769
8332
  payment_frequency_count: numberType(),
7770
8333
  payment_frequency_interval: enumType(["Day", "Week", "Month", "Year"]),
7771
- previous_billing_date: stringType().transform((d) => new Date(d)).nullable(),
8334
+ payment_method_id: stringType().nullable(),
8335
+ previous_billing_date: stringType().transform((d) => new Date(d)),
7772
8336
  product_id: stringType(),
7773
8337
  quantity: numberType(),
7774
8338
  recurring_pre_tax_amount: numberType(),
@@ -7776,7 +8340,6 @@ var SubscriptionSchema = objectType({
7776
8340
  "pending",
7777
8341
  "active",
7778
8342
  "on_hold",
7779
- "paused",
7780
8343
  "cancelled",
7781
8344
  "expired",
7782
8345
  "failed"
@@ -7784,20 +8347,29 @@ var SubscriptionSchema = objectType({
7784
8347
  subscription_id: stringType(),
7785
8348
  subscription_period_count: numberType(),
7786
8349
  subscription_period_interval: enumType(["Day", "Week", "Month", "Year"]),
8350
+ tax_id: stringType().nullable(),
7787
8351
  tax_inclusive: booleanType(),
7788
8352
  trial_period_days: numberType()
7789
8353
  });
7790
8354
  var RefundSchema = objectType({
7791
8355
  payload_type: literalType("Refund"),
7792
- amount: numberType(),
8356
+ amount: numberType().nullable(),
7793
8357
  business_id: stringType(),
7794
8358
  created_at: stringType().transform((d) => new Date(d)),
7795
- currency: stringType(),
8359
+ customer: objectType({
8360
+ customer_id: stringType(),
8361
+ email: stringType(),
8362
+ metadata: recordType(anyType()),
8363
+ name: stringType(),
8364
+ phone_number: stringType().nullable()
8365
+ }),
8366
+ currency: stringType().nullable(),
7796
8367
  is_partial: booleanType(),
8368
+ metadata: recordType(anyType()),
7797
8369
  payment_id: stringType(),
7798
8370
  reason: stringType().nullable(),
7799
8371
  refund_id: stringType(),
7800
- status: enumType(["succeeded", "failed", "pending"])
8372
+ status: enumType(["succeeded", "failed", "pending", "review"])
7801
8373
  });
7802
8374
  var DisputeSchema = objectType({
7803
8375
  payload_type: literalType("Dispute"),
@@ -7805,27 +8377,31 @@ var DisputeSchema = objectType({
7805
8377
  business_id: stringType(),
7806
8378
  created_at: stringType().transform((d) => new Date(d)),
7807
8379
  currency: stringType(),
8380
+ customer: objectType({
8381
+ customer_id: stringType(),
8382
+ email: stringType(),
8383
+ metadata: recordType(anyType()),
8384
+ name: stringType(),
8385
+ phone_number: stringType().nullable()
8386
+ }),
7808
8387
  dispute_id: stringType(),
7809
- dispute_stage: enumType([
7810
- "pre_dispute",
7811
- "dispute_opened",
7812
- "dispute_won",
7813
- "dispute_lost"
7814
- ]),
8388
+ dispute_stage: enumType(["pre_dispute", "dispute", "pre_arbitration"]),
7815
8389
  dispute_status: enumType([
7816
8390
  "dispute_opened",
7817
- "dispute_won",
7818
- "dispute_lost",
8391
+ "dispute_expired",
7819
8392
  "dispute_accepted",
7820
8393
  "dispute_cancelled",
7821
- "dispute_challenged"
8394
+ "dispute_challenged",
8395
+ "dispute_won",
8396
+ "dispute_lost"
7822
8397
  ]),
7823
8398
  payment_id: stringType(),
8399
+ reason: stringType().nullable(),
7824
8400
  remarks: stringType().nullable()
7825
8401
  });
7826
8402
  var LicenseKeySchema = objectType({
7827
8403
  payload_type: literalType("LicenseKey"),
7828
- activations_limit: numberType(),
8404
+ activations_limit: numberType().nullable(),
7829
8405
  business_id: stringType(),
7830
8406
  created_at: stringType().transform((d) => new Date(d)),
7831
8407
  customer_id: stringType(),
@@ -7835,7 +8411,7 @@ var LicenseKeySchema = objectType({
7835
8411
  key: stringType(),
7836
8412
  payment_id: stringType(),
7837
8413
  product_id: stringType(),
7838
- status: enumType(["active", "inactive", "expired"]),
8414
+ status: enumType(["active", "expired", "disabled"]),
7839
8415
  subscription_id: stringType().nullable()
7840
8416
  });
7841
8417
  var PaymentSucceededPayloadSchema = objectType({
@@ -7934,12 +8510,6 @@ var SubscriptionRenewedPayloadSchema = objectType({
7934
8510
  timestamp: stringType().transform((d) => new Date(d)),
7935
8511
  data: SubscriptionSchema
7936
8512
  });
7937
- var SubscriptionPausedPayloadSchema = objectType({
7938
- business_id: stringType(),
7939
- type: literalType("subscription.paused"),
7940
- timestamp: stringType().transform((d) => new Date(d)),
7941
- data: SubscriptionSchema
7942
- });
7943
8513
  var SubscriptionPlanChangedPayloadSchema = objectType({
7944
8514
  business_id: stringType(),
7945
8515
  type: literalType("subscription.plan_changed"),
@@ -7976,6 +8546,94 @@ var LicenseKeyCreatedPayloadSchema = objectType({
7976
8546
  timestamp: stringType().transform((d) => new Date(d)),
7977
8547
  data: LicenseKeySchema
7978
8548
  });
8549
+ var CreditLedgerEntrySchema = objectType({
8550
+ payload_type: literalType("CreditLedgerEntry"),
8551
+ id: stringType(),
8552
+ amount: stringType(),
8553
+ balance_after: stringType(),
8554
+ balance_before: stringType(),
8555
+ business_id: stringType(),
8556
+ created_at: stringType().transform((d) => new Date(d)),
8557
+ credit_entitlement_id: stringType(),
8558
+ customer_id: stringType(),
8559
+ is_credit: booleanType(),
8560
+ overage_after: stringType(),
8561
+ overage_before: stringType(),
8562
+ transaction_type: enumType([
8563
+ "credit_added",
8564
+ "credit_deducted",
8565
+ "credit_expired",
8566
+ "credit_rolled_over",
8567
+ "rollover_forfeited",
8568
+ "overage_charged",
8569
+ "auto_top_up",
8570
+ "manual_adjustment",
8571
+ "refund"
8572
+ ]),
8573
+ description: stringType().nullable(),
8574
+ grant_id: stringType().nullable(),
8575
+ reference_id: stringType().nullable(),
8576
+ reference_type: stringType().nullable()
8577
+ });
8578
+ var CreditBalanceLowSchema = objectType({
8579
+ payload_type: literalType("CreditBalanceLow"),
8580
+ customer_id: stringType(),
8581
+ subscription_id: stringType(),
8582
+ credit_entitlement_id: stringType(),
8583
+ credit_entitlement_name: stringType(),
8584
+ available_balance: stringType(),
8585
+ subscription_credits_amount: stringType(),
8586
+ threshold_percent: numberType(),
8587
+ threshold_amount: stringType()
8588
+ });
8589
+ var CreditAddedPayloadSchema = objectType({
8590
+ business_id: stringType(),
8591
+ type: literalType("credit.added"),
8592
+ timestamp: stringType().transform((d) => new Date(d)),
8593
+ data: CreditLedgerEntrySchema
8594
+ });
8595
+ var CreditDeductedPayloadSchema = objectType({
8596
+ business_id: stringType(),
8597
+ type: literalType("credit.deducted"),
8598
+ timestamp: stringType().transform((d) => new Date(d)),
8599
+ data: CreditLedgerEntrySchema
8600
+ });
8601
+ var CreditExpiredPayloadSchema = objectType({
8602
+ business_id: stringType(),
8603
+ type: literalType("credit.expired"),
8604
+ timestamp: stringType().transform((d) => new Date(d)),
8605
+ data: CreditLedgerEntrySchema
8606
+ });
8607
+ var CreditRolledOverPayloadSchema = objectType({
8608
+ business_id: stringType(),
8609
+ type: literalType("credit.rolled_over"),
8610
+ timestamp: stringType().transform((d) => new Date(d)),
8611
+ data: CreditLedgerEntrySchema
8612
+ });
8613
+ var CreditRolloverForfeitedPayloadSchema = objectType({
8614
+ business_id: stringType(),
8615
+ type: literalType("credit.rollover_forfeited"),
8616
+ timestamp: stringType().transform((d) => new Date(d)),
8617
+ data: CreditLedgerEntrySchema
8618
+ });
8619
+ var CreditOverageChargedPayloadSchema = objectType({
8620
+ business_id: stringType(),
8621
+ type: literalType("credit.overage_charged"),
8622
+ timestamp: stringType().transform((d) => new Date(d)),
8623
+ data: CreditLedgerEntrySchema
8624
+ });
8625
+ var CreditManualAdjustmentPayloadSchema = objectType({
8626
+ business_id: stringType(),
8627
+ type: literalType("credit.manual_adjustment"),
8628
+ timestamp: stringType().transform((d) => new Date(d)),
8629
+ data: CreditLedgerEntrySchema
8630
+ });
8631
+ var CreditBalanceLowPayloadSchema = objectType({
8632
+ business_id: stringType(),
8633
+ type: literalType("credit.balance_low"),
8634
+ timestamp: stringType().transform((d) => new Date(d)),
8635
+ data: CreditBalanceLowSchema
8636
+ });
7979
8637
  var WebhookPayloadSchema = discriminatedUnionType("type", [
7980
8638
  PaymentSucceededPayloadSchema,
7981
8639
  PaymentFailedPayloadSchema,
@@ -7993,13 +8651,20 @@ var WebhookPayloadSchema = discriminatedUnionType("type", [
7993
8651
  SubscriptionActivePayloadSchema,
7994
8652
  SubscriptionOnHoldPayloadSchema,
7995
8653
  SubscriptionRenewedPayloadSchema,
7996
- SubscriptionPausedPayloadSchema,
7997
8654
  SubscriptionPlanChangedPayloadSchema,
7998
8655
  SubscriptionCancelledPayloadSchema,
7999
8656
  SubscriptionFailedPayloadSchema,
8000
8657
  SubscriptionExpiredPayloadSchema,
8001
8658
  SubscriptionUpdatedPayloadSchema,
8002
- LicenseKeyCreatedPayloadSchema
8659
+ LicenseKeyCreatedPayloadSchema,
8660
+ CreditAddedPayloadSchema,
8661
+ CreditDeductedPayloadSchema,
8662
+ CreditExpiredPayloadSchema,
8663
+ CreditRolledOverPayloadSchema,
8664
+ CreditRolloverForfeitedPayloadSchema,
8665
+ CreditOverageChargedPayloadSchema,
8666
+ CreditManualAdjustmentPayloadSchema,
8667
+ CreditBalanceLowPayloadSchema
8003
8668
  ]);
8004
8669
 
8005
8670
  // ../../node_modules/@stablelib/base64/lib/base64.js
@@ -8727,9 +9392,6 @@ async function handleWebhookPayload(payload, config, context) {
8727
9392
  if (payload.type === "subscription.renewed") {
8728
9393
  await callHandler(config.onSubscriptionRenewed, payload);
8729
9394
  }
8730
- if (payload.type === "subscription.paused") {
8731
- await callHandler(config.onSubscriptionPaused, payload);
8732
- }
8733
9395
  if (payload.type === "subscription.plan_changed") {
8734
9396
  await callHandler(config.onSubscriptionPlanChanged, payload);
8735
9397
  }
@@ -8748,6 +9410,30 @@ async function handleWebhookPayload(payload, config, context) {
8748
9410
  if (payload.type === "license_key.created") {
8749
9411
  await callHandler(config.onLicenseKeyCreated, payload);
8750
9412
  }
9413
+ if (payload.type === "credit.added") {
9414
+ await callHandler(config.onCreditAdded, payload);
9415
+ }
9416
+ if (payload.type === "credit.deducted") {
9417
+ await callHandler(config.onCreditDeducted, payload);
9418
+ }
9419
+ if (payload.type === "credit.expired") {
9420
+ await callHandler(config.onCreditExpired, payload);
9421
+ }
9422
+ if (payload.type === "credit.rolled_over") {
9423
+ await callHandler(config.onCreditRolledOver, payload);
9424
+ }
9425
+ if (payload.type === "credit.rollover_forfeited") {
9426
+ await callHandler(config.onCreditRolloverForfeited, payload);
9427
+ }
9428
+ if (payload.type === "credit.overage_charged") {
9429
+ await callHandler(config.onCreditOverageCharged, payload);
9430
+ }
9431
+ if (payload.type === "credit.manual_adjustment") {
9432
+ await callHandler(config.onCreditManualAdjustment, payload);
9433
+ }
9434
+ if (payload.type === "credit.balance_low") {
9435
+ await callHandler(config.onCreditBalanceLow, payload);
9436
+ }
8751
9437
  }
8752
9438
 
8753
9439
  const Webhooks = ({ webhookKey, ...eventHandlers }) => {