@delopay/sdk 0.117.0 → 0.118.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/{chunk-RN4LGMQM.js → chunk-IQIUYV2B.js} +72 -4
- package/dist/chunk-IQIUYV2B.js.map +1 -0
- package/dist/index.cjs +71 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +272 -3
- package/dist/index.d.ts +272 -3
- package/dist/index.js +1 -1
- package/dist/internal.cjs +84 -3
- package/dist/internal.cjs.map +1 -1
- package/dist/internal.d.cts +42 -3
- package/dist/internal.d.ts +42 -3
- package/dist/internal.js +14 -1
- package/dist/internal.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-RN4LGMQM.js.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -7259,6 +7259,190 @@ interface MerchantAuditLogListResponse {
|
|
|
7259
7259
|
offset: number;
|
|
7260
7260
|
limit: number;
|
|
7261
7261
|
}
|
|
7262
|
+
/**
|
|
7263
|
+
* Output format of an export.
|
|
7264
|
+
*
|
|
7265
|
+
* Selects an `Accept` header — `text/csv`, `application/json` or
|
|
7266
|
+
* `application/pdf` — rather than a request field, because an export reuses its
|
|
7267
|
+
* list's filter model as literally the same type and several of those are
|
|
7268
|
+
* `deny_unknown_fields`.
|
|
7269
|
+
*
|
|
7270
|
+
* `csv` and `pdf` come back as a `Blob`; `json` comes back as an
|
|
7271
|
+
* {@link ExportEnvelope}. The API's own default is `csv`, but the SDK always
|
|
7272
|
+
* asks explicitly and defaults to `json`, because a method that returns parsed
|
|
7273
|
+
* records is the useful default in a typed client.
|
|
7274
|
+
*
|
|
7275
|
+
* `pdf` is bounded far tighter than the other two — 500 rows against 25,000 —
|
|
7276
|
+
* because a PDF is a document someone reads, not a way to move a spreadsheet.
|
|
7277
|
+
* Over either bound the request is **refused**, never silently truncated.
|
|
7278
|
+
*/
|
|
7279
|
+
type ExportFormat = 'csv' | 'json' | 'pdf';
|
|
7280
|
+
/**
|
|
7281
|
+
* Options for the JSON path: `format` omitted, or explicitly `'json'`.
|
|
7282
|
+
*
|
|
7283
|
+
* The three option types below are separate rather than one generic with an
|
|
7284
|
+
* optional field, and that is load-bearing. A generic `{ format?: F }` is
|
|
7285
|
+
* satisfied by `{}` for **every** `F`, so `ExportOptions<'csv' | 'pdf'>` was
|
|
7286
|
+
* satisfied by an empty object — which selected the `Blob` overload while the
|
|
7287
|
+
* client, seeing no format, asked for and returned JSON. The promise and the
|
|
7288
|
+
* value disagreed, and nothing said so.
|
|
7289
|
+
*/
|
|
7290
|
+
interface JsonExportOptions {
|
|
7291
|
+
format?: 'json';
|
|
7292
|
+
}
|
|
7293
|
+
/**
|
|
7294
|
+
* Options for a binary path. `format` is **required**: `csv` and `pdf` are the
|
|
7295
|
+
* formats you have to ask for, and an absent one can only mean JSON.
|
|
7296
|
+
*/
|
|
7297
|
+
interface BinaryExportOptions {
|
|
7298
|
+
format: 'csv' | 'pdf';
|
|
7299
|
+
}
|
|
7300
|
+
/**
|
|
7301
|
+
* Options whose format is chosen at runtime.
|
|
7302
|
+
*
|
|
7303
|
+
* A caller holding an `ExportFormat` variable cannot know which of the two
|
|
7304
|
+
* paths it will take, so this resolves to `ExportEnvelope<T> | Blob` and makes
|
|
7305
|
+
* them narrow it. Previously such a caller matched no overload at all.
|
|
7306
|
+
*/
|
|
7307
|
+
interface DynamicExportOptions {
|
|
7308
|
+
format: ExportFormat;
|
|
7309
|
+
}
|
|
7310
|
+
/** Any of the three shapes an export method accepts. */
|
|
7311
|
+
type ExportOptions = JsonExportOptions | BinaryExportOptions | DynamicExportOptions;
|
|
7312
|
+
/**
|
|
7313
|
+
* The `json` shape of every export.
|
|
7314
|
+
*
|
|
7315
|
+
* `filters` echoes what the file was produced under, so the limitation travels
|
|
7316
|
+
* inside the data rather than living only in the call site that made it.
|
|
7317
|
+
*/
|
|
7318
|
+
interface ExportEnvelope<T> {
|
|
7319
|
+
records: T[];
|
|
7320
|
+
record_count: number;
|
|
7321
|
+
filters: Record<string, unknown>;
|
|
7322
|
+
}
|
|
7323
|
+
/** One row of the transactions export. */
|
|
7324
|
+
interface TransactionExportRecord {
|
|
7325
|
+
payment_id: string;
|
|
7326
|
+
merchant_id: string;
|
|
7327
|
+
/** The shop the payment belongs to. */
|
|
7328
|
+
shop_id: string | null;
|
|
7329
|
+
status: string;
|
|
7330
|
+
amount: number;
|
|
7331
|
+
currency: string | null;
|
|
7332
|
+
/** ISO 8601, UTC. */
|
|
7333
|
+
created_at: string;
|
|
7334
|
+
}
|
|
7335
|
+
/**
|
|
7336
|
+
* Filters of the transactions export.
|
|
7337
|
+
*
|
|
7338
|
+
* `start_date` is **required**. It used to default to a hardcoded 2020-01-01,
|
|
7339
|
+
* which made the cheapest request to write the most expensive to serve.
|
|
7340
|
+
*
|
|
7341
|
+
* Both dates accept ISO 8601 with an offset (`2026-08-01T00:00:00Z`); the
|
|
7342
|
+
* zone-less form the endpoint originally required is still accepted and read as
|
|
7343
|
+
* UTC.
|
|
7344
|
+
*/
|
|
7345
|
+
interface TransactionExportParams {
|
|
7346
|
+
/**
|
|
7347
|
+
* Narrow to one shop. A shop-scoped token may only name its own shop, and a
|
|
7348
|
+
* merchant-level caller may only name one of its merchant's — anything else
|
|
7349
|
+
* is an error rather than an empty file.
|
|
7350
|
+
*/
|
|
7351
|
+
shop_id?: string;
|
|
7352
|
+
start_date: string;
|
|
7353
|
+
end_date?: string;
|
|
7354
|
+
/** A payment status. An unknown one is a 400, not an empty export. */
|
|
7355
|
+
status?: string;
|
|
7356
|
+
}
|
|
7357
|
+
/** One row of the refunds export. */
|
|
7358
|
+
interface RefundExportRecord {
|
|
7359
|
+
refund_id: string;
|
|
7360
|
+
payment_id: string;
|
|
7361
|
+
profile_id: string | null;
|
|
7362
|
+
status: string;
|
|
7363
|
+
amount: number;
|
|
7364
|
+
currency: string;
|
|
7365
|
+
reason: string | null;
|
|
7366
|
+
connector: string;
|
|
7367
|
+
error_code: string | null;
|
|
7368
|
+
error_message: string | null;
|
|
7369
|
+
created_at: string | null;
|
|
7370
|
+
updated_at: string | null;
|
|
7371
|
+
}
|
|
7372
|
+
/** One row of the disputes export. */
|
|
7373
|
+
interface DisputeExportRecord {
|
|
7374
|
+
dispute_id: string;
|
|
7375
|
+
payment_id: string;
|
|
7376
|
+
attempt_id: string;
|
|
7377
|
+
profile_id: string | null;
|
|
7378
|
+
dispute_stage: string;
|
|
7379
|
+
dispute_status: string;
|
|
7380
|
+
amount: string;
|
|
7381
|
+
currency: string;
|
|
7382
|
+
connector: string;
|
|
7383
|
+
connector_status: string;
|
|
7384
|
+
connector_dispute_id: string;
|
|
7385
|
+
connector_reason: string | null;
|
|
7386
|
+
connector_reason_code: string | null;
|
|
7387
|
+
challenge_required_by: string | null;
|
|
7388
|
+
created_at: string;
|
|
7389
|
+
}
|
|
7390
|
+
/** One row of the payouts export. */
|
|
7391
|
+
interface PayoutExportRecord {
|
|
7392
|
+
payout_id: string;
|
|
7393
|
+
profile_id: string;
|
|
7394
|
+
customer_id: string | null;
|
|
7395
|
+
status: string;
|
|
7396
|
+
amount: number;
|
|
7397
|
+
currency: string;
|
|
7398
|
+
payout_type: string | null;
|
|
7399
|
+
connector: string | null;
|
|
7400
|
+
error_code: string | null;
|
|
7401
|
+
error_message: string | null;
|
|
7402
|
+
merchant_order_reference_id: string | null;
|
|
7403
|
+
created_at: string;
|
|
7404
|
+
}
|
|
7405
|
+
/** One row of the subscriptions export. */
|
|
7406
|
+
interface SubscriptionExportRecord {
|
|
7407
|
+
id: string;
|
|
7408
|
+
merchant_reference_id: string | null;
|
|
7409
|
+
profile_id: string;
|
|
7410
|
+
customer_id: string;
|
|
7411
|
+
status: string;
|
|
7412
|
+
plan_id: string | null;
|
|
7413
|
+
item_price_id: string | null;
|
|
7414
|
+
coupon_code: string | null;
|
|
7415
|
+
test_mode: boolean | null;
|
|
7416
|
+
}
|
|
7417
|
+
/**
|
|
7418
|
+
* One row of a merchant's audit-log export.
|
|
7419
|
+
*
|
|
7420
|
+
* The columns answer the question an audit asks rather than mirroring the
|
|
7421
|
+
* dashboard table: who acted, on whose behalf if they were impersonating, what
|
|
7422
|
+
* they did, to what, when, and from where. `real_actor_*`, `session_id` and
|
|
7423
|
+
* `ip_address` are not visible columns anywhere and are the reason the log
|
|
7424
|
+
* exists. `details` is deliberately absent — an unbounded per-action blob is
|
|
7425
|
+
* unreadable in a spreadsheet cell.
|
|
7426
|
+
*/
|
|
7427
|
+
interface MerchantAuditLogExportRecord {
|
|
7428
|
+
created_at: string;
|
|
7429
|
+
actor_kind: string;
|
|
7430
|
+
actor_id: string | null;
|
|
7431
|
+
actor_name: string | null;
|
|
7432
|
+
real_actor_id: string | null;
|
|
7433
|
+
real_actor_name: string | null;
|
|
7434
|
+
impersonation_kind: string | null;
|
|
7435
|
+
session_id: string | null;
|
|
7436
|
+
ip_address: string | null;
|
|
7437
|
+
user_agent: string | null;
|
|
7438
|
+
profile_id: string | null;
|
|
7439
|
+
action: string;
|
|
7440
|
+
entity_type: string;
|
|
7441
|
+
entity_id: string | null;
|
|
7442
|
+
entity_name: string | null;
|
|
7443
|
+
/** Space-separated, so one cell holds the whole set. */
|
|
7444
|
+
changed_fields: string;
|
|
7445
|
+
}
|
|
7262
7446
|
|
|
7263
7447
|
/** Create and manage API keys for a merchant account. */
|
|
7264
7448
|
declare class ApiKeys {
|
|
@@ -9850,11 +10034,96 @@ declare class Cards {
|
|
|
9850
10034
|
retrieve(bin: string): Promise<Record<string, unknown>>;
|
|
9851
10035
|
}
|
|
9852
10036
|
|
|
10037
|
+
/**
|
|
10038
|
+
* Emit a list as a file.
|
|
10039
|
+
*
|
|
10040
|
+
* Every method here mirrors one list endpoint and takes **that list's own
|
|
10041
|
+
* filters**, unchanged — there is no second filter vocabulary for exports. The
|
|
10042
|
+
* shop scope is resolved the same way too, so an export cannot show a shop its
|
|
10043
|
+
* list would not: a shop-scoped token exports its own shop, and naming another
|
|
10044
|
+
* is refused rather than ignored.
|
|
10045
|
+
*
|
|
10046
|
+
* Every export is **one read**, not a paged walk, and is bounded at 25,000
|
|
10047
|
+
* rows (500 for `pdf`, which is a document rather than a data feed). Over the
|
|
10048
|
+
* bound the request is refused with `DE_07 export_row_limit_exceeded` carrying
|
|
10049
|
+
* `{entity, max_rows}` — a truncated finance file that reports success is the
|
|
10050
|
+
* thing these endpoints exist not to produce.
|
|
10051
|
+
*
|
|
10052
|
+
* `format` selects an `Accept` header, never a request field: an export reuses
|
|
10053
|
+
* its list's filter model as literally the same type, and several of those are
|
|
10054
|
+
* `deny_unknown_fields`, so a `format` key would be a 400. It defaults to
|
|
10055
|
+
* `json`, which resolves to a typed {@link ExportEnvelope}; `csv` and `pdf`
|
|
10056
|
+
* resolve to a `Blob`.
|
|
10057
|
+
*/
|
|
9853
10058
|
declare class Export {
|
|
9854
10059
|
private readonly request;
|
|
9855
10060
|
constructor(request: RequestFn);
|
|
9856
|
-
/**
|
|
9857
|
-
|
|
10061
|
+
/**
|
|
10062
|
+
* Transactions. `POST /export/transactions`
|
|
10063
|
+
*
|
|
10064
|
+
* Merchant-level: every shop under the merchant unless `shop_id` narrows it.
|
|
10065
|
+
* A `shop_id` that is not one of the merchant's own shops is an error, not an
|
|
10066
|
+
* empty file.
|
|
10067
|
+
*/
|
|
10068
|
+
transactions(params: TransactionExportParams, options?: JsonExportOptions): Promise<ExportEnvelope<TransactionExportRecord>>;
|
|
10069
|
+
transactions(params: TransactionExportParams, options: BinaryExportOptions): Promise<Blob>;
|
|
10070
|
+
transactions(params: TransactionExportParams, options: ExportOptions): Promise<ExportEnvelope<TransactionExportRecord> | Blob>;
|
|
10071
|
+
/**
|
|
10072
|
+
* The caller's own shop's transactions.
|
|
10073
|
+
* `POST /export/profile/transactions`
|
|
10074
|
+
*
|
|
10075
|
+
* Gated on the profile-level payment permission, which a shop-scoped role can
|
|
10076
|
+
* hold where the merchant-level one it replaces cannot — without this route a
|
|
10077
|
+
* shop user had no export at all.
|
|
10078
|
+
*/
|
|
10079
|
+
transactionsForProfile(params: TransactionExportParams, options?: JsonExportOptions): Promise<ExportEnvelope<TransactionExportRecord>>;
|
|
10080
|
+
transactionsForProfile(params: TransactionExportParams, options: BinaryExportOptions): Promise<Blob>;
|
|
10081
|
+
transactionsForProfile(params: TransactionExportParams, options: ExportOptions): Promise<ExportEnvelope<TransactionExportRecord> | Blob>;
|
|
10082
|
+
/** Refunds. `POST /refunds/list/export` */
|
|
10083
|
+
refunds(params?: RefundListParams, options?: JsonExportOptions): Promise<ExportEnvelope<RefundExportRecord>>;
|
|
10084
|
+
refunds(params: RefundListParams | undefined, options: BinaryExportOptions): Promise<Blob>;
|
|
10085
|
+
refunds(params: RefundListParams | undefined, options: ExportOptions): Promise<ExportEnvelope<RefundExportRecord> | Blob>;
|
|
10086
|
+
/** The caller's own shop's refunds. `POST /refunds/profile/list/export` */
|
|
10087
|
+
refundsForProfile(params?: RefundListParams, options?: JsonExportOptions): Promise<ExportEnvelope<RefundExportRecord>>;
|
|
10088
|
+
refundsForProfile(params: RefundListParams | undefined, options: BinaryExportOptions): Promise<Blob>;
|
|
10089
|
+
refundsForProfile(params: RefundListParams | undefined, options: ExportOptions): Promise<ExportEnvelope<RefundExportRecord> | Blob>;
|
|
10090
|
+
/** Disputes. `GET /disputes/list/export` */
|
|
10091
|
+
disputes(params?: DisputeListParams, options?: JsonExportOptions): Promise<ExportEnvelope<DisputeExportRecord>>;
|
|
10092
|
+
disputes(params: DisputeListParams | undefined, options: BinaryExportOptions): Promise<Blob>;
|
|
10093
|
+
disputes(params: DisputeListParams | undefined, options: ExportOptions): Promise<ExportEnvelope<DisputeExportRecord> | Blob>;
|
|
10094
|
+
/** The caller's own shop's disputes. `GET /disputes/profile/list/export` */
|
|
10095
|
+
disputesForProfile(params?: DisputeListParams, options?: JsonExportOptions): Promise<ExportEnvelope<DisputeExportRecord>>;
|
|
10096
|
+
disputesForProfile(params: DisputeListParams | undefined, options: BinaryExportOptions): Promise<Blob>;
|
|
10097
|
+
disputesForProfile(params: DisputeListParams | undefined, options: ExportOptions): Promise<ExportEnvelope<DisputeExportRecord> | Blob>;
|
|
10098
|
+
/** Payouts. `POST /payouts/list/export` */
|
|
10099
|
+
payouts(params: PayoutListParams, options?: JsonExportOptions): Promise<ExportEnvelope<PayoutExportRecord>>;
|
|
10100
|
+
payouts(params: PayoutListParams, options: BinaryExportOptions): Promise<Blob>;
|
|
10101
|
+
payouts(params: PayoutListParams, options: ExportOptions): Promise<ExportEnvelope<PayoutExportRecord> | Blob>;
|
|
10102
|
+
/** The caller's own shop's payouts. `POST /payouts/profile/list/export` */
|
|
10103
|
+
payoutsForProfile(params: PayoutListParams, options?: JsonExportOptions): Promise<ExportEnvelope<PayoutExportRecord>>;
|
|
10104
|
+
payoutsForProfile(params: PayoutListParams, options: BinaryExportOptions): Promise<Blob>;
|
|
10105
|
+
payoutsForProfile(params: PayoutListParams, options: ExportOptions): Promise<ExportEnvelope<PayoutExportRecord> | Blob>;
|
|
10106
|
+
/**
|
|
10107
|
+
* Subscriptions. `GET /subscriptions/list/export`
|
|
10108
|
+
*
|
|
10109
|
+
* `profileId` becomes the `X-Profile-Id` header, exactly as on the list. A
|
|
10110
|
+
* shop-scoped token exports its own shop whatever this says.
|
|
10111
|
+
*/
|
|
10112
|
+
subscriptions(profileId: string, params?: SubscriptionListParams, options?: JsonExportOptions): Promise<ExportEnvelope<SubscriptionExportRecord>>;
|
|
10113
|
+
subscriptions(profileId: string, params: SubscriptionListParams | undefined, options: BinaryExportOptions): Promise<Blob>;
|
|
10114
|
+
subscriptions(profileId: string, params: SubscriptionListParams | undefined, options: ExportOptions): Promise<ExportEnvelope<SubscriptionExportRecord> | Blob>;
|
|
10115
|
+
/** Settlement statements. `GET /settlement/statements/export` */
|
|
10116
|
+
/** One period's settlement lines. `GET /settlement/lines/export` */
|
|
10117
|
+
/**
|
|
10118
|
+
* The merchant's own audit log. `GET /audit/export`
|
|
10119
|
+
*
|
|
10120
|
+
* Requires a dashboard JWT whose role holds the merchant-level `AuditLog`
|
|
10121
|
+
* permission — a shop-scoped role cannot hold it. There is no `merchant_id`
|
|
10122
|
+
* parameter: the scope comes from the token.
|
|
10123
|
+
*/
|
|
10124
|
+
auditLog(params?: MerchantAuditLogListParams, options?: JsonExportOptions): Promise<ExportEnvelope<MerchantAuditLogExportRecord>>;
|
|
10125
|
+
auditLog(params: MerchantAuditLogListParams | undefined, options: BinaryExportOptions): Promise<Blob>;
|
|
10126
|
+
auditLog(params: MerchantAuditLogListParams | undefined, options: ExportOptions): Promise<ExportEnvelope<MerchantAuditLogExportRecord> | Blob>;
|
|
9858
10127
|
}
|
|
9859
10128
|
|
|
9860
10129
|
/**
|
|
@@ -12031,4 +12300,4 @@ declare const decodeNativePanes: typeof decodePanes;
|
|
|
12031
12300
|
/** @deprecated Renamed to {@link encodePanes}. Removed in 0.112.0. */
|
|
12032
12301
|
declare const encodeNativePanes: typeof encodePanes;
|
|
12033
12302
|
|
|
12034
|
-
export { ALL_CUSTOM_FIELD_CONDITION_SOURCES, ALL_CUSTOM_FIELD_OPERATORS, ALL_CUSTOM_FIELD_TYPES, type AddUserRequest, type AddUserResponse, type Address, type AddressDetails, type AllocationListResponse, type AllocationResponse, type AllocationTransferRequest, type AllocationTransferResponse, type AmountFilter, type AmountRange, Analytics, type AnalyticsChannel, type AnalyticsChild, type AnalyticsConnectorDay, type AnalyticsConnectorSeries, AnalyticsDashboard, type AnalyticsDayBucket, type AnalyticsGranularity, type AnalyticsMethodSlice, type AnalyticsOutcome, type AnalyticsScopeRequest, type AnalyticsScopeResponse, type ApiKeyCreateRequest, type ApiKeyCreateResponse, type ApiKeyExpiration, type ApiKeyListConstraints, type ApiKeyResponse, type ApiKeyRevokeResponse, type ApiKeyUpdateRequest, type ApplePayVerificationRequest, type ApplePayVerificationResponse, type ApplePayVerifiedDomainsResponse, type AttemptStatus, Audit, type AuthResponse, type AuthenticationCreateRequest, type AuthenticationResponse, type AuthenticationStatus, type AuthenticationType, type AutoRechargeConfig, type AutoRechargeUpdateRequest, type AvailabilityOverrideCreateRequest, type AvailabilityOverrideResponse, AvailabilityOverrides, type AvailabilityPreviewMethod, type AvailabilityPreviewParams, type AvailabilityPreviewResponse, BRANDING_EXPORT_FORMAT, BRANDING_EXPORT_VERSION, type BankCodeResponse, type BankDebitTypes, type BankTransferTypes, type BillingCompleteSetupRequest, type BillingProfileResponse, type BillingSetupRequest, type BillingSetupResponse, type BlockedAttempt, type BlockedAttemptListParams, type BlockedAttemptListResponse, type BlocklistAddRequest, type BlocklistDataKind, type BlocklistResponse, type BrandingExport, type BrandingSource, type BuiltInRegionGroupResponse, type BusinessPaymentLinkConfig, CHECKBOX_CHECKED, CHECKBOX_UNCHECKED, CHECKOUT_EVENT_KINDS, CHECKOUT_LOCALES, CUSTOM_CSS_MAX_LENGTH, CUSTOM_FIELDS_MAX, CUSTOM_FIELD_CONDITIONS_MAX, CUSTOM_FIELD_KEY_PATTERN, CUSTOM_FIELD_OPERATORS_BY_SOURCE, CUSTOM_FIELD_VALUELESS_OPERATORS, type CancelModeOutcome, type CancelSubscriptionRequest, type CancelSubscriptionResponse, type CaptureMethod, type CardDetail, type CardDetailFromLocker, type CardNetworkTypes, type CardSpecificFeatures, Cards, type ChangePasswordRequest, type CheckoutBranding, type CheckoutBrandingResponse, type CheckoutBrandingUpdate, type CheckoutCustomField, type CheckoutEventKind, type CheckoutLocale, CheckoutSession, type CheckoutSessionOptions, type CheckoutThemeComparisonSide, type CheckoutThemeConversionCaveat, type CheckoutThemeConversionCell, type CheckoutThemeConversionComparison, type CheckoutThemeConversionQuery, type CheckoutThemeConversionResponse, type CheckoutThemeConversionSegment, type CheckoutThemeDenominatorBasis, type CheckoutThemeDimension, type CheckoutThemeOutput, type CheckoutThemeProgram, type CheckoutThemeProgramRequest, type CheckoutThemeProgramResponse, type CheckoutThemeRule, type CheckoutThemeSampleVerdict, type ClientAnalyticsCaveat, type ClientAnalyticsFilters, type ClientAnalyticsRequest, type ClientDrillSortKey, type ConditionNode, type ConfirmSubscriptionPaymentDetails, type ConfirmSubscriptionRequest, type ConfirmSubscriptionResponse, type Connector, type ConnectorCloneRequest, type ConnectorCreateRequest, type ConnectorFeatureMatrixEntry, type ConnectorIntegrationStatus, type ConnectorListResponse, type ConnectorOwnership, type ConnectorResponse, type ConnectorRisk, type ConnectorSelection, type ConnectorType, type ConnectorUpdateRequest, type ConnectorVolumeSplit, type ConnectorWebhookEntry, type ConnectorWebhookEventType, type ConnectorWebhookListResponse, type ConnectorWebhookRegisterRequest, type ConnectorWebhookRegisterResponse, type ConnectorWebhookSyncResponse, type ConnectorWebhookSyncResult, type CornerRadius, type CreateAndConfirmSubscriptionRequest, type CreateSubscriptionPaymentDetails, type CreateSubscriptionRequest, type Currency, type CurrencyRevenue, type CustomFieldCondition, type CustomFieldConditionSource, type CustomFieldContext, type CustomFieldOperator, type CustomFieldOption, type CustomFieldTranslations, type CustomFieldType, type CustomFieldVisibility, type CustomerCreateRequest, type CustomerListParams, type CustomerPaymentMethodsListParams, type CustomerPaymentMethodsListResponse, type CustomerResponse, type CustomerUpdateRequest, DEFAULT_BADGES, DEFAULT_BADGES_DARK, DEFAULT_BRANDING, DEFAULT_BRANDING_DARK, type DecidePendingOperationRequest, type DeleteAccountRequest, type DeleteEvidenceRequest, type DeleteUserRoleRequest, Delopay, DelopayAuthenticationError, type DelopayConnectorCategory, DelopayError, type DelopayLogger, type DelopayOptions, type DeviceAnalyticsChild, type DeviceAnalyticsTotals, type DeviceBrowserSlice, type DeviceChannelBucket, type DeviceClassSlice, type DeviceDrillBase, type DeviceDrillRequest, type DeviceDrillTarget, type DeviceModelSlice, type DevicePlatformSlice, type DeviceSessionBucket, type DevicesAnalyticsResponse, type DisputeEvidenceBlock, type DisputeEvidenceRequest, type DisputeEvidenceType, type DisputeListParams, type DisputeOutcomeReporting, type DisputeResponse, type DisputeStage, type DisputeStatus, type DrillListControls, type DrillPayment, type DrillResponse, type DrillSortKey, type DrillSummary, type EncodedBranding, type EntityType, type EpayoutsCatalogEntry, type EpayoutsCatalogResponse, type EpayoutsLocality, type EpayoutsMethod, type EpayoutsMethodsResponse, type EpayoutsRail, type EphemeralKeyCreateRequest, type EphemeralKeyCreateResponse, type EuclidComparison, type EuclidComparisonType, type EuclidIfStatement, type EuclidValue, type EventClass, type EventDeliveryAttemptResponse, type EventDetailResponse, type EventListParams, type EventListResponse, type EventResponse, type EventType, Export, FeatureMatrix, type FeatureMatrixResponse, type FeatureStatus, type FeeOwner, FeeProgramBuilder, type FeeRuleConditions, type FeeRuleDefaultPrecedence, type FeeRuleInput, type FeeRulePreviewRequest, type FeeRulePreviewResponse, type FeeScheduleCreateRequest, type FeeScheduleResponse, type FeeScheduleUpdateRequest, type FeeSpecInput, type FeeStatementDetail, type FeeStatementSummary, type FeeType, Files, type FocusedCheckoutUrlParams, type FontFamily, type FontWeight, Forex, type ForgotPasswordRequest, type FromEmailRequest, type FutureUsage, type GatewayConnectRequest, type GatewayResponse, type GeoAnalyticsChild, type GeoAnalyticsResponse, type GeoAnalyticsTotals, type GeoCitySlice, type GeoCountrySlice, type GeoDrillRequest, type GeoLanguageSlice, type GetSubscriptionItemsParams, type GetSubscriptionItemsResponse, type GlobalSearchRequest, type GroupNode, type ImpersonateEmployeeRequest, type IntentStatus, type InviteUsersRequest, type InviteUsersResponse, type InvoiceAmountState, type InvoiceOutcomes, type InvoiceStatus, LOCALIZABLE_COPY_FIELDS, type LabelStyle, type LayoutStyle, type LeafNode, type LedgerEntry, type LedgerListParams, type LedgerResponse, type LimitedOperation, type LinkedRoutingConfigRetrieveResponse, type ListInvitableRolesParams, type ListUsersInLineageParams, type LocalizableCopyField, type LoginHistoryEntry, type LoginHistoryParams, type LoginHistoryResponse, type LogoShape, type LogoSize, type MandateListParams, type MandateResponse, type MandateRevokedResponse, type MandateStatus, type MandateType, type MarginQuality, type MerchantAccountCreateRequest, type MerchantAccountResponse, type MerchantAccountType, type MerchantAccountUpdateRequest, type MerchantAuditActorInfo, type MerchantAuditActorKind, type MerchantAuditImpersonationKind, type MerchantAuditLogEntry, type MerchantAuditLogListParams, type MerchantAuditLogListResponse, type MerchantAuditSessionInfo, type MerchantConnectorWebhookDetailsUpdate, type MerchantOverviewResponse, type MerchantOverviewStat, type MerchantRisk, type MerchantRoutingAlgorithm, type MethodSurcharge, type MinimalRoleInfo, NATIVE_PANES_MAX, NATIVE_PANE_CATEGORY_KEYS, NATIVE_PANE_ICON_KEYS, type NativePaneCapability, type NativePaneMethodInfo, type NativePaneOpenTarget, type NativePaneRail, type NativePaneView, type NativePaneVisibility, type NativePanesCatalogResponse, type NativePanesConnectorCatalog, type NonPillRadius, type OperationLimitOnExceeded, type OperationLimitRule, type OperationLimitRuleDeleteResponse, type OperationLimitRuleListParams, type OperationLimitScope, type OperationLimitSettings, type OperationLimitWindowMode, OperationLimits, type OverrideAction, type OverrideScope, PANES_MAX, PANE_CATEGORY_KEYS, PANE_ICON_KEYS, type Pane, type PaneCapability, type PaneDisplayDefaults, type PaneIssue, type PaneIssueCode, type PaneMethodInfo, type PaneOpenTarget, type PaneRail, type PaneSurcharge, type PaneView, type PaneVisibility, type PanesCatalogResponse, type PanesConnectorCatalog, type ParentGroup, type ParentGroupInfo, type PauseSubscriptionRequest, type PauseSubscriptionResponse, type PaymentAttemptResponse, type PaymentAttemptsListResponse, type PaymentCancelRequest, type PaymentCaptureRequest, type PaymentClientContextEntry, type PaymentClientContextListResponse, type PaymentConfirmRequest, type PaymentCreateRequest, type PaymentErrorDetails, type PaymentExperience, type PaymentExperienceTypes, type PaymentIdFormatConfig, type PaymentIdStyle, type PaymentIntentStateMetadata, type PaymentLayout, type PaymentLinkBackgroundImageConfig, type PaymentLinkConfigRequest, type PaymentLinkListParams, type PaymentLinkListResponse, type PaymentLinkResponse, type PaymentLinkTransactionDetails, type PaymentListFilterConstraints, type PaymentListFilteredResponse, type PaymentListOrder, type PaymentListParams, type PaymentListResponse, type PaymentMethod, type PaymentMethodAmountLimits, type PaymentMethodCreateRequest, type PaymentMethodDeleteResponse, type PaymentMethodDisplayInfo, type PaymentMethodListInstallmentAmountDetails, type PaymentMethodListInstallmentOption, type PaymentMethodListInstallmentPlan, type PaymentMethodListIntentData, type PaymentMethodListParams, type PaymentMethodListResponse, type PaymentMethodResponse, type PaymentMethodType, type PaymentMethodUpdateRequest, type PaymentResponse, type PaymentRetrieveOptions, type PaymentStatusHistoryEntityType, type PaymentStatusHistoryEvent, type PaymentStatusHistoryResponse, type PaymentUpdateRequest, type PaymentsDeletePolicyResponse, type PaymentsDeleteResponse, type PayoutCreateRequest, type PayoutListParams, type PayoutListResponse, type PayoutResponse, type PayoutStatus, type PayoutType, type PayoutUpdateRequest, type PayseproMethod, type PayseproMethodsResponse, type PendingApprovalErrorDetails, type PendingOperation, type PendingOperationLimitContext, type PendingOperationListParams, type PendingOperationListResponse, type PendingOperationStatus, type PendingOperationSummary, type PerMethodSurchargeItem, type PermissionScope, type PhoneDetails, type PhoneOtpRequest, type PhoneOtpResponse, type PhoneOtpVerifyRequest, type PhoneOtpVerifyResponse, type PlanSlice, type PlatformFeeKind, type PlatformFeeOutput, type PlatformFeeProgram, type PlatformFeeRule, type PlatformFeeRuleInput, type PlatformFeeRuleOutput, type PlatformFeeRuleRecord, type PlatformFeeRuleRequest, type PollStatus, type PollStatusResponse, type ProcessorCostBasis, type ProcessorCostBucket, type ProcessorCostSource, type ProcessorSlice, type ProfileAcquirerCreateRequest, type ProfileAcquirerResponse, type ProfileAcquirerUpdateRequest, type ProfileCreateRequest, type ProfileDefaultRoutingConfig, type ProfileDeniedConnectorsResponse, type ProfileLogoUploadResponse, type ProfileResponse, type ProfileUpdateRequest, type ProgramConnectorSelection, type ProjectCreateRequest, type ProjectResponse, type ProjectStats, type ProjectStatsResponse, type ProjectUpdateRequest, type PublishableKey, type RecordCheckoutEventRequest, type RecordCheckoutEventResponse, type RecoveryCodesResponse, type RefundAggregateResponse, type RefundCreateRequest, type RefundListParams, type RefundListResponse, type RefundResponse, type RefundStatus, type RefundType, type RefundUpdateRequest, type RegionCountriesResponse, type RegionCreateRequest, type RegionResponse, type RegionSetCountriesRequest, type RegionUpdateRequest, Regions, type RelayRequest, type RelayResponse, type RelayStatus, type RelayType, type RequestExtras, type RequestFn, type RequestOptions, type RequiredFieldInfo, type ResetPasswordRequest, type ResponsePaymentMethodTypes, type ResponsePaymentMethodsEnabled, type ResumeSubscriptionRequest, type ResumeSubscriptionResponse, Risk, type RoleConnectorGrant, type RoleConnectorGrantEntry, type RoutableConnectorChoice, type RoutingActivatePayload, type RoutingAlgorithmKind, type RoutingConfigCreateRequest, type RoutingConfigHistoryResponse, type RoutingConfigResponse, type RoutingConfigUpdateRequest, type RoutingConfigVersion, type RoutingConnectorCap, type RoutingConnectorCaps, type RoutingDeactivateRequest, type RoutingDictionary, type RoutingDictionaryRecord, type RoutingHistoryParams, type RuleConnectorSelection, STRIPE_FALLBACK_PANE_CATALOG, STRIPE_FALLBACK_PANE_METHODS, STRIPE_NATIVE_PANE_METHODS, SURCHARGE_BORDER_STYLES, SURCHARGE_BORDER_WIDTHS, SURCHARGE_FIGURE_MODES, SURCHARGE_LABEL_MODES, SURCHARGE_POSITIONS, SURCHARGE_SHAPES, SURCHARGE_SIGNS, SURCHARGE_SIZES, SURCHARGE_STYLES, SURCHARGE_WEIGHTS, type ScopeDrillBase, type ScopeDrillRequest, type ScopeDrillSortKey, type ScopeDrillTarget, Search, type SearchGroupResponse, type SearchIndex, type SearchStatus, type SearchTimeRange, Settlement, type SettlementBackfillRequest, type SettlementBackfillResponse, type SettlementBucket, type SettlementCostParams, type SettlementCostPeriod, type SettlementCostResponse, type SettlementCurrentParams, type SettlementCurrentResponse, type SettlementLine, type SettlementLineBase, type SettlementLineListParams, type SettlementLineListResponse, type SettlementLineWithProcessorCost, type SettlementLineWithoutProcessorCost, type SettlementOverviewParams, type SettlementOverviewResponse, type SettlementPayoutStatus, type SettlementStatementListParams, type SettlementStatementListResponse, type ShopCreateRequest, type ShopFeeConfigEntry, type ShopFeeConfigParams, type ShopFeeConfigResponse, type ShopResponse, type ShopRisk, type ShopSettlementOverview, type ShopStats, type ShopStatsResponse, type ShopUpdateRequest, type ShopVisibilityResponse, type ShopVisibilityUpdateRequest, type SignInRequest, type SignUpRequest, type SignUpWithMerchantIdRequest, type SignUpWithMerchantRequest, type SizeScale, type SpacingScale, type StatementAdjustment, type StatementAdjustmentCreateRequest, type StatementAdjustmentListResponse, type StatementGenerateRequest, type StatementPayoutUpdateRequest, type StatementPdfParams, type StaticRoutingAlgorithm, type StatsPeriod, type StripeConnectAccountRequest, type StripeConnectAccountResponse, type StripeConnectLinkRequest, type StripeConnectLinkResponse, type StripeNativePane, type StripePaymentMethodDomainResult, type StripePaymentMethodDomainStatus, type StripePaymentMethodDomainsRegisterRequest, type StripePaymentMethodDomainsRegisterResponse, type SubscriptionAnalyticsRequest, type SubscriptionAnalyticsResponse, type SubscriptionBillingProcessorResponse, type SubscriptionBucket, type SubscriptionCaveat, type SubscriptionChild, type SubscriptionDrillBase, type SubscriptionDrillRequest, type SubscriptionDrillSortKey, type SubscriptionDrillTarget, type SubscriptionEstimateParams, type SubscriptionEstimateResponse, type SubscriptionFilters, type SubscriptionInvoice, type SubscriptionInvoiceListParams, type SubscriptionInvoiceListResponse, type SubscriptionItem, type SubscriptionItemPrice, type SubscriptionItemType, type SubscriptionLineItem, type SubscriptionListParams, type SubscriptionMovement, type SubscriptionPaymentData, type SubscriptionPaymentDetails, type SubscriptionPaymentLink, type SubscriptionPaymentLookupRequest, type SubscriptionPaymentLookupResponse, type SubscriptionPeriodUnit, type SubscriptionProcessors, type SubscriptionResponse, type SubscriptionStatus, type SubscriptionTotals, Subscriptions, type SummaryPosition, type SupportedPaymentMethod, type SurchargeAmountOperator, type SurchargeBorderStyle, type SurchargeBorderWidth, type SurchargeCondition, type SurchargeConditionSource, type SurchargeCurrencyOperator, type SurchargeDetailsResponse, type SurchargeDirection, type SurchargeFigureMode, type SurchargeFigurePart, type SurchargeFigurePlan, type SurchargeLabelMode, type SurchargeMetadataOperator, type SurchargeOperator, type SurchargePosition, type SurchargeResponse, type SurchargeRuleRequest, type SurchargeRuleResponse, type SurchargeShape, type SurchargeSign, type SurchargeSize, type SurchargeStyle, type SurchargeWeight, type SurfaceStyle, type SwitchMerchantRequest, type SwitchProfileRequest, type Terminate2faQueryParams, type ThemeBrowserLanguage, type ThemeCheckoutChannel, type ThemeChoice, type ThemeCondition, type ThemeDeviceClass, type ThemeEnumCondition, type ThemeIfStatement, type ThemeMetadataCondition, type ThemeNumberCondition, type ThemeTrafficSource, type ThreeDSDecision, type ThreeDsRuleExecuteRequest, type ThreeDsRuleResponse, type TierSummary, type TimeToPayBucket, type TimeToPayBucketLabel, type TimeToPayStats, type TokenPurpose, type TokenResponse, type TopupRequest, type TopupResponse, type TotpResponse, type TransactionType, type TrustBadge, type UpdateMetadataRequest, type UpdateOperationLimitSettingsRequest, type UpdateRoleConnectorGrantParams, type UpdateSubscriptionRequest, type UpdateUserDetailsRequest, type UpdateUserRoleRequest, type UpsertOperationLimitRuleRequest, type UpsertRefundLimitRuleRequest, type UpsertSettlementAdjustmentLimitRuleRequest, type UpsertSettlementPayoutLimitRuleRequest, type UserInLineage, type UserResponse, type UserSessionEntry, type UserSessionListResponse, type UserSessionRevokeResponse, type VaultCheck, type VaultCheckId, type VaultCheckStatus, type VaultCollectSessionResponse, type VaultEnvironment, type VaultPaymentMethodRequest, type VaultPaymentMethodResponse, type VaultRouteApplyVerification, type VaultRouteChange, type VaultRouteChangeKind, type VaultRouteFieldChange, type VaultRouteIds, type VaultRoutePurpose, type VaultRouteWarning, type VaultRouteWarningCode, type VaultRoutesApplyRequest, type VaultRoutesApplyResponse, type VaultRoutesFingerprint, type VaultRoutesPreviewRequest, type VaultRoutesPreviewResponse, type VaultVerificationResponse, type VaultVerifyRequest, type VerifyTotpRequest, WCAG_AA_TEXT, WCAG_AA_UI, type WebhookDeliveryAttempt, type WebhookDeliveryTerminalReason, type WebhookDetails, type WebhookEvent, type WebhookRefundStatus, type WebhookRegistrationEnvironment, Webhooks, allOf, anyOf, applyBrandingVariables, buildBrandingExport, buttonPadValue, checkoutCopy, cloneBranding, cloneCustomField, cloneNativePane, clonePane, contrastRatio, copyTranslationsKey, customFieldContextFromMetadata, customFieldIsTextLike, customFieldOperatorTakesValue, customFieldOptionLabel, customFieldText, decodeBadges, decodeBranding, decodeCustomFields, decodeNativePanes, decodePanes, defaultBranding, defaultCustomFieldVisibility, defaultNativePane, defaultOperatorForSource, defaultPane, emptyPaneCatalog, encodeBadges, encodeBranding, encodeCustomFields, encodeNativePanes, encodePanes, evaluateCustomFieldCondition, evaluateCustomFieldVisibility, feeProgram, focusedCheckoutUrl, fontStack, fontWeightValue, inputPadValue, isCheckboxChecked, isDarkSurface, isHexColor, leaf, logoDimensions, nativePaneMethodInfo, offerablePaneMethods, paneCatalogFor, paneDisplayDefaults, paneMethodInfo, paneRailAllowed, paneViewVisibility, parseCustomFieldsLoose, parseImportedBranding, programToTree, radiusValue, readableInkOn, ruleMatchToTree, sanitizeCustomCss, shadowFor, surchargeFigurePlan, surchargeShowsLabel, surchargeStyleDrawsAShape, surchargeWordFor, surfacePadValue, validatePanes, verticalGapValue, visibleCustomFields };
|
|
12303
|
+
export { ALL_CUSTOM_FIELD_CONDITION_SOURCES, ALL_CUSTOM_FIELD_OPERATORS, ALL_CUSTOM_FIELD_TYPES, type AddUserRequest, type AddUserResponse, type Address, type AddressDetails, type AllocationListResponse, type AllocationResponse, type AllocationTransferRequest, type AllocationTransferResponse, type AmountFilter, type AmountRange, Analytics, type AnalyticsChannel, type AnalyticsChild, type AnalyticsConnectorDay, type AnalyticsConnectorSeries, AnalyticsDashboard, type AnalyticsDayBucket, type AnalyticsGranularity, type AnalyticsMethodSlice, type AnalyticsOutcome, type AnalyticsScopeRequest, type AnalyticsScopeResponse, type ApiKeyCreateRequest, type ApiKeyCreateResponse, type ApiKeyExpiration, type ApiKeyListConstraints, type ApiKeyResponse, type ApiKeyRevokeResponse, type ApiKeyUpdateRequest, type ApplePayVerificationRequest, type ApplePayVerificationResponse, type ApplePayVerifiedDomainsResponse, type AttemptStatus, Audit, type AuthResponse, type AuthenticationCreateRequest, type AuthenticationResponse, type AuthenticationStatus, type AuthenticationType, type AutoRechargeConfig, type AutoRechargeUpdateRequest, type AvailabilityOverrideCreateRequest, type AvailabilityOverrideResponse, AvailabilityOverrides, type AvailabilityPreviewMethod, type AvailabilityPreviewParams, type AvailabilityPreviewResponse, BRANDING_EXPORT_FORMAT, BRANDING_EXPORT_VERSION, type BankCodeResponse, type BankDebitTypes, type BankTransferTypes, type BillingCompleteSetupRequest, type BillingProfileResponse, type BillingSetupRequest, type BillingSetupResponse, type BinaryExportOptions, type BlockedAttempt, type BlockedAttemptListParams, type BlockedAttemptListResponse, type BlocklistAddRequest, type BlocklistDataKind, type BlocklistResponse, type BrandingExport, type BrandingSource, type BuiltInRegionGroupResponse, type BusinessPaymentLinkConfig, CHECKBOX_CHECKED, CHECKBOX_UNCHECKED, CHECKOUT_EVENT_KINDS, CHECKOUT_LOCALES, CUSTOM_CSS_MAX_LENGTH, CUSTOM_FIELDS_MAX, CUSTOM_FIELD_CONDITIONS_MAX, CUSTOM_FIELD_KEY_PATTERN, CUSTOM_FIELD_OPERATORS_BY_SOURCE, CUSTOM_FIELD_VALUELESS_OPERATORS, type CancelModeOutcome, type CancelSubscriptionRequest, type CancelSubscriptionResponse, type CaptureMethod, type CardDetail, type CardDetailFromLocker, type CardNetworkTypes, type CardSpecificFeatures, Cards, type ChangePasswordRequest, type CheckoutBranding, type CheckoutBrandingResponse, type CheckoutBrandingUpdate, type CheckoutCustomField, type CheckoutEventKind, type CheckoutLocale, CheckoutSession, type CheckoutSessionOptions, type CheckoutThemeComparisonSide, type CheckoutThemeConversionCaveat, type CheckoutThemeConversionCell, type CheckoutThemeConversionComparison, type CheckoutThemeConversionQuery, type CheckoutThemeConversionResponse, type CheckoutThemeConversionSegment, type CheckoutThemeDenominatorBasis, type CheckoutThemeDimension, type CheckoutThemeOutput, type CheckoutThemeProgram, type CheckoutThemeProgramRequest, type CheckoutThemeProgramResponse, type CheckoutThemeRule, type CheckoutThemeSampleVerdict, type ClientAnalyticsCaveat, type ClientAnalyticsFilters, type ClientAnalyticsRequest, type ClientDrillSortKey, type ConditionNode, type ConfirmSubscriptionPaymentDetails, type ConfirmSubscriptionRequest, type ConfirmSubscriptionResponse, type Connector, type ConnectorCloneRequest, type ConnectorCreateRequest, type ConnectorFeatureMatrixEntry, type ConnectorIntegrationStatus, type ConnectorListResponse, type ConnectorOwnership, type ConnectorResponse, type ConnectorRisk, type ConnectorSelection, type ConnectorType, type ConnectorUpdateRequest, type ConnectorVolumeSplit, type ConnectorWebhookEntry, type ConnectorWebhookEventType, type ConnectorWebhookListResponse, type ConnectorWebhookRegisterRequest, type ConnectorWebhookRegisterResponse, type ConnectorWebhookSyncResponse, type ConnectorWebhookSyncResult, type CornerRadius, type CreateAndConfirmSubscriptionRequest, type CreateSubscriptionPaymentDetails, type CreateSubscriptionRequest, type Currency, type CurrencyRevenue, type CustomFieldCondition, type CustomFieldConditionSource, type CustomFieldContext, type CustomFieldOperator, type CustomFieldOption, type CustomFieldTranslations, type CustomFieldType, type CustomFieldVisibility, type CustomerCreateRequest, type CustomerListParams, type CustomerPaymentMethodsListParams, type CustomerPaymentMethodsListResponse, type CustomerResponse, type CustomerUpdateRequest, DEFAULT_BADGES, DEFAULT_BADGES_DARK, DEFAULT_BRANDING, DEFAULT_BRANDING_DARK, type DecidePendingOperationRequest, type DeleteAccountRequest, type DeleteEvidenceRequest, type DeleteUserRoleRequest, Delopay, DelopayAuthenticationError, type DelopayConnectorCategory, DelopayError, type DelopayLogger, type DelopayOptions, type DeviceAnalyticsChild, type DeviceAnalyticsTotals, type DeviceBrowserSlice, type DeviceChannelBucket, type DeviceClassSlice, type DeviceDrillBase, type DeviceDrillRequest, type DeviceDrillTarget, type DeviceModelSlice, type DevicePlatformSlice, type DeviceSessionBucket, type DevicesAnalyticsResponse, type DisputeEvidenceBlock, type DisputeEvidenceRequest, type DisputeEvidenceType, type DisputeExportRecord, type DisputeListParams, type DisputeOutcomeReporting, type DisputeResponse, type DisputeStage, type DisputeStatus, type DrillListControls, type DrillPayment, type DrillResponse, type DrillSortKey, type DrillSummary, type DynamicExportOptions, type EncodedBranding, type EntityType, type EpayoutsCatalogEntry, type EpayoutsCatalogResponse, type EpayoutsLocality, type EpayoutsMethod, type EpayoutsMethodsResponse, type EpayoutsRail, type EphemeralKeyCreateRequest, type EphemeralKeyCreateResponse, type EuclidComparison, type EuclidComparisonType, type EuclidIfStatement, type EuclidValue, type EventClass, type EventDeliveryAttemptResponse, type EventDetailResponse, type EventListParams, type EventListResponse, type EventResponse, type EventType, Export, type ExportEnvelope, type ExportFormat, type ExportOptions, FeatureMatrix, type FeatureMatrixResponse, type FeatureStatus, type FeeOwner, FeeProgramBuilder, type FeeRuleConditions, type FeeRuleDefaultPrecedence, type FeeRuleInput, type FeeRulePreviewRequest, type FeeRulePreviewResponse, type FeeScheduleCreateRequest, type FeeScheduleResponse, type FeeScheduleUpdateRequest, type FeeSpecInput, type FeeStatementDetail, type FeeStatementSummary, type FeeType, Files, type FocusedCheckoutUrlParams, type FontFamily, type FontWeight, Forex, type ForgotPasswordRequest, type FromEmailRequest, type FutureUsage, type GatewayConnectRequest, type GatewayResponse, type GeoAnalyticsChild, type GeoAnalyticsResponse, type GeoAnalyticsTotals, type GeoCitySlice, type GeoCountrySlice, type GeoDrillRequest, type GeoLanguageSlice, type GetSubscriptionItemsParams, type GetSubscriptionItemsResponse, type GlobalSearchRequest, type GroupNode, type ImpersonateEmployeeRequest, type IntentStatus, type InviteUsersRequest, type InviteUsersResponse, type InvoiceAmountState, type InvoiceOutcomes, type InvoiceStatus, type JsonExportOptions, LOCALIZABLE_COPY_FIELDS, type LabelStyle, type LayoutStyle, type LeafNode, type LedgerEntry, type LedgerListParams, type LedgerResponse, type LimitedOperation, type LinkedRoutingConfigRetrieveResponse, type ListInvitableRolesParams, type ListUsersInLineageParams, type LocalizableCopyField, type LoginHistoryEntry, type LoginHistoryParams, type LoginHistoryResponse, type LogoShape, type LogoSize, type MandateListParams, type MandateResponse, type MandateRevokedResponse, type MandateStatus, type MandateType, type MarginQuality, type MerchantAccountCreateRequest, type MerchantAccountResponse, type MerchantAccountType, type MerchantAccountUpdateRequest, type MerchantAuditActorInfo, type MerchantAuditActorKind, type MerchantAuditImpersonationKind, type MerchantAuditLogEntry, type MerchantAuditLogExportRecord, type MerchantAuditLogListParams, type MerchantAuditLogListResponse, type MerchantAuditSessionInfo, type MerchantConnectorWebhookDetailsUpdate, type MerchantOverviewResponse, type MerchantOverviewStat, type MerchantRisk, type MerchantRoutingAlgorithm, type MethodSurcharge, type MinimalRoleInfo, NATIVE_PANES_MAX, NATIVE_PANE_CATEGORY_KEYS, NATIVE_PANE_ICON_KEYS, type NativePaneCapability, type NativePaneMethodInfo, type NativePaneOpenTarget, type NativePaneRail, type NativePaneView, type NativePaneVisibility, type NativePanesCatalogResponse, type NativePanesConnectorCatalog, type NonPillRadius, type OperationLimitOnExceeded, type OperationLimitRule, type OperationLimitRuleDeleteResponse, type OperationLimitRuleListParams, type OperationLimitScope, type OperationLimitSettings, type OperationLimitWindowMode, OperationLimits, type OverrideAction, type OverrideScope, PANES_MAX, PANE_CATEGORY_KEYS, PANE_ICON_KEYS, type Pane, type PaneCapability, type PaneDisplayDefaults, type PaneIssue, type PaneIssueCode, type PaneMethodInfo, type PaneOpenTarget, type PaneRail, type PaneSurcharge, type PaneView, type PaneVisibility, type PanesCatalogResponse, type PanesConnectorCatalog, type ParentGroup, type ParentGroupInfo, type PauseSubscriptionRequest, type PauseSubscriptionResponse, type PaymentAttemptResponse, type PaymentAttemptsListResponse, type PaymentCancelRequest, type PaymentCaptureRequest, type PaymentClientContextEntry, type PaymentClientContextListResponse, type PaymentConfirmRequest, type PaymentCreateRequest, type PaymentErrorDetails, type PaymentExperience, type PaymentExperienceTypes, type PaymentIdFormatConfig, type PaymentIdStyle, type PaymentIntentStateMetadata, type PaymentLayout, type PaymentLinkBackgroundImageConfig, type PaymentLinkConfigRequest, type PaymentLinkListParams, type PaymentLinkListResponse, type PaymentLinkResponse, type PaymentLinkTransactionDetails, type PaymentListFilterConstraints, type PaymentListFilteredResponse, type PaymentListOrder, type PaymentListParams, type PaymentListResponse, type PaymentMethod, type PaymentMethodAmountLimits, type PaymentMethodCreateRequest, type PaymentMethodDeleteResponse, type PaymentMethodDisplayInfo, type PaymentMethodListInstallmentAmountDetails, type PaymentMethodListInstallmentOption, type PaymentMethodListInstallmentPlan, type PaymentMethodListIntentData, type PaymentMethodListParams, type PaymentMethodListResponse, type PaymentMethodResponse, type PaymentMethodType, type PaymentMethodUpdateRequest, type PaymentResponse, type PaymentRetrieveOptions, type PaymentStatusHistoryEntityType, type PaymentStatusHistoryEvent, type PaymentStatusHistoryResponse, type PaymentUpdateRequest, type PaymentsDeletePolicyResponse, type PaymentsDeleteResponse, type PayoutCreateRequest, type PayoutExportRecord, type PayoutListParams, type PayoutListResponse, type PayoutResponse, type PayoutStatus, type PayoutType, type PayoutUpdateRequest, type PayseproMethod, type PayseproMethodsResponse, type PendingApprovalErrorDetails, type PendingOperation, type PendingOperationLimitContext, type PendingOperationListParams, type PendingOperationListResponse, type PendingOperationStatus, type PendingOperationSummary, type PerMethodSurchargeItem, type PermissionScope, type PhoneDetails, type PhoneOtpRequest, type PhoneOtpResponse, type PhoneOtpVerifyRequest, type PhoneOtpVerifyResponse, type PlanSlice, type PlatformFeeKind, type PlatformFeeOutput, type PlatformFeeProgram, type PlatformFeeRule, type PlatformFeeRuleInput, type PlatformFeeRuleOutput, type PlatformFeeRuleRecord, type PlatformFeeRuleRequest, type PollStatus, type PollStatusResponse, type ProcessorCostBasis, type ProcessorCostBucket, type ProcessorCostSource, type ProcessorSlice, type ProfileAcquirerCreateRequest, type ProfileAcquirerResponse, type ProfileAcquirerUpdateRequest, type ProfileCreateRequest, type ProfileDefaultRoutingConfig, type ProfileDeniedConnectorsResponse, type ProfileLogoUploadResponse, type ProfileResponse, type ProfileUpdateRequest, type ProgramConnectorSelection, type ProjectCreateRequest, type ProjectResponse, type ProjectStats, type ProjectStatsResponse, type ProjectUpdateRequest, type PublishableKey, type RecordCheckoutEventRequest, type RecordCheckoutEventResponse, type RecoveryCodesResponse, type RefundAggregateResponse, type RefundCreateRequest, type RefundExportRecord, type RefundListParams, type RefundListResponse, type RefundResponse, type RefundStatus, type RefundType, type RefundUpdateRequest, type RegionCountriesResponse, type RegionCreateRequest, type RegionResponse, type RegionSetCountriesRequest, type RegionUpdateRequest, Regions, type RelayRequest, type RelayResponse, type RelayStatus, type RelayType, type RequestExtras, type RequestFn, type RequestOptions, type RequiredFieldInfo, type ResetPasswordRequest, type ResponsePaymentMethodTypes, type ResponsePaymentMethodsEnabled, type ResumeSubscriptionRequest, type ResumeSubscriptionResponse, Risk, type RoleConnectorGrant, type RoleConnectorGrantEntry, type RoutableConnectorChoice, type RoutingActivatePayload, type RoutingAlgorithmKind, type RoutingConfigCreateRequest, type RoutingConfigHistoryResponse, type RoutingConfigResponse, type RoutingConfigUpdateRequest, type RoutingConfigVersion, type RoutingConnectorCap, type RoutingConnectorCaps, type RoutingDeactivateRequest, type RoutingDictionary, type RoutingDictionaryRecord, type RoutingHistoryParams, type RuleConnectorSelection, STRIPE_FALLBACK_PANE_CATALOG, STRIPE_FALLBACK_PANE_METHODS, STRIPE_NATIVE_PANE_METHODS, SURCHARGE_BORDER_STYLES, SURCHARGE_BORDER_WIDTHS, SURCHARGE_FIGURE_MODES, SURCHARGE_LABEL_MODES, SURCHARGE_POSITIONS, SURCHARGE_SHAPES, SURCHARGE_SIGNS, SURCHARGE_SIZES, SURCHARGE_STYLES, SURCHARGE_WEIGHTS, type ScopeDrillBase, type ScopeDrillRequest, type ScopeDrillSortKey, type ScopeDrillTarget, Search, type SearchGroupResponse, type SearchIndex, type SearchStatus, type SearchTimeRange, Settlement, type SettlementBackfillRequest, type SettlementBackfillResponse, type SettlementBucket, type SettlementCostParams, type SettlementCostPeriod, type SettlementCostResponse, type SettlementCurrentParams, type SettlementCurrentResponse, type SettlementLine, type SettlementLineBase, type SettlementLineListParams, type SettlementLineListResponse, type SettlementLineWithProcessorCost, type SettlementLineWithoutProcessorCost, type SettlementOverviewParams, type SettlementOverviewResponse, type SettlementPayoutStatus, type SettlementStatementListParams, type SettlementStatementListResponse, type ShopCreateRequest, type ShopFeeConfigEntry, type ShopFeeConfigParams, type ShopFeeConfigResponse, type ShopResponse, type ShopRisk, type ShopSettlementOverview, type ShopStats, type ShopStatsResponse, type ShopUpdateRequest, type ShopVisibilityResponse, type ShopVisibilityUpdateRequest, type SignInRequest, type SignUpRequest, type SignUpWithMerchantIdRequest, type SignUpWithMerchantRequest, type SizeScale, type SpacingScale, type StatementAdjustment, type StatementAdjustmentCreateRequest, type StatementAdjustmentListResponse, type StatementGenerateRequest, type StatementPayoutUpdateRequest, type StatementPdfParams, type StaticRoutingAlgorithm, type StatsPeriod, type StripeConnectAccountRequest, type StripeConnectAccountResponse, type StripeConnectLinkRequest, type StripeConnectLinkResponse, type StripeNativePane, type StripePaymentMethodDomainResult, type StripePaymentMethodDomainStatus, type StripePaymentMethodDomainsRegisterRequest, type StripePaymentMethodDomainsRegisterResponse, type SubscriptionAnalyticsRequest, type SubscriptionAnalyticsResponse, type SubscriptionBillingProcessorResponse, type SubscriptionBucket, type SubscriptionCaveat, type SubscriptionChild, type SubscriptionDrillBase, type SubscriptionDrillRequest, type SubscriptionDrillSortKey, type SubscriptionDrillTarget, type SubscriptionEstimateParams, type SubscriptionEstimateResponse, type SubscriptionExportRecord, type SubscriptionFilters, type SubscriptionInvoice, type SubscriptionInvoiceListParams, type SubscriptionInvoiceListResponse, type SubscriptionItem, type SubscriptionItemPrice, type SubscriptionItemType, type SubscriptionLineItem, type SubscriptionListParams, type SubscriptionMovement, type SubscriptionPaymentData, type SubscriptionPaymentDetails, type SubscriptionPaymentLink, type SubscriptionPaymentLookupRequest, type SubscriptionPaymentLookupResponse, type SubscriptionPeriodUnit, type SubscriptionProcessors, type SubscriptionResponse, type SubscriptionStatus, type SubscriptionTotals, Subscriptions, type SummaryPosition, type SupportedPaymentMethod, type SurchargeAmountOperator, type SurchargeBorderStyle, type SurchargeBorderWidth, type SurchargeCondition, type SurchargeConditionSource, type SurchargeCurrencyOperator, type SurchargeDetailsResponse, type SurchargeDirection, type SurchargeFigureMode, type SurchargeFigurePart, type SurchargeFigurePlan, type SurchargeLabelMode, type SurchargeMetadataOperator, type SurchargeOperator, type SurchargePosition, type SurchargeResponse, type SurchargeRuleRequest, type SurchargeRuleResponse, type SurchargeShape, type SurchargeSign, type SurchargeSize, type SurchargeStyle, type SurchargeWeight, type SurfaceStyle, type SwitchMerchantRequest, type SwitchProfileRequest, type Terminate2faQueryParams, type ThemeBrowserLanguage, type ThemeCheckoutChannel, type ThemeChoice, type ThemeCondition, type ThemeDeviceClass, type ThemeEnumCondition, type ThemeIfStatement, type ThemeMetadataCondition, type ThemeNumberCondition, type ThemeTrafficSource, type ThreeDSDecision, type ThreeDsRuleExecuteRequest, type ThreeDsRuleResponse, type TierSummary, type TimeToPayBucket, type TimeToPayBucketLabel, type TimeToPayStats, type TokenPurpose, type TokenResponse, type TopupRequest, type TopupResponse, type TotpResponse, type TransactionExportParams, type TransactionExportRecord, type TransactionType, type TrustBadge, type UpdateMetadataRequest, type UpdateOperationLimitSettingsRequest, type UpdateRoleConnectorGrantParams, type UpdateSubscriptionRequest, type UpdateUserDetailsRequest, type UpdateUserRoleRequest, type UpsertOperationLimitRuleRequest, type UpsertRefundLimitRuleRequest, type UpsertSettlementAdjustmentLimitRuleRequest, type UpsertSettlementPayoutLimitRuleRequest, type UserInLineage, type UserResponse, type UserSessionEntry, type UserSessionListResponse, type UserSessionRevokeResponse, type VaultCheck, type VaultCheckId, type VaultCheckStatus, type VaultCollectSessionResponse, type VaultEnvironment, type VaultPaymentMethodRequest, type VaultPaymentMethodResponse, type VaultRouteApplyVerification, type VaultRouteChange, type VaultRouteChangeKind, type VaultRouteFieldChange, type VaultRouteIds, type VaultRoutePurpose, type VaultRouteWarning, type VaultRouteWarningCode, type VaultRoutesApplyRequest, type VaultRoutesApplyResponse, type VaultRoutesFingerprint, type VaultRoutesPreviewRequest, type VaultRoutesPreviewResponse, type VaultVerificationResponse, type VaultVerifyRequest, type VerifyTotpRequest, WCAG_AA_TEXT, WCAG_AA_UI, type WebhookDeliveryAttempt, type WebhookDeliveryTerminalReason, type WebhookDetails, type WebhookEvent, type WebhookRefundStatus, type WebhookRegistrationEnvironment, Webhooks, allOf, anyOf, applyBrandingVariables, buildBrandingExport, buttonPadValue, checkoutCopy, cloneBranding, cloneCustomField, cloneNativePane, clonePane, contrastRatio, copyTranslationsKey, customFieldContextFromMetadata, customFieldIsTextLike, customFieldOperatorTakesValue, customFieldOptionLabel, customFieldText, decodeBadges, decodeBranding, decodeCustomFields, decodeNativePanes, decodePanes, defaultBranding, defaultCustomFieldVisibility, defaultNativePane, defaultOperatorForSource, defaultPane, emptyPaneCatalog, encodeBadges, encodeBranding, encodeCustomFields, encodeNativePanes, encodePanes, evaluateCustomFieldCondition, evaluateCustomFieldVisibility, feeProgram, focusedCheckoutUrl, fontStack, fontWeightValue, inputPadValue, isCheckboxChecked, isDarkSurface, isHexColor, leaf, logoDimensions, nativePaneMethodInfo, offerablePaneMethods, paneCatalogFor, paneDisplayDefaults, paneMethodInfo, paneRailAllowed, paneViewVisibility, parseCustomFieldsLoose, parseImportedBranding, programToTree, radiusValue, readableInkOn, ruleMatchToTree, sanitizeCustomCss, shadowFor, surchargeFigurePlan, surchargeShowsLabel, surchargeStyleDrawsAShape, surchargeWordFor, surfacePadValue, validatePanes, verticalGapValue, visibleCustomFields };
|