@delopay/sdk 0.85.0 → 0.86.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-HSUVEFKO.js → chunk-DQ36QCU7.js} +103 -1
- package/dist/chunk-DQ36QCU7.js.map +1 -0
- package/dist/index.cjs +102 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +211 -1
- package/dist/index.d.ts +211 -1
- package/dist/index.js +1 -1
- package/dist/internal.cjs +102 -0
- package/dist/internal.cjs.map +1 -1
- package/dist/internal.d.cts +3 -5
- package/dist/internal.d.ts +3 -5
- package/dist/internal.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-HSUVEFKO.js.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -2280,6 +2280,16 @@ interface UserResponse {
|
|
|
2280
2280
|
verification_days_left?: number | null;
|
|
2281
2281
|
recovery_codes_left?: number | null;
|
|
2282
2282
|
theme_id?: string | null;
|
|
2283
|
+
/**
|
|
2284
|
+
* The caller's user-scoped metadata bucket (free-form JSON), as updated by
|
|
2285
|
+
* `users.updateMetadata`. Absent/null = bucket unused.
|
|
2286
|
+
*/
|
|
2287
|
+
user_metadata?: Record<string, unknown> | null;
|
|
2288
|
+
/**
|
|
2289
|
+
* The merchant-scoped metadata bucket shared by every dashboard user of
|
|
2290
|
+
* the merchant, as updated by `users.updateMerchantMetadata`.
|
|
2291
|
+
*/
|
|
2292
|
+
merchant_metadata?: Record<string, unknown> | null;
|
|
2283
2293
|
}
|
|
2284
2294
|
interface ChangePasswordRequest {
|
|
2285
2295
|
old_password: string;
|
|
@@ -4108,6 +4118,138 @@ interface CheckoutBrandingUpdate {
|
|
|
4108
4118
|
/** Applied as a whole-object replace of `payment_link_config`. */
|
|
4109
4119
|
payment_link_config?: BusinessPaymentLinkConfig | null;
|
|
4110
4120
|
}
|
|
4121
|
+
/** A VGS vault environment. */
|
|
4122
|
+
type VaultEnvironment = 'sandbox' | 'live';
|
|
4123
|
+
/** What a VGS route is for: inbound card capture or outbound reveal. */
|
|
4124
|
+
type VaultRoutePurpose = 'collect' | 'reveal';
|
|
4125
|
+
type VaultRouteChangeKind = 'create' | 'update' | 'unchanged';
|
|
4126
|
+
interface VaultRouteFieldChange {
|
|
4127
|
+
path: string;
|
|
4128
|
+
from?: string | null;
|
|
4129
|
+
to?: string | null;
|
|
4130
|
+
}
|
|
4131
|
+
type VaultRouteWarningCode = 'templated_connector_base_url' | 'applier_reported';
|
|
4132
|
+
/** A non-fatal finding from a vault-route preview or apply. */
|
|
4133
|
+
interface VaultRouteWarning {
|
|
4134
|
+
code: VaultRouteWarningCode;
|
|
4135
|
+
connector?: string | null;
|
|
4136
|
+
detail?: string | null;
|
|
4137
|
+
}
|
|
4138
|
+
interface VaultRouteChange {
|
|
4139
|
+
route_id: string;
|
|
4140
|
+
purpose: VaultRoutePurpose;
|
|
4141
|
+
change: VaultRouteChangeKind;
|
|
4142
|
+
field_changes: VaultRouteFieldChange[];
|
|
4143
|
+
}
|
|
4144
|
+
type VaultCheckId = 'collect_credentials_valid' | 'collect_write_only' | 'management_scopes' | 'vault_reachable' | 'environment_coherent' | 'reveal_route_covers_processors' | 'collect_route_exists' | 'ca_certificate_configured';
|
|
4145
|
+
type VaultCheckStatus = 'pass' | 'fail' | 'unknown';
|
|
4146
|
+
interface VaultCheck {
|
|
4147
|
+
id: VaultCheckId;
|
|
4148
|
+
status: VaultCheckStatus;
|
|
4149
|
+
/** Always present on the wire (nullable, never omitted). */
|
|
4150
|
+
detail: string | null;
|
|
4151
|
+
}
|
|
4152
|
+
interface VaultVerifyRequest {
|
|
4153
|
+
profile_id: string;
|
|
4154
|
+
}
|
|
4155
|
+
/** Result of `POST .../vault/verify` — configuration checks for a vault MCA. */
|
|
4156
|
+
interface VaultVerificationResponse {
|
|
4157
|
+
passed: boolean;
|
|
4158
|
+
checks: VaultCheck[];
|
|
4159
|
+
/** Vault egress IPs the merchant's processors may need to allowlist. */
|
|
4160
|
+
egress_ips_to_allowlist: string[];
|
|
4161
|
+
}
|
|
4162
|
+
interface VaultRoutesPreviewRequest {
|
|
4163
|
+
profile_id: string;
|
|
4164
|
+
/** `sandbox` or `live`; omitted = derived from the credentials. */
|
|
4165
|
+
environment?: VaultEnvironment;
|
|
4166
|
+
}
|
|
4167
|
+
/**
|
|
4168
|
+
* Fingerprint of the vault's current routes. `null` is a real value meaning
|
|
4169
|
+
* "no routes exist" (the wire is an untagged enum), and must be sent back
|
|
4170
|
+
* as `null` on apply rather than omitted.
|
|
4171
|
+
*/
|
|
4172
|
+
type VaultRoutesFingerprint = string | null;
|
|
4173
|
+
interface VaultRoutesPreviewResponse {
|
|
4174
|
+
vault_id: string;
|
|
4175
|
+
environment: VaultEnvironment;
|
|
4176
|
+
/** Opaque token covering the desired route document; echo on apply. */
|
|
4177
|
+
desired_fingerprint: string;
|
|
4178
|
+
desired_upstream_hosts: string[];
|
|
4179
|
+
/** Opaque token covering what exists now; echo on apply. See {@link VaultRoutesFingerprint}. */
|
|
4180
|
+
current_fingerprint: VaultRoutesFingerprint;
|
|
4181
|
+
changes: VaultRouteChange[];
|
|
4182
|
+
warnings: VaultRouteWarning[];
|
|
4183
|
+
}
|
|
4184
|
+
interface VaultRoutesApplyRequest {
|
|
4185
|
+
profile_id: string;
|
|
4186
|
+
environment?: VaultEnvironment;
|
|
4187
|
+
/**
|
|
4188
|
+
* From the preview, byte for byte. `null` means the preview found no
|
|
4189
|
+
* routes and is a real value — an absent key is refused by the router.
|
|
4190
|
+
*/
|
|
4191
|
+
expected_current_fingerprint: VaultRoutesFingerprint;
|
|
4192
|
+
/** From the same preview, byte for byte. */
|
|
4193
|
+
expected_desired_fingerprint: string;
|
|
4194
|
+
}
|
|
4195
|
+
interface VaultRouteIds {
|
|
4196
|
+
collect: string;
|
|
4197
|
+
reveal: string;
|
|
4198
|
+
}
|
|
4199
|
+
interface VaultRouteApplyVerification {
|
|
4200
|
+
established: string[];
|
|
4201
|
+
not_established: string[];
|
|
4202
|
+
routes_appeared: string[];
|
|
4203
|
+
}
|
|
4204
|
+
interface VaultRoutesApplyResponse {
|
|
4205
|
+
applied: boolean;
|
|
4206
|
+
route_ids: VaultRouteIds;
|
|
4207
|
+
collect_route_id_stored: boolean;
|
|
4208
|
+
warnings: VaultRouteWarning[];
|
|
4209
|
+
verification?: VaultRouteApplyVerification | null;
|
|
4210
|
+
}
|
|
4211
|
+
/**
|
|
4212
|
+
* Body of `PATCH /user/metadata` and `PATCH /user/merchant/metadata` — an
|
|
4213
|
+
* RFC 7396 merge patch over the metadata bucket. An object merges key by
|
|
4214
|
+
* key (a `null` value removes that key); a root-level `null` clears the
|
|
4215
|
+
* whole bucket. Anything else is rejected with a 400.
|
|
4216
|
+
*/
|
|
4217
|
+
interface UpdateMetadataRequest {
|
|
4218
|
+
patch: Record<string, unknown> | null;
|
|
4219
|
+
}
|
|
4220
|
+
/** How a catalog entry's country coverage is interpreted. */
|
|
4221
|
+
type EpayoutsLocality = 'country_locked' | 'regional' | 'universal';
|
|
4222
|
+
/** Which processing rail a catalog entry mints codes for. */
|
|
4223
|
+
type EpayoutsRail = {
|
|
4224
|
+
kind: 'local_bank_redirect';
|
|
4225
|
+
} | {
|
|
4226
|
+
kind: 'credit_card_redirect';
|
|
4227
|
+
} | {
|
|
4228
|
+
kind: 'bank_redirect';
|
|
4229
|
+
pmt: string;
|
|
4230
|
+
data_variant: string;
|
|
4231
|
+
};
|
|
4232
|
+
interface EpayoutsCatalogEntry {
|
|
4233
|
+
vendor_code: string;
|
|
4234
|
+
family: string;
|
|
4235
|
+
display_name?: string | null;
|
|
4236
|
+
category?: string | null;
|
|
4237
|
+
/** Sanitised inline SVG for the tile icon, when set. */
|
|
4238
|
+
icon_svg?: string | null;
|
|
4239
|
+
/** ISO 3166-1 alpha-2 codes (lowercase) the entry covers. */
|
|
4240
|
+
coverage: string[];
|
|
4241
|
+
pmin?: number | null;
|
|
4242
|
+
pmax?: number | null;
|
|
4243
|
+
enabled: boolean;
|
|
4244
|
+
locality: EpayoutsLocality;
|
|
4245
|
+
rail: EpayoutsRail;
|
|
4246
|
+
}
|
|
4247
|
+
interface EpayoutsCatalogResponse {
|
|
4248
|
+
entries: EpayoutsCatalogEntry[];
|
|
4249
|
+
/** Set by a sync sweep: how many countries were probed / answered. */
|
|
4250
|
+
countries_probed?: number | null;
|
|
4251
|
+
countries_ok?: number | null;
|
|
4252
|
+
}
|
|
4111
4253
|
|
|
4112
4254
|
/** Create and manage API keys for a merchant account. */
|
|
4113
4255
|
declare class ApiKeys {
|
|
@@ -4368,6 +4510,27 @@ declare class Connectors {
|
|
|
4368
4510
|
create(accountId: string, params: ConnectorCreateRequest): Promise<ConnectorResponse>;
|
|
4369
4511
|
retrieve(accountId: string, connectorId: string): Promise<ConnectorResponse>;
|
|
4370
4512
|
list(accountId: string): Promise<ConnectorResponse[]>;
|
|
4513
|
+
/**
|
|
4514
|
+
* The profile-scoped connector list. The merchant-wide `list()` is
|
|
4515
|
+
* merchant-gated and 403s for a profile-entity (shop user) JWT; this
|
|
4516
|
+
* variant is scoped server-side to the caller's own profile.
|
|
4517
|
+
*
|
|
4518
|
+
* `GET /account/{accountId}/profile/connectors`
|
|
4519
|
+
*/
|
|
4520
|
+
listByProfile(accountId: string): Promise<ConnectorResponse[]>;
|
|
4521
|
+
/**
|
|
4522
|
+
* The built-in e-Payouts reference catalog — the "Restore defaults" source.
|
|
4523
|
+
* `GET /account/{accountId}/connectors/epayouts/catalog/defaults`
|
|
4524
|
+
*/
|
|
4525
|
+
getEpayoutsCatalogDefaults(accountId: string): Promise<EpayoutsCatalogResponse>;
|
|
4526
|
+
/**
|
|
4527
|
+
* Sweep the merchant's own e-Payouts module and return the rails it
|
|
4528
|
+
* actually has enabled. Server-side this makes many upstream calls, so it
|
|
4529
|
+
* can take several seconds — show progress.
|
|
4530
|
+
*
|
|
4531
|
+
* `POST /account/{accountId}/connectors/{connectorId}/epayouts/catalog/sync`
|
|
4532
|
+
*/
|
|
4533
|
+
syncEpayoutsCatalog(accountId: string, connectorId: string): Promise<EpayoutsCatalogResponse>;
|
|
4371
4534
|
update(accountId: string, connectorId: string, params: ConnectorUpdateRequest): Promise<ConnectorResponse>;
|
|
4372
4535
|
delete(accountId: string, connectorId: string): Promise<ConnectorResponse>;
|
|
4373
4536
|
/**
|
|
@@ -4380,6 +4543,37 @@ declare class Connectors {
|
|
|
4380
4543
|
* the target shop.
|
|
4381
4544
|
*/
|
|
4382
4545
|
clone(accountId: string, connectorId: string, params: ConnectorCloneRequest): Promise<ConnectorResponse>;
|
|
4546
|
+
/**
|
|
4547
|
+
* Run the configuration checks for a vault (VGS) connector account:
|
|
4548
|
+
* credential validity, write-only Collect scope, reachability, environment
|
|
4549
|
+
* coherence, route coverage. Read-only but not cheap — it decrypts the
|
|
4550
|
+
* vault's management credential and talks to VGS.
|
|
4551
|
+
*
|
|
4552
|
+
* `POST /account/{accountId}/connectors/{connectorId}/vault/verify`
|
|
4553
|
+
*/
|
|
4554
|
+
verifyVault(accountId: string, connectorId: string, params: VaultVerifyRequest): Promise<VaultVerificationResponse>;
|
|
4555
|
+
/**
|
|
4556
|
+
* Compute the route document the vault SHOULD have and diff it against
|
|
4557
|
+
* what exists, without writing anything. The returned fingerprints must be
|
|
4558
|
+
* echoed byte for byte on {@link Connectors.applyVaultRoutes}.
|
|
4559
|
+
*
|
|
4560
|
+
* A router without these endpoints answers 404 — render that as "this
|
|
4561
|
+
* build cannot configure routes", never as "there is nothing to change".
|
|
4562
|
+
*
|
|
4563
|
+
* `POST /account/{accountId}/connectors/{connectorId}/vault/routes/preview`
|
|
4564
|
+
*/
|
|
4565
|
+
previewVaultRoutes(accountId: string, connectorId: string, params: VaultRoutesPreviewRequest): Promise<VaultRoutesPreviewResponse>;
|
|
4566
|
+
/**
|
|
4567
|
+
* Write the routes the merchant just previewed. Both fingerprints come
|
|
4568
|
+
* from the preview and are opaque: `expected_current_fingerprint` says the
|
|
4569
|
+
* vault has not moved (`null` = "the preview found no routes" and is sent
|
|
4570
|
+
* as `null`, never omitted), `expected_desired_fingerprint` says the
|
|
4571
|
+
* document is still the one on screen. A 409 (`DE_04`) means the vault
|
|
4572
|
+
* changed since the preview — nothing was written; preview again.
|
|
4573
|
+
*
|
|
4574
|
+
* `POST /account/{accountId}/connectors/{connectorId}/vault/routes/apply`
|
|
4575
|
+
*/
|
|
4576
|
+
applyVaultRoutes(accountId: string, connectorId: string, params: VaultRoutesApplyRequest): Promise<VaultRoutesApplyResponse>;
|
|
4383
4577
|
/** Verify connector credentials. `POST /account/connectors/verify` */
|
|
4384
4578
|
verify(params: Record<string, unknown>): Promise<Record<string, unknown>>;
|
|
4385
4579
|
/**
|
|
@@ -5870,6 +6064,22 @@ declare class Users {
|
|
|
5870
6064
|
revokeSession(sessionId: string): Promise<UserSessionRevokeResponse>;
|
|
5871
6065
|
getDetails(): Promise<UserResponse>;
|
|
5872
6066
|
update(params: UpdateUserDetailsRequest): Promise<UserResponse>;
|
|
6067
|
+
/**
|
|
6068
|
+
* RFC 7396 merge-patch the caller's own user-scoped metadata bucket.
|
|
6069
|
+
* Returns the full user details, so callers can refresh their context
|
|
6070
|
+
* without a second fetch.
|
|
6071
|
+
*
|
|
6072
|
+
* `PATCH /user/metadata`
|
|
6073
|
+
*/
|
|
6074
|
+
updateMetadata(params: UpdateMetadataRequest): Promise<UserResponse>;
|
|
6075
|
+
/**
|
|
6076
|
+
* RFC 7396 merge-patch the merchant-scoped metadata bucket shared by
|
|
6077
|
+
* every dashboard user of the merchant. Same response contract as
|
|
6078
|
+
* {@link Users.updateMetadata}.
|
|
6079
|
+
*
|
|
6080
|
+
* `PATCH /user/merchant/metadata`
|
|
6081
|
+
*/
|
|
6082
|
+
updateMerchantMetadata(params: UpdateMetadataRequest): Promise<UserResponse>;
|
|
5873
6083
|
/**
|
|
5874
6084
|
* Permanently delete the caller's account. Requires a fresh password
|
|
5875
6085
|
* (and a current 6-digit TOTP code if the user has TOTP enrolled). On
|
|
@@ -7600,4 +7810,4 @@ declare function focusedCheckoutUrl(params: FocusedCheckoutUrlParams): string;
|
|
|
7600
7810
|
declare const CHECKOUT_EVENT_KINDS: readonly ["native_pane_selected", "native_pane_tab_opened", "native_pane_tab_blocked", "native_pane_abandoned", "native_pane_returned"];
|
|
7601
7811
|
type CheckoutEventKind = (typeof CHECKOUT_EVENT_KINDS)[number];
|
|
7602
7812
|
|
|
7603
|
-
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 AnalyticsChild, type AnalyticsConnectorDay, type AnalyticsConnectorSeries, AnalyticsDashboard, type AnalyticsDayBucket, type AnalyticsMethodSlice, 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, 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, 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 CancelSubscriptionRequest, type CancelSubscriptionResponse, type CaptureMethod, type CardDetail, type CardDetailFromLocker, type CardNetworkTypes, Cards, type ChangePasswordRequest, type CheckoutBranding, type CheckoutBrandingUpdate, type CheckoutCustomField, type CheckoutEventKind, CheckoutSession, type CheckoutSessionOptions, type ConditionNode, type ConfirmSubscriptionPaymentDetails, type ConfirmSubscriptionRequest, type ConfirmSubscriptionResponse, type Connector, type ConnectorCloneRequest, type ConnectorCreateRequest, type ConnectorListResponse, type ConnectorOwnership, type ConnectorResponse, 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 DeleteAccountRequest, type DeleteUserRoleRequest, Delopay, DelopayAuthenticationError, DelopayError, type DelopayLogger, type DelopayOptions, type DisputeEvidenceBlock, type DisputeEvidenceRequest, type DisputeEvidenceType, type DisputeListParams, type DisputeResponse, type DisputeStage, type DisputeStatus, type EncodedBranding, type EpayoutsMethod, type EpayoutsMethodsResponse, 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 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 GetSubscriptionItemsParams, type GetSubscriptionItemsResponse, type GlobalSearchRequest, type GroupNode, type ImpersonateEmployeeRequest, type IntentStatus, type InviteUsersRequest, type InviteUsersResponse, type InvoiceStatus, type LabelStyle, type LayoutStyle, type LeafNode, type LedgerEntry, type LedgerListParams, type LedgerResponse, type LimitedOperation, type LinkedRoutingConfigRetrieveResponse, type ListInvitableRolesParams, type ListUsersInLineageParams, type LoginHistoryEntry, type LoginHistoryParams, type LoginHistoryResponse, type LogoShape, type LogoSize, type MandateListParams, type MandateResponse, type MandateRevokedResponse, type MandateStatus, type MandateType, type MerchantAccountCreateRequest, type MerchantAccountResponse, type MerchantAccountType, type MerchantAccountUpdateRequest, type MerchantOverviewResponse, type MerchantOverviewStat, type MerchantRoutingAlgorithm, type MethodSurcharge, type MinimalRoleInfo, NATIVE_PANES_MAX, NATIVE_PANE_CATEGORY_KEYS, NATIVE_PANE_ICON_KEYS, type NativePaneMethodInfo, type NativePaneOpenTarget, type NativePaneRail, type NativePaneView, type NativePaneVisibility, type NonPillRadius, type OperationLimitOnExceeded, type OperationLimitRule, type OperationLimitRuleDeleteResponse, type OperationLimitRuleListParams, type OperationLimitScope, type OperationLimitSettings, type OperationLimitWindowMode, OperationLimits, type OverrideAction, type OverrideScope, 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 PerMethodSurchargeItem, type PermissionScope, type PhoneDetails, type PhoneOtpRequest, type PhoneOtpResponse, type PhoneOtpVerifyRequest, type PhoneOtpVerifyResponse, type PlatformFeeKind, type PlatformFeeOutput, type PlatformFeeProgram, type PlatformFeeRule, type PlatformFeeRuleInput, type PlatformFeeRuleOutput, type PlatformFeeRuleRecord, type PlatformFeeRuleRequest, type PollStatus, type PollStatusResponse, 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, type RoutableConnectorChoice, type RoutingActivatePayload, type RoutingConfigCreateRequest, type RoutingConfigResponse, type RoutingDeactivateRequest, type RoutingDictionary, type RoutingDictionaryRecord, type RuleConnectorSelection, STRIPE_NATIVE_PANE_METHODS, Search, type SearchGroupResponse, type SearchIndex, type SearchStatus, Settlement, type SettlementBackfillRequest, type SettlementBackfillResponse, type SettlementBucket, type SettlementCurrentParams, type SettlementCurrentResponse, type SettlementLine, type SettlementLineListParams, type SettlementLineListResponse, type SettlementOverviewParams, type SettlementOverviewResponse, type SettlementPayoutStatus, type SettlementStatementListParams, type SettlementStatementListResponse, type ShopCreateRequest, type ShopFeeConfigEntry, type ShopFeeConfigParams, type ShopFeeConfigResponse, type ShopResponse, 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 SubscriptionEstimateParams, type SubscriptionEstimateResponse, type SubscriptionInvoice, type SubscriptionItem, type SubscriptionItemPrice, type SubscriptionItemType, type SubscriptionLineItem, type SubscriptionListParams, type SubscriptionPaymentData, type SubscriptionPaymentDetails, type SubscriptionPaymentLink, type SubscriptionPaymentLookupRequest, type SubscriptionPaymentLookupResponse, type SubscriptionPeriodUnit, type SubscriptionResponse, type SubscriptionStatus, Subscriptions, type SummaryPosition, type SurchargeDetailsResponse, type SurchargeResponse, type SurchargeRuleRequest, type SurchargeRuleResponse, type SurfaceStyle, type SwitchMerchantRequest, type SwitchProfileRequest, type Terminate2faQueryParams, type ThreeDSDecision, type ThreeDsRuleExecuteRequest, type ThreeDsRuleResponse, type TierSummary, type TokenPurpose, type TokenResponse, type TopupRequest, type TopupResponse, type TotpResponse, type TransactionType, type TrustBadge, type UpdateOperationLimitSettingsRequest, type UpdateSubscriptionRequest, type UpdateUserDetailsRequest, type UpdateUserRoleRequest, type UpsertOperationLimitRuleRequest, type UserInLineage, type UserResponse, type UserSessionEntry, type UserSessionListResponse, type UserSessionRevokeResponse, type VaultCollectSessionResponse, type VaultPaymentMethodRequest, type VaultPaymentMethodResponse, type VerifyTotpRequest, type WebhookDeliveryAttempt, type WebhookEvent, type WebhookRegistrationEnvironment, Webhooks, allOf, anyOf, applyBrandingVariables, buildBrandingExport, buttonPadValue, cloneBranding, cloneCustomField, cloneNativePane, customFieldContextFromMetadata, customFieldIsTextLike, customFieldOperatorTakesValue, customFieldOptionLabel, customFieldText, decodeBadges, decodeBranding, decodeCustomFields, decodeNativePanes, defaultBranding, defaultCustomFieldVisibility, defaultNativePane, defaultOperatorForSource, encodeBadges, encodeBranding, encodeCustomFields, encodeNativePanes, evaluateCustomFieldCondition, evaluateCustomFieldVisibility, feeProgram, focusedCheckoutUrl, fontStack, fontWeightValue, inputPadValue, isCheckboxChecked, isDarkSurface, isHexColor, leaf, logoDimensions, nativePaneMethodInfo, parseCustomFieldsLoose, parseImportedBranding, programToTree, radiusValue, ruleMatchToTree, sanitizeCustomCss, shadowFor, surfacePadValue, verticalGapValue, visibleCustomFields };
|
|
7813
|
+
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 AnalyticsChild, type AnalyticsConnectorDay, type AnalyticsConnectorSeries, AnalyticsDashboard, type AnalyticsDayBucket, type AnalyticsMethodSlice, 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, 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, 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 CancelSubscriptionRequest, type CancelSubscriptionResponse, type CaptureMethod, type CardDetail, type CardDetailFromLocker, type CardNetworkTypes, Cards, type ChangePasswordRequest, type CheckoutBranding, type CheckoutBrandingUpdate, type CheckoutCustomField, type CheckoutEventKind, CheckoutSession, type CheckoutSessionOptions, type ConditionNode, type ConfirmSubscriptionPaymentDetails, type ConfirmSubscriptionRequest, type ConfirmSubscriptionResponse, type Connector, type ConnectorCloneRequest, type ConnectorCreateRequest, type ConnectorListResponse, type ConnectorOwnership, type ConnectorResponse, 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 DeleteAccountRequest, type DeleteUserRoleRequest, Delopay, DelopayAuthenticationError, DelopayError, type DelopayLogger, type DelopayOptions, type DisputeEvidenceBlock, type DisputeEvidenceRequest, type DisputeEvidenceType, type DisputeListParams, type DisputeResponse, type DisputeStage, type DisputeStatus, type EncodedBranding, 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 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 GetSubscriptionItemsParams, type GetSubscriptionItemsResponse, type GlobalSearchRequest, type GroupNode, type ImpersonateEmployeeRequest, type IntentStatus, type InviteUsersRequest, type InviteUsersResponse, type InvoiceStatus, type LabelStyle, type LayoutStyle, type LeafNode, type LedgerEntry, type LedgerListParams, type LedgerResponse, type LimitedOperation, type LinkedRoutingConfigRetrieveResponse, type ListInvitableRolesParams, type ListUsersInLineageParams, type LoginHistoryEntry, type LoginHistoryParams, type LoginHistoryResponse, type LogoShape, type LogoSize, type MandateListParams, type MandateResponse, type MandateRevokedResponse, type MandateStatus, type MandateType, type MerchantAccountCreateRequest, type MerchantAccountResponse, type MerchantAccountType, type MerchantAccountUpdateRequest, type MerchantOverviewResponse, type MerchantOverviewStat, type MerchantRoutingAlgorithm, type MethodSurcharge, type MinimalRoleInfo, NATIVE_PANES_MAX, NATIVE_PANE_CATEGORY_KEYS, NATIVE_PANE_ICON_KEYS, type NativePaneMethodInfo, type NativePaneOpenTarget, type NativePaneRail, type NativePaneView, type NativePaneVisibility, type NonPillRadius, type OperationLimitOnExceeded, type OperationLimitRule, type OperationLimitRuleDeleteResponse, type OperationLimitRuleListParams, type OperationLimitScope, type OperationLimitSettings, type OperationLimitWindowMode, OperationLimits, type OverrideAction, type OverrideScope, 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 PerMethodSurchargeItem, type PermissionScope, type PhoneDetails, type PhoneOtpRequest, type PhoneOtpResponse, type PhoneOtpVerifyRequest, type PhoneOtpVerifyResponse, type PlatformFeeKind, type PlatformFeeOutput, type PlatformFeeProgram, type PlatformFeeRule, type PlatformFeeRuleInput, type PlatformFeeRuleOutput, type PlatformFeeRuleRecord, type PlatformFeeRuleRequest, type PollStatus, type PollStatusResponse, 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, type RoutableConnectorChoice, type RoutingActivatePayload, type RoutingConfigCreateRequest, type RoutingConfigResponse, type RoutingDeactivateRequest, type RoutingDictionary, type RoutingDictionaryRecord, type RuleConnectorSelection, STRIPE_NATIVE_PANE_METHODS, Search, type SearchGroupResponse, type SearchIndex, type SearchStatus, Settlement, type SettlementBackfillRequest, type SettlementBackfillResponse, type SettlementBucket, type SettlementCurrentParams, type SettlementCurrentResponse, type SettlementLine, type SettlementLineListParams, type SettlementLineListResponse, type SettlementOverviewParams, type SettlementOverviewResponse, type SettlementPayoutStatus, type SettlementStatementListParams, type SettlementStatementListResponse, type ShopCreateRequest, type ShopFeeConfigEntry, type ShopFeeConfigParams, type ShopFeeConfigResponse, type ShopResponse, 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 SubscriptionEstimateParams, type SubscriptionEstimateResponse, type SubscriptionInvoice, type SubscriptionItem, type SubscriptionItemPrice, type SubscriptionItemType, type SubscriptionLineItem, type SubscriptionListParams, type SubscriptionPaymentData, type SubscriptionPaymentDetails, type SubscriptionPaymentLink, type SubscriptionPaymentLookupRequest, type SubscriptionPaymentLookupResponse, type SubscriptionPeriodUnit, type SubscriptionResponse, type SubscriptionStatus, Subscriptions, type SummaryPosition, type SurchargeDetailsResponse, type SurchargeResponse, type SurchargeRuleRequest, type SurchargeRuleResponse, type SurfaceStyle, type SwitchMerchantRequest, type SwitchProfileRequest, type Terminate2faQueryParams, type ThreeDSDecision, type ThreeDsRuleExecuteRequest, type ThreeDsRuleResponse, type TierSummary, type TokenPurpose, type TokenResponse, type TopupRequest, type TopupResponse, type TotpResponse, type TransactionType, type TrustBadge, type UpdateMetadataRequest, type UpdateOperationLimitSettingsRequest, type UpdateSubscriptionRequest, type UpdateUserDetailsRequest, type UpdateUserRoleRequest, type UpsertOperationLimitRuleRequest, 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, type WebhookDeliveryAttempt, type WebhookEvent, type WebhookRegistrationEnvironment, Webhooks, allOf, anyOf, applyBrandingVariables, buildBrandingExport, buttonPadValue, cloneBranding, cloneCustomField, cloneNativePane, customFieldContextFromMetadata, customFieldIsTextLike, customFieldOperatorTakesValue, customFieldOptionLabel, customFieldText, decodeBadges, decodeBranding, decodeCustomFields, decodeNativePanes, defaultBranding, defaultCustomFieldVisibility, defaultNativePane, defaultOperatorForSource, encodeBadges, encodeBranding, encodeCustomFields, encodeNativePanes, evaluateCustomFieldCondition, evaluateCustomFieldVisibility, feeProgram, focusedCheckoutUrl, fontStack, fontWeightValue, inputPadValue, isCheckboxChecked, isDarkSurface, isHexColor, leaf, logoDimensions, nativePaneMethodInfo, parseCustomFieldsLoose, parseImportedBranding, programToTree, radiusValue, ruleMatchToTree, sanitizeCustomCss, shadowFor, surfacePadValue, verticalGapValue, visibleCustomFields };
|
package/dist/index.d.ts
CHANGED
|
@@ -2280,6 +2280,16 @@ interface UserResponse {
|
|
|
2280
2280
|
verification_days_left?: number | null;
|
|
2281
2281
|
recovery_codes_left?: number | null;
|
|
2282
2282
|
theme_id?: string | null;
|
|
2283
|
+
/**
|
|
2284
|
+
* The caller's user-scoped metadata bucket (free-form JSON), as updated by
|
|
2285
|
+
* `users.updateMetadata`. Absent/null = bucket unused.
|
|
2286
|
+
*/
|
|
2287
|
+
user_metadata?: Record<string, unknown> | null;
|
|
2288
|
+
/**
|
|
2289
|
+
* The merchant-scoped metadata bucket shared by every dashboard user of
|
|
2290
|
+
* the merchant, as updated by `users.updateMerchantMetadata`.
|
|
2291
|
+
*/
|
|
2292
|
+
merchant_metadata?: Record<string, unknown> | null;
|
|
2283
2293
|
}
|
|
2284
2294
|
interface ChangePasswordRequest {
|
|
2285
2295
|
old_password: string;
|
|
@@ -4108,6 +4118,138 @@ interface CheckoutBrandingUpdate {
|
|
|
4108
4118
|
/** Applied as a whole-object replace of `payment_link_config`. */
|
|
4109
4119
|
payment_link_config?: BusinessPaymentLinkConfig | null;
|
|
4110
4120
|
}
|
|
4121
|
+
/** A VGS vault environment. */
|
|
4122
|
+
type VaultEnvironment = 'sandbox' | 'live';
|
|
4123
|
+
/** What a VGS route is for: inbound card capture or outbound reveal. */
|
|
4124
|
+
type VaultRoutePurpose = 'collect' | 'reveal';
|
|
4125
|
+
type VaultRouteChangeKind = 'create' | 'update' | 'unchanged';
|
|
4126
|
+
interface VaultRouteFieldChange {
|
|
4127
|
+
path: string;
|
|
4128
|
+
from?: string | null;
|
|
4129
|
+
to?: string | null;
|
|
4130
|
+
}
|
|
4131
|
+
type VaultRouteWarningCode = 'templated_connector_base_url' | 'applier_reported';
|
|
4132
|
+
/** A non-fatal finding from a vault-route preview or apply. */
|
|
4133
|
+
interface VaultRouteWarning {
|
|
4134
|
+
code: VaultRouteWarningCode;
|
|
4135
|
+
connector?: string | null;
|
|
4136
|
+
detail?: string | null;
|
|
4137
|
+
}
|
|
4138
|
+
interface VaultRouteChange {
|
|
4139
|
+
route_id: string;
|
|
4140
|
+
purpose: VaultRoutePurpose;
|
|
4141
|
+
change: VaultRouteChangeKind;
|
|
4142
|
+
field_changes: VaultRouteFieldChange[];
|
|
4143
|
+
}
|
|
4144
|
+
type VaultCheckId = 'collect_credentials_valid' | 'collect_write_only' | 'management_scopes' | 'vault_reachable' | 'environment_coherent' | 'reveal_route_covers_processors' | 'collect_route_exists' | 'ca_certificate_configured';
|
|
4145
|
+
type VaultCheckStatus = 'pass' | 'fail' | 'unknown';
|
|
4146
|
+
interface VaultCheck {
|
|
4147
|
+
id: VaultCheckId;
|
|
4148
|
+
status: VaultCheckStatus;
|
|
4149
|
+
/** Always present on the wire (nullable, never omitted). */
|
|
4150
|
+
detail: string | null;
|
|
4151
|
+
}
|
|
4152
|
+
interface VaultVerifyRequest {
|
|
4153
|
+
profile_id: string;
|
|
4154
|
+
}
|
|
4155
|
+
/** Result of `POST .../vault/verify` — configuration checks for a vault MCA. */
|
|
4156
|
+
interface VaultVerificationResponse {
|
|
4157
|
+
passed: boolean;
|
|
4158
|
+
checks: VaultCheck[];
|
|
4159
|
+
/** Vault egress IPs the merchant's processors may need to allowlist. */
|
|
4160
|
+
egress_ips_to_allowlist: string[];
|
|
4161
|
+
}
|
|
4162
|
+
interface VaultRoutesPreviewRequest {
|
|
4163
|
+
profile_id: string;
|
|
4164
|
+
/** `sandbox` or `live`; omitted = derived from the credentials. */
|
|
4165
|
+
environment?: VaultEnvironment;
|
|
4166
|
+
}
|
|
4167
|
+
/**
|
|
4168
|
+
* Fingerprint of the vault's current routes. `null` is a real value meaning
|
|
4169
|
+
* "no routes exist" (the wire is an untagged enum), and must be sent back
|
|
4170
|
+
* as `null` on apply rather than omitted.
|
|
4171
|
+
*/
|
|
4172
|
+
type VaultRoutesFingerprint = string | null;
|
|
4173
|
+
interface VaultRoutesPreviewResponse {
|
|
4174
|
+
vault_id: string;
|
|
4175
|
+
environment: VaultEnvironment;
|
|
4176
|
+
/** Opaque token covering the desired route document; echo on apply. */
|
|
4177
|
+
desired_fingerprint: string;
|
|
4178
|
+
desired_upstream_hosts: string[];
|
|
4179
|
+
/** Opaque token covering what exists now; echo on apply. See {@link VaultRoutesFingerprint}. */
|
|
4180
|
+
current_fingerprint: VaultRoutesFingerprint;
|
|
4181
|
+
changes: VaultRouteChange[];
|
|
4182
|
+
warnings: VaultRouteWarning[];
|
|
4183
|
+
}
|
|
4184
|
+
interface VaultRoutesApplyRequest {
|
|
4185
|
+
profile_id: string;
|
|
4186
|
+
environment?: VaultEnvironment;
|
|
4187
|
+
/**
|
|
4188
|
+
* From the preview, byte for byte. `null` means the preview found no
|
|
4189
|
+
* routes and is a real value — an absent key is refused by the router.
|
|
4190
|
+
*/
|
|
4191
|
+
expected_current_fingerprint: VaultRoutesFingerprint;
|
|
4192
|
+
/** From the same preview, byte for byte. */
|
|
4193
|
+
expected_desired_fingerprint: string;
|
|
4194
|
+
}
|
|
4195
|
+
interface VaultRouteIds {
|
|
4196
|
+
collect: string;
|
|
4197
|
+
reveal: string;
|
|
4198
|
+
}
|
|
4199
|
+
interface VaultRouteApplyVerification {
|
|
4200
|
+
established: string[];
|
|
4201
|
+
not_established: string[];
|
|
4202
|
+
routes_appeared: string[];
|
|
4203
|
+
}
|
|
4204
|
+
interface VaultRoutesApplyResponse {
|
|
4205
|
+
applied: boolean;
|
|
4206
|
+
route_ids: VaultRouteIds;
|
|
4207
|
+
collect_route_id_stored: boolean;
|
|
4208
|
+
warnings: VaultRouteWarning[];
|
|
4209
|
+
verification?: VaultRouteApplyVerification | null;
|
|
4210
|
+
}
|
|
4211
|
+
/**
|
|
4212
|
+
* Body of `PATCH /user/metadata` and `PATCH /user/merchant/metadata` — an
|
|
4213
|
+
* RFC 7396 merge patch over the metadata bucket. An object merges key by
|
|
4214
|
+
* key (a `null` value removes that key); a root-level `null` clears the
|
|
4215
|
+
* whole bucket. Anything else is rejected with a 400.
|
|
4216
|
+
*/
|
|
4217
|
+
interface UpdateMetadataRequest {
|
|
4218
|
+
patch: Record<string, unknown> | null;
|
|
4219
|
+
}
|
|
4220
|
+
/** How a catalog entry's country coverage is interpreted. */
|
|
4221
|
+
type EpayoutsLocality = 'country_locked' | 'regional' | 'universal';
|
|
4222
|
+
/** Which processing rail a catalog entry mints codes for. */
|
|
4223
|
+
type EpayoutsRail = {
|
|
4224
|
+
kind: 'local_bank_redirect';
|
|
4225
|
+
} | {
|
|
4226
|
+
kind: 'credit_card_redirect';
|
|
4227
|
+
} | {
|
|
4228
|
+
kind: 'bank_redirect';
|
|
4229
|
+
pmt: string;
|
|
4230
|
+
data_variant: string;
|
|
4231
|
+
};
|
|
4232
|
+
interface EpayoutsCatalogEntry {
|
|
4233
|
+
vendor_code: string;
|
|
4234
|
+
family: string;
|
|
4235
|
+
display_name?: string | null;
|
|
4236
|
+
category?: string | null;
|
|
4237
|
+
/** Sanitised inline SVG for the tile icon, when set. */
|
|
4238
|
+
icon_svg?: string | null;
|
|
4239
|
+
/** ISO 3166-1 alpha-2 codes (lowercase) the entry covers. */
|
|
4240
|
+
coverage: string[];
|
|
4241
|
+
pmin?: number | null;
|
|
4242
|
+
pmax?: number | null;
|
|
4243
|
+
enabled: boolean;
|
|
4244
|
+
locality: EpayoutsLocality;
|
|
4245
|
+
rail: EpayoutsRail;
|
|
4246
|
+
}
|
|
4247
|
+
interface EpayoutsCatalogResponse {
|
|
4248
|
+
entries: EpayoutsCatalogEntry[];
|
|
4249
|
+
/** Set by a sync sweep: how many countries were probed / answered. */
|
|
4250
|
+
countries_probed?: number | null;
|
|
4251
|
+
countries_ok?: number | null;
|
|
4252
|
+
}
|
|
4111
4253
|
|
|
4112
4254
|
/** Create and manage API keys for a merchant account. */
|
|
4113
4255
|
declare class ApiKeys {
|
|
@@ -4368,6 +4510,27 @@ declare class Connectors {
|
|
|
4368
4510
|
create(accountId: string, params: ConnectorCreateRequest): Promise<ConnectorResponse>;
|
|
4369
4511
|
retrieve(accountId: string, connectorId: string): Promise<ConnectorResponse>;
|
|
4370
4512
|
list(accountId: string): Promise<ConnectorResponse[]>;
|
|
4513
|
+
/**
|
|
4514
|
+
* The profile-scoped connector list. The merchant-wide `list()` is
|
|
4515
|
+
* merchant-gated and 403s for a profile-entity (shop user) JWT; this
|
|
4516
|
+
* variant is scoped server-side to the caller's own profile.
|
|
4517
|
+
*
|
|
4518
|
+
* `GET /account/{accountId}/profile/connectors`
|
|
4519
|
+
*/
|
|
4520
|
+
listByProfile(accountId: string): Promise<ConnectorResponse[]>;
|
|
4521
|
+
/**
|
|
4522
|
+
* The built-in e-Payouts reference catalog — the "Restore defaults" source.
|
|
4523
|
+
* `GET /account/{accountId}/connectors/epayouts/catalog/defaults`
|
|
4524
|
+
*/
|
|
4525
|
+
getEpayoutsCatalogDefaults(accountId: string): Promise<EpayoutsCatalogResponse>;
|
|
4526
|
+
/**
|
|
4527
|
+
* Sweep the merchant's own e-Payouts module and return the rails it
|
|
4528
|
+
* actually has enabled. Server-side this makes many upstream calls, so it
|
|
4529
|
+
* can take several seconds — show progress.
|
|
4530
|
+
*
|
|
4531
|
+
* `POST /account/{accountId}/connectors/{connectorId}/epayouts/catalog/sync`
|
|
4532
|
+
*/
|
|
4533
|
+
syncEpayoutsCatalog(accountId: string, connectorId: string): Promise<EpayoutsCatalogResponse>;
|
|
4371
4534
|
update(accountId: string, connectorId: string, params: ConnectorUpdateRequest): Promise<ConnectorResponse>;
|
|
4372
4535
|
delete(accountId: string, connectorId: string): Promise<ConnectorResponse>;
|
|
4373
4536
|
/**
|
|
@@ -4380,6 +4543,37 @@ declare class Connectors {
|
|
|
4380
4543
|
* the target shop.
|
|
4381
4544
|
*/
|
|
4382
4545
|
clone(accountId: string, connectorId: string, params: ConnectorCloneRequest): Promise<ConnectorResponse>;
|
|
4546
|
+
/**
|
|
4547
|
+
* Run the configuration checks for a vault (VGS) connector account:
|
|
4548
|
+
* credential validity, write-only Collect scope, reachability, environment
|
|
4549
|
+
* coherence, route coverage. Read-only but not cheap — it decrypts the
|
|
4550
|
+
* vault's management credential and talks to VGS.
|
|
4551
|
+
*
|
|
4552
|
+
* `POST /account/{accountId}/connectors/{connectorId}/vault/verify`
|
|
4553
|
+
*/
|
|
4554
|
+
verifyVault(accountId: string, connectorId: string, params: VaultVerifyRequest): Promise<VaultVerificationResponse>;
|
|
4555
|
+
/**
|
|
4556
|
+
* Compute the route document the vault SHOULD have and diff it against
|
|
4557
|
+
* what exists, without writing anything. The returned fingerprints must be
|
|
4558
|
+
* echoed byte for byte on {@link Connectors.applyVaultRoutes}.
|
|
4559
|
+
*
|
|
4560
|
+
* A router without these endpoints answers 404 — render that as "this
|
|
4561
|
+
* build cannot configure routes", never as "there is nothing to change".
|
|
4562
|
+
*
|
|
4563
|
+
* `POST /account/{accountId}/connectors/{connectorId}/vault/routes/preview`
|
|
4564
|
+
*/
|
|
4565
|
+
previewVaultRoutes(accountId: string, connectorId: string, params: VaultRoutesPreviewRequest): Promise<VaultRoutesPreviewResponse>;
|
|
4566
|
+
/**
|
|
4567
|
+
* Write the routes the merchant just previewed. Both fingerprints come
|
|
4568
|
+
* from the preview and are opaque: `expected_current_fingerprint` says the
|
|
4569
|
+
* vault has not moved (`null` = "the preview found no routes" and is sent
|
|
4570
|
+
* as `null`, never omitted), `expected_desired_fingerprint` says the
|
|
4571
|
+
* document is still the one on screen. A 409 (`DE_04`) means the vault
|
|
4572
|
+
* changed since the preview — nothing was written; preview again.
|
|
4573
|
+
*
|
|
4574
|
+
* `POST /account/{accountId}/connectors/{connectorId}/vault/routes/apply`
|
|
4575
|
+
*/
|
|
4576
|
+
applyVaultRoutes(accountId: string, connectorId: string, params: VaultRoutesApplyRequest): Promise<VaultRoutesApplyResponse>;
|
|
4383
4577
|
/** Verify connector credentials. `POST /account/connectors/verify` */
|
|
4384
4578
|
verify(params: Record<string, unknown>): Promise<Record<string, unknown>>;
|
|
4385
4579
|
/**
|
|
@@ -5870,6 +6064,22 @@ declare class Users {
|
|
|
5870
6064
|
revokeSession(sessionId: string): Promise<UserSessionRevokeResponse>;
|
|
5871
6065
|
getDetails(): Promise<UserResponse>;
|
|
5872
6066
|
update(params: UpdateUserDetailsRequest): Promise<UserResponse>;
|
|
6067
|
+
/**
|
|
6068
|
+
* RFC 7396 merge-patch the caller's own user-scoped metadata bucket.
|
|
6069
|
+
* Returns the full user details, so callers can refresh their context
|
|
6070
|
+
* without a second fetch.
|
|
6071
|
+
*
|
|
6072
|
+
* `PATCH /user/metadata`
|
|
6073
|
+
*/
|
|
6074
|
+
updateMetadata(params: UpdateMetadataRequest): Promise<UserResponse>;
|
|
6075
|
+
/**
|
|
6076
|
+
* RFC 7396 merge-patch the merchant-scoped metadata bucket shared by
|
|
6077
|
+
* every dashboard user of the merchant. Same response contract as
|
|
6078
|
+
* {@link Users.updateMetadata}.
|
|
6079
|
+
*
|
|
6080
|
+
* `PATCH /user/merchant/metadata`
|
|
6081
|
+
*/
|
|
6082
|
+
updateMerchantMetadata(params: UpdateMetadataRequest): Promise<UserResponse>;
|
|
5873
6083
|
/**
|
|
5874
6084
|
* Permanently delete the caller's account. Requires a fresh password
|
|
5875
6085
|
* (and a current 6-digit TOTP code if the user has TOTP enrolled). On
|
|
@@ -7600,4 +7810,4 @@ declare function focusedCheckoutUrl(params: FocusedCheckoutUrlParams): string;
|
|
|
7600
7810
|
declare const CHECKOUT_EVENT_KINDS: readonly ["native_pane_selected", "native_pane_tab_opened", "native_pane_tab_blocked", "native_pane_abandoned", "native_pane_returned"];
|
|
7601
7811
|
type CheckoutEventKind = (typeof CHECKOUT_EVENT_KINDS)[number];
|
|
7602
7812
|
|
|
7603
|
-
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 AnalyticsChild, type AnalyticsConnectorDay, type AnalyticsConnectorSeries, AnalyticsDashboard, type AnalyticsDayBucket, type AnalyticsMethodSlice, 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, 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, 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 CancelSubscriptionRequest, type CancelSubscriptionResponse, type CaptureMethod, type CardDetail, type CardDetailFromLocker, type CardNetworkTypes, Cards, type ChangePasswordRequest, type CheckoutBranding, type CheckoutBrandingUpdate, type CheckoutCustomField, type CheckoutEventKind, CheckoutSession, type CheckoutSessionOptions, type ConditionNode, type ConfirmSubscriptionPaymentDetails, type ConfirmSubscriptionRequest, type ConfirmSubscriptionResponse, type Connector, type ConnectorCloneRequest, type ConnectorCreateRequest, type ConnectorListResponse, type ConnectorOwnership, type ConnectorResponse, 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 DeleteAccountRequest, type DeleteUserRoleRequest, Delopay, DelopayAuthenticationError, DelopayError, type DelopayLogger, type DelopayOptions, type DisputeEvidenceBlock, type DisputeEvidenceRequest, type DisputeEvidenceType, type DisputeListParams, type DisputeResponse, type DisputeStage, type DisputeStatus, type EncodedBranding, type EpayoutsMethod, type EpayoutsMethodsResponse, 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 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 GetSubscriptionItemsParams, type GetSubscriptionItemsResponse, type GlobalSearchRequest, type GroupNode, type ImpersonateEmployeeRequest, type IntentStatus, type InviteUsersRequest, type InviteUsersResponse, type InvoiceStatus, type LabelStyle, type LayoutStyle, type LeafNode, type LedgerEntry, type LedgerListParams, type LedgerResponse, type LimitedOperation, type LinkedRoutingConfigRetrieveResponse, type ListInvitableRolesParams, type ListUsersInLineageParams, type LoginHistoryEntry, type LoginHistoryParams, type LoginHistoryResponse, type LogoShape, type LogoSize, type MandateListParams, type MandateResponse, type MandateRevokedResponse, type MandateStatus, type MandateType, type MerchantAccountCreateRequest, type MerchantAccountResponse, type MerchantAccountType, type MerchantAccountUpdateRequest, type MerchantOverviewResponse, type MerchantOverviewStat, type MerchantRoutingAlgorithm, type MethodSurcharge, type MinimalRoleInfo, NATIVE_PANES_MAX, NATIVE_PANE_CATEGORY_KEYS, NATIVE_PANE_ICON_KEYS, type NativePaneMethodInfo, type NativePaneOpenTarget, type NativePaneRail, type NativePaneView, type NativePaneVisibility, type NonPillRadius, type OperationLimitOnExceeded, type OperationLimitRule, type OperationLimitRuleDeleteResponse, type OperationLimitRuleListParams, type OperationLimitScope, type OperationLimitSettings, type OperationLimitWindowMode, OperationLimits, type OverrideAction, type OverrideScope, 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 PerMethodSurchargeItem, type PermissionScope, type PhoneDetails, type PhoneOtpRequest, type PhoneOtpResponse, type PhoneOtpVerifyRequest, type PhoneOtpVerifyResponse, type PlatformFeeKind, type PlatformFeeOutput, type PlatformFeeProgram, type PlatformFeeRule, type PlatformFeeRuleInput, type PlatformFeeRuleOutput, type PlatformFeeRuleRecord, type PlatformFeeRuleRequest, type PollStatus, type PollStatusResponse, 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, type RoutableConnectorChoice, type RoutingActivatePayload, type RoutingConfigCreateRequest, type RoutingConfigResponse, type RoutingDeactivateRequest, type RoutingDictionary, type RoutingDictionaryRecord, type RuleConnectorSelection, STRIPE_NATIVE_PANE_METHODS, Search, type SearchGroupResponse, type SearchIndex, type SearchStatus, Settlement, type SettlementBackfillRequest, type SettlementBackfillResponse, type SettlementBucket, type SettlementCurrentParams, type SettlementCurrentResponse, type SettlementLine, type SettlementLineListParams, type SettlementLineListResponse, type SettlementOverviewParams, type SettlementOverviewResponse, type SettlementPayoutStatus, type SettlementStatementListParams, type SettlementStatementListResponse, type ShopCreateRequest, type ShopFeeConfigEntry, type ShopFeeConfigParams, type ShopFeeConfigResponse, type ShopResponse, 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 SubscriptionEstimateParams, type SubscriptionEstimateResponse, type SubscriptionInvoice, type SubscriptionItem, type SubscriptionItemPrice, type SubscriptionItemType, type SubscriptionLineItem, type SubscriptionListParams, type SubscriptionPaymentData, type SubscriptionPaymentDetails, type SubscriptionPaymentLink, type SubscriptionPaymentLookupRequest, type SubscriptionPaymentLookupResponse, type SubscriptionPeriodUnit, type SubscriptionResponse, type SubscriptionStatus, Subscriptions, type SummaryPosition, type SurchargeDetailsResponse, type SurchargeResponse, type SurchargeRuleRequest, type SurchargeRuleResponse, type SurfaceStyle, type SwitchMerchantRequest, type SwitchProfileRequest, type Terminate2faQueryParams, type ThreeDSDecision, type ThreeDsRuleExecuteRequest, type ThreeDsRuleResponse, type TierSummary, type TokenPurpose, type TokenResponse, type TopupRequest, type TopupResponse, type TotpResponse, type TransactionType, type TrustBadge, type UpdateOperationLimitSettingsRequest, type UpdateSubscriptionRequest, type UpdateUserDetailsRequest, type UpdateUserRoleRequest, type UpsertOperationLimitRuleRequest, type UserInLineage, type UserResponse, type UserSessionEntry, type UserSessionListResponse, type UserSessionRevokeResponse, type VaultCollectSessionResponse, type VaultPaymentMethodRequest, type VaultPaymentMethodResponse, type VerifyTotpRequest, type WebhookDeliveryAttempt, type WebhookEvent, type WebhookRegistrationEnvironment, Webhooks, allOf, anyOf, applyBrandingVariables, buildBrandingExport, buttonPadValue, cloneBranding, cloneCustomField, cloneNativePane, customFieldContextFromMetadata, customFieldIsTextLike, customFieldOperatorTakesValue, customFieldOptionLabel, customFieldText, decodeBadges, decodeBranding, decodeCustomFields, decodeNativePanes, defaultBranding, defaultCustomFieldVisibility, defaultNativePane, defaultOperatorForSource, encodeBadges, encodeBranding, encodeCustomFields, encodeNativePanes, evaluateCustomFieldCondition, evaluateCustomFieldVisibility, feeProgram, focusedCheckoutUrl, fontStack, fontWeightValue, inputPadValue, isCheckboxChecked, isDarkSurface, isHexColor, leaf, logoDimensions, nativePaneMethodInfo, parseCustomFieldsLoose, parseImportedBranding, programToTree, radiusValue, ruleMatchToTree, sanitizeCustomCss, shadowFor, surfacePadValue, verticalGapValue, visibleCustomFields };
|
|
7813
|
+
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 AnalyticsChild, type AnalyticsConnectorDay, type AnalyticsConnectorSeries, AnalyticsDashboard, type AnalyticsDayBucket, type AnalyticsMethodSlice, 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, 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, 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 CancelSubscriptionRequest, type CancelSubscriptionResponse, type CaptureMethod, type CardDetail, type CardDetailFromLocker, type CardNetworkTypes, Cards, type ChangePasswordRequest, type CheckoutBranding, type CheckoutBrandingUpdate, type CheckoutCustomField, type CheckoutEventKind, CheckoutSession, type CheckoutSessionOptions, type ConditionNode, type ConfirmSubscriptionPaymentDetails, type ConfirmSubscriptionRequest, type ConfirmSubscriptionResponse, type Connector, type ConnectorCloneRequest, type ConnectorCreateRequest, type ConnectorListResponse, type ConnectorOwnership, type ConnectorResponse, 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 DeleteAccountRequest, type DeleteUserRoleRequest, Delopay, DelopayAuthenticationError, DelopayError, type DelopayLogger, type DelopayOptions, type DisputeEvidenceBlock, type DisputeEvidenceRequest, type DisputeEvidenceType, type DisputeListParams, type DisputeResponse, type DisputeStage, type DisputeStatus, type EncodedBranding, 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 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 GetSubscriptionItemsParams, type GetSubscriptionItemsResponse, type GlobalSearchRequest, type GroupNode, type ImpersonateEmployeeRequest, type IntentStatus, type InviteUsersRequest, type InviteUsersResponse, type InvoiceStatus, type LabelStyle, type LayoutStyle, type LeafNode, type LedgerEntry, type LedgerListParams, type LedgerResponse, type LimitedOperation, type LinkedRoutingConfigRetrieveResponse, type ListInvitableRolesParams, type ListUsersInLineageParams, type LoginHistoryEntry, type LoginHistoryParams, type LoginHistoryResponse, type LogoShape, type LogoSize, type MandateListParams, type MandateResponse, type MandateRevokedResponse, type MandateStatus, type MandateType, type MerchantAccountCreateRequest, type MerchantAccountResponse, type MerchantAccountType, type MerchantAccountUpdateRequest, type MerchantOverviewResponse, type MerchantOverviewStat, type MerchantRoutingAlgorithm, type MethodSurcharge, type MinimalRoleInfo, NATIVE_PANES_MAX, NATIVE_PANE_CATEGORY_KEYS, NATIVE_PANE_ICON_KEYS, type NativePaneMethodInfo, type NativePaneOpenTarget, type NativePaneRail, type NativePaneView, type NativePaneVisibility, type NonPillRadius, type OperationLimitOnExceeded, type OperationLimitRule, type OperationLimitRuleDeleteResponse, type OperationLimitRuleListParams, type OperationLimitScope, type OperationLimitSettings, type OperationLimitWindowMode, OperationLimits, type OverrideAction, type OverrideScope, 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 PerMethodSurchargeItem, type PermissionScope, type PhoneDetails, type PhoneOtpRequest, type PhoneOtpResponse, type PhoneOtpVerifyRequest, type PhoneOtpVerifyResponse, type PlatformFeeKind, type PlatformFeeOutput, type PlatformFeeProgram, type PlatformFeeRule, type PlatformFeeRuleInput, type PlatformFeeRuleOutput, type PlatformFeeRuleRecord, type PlatformFeeRuleRequest, type PollStatus, type PollStatusResponse, 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, type RoutableConnectorChoice, type RoutingActivatePayload, type RoutingConfigCreateRequest, type RoutingConfigResponse, type RoutingDeactivateRequest, type RoutingDictionary, type RoutingDictionaryRecord, type RuleConnectorSelection, STRIPE_NATIVE_PANE_METHODS, Search, type SearchGroupResponse, type SearchIndex, type SearchStatus, Settlement, type SettlementBackfillRequest, type SettlementBackfillResponse, type SettlementBucket, type SettlementCurrentParams, type SettlementCurrentResponse, type SettlementLine, type SettlementLineListParams, type SettlementLineListResponse, type SettlementOverviewParams, type SettlementOverviewResponse, type SettlementPayoutStatus, type SettlementStatementListParams, type SettlementStatementListResponse, type ShopCreateRequest, type ShopFeeConfigEntry, type ShopFeeConfigParams, type ShopFeeConfigResponse, type ShopResponse, 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 SubscriptionEstimateParams, type SubscriptionEstimateResponse, type SubscriptionInvoice, type SubscriptionItem, type SubscriptionItemPrice, type SubscriptionItemType, type SubscriptionLineItem, type SubscriptionListParams, type SubscriptionPaymentData, type SubscriptionPaymentDetails, type SubscriptionPaymentLink, type SubscriptionPaymentLookupRequest, type SubscriptionPaymentLookupResponse, type SubscriptionPeriodUnit, type SubscriptionResponse, type SubscriptionStatus, Subscriptions, type SummaryPosition, type SurchargeDetailsResponse, type SurchargeResponse, type SurchargeRuleRequest, type SurchargeRuleResponse, type SurfaceStyle, type SwitchMerchantRequest, type SwitchProfileRequest, type Terminate2faQueryParams, type ThreeDSDecision, type ThreeDsRuleExecuteRequest, type ThreeDsRuleResponse, type TierSummary, type TokenPurpose, type TokenResponse, type TopupRequest, type TopupResponse, type TotpResponse, type TransactionType, type TrustBadge, type UpdateMetadataRequest, type UpdateOperationLimitSettingsRequest, type UpdateSubscriptionRequest, type UpdateUserDetailsRequest, type UpdateUserRoleRequest, type UpsertOperationLimitRuleRequest, 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, type WebhookDeliveryAttempt, type WebhookEvent, type WebhookRegistrationEnvironment, Webhooks, allOf, anyOf, applyBrandingVariables, buildBrandingExport, buttonPadValue, cloneBranding, cloneCustomField, cloneNativePane, customFieldContextFromMetadata, customFieldIsTextLike, customFieldOperatorTakesValue, customFieldOptionLabel, customFieldText, decodeBadges, decodeBranding, decodeCustomFields, decodeNativePanes, defaultBranding, defaultCustomFieldVisibility, defaultNativePane, defaultOperatorForSource, encodeBadges, encodeBranding, encodeCustomFields, encodeNativePanes, evaluateCustomFieldCondition, evaluateCustomFieldVisibility, feeProgram, focusedCheckoutUrl, fontStack, fontWeightValue, inputPadValue, isCheckboxChecked, isDarkSurface, isHexColor, leaf, logoDimensions, nativePaneMethodInfo, parseCustomFieldsLoose, parseImportedBranding, programToTree, radiusValue, ruleMatchToTree, sanitizeCustomCss, shadowFor, surfacePadValue, verticalGapValue, visibleCustomFields };
|