@delopay/sdk 0.71.0 → 0.73.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -2300,6 +2300,12 @@ interface ConnectorResponse {
2300
2300
  connector_label?: string | null;
2301
2301
  connector_account_details?: Record<string, unknown> | null;
2302
2302
  payment_methods_enabled?: Record<string, unknown>[] | null;
2303
+ /**
2304
+ * PaymentMethodType strings this connector's Stripe account cannot use
2305
+ * (region/activation). The dashboard greys these out in the picker. Present
2306
+ * only for Stripe; absent/null means "gate nothing" (fail-open).
2307
+ */
2308
+ unsupported_payment_method_types?: string[] | null;
2303
2309
  metadata?: Record<string, unknown> | null;
2304
2310
  test_mode?: boolean | null;
2305
2311
  disabled?: boolean | null;
package/dist/index.d.ts CHANGED
@@ -2300,6 +2300,12 @@ interface ConnectorResponse {
2300
2300
  connector_label?: string | null;
2301
2301
  connector_account_details?: Record<string, unknown> | null;
2302
2302
  payment_methods_enabled?: Record<string, unknown>[] | null;
2303
+ /**
2304
+ * PaymentMethodType strings this connector's Stripe account cannot use
2305
+ * (region/activation). The dashboard greys these out in the picker. Present
2306
+ * only for Stripe; absent/null means "gate nothing" (fail-open).
2307
+ */
2308
+ unsupported_payment_method_types?: string[] | null;
2303
2309
  metadata?: Record<string, unknown> | null;
2304
2310
  test_mode?: boolean | null;
2305
2311
  disabled?: boolean | null;
@@ -189,6 +189,11 @@ interface AdminTransactionListParams {
189
189
  end_date?: string | null;
190
190
  offset?: number | null;
191
191
  limit?: number | null;
192
+ /** Column to sort by: `amount`, `created`, `modified`, `status`, `shop`,
193
+ * `customer`. Defaults to `created`. */
194
+ sort_on?: string | null;
195
+ /** Sort direction: `asc` or `desc`. Defaults to `desc`. */
196
+ sort_by?: string | null;
192
197
  }
193
198
  interface AdminTransactionListResponse {
194
199
  data: PaymentResponse[];
@@ -189,6 +189,11 @@ interface AdminTransactionListParams {
189
189
  end_date?: string | null;
190
190
  offset?: number | null;
191
191
  limit?: number | null;
192
+ /** Column to sort by: `amount`, `created`, `modified`, `status`, `shop`,
193
+ * `customer`. Defaults to `created`. */
194
+ sort_on?: string | null;
195
+ /** Sort direction: `asc` or `desc`. Defaults to `desc`. */
196
+ sort_by?: string | null;
192
197
  }
193
198
  interface AdminTransactionListResponse {
194
199
  data: PaymentResponse[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@delopay/sdk",
3
- "version": "0.71.0",
3
+ "version": "0.73.0",
4
4
  "description": "Official Delopay TypeScript SDK",
5
5
  "type": "module",
6
6
  "sideEffects": false,