@delopay/sdk 0.98.0 → 0.100.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-JBBUTXXY.js → chunk-HK4S2SQB.js} +67 -1
- package/dist/chunk-HK4S2SQB.js.map +1 -0
- package/dist/index.cjs +66 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +210 -5
- package/dist/index.d.ts +210 -5
- package/dist/index.js +1 -1
- package/dist/internal.cjs +86 -0
- package/dist/internal.cjs.map +1 -1
- package/dist/internal.d.cts +15 -3
- package/dist/internal.d.ts +15 -3
- package/dist/internal.js +21 -1
- package/dist/internal.js.map +1 -1
- package/package.json +18 -17
- package/dist/chunk-JBBUTXXY.js.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -3939,6 +3939,49 @@ interface ParentGroupInfo {
|
|
|
3939
3939
|
resources: string[];
|
|
3940
3940
|
scopes: PermissionScope[];
|
|
3941
3941
|
}
|
|
3942
|
+
/** One connector account named by a role's grant. */
|
|
3943
|
+
interface RoleConnectorGrantEntry {
|
|
3944
|
+
/** The connector **account** id (`mca_…`), never a connector name. */
|
|
3945
|
+
merchant_connector_id: string;
|
|
3946
|
+
/** Who added this row. */
|
|
3947
|
+
created_by: string;
|
|
3948
|
+
/** Free-text note recorded when the row was added. */
|
|
3949
|
+
reason?: string | null;
|
|
3950
|
+
}
|
|
3951
|
+
/**
|
|
3952
|
+
* A role's connector grant, from `GET /user/role/{roleId}/connectors`.
|
|
3953
|
+
*
|
|
3954
|
+
* **Read `restricted` before `connectors`.** An empty `connectors` list is
|
|
3955
|
+
* ambiguous on its own — "unrestricted" and "sees nothing" are opposites — so
|
|
3956
|
+
* the backend reports which one it is explicitly and callers must not infer it
|
|
3957
|
+
* from the array length.
|
|
3958
|
+
*
|
|
3959
|
+
* `restricted: false` means the role holds no grant and sees whatever its
|
|
3960
|
+
* entity and profile scope already allowed. That is every role that has not
|
|
3961
|
+
* been given a grant, so it is the normal case, not an edge case.
|
|
3962
|
+
*
|
|
3963
|
+
* A connector deleted after being granted leaves its id here, where it matches
|
|
3964
|
+
* nothing at enforcement time and is therefore invisible. It is reported so an
|
|
3965
|
+
* operator can see exactly what is stored and clear it.
|
|
3966
|
+
*/
|
|
3967
|
+
interface RoleConnectorGrant {
|
|
3968
|
+
role_id: string;
|
|
3969
|
+
restricted: boolean;
|
|
3970
|
+
connectors: RoleConnectorGrantEntry[];
|
|
3971
|
+
}
|
|
3972
|
+
/** Body of `PUT /user/role/{roleId}/connectors`. */
|
|
3973
|
+
interface UpdateRoleConnectorGrantParams {
|
|
3974
|
+
/**
|
|
3975
|
+
* The complete set the role may see, **replacing** whatever is stored.
|
|
3976
|
+
*
|
|
3977
|
+
* An empty array clears the grant and returns the role to unrestricted. It
|
|
3978
|
+
* does *not* mean "this role sees no connectors" — that is expressed by
|
|
3979
|
+
* removing the role's connector permission group, not here.
|
|
3980
|
+
*/
|
|
3981
|
+
merchant_connector_ids: string[];
|
|
3982
|
+
/** Free-text note recorded on each row this edit adds. */
|
|
3983
|
+
reason?: string;
|
|
3984
|
+
}
|
|
3942
3985
|
/**
|
|
3943
3986
|
* Query for the scoped analytics endpoint. The optional ids select the drill
|
|
3944
3987
|
* level. For the merchant dashboard (`analytics.scope`) `merchant_id` is
|
|
@@ -4178,6 +4221,10 @@ interface DeviceAnalyticsTotals {
|
|
|
4178
4221
|
mobile_share: number;
|
|
4179
4222
|
/** Share of raw observations that were automated and therefore excluded. */
|
|
4180
4223
|
automated_share: number;
|
|
4224
|
+
/** Distinct buyer devices observed (sessions without a device id are not counted). */
|
|
4225
|
+
unique_devices: number;
|
|
4226
|
+
/** Share of those devices with >=1 successful payment — each device counts once. Null when no session carried a device id. */
|
|
4227
|
+
device_success_rate?: number | null;
|
|
4181
4228
|
}
|
|
4182
4229
|
/** One series bucket of overall session/paid counts (KPI sparklines). */
|
|
4183
4230
|
interface DeviceSessionBucket {
|
|
@@ -4291,6 +4338,10 @@ interface DevicesAnalyticsResponse {
|
|
|
4291
4338
|
children: DeviceAnalyticsChild[];
|
|
4292
4339
|
caveats: ClientAnalyticsCaveat[];
|
|
4293
4340
|
filters: ClientAnalyticsFilters;
|
|
4341
|
+
/** The previous window's totals, when `sections` includes `previous`. */
|
|
4342
|
+
previous_totals?: DeviceAnalyticsTotals | null;
|
|
4343
|
+
/** The previous window's time-to-pay stats, for the median delta. */
|
|
4344
|
+
previous_time_to_pay?: TimeToPayStats | null;
|
|
4294
4345
|
}
|
|
4295
4346
|
/** Window totals for the geo dashboard's KPI row. */
|
|
4296
4347
|
interface GeoAnalyticsTotals {
|
|
@@ -4311,6 +4362,10 @@ interface GeoAnalyticsTotals {
|
|
|
4311
4362
|
* countries. `null` when no shop in scope has a home country.
|
|
4312
4363
|
*/
|
|
4313
4364
|
intl_volume_usd?: number | null;
|
|
4365
|
+
/** Distinct buyer devices observed (sessions without a device id are not counted). */
|
|
4366
|
+
unique_devices: number;
|
|
4367
|
+
/** Share of those devices with >=1 successful payment — each device counts once. Null when no session carried a device id. */
|
|
4368
|
+
device_success_rate?: number | null;
|
|
4314
4369
|
}
|
|
4315
4370
|
/** One country's window totals in the selected mode. */
|
|
4316
4371
|
interface GeoCountrySlice {
|
|
@@ -4380,6 +4435,88 @@ interface GeoAnalyticsResponse {
|
|
|
4380
4435
|
children: GeoAnalyticsChild[];
|
|
4381
4436
|
caveats: ClientAnalyticsCaveat[];
|
|
4382
4437
|
filters: ClientAnalyticsFilters;
|
|
4438
|
+
/** The previous window's totals, when `sections` includes `previous`. */
|
|
4439
|
+
previous_totals?: GeoAnalyticsTotals | null;
|
|
4440
|
+
/** The previous window's session share for THIS window's top country, so the
|
|
4441
|
+
* top-country delta compares one country rather than two ranks. */
|
|
4442
|
+
previous_top_country_share?: number | null;
|
|
4443
|
+
}
|
|
4444
|
+
/** Query for the geo drill-through list: the page's window/scope/filters plus the clicked target. */
|
|
4445
|
+
interface GeoDrillRequest {
|
|
4446
|
+
days?: number | null;
|
|
4447
|
+
start_date?: string | null;
|
|
4448
|
+
end_date?: string | null;
|
|
4449
|
+
merchant_id?: string | null;
|
|
4450
|
+
project_id?: string | null;
|
|
4451
|
+
shop_id?: string | null;
|
|
4452
|
+
test_mode?: boolean | null;
|
|
4453
|
+
/** Which claim the clicked country is matched against: 'ip' (default) or 'billing'. */
|
|
4454
|
+
mode?: string | null;
|
|
4455
|
+
/** Active chip filters, riding along so the drill lists what the charts counted. */
|
|
4456
|
+
country?: string | null;
|
|
4457
|
+
country_source?: string | null;
|
|
4458
|
+
device_class?: string | null;
|
|
4459
|
+
/** Clicked country (ISO alpha-2). */
|
|
4460
|
+
target_country?: string | null;
|
|
4461
|
+
/** Clicked city name (IP claim only). */
|
|
4462
|
+
target_city?: string | null;
|
|
4463
|
+
/** Heatmap cell: ISO day-of-week 1-7 (Mon-Sun). Requires hour. */
|
|
4464
|
+
dow?: number | null;
|
|
4465
|
+
/** Heatmap cell: buyer-local hour 0-23. Requires dow. */
|
|
4466
|
+
hour?: number | null;
|
|
4467
|
+
/** Pagination offset into the newest-first list (page size 50). */
|
|
4468
|
+
offset?: number | null;
|
|
4469
|
+
}
|
|
4470
|
+
/** Query for the device drill-through list: the page's window/scope/filters plus the clicked device target (exactly one of the four). */
|
|
4471
|
+
interface DeviceDrillRequest {
|
|
4472
|
+
days?: number | null;
|
|
4473
|
+
start_date?: string | null;
|
|
4474
|
+
end_date?: string | null;
|
|
4475
|
+
merchant_id?: string | null;
|
|
4476
|
+
project_id?: string | null;
|
|
4477
|
+
shop_id?: string | null;
|
|
4478
|
+
test_mode?: boolean | null;
|
|
4479
|
+
/** Active chip filters, riding along so the drill lists what the charts counted. */
|
|
4480
|
+
country?: string | null;
|
|
4481
|
+
country_source?: string | null;
|
|
4482
|
+
device_class?: string | null;
|
|
4483
|
+
/** Clicked browser family token (chrome, safari, ...). */
|
|
4484
|
+
target_browser?: string | null;
|
|
4485
|
+
/** Clicked platform family token (ios, android, macos, ...). */
|
|
4486
|
+
target_platform?: string | null;
|
|
4487
|
+
/** Clicked device-model label, exactly as listed by the models card. */
|
|
4488
|
+
target_model?: string | null;
|
|
4489
|
+
/** Clicked device class (phone | tablet | desktop | unknown). */
|
|
4490
|
+
target_device_class?: string | null;
|
|
4491
|
+
/** Pagination offset into the newest-first list (page size 50). */
|
|
4492
|
+
offset?: number | null;
|
|
4493
|
+
}
|
|
4494
|
+
/** One payment behind a clicked geo target. */
|
|
4495
|
+
interface DrillPayment {
|
|
4496
|
+
payment_id: string;
|
|
4497
|
+
/** Owning merchant — meaningful on the admin portal's cross-merchant scope. */
|
|
4498
|
+
merchant_id: string;
|
|
4499
|
+
profile_id?: string | null;
|
|
4500
|
+
/** Shop name for the profile, when known to the scope. */
|
|
4501
|
+
shop_name?: string | null;
|
|
4502
|
+
status: string;
|
|
4503
|
+
amount_minor?: number | null;
|
|
4504
|
+
currency?: string | null;
|
|
4505
|
+
/** RFC 3339 UTC. */
|
|
4506
|
+
created_at: string;
|
|
4507
|
+
/** IP-claimed country of the canonical observation. */
|
|
4508
|
+
country?: string | null;
|
|
4509
|
+
/** IP-resolved city, when GeoLite2 had one. */
|
|
4510
|
+
city?: string | null;
|
|
4511
|
+
}
|
|
4512
|
+
/** The geo drill-through list. */
|
|
4513
|
+
interface DrillResponse {
|
|
4514
|
+
enabled: boolean;
|
|
4515
|
+
caveats: ClientAnalyticsCaveat[];
|
|
4516
|
+
/** Newest-first, capped at 50. */
|
|
4517
|
+
payments: DrillPayment[];
|
|
4518
|
+
/** Full match count (may exceed payments.length). */
|
|
4519
|
+
total: number;
|
|
4383
4520
|
}
|
|
4384
4521
|
/** Payout progress of a settlement statement. */
|
|
4385
4522
|
type SettlementPayoutStatus = 'unpaid' | 'partial' | 'paid';
|
|
@@ -6823,13 +6960,29 @@ interface SearchGroupResponse {
|
|
|
6823
6960
|
hits: Record<string, unknown>[];
|
|
6824
6961
|
status: SearchStatus;
|
|
6825
6962
|
}
|
|
6963
|
+
/**
|
|
6964
|
+
* The window a global search covers. The documented wire fields are
|
|
6965
|
+
* `start_time` (required) and `end_time` (optional — omit it for "up to
|
|
6966
|
+
* now"); the server also accepts the camelCase spellings as aliases, which
|
|
6967
|
+
* earlier SDK versions sent, so both are declared and either compiles.
|
|
6968
|
+
* Prefer the snake_case pair: it is what the operation documents.
|
|
6969
|
+
*/
|
|
6970
|
+
type SearchTimeRange = {
|
|
6971
|
+
start_time: string;
|
|
6972
|
+
end_time?: string | null;
|
|
6973
|
+
}
|
|
6974
|
+
/** @deprecated Use `start_time` / `end_time` — the documented wire names. */
|
|
6975
|
+
| {
|
|
6976
|
+
startTime: string;
|
|
6977
|
+
endTime?: string | null;
|
|
6978
|
+
};
|
|
6826
6979
|
interface GlobalSearchRequest {
|
|
6827
6980
|
query: string;
|
|
6828
6981
|
filters?: Record<string, unknown>;
|
|
6829
|
-
|
|
6830
|
-
|
|
6831
|
-
|
|
6832
|
-
|
|
6982
|
+
/** Naive ISO 8601 bounds; `end_time` may be omitted. */
|
|
6983
|
+
timeRange?: SearchTimeRange;
|
|
6984
|
+
/** Wire alias for `timeRange` — the server reads either. */
|
|
6985
|
+
time_range?: SearchTimeRange;
|
|
6833
6986
|
}
|
|
6834
6987
|
/** Global cross-index search. */
|
|
6835
6988
|
declare class Search {
|
|
@@ -7306,6 +7459,39 @@ declare class Users {
|
|
|
7306
7459
|
* `DELETE /user/role/{roleId}`
|
|
7307
7460
|
*/
|
|
7308
7461
|
deleteRole(roleId: string): Promise<Record<string, unknown>>;
|
|
7462
|
+
/**
|
|
7463
|
+
* Read which individual connector accounts a role may see.
|
|
7464
|
+
*
|
|
7465
|
+
* `GET /user/role/{roleId}/connectors`
|
|
7466
|
+
*
|
|
7467
|
+
* **Check `restricted` before reading `connectors`.** An empty list is
|
|
7468
|
+
* ambiguous by itself, so the backend states which case it is: `false` means
|
|
7469
|
+
* the role holds no grant and sees whatever its entity and profile scope
|
|
7470
|
+
* already allowed. Rendering an empty `connectors` array as "this role sees
|
|
7471
|
+
* nothing" inverts the meaning.
|
|
7472
|
+
*
|
|
7473
|
+
* Requires the permission that *edits a role*, not a connector permission.
|
|
7474
|
+
*/
|
|
7475
|
+
getRoleConnectors(roleId: string): Promise<RoleConnectorGrant>;
|
|
7476
|
+
/**
|
|
7477
|
+
* Replace the set of connector accounts a role may see.
|
|
7478
|
+
*
|
|
7479
|
+
* `PUT /user/role/{roleId}/connectors`
|
|
7480
|
+
*
|
|
7481
|
+
* The call **replaces** the whole set rather than adding to it, so send the
|
|
7482
|
+
* complete list every time. An empty `merchant_connector_ids` clears the
|
|
7483
|
+
* grant and returns the role to unrestricted.
|
|
7484
|
+
*
|
|
7485
|
+
* The backend refuses an id that is not a connector account of the caller's
|
|
7486
|
+
* own merchant, an `Organization`-scoped role (a connector account belongs to
|
|
7487
|
+
* exactly one merchant, so an org-spanning role cannot hold one coherently),
|
|
7488
|
+
* and any predefined role (one static entry shared by every tenant).
|
|
7489
|
+
*
|
|
7490
|
+
* Editing a grant invalidates the role cache and blacklists tokens minted
|
|
7491
|
+
* before the edit, so **users holding this role must sign in again**. Worth
|
|
7492
|
+
* saying in the UI before the save, not after.
|
|
7493
|
+
*/
|
|
7494
|
+
updateRoleConnectors(roleId: string, params: UpdateRoleConnectorGrantParams): Promise<RoleConnectorGrant>;
|
|
7309
7495
|
}
|
|
7310
7496
|
|
|
7311
7497
|
declare class Verification {
|
|
@@ -7347,6 +7533,25 @@ declare class Analytics {
|
|
|
7347
7533
|
* `GET /analytics/geo`
|
|
7348
7534
|
*/
|
|
7349
7535
|
geo(params?: ClientAnalyticsRequest): Promise<GeoAnalyticsResponse>;
|
|
7536
|
+
/**
|
|
7537
|
+
* The recent payments behind one clicked geo target: a map country (in the
|
|
7538
|
+
* active claim mode), optionally narrowed to an IP-resolved city, or one
|
|
7539
|
+
* buyer-local heatmap cell (`dow` + `hour`, paid sessions only). Same
|
|
7540
|
+
* window/scope/filter and gating contract as `geo`; capped at 50 rows,
|
|
7541
|
+
* newest first, with the full match count alongside.
|
|
7542
|
+
* `GET /analytics/geo/transactions`
|
|
7543
|
+
*/
|
|
7544
|
+
geoTransactions(params: GeoDrillRequest): Promise<DrillResponse>;
|
|
7545
|
+
/**
|
|
7546
|
+
* The recent payments behind one clicked device target: exactly one of a
|
|
7547
|
+
* browser family, a platform family, an identified device-model label, or
|
|
7548
|
+
* a device class. Family/model targets are resolved server-side with the
|
|
7549
|
+
* same classifiers the cards use. Same window/scope/filter and gating
|
|
7550
|
+
* contract as `devices`; 50 rows per page (`offset` for the next page),
|
|
7551
|
+
* newest first, with the full match count alongside.
|
|
7552
|
+
* `GET /analytics/devices/transactions`
|
|
7553
|
+
*/
|
|
7554
|
+
deviceTransactions(params: DeviceDrillRequest): Promise<DrillResponse>;
|
|
7350
7555
|
/** Global search. `POST /analytics/search` */
|
|
7351
7556
|
search(params: Record<string, unknown>): Promise<Record<string, unknown>>;
|
|
7352
7557
|
/** Domain-specific search. `POST /analytics/search/{domain}` */
|
|
@@ -8930,4 +9135,4 @@ declare function focusedCheckoutUrl(params: FocusedCheckoutUrlParams): string;
|
|
|
8930
9135
|
declare const CHECKOUT_EVENT_KINDS: readonly ["native_pane_selected", "native_pane_tab_opened", "native_pane_tab_blocked", "native_pane_abandoned", "native_pane_returned"];
|
|
8931
9136
|
type CheckoutEventKind = (typeof CHECKOUT_EVENT_KINDS)[number];
|
|
8932
9137
|
|
|
8933
|
-
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 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 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 DeviceAnalyticsChild, type DeviceAnalyticsTotals, type DeviceBrowserSlice, type DeviceChannelBucket, type DeviceClassSlice, type DeviceModelSlice, type DevicePlatformSlice, type DeviceSessionBucket, type DevicesAnalyticsResponse, 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 GeoAnalyticsChild, type GeoAnalyticsResponse, type GeoAnalyticsTotals, type GeoCitySlice, type GeoCountrySlice, type GeoLanguageSlice, 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 ProcessorCostSource, 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 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 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 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 TimeToPayStats, 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 WebhookDeliveryTerminalReason, type WebhookDetails, type WebhookEvent, type WebhookRefundStatus, 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 };
|
|
9138
|
+
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 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 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 DeviceAnalyticsChild, type DeviceAnalyticsTotals, type DeviceBrowserSlice, type DeviceChannelBucket, type DeviceClassSlice, type DeviceDrillRequest, type DeviceModelSlice, type DevicePlatformSlice, type DeviceSessionBucket, type DevicesAnalyticsResponse, type DisputeEvidenceBlock, type DisputeEvidenceRequest, type DisputeEvidenceType, type DisputeListParams, type DisputeResponse, type DisputeStage, type DisputeStatus, type DrillPayment, type DrillResponse, 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 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 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 ProcessorCostSource, 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 RoleConnectorGrant, type RoleConnectorGrantEntry, 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, type SearchTimeRange, Settlement, type SettlementBackfillRequest, type SettlementBackfillResponse, type SettlementBucket, 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 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 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 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 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 WebhookDeliveryTerminalReason, type WebhookDetails, type WebhookEvent, type WebhookRefundStatus, 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 };
|