@paynow-gg/typescript-sdk 1.0.25 → 1.0.27
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.
|
@@ -1684,18 +1684,18 @@ export interface components {
|
|
|
1684
1684
|
* Format: int64
|
|
1685
1685
|
* @description The optional maximum order value beyond which an abandoned checkout email will not be sent.
|
|
1686
1686
|
*/
|
|
1687
|
-
maximum_order_value?:
|
|
1687
|
+
maximum_order_value?: null | number;
|
|
1688
1688
|
/**
|
|
1689
1689
|
* Format: int32
|
|
1690
1690
|
* @description The optional maximum coupons limit per customer beyond which an abandoned checkout email will not be sent.
|
|
1691
1691
|
*/
|
|
1692
|
-
max_coupons_per_customer_amount?:
|
|
1692
|
+
max_coupons_per_customer_amount?: null | number;
|
|
1693
1693
|
max_coupons_per_customer_period?: components["schemas"]["Period"];
|
|
1694
1694
|
/**
|
|
1695
1695
|
* Format: int32
|
|
1696
1696
|
* @description The optional maximum coupons limit store wide beyond which an abandoned checkout email will not be sent.
|
|
1697
1697
|
*/
|
|
1698
|
-
max_coupons_global_amount?:
|
|
1698
|
+
max_coupons_global_amount?: null | number;
|
|
1699
1699
|
max_coupons_global_period?: components["schemas"]["Period"];
|
|
1700
1700
|
coupon_configuration: components["schemas"]["MarketingCouponConfigurationDto"];
|
|
1701
1701
|
/** @description The commands you want to execute when the email is sent. */
|
|
@@ -1728,18 +1728,18 @@ export interface components {
|
|
|
1728
1728
|
* Format: int64
|
|
1729
1729
|
* @description The optional maximum order value beyond which an abandoned checkout email will not be sent.
|
|
1730
1730
|
*/
|
|
1731
|
-
maximum_order_value?:
|
|
1731
|
+
maximum_order_value?: null | number;
|
|
1732
1732
|
/**
|
|
1733
1733
|
* Format: int32
|
|
1734
1734
|
* @description The optional maximum coupons limit per customer beyond which an abandoned checkout email will not be sent.
|
|
1735
1735
|
*/
|
|
1736
|
-
max_coupons_per_customer_amount?:
|
|
1736
|
+
max_coupons_per_customer_amount?: null | number;
|
|
1737
1737
|
max_coupons_per_customer_period?: components["schemas"]["Period"];
|
|
1738
1738
|
/**
|
|
1739
1739
|
* Format: int32
|
|
1740
1740
|
* @description The optional maximum coupons limit store wide beyond which an abandoned checkout email will not be sent.
|
|
1741
1741
|
*/
|
|
1742
|
-
max_coupons_global_amount?:
|
|
1742
|
+
max_coupons_global_amount?: null | number;
|
|
1743
1743
|
max_coupons_global_period?: components["schemas"]["Period"];
|
|
1744
1744
|
commands: components["schemas"]["AbandonedCheckoutStoreConfigurationUpdateCommandDto"][];
|
|
1745
1745
|
coupon_configuration: components["schemas"]["MarketingCouponConfigurationDto"];
|
|
@@ -1773,7 +1773,7 @@ export interface components {
|
|
|
1773
1773
|
created_at: string;
|
|
1774
1774
|
updated_by?: components["schemas"]["ActorDto"];
|
|
1775
1775
|
/** Format: date-time */
|
|
1776
|
-
updated_at?:
|
|
1776
|
+
updated_at?: null | string;
|
|
1777
1777
|
};
|
|
1778
1778
|
/** @enum {string} */
|
|
1779
1779
|
AffiliateLinkRefererType: "invalid" | "first_referer" | "last_referer";
|
|
@@ -1783,12 +1783,12 @@ export interface components {
|
|
|
1783
1783
|
* @description The Alipay buyer identifier
|
|
1784
1784
|
* @example buyer_abc123
|
|
1785
1785
|
*/
|
|
1786
|
-
buyer_id?:
|
|
1786
|
+
buyer_id?: null | string;
|
|
1787
1787
|
/**
|
|
1788
1788
|
* @description A unique fingerprint for this Alipay account
|
|
1789
1789
|
* @example fingerprint_xyz789
|
|
1790
1790
|
*/
|
|
1791
|
-
fingerprint?:
|
|
1791
|
+
fingerprint?: null | string;
|
|
1792
1792
|
};
|
|
1793
1793
|
BanDto: {
|
|
1794
1794
|
id: components["schemas"]["FlakeId"];
|
|
@@ -1800,10 +1800,10 @@ export interface components {
|
|
|
1800
1800
|
/** Format: date-time */
|
|
1801
1801
|
created_at: string;
|
|
1802
1802
|
/** Format: date-time */
|
|
1803
|
-
updated_at?:
|
|
1803
|
+
updated_at?: null | string;
|
|
1804
1804
|
updated_by?: components["schemas"]["ActorDto"];
|
|
1805
1805
|
/** Format: date-time */
|
|
1806
|
-
expires_at?:
|
|
1806
|
+
expires_at?: null | string;
|
|
1807
1807
|
};
|
|
1808
1808
|
BanIdentityDto: {
|
|
1809
1809
|
ban_type: components["schemas"]["BanType"];
|
|
@@ -1817,27 +1817,27 @@ export interface components {
|
|
|
1817
1817
|
* @description The bank identifier
|
|
1818
1818
|
* @example bnp_paribas
|
|
1819
1819
|
*/
|
|
1820
|
-
bank?:
|
|
1820
|
+
bank?: null | string;
|
|
1821
1821
|
/**
|
|
1822
1822
|
* @description The bank name
|
|
1823
1823
|
* @example BNP Paribas
|
|
1824
1824
|
*/
|
|
1825
|
-
bank_name?:
|
|
1825
|
+
bank_name?: null | string;
|
|
1826
1826
|
/**
|
|
1827
1827
|
* @description The Bank Identifier Code
|
|
1828
1828
|
* @example GEBABEBB
|
|
1829
1829
|
*/
|
|
1830
|
-
bic?:
|
|
1830
|
+
bic?: null | string;
|
|
1831
1831
|
/**
|
|
1832
1832
|
* @description The last 4 digits of the IBAN
|
|
1833
1833
|
* @example 3456
|
|
1834
1834
|
*/
|
|
1835
|
-
iban_last4?:
|
|
1835
|
+
iban_last4?: null | string;
|
|
1836
1836
|
/**
|
|
1837
1837
|
* @description The payer name
|
|
1838
1838
|
* @example Jean Dupont
|
|
1839
1839
|
*/
|
|
1840
|
-
payer_name?:
|
|
1840
|
+
payer_name?: null | string;
|
|
1841
1841
|
};
|
|
1842
1842
|
/** @description Card payment method details */
|
|
1843
1843
|
CardDetailsDto: {
|
|
@@ -1883,19 +1883,19 @@ export interface components {
|
|
|
1883
1883
|
* Only available internally.
|
|
1884
1884
|
* @example 424242
|
|
1885
1885
|
*/
|
|
1886
|
-
bin?:
|
|
1886
|
+
bin?: null | string;
|
|
1887
1887
|
/**
|
|
1888
1888
|
* @description The card issuer/bank name.
|
|
1889
1889
|
* Only available internally.
|
|
1890
1890
|
* @example Chase Bank
|
|
1891
1891
|
*/
|
|
1892
|
-
issuer?:
|
|
1892
|
+
issuer?: null | string;
|
|
1893
1893
|
/**
|
|
1894
1894
|
* @description The card description.
|
|
1895
1895
|
* Only available internally.
|
|
1896
1896
|
* @example Visa Signature
|
|
1897
1897
|
*/
|
|
1898
|
-
description?:
|
|
1898
|
+
description?: null | string;
|
|
1899
1899
|
wallet?: components["schemas"]["CardWalletDto"];
|
|
1900
1900
|
};
|
|
1901
1901
|
/** @description Digital wallet details for a card */
|
|
@@ -1927,25 +1927,29 @@ export interface components {
|
|
|
1927
1927
|
CheckForBanIDByIdentitiesRequestDto: {
|
|
1928
1928
|
identities: components["schemas"]["BanIdentityDto"][];
|
|
1929
1929
|
};
|
|
1930
|
+
CheckForBanIDByIdentitiesResponseDto: {
|
|
1931
|
+
is_banned: boolean;
|
|
1932
|
+
ban_id?: components["schemas"]["FlakeId"];
|
|
1933
|
+
};
|
|
1930
1934
|
CommandAttemptDto: {
|
|
1931
1935
|
id: components["schemas"]["FlakeId"];
|
|
1932
1936
|
store_id: components["schemas"]["FlakeId"];
|
|
1933
1937
|
inventory_item_id?: components["schemas"]["FlakeId"];
|
|
1934
1938
|
gameserver_id: components["schemas"]["FlakeId"];
|
|
1935
1939
|
steam_id?: components["schemas"]["SteamId"];
|
|
1936
|
-
minecraft_uuid?:
|
|
1937
|
-
customer_name?:
|
|
1940
|
+
minecraft_uuid?: null | string;
|
|
1941
|
+
customer_name?: null | string;
|
|
1938
1942
|
customer_id?: components["schemas"]["FlakeId"];
|
|
1939
|
-
command_stage?:
|
|
1943
|
+
command_stage?: null | string;
|
|
1940
1944
|
command: string;
|
|
1941
1945
|
online_only: boolean;
|
|
1942
1946
|
rerun: boolean;
|
|
1943
1947
|
/** Format: date-time */
|
|
1944
1948
|
queued_at: string;
|
|
1945
1949
|
/** Format: date-time */
|
|
1946
|
-
executed_at?:
|
|
1950
|
+
executed_at?: null | string;
|
|
1947
1951
|
/** Format: date-time */
|
|
1948
|
-
unqueued_at?:
|
|
1952
|
+
unqueued_at?: null | string;
|
|
1949
1953
|
};
|
|
1950
1954
|
/**
|
|
1951
1955
|
* @description Specifies the type of discount applied by a coupon.
|
|
@@ -1961,13 +1965,13 @@ export interface components {
|
|
|
1961
1965
|
/** @description The unique code associated with the coupon. */
|
|
1962
1966
|
code: string;
|
|
1963
1967
|
/** @description A note or internal description of the coupon. */
|
|
1964
|
-
note?:
|
|
1968
|
+
note?: null | string;
|
|
1965
1969
|
duration: components["schemas"]["CouponDurationEnum"];
|
|
1966
1970
|
/**
|
|
1967
1971
|
* Format: int32
|
|
1968
1972
|
* @description The number of months the coupon is valid, used if the duration is repeating.
|
|
1969
1973
|
*/
|
|
1970
|
-
duration_in_months?:
|
|
1974
|
+
duration_in_months?: null | number;
|
|
1971
1975
|
discount_type: components["schemas"]["CouponDiscountTypeEnum"];
|
|
1972
1976
|
/**
|
|
1973
1977
|
* Format: int64
|
|
@@ -1979,9 +1983,9 @@ export interface components {
|
|
|
1979
1983
|
/** @description Indicates whether the discount is applied before existing sales. */
|
|
1980
1984
|
discount_apply_before_sales: boolean;
|
|
1981
1985
|
/** @description A list of product IDs the coupon applies to. */
|
|
1982
|
-
apply_to_products?: components["schemas"]["FlakeId"][]
|
|
1986
|
+
apply_to_products?: null | components["schemas"]["FlakeId"][];
|
|
1983
1987
|
/** @description A list of tag IDs the coupon applies to. */
|
|
1984
|
-
apply_to_tags?: components["schemas"]["FlakeId"][]
|
|
1988
|
+
apply_to_tags?: null | components["schemas"]["FlakeId"][];
|
|
1985
1989
|
usable_by_customer_id?: components["schemas"]["FlakeId"];
|
|
1986
1990
|
/**
|
|
1987
1991
|
* Format: int64
|
|
@@ -2010,12 +2014,12 @@ export interface components {
|
|
|
2010
2014
|
* Format: date-time
|
|
2011
2015
|
* @description The date and time when the coupon becomes valid.
|
|
2012
2016
|
*/
|
|
2013
|
-
usable_at?:
|
|
2017
|
+
usable_at?: null | string;
|
|
2014
2018
|
/**
|
|
2015
2019
|
* Format: date-time
|
|
2016
2020
|
* @description The date and time when the coupon expires.
|
|
2017
2021
|
*/
|
|
2018
|
-
expires_at?:
|
|
2022
|
+
expires_at?: null | string;
|
|
2019
2023
|
created_by?: components["schemas"]["ActorDto"];
|
|
2020
2024
|
/**
|
|
2021
2025
|
* Format: date-time
|
|
@@ -2027,7 +2031,7 @@ export interface components {
|
|
|
2027
2031
|
* Format: date-time
|
|
2028
2032
|
* @description The date and time when the coupon was last updated.
|
|
2029
2033
|
*/
|
|
2030
|
-
updated_at?:
|
|
2034
|
+
updated_at?: null | string;
|
|
2031
2035
|
};
|
|
2032
2036
|
/**
|
|
2033
2037
|
* @description Defines the duration for which a coupon remains valid.
|
|
@@ -2063,9 +2067,9 @@ export interface components {
|
|
|
2063
2067
|
CreateCheckoutSessionLineDto: {
|
|
2064
2068
|
product_id: components["schemas"]["FlakeId"];
|
|
2065
2069
|
/** @description Determines whether this line should create a subscription */
|
|
2066
|
-
subscription?:
|
|
2070
|
+
subscription?: null | boolean;
|
|
2067
2071
|
/** @description Indicates whether the product should be trialed */
|
|
2068
|
-
trial?:
|
|
2072
|
+
trial?: null | boolean;
|
|
2069
2073
|
gift_to?: components["schemas"]["CustomerPlatformAccountDto"];
|
|
2070
2074
|
gift_to_customer_id?: components["schemas"]["FlakeId"];
|
|
2071
2075
|
/**
|
|
@@ -2076,23 +2080,23 @@ export interface components {
|
|
|
2076
2080
|
selected_gameserver_id?: components["schemas"]["FlakeId"];
|
|
2077
2081
|
/** @description Optional metadata to associate with the checkout session line.
|
|
2078
2082
|
* Do not store any sensitive information here. */
|
|
2079
|
-
metadata?: {
|
|
2083
|
+
metadata?: null | {
|
|
2080
2084
|
[key: string]: string;
|
|
2081
|
-
}
|
|
2085
|
+
};
|
|
2082
2086
|
/** @description Key-value pair mapping custom variable identifiers to their selected values.
|
|
2083
2087
|
* Required only when the product includes custom variables. */
|
|
2084
|
-
custom_variables?: {
|
|
2088
|
+
custom_variables?: null | {
|
|
2085
2089
|
[key: string]: string;
|
|
2086
|
-
}
|
|
2090
|
+
};
|
|
2087
2091
|
};
|
|
2088
2092
|
/** @description Represents a line item in a checkout session request.
|
|
2089
2093
|
* Opposed to CreateCheckoutSessionLineDto, this is used while creating a checkout session using the Management API,
|
|
2090
2094
|
* and allows for creating inline products (which is subject to special approval) */
|
|
2091
2095
|
CreateCheckoutSessionLineManagementDto: {
|
|
2092
2096
|
/** @description Determines whether this line should create a subscription */
|
|
2093
|
-
subscription?:
|
|
2097
|
+
subscription?: null | boolean;
|
|
2094
2098
|
/** @description Indicates whether the product should be trialed */
|
|
2095
|
-
trial?:
|
|
2099
|
+
trial?: null | boolean;
|
|
2096
2100
|
gift_to?: components["schemas"]["CustomerPlatformAccountDto"];
|
|
2097
2101
|
gift_to_customer_id?: components["schemas"]["FlakeId"];
|
|
2098
2102
|
/**
|
|
@@ -2103,14 +2107,14 @@ export interface components {
|
|
|
2103
2107
|
selected_gameserver_id?: components["schemas"]["FlakeId"];
|
|
2104
2108
|
/** @description Optional metadata to associate with the checkout session line.
|
|
2105
2109
|
* Do not store any sensitive information here. */
|
|
2106
|
-
metadata?: {
|
|
2110
|
+
metadata?: null | {
|
|
2107
2111
|
[key: string]: string;
|
|
2108
|
-
}
|
|
2112
|
+
};
|
|
2109
2113
|
/** @description Key-value pair mapping custom variable identifiers to their selected values.
|
|
2110
2114
|
* Required only when the product includes custom variables. */
|
|
2111
|
-
custom_variables?: {
|
|
2115
|
+
custom_variables?: null | {
|
|
2112
2116
|
[key: string]: string;
|
|
2113
|
-
}
|
|
2117
|
+
};
|
|
2114
2118
|
product_id?: components["schemas"]["FlakeId"];
|
|
2115
2119
|
inline_product?: components["schemas"]["InlineProductCreateDto"];
|
|
2116
2120
|
};
|
|
@@ -2124,21 +2128,21 @@ export interface components {
|
|
|
2124
2128
|
* @description Whether this checkout creates a subscription.
|
|
2125
2129
|
* DEPRECATED: Use 'subscription' field in 'lines' array objects instead.
|
|
2126
2130
|
*/
|
|
2127
|
-
subscription?:
|
|
2131
|
+
subscription?: null | boolean;
|
|
2128
2132
|
coupon_id?: components["schemas"]["FlakeId"];
|
|
2129
2133
|
/** @description Optional affiliate code to track referrals */
|
|
2130
|
-
affiliate_code?:
|
|
2134
|
+
affiliate_code?: null | string;
|
|
2131
2135
|
/** @description Optional URL to redirect to after successful checkout */
|
|
2132
|
-
return_url?:
|
|
2136
|
+
return_url?: null | string;
|
|
2133
2137
|
/** @description Optional URL to redirect to if checkout is canceled */
|
|
2134
|
-
cancel_url?:
|
|
2138
|
+
cancel_url?: null | string;
|
|
2135
2139
|
/** @description Whether to automatically redirect the customer (return_url must be set) */
|
|
2136
|
-
auto_redirect?:
|
|
2140
|
+
auto_redirect?: null | boolean;
|
|
2137
2141
|
/** @description Optional metadata to associate with the checkout session.
|
|
2138
2142
|
* Do not store any sensitive information here. */
|
|
2139
|
-
metadata?: {
|
|
2143
|
+
metadata?: null | {
|
|
2140
2144
|
[key: string]: string;
|
|
2141
|
-
}
|
|
2145
|
+
};
|
|
2142
2146
|
customer_id: components["schemas"]["FlakeId"];
|
|
2143
2147
|
};
|
|
2144
2148
|
/** @description Response after creating a checkout session */
|
|
@@ -2155,7 +2159,7 @@ export interface components {
|
|
|
2155
2159
|
note?: string;
|
|
2156
2160
|
duration: components["schemas"]["CouponDurationEnum"];
|
|
2157
2161
|
/** Format: int32 */
|
|
2158
|
-
duration_in_months?: number;
|
|
2162
|
+
duration_in_months?: null | number;
|
|
2159
2163
|
discount_type: components["schemas"]["CouponDiscountTypeEnum"];
|
|
2160
2164
|
/** Format: int64 */
|
|
2161
2165
|
discount_amount: number;
|
|
@@ -2175,9 +2179,9 @@ export interface components {
|
|
|
2175
2179
|
usable_on_one_time_purchase: boolean;
|
|
2176
2180
|
usable_on_subscription: boolean;
|
|
2177
2181
|
/** Format: date-time */
|
|
2178
|
-
usable_at?: string;
|
|
2182
|
+
usable_at?: null | string;
|
|
2179
2183
|
/** Format: date-time */
|
|
2180
|
-
expires_at?: string;
|
|
2184
|
+
expires_at?: null | string;
|
|
2181
2185
|
};
|
|
2182
2186
|
CreateDownloadableFileDownloadUrlResponseDto: {
|
|
2183
2187
|
download_signed_url: string;
|
|
@@ -2195,19 +2199,19 @@ export interface components {
|
|
|
2195
2199
|
/** Format: date-time */
|
|
2196
2200
|
usable_at: string;
|
|
2197
2201
|
/** Format: date-time */
|
|
2198
|
-
expires_at?: string;
|
|
2202
|
+
expires_at?: null | string;
|
|
2199
2203
|
};
|
|
2200
2204
|
CreateNavLinkDto: {
|
|
2201
2205
|
tag_id: components["schemas"]["FlakeId"];
|
|
2202
2206
|
parent_node_id?: string;
|
|
2203
2207
|
/** Format: int32 */
|
|
2204
|
-
order?: number;
|
|
2208
|
+
order?: null | number;
|
|
2205
2209
|
};
|
|
2206
2210
|
CreateRefundRequestDto: {
|
|
2207
2211
|
order_line_id?: components["schemas"]["FlakeId"];
|
|
2208
2212
|
/** @description Determines if the refund should be taken from the connected user's balance.
|
|
2209
2213
|
* Only relevant for connected platforms. */
|
|
2210
|
-
refund_from_connected_user_balance?:
|
|
2214
|
+
refund_from_connected_user_balance?: null | boolean;
|
|
2211
2215
|
};
|
|
2212
2216
|
CreateSaleDto: {
|
|
2213
2217
|
enabled: boolean;
|
|
@@ -2222,7 +2226,7 @@ export interface components {
|
|
|
2222
2226
|
/** Format: date-time */
|
|
2223
2227
|
begins_at: string;
|
|
2224
2228
|
/** Format: date-time */
|
|
2225
|
-
ends_at?: string;
|
|
2229
|
+
ends_at?: null | string;
|
|
2226
2230
|
};
|
|
2227
2231
|
CreateStorePaymentSettingsDto: {
|
|
2228
2232
|
show_all_payment_methods_for_subscriptions: boolean;
|
|
@@ -2239,9 +2243,9 @@ export interface components {
|
|
|
2239
2243
|
url: string;
|
|
2240
2244
|
subscribed_to: components["schemas"]["WebhookEventType"];
|
|
2241
2245
|
type: components["schemas"]["WebhookType"];
|
|
2242
|
-
discord_description_template?:
|
|
2243
|
-
discord_title?:
|
|
2244
|
-
discord_color?:
|
|
2246
|
+
discord_description_template?: null | string;
|
|
2247
|
+
discord_title?: null | string;
|
|
2248
|
+
discord_color?: null | string;
|
|
2245
2249
|
};
|
|
2246
2250
|
/** @description Cryptocurrency payment method details */
|
|
2247
2251
|
CryptoDetailsDto: {
|
|
@@ -2281,7 +2285,7 @@ export interface components {
|
|
|
2281
2285
|
/** @description Optional regex pattern to validate text/number input values.
|
|
2282
2286
|
* Only applies to text and number types.
|
|
2283
2287
|
* Uses RE2 syntax - does not support negative lookarounds, backreferences, or other advanced regex features. */
|
|
2284
|
-
value_regex?:
|
|
2288
|
+
value_regex?: null | string;
|
|
2285
2289
|
/** @description Available options for dropdown type custom variables.
|
|
2286
2290
|
* Empty for text and number types. */
|
|
2287
2291
|
options: components["schemas"]["CustomVariableOptionDto"][];
|
|
@@ -2297,7 +2301,7 @@ export interface components {
|
|
|
2297
2301
|
* @description When this custom variable was last updated.
|
|
2298
2302
|
* Null if never updated.
|
|
2299
2303
|
*/
|
|
2300
|
-
updated_at?:
|
|
2304
|
+
updated_at?: null | string;
|
|
2301
2305
|
};
|
|
2302
2306
|
CustomVariableLineItemDto: {
|
|
2303
2307
|
id: components["schemas"]["FlakeId"];
|
|
@@ -2383,16 +2387,16 @@ export interface components {
|
|
|
2383
2387
|
* and the profile is a bedrock account, this will be a UUID generated from the Xbox XUID.
|
|
2384
2388
|
* @example f84c6a79-0a4e-45e0-879b-cd49ebd4c4e2
|
|
2385
2389
|
*/
|
|
2386
|
-
minecraft_uuid?:
|
|
2390
|
+
minecraft_uuid?: null | string;
|
|
2387
2391
|
minecraft?: components["schemas"]["MinecraftProfileDto"];
|
|
2388
2392
|
/** @description The customer's Xbox XUID, if available. */
|
|
2389
|
-
xbox_xuid?:
|
|
2393
|
+
xbox_xuid?: null | string;
|
|
2390
2394
|
minecraft_platform?: components["schemas"]["CustomerMinecraftPlatform"];
|
|
2391
2395
|
/**
|
|
2392
2396
|
* @description The display name for the customer.
|
|
2393
2397
|
* @example m0uka
|
|
2394
2398
|
*/
|
|
2395
|
-
name?:
|
|
2399
|
+
name?: null | string;
|
|
2396
2400
|
/**
|
|
2397
2401
|
* Format: date-time
|
|
2398
2402
|
* @description The date and time when the customer was created in the system.
|
|
@@ -2402,7 +2406,7 @@ export interface components {
|
|
|
2402
2406
|
* Format: date-time
|
|
2403
2407
|
* @description The date and time when the customer was last updated, if applicable.
|
|
2404
2408
|
*/
|
|
2405
|
-
updated_at?:
|
|
2409
|
+
updated_at?: null | string;
|
|
2406
2410
|
/** @description Additional custom data associated with the customer. */
|
|
2407
2411
|
metadata: {
|
|
2408
2412
|
[key: string]: string;
|
|
@@ -2433,7 +2437,7 @@ export interface components {
|
|
|
2433
2437
|
/** @description Masked authentication token used for accessing the source platform API. */
|
|
2434
2438
|
token: string;
|
|
2435
2439
|
/** @description Error message if the migration encountered any errors, otherwise null. */
|
|
2436
|
-
error?:
|
|
2440
|
+
error?: null | string;
|
|
2437
2441
|
/**
|
|
2438
2442
|
* Format: date-time
|
|
2439
2443
|
* @description Timestamp when the migration was initiated.
|
|
@@ -2443,17 +2447,17 @@ export interface components {
|
|
|
2443
2447
|
* Format: date-time
|
|
2444
2448
|
* @description Timestamp when the migration failed, or null if it didn't fail.
|
|
2445
2449
|
*/
|
|
2446
|
-
failed_at?:
|
|
2450
|
+
failed_at?: null | string;
|
|
2447
2451
|
/**
|
|
2448
2452
|
* Format: date-time
|
|
2449
2453
|
* @description Timestamp when the migration was successfully completed, or null if not completed.
|
|
2450
2454
|
*/
|
|
2451
|
-
completed_at?:
|
|
2455
|
+
completed_at?: null | string;
|
|
2452
2456
|
/**
|
|
2453
2457
|
* Format: int64
|
|
2454
2458
|
* @description Total number of entities that need to be migrated, or null if unknown.
|
|
2455
2459
|
*/
|
|
2456
|
-
total_entities_to_migrate?:
|
|
2460
|
+
total_entities_to_migrate?: null | number;
|
|
2457
2461
|
/**
|
|
2458
2462
|
* Format: int32
|
|
2459
2463
|
* @description Number of entities that have been successfully migrated.
|
|
@@ -2469,18 +2473,18 @@ export interface components {
|
|
|
2469
2473
|
* Format: int32
|
|
2470
2474
|
* @description Quantity of products to assign.
|
|
2471
2475
|
*/
|
|
2472
|
-
quantity?:
|
|
2476
|
+
quantity?: null | number;
|
|
2473
2477
|
/**
|
|
2474
2478
|
* Format: date-time
|
|
2475
2479
|
* @description Override expiry date for the delivery item.
|
|
2476
2480
|
*/
|
|
2477
|
-
override_expires_at?:
|
|
2481
|
+
override_expires_at?: null | string;
|
|
2478
2482
|
/** @description Skip command execution when assigning the item. */
|
|
2479
|
-
skip_commands?:
|
|
2483
|
+
skip_commands?: null | boolean;
|
|
2480
2484
|
/** @description Custom variables for the assignment. */
|
|
2481
|
-
custom_variables?: {
|
|
2485
|
+
custom_variables?: null | {
|
|
2482
2486
|
[key: string]: string;
|
|
2483
|
-
}
|
|
2487
|
+
};
|
|
2484
2488
|
};
|
|
2485
2489
|
DeliveryItemAssignmentDto: {
|
|
2486
2490
|
product_id?: components["schemas"]["FlakeId"];
|
|
@@ -2490,18 +2494,18 @@ export interface components {
|
|
|
2490
2494
|
* Format: int32
|
|
2491
2495
|
* @description Quantity of products to assign.
|
|
2492
2496
|
*/
|
|
2493
|
-
quantity?:
|
|
2497
|
+
quantity?: null | number;
|
|
2494
2498
|
/**
|
|
2495
2499
|
* Format: date-time
|
|
2496
2500
|
* @description Override expiry date for the delivery item.
|
|
2497
2501
|
*/
|
|
2498
|
-
override_expires_at?:
|
|
2502
|
+
override_expires_at?: null | string;
|
|
2499
2503
|
/** @description Skip command execution when assigning the item. */
|
|
2500
|
-
skip_commands?:
|
|
2504
|
+
skip_commands?: null | boolean;
|
|
2501
2505
|
/** @description Custom variables for the assignment. */
|
|
2502
|
-
custom_variables?: {
|
|
2506
|
+
custom_variables?: null | {
|
|
2503
2507
|
[key: string]: string;
|
|
2504
|
-
}
|
|
2508
|
+
};
|
|
2505
2509
|
};
|
|
2506
2510
|
/** @description Represents a delivery item assigned to a customer */
|
|
2507
2511
|
DeliveryItemDto: {
|
|
@@ -2522,7 +2526,7 @@ export interface components {
|
|
|
2522
2526
|
* Format: int32
|
|
2523
2527
|
* @description The index of the item when multiple quantities were assigned
|
|
2524
2528
|
*/
|
|
2525
|
-
quantity_index?:
|
|
2529
|
+
quantity_index?: null | number;
|
|
2526
2530
|
product: components["schemas"]["DeliveryItemProductDto"];
|
|
2527
2531
|
state: components["schemas"]["DeliveryItemStateDto"];
|
|
2528
2532
|
/**
|
|
@@ -2535,31 +2539,31 @@ export interface components {
|
|
|
2535
2539
|
* Format: date-time
|
|
2536
2540
|
* @description The date and time when the item became active
|
|
2537
2541
|
*/
|
|
2538
|
-
active_at?:
|
|
2542
|
+
active_at?: null | string;
|
|
2539
2543
|
/** @description Indicates whether the delivery item can expire */
|
|
2540
2544
|
expirable: boolean;
|
|
2541
2545
|
/**
|
|
2542
2546
|
* Format: date-time
|
|
2543
2547
|
* @description The date and time when the item expires naturally
|
|
2544
2548
|
*/
|
|
2545
|
-
expires_at?:
|
|
2549
|
+
expires_at?: null | string;
|
|
2546
2550
|
/**
|
|
2547
2551
|
* Format: date-time
|
|
2548
2552
|
* @description The override expiry date for the delivery item
|
|
2549
2553
|
*/
|
|
2550
|
-
override_expires_at?:
|
|
2554
|
+
override_expires_at?: null | string;
|
|
2551
2555
|
/**
|
|
2552
2556
|
* Format: date-time
|
|
2553
2557
|
* @description The date and time when the item was removed
|
|
2554
2558
|
*/
|
|
2555
|
-
removed_at?:
|
|
2559
|
+
removed_at?: null | string;
|
|
2556
2560
|
/**
|
|
2557
2561
|
* Format: date-time
|
|
2558
2562
|
* @description The date and time when the item was revoked
|
|
2559
2563
|
*/
|
|
2560
|
-
revoked_at?:
|
|
2564
|
+
revoked_at?: null | string;
|
|
2561
2565
|
/** @description The reason for revoking the delivery item */
|
|
2562
|
-
revoke_reason?:
|
|
2566
|
+
revoke_reason?: null | string;
|
|
2563
2567
|
revoked_by?: components["schemas"]["ActorDto"];
|
|
2564
2568
|
/** @description The command execution attempts for this delivery item */
|
|
2565
2569
|
command_attempts: components["schemas"]["CommandAttemptDto"][];
|
|
@@ -2604,7 +2608,7 @@ export interface components {
|
|
|
2604
2608
|
action_type: components["schemas"]["DiscordActionType"];
|
|
2605
2609
|
channel_id?: components["schemas"]["FlakeId"];
|
|
2606
2610
|
role_id?: components["schemas"]["FlakeId"];
|
|
2607
|
-
message?:
|
|
2611
|
+
message?: null | string;
|
|
2608
2612
|
};
|
|
2609
2613
|
/** @enum {string} */
|
|
2610
2614
|
DiscordActionExecutionStage: "on_purchase" | "on_expire" | "on_refund" | "on_chargeback";
|
|
@@ -2626,12 +2630,12 @@ export interface components {
|
|
|
2626
2630
|
token: string;
|
|
2627
2631
|
store_id: components["schemas"]["FlakeId"];
|
|
2628
2632
|
server_id?: components["schemas"]["FlakeId"];
|
|
2629
|
-
server_name?:
|
|
2630
|
-
server_icon_url?:
|
|
2633
|
+
server_name?: null | string;
|
|
2634
|
+
server_icon_url?: null | string;
|
|
2631
2635
|
/** Format: date-time */
|
|
2632
2636
|
created_at: string;
|
|
2633
2637
|
/** Format: date-time */
|
|
2634
|
-
linked_at?:
|
|
2638
|
+
linked_at?: null | string;
|
|
2635
2639
|
};
|
|
2636
2640
|
DiscordServerRoleDto: {
|
|
2637
2641
|
id: components["schemas"]["FlakeId"];
|
|
@@ -2642,10 +2646,10 @@ export interface components {
|
|
|
2642
2646
|
/** Format: date-time */
|
|
2643
2647
|
started_at: string;
|
|
2644
2648
|
/** Format: date-time */
|
|
2645
|
-
finished_at?:
|
|
2649
|
+
finished_at?: null | string;
|
|
2646
2650
|
/** Format: int32 */
|
|
2647
2651
|
status_code: number;
|
|
2648
|
-
response?:
|
|
2652
|
+
response?: null | string;
|
|
2649
2653
|
};
|
|
2650
2654
|
FinishTagImageUploadUrlRequestDto: {
|
|
2651
2655
|
/** @description The ID of the uploaded image returned by the server. */
|
|
@@ -2665,12 +2669,12 @@ export interface components {
|
|
|
2665
2669
|
/** @description Indicates whether the game server is currently enabled. */
|
|
2666
2670
|
enabled: boolean;
|
|
2667
2671
|
/** @description The authentication token used by the game server to access the PayNow API. */
|
|
2668
|
-
token?:
|
|
2672
|
+
token?: null | string;
|
|
2669
2673
|
/**
|
|
2670
2674
|
* Format: date-time
|
|
2671
2675
|
* @description The date and time when the authentication token was last reset, if applicable.
|
|
2672
2676
|
*/
|
|
2673
|
-
token_reset_at?:
|
|
2677
|
+
token_reset_at?: null | string;
|
|
2674
2678
|
linked_to: components["schemas"]["GameServerLinkDto"];
|
|
2675
2679
|
/**
|
|
2676
2680
|
* Format: date-time
|
|
@@ -2682,7 +2686,7 @@ export interface components {
|
|
|
2682
2686
|
* Format: date-time
|
|
2683
2687
|
* @description The date and time when the game server was last updated, if applicable.
|
|
2684
2688
|
*/
|
|
2685
|
-
updated_at?:
|
|
2689
|
+
updated_at?: null | string;
|
|
2686
2690
|
updated_by: components["schemas"]["ActorDto"];
|
|
2687
2691
|
};
|
|
2688
2692
|
GameServerLinkDto: {
|
|
@@ -2693,7 +2697,7 @@ export interface components {
|
|
|
2693
2697
|
/** Format: date-time */
|
|
2694
2698
|
saved_at: string;
|
|
2695
2699
|
/** Format: date-time */
|
|
2696
|
-
last_fetched_commands_at?:
|
|
2700
|
+
last_fetched_commands_at?: null | string;
|
|
2697
2701
|
};
|
|
2698
2702
|
/** @description Represents a generic platform profile for a customer. */
|
|
2699
2703
|
GenericProfileDto: {
|
|
@@ -2707,7 +2711,7 @@ export interface components {
|
|
|
2707
2711
|
/** @description The display name of the user on this platform. */
|
|
2708
2712
|
name: string;
|
|
2709
2713
|
/** @description The URL to the user's avatar image on this platform. */
|
|
2710
|
-
avatar_url?:
|
|
2714
|
+
avatar_url?: null | string;
|
|
2711
2715
|
};
|
|
2712
2716
|
GetTagImageUploadUrlResponseDto: {
|
|
2713
2717
|
/** @description The ID of the direct image upload URL. */
|
|
@@ -2727,7 +2731,7 @@ export interface components {
|
|
|
2727
2731
|
*/
|
|
2728
2732
|
code: string;
|
|
2729
2733
|
/** @description Optional note or description associated with the gift card. */
|
|
2730
|
-
note?:
|
|
2734
|
+
note?: null | string;
|
|
2731
2735
|
/**
|
|
2732
2736
|
* Format: int64
|
|
2733
2737
|
* @description The current balance remaining on the gift card in cents.
|
|
@@ -2749,24 +2753,24 @@ export interface components {
|
|
|
2749
2753
|
* Format: date-time
|
|
2750
2754
|
* @description The date and time when the gift card expires, if applicable.
|
|
2751
2755
|
*/
|
|
2752
|
-
expires_at?:
|
|
2756
|
+
expires_at?: null | string;
|
|
2753
2757
|
/**
|
|
2754
2758
|
* Format: date-time
|
|
2755
2759
|
* @description The date and time when the gift card was created.
|
|
2756
2760
|
*/
|
|
2757
|
-
created_at?:
|
|
2761
|
+
created_at?: null | string;
|
|
2758
2762
|
created_by?: components["schemas"]["ActorDto"];
|
|
2759
2763
|
/**
|
|
2760
2764
|
* Format: date-time
|
|
2761
2765
|
* @description The date and time when the gift card was last updated, if applicable.
|
|
2762
2766
|
*/
|
|
2763
|
-
updated_at?:
|
|
2767
|
+
updated_at?: null | string;
|
|
2764
2768
|
updated_by?: components["schemas"]["ActorDto"];
|
|
2765
2769
|
/**
|
|
2766
2770
|
* Format: date-time
|
|
2767
2771
|
* @description The date and time when the gift card was canceled, if applicable.
|
|
2768
2772
|
*/
|
|
2769
|
-
canceled_at?:
|
|
2773
|
+
canceled_at?: null | string;
|
|
2770
2774
|
canceled_by?: components["schemas"]["ActorDto"];
|
|
2771
2775
|
};
|
|
2772
2776
|
/** @description Represents a global command in the system.
|
|
@@ -2792,7 +2796,7 @@ export interface components {
|
|
|
2792
2796
|
* @description Optional timestamp indicating when the command was last updated.
|
|
2793
2797
|
* Null if the command has never been updated.
|
|
2794
2798
|
*/
|
|
2795
|
-
updated_at?:
|
|
2799
|
+
updated_at?: null | string;
|
|
2796
2800
|
updated_by?: components["schemas"]["ActorDto"];
|
|
2797
2801
|
};
|
|
2798
2802
|
/** @description iDEAL payment method details */
|
|
@@ -2811,95 +2815,95 @@ export interface components {
|
|
|
2811
2815
|
* @description The last 4 digits of the IBAN
|
|
2812
2816
|
* @example 1234
|
|
2813
2817
|
*/
|
|
2814
|
-
iban_last4?:
|
|
2818
|
+
iban_last4?: null | string;
|
|
2815
2819
|
/**
|
|
2816
2820
|
* @description The payer name
|
|
2817
2821
|
* @example John Doe
|
|
2818
2822
|
*/
|
|
2819
|
-
payer_name?:
|
|
2823
|
+
payer_name?: null | string;
|
|
2820
2824
|
};
|
|
2821
2825
|
/** @description Optional inline product definition for dynamic products.
|
|
2822
2826
|
* Requires special approval, use `product_id` instead. */
|
|
2823
2827
|
InlineProductCreateDto: {
|
|
2824
2828
|
/** @description The unique URL-safe identifier (slug) for the product. */
|
|
2825
|
-
slug?:
|
|
2829
|
+
slug?: null | string;
|
|
2826
2830
|
/** @description The display name of the product. */
|
|
2827
|
-
name?:
|
|
2831
|
+
name?: null | string;
|
|
2828
2832
|
/** @description The detailed description of the product. */
|
|
2829
|
-
description?:
|
|
2833
|
+
description?: null | string;
|
|
2830
2834
|
/** @description The display label for the product. */
|
|
2831
|
-
label?:
|
|
2835
|
+
label?: null | string;
|
|
2832
2836
|
/**
|
|
2833
2837
|
* Format: int64
|
|
2834
2838
|
* @description The price of the product in the lowest denominator (e.g. cents).
|
|
2835
2839
|
*/
|
|
2836
|
-
price?:
|
|
2840
|
+
price?: null | number;
|
|
2837
2841
|
/** @description Indicates whether the customer is prompted to select a game server before purchasing. */
|
|
2838
|
-
single_game_server_only?:
|
|
2842
|
+
single_game_server_only?: null | boolean;
|
|
2839
2843
|
/** @description Indicates whether one-time purchases are allowed. */
|
|
2840
|
-
allow_one_time_purchase?:
|
|
2844
|
+
allow_one_time_purchase?: null | boolean;
|
|
2841
2845
|
/** @description Indicates whether subscription purchases are allowed. */
|
|
2842
|
-
allow_subscription?:
|
|
2846
|
+
allow_subscription?: null | boolean;
|
|
2843
2847
|
/**
|
|
2844
2848
|
* Format: int32
|
|
2845
2849
|
* @description The subscription interval value.
|
|
2846
2850
|
*/
|
|
2847
|
-
subscription_interval_value?:
|
|
2851
|
+
subscription_interval_value?: null | number;
|
|
2848
2852
|
subscription_interval_scale?: components["schemas"]["ProductSubscriptionIntervalScale"];
|
|
2849
2853
|
trial?: components["schemas"]["UpsertProductTrialConfigurationDto"];
|
|
2850
2854
|
/** @description Indicates whether automatic removal is enabled. */
|
|
2851
|
-
remove_after_enabled?:
|
|
2855
|
+
remove_after_enabled?: null | boolean;
|
|
2852
2856
|
/**
|
|
2853
2857
|
* Format: int32
|
|
2854
2858
|
* @description The time value for automatic removal.
|
|
2855
2859
|
*/
|
|
2856
|
-
remove_after_time_value?:
|
|
2860
|
+
remove_after_time_value?: null | number;
|
|
2857
2861
|
remove_after_time_scale?: components["schemas"]["ProductRemoveAfterIntervalScale"];
|
|
2858
2862
|
store_stock_limit?: components["schemas"]["ProductStockLimitDto"];
|
|
2859
2863
|
customer_stock_limit?: components["schemas"]["ProductStockLimitDto"];
|
|
2860
2864
|
/** @description Indicates whether removed items should be excluded from stock limits. */
|
|
2861
|
-
stock_limit_do_not_include_removed?:
|
|
2865
|
+
stock_limit_do_not_include_removed?: null | boolean;
|
|
2862
2866
|
/** @description The tag IDs associated with the product. */
|
|
2863
|
-
tags?: components["schemas"]["FlakeId"][]
|
|
2867
|
+
tags?: null | components["schemas"]["FlakeId"][];
|
|
2864
2868
|
/** @description The gameserver IDs associated with the product. */
|
|
2865
|
-
gameservers?: components["schemas"]["FlakeId"][]
|
|
2869
|
+
gameservers?: null | components["schemas"]["FlakeId"][];
|
|
2866
2870
|
/** @description The commands to be executed at different stages. */
|
|
2867
|
-
commands?: components["schemas"]["ProductCommandDto"][]
|
|
2871
|
+
commands?: null | components["schemas"]["ProductCommandDto"][];
|
|
2868
2872
|
deliverable_actions?: components["schemas"]["ProductDeliverableActionsDto"];
|
|
2869
2873
|
/** @description Additional metadata for the product. */
|
|
2870
|
-
metadata?: {
|
|
2874
|
+
metadata?: null | {
|
|
2871
2875
|
[key: string]: string;
|
|
2872
|
-
}
|
|
2876
|
+
};
|
|
2873
2877
|
/** @description The payout splits for revenue distribution.
|
|
2874
2878
|
* Requires special approval. */
|
|
2875
|
-
payout_splits?: components["schemas"]["ProductPayoutSplitDto"][]
|
|
2879
|
+
payout_splits?: null | components["schemas"]["ProductPayoutSplitDto"][];
|
|
2876
2880
|
tax_code?: components["schemas"]["ProductTaxCode"];
|
|
2877
2881
|
/** @description Indicates whether concurrent active items are allowed. */
|
|
2878
|
-
allow_concurrent_active_items?:
|
|
2882
|
+
allow_concurrent_active_items?: null | boolean;
|
|
2879
2883
|
/** @description Indicates whether using coupons and gift cards on this product is allowed. */
|
|
2880
|
-
disable_promo_codes?:
|
|
2884
|
+
disable_promo_codes?: null | boolean;
|
|
2881
2885
|
/** @description Indicates whether the product is hidden. */
|
|
2882
|
-
is_hidden?:
|
|
2886
|
+
is_hidden?: null | boolean;
|
|
2883
2887
|
/** @description Indicates whether gifting is disabled. */
|
|
2884
|
-
is_gifting_disabled?:
|
|
2888
|
+
is_gifting_disabled?: null | boolean;
|
|
2885
2889
|
/**
|
|
2886
2890
|
* Format: date-time
|
|
2887
2891
|
* @description The date and time when the product becomes enabled.
|
|
2888
2892
|
* Set to `null` to keep enabled.
|
|
2889
2893
|
*/
|
|
2890
|
-
enabled_at?:
|
|
2894
|
+
enabled_at?: null | string;
|
|
2891
2895
|
/**
|
|
2892
2896
|
* Format: date-time
|
|
2893
2897
|
* @description The date and time until which the product remains enabled.
|
|
2894
2898
|
* Set to `null` to keep enabled.
|
|
2895
2899
|
*/
|
|
2896
|
-
enabled_until?:
|
|
2900
|
+
enabled_until?: null | string;
|
|
2897
2901
|
/** @description The IDs of products required for purchasing this product. */
|
|
2898
|
-
required_product_ids?: components["schemas"]["FlakeId"][]
|
|
2902
|
+
required_product_ids?: null | components["schemas"]["FlakeId"][];
|
|
2899
2903
|
/** @description Indicates whether all required products are needed. */
|
|
2900
|
-
required_product_all?:
|
|
2904
|
+
required_product_all?: null | boolean;
|
|
2901
2905
|
/** @description The IDs of associated custom variables. */
|
|
2902
|
-
custom_variable_ids?: components["schemas"]["FlakeId"][]
|
|
2906
|
+
custom_variable_ids?: null | components["schemas"]["FlakeId"][];
|
|
2903
2907
|
};
|
|
2904
2908
|
/** @description Klarna payment method details */
|
|
2905
2909
|
KlarnaDetailsDto: {
|
|
@@ -2907,12 +2911,12 @@ export interface components {
|
|
|
2907
2911
|
* @description The country code
|
|
2908
2912
|
* @example SE
|
|
2909
2913
|
*/
|
|
2910
|
-
country?:
|
|
2914
|
+
country?: null | string;
|
|
2911
2915
|
/**
|
|
2912
2916
|
* @description The Klarna payment method category
|
|
2913
2917
|
* @example pay_later
|
|
2914
2918
|
*/
|
|
2915
|
-
method_category?:
|
|
2919
|
+
method_category?: null | string;
|
|
2916
2920
|
};
|
|
2917
2921
|
/** @description The last payment decline object. */
|
|
2918
2922
|
LastPaymentErrorDto: {
|
|
@@ -2935,7 +2939,7 @@ export interface components {
|
|
|
2935
2939
|
* Format: int32
|
|
2936
2940
|
* @description Gets or sets the duration of the coupon in months, applicable only for repeating coupons.
|
|
2937
2941
|
*/
|
|
2938
|
-
duration_in_months?:
|
|
2942
|
+
duration_in_months?: null | number;
|
|
2939
2943
|
discount_type: components["schemas"]["CouponDiscountTypeEnum"];
|
|
2940
2944
|
/**
|
|
2941
2945
|
* Format: int64
|
|
@@ -2988,11 +2992,11 @@ export interface components {
|
|
|
2988
2992
|
NavLinkDto: {
|
|
2989
2993
|
node_id: string;
|
|
2990
2994
|
tag_id: components["schemas"]["FlakeId"];
|
|
2991
|
-
parent_node_id?:
|
|
2995
|
+
parent_node_id?: null | string;
|
|
2992
2996
|
tag_slug: string;
|
|
2993
2997
|
name: string;
|
|
2994
2998
|
/** Format: int32 */
|
|
2995
|
-
order?:
|
|
2999
|
+
order?: null | number;
|
|
2996
3000
|
};
|
|
2997
3001
|
/** @description Represents a customer order */
|
|
2998
3002
|
OrderDto: {
|
|
@@ -3012,7 +3016,7 @@ export interface components {
|
|
|
3012
3016
|
* @description The checkout token for this order
|
|
3013
3017
|
* @example c4qqilpphugeqf2gndnkk5ad8fdq
|
|
3014
3018
|
*/
|
|
3015
|
-
checkout_token?:
|
|
3019
|
+
checkout_token?: null | string;
|
|
3016
3020
|
subscription_id?: components["schemas"]["FlakeId"];
|
|
3017
3021
|
/** @description Signifies if the order is a subscription order */
|
|
3018
3022
|
readonly is_subscription: boolean;
|
|
@@ -3109,17 +3113,17 @@ export interface components {
|
|
|
3109
3113
|
* @description The date and time when this order was created
|
|
3110
3114
|
* @example 2025-04-01T15:30:45Z
|
|
3111
3115
|
*/
|
|
3112
|
-
created_at?:
|
|
3116
|
+
created_at?: null | string;
|
|
3113
3117
|
/**
|
|
3114
3118
|
* Format: date-time
|
|
3115
3119
|
* @description The date and time when this order was completed, if applicable
|
|
3116
3120
|
* @example 2025-04-01T15:35:22Z
|
|
3117
3121
|
*/
|
|
3118
|
-
completed_at?:
|
|
3122
|
+
completed_at?: null | string;
|
|
3119
3123
|
/** @description The line items in this order */
|
|
3120
3124
|
lines: components["schemas"]["OrderLineDto"][];
|
|
3121
3125
|
/** @description A list of all tax jurisdictions that were involved in the taxation of this order. */
|
|
3122
|
-
tax_jurisdictions?: components["schemas"]["SalesTaxJurisdictionDto"][]
|
|
3126
|
+
tax_jurisdictions?: null | components["schemas"]["SalesTaxJurisdictionDto"][];
|
|
3123
3127
|
last_payment_error?: components["schemas"]["LastPaymentErrorDto"];
|
|
3124
3128
|
};
|
|
3125
3129
|
/** @description Represents an order line item in a customer's order */
|
|
@@ -3137,9 +3141,9 @@ export interface components {
|
|
|
3137
3141
|
* @description The URL of the product image
|
|
3138
3142
|
* @example https://cdn.example.com/images/premium-game-pass.jpg
|
|
3139
3143
|
*/
|
|
3140
|
-
product_image_url?:
|
|
3144
|
+
product_image_url?: null | string;
|
|
3141
3145
|
/** @description The Gift Card ID of that product in this order line */
|
|
3142
|
-
created_giftcard_id?:
|
|
3146
|
+
created_giftcard_id?: null | string;
|
|
3143
3147
|
subscription_id?: components["schemas"]["FlakeId"];
|
|
3144
3148
|
trial_id?: components["schemas"]["FlakeId"];
|
|
3145
3149
|
/**
|
|
@@ -3147,7 +3151,7 @@ export interface components {
|
|
|
3147
3151
|
* @description The interval value for subscription products
|
|
3148
3152
|
* @example 1
|
|
3149
3153
|
*/
|
|
3150
|
-
subscription_interval_value?:
|
|
3154
|
+
subscription_interval_value?: null | number;
|
|
3151
3155
|
subscription_interval_scale?: components["schemas"]["ProductSubscriptionIntervalScale"];
|
|
3152
3156
|
/**
|
|
3153
3157
|
* @description Indicates whether this order line is a gift
|
|
@@ -3236,16 +3240,16 @@ export interface components {
|
|
|
3236
3240
|
*/
|
|
3237
3241
|
tax_inclusive: boolean;
|
|
3238
3242
|
/** @description The payout splits for this order line */
|
|
3239
|
-
payout_splits?: components["schemas"]["OrderLinePayoutSplitDto"][]
|
|
3243
|
+
payout_splits?: null | components["schemas"]["OrderLinePayoutSplitDto"][];
|
|
3240
3244
|
/**
|
|
3241
3245
|
* @description The regional pricing region ID for this order line, null if no regional pricing set
|
|
3242
3246
|
* @example eu
|
|
3243
3247
|
*/
|
|
3244
|
-
pricing_region_id?:
|
|
3248
|
+
pricing_region_id?: null | string;
|
|
3245
3249
|
/** @description Key-value pair of selected custom variables for this order. */
|
|
3246
|
-
custom_variables?: {
|
|
3250
|
+
custom_variables?: null | {
|
|
3247
3251
|
[key: string]: components["schemas"]["CustomVariableLineItemDto"];
|
|
3248
|
-
}
|
|
3252
|
+
};
|
|
3249
3253
|
};
|
|
3250
3254
|
/** @description Represents an order line-level payout split. */
|
|
3251
3255
|
OrderLinePayoutSplitDto: {
|
|
@@ -3254,7 +3258,7 @@ export interface components {
|
|
|
3254
3258
|
* Format: int64
|
|
3255
3259
|
* @description The percentage in basis points.
|
|
3256
3260
|
*/
|
|
3257
|
-
percentage?:
|
|
3261
|
+
percentage?: null | number;
|
|
3258
3262
|
/**
|
|
3259
3263
|
* Format: int64
|
|
3260
3264
|
* @description The platform fee percentage in basis points.
|
|
@@ -3280,7 +3284,7 @@ export interface components {
|
|
|
3280
3284
|
* @description The payer name
|
|
3281
3285
|
* @example Jan Kowalski
|
|
3282
3286
|
*/
|
|
3283
|
-
payer_name?:
|
|
3287
|
+
payer_name?: null | string;
|
|
3284
3288
|
};
|
|
3285
3289
|
/** @description Pay by Bank payment method details */
|
|
3286
3290
|
PayByBankDetailsDto: {
|
|
@@ -3288,22 +3292,22 @@ export interface components {
|
|
|
3288
3292
|
* @description The bank name
|
|
3289
3293
|
* @example Chase Bank
|
|
3290
3294
|
*/
|
|
3291
|
-
bank_name?:
|
|
3295
|
+
bank_name?: null | string;
|
|
3292
3296
|
/**
|
|
3293
3297
|
* @description The Bank Identifier Code
|
|
3294
3298
|
* @example CHASUS33
|
|
3295
3299
|
*/
|
|
3296
|
-
bic?:
|
|
3300
|
+
bic?: null | string;
|
|
3297
3301
|
/**
|
|
3298
3302
|
* @description The country code
|
|
3299
3303
|
* @example US
|
|
3300
3304
|
*/
|
|
3301
|
-
country?:
|
|
3305
|
+
country?: null | string;
|
|
3302
3306
|
/**
|
|
3303
3307
|
* @description The payer name
|
|
3304
3308
|
* @example John Smith
|
|
3305
3309
|
*/
|
|
3306
|
-
payer_name?:
|
|
3310
|
+
payer_name?: null | string;
|
|
3307
3311
|
};
|
|
3308
3312
|
/** @enum {string} */
|
|
3309
3313
|
PayNowActorType: "anonymous" | "user" | "customer" | "api_key" | "game_server" | "admin" | "internal" | "platform" | "global_customer";
|
|
@@ -3329,9 +3333,9 @@ export interface components {
|
|
|
3329
3333
|
* @description A distributed trace ID used for debugging.
|
|
3330
3334
|
* @example 234a5bcd543ef3fa53ce929d0e0e4736
|
|
3331
3335
|
*/
|
|
3332
|
-
trace_id?:
|
|
3336
|
+
trace_id?: null | string;
|
|
3333
3337
|
/** @description An array of multiple errors. Only used by some API services. */
|
|
3334
|
-
errors?: components["schemas"]["ValidationError"][]
|
|
3338
|
+
errors?: null | components["schemas"]["ValidationError"][];
|
|
3335
3339
|
};
|
|
3336
3340
|
/** @description PayPal payment method details */
|
|
3337
3341
|
PayPalDetailsDto: {
|
|
@@ -3364,12 +3368,12 @@ export interface components {
|
|
|
3364
3368
|
* @description Indicates if vault approval is pending
|
|
3365
3369
|
* @example false
|
|
3366
3370
|
*/
|
|
3367
|
-
pending_vault_approval?:
|
|
3371
|
+
pending_vault_approval?: null | boolean;
|
|
3368
3372
|
/**
|
|
3369
3373
|
* @description Indicates if this is a standalone setup
|
|
3370
3374
|
* @example false
|
|
3371
3375
|
*/
|
|
3372
|
-
standalone_setup?:
|
|
3376
|
+
standalone_setup?: null | boolean;
|
|
3373
3377
|
};
|
|
3374
3378
|
/**
|
|
3375
3379
|
* @description Represents chargeback status of a payment
|
|
@@ -3389,7 +3393,7 @@ export interface components {
|
|
|
3389
3393
|
customer_id: components["schemas"]["FlakeId"];
|
|
3390
3394
|
customer: components["schemas"]["CustomerDto"];
|
|
3391
3395
|
/** @description The list of refunds associated with this payment */
|
|
3392
|
-
refunds?: components["schemas"]["RefundDto"][]
|
|
3396
|
+
refunds?: null | components["schemas"]["RefundDto"][];
|
|
3393
3397
|
/**
|
|
3394
3398
|
* @description The payment gateway provider
|
|
3395
3399
|
* @example stripe
|
|
@@ -3453,7 +3457,7 @@ export interface components {
|
|
|
3453
3457
|
* @description The foreign exchange rate used for currency conversion
|
|
3454
3458
|
* @example 1.085
|
|
3455
3459
|
*/
|
|
3456
|
-
fx_rate?:
|
|
3460
|
+
fx_rate?: null | number;
|
|
3457
3461
|
/**
|
|
3458
3462
|
* Format: int32
|
|
3459
3463
|
* @description The platform fee rate applied to this payment (in basis points)
|
|
@@ -3464,13 +3468,12 @@ export interface components {
|
|
|
3464
3468
|
/**
|
|
3465
3469
|
* Format: date-time
|
|
3466
3470
|
* @description The date and time when the chargeback status was last updated
|
|
3467
|
-
* @example null
|
|
3468
3471
|
*/
|
|
3469
|
-
chargeback_status_updated_at?:
|
|
3472
|
+
chargeback_status_updated_at?: null | string;
|
|
3470
3473
|
/** @description The payout split rules for multi-party payments */
|
|
3471
|
-
payout_split_rules?: components["schemas"]["PaymentPayoutSplitRuleDto"][]
|
|
3474
|
+
payout_split_rules?: null | components["schemas"]["PaymentPayoutSplitRuleDto"][];
|
|
3472
3475
|
/** @description The payout split results for multi-party payments */
|
|
3473
|
-
payout_split_results?: components["schemas"]["PaymentPayoutSplitResultDto"][]
|
|
3476
|
+
payout_split_results?: null | components["schemas"]["PaymentPayoutSplitResultDto"][];
|
|
3474
3477
|
/**
|
|
3475
3478
|
* Format: date-time
|
|
3476
3479
|
* @description The date and time when this payment was created
|
|
@@ -3482,37 +3485,33 @@ export interface components {
|
|
|
3482
3485
|
* @description The date and time when this payment entered pending status
|
|
3483
3486
|
* @example 2025-04-01T15:30:46Z
|
|
3484
3487
|
*/
|
|
3485
|
-
pending_at?:
|
|
3488
|
+
pending_at?: null | string;
|
|
3486
3489
|
/**
|
|
3487
3490
|
* Format: date-time
|
|
3488
3491
|
* @description The date and time when this payment was completed
|
|
3489
3492
|
* @example 2025-04-01T15:31:12Z
|
|
3490
3493
|
*/
|
|
3491
|
-
completed_at?:
|
|
3494
|
+
completed_at?: null | string;
|
|
3492
3495
|
/**
|
|
3493
3496
|
* Format: date-time
|
|
3494
3497
|
* @description The date and time when this payment was canceled
|
|
3495
|
-
* @example null
|
|
3496
3498
|
*/
|
|
3497
|
-
canceled_at?:
|
|
3499
|
+
canceled_at?: null | string;
|
|
3498
3500
|
/**
|
|
3499
3501
|
* Format: date-time
|
|
3500
3502
|
* @description The date and time when this payment failed
|
|
3501
|
-
* @example null
|
|
3502
3503
|
*/
|
|
3503
|
-
failed_at?:
|
|
3504
|
+
failed_at?: null | string;
|
|
3504
3505
|
/**
|
|
3505
3506
|
* Format: date-time
|
|
3506
3507
|
* @description The date and time when this payment was last refunded
|
|
3507
|
-
* @example null
|
|
3508
3508
|
*/
|
|
3509
|
-
refunded_at?:
|
|
3509
|
+
refunded_at?: null | string;
|
|
3510
3510
|
/**
|
|
3511
3511
|
* Format: date-time
|
|
3512
3512
|
* @description The date and time when a chargeback was initiated on this payment
|
|
3513
|
-
* @example null
|
|
3514
3513
|
*/
|
|
3515
|
-
chargeback_at?:
|
|
3514
|
+
chargeback_at?: null | string;
|
|
3516
3515
|
last_payment_error?: components["schemas"]["LastPaymentErrorDto"];
|
|
3517
3516
|
};
|
|
3518
3517
|
/** @description Contains detailed information about a payment method.
|
|
@@ -3566,7 +3565,7 @@ export interface components {
|
|
|
3566
3565
|
* @description The date and time when this payment method was last updated
|
|
3567
3566
|
* @example 2025-03-20T14:30:00Z
|
|
3568
3567
|
*/
|
|
3569
|
-
updated_at?:
|
|
3568
|
+
updated_at?: null | string;
|
|
3570
3569
|
};
|
|
3571
3570
|
/** @description Represents payout split results for multi-party payments */
|
|
3572
3571
|
PaymentPayoutSplitResultDto: {
|
|
@@ -3635,7 +3634,7 @@ export interface components {
|
|
|
3635
3634
|
* @description The percentage of the line amount this user receives (in basis points, e.g., 5000 = 50%)
|
|
3636
3635
|
* @example 5000
|
|
3637
3636
|
*/
|
|
3638
|
-
percentage?:
|
|
3637
|
+
percentage?: null | number;
|
|
3639
3638
|
/**
|
|
3640
3639
|
* Format: int32
|
|
3641
3640
|
* @description The platform fee percentage applied to this split (in basis points)
|
|
@@ -3660,17 +3659,17 @@ export interface components {
|
|
|
3660
3659
|
* @description The bank name
|
|
3661
3660
|
* @example Banco do Brasil
|
|
3662
3661
|
*/
|
|
3663
|
-
bank_name?:
|
|
3662
|
+
bank_name?: null | string;
|
|
3664
3663
|
/**
|
|
3665
3664
|
* @description The bank account number
|
|
3666
3665
|
* @example 12345-6
|
|
3667
3666
|
*/
|
|
3668
|
-
bank_account_number?:
|
|
3667
|
+
bank_account_number?: null | string;
|
|
3669
3668
|
/**
|
|
3670
3669
|
* @description The payer name
|
|
3671
3670
|
* @example João Silva
|
|
3672
3671
|
*/
|
|
3673
|
-
payer_name?:
|
|
3672
|
+
payer_name?: null | string;
|
|
3674
3673
|
};
|
|
3675
3674
|
/**
|
|
3676
3675
|
* @description Defines when prepaid cards should be blocked from use.
|
|
@@ -3686,7 +3685,7 @@ export interface components {
|
|
|
3686
3685
|
/** @description Value indicating on which game servers should the command be executed.
|
|
3687
3686
|
* If left empty or null, then the default behavior applies
|
|
3688
3687
|
* (executing on all game servers or on the selected game server is selection is enabled) */
|
|
3689
|
-
override_execute_on_gameserver_ids?: components["schemas"]["FlakeId"][]
|
|
3688
|
+
override_execute_on_gameserver_ids?: null | components["schemas"]["FlakeId"][];
|
|
3690
3689
|
};
|
|
3691
3690
|
/**
|
|
3692
3691
|
* @description Defines the stages at which product commands can be executed.
|
|
@@ -3702,17 +3701,17 @@ export interface components {
|
|
|
3702
3701
|
store_id: components["schemas"]["FlakeId"];
|
|
3703
3702
|
product_id: components["schemas"]["FlakeId"];
|
|
3704
3703
|
is_uploaded: boolean;
|
|
3705
|
-
file_name?:
|
|
3706
|
-
file_content_type?:
|
|
3704
|
+
file_name?: null | string;
|
|
3705
|
+
file_content_type?: null | string;
|
|
3707
3706
|
/** Format: int64 */
|
|
3708
|
-
file_size?:
|
|
3709
|
-
file_hash?:
|
|
3710
|
-
description?:
|
|
3707
|
+
file_size?: null | number;
|
|
3708
|
+
file_hash?: null | string;
|
|
3709
|
+
description?: null | string;
|
|
3711
3710
|
/** Format: date-time */
|
|
3712
3711
|
created_at: string;
|
|
3713
3712
|
created_by: components["schemas"]["ActorDto"];
|
|
3714
3713
|
/** Format: date-time */
|
|
3715
|
-
updated_at?:
|
|
3714
|
+
updated_at?: null | string;
|
|
3716
3715
|
updated_by?: components["schemas"]["ActorDto"];
|
|
3717
3716
|
};
|
|
3718
3717
|
ProductDto: {
|
|
@@ -3720,7 +3719,7 @@ export interface components {
|
|
|
3720
3719
|
store_id: components["schemas"]["FlakeId"];
|
|
3721
3720
|
version_id: components["schemas"]["FlakeId"];
|
|
3722
3721
|
/** @description The URL to the product image. */
|
|
3723
|
-
image_url?:
|
|
3722
|
+
image_url?: null | string;
|
|
3724
3723
|
/** @description The unique slug for the product. */
|
|
3725
3724
|
slug: string;
|
|
3726
3725
|
/** @description The display name of the product. */
|
|
@@ -3728,7 +3727,7 @@ export interface components {
|
|
|
3728
3727
|
/** @description The detailed description of the product. */
|
|
3729
3728
|
description: string;
|
|
3730
3729
|
/** @description The display label for the product. */
|
|
3731
|
-
label?:
|
|
3730
|
+
label?: null | string;
|
|
3732
3731
|
/**
|
|
3733
3732
|
* Format: int32
|
|
3734
3733
|
* @description The sort order for displaying the product.
|
|
@@ -3764,7 +3763,7 @@ export interface components {
|
|
|
3764
3763
|
store_stock_limit: components["schemas"]["ProductStockLimitDto"];
|
|
3765
3764
|
customer_stock_limit: components["schemas"]["ProductStockLimitDto"];
|
|
3766
3765
|
/** @description Indicates whether removed items should be excluded from stock limits. */
|
|
3767
|
-
stock_limit_do_not_include_removed?:
|
|
3766
|
+
stock_limit_do_not_include_removed?: null | boolean;
|
|
3768
3767
|
/** @description The tags associated with the product. */
|
|
3769
3768
|
tags: components["schemas"]["ProductTagDto"][];
|
|
3770
3769
|
/** @description The game servers associated with the product. */
|
|
@@ -3776,45 +3775,45 @@ export interface components {
|
|
|
3776
3775
|
* Format: date-time
|
|
3777
3776
|
* @description The date and time when the product was created.
|
|
3778
3777
|
*/
|
|
3779
|
-
created_at?:
|
|
3778
|
+
created_at?: null | string;
|
|
3780
3779
|
updated_by?: components["schemas"]["ActorDto"];
|
|
3781
3780
|
/**
|
|
3782
3781
|
* Format: date-time
|
|
3783
3782
|
* @description The date and time when the product was last updated.
|
|
3784
3783
|
*/
|
|
3785
|
-
updated_at?:
|
|
3784
|
+
updated_at?: null | string;
|
|
3786
3785
|
deliverable_actions?: components["schemas"]["ProductDeliverableActionsDto"];
|
|
3787
3786
|
/** @description Additional metadata for the product. */
|
|
3788
|
-
metadata?: {
|
|
3787
|
+
metadata?: null | {
|
|
3789
3788
|
[key: string]: string;
|
|
3790
|
-
}
|
|
3789
|
+
};
|
|
3791
3790
|
/** @description The payout splits for revenue distribution. */
|
|
3792
|
-
payout_splits?: components["schemas"]["ProductPayoutSplitDto"][]
|
|
3791
|
+
payout_splits?: null | components["schemas"]["ProductPayoutSplitDto"][];
|
|
3793
3792
|
tax_code?: components["schemas"]["ProductTaxCode"];
|
|
3794
3793
|
/** @description Indicates whether concurrent active items are allowed. */
|
|
3795
|
-
allow_concurrent_active_items?:
|
|
3794
|
+
allow_concurrent_active_items?: null | boolean;
|
|
3796
3795
|
/** @description Indicates whether using coupons and gift cards on this product is allowed. */
|
|
3797
|
-
disable_promo_codes?:
|
|
3796
|
+
disable_promo_codes?: null | boolean;
|
|
3798
3797
|
/** @description Indicates whether the product is hidden. */
|
|
3799
|
-
is_hidden?:
|
|
3798
|
+
is_hidden?: null | boolean;
|
|
3800
3799
|
/** @description Indicates whether gifting is disabled. */
|
|
3801
|
-
is_gifting_disabled?:
|
|
3800
|
+
is_gifting_disabled?: null | boolean;
|
|
3802
3801
|
/**
|
|
3803
3802
|
* Format: date-time
|
|
3804
3803
|
* @description The date and time when the product becomes enabled.
|
|
3805
3804
|
*/
|
|
3806
|
-
enabled_at?:
|
|
3805
|
+
enabled_at?: null | string;
|
|
3807
3806
|
/**
|
|
3808
3807
|
* Format: date-time
|
|
3809
3808
|
* @description The date and time until which the product remains enabled.
|
|
3810
3809
|
*/
|
|
3811
|
-
enabled_until?:
|
|
3810
|
+
enabled_until?: null | string;
|
|
3812
3811
|
/** @description The IDs of products required for purchasing this product. */
|
|
3813
|
-
required_product_ids?: components["schemas"]["FlakeId"][]
|
|
3812
|
+
required_product_ids?: null | components["schemas"]["FlakeId"][];
|
|
3814
3813
|
/** @description Indicates whether all required products are needed. */
|
|
3815
|
-
required_product_all?:
|
|
3814
|
+
required_product_all?: null | boolean;
|
|
3816
3815
|
/** @description The IDs of associated custom variables. */
|
|
3817
|
-
custom_variable_ids?: components["schemas"]["FlakeId"][]
|
|
3816
|
+
custom_variable_ids?: null | components["schemas"]["FlakeId"][];
|
|
3818
3817
|
};
|
|
3819
3818
|
ProductGameServerDto: {
|
|
3820
3819
|
id: components["schemas"]["FlakeId"];
|
|
@@ -3833,7 +3832,7 @@ export interface components {
|
|
|
3833
3832
|
* @description The percentage of the payment allocated to the user, in basis points (500 = 5%).
|
|
3834
3833
|
* The last payout split must have this field set to `null` to receive the remaining portion.
|
|
3835
3834
|
*/
|
|
3836
|
-
percentage?:
|
|
3835
|
+
percentage?: null | number;
|
|
3837
3836
|
/**
|
|
3838
3837
|
* Format: int64
|
|
3839
3838
|
* @description The platform fee percentage your platform receives, in basis points (500 = 5%).
|
|
@@ -3852,13 +3851,13 @@ export interface components {
|
|
|
3852
3851
|
country_codes: string[];
|
|
3853
3852
|
enabled: boolean;
|
|
3854
3853
|
/** Format: int64 */
|
|
3855
|
-
price?:
|
|
3854
|
+
price?: null | number;
|
|
3856
3855
|
/** Format: int64 */
|
|
3857
|
-
default_price_multiplier?:
|
|
3858
|
-
currency?:
|
|
3859
|
-
tax_inclusive?:
|
|
3856
|
+
default_price_multiplier?: null | number;
|
|
3857
|
+
currency?: null | string;
|
|
3858
|
+
tax_inclusive?: null | boolean;
|
|
3860
3859
|
/** Format: date-time */
|
|
3861
|
-
updated_at?:
|
|
3860
|
+
updated_at?: null | string;
|
|
3862
3861
|
};
|
|
3863
3862
|
ProductPricingRegionGroupDto: {
|
|
3864
3863
|
id: string;
|
|
@@ -3869,10 +3868,10 @@ export interface components {
|
|
|
3869
3868
|
};
|
|
3870
3869
|
ProductPricingRegionOverrideDto: {
|
|
3871
3870
|
/** Format: int64 */
|
|
3872
|
-
price?:
|
|
3873
|
-
enabled?:
|
|
3874
|
-
currency?:
|
|
3875
|
-
tax_inclusive?:
|
|
3871
|
+
price?: null | number;
|
|
3872
|
+
enabled?: null | boolean;
|
|
3873
|
+
currency?: null | string;
|
|
3874
|
+
tax_inclusive?: null | boolean;
|
|
3876
3875
|
};
|
|
3877
3876
|
/** @enum {string} */
|
|
3878
3877
|
ProductRemoveAfterIntervalScale: "invalid" | "day" | "week" | "month";
|
|
@@ -3892,12 +3891,12 @@ export interface components {
|
|
|
3892
3891
|
* Format: int32
|
|
3893
3892
|
* @description The quantity limit.
|
|
3894
3893
|
*/
|
|
3895
|
-
quantity?:
|
|
3894
|
+
quantity?: null | number;
|
|
3896
3895
|
/**
|
|
3897
3896
|
* Format: int32
|
|
3898
3897
|
* @description The time value for stock limit period.
|
|
3899
3898
|
*/
|
|
3900
|
-
time_value?:
|
|
3899
|
+
time_value?: null | number;
|
|
3901
3900
|
time_scale: components["schemas"]["ProductStockTimeScale"];
|
|
3902
3901
|
/** @description Indicates if trials should be included in the active stock limit calculation. */
|
|
3903
3902
|
include_trials: boolean;
|
|
@@ -3984,18 +3983,18 @@ export interface components {
|
|
|
3984
3983
|
* Format: int64
|
|
3985
3984
|
* @description The optional maximum order value beyond which an abandoned checkout email will not be sent.
|
|
3986
3985
|
*/
|
|
3987
|
-
maximum_order_value?:
|
|
3986
|
+
maximum_order_value?: null | number;
|
|
3988
3987
|
/**
|
|
3989
3988
|
* Format: int32
|
|
3990
3989
|
* @description The optional maximum coupons limit per customer beyond which an abandoned checkout email will not be sent.
|
|
3991
3990
|
*/
|
|
3992
|
-
max_coupons_per_customer_amount?:
|
|
3991
|
+
max_coupons_per_customer_amount?: null | number;
|
|
3993
3992
|
max_coupons_per_customer_period?: components["schemas"]["Period"];
|
|
3994
3993
|
/**
|
|
3995
3994
|
* Format: int32
|
|
3996
3995
|
* @description The optional maximum coupons limit store wide beyond which an abandoned checkout email will not be sent.
|
|
3997
3996
|
*/
|
|
3998
|
-
max_coupons_global_amount?:
|
|
3997
|
+
max_coupons_global_amount?: null | number;
|
|
3999
3998
|
max_coupons_global_period?: components["schemas"]["Period"];
|
|
4000
3999
|
coupon_configuration: components["schemas"]["MarketingCouponConfigurationDto"];
|
|
4001
4000
|
/** @description The commands you want to execute when the email is sent. */
|
|
@@ -4028,18 +4027,18 @@ export interface components {
|
|
|
4028
4027
|
* Format: int64
|
|
4029
4028
|
* @description The optional maximum order value beyond which an abandoned checkout email will not be sent.
|
|
4030
4029
|
*/
|
|
4031
|
-
maximum_order_value?:
|
|
4030
|
+
maximum_order_value?: null | number;
|
|
4032
4031
|
/**
|
|
4033
4032
|
* Format: int32
|
|
4034
4033
|
* @description The optional maximum coupons limit per customer beyond which an abandoned checkout email will not be sent.
|
|
4035
4034
|
*/
|
|
4036
|
-
max_coupons_per_customer_amount?:
|
|
4035
|
+
max_coupons_per_customer_amount?: null | number;
|
|
4037
4036
|
max_coupons_per_customer_period?: components["schemas"]["Period"];
|
|
4038
4037
|
/**
|
|
4039
4038
|
* Format: int32
|
|
4040
4039
|
* @description The optional maximum coupons limit store wide beyond which an abandoned checkout email will not be sent.
|
|
4041
4040
|
*/
|
|
4042
|
-
max_coupons_global_amount?:
|
|
4041
|
+
max_coupons_global_amount?: null | number;
|
|
4043
4042
|
max_coupons_global_period?: components["schemas"]["Period"];
|
|
4044
4043
|
commands: components["schemas"]["PurchaseFollowUpStoreConfigurationUpdateCommandDto"][];
|
|
4045
4044
|
coupon_configuration: components["schemas"]["MarketingCouponConfigurationDto"];
|
|
@@ -4061,12 +4060,12 @@ export interface components {
|
|
|
4061
4060
|
discord_user_id?: components["schemas"]["FlakeId"];
|
|
4062
4061
|
channel_id?: components["schemas"]["FlakeId"];
|
|
4063
4062
|
role_id?: components["schemas"]["FlakeId"];
|
|
4064
|
-
message?:
|
|
4063
|
+
message?: null | string;
|
|
4065
4064
|
revocation_stages: components["schemas"]["DiscordActionRevocationStage"][];
|
|
4066
4065
|
/** Format: date-time */
|
|
4067
4066
|
enqueued_at: string;
|
|
4068
4067
|
/** Format: date-time */
|
|
4069
|
-
finalised_at?:
|
|
4068
|
+
finalised_at?: null | string;
|
|
4070
4069
|
executions: components["schemas"]["QueuedDiscordActionExecutionDto"][];
|
|
4071
4070
|
};
|
|
4072
4071
|
QueuedDiscordActionExecutionDto: {
|
|
@@ -4077,8 +4076,8 @@ export interface components {
|
|
|
4077
4076
|
/** Format: date-time */
|
|
4078
4077
|
executed_at: string;
|
|
4079
4078
|
execution_status: components["schemas"]["QueuedDiscordActionExecutionStatus"];
|
|
4080
|
-
message?:
|
|
4081
|
-
trace_id?:
|
|
4079
|
+
message?: null | string;
|
|
4080
|
+
trace_id?: null | string;
|
|
4082
4081
|
};
|
|
4083
4082
|
/** @enum {string} */
|
|
4084
4083
|
QueuedDiscordActionExecutionStatus: "success" | "failure";
|
|
@@ -4091,7 +4090,7 @@ export interface components {
|
|
|
4091
4090
|
created_at: string;
|
|
4092
4091
|
state: components["schemas"]["WebhookState"];
|
|
4093
4092
|
/** Format: date-time */
|
|
4094
|
-
next_retry?:
|
|
4093
|
+
next_retry?: null | string;
|
|
4095
4094
|
event: components["schemas"]["WebhookEventType"];
|
|
4096
4095
|
payload: unknown;
|
|
4097
4096
|
executions: components["schemas"]["ExecutedWebhookDto"][];
|
|
@@ -4104,7 +4103,7 @@ export interface components {
|
|
|
4104
4103
|
order_line_id?: components["schemas"]["FlakeId"];
|
|
4105
4104
|
status: components["schemas"]["RefundStatus"];
|
|
4106
4105
|
/** @description Reason for failure if the refund has failed */
|
|
4107
|
-
failure_reason?:
|
|
4106
|
+
failure_reason?: null | string;
|
|
4108
4107
|
/** @description Three-letter currency code of the refund */
|
|
4109
4108
|
currency: string;
|
|
4110
4109
|
/**
|
|
@@ -4150,14 +4149,14 @@ export interface components {
|
|
|
4150
4149
|
/** @description String representation of store refund amount, formatted for display */
|
|
4151
4150
|
store_refund_amount_str: string;
|
|
4152
4151
|
/** @description Optional currency code used for presentment to the customer if different from the base currency */
|
|
4153
|
-
presentment_currency?:
|
|
4152
|
+
presentment_currency?: null | string;
|
|
4154
4153
|
/**
|
|
4155
4154
|
* Format: int64
|
|
4156
4155
|
* @description Optional amount in presentment currency in smallest currency unit
|
|
4157
4156
|
*/
|
|
4158
|
-
presentment_amount?:
|
|
4157
|
+
presentment_amount?: null | number;
|
|
4159
4158
|
/** @description Exchange rate used while refunding. Only present for payments made in non-settlement currency. */
|
|
4160
|
-
fx_rate?:
|
|
4159
|
+
fx_rate?: null | string;
|
|
4161
4160
|
/** @description Indicates whether the refund should be taken from the connected user's balance.
|
|
4162
4161
|
* Only relevant for platforms. */
|
|
4163
4162
|
refund_from_connected_user_balance: boolean;
|
|
@@ -4170,27 +4169,27 @@ export interface components {
|
|
|
4170
4169
|
* Format: date-time
|
|
4171
4170
|
* @description Optional date and time when the refund was approved
|
|
4172
4171
|
*/
|
|
4173
|
-
approved_at?:
|
|
4172
|
+
approved_at?: null | string;
|
|
4174
4173
|
/**
|
|
4175
4174
|
* Format: date-time
|
|
4176
4175
|
* @description Optional date and time when the refund entered pending status
|
|
4177
4176
|
*/
|
|
4178
|
-
pending_at?:
|
|
4177
|
+
pending_at?: null | string;
|
|
4179
4178
|
/**
|
|
4180
4179
|
* Format: date-time
|
|
4181
4180
|
* @description Optional date and time when the refund was completed
|
|
4182
4181
|
*/
|
|
4183
|
-
completed_at?:
|
|
4182
|
+
completed_at?: null | string;
|
|
4184
4183
|
/**
|
|
4185
4184
|
* Format: date-time
|
|
4186
4185
|
* @description Optional date and time when the refund was canceled
|
|
4187
4186
|
*/
|
|
4188
|
-
canceled_at?:
|
|
4187
|
+
canceled_at?: null | string;
|
|
4189
4188
|
/**
|
|
4190
4189
|
* Format: date-time
|
|
4191
4190
|
* @description Optional date and time when the refund failed
|
|
4192
4191
|
*/
|
|
4193
|
-
failed_at?:
|
|
4192
|
+
failed_at?: null | string;
|
|
4194
4193
|
};
|
|
4195
4194
|
/**
|
|
4196
4195
|
* @description Represents the current status of a refund in the system
|
|
@@ -4199,9 +4198,9 @@ export interface components {
|
|
|
4199
4198
|
RefundStatus: "created" | "approved" | "processing" | "completed" | "canceled" | "failed";
|
|
4200
4199
|
ResendCommandsForGameServerRequestDto: {
|
|
4201
4200
|
/** Format: date-time */
|
|
4202
|
-
starts_at?:
|
|
4201
|
+
starts_at?: null | string;
|
|
4203
4202
|
/** Format: date-time */
|
|
4204
|
-
ends_at?:
|
|
4203
|
+
ends_at?: null | string;
|
|
4205
4204
|
inventory_item_id?: components["schemas"]["FlakeId"];
|
|
4206
4205
|
customer_id?: components["schemas"]["FlakeId"];
|
|
4207
4206
|
order_id?: components["schemas"]["FlakeId"];
|
|
@@ -4248,7 +4247,7 @@ export interface components {
|
|
|
4248
4247
|
* Format: date-time
|
|
4249
4248
|
* @description The date and time when the sale ends.
|
|
4250
4249
|
*/
|
|
4251
|
-
ends_at?:
|
|
4250
|
+
ends_at?: null | string;
|
|
4252
4251
|
created_by: components["schemas"]["ActorDto"];
|
|
4253
4252
|
/**
|
|
4254
4253
|
* Format: date-time
|
|
@@ -4260,7 +4259,7 @@ export interface components {
|
|
|
4260
4259
|
* Format: date-time
|
|
4261
4260
|
* @description The date and time when the sale was last updated.
|
|
4262
4261
|
*/
|
|
4263
|
-
updated_at?:
|
|
4262
|
+
updated_at?: null | string;
|
|
4264
4263
|
};
|
|
4265
4264
|
/** @description Object representing a sales tax jurisdiction and its associated taxes. */
|
|
4266
4265
|
SalesTaxJurisdictionDto: {
|
|
@@ -4273,7 +4272,7 @@ export interface components {
|
|
|
4273
4272
|
taxes: components["schemas"]["SalesTaxJurisdictionTaxDto"][];
|
|
4274
4273
|
/** @description Explanation for why taxes are not applied, if applicable.
|
|
4275
4274
|
* This property is null when taxes are applied. */
|
|
4276
|
-
not_taxed_reason?:
|
|
4275
|
+
not_taxed_reason?: null | string;
|
|
4277
4276
|
};
|
|
4278
4277
|
/** @description Object representing a specific tax within a sales tax jurisdiction. */
|
|
4279
4278
|
SalesTaxJurisdictionTaxDto: {
|
|
@@ -4290,10 +4289,10 @@ export interface components {
|
|
|
4290
4289
|
discord_server_id: components["schemas"]["FlakeId"];
|
|
4291
4290
|
action_type: components["schemas"]["DiscordActionType"];
|
|
4292
4291
|
execution_stage: components["schemas"]["DiscordActionExecutionStage"];
|
|
4293
|
-
revocation_stages?: components["schemas"]["DiscordActionRevocationStage"][]
|
|
4292
|
+
revocation_stages?: null | components["schemas"]["DiscordActionRevocationStage"][];
|
|
4294
4293
|
channel_id?: components["schemas"]["FlakeId"];
|
|
4295
4294
|
role_id?: components["schemas"]["FlakeId"];
|
|
4296
|
-
message?:
|
|
4295
|
+
message?: null | string;
|
|
4297
4296
|
};
|
|
4298
4297
|
StartDataMigrationFromTebexRequestDto: {
|
|
4299
4298
|
/** @description The public-facing Headless API token. */
|
|
@@ -4304,7 +4303,7 @@ export interface components {
|
|
|
4304
4303
|
StartDownloadableFileUploadRequestDto: {
|
|
4305
4304
|
file_name: string;
|
|
4306
4305
|
file_content_type: string;
|
|
4307
|
-
description?:
|
|
4306
|
+
description?: null | string;
|
|
4308
4307
|
};
|
|
4309
4308
|
/**
|
|
4310
4309
|
* Format: steam-id
|
|
@@ -4365,14 +4364,14 @@ export interface components {
|
|
|
4365
4364
|
* Format: int64
|
|
4366
4365
|
* @description Maximum per-transaction chargeback coverage amount in cents.
|
|
4367
4366
|
*/
|
|
4368
|
-
chargeback_coverage_max_amount?:
|
|
4367
|
+
chargeback_coverage_max_amount?: null | number;
|
|
4369
4368
|
};
|
|
4370
4369
|
StorePricingRegionOverrideDto: {
|
|
4371
4370
|
/** Format: int64 */
|
|
4372
|
-
default_price_multiplier?:
|
|
4373
|
-
enabled?:
|
|
4374
|
-
currency?:
|
|
4375
|
-
tax_inclusive?:
|
|
4371
|
+
default_price_multiplier?: null | number;
|
|
4372
|
+
enabled?: null | boolean;
|
|
4373
|
+
currency?: null | string;
|
|
4374
|
+
tax_inclusive?: null | boolean;
|
|
4376
4375
|
};
|
|
4377
4376
|
/**
|
|
4378
4377
|
* @description Determines the party that needs to perform or requests a verification
|
|
@@ -4401,20 +4400,20 @@ export interface components {
|
|
|
4401
4400
|
* Format: date-time
|
|
4402
4401
|
* @description Date when a repeating coupon ends for this subscription.
|
|
4403
4402
|
*/
|
|
4404
|
-
coupon_repeating_ends_at?:
|
|
4403
|
+
coupon_repeating_ends_at?: null | string;
|
|
4405
4404
|
affiliate_id?: components["schemas"]["FlakeId"];
|
|
4406
4405
|
checkout_id?: components["schemas"]["FlakeId"];
|
|
4407
4406
|
checkout_line_id?: components["schemas"]["FlakeId"];
|
|
4408
4407
|
/** @description Name used for billing purposes. */
|
|
4409
|
-
billing_name?:
|
|
4408
|
+
billing_name?: null | string;
|
|
4410
4409
|
/** @description Email used for billing purposes. */
|
|
4411
|
-
billing_email?:
|
|
4410
|
+
billing_email?: null | string;
|
|
4412
4411
|
/** @description Country code used for billing purposes. */
|
|
4413
|
-
billing_country?:
|
|
4412
|
+
billing_country?: null | string;
|
|
4414
4413
|
/** @description List of tax jurisdictions applicable to this subscription. */
|
|
4415
4414
|
tax_jurisdictions: components["schemas"]["SalesTaxJurisdictionDto"][];
|
|
4416
4415
|
/** @description IP address of the customer at the time of subscription. */
|
|
4417
|
-
customer_ip?:
|
|
4416
|
+
customer_ip?: null | string;
|
|
4418
4417
|
/** @description Indicates whether this subscription is a gift. */
|
|
4419
4418
|
gift: boolean;
|
|
4420
4419
|
gift_to_customer?: components["schemas"]["CustomerDto"];
|
|
@@ -4423,7 +4422,7 @@ export interface components {
|
|
|
4423
4422
|
/** @description Name of the product associated with this subscription. */
|
|
4424
4423
|
product_name: string;
|
|
4425
4424
|
/** @description URL for the product image. */
|
|
4426
|
-
product_image_url?:
|
|
4425
|
+
product_image_url?: null | string;
|
|
4427
4426
|
/**
|
|
4428
4427
|
* Format: int32
|
|
4429
4428
|
* @description Numeric value of the billing interval.
|
|
@@ -4505,32 +4504,32 @@ export interface components {
|
|
|
4505
4504
|
/** @description Formatted string representation of the initial total amount. */
|
|
4506
4505
|
initial_total_amount_str: string;
|
|
4507
4506
|
/** @description Identifier for the pricing region associated with this subscription. */
|
|
4508
|
-
pricing_region_id?:
|
|
4507
|
+
pricing_region_id?: null | string;
|
|
4509
4508
|
/**
|
|
4510
4509
|
* Format: date-time
|
|
4511
4510
|
* @description Start date of the current billing period.
|
|
4512
4511
|
*/
|
|
4513
|
-
current_period_start?:
|
|
4512
|
+
current_period_start?: null | string;
|
|
4514
4513
|
/**
|
|
4515
4514
|
* Format: date-time
|
|
4516
4515
|
* @description End date of the current billing period.
|
|
4517
4516
|
*/
|
|
4518
|
-
current_period_end?:
|
|
4517
|
+
current_period_end?: null | string;
|
|
4519
4518
|
/**
|
|
4520
4519
|
* Format: int32
|
|
4521
4520
|
* @description Sequence number of the current billing cycle.
|
|
4522
4521
|
*/
|
|
4523
|
-
billing_cycle_sequence?:
|
|
4522
|
+
billing_cycle_sequence?: null | number;
|
|
4524
4523
|
/**
|
|
4525
4524
|
* Format: date-time
|
|
4526
4525
|
* @description Date and time when the next payment attempt will occur.
|
|
4527
4526
|
*/
|
|
4528
|
-
next_attempt_at?:
|
|
4527
|
+
next_attempt_at?: null | string;
|
|
4529
4528
|
/**
|
|
4530
4529
|
* Format: int32
|
|
4531
4530
|
* @description Number of payment attempts made for the current billing cycle.
|
|
4532
4531
|
*/
|
|
4533
|
-
attempt_count?:
|
|
4532
|
+
attempt_count?: null | number;
|
|
4534
4533
|
/**
|
|
4535
4534
|
* Format: date-time
|
|
4536
4535
|
* @description Date and time when the subscription was created.
|
|
@@ -4540,19 +4539,19 @@ export interface components {
|
|
|
4540
4539
|
* Format: date-time
|
|
4541
4540
|
* @description Date and time when the subscription was last updated.
|
|
4542
4541
|
*/
|
|
4543
|
-
updated_at?:
|
|
4542
|
+
updated_at?: null | string;
|
|
4544
4543
|
/**
|
|
4545
4544
|
* Format: date-time
|
|
4546
4545
|
* @description Date and time when the subscription became active.
|
|
4547
4546
|
*/
|
|
4548
|
-
active_at?:
|
|
4547
|
+
active_at?: null | string;
|
|
4549
4548
|
/**
|
|
4550
4549
|
* Format: date-time
|
|
4551
4550
|
* @description Date and time when the subscription was canceled.
|
|
4552
4551
|
*/
|
|
4553
|
-
canceled_at?:
|
|
4552
|
+
canceled_at?: null | string;
|
|
4554
4553
|
/** @description Reason provided for cancellation. */
|
|
4555
|
-
cancel_reason?:
|
|
4554
|
+
cancel_reason?: null | string;
|
|
4556
4555
|
};
|
|
4557
4556
|
/**
|
|
4558
4557
|
* @description Represents the current state of a subscription.
|
|
@@ -4573,16 +4572,16 @@ export interface components {
|
|
|
4573
4572
|
/** @description The unique slug for the tag. */
|
|
4574
4573
|
slug: string;
|
|
4575
4574
|
/** @description The description of the tag. */
|
|
4576
|
-
description?:
|
|
4575
|
+
description?: null | string;
|
|
4577
4576
|
/** @description The Image URL associated with the tag. */
|
|
4578
|
-
image_url?:
|
|
4577
|
+
image_url?: null | string;
|
|
4579
4578
|
/** @description Indicates whether this tag is enabled. */
|
|
4580
4579
|
enabled: boolean;
|
|
4581
4580
|
/**
|
|
4582
4581
|
* Format: date-time
|
|
4583
4582
|
* @description When the tag was last updated.
|
|
4584
4583
|
*/
|
|
4585
|
-
updated_at?:
|
|
4584
|
+
updated_at?: null | string;
|
|
4586
4585
|
updated_by?: components["schemas"]["ActorDto"];
|
|
4587
4586
|
};
|
|
4588
4587
|
TrialDto: {
|
|
@@ -4599,7 +4598,7 @@ export interface components {
|
|
|
4599
4598
|
/** @description The name of the product being trialed. */
|
|
4600
4599
|
product_name: string;
|
|
4601
4600
|
/** @description The URL of the product image, if available. */
|
|
4602
|
-
product_image_url?:
|
|
4601
|
+
product_image_url?: null | string;
|
|
4603
4602
|
/**
|
|
4604
4603
|
* Format: int32
|
|
4605
4604
|
* @description The duration value of the trial period.
|
|
@@ -4611,12 +4610,12 @@ export interface components {
|
|
|
4611
4610
|
* Format: date-time
|
|
4612
4611
|
* @description The date and time when the trial period starts, if applicable.
|
|
4613
4612
|
*/
|
|
4614
|
-
starts_at?:
|
|
4613
|
+
starts_at?: null | string;
|
|
4615
4614
|
/**
|
|
4616
4615
|
* Format: date-time
|
|
4617
4616
|
* @description The date and time when the trial period ends, if applicable.
|
|
4618
4617
|
*/
|
|
4619
|
-
ends_at?:
|
|
4618
|
+
ends_at?: null | string;
|
|
4620
4619
|
status: components["schemas"]["TrialStatusDto"];
|
|
4621
4620
|
/**
|
|
4622
4621
|
* Format: date-time
|
|
@@ -4627,7 +4626,7 @@ export interface components {
|
|
|
4627
4626
|
* Format: date-time
|
|
4628
4627
|
* @description The date and time when the trial was canceled, if applicable.
|
|
4629
4628
|
*/
|
|
4630
|
-
canceled_at?:
|
|
4629
|
+
canceled_at?: null | string;
|
|
4631
4630
|
canceled_by?: components["schemas"]["ActorDto"];
|
|
4632
4631
|
};
|
|
4633
4632
|
TrialEligibilityOverrideDto: {
|
|
@@ -4640,7 +4639,7 @@ export interface components {
|
|
|
4640
4639
|
/** @description The name of the product associated with this override. */
|
|
4641
4640
|
product_name: string;
|
|
4642
4641
|
/** @description The URL of the product image, if available. */
|
|
4643
|
-
product_image_url?:
|
|
4642
|
+
product_image_url?: null | string;
|
|
4644
4643
|
/**
|
|
4645
4644
|
* Format: date-time
|
|
4646
4645
|
* @description The date and time when this override was created.
|
|
@@ -4656,15 +4655,15 @@ export interface components {
|
|
|
4656
4655
|
* Format: date-time
|
|
4657
4656
|
* @description The date and time when this override was used to start a trial, if applicable.
|
|
4658
4657
|
*/
|
|
4659
|
-
used_at?:
|
|
4658
|
+
used_at?: null | string;
|
|
4660
4659
|
used_on_trial_id?: components["schemas"]["FlakeId"];
|
|
4661
4660
|
/** @description An optional note or comment about this override. */
|
|
4662
|
-
note?:
|
|
4661
|
+
note?: null | string;
|
|
4663
4662
|
/**
|
|
4664
4663
|
* Format: date-time
|
|
4665
4664
|
* @description The date and time when this override was deleted, if applicable.
|
|
4666
4665
|
*/
|
|
4667
|
-
deleted_at?:
|
|
4666
|
+
deleted_at?: null | string;
|
|
4668
4667
|
deleted_by?: components["schemas"]["ActorDto"];
|
|
4669
4668
|
};
|
|
4670
4669
|
/** @enum {string} */
|
|
@@ -4677,8 +4676,8 @@ export interface components {
|
|
|
4677
4676
|
kyc_completed: boolean;
|
|
4678
4677
|
requires_approval: boolean;
|
|
4679
4678
|
manually_approved: boolean;
|
|
4680
|
-
decline_reason?:
|
|
4681
|
-
requires_action_text?:
|
|
4679
|
+
decline_reason?: null | string;
|
|
4680
|
+
requires_action_text?: null | string;
|
|
4682
4681
|
products_created: boolean;
|
|
4683
4682
|
kyc_required: boolean;
|
|
4684
4683
|
gameserver_linked: boolean;
|
|
@@ -4691,7 +4690,7 @@ export interface components {
|
|
|
4691
4690
|
id: components["schemas"]["FlakeId"];
|
|
4692
4691
|
store_id: components["schemas"]["FlakeId"];
|
|
4693
4692
|
/** @description Template ID if this requirement was created from a template. Null for ad-hoc requirements. */
|
|
4694
|
-
template_id?:
|
|
4693
|
+
template_id?: null | string;
|
|
4695
4694
|
originating_flag_id?: components["schemas"]["FlakeId"];
|
|
4696
4695
|
category: components["schemas"]["StoreRequirementCategory"];
|
|
4697
4696
|
/** @description Unique code identifying the type of requirement. Copied from template or custom for ad-hoc requirements. */
|
|
@@ -4699,9 +4698,9 @@ export interface components {
|
|
|
4699
4698
|
/** @description Human-readable name of the requirement. Copied from template or custom for ad-hoc requirements. */
|
|
4700
4699
|
name: string;
|
|
4701
4700
|
/** @description Detailed description explaining what the store needs to provide. Copied from template or custom for ad-hoc requirements. */
|
|
4702
|
-
description?:
|
|
4701
|
+
description?: null | string;
|
|
4703
4702
|
/** @description JSON schema defining the form fields, validation rules, and document requirements */
|
|
4704
|
-
schema?:
|
|
4703
|
+
schema?: null;
|
|
4705
4704
|
/** @description Additional metadata for this requirement (stored as JSON) */
|
|
4706
4705
|
metadata: {
|
|
4707
4706
|
[key: string]: string;
|
|
@@ -4710,7 +4709,7 @@ export interface components {
|
|
|
4710
4709
|
requested_by: components["schemas"]["StoreRequirementActionParty"];
|
|
4711
4710
|
/** @description Specifies the specific requester entity (e.g., "stripe", "trolley", or admin user ID)
|
|
4712
4711
|
* Free-form string for internal records */
|
|
4713
|
-
requested_by_detail?:
|
|
4712
|
+
requested_by_detail?: null | string;
|
|
4714
4713
|
/**
|
|
4715
4714
|
* Format: date-time
|
|
4716
4715
|
* @description When this requirement was created
|
|
@@ -4720,27 +4719,27 @@ export interface components {
|
|
|
4720
4719
|
* Format: date-time
|
|
4721
4720
|
* @description When this requirement was last updated
|
|
4722
4721
|
*/
|
|
4723
|
-
updated_at?:
|
|
4722
|
+
updated_at?: null | string;
|
|
4724
4723
|
/**
|
|
4725
4724
|
* Format: date-time
|
|
4726
4725
|
* @description When this requirement must be completed by (optional)
|
|
4727
4726
|
*/
|
|
4728
|
-
deadline_at?:
|
|
4727
|
+
deadline_at?: null | string;
|
|
4729
4728
|
/**
|
|
4730
4729
|
* Format: date-time
|
|
4731
4730
|
* @description When the store submitted their response to this requirement
|
|
4732
4731
|
*/
|
|
4733
|
-
submitted_at?:
|
|
4732
|
+
submitted_at?: null | string;
|
|
4734
4733
|
/**
|
|
4735
4734
|
* Format: date-time
|
|
4736
4735
|
* @description When this requirement was verified and approved
|
|
4737
4736
|
*/
|
|
4738
|
-
verified_at?:
|
|
4737
|
+
verified_at?: null | string;
|
|
4739
4738
|
/**
|
|
4740
4739
|
* Format: date-time
|
|
4741
4740
|
* @description When this requirement was rejected for not meeting standards
|
|
4742
4741
|
*/
|
|
4743
|
-
rejected_at?:
|
|
4742
|
+
rejected_at?: null | string;
|
|
4744
4743
|
/** @description Store capabilities that are restricted until this requirement is satisfied */
|
|
4745
4744
|
restricts_capabilities: string[];
|
|
4746
4745
|
/** @description Associated submissions for this requriement. */
|
|
@@ -4753,18 +4752,18 @@ export interface components {
|
|
|
4753
4752
|
/** @description The identifier of the specific field within the store requirement. */
|
|
4754
4753
|
store_requirement_field_id: string;
|
|
4755
4754
|
/** @description The text value submitted for this field, if applicable. */
|
|
4756
|
-
text_value?:
|
|
4755
|
+
text_value?: null | string;
|
|
4757
4756
|
/** @description The identifier of the uploaded file, if a file was submitted. */
|
|
4758
|
-
file_id?:
|
|
4757
|
+
file_id?: null | string;
|
|
4759
4758
|
/** @description The original name of the uploaded file. */
|
|
4760
|
-
file_name?:
|
|
4759
|
+
file_name?: null | string;
|
|
4761
4760
|
/** @description The MIME content type of the uploaded file. */
|
|
4762
|
-
file_content_type?:
|
|
4761
|
+
file_content_type?: null | string;
|
|
4763
4762
|
/**
|
|
4764
4763
|
* Format: int64
|
|
4765
4764
|
* @description The size of the uploaded file in bytes.
|
|
4766
4765
|
*/
|
|
4767
|
-
file_size_bytes?:
|
|
4766
|
+
file_size_bytes?: null | number;
|
|
4768
4767
|
/**
|
|
4769
4768
|
* Format: date-time
|
|
4770
4769
|
* @description The timestamp when this submission was made.
|
|
@@ -4772,9 +4771,9 @@ export interface components {
|
|
|
4772
4771
|
submitted_at: string;
|
|
4773
4772
|
submitted_by: components["schemas"]["ActorDto"];
|
|
4774
4773
|
/** @description The IP address from which the submission was made. */
|
|
4775
|
-
submitted_by_ip_address?:
|
|
4774
|
+
submitted_by_ip_address?: null | string;
|
|
4776
4775
|
/** @description The user agent string of the client that made the submission. */
|
|
4777
|
-
submitted_by_user_agent?:
|
|
4776
|
+
submitted_by_user_agent?: null | string;
|
|
4778
4777
|
};
|
|
4779
4778
|
UnqueueCommandsRequestDto: {
|
|
4780
4779
|
attempt_ids: components["schemas"]["FlakeId"][];
|
|
@@ -4784,18 +4783,18 @@ export interface components {
|
|
|
4784
4783
|
unqueued_count: number;
|
|
4785
4784
|
};
|
|
4786
4785
|
UpdateAffiliateLinkDto: {
|
|
4787
|
-
enabled?:
|
|
4788
|
-
code?:
|
|
4786
|
+
enabled?: null | boolean;
|
|
4787
|
+
code?: null | string;
|
|
4789
4788
|
referer_type?: components["schemas"]["AffiliateLinkRefererType"];
|
|
4790
4789
|
/** Format: int32 */
|
|
4791
|
-
tracking_length_days?:
|
|
4792
|
-
apply_for_subscriptions?:
|
|
4790
|
+
tracking_length_days?: null | number;
|
|
4791
|
+
apply_for_subscriptions?: null | boolean;
|
|
4793
4792
|
discount_type?: components["schemas"]["AffiliateLinkDiscountType"];
|
|
4794
4793
|
/** Format: int64 */
|
|
4795
|
-
discount_amount?:
|
|
4794
|
+
discount_amount?: null | number;
|
|
4796
4795
|
commission_type?: components["schemas"]["AffiliateLinkCommissionType"];
|
|
4797
4796
|
/** Format: int64 */
|
|
4798
|
-
commission_amount?:
|
|
4797
|
+
commission_amount?: null | number;
|
|
4799
4798
|
};
|
|
4800
4799
|
UpdateCouponDto: {
|
|
4801
4800
|
enabled?: boolean;
|
|
@@ -4803,7 +4802,7 @@ export interface components {
|
|
|
4803
4802
|
note?: string;
|
|
4804
4803
|
duration?: components["schemas"]["CouponDurationEnum"];
|
|
4805
4804
|
/** Format: int32 */
|
|
4806
|
-
duration_in_months?: number;
|
|
4805
|
+
duration_in_months?: null | number;
|
|
4807
4806
|
discount_type?: components["schemas"]["CouponDiscountTypeEnum"];
|
|
4808
4807
|
/** Format: int64 */
|
|
4809
4808
|
discount_amount?: number;
|
|
@@ -4823,9 +4822,9 @@ export interface components {
|
|
|
4823
4822
|
usable_on_one_time_purchase?: boolean;
|
|
4824
4823
|
usable_on_subscription?: boolean;
|
|
4825
4824
|
/** Format: date-time */
|
|
4826
|
-
usable_at?: string;
|
|
4825
|
+
usable_at?: null | string;
|
|
4827
4826
|
/** Format: date-time */
|
|
4828
|
-
expires_at?: string;
|
|
4827
|
+
expires_at?: null | string;
|
|
4829
4828
|
};
|
|
4830
4829
|
UpdateDeliveryItemProductVersionRequestDto: {
|
|
4831
4830
|
product_version_id: components["schemas"]["FlakeId"];
|
|
@@ -4844,13 +4843,13 @@ export interface components {
|
|
|
4844
4843
|
/** Format: date-time */
|
|
4845
4844
|
usable_at?: string;
|
|
4846
4845
|
/** Format: date-time */
|
|
4847
|
-
expires_at?: string;
|
|
4846
|
+
expires_at?: null | string;
|
|
4848
4847
|
};
|
|
4849
4848
|
UpdateNavLinkDto: {
|
|
4850
4849
|
tag_id?: components["schemas"]["FlakeId"];
|
|
4851
4850
|
parent_node_id?: string;
|
|
4852
4851
|
/** Format: int32 */
|
|
4853
|
-
order?: number;
|
|
4852
|
+
order?: null | number;
|
|
4854
4853
|
};
|
|
4855
4854
|
UpdateNavLinkOrderChangeDto: {
|
|
4856
4855
|
node_id: components["schemas"]["FlakeId"];
|
|
@@ -4874,7 +4873,7 @@ export interface components {
|
|
|
4874
4873
|
/** Format: date-time */
|
|
4875
4874
|
begins_at?: string;
|
|
4876
4875
|
/** Format: date-time */
|
|
4877
|
-
ends_at?: string;
|
|
4876
|
+
ends_at?: null | string;
|
|
4878
4877
|
};
|
|
4879
4878
|
UpdateStorePaymentSettingsDto: {
|
|
4880
4879
|
show_all_payment_methods_for_subscriptions?: boolean;
|
|
@@ -4891,15 +4890,15 @@ export interface components {
|
|
|
4891
4890
|
url: string;
|
|
4892
4891
|
reset_secret: boolean;
|
|
4893
4892
|
subscribed_to: components["schemas"]["WebhookEventType"];
|
|
4894
|
-
discord_description_template?:
|
|
4895
|
-
discord_title?:
|
|
4896
|
-
discord_color?:
|
|
4893
|
+
discord_description_template?: null | string;
|
|
4894
|
+
discord_title?: null | string;
|
|
4895
|
+
discord_color?: null | string;
|
|
4897
4896
|
};
|
|
4898
4897
|
UpsertBanRequestDto: {
|
|
4899
|
-
reason?:
|
|
4900
|
-
identities?: components["schemas"]["BanIdentityDto"][]
|
|
4898
|
+
reason?: null | string;
|
|
4899
|
+
identities?: null | components["schemas"]["BanIdentityDto"][];
|
|
4901
4900
|
/** Format: date-time */
|
|
4902
|
-
expires_at?:
|
|
4901
|
+
expires_at?: null | string;
|
|
4903
4902
|
};
|
|
4904
4903
|
/** @description Unified request model for creating or updating custom variables.
|
|
4905
4904
|
* Contains all the configurable properties of a custom variable. */
|
|
@@ -4910,11 +4909,11 @@ export interface components {
|
|
|
4910
4909
|
/** @description Display name shown to customers. */
|
|
4911
4910
|
name: string;
|
|
4912
4911
|
/** @description Description explaining the purpose of this custom variable. */
|
|
4913
|
-
description?:
|
|
4912
|
+
description?: null | string;
|
|
4914
4913
|
type: components["schemas"]["CustomVariableType"];
|
|
4915
4914
|
/** @description Optional regex pattern for validating customer input.
|
|
4916
4915
|
* Only applies to text and number types. Ignored for dropdown types. */
|
|
4917
|
-
value_regex?:
|
|
4916
|
+
value_regex?: null | string;
|
|
4918
4917
|
/** @description Predefined options for dropdown-type custom variables.
|
|
4919
4918
|
* Required for dropdown types, ignored for text and number types.
|
|
4920
4919
|
* When updating, this completely replaces all existing options. */
|
|
@@ -4923,16 +4922,16 @@ export interface components {
|
|
|
4923
4922
|
UpsertCustomerRequestDto: {
|
|
4924
4923
|
steam_id?: components["schemas"]["SteamId"];
|
|
4925
4924
|
/** @description The Minecraft UUID for the customer. */
|
|
4926
|
-
minecraft_uuid?:
|
|
4925
|
+
minecraft_uuid?: null | string;
|
|
4927
4926
|
minecraft_platform?: components["schemas"]["CustomerMinecraftPlatform"];
|
|
4928
4927
|
/** @description The Xbox XUID (Xbox User ID) for the customer. */
|
|
4929
|
-
xbox_xuid?:
|
|
4928
|
+
xbox_xuid?: null | string;
|
|
4930
4929
|
/** @description The name of the customer. */
|
|
4931
|
-
name?:
|
|
4930
|
+
name?: null | string;
|
|
4932
4931
|
/** @description Additional customer information stored as key-value pairs. */
|
|
4933
|
-
metadata?: {
|
|
4932
|
+
metadata?: null | {
|
|
4934
4933
|
[key: string]: string;
|
|
4935
|
-
}
|
|
4934
|
+
};
|
|
4936
4935
|
};
|
|
4937
4936
|
/** @description Data transfer object used for creating new global commands or updating existing ones.
|
|
4938
4937
|
* Supports partial updates following PATCH semantics. */
|
|
@@ -4943,127 +4942,127 @@ export interface components {
|
|
|
4943
4942
|
/** @description Indicates whether the command should only be executed when the player is online. */
|
|
4944
4943
|
online_only: boolean;
|
|
4945
4944
|
/** @description List of specific game server IDs where this command should be executed. */
|
|
4946
|
-
override_execute_on_gameserver_ids?: components["schemas"]["FlakeId"][]
|
|
4945
|
+
override_execute_on_gameserver_ids?: null | components["schemas"]["FlakeId"][];
|
|
4947
4946
|
};
|
|
4948
4947
|
UpsertProductRequestDto: {
|
|
4949
4948
|
/** @description The unique URL-safe identifier (slug) for the product. */
|
|
4950
|
-
slug?:
|
|
4949
|
+
slug?: null | string;
|
|
4951
4950
|
/** @description The display name of the product. */
|
|
4952
|
-
name?:
|
|
4951
|
+
name?: null | string;
|
|
4953
4952
|
/** @description The detailed description of the product. */
|
|
4954
|
-
description?:
|
|
4953
|
+
description?: null | string;
|
|
4955
4954
|
/** @description The display label for the product. */
|
|
4956
|
-
label?:
|
|
4955
|
+
label?: null | string;
|
|
4957
4956
|
/**
|
|
4958
4957
|
* Format: int64
|
|
4959
4958
|
* @description The price of the product in the lowest denominator (e.g. cents).
|
|
4960
4959
|
*/
|
|
4961
|
-
price?:
|
|
4960
|
+
price?: null | number;
|
|
4962
4961
|
/** @description Indicates whether the customer is prompted to select a game server before purchasing. */
|
|
4963
|
-
single_game_server_only?:
|
|
4962
|
+
single_game_server_only?: null | boolean;
|
|
4964
4963
|
/** @description Indicates whether one-time purchases are allowed. */
|
|
4965
|
-
allow_one_time_purchase?:
|
|
4964
|
+
allow_one_time_purchase?: null | boolean;
|
|
4966
4965
|
/** @description Indicates whether subscription purchases are allowed. */
|
|
4967
|
-
allow_subscription?:
|
|
4966
|
+
allow_subscription?: null | boolean;
|
|
4968
4967
|
/**
|
|
4969
4968
|
* Format: int32
|
|
4970
4969
|
* @description The subscription interval value.
|
|
4971
4970
|
*/
|
|
4972
|
-
subscription_interval_value?:
|
|
4971
|
+
subscription_interval_value?: null | number;
|
|
4973
4972
|
subscription_interval_scale?: components["schemas"]["ProductSubscriptionIntervalScale"];
|
|
4974
4973
|
trial?: components["schemas"]["UpsertProductTrialConfigurationDto"];
|
|
4975
4974
|
/** @description Indicates whether automatic removal is enabled. */
|
|
4976
|
-
remove_after_enabled?:
|
|
4975
|
+
remove_after_enabled?: null | boolean;
|
|
4977
4976
|
/**
|
|
4978
4977
|
* Format: int32
|
|
4979
4978
|
* @description The time value for automatic removal.
|
|
4980
4979
|
*/
|
|
4981
|
-
remove_after_time_value?:
|
|
4980
|
+
remove_after_time_value?: null | number;
|
|
4982
4981
|
remove_after_time_scale?: components["schemas"]["ProductRemoveAfterIntervalScale"];
|
|
4983
4982
|
store_stock_limit?: components["schemas"]["ProductStockLimitDto"];
|
|
4984
4983
|
customer_stock_limit?: components["schemas"]["ProductStockLimitDto"];
|
|
4985
4984
|
/** @description Indicates whether removed items should be excluded from stock limits. */
|
|
4986
|
-
stock_limit_do_not_include_removed?:
|
|
4985
|
+
stock_limit_do_not_include_removed?: null | boolean;
|
|
4987
4986
|
/** @description The tag IDs associated with the product. */
|
|
4988
|
-
tags?: components["schemas"]["FlakeId"][]
|
|
4987
|
+
tags?: null | components["schemas"]["FlakeId"][];
|
|
4989
4988
|
/** @description The gameserver IDs associated with the product. */
|
|
4990
|
-
gameservers?: components["schemas"]["FlakeId"][]
|
|
4989
|
+
gameservers?: null | components["schemas"]["FlakeId"][];
|
|
4991
4990
|
/** @description The commands to be executed at different stages. */
|
|
4992
|
-
commands?: components["schemas"]["ProductCommandDto"][]
|
|
4991
|
+
commands?: null | components["schemas"]["ProductCommandDto"][];
|
|
4993
4992
|
deliverable_actions?: components["schemas"]["ProductDeliverableActionsDto"];
|
|
4994
4993
|
/** @description Additional metadata for the product. */
|
|
4995
|
-
metadata?: {
|
|
4994
|
+
metadata?: null | {
|
|
4996
4995
|
[key: string]: string;
|
|
4997
|
-
}
|
|
4996
|
+
};
|
|
4998
4997
|
/** @description The payout splits for revenue distribution.
|
|
4999
4998
|
* Requires special approval. */
|
|
5000
|
-
payout_splits?: components["schemas"]["ProductPayoutSplitDto"][]
|
|
4999
|
+
payout_splits?: null | components["schemas"]["ProductPayoutSplitDto"][];
|
|
5001
5000
|
tax_code?: components["schemas"]["ProductTaxCode"];
|
|
5002
5001
|
/** @description Indicates whether concurrent active items are allowed. */
|
|
5003
|
-
allow_concurrent_active_items?:
|
|
5002
|
+
allow_concurrent_active_items?: null | boolean;
|
|
5004
5003
|
/** @description Indicates whether using coupons and gift cards on this product is allowed. */
|
|
5005
|
-
disable_promo_codes?:
|
|
5004
|
+
disable_promo_codes?: null | boolean;
|
|
5006
5005
|
/** @description Indicates whether the product is hidden. */
|
|
5007
|
-
is_hidden?:
|
|
5006
|
+
is_hidden?: null | boolean;
|
|
5008
5007
|
/** @description Indicates whether gifting is disabled. */
|
|
5009
|
-
is_gifting_disabled?:
|
|
5008
|
+
is_gifting_disabled?: null | boolean;
|
|
5010
5009
|
/**
|
|
5011
5010
|
* Format: date-time
|
|
5012
5011
|
* @description The date and time when the product becomes enabled.
|
|
5013
5012
|
* Set to `null` to keep enabled.
|
|
5014
5013
|
*/
|
|
5015
|
-
enabled_at?:
|
|
5014
|
+
enabled_at?: null | string;
|
|
5016
5015
|
/**
|
|
5017
5016
|
* Format: date-time
|
|
5018
5017
|
* @description The date and time until which the product remains enabled.
|
|
5019
5018
|
* Set to `null` to keep enabled.
|
|
5020
5019
|
*/
|
|
5021
|
-
enabled_until?:
|
|
5020
|
+
enabled_until?: null | string;
|
|
5022
5021
|
/** @description The IDs of products required for purchasing this product. */
|
|
5023
|
-
required_product_ids?: components["schemas"]["FlakeId"][]
|
|
5022
|
+
required_product_ids?: null | components["schemas"]["FlakeId"][];
|
|
5024
5023
|
/** @description Indicates whether all required products are needed. */
|
|
5025
|
-
required_product_all?:
|
|
5024
|
+
required_product_all?: null | boolean;
|
|
5026
5025
|
/** @description The IDs of associated custom variables. */
|
|
5027
|
-
custom_variable_ids?: components["schemas"]["FlakeId"][]
|
|
5026
|
+
custom_variable_ids?: null | components["schemas"]["FlakeId"][];
|
|
5028
5027
|
};
|
|
5029
5028
|
/** @description Represents the configuration for trials of a product */
|
|
5030
5029
|
UpsertProductTrialConfigurationDto: {
|
|
5031
5030
|
/** @description Indicates if trials should be enabled for the product. */
|
|
5032
|
-
enabled?:
|
|
5031
|
+
enabled?: null | boolean;
|
|
5033
5032
|
/**
|
|
5034
5033
|
* Format: int32
|
|
5035
5034
|
* @description The trial period value.
|
|
5036
5035
|
*/
|
|
5037
|
-
period_value?:
|
|
5036
|
+
period_value?: null | number;
|
|
5038
5037
|
period_scale?: components["schemas"]["ProductSubscriptionIntervalScale"];
|
|
5039
5038
|
/** @description Indicates if the trial should be revoked immediately when canceled or at the end of the trial. */
|
|
5040
|
-
revoke_immediately_when_canceled?:
|
|
5039
|
+
revoke_immediately_when_canceled?: null | boolean;
|
|
5041
5040
|
/** @description Restricts trials to customers who have no orders within the lookback period.
|
|
5042
5041
|
* When enabled, customers with recent orders will be ineligible for trials. */
|
|
5043
|
-
new_customers_only?:
|
|
5042
|
+
new_customers_only?: null | boolean;
|
|
5044
5043
|
/**
|
|
5045
5044
|
* Format: int32
|
|
5046
5045
|
* @description The lookback period value for determining if a customer is "new".
|
|
5047
5046
|
* Only used when new_customers_only is enabled.
|
|
5048
5047
|
*/
|
|
5049
|
-
new_customer_order_lookback_value?:
|
|
5048
|
+
new_customer_order_lookback_value?: null | number;
|
|
5050
5049
|
new_customer_order_lookback_scale?: components["schemas"]["ProductSubscriptionIntervalScale"];
|
|
5051
5050
|
/** @description Allows customers to trial again after a cooldown period following their previous trial.
|
|
5052
5051
|
* When disabled, customers can only trial once and never become eligible again. */
|
|
5053
|
-
allow_repeat_trials?:
|
|
5052
|
+
allow_repeat_trials?: null | boolean;
|
|
5054
5053
|
/**
|
|
5055
5054
|
* Format: int32
|
|
5056
5055
|
* @description The cooldown period value before a customer becomes eligible for another trial.
|
|
5057
5056
|
* Only used when allow_repeat_trials is enabled.
|
|
5058
5057
|
*/
|
|
5059
|
-
repeat_trial_cooldown_value?:
|
|
5058
|
+
repeat_trial_cooldown_value?: null | number;
|
|
5060
5059
|
repeat_trial_cooldown_scale?: components["schemas"]["ProductSubscriptionIntervalScale"];
|
|
5061
5060
|
};
|
|
5062
5061
|
UpsertTagRequestDto: {
|
|
5063
|
-
name?:
|
|
5064
|
-
slug?:
|
|
5065
|
-
description?:
|
|
5066
|
-
enabled?:
|
|
5062
|
+
name?: null | string;
|
|
5063
|
+
slug?: null | string;
|
|
5064
|
+
description?: null | string;
|
|
5065
|
+
enabled?: null | boolean;
|
|
5067
5066
|
};
|
|
5068
5067
|
/** @description A validation error. */
|
|
5069
5068
|
ValidationError: {
|
|
@@ -5091,9 +5090,9 @@ export interface components {
|
|
|
5091
5090
|
secret: string;
|
|
5092
5091
|
subscribed_to: components["schemas"]["WebhookEventType"];
|
|
5093
5092
|
type: components["schemas"]["WebhookType"];
|
|
5094
|
-
discord_description_template?:
|
|
5095
|
-
discord_title?:
|
|
5096
|
-
discord_color?:
|
|
5093
|
+
discord_description_template?: null | string;
|
|
5094
|
+
discord_title?: null | string;
|
|
5095
|
+
discord_color?: null | string;
|
|
5097
5096
|
};
|
|
5098
5097
|
/** @enum {string} */
|
|
5099
5098
|
WebhookType: "json_v1" | "discord_v1";
|
|
@@ -5475,7 +5474,7 @@ export interface operations {
|
|
|
5475
5474
|
[name: string]: unknown;
|
|
5476
5475
|
};
|
|
5477
5476
|
content: {
|
|
5478
|
-
"application/json": components["schemas"]["
|
|
5477
|
+
"application/json": components["schemas"]["CheckForBanIDByIdentitiesResponseDto"];
|
|
5479
5478
|
};
|
|
5480
5479
|
};
|
|
5481
5480
|
/** @description Error response */
|