@dodopayments/express 0.2.6 → 0.2.7

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