@delopay/sdk 0.101.0 → 0.103.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-NLUEZQZF.js → chunk-Q2PPDRUI.js} +57 -1
- package/dist/chunk-Q2PPDRUI.js.map +1 -0
- package/dist/index.cjs +56 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +295 -1
- package/dist/index.d.ts +295 -1
- package/dist/index.js +1 -1
- package/dist/internal.cjs +56 -0
- package/dist/internal.cjs.map +1 -1
- package/dist/internal.d.cts +23 -2
- package/dist/internal.d.ts +23 -2
- package/dist/internal.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-NLUEZQZF.js.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -1550,6 +1550,20 @@ interface BillingProfileResponse {
|
|
|
1550
1550
|
* exempt from automatic AND manual suspension until the flag is cleared.
|
|
1551
1551
|
*/
|
|
1552
1552
|
is_trusted: boolean;
|
|
1553
|
+
/**
|
|
1554
|
+
* When the trusted shield stops being honoured. Absent means it never
|
|
1555
|
+
* expires, which is what every profile did before expiry existed.
|
|
1556
|
+
*/
|
|
1557
|
+
trusted_until?: string | null;
|
|
1558
|
+
/**
|
|
1559
|
+
* Whether the trusted shield applies **right now** — `is_trusted` and not
|
|
1560
|
+
* past `trusted_until`. Derived server-side and read-only.
|
|
1561
|
+
*
|
|
1562
|
+
* Read this rather than `is_trusted` when deciding whether trust is in
|
|
1563
|
+
* force: `is_trusted` is the raw stored flag and says nothing about expiry,
|
|
1564
|
+
* so gating on it alone treats an expired shield as still active.
|
|
1565
|
+
*/
|
|
1566
|
+
trusted_effective: boolean;
|
|
1553
1567
|
/**
|
|
1554
1568
|
* What caused the current suspension: `auto_recharge` or `admin`. Absent
|
|
1555
1569
|
* when the merchant is not suspended. An `admin` suspension is sticky — a
|
|
@@ -2031,6 +2045,18 @@ interface RoutingConfigCreateRequest {
|
|
|
2031
2045
|
profile_id?: string | null;
|
|
2032
2046
|
transaction_type?: TransactionType | null;
|
|
2033
2047
|
}
|
|
2048
|
+
/**
|
|
2049
|
+
* Body for `PUT /routing/{id}` — partial edit of a static routing config.
|
|
2050
|
+
* Every field is optional; only the ones present are changed.
|
|
2051
|
+
* `algorithm` is a wholesale rule replacement (same shape as create), not a
|
|
2052
|
+
* partial merge — omit it for a rename/description-only edit.
|
|
2053
|
+
*/
|
|
2054
|
+
interface RoutingConfigUpdateRequest {
|
|
2055
|
+
name?: string | null;
|
|
2056
|
+
description?: string | null;
|
|
2057
|
+
/** Replacement rule. Validated against the shop exactly as at create. */
|
|
2058
|
+
algorithm?: StaticRoutingAlgorithm | Record<string, unknown> | null;
|
|
2059
|
+
}
|
|
2034
2060
|
/** Body for `POST /routing/{id}/activate`. */
|
|
2035
2061
|
interface RoutingActivatePayload {
|
|
2036
2062
|
transaction_type?: TransactionType | null;
|
|
@@ -2954,10 +2980,14 @@ interface ListUsersInLineageParams {
|
|
|
2954
2980
|
*/
|
|
2955
2981
|
profile_id?: string;
|
|
2956
2982
|
}
|
|
2983
|
+
/** The scope level a role or resource belongs to. */
|
|
2984
|
+
type EntityType = 'tenant' | 'organization' | 'merchant' | 'profile';
|
|
2957
2985
|
/** A role a member holds, as returned by `GET /user/employees/list`. */
|
|
2958
2986
|
interface MinimalRoleInfo {
|
|
2959
2987
|
role_id: string;
|
|
2960
2988
|
role_name: string;
|
|
2989
|
+
/** The scope the role is defined at. */
|
|
2990
|
+
entity_type: EntityType;
|
|
2961
2991
|
}
|
|
2962
2992
|
/** One member of the current lineage. `GET /user/employees/list` */
|
|
2963
2993
|
interface UserInLineage {
|
|
@@ -3275,6 +3305,10 @@ interface AuthenticationResponse {
|
|
|
3275
3305
|
authentication_connector?: string | null;
|
|
3276
3306
|
force_3ds_challenge?: boolean | null;
|
|
3277
3307
|
return_url?: string | null;
|
|
3308
|
+
/** Connector error code, when the authentication call itself failed. */
|
|
3309
|
+
error_code?: string | null;
|
|
3310
|
+
/** Connector error message, when the authentication call itself failed. */
|
|
3311
|
+
error_message?: string | null;
|
|
3278
3312
|
[key: string]: unknown;
|
|
3279
3313
|
}
|
|
3280
3314
|
interface StripeConnectAccountRequest {
|
|
@@ -4791,6 +4825,22 @@ interface SettlementLineWithProcessorCost extends SettlementLineBase {
|
|
|
4791
4825
|
processor_cost_source: 'reported' | 'estimated';
|
|
4792
4826
|
processor_cost_amount: number;
|
|
4793
4827
|
processor_cost_currency: string;
|
|
4828
|
+
/**
|
|
4829
|
+
* Decimal places `processor_cost_amount` is expressed in:
|
|
4830
|
+
* `processor_cost_amount / 10 ** processor_cost_exponent` units of
|
|
4831
|
+
* `processor_cost_currency`.
|
|
4832
|
+
*
|
|
4833
|
+
* Required alongside the amount, not optional, because the figure does not
|
|
4834
|
+
* decode without it and the currency does not imply it — a rail can report
|
|
4835
|
+
* in an asset whose precision is not a property of its ticker (TRX is 10^6,
|
|
4836
|
+
* and the same ticker on another network can differ). Reading a crypto
|
|
4837
|
+
* rail's 10^8 figure through a card rail's 10^2 overstates it by a
|
|
4838
|
+
* millionfold, so the type refuses to hand over an amount without it.
|
|
4839
|
+
*
|
|
4840
|
+
* The server derives all four cost fields from one source and redacts them
|
|
4841
|
+
* as one, so an amount never arrives without its exponent.
|
|
4842
|
+
*/
|
|
4843
|
+
processor_cost_exponent: number;
|
|
4794
4844
|
}
|
|
4795
4845
|
/**
|
|
4796
4846
|
* A line with no processor-cost figure — which is not a zero.
|
|
@@ -4806,6 +4856,7 @@ interface SettlementLineWithoutProcessorCost extends SettlementLineBase {
|
|
|
4806
4856
|
processor_cost_source?: 'unavailable' | null;
|
|
4807
4857
|
processor_cost_amount?: never;
|
|
4808
4858
|
processor_cost_currency?: never;
|
|
4859
|
+
processor_cost_exponent?: never;
|
|
4809
4860
|
}
|
|
4810
4861
|
/**
|
|
4811
4862
|
* One settled payment attempt. Amounts are native minor units of `currency`.
|
|
@@ -4820,6 +4871,205 @@ interface SettlementLineListResponse {
|
|
|
4820
4871
|
lines: SettlementLine[];
|
|
4821
4872
|
total_count: number;
|
|
4822
4873
|
}
|
|
4874
|
+
/**
|
|
4875
|
+
* How much weight {@link SettlementCostResponse.margin_usd} can carry.
|
|
4876
|
+
*
|
|
4877
|
+
* Three states, not a boolean, because gaps pull in two directions. Missing
|
|
4878
|
+
* cost pushes the margin up; a missing *revenue* bucket — a transaction
|
|
4879
|
+
* currency with no USD rate, dropped from gross, hosting fees and the
|
|
4880
|
+
* platform fee together — pushes it down, and by an amount that may be larger
|
|
4881
|
+
* or smaller than the cost missing with it.
|
|
4882
|
+
*
|
|
4883
|
+
* - `exact` — nothing is missing on either side.
|
|
4884
|
+
* - `upper_bound` — cost-side gaps understate cost and so overstate what is
|
|
4885
|
+
* left. The real figure is `margin_usd` **or lower**; never present it as
|
|
4886
|
+
* exact.
|
|
4887
|
+
* - `unknown` — no direction can be established, so no number is published.
|
|
4888
|
+
* {@link SettlementCostResponse.margin_usd} is absent. Render the reason,
|
|
4889
|
+
* never a zero.
|
|
4890
|
+
*/
|
|
4891
|
+
type MarginQuality = 'exact' | 'upper_bound' | 'unknown';
|
|
4892
|
+
/**
|
|
4893
|
+
* What every figure in a cost rollup rests on.
|
|
4894
|
+
*
|
|
4895
|
+
* - `reported` — observations from the rails.
|
|
4896
|
+
* - `estimated` — configured contract rates. Never present these as observed.
|
|
4897
|
+
* - `mixed` — both. Say so wherever the total might be reconciled against a
|
|
4898
|
+
* processor invoice.
|
|
4899
|
+
* - `none` — nothing priced the period at all.
|
|
4900
|
+
*/
|
|
4901
|
+
type ProcessorCostBasis = 'reported' | 'estimated' | 'mixed' | 'none';
|
|
4902
|
+
/**
|
|
4903
|
+
* One bucket of processor cost, keyed by connector, ownership, cost currency
|
|
4904
|
+
* and cost exponent together.
|
|
4905
|
+
*
|
|
4906
|
+
* The currency is the **rail's**, not the transaction's — a EUR payment on a
|
|
4907
|
+
* rail that settles in USD reports a USD cost — which is why this breakdown
|
|
4908
|
+
* is separate from the settlement buckets rather than a column on them.
|
|
4909
|
+
*
|
|
4910
|
+
* Never sum `cost_amount` across buckets: two buckets can carry different
|
|
4911
|
+
* currencies and different exponents. `cost_usd` is the only cross-bucket
|
|
4912
|
+
* comparable figure, and it is absent when no rate covered the currency.
|
|
4913
|
+
*/
|
|
4914
|
+
interface ProcessorCostBucket {
|
|
4915
|
+
connector?: string | null;
|
|
4916
|
+
ownership: ConnectorOwnership;
|
|
4917
|
+
/**
|
|
4918
|
+
* Currency the rail reported its cut in. Absent on the bucket holding the
|
|
4919
|
+
* lines that carry no figure.
|
|
4920
|
+
*/
|
|
4921
|
+
cost_currency?: string | null;
|
|
4922
|
+
/**
|
|
4923
|
+
* Decimal places `cost_amount` is expressed in: `cost_amount / 10 **
|
|
4924
|
+
* cost_exponent` units of `cost_currency`. Reported beside the figure
|
|
4925
|
+
* because it cannot be derived from the ticker.
|
|
4926
|
+
*/
|
|
4927
|
+
cost_exponent?: number | null;
|
|
4928
|
+
/**
|
|
4929
|
+
* Summed cost in `cost_currency` at `cost_exponent`. Absent — never zero —
|
|
4930
|
+
* when no line in the bucket carries a figure.
|
|
4931
|
+
*/
|
|
4932
|
+
cost_amount?: number | null;
|
|
4933
|
+
/**
|
|
4934
|
+
* `cost_amount` in USD minor units, or absent when no reporting rate
|
|
4935
|
+
* covered `cost_currency`; crypto tickers routinely have none. Absent means
|
|
4936
|
+
* unconverted, not free.
|
|
4937
|
+
*/
|
|
4938
|
+
cost_usd?: number | null;
|
|
4939
|
+
line_count: number;
|
|
4940
|
+
reported_count: number;
|
|
4941
|
+
estimated_count: number;
|
|
4942
|
+
/** The rail was asked and reports no cost — an answer, not a zero. */
|
|
4943
|
+
unavailable_count: number;
|
|
4944
|
+
/** Lines that pre-date cost recording, so nothing ever asked. */
|
|
4945
|
+
unrecorded_count: number;
|
|
4946
|
+
}
|
|
4947
|
+
/**
|
|
4948
|
+
* The period a cost rollup covers: one explicit UTC calendar month, or the
|
|
4949
|
+
* running month.
|
|
4950
|
+
*
|
|
4951
|
+
* A union rather than two optional fields, because half a period is not a
|
|
4952
|
+
* period — the server answers `400 InvalidRequestData` ("year and month must
|
|
4953
|
+
* be given together") rather than guessing the other half, so the shape that
|
|
4954
|
+
* would earn that error does not typecheck.
|
|
4955
|
+
*/
|
|
4956
|
+
type SettlementCostPeriod = {
|
|
4957
|
+
/** UTC calendar year to report. */
|
|
4958
|
+
year: number;
|
|
4959
|
+
/** UTC calendar month, 1..=12. */
|
|
4960
|
+
month: number;
|
|
4961
|
+
} | {
|
|
4962
|
+
/** Omit both for the running month so far. */
|
|
4963
|
+
year?: never;
|
|
4964
|
+
month?: never;
|
|
4965
|
+
};
|
|
4966
|
+
/** Query for the period cost-and-margin rollup. */
|
|
4967
|
+
type SettlementCostParams = {
|
|
4968
|
+
/** Restrict to one shop. Omitted spans every shop of the merchant. */
|
|
4969
|
+
profile_id?: string;
|
|
4970
|
+
/**
|
|
4971
|
+
* Environment switch — test and live figures never blend. Omitted = live.
|
|
4972
|
+
*/
|
|
4973
|
+
test_mode?: boolean;
|
|
4974
|
+
} & SettlementCostPeriod;
|
|
4975
|
+
/**
|
|
4976
|
+
* What a period's payments cost, and what was left over.
|
|
4977
|
+
*
|
|
4978
|
+
* # Who this is for
|
|
4979
|
+
*
|
|
4980
|
+
* The merchant account holder — the host. **Never a shop owner**: gross minus
|
|
4981
|
+
* what the rail charged is the host's cost base, and publishing it to a third
|
|
4982
|
+
* party hands over the margin `platform_fee_amount` is redacted to protect.
|
|
4983
|
+
* The endpoint refuses a profile-scoped caller with a 403 rather than
|
|
4984
|
+
* returning a redacted shell, so a shop-owner caller should never be offered
|
|
4985
|
+
* this surface at all rather than shown one that fails.
|
|
4986
|
+
*
|
|
4987
|
+
* # The processor cost is not a subtrahend
|
|
4988
|
+
*
|
|
4989
|
+
* The rail deducts before the money reaches anyone here. Nothing in this
|
|
4990
|
+
* response moves `net_to_shop`, and no statement figure changes because of
|
|
4991
|
+
* it. This is margin reporting laid over settlement, not part of it.
|
|
4992
|
+
*
|
|
4993
|
+
* All `*_usd` figures are USD minor units (cents).
|
|
4994
|
+
*/
|
|
4995
|
+
interface SettlementCostResponse {
|
|
4996
|
+
/** ISO-8601 inclusive start of the reported period (UTC). */
|
|
4997
|
+
period_start: string;
|
|
4998
|
+
/** ISO-8601 exclusive end of the reported period (UTC). */
|
|
4999
|
+
period_end: string;
|
|
5000
|
+
test_mode: boolean;
|
|
5001
|
+
/** Succeeded volume in the period, USD minor. */
|
|
5002
|
+
gross_usd: number;
|
|
5003
|
+
/** What DeloPay charged the merchant for these attempts, USD minor. */
|
|
5004
|
+
platform_fee_usd: number;
|
|
5005
|
+
/**
|
|
5006
|
+
* What the merchant charged its shop owners (hosting fees), USD minor.
|
|
5007
|
+
* Zero for a merchant that hosts nobody.
|
|
5008
|
+
*/
|
|
5009
|
+
merchant_fee_usd: number;
|
|
5010
|
+
/** What the rails took on these payments, USD minor. */
|
|
5011
|
+
processor_cost_usd: number;
|
|
5012
|
+
/** The share of `processor_cost_usd` borne on host-owned connectors. */
|
|
5013
|
+
host_processor_cost_usd: number;
|
|
5014
|
+
/** Total cost in the period, USD minor. */
|
|
5015
|
+
total_cost_usd: number;
|
|
5016
|
+
/**
|
|
5017
|
+
* What was left over, USD minor — **absent when it cannot be established**.
|
|
5018
|
+
*
|
|
5019
|
+
* Genuinely optional: the field is omitted from the wire, not sent as 0 and
|
|
5020
|
+
* not sent as null, whenever {@link margin_quality} is `'unknown'`. Treat
|
|
5021
|
+
* its absence as a state to render, never as a zero — a 0 here would claim
|
|
5022
|
+
* the period broke even, which is a different statement from *nobody knows*.
|
|
5023
|
+
*
|
|
5024
|
+
* When {@link margin_quality} is `'upper_bound'` the number is real but is
|
|
5025
|
+
* a ceiling: the true figure is this or lower.
|
|
5026
|
+
*/
|
|
5027
|
+
margin_usd?: number;
|
|
5028
|
+
/** How much weight {@link margin_usd} carries. */
|
|
5029
|
+
margin_quality: MarginQuality;
|
|
5030
|
+
/**
|
|
5031
|
+
* Attempts the rail definitely charged for that carry no settlement line —
|
|
5032
|
+
* cost that is definitely missing. This is what drives
|
|
5033
|
+
* {@link margin_quality} to `'unknown'`.
|
|
5034
|
+
*
|
|
5035
|
+
* Distinct from {@link unlined_unresolved_attempt_count}, and not to be
|
|
5036
|
+
* added to it: one is missing money, the other is mostly ordinary
|
|
5037
|
+
* abandonment. Read both against {@link line_count} — "37 unaccounted out of
|
|
5038
|
+
* 4102" is a different statement from "37 out of 40".
|
|
5039
|
+
*/
|
|
5040
|
+
unlined_captured_attempt_count: number;
|
|
5041
|
+
/**
|
|
5042
|
+
* Attempts whose outcome never resolved — mostly ordinary abandonment and
|
|
5043
|
+
* payments still settling. Qualifies the figure rather than withholding it.
|
|
5044
|
+
*/
|
|
5045
|
+
unlined_unresolved_attempt_count: number;
|
|
5046
|
+
/** True exactly when both unlined counts are zero. */
|
|
5047
|
+
coverage_complete: boolean;
|
|
5048
|
+
/** Whether the totals rest on observations, configured rates, or both. */
|
|
5049
|
+
cost_basis: ProcessorCostBasis;
|
|
5050
|
+
/** Settlement lines in the period. */
|
|
5051
|
+
line_count: number;
|
|
5052
|
+
/** Lines carrying a cost figure of any kind. */
|
|
5053
|
+
priced_line_count: number;
|
|
5054
|
+
/** Lines whose cost the rail itself reported. */
|
|
5055
|
+
reported_line_count: number;
|
|
5056
|
+
/** Lines whose cost came from a configured rate. */
|
|
5057
|
+
estimated_line_count: number;
|
|
5058
|
+
/** Lines where the rail was asked and reports nothing. */
|
|
5059
|
+
unavailable_line_count: number;
|
|
5060
|
+
/** Lines that pre-date cost recording, so nothing ever asked. */
|
|
5061
|
+
unrecorded_line_count: number;
|
|
5062
|
+
/** Some line in the period carries no cost figure. */
|
|
5063
|
+
processor_cost_incomplete: boolean;
|
|
5064
|
+
/** Some cost currency had no USD rate, so its cost is not in the total. */
|
|
5065
|
+
processor_cost_fx_incomplete: boolean;
|
|
5066
|
+
/** Some revenue currency had no USD rate, so its bucket is not in gross. */
|
|
5067
|
+
fx_incomplete: boolean;
|
|
5068
|
+
/** Some platform-fee figure could not be resolved. */
|
|
5069
|
+
platform_fee_incomplete: boolean;
|
|
5070
|
+
/** Per-connector cost breakdown. */
|
|
5071
|
+
breakdown: ProcessorCostBucket[];
|
|
5072
|
+
}
|
|
4823
5073
|
interface ShopFeeConfigParams {
|
|
4824
5074
|
profile_id: string;
|
|
4825
5075
|
}
|
|
@@ -6756,6 +7006,20 @@ declare class Routing {
|
|
|
6756
7006
|
* @param params - Optional deactivation payload.
|
|
6757
7007
|
*/
|
|
6758
7008
|
deactivate(params?: RoutingDeactivateRequest): Promise<RoutingDictionaryRecord>;
|
|
7009
|
+
/**
|
|
7010
|
+
* Edit a static routing configuration.
|
|
7011
|
+
*
|
|
7012
|
+
* Partial: send only the fields to change. `name`/`description` are
|
|
7013
|
+
* metadata-only; `algorithm` is a wholesale rule replacement, validated
|
|
7014
|
+
* against the shop exactly as at create. `modified_at` is bumped either way.
|
|
7015
|
+
*
|
|
7016
|
+
* `PUT /routing/{algorithmId}`
|
|
7017
|
+
*
|
|
7018
|
+
* @param algorithmId - The routing algorithm ID to edit.
|
|
7019
|
+
* @param params - The fields to change (at least one required).
|
|
7020
|
+
* @returns The updated routing configuration including the algorithm body.
|
|
7021
|
+
*/
|
|
7022
|
+
update(algorithmId: string, params: RoutingConfigUpdateRequest): Promise<MerchantRoutingAlgorithm>;
|
|
6759
7023
|
/**
|
|
6760
7024
|
* List all routing algorithms for the current merchant.
|
|
6761
7025
|
*
|
|
@@ -7870,6 +8134,36 @@ declare class Settlement {
|
|
|
7870
8134
|
* `GET /settlement/current`
|
|
7871
8135
|
*/
|
|
7872
8136
|
current(params: SettlementCurrentParams, options?: RequestExtras): Promise<SettlementCurrentResponse>;
|
|
8137
|
+
/**
|
|
8138
|
+
* What a period's payments cost, and what was left over: gross, the
|
|
8139
|
+
* platform fee, hosting fees, what the rails took, and the margin, with a
|
|
8140
|
+
* per-connector breakdown.
|
|
8141
|
+
*
|
|
8142
|
+
* Send `year` and `month` together to report one UTC calendar month, or
|
|
8143
|
+
* neither for the running month so far.
|
|
8144
|
+
*
|
|
8145
|
+
* **Host-only.** The response is the host's cost base, which a shop owner
|
|
8146
|
+
* must never see, so a profile-scoped caller is refused with a 403 rather
|
|
8147
|
+
* than given a redacted shell. Gate the surface on the caller's scope
|
|
8148
|
+
* instead of calling it and handling the failure.
|
|
8149
|
+
*
|
|
8150
|
+
* Two things not to flatten when rendering the result:
|
|
8151
|
+
* `margin_usd` is absent — not zero — whenever `margin_quality` is
|
|
8152
|
+
* `'unknown'`, and `unlined_captured_attempt_count` (cost definitely
|
|
8153
|
+
* missing) means something different from `unlined_unresolved_attempt_count`
|
|
8154
|
+
* (mostly ordinary abandonment).
|
|
8155
|
+
*
|
|
8156
|
+
* `GET /settlement/cost`
|
|
8157
|
+
*
|
|
8158
|
+
* @example
|
|
8159
|
+
* ```typescript
|
|
8160
|
+
* const cost = await delopay.settlement.cost({ test_mode: false, year: 2026, month: 7 });
|
|
8161
|
+
* if (cost.margin_quality === 'unknown') {
|
|
8162
|
+
* // cost.margin_usd is absent — say so, do not render 0.00
|
|
8163
|
+
* }
|
|
8164
|
+
* ```
|
|
8165
|
+
*/
|
|
8166
|
+
cost(params?: SettlementCostParams, options?: RequestExtras): Promise<SettlementCostResponse>;
|
|
7873
8167
|
/**
|
|
7874
8168
|
* List generated settlement statements, newest first.
|
|
7875
8169
|
*
|
|
@@ -9225,4 +9519,4 @@ declare function focusedCheckoutUrl(params: FocusedCheckoutUrlParams): string;
|
|
|
9225
9519
|
declare const CHECKOUT_EVENT_KINDS: readonly ["native_pane_selected", "native_pane_tab_opened", "native_pane_tab_blocked", "native_pane_abandoned", "native_pane_returned"];
|
|
9226
9520
|
type CheckoutEventKind = (typeof CHECKOUT_EVENT_KINDS)[number];
|
|
9227
9521
|
|
|
9228
|
-
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 SubscriptionBillingProcessorResponse, type SubscriptionEstimateParams, type SubscriptionEstimateResponse, type SubscriptionInvoice, type SubscriptionInvoiceListParams, type SubscriptionInvoiceListResponse, 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 };
|
|
9522
|
+
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 EntityType, type EpayoutsCatalogEntry, type EpayoutsCatalogResponse, type EpayoutsLocality, type EpayoutsMethod, type EpayoutsMethodsResponse, type EpayoutsRail, type EphemeralKeyCreateRequest, type EphemeralKeyCreateResponse, type EuclidComparison, type EuclidComparisonType, type EuclidIfStatement, type EuclidValue, type EventClass, type EventDeliveryAttemptResponse, type EventDetailResponse, type EventListParams, type EventListResponse, type EventResponse, type EventType, Export, FeatureMatrix, type 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 MarginQuality, 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 ProcessorCostBasis, type ProcessorCostBucket, 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 RoutingConfigUpdateRequest, 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 SettlementCostParams, type SettlementCostPeriod, type SettlementCostResponse, type SettlementCurrentParams, type SettlementCurrentResponse, type SettlementLine, type SettlementLineBase, type SettlementLineListParams, type SettlementLineListResponse, type SettlementLineWithProcessorCost, type SettlementLineWithoutProcessorCost, type SettlementOverviewParams, type SettlementOverviewResponse, type SettlementPayoutStatus, type SettlementStatementListParams, type SettlementStatementListResponse, type ShopCreateRequest, type ShopFeeConfigEntry, type ShopFeeConfigParams, type ShopFeeConfigResponse, type ShopResponse, type 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 SubscriptionBillingProcessorResponse, type SubscriptionEstimateParams, type SubscriptionEstimateResponse, type SubscriptionInvoice, type SubscriptionInvoiceListParams, type SubscriptionInvoiceListResponse, 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 };
|