@paynow-gg/typescript-sdk 1.0.56 → 1.0.58
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/management.d.ts +9 -7
- package/dist/generated/management.d.ts.map +1 -1
- package/dist/generated/management.js.map +1 -1
- package/dist/generated/storefront.d.ts +8 -6
- package/dist/generated/storefront.d.ts.map +1 -1
- package/dist/generated/storefront.js.map +1 -1
- package/package.json +1 -1
|
@@ -2822,7 +2822,6 @@ export interface components {
|
|
|
2822
2822
|
CustomerDto: {
|
|
2823
2823
|
id: components["schemas"]["FlakeId"];
|
|
2824
2824
|
store_id: components["schemas"]["FlakeId"];
|
|
2825
|
-
store?: components["schemas"]["StoreDto"];
|
|
2826
2825
|
profile?: components["schemas"]["GenericProfileDto"];
|
|
2827
2826
|
steam_id?: components["schemas"]["SteamId"];
|
|
2828
2827
|
steam?: components["schemas"]["SteamProfileDto"];
|
|
@@ -4134,7 +4133,7 @@ export interface components {
|
|
|
4134
4133
|
last_payment_error?: components["schemas"]["LastPaymentErrorDto"];
|
|
4135
4134
|
};
|
|
4136
4135
|
/** @enum {string} */
|
|
4137
|
-
PaymentGatewayDto: "invalid" | "stripe" | "paypal" | "forumpay" | "steamskins" | "nuvei" | "pagseguro" | "tazapay";
|
|
4136
|
+
PaymentGatewayDto: "invalid" | "stripe" | "paypal" | "forumpay" | "steamskins" | "nuvei" | "pagseguro" | "tazapay" | "paysafe";
|
|
4138
4137
|
/** @description Contains detailed information about a payment method.
|
|
4139
4138
|
* DISCLAIMER: These fields are not guaranteed to be backwards compatible and may change or be removed without notice. */
|
|
4140
4139
|
PaymentMethodDetailsDto: {
|
|
@@ -4151,6 +4150,7 @@ export interface components {
|
|
|
4151
4150
|
alipay?: components["schemas"]["AlipayDetailsDto"];
|
|
4152
4151
|
pay_by_bank?: components["schemas"]["PayByBankDetailsDto"];
|
|
4153
4152
|
pix?: components["schemas"]["PixDetailsDto"];
|
|
4153
|
+
paysafecard?: components["schemas"]["PaysafeCardDetailsDto"];
|
|
4154
4154
|
};
|
|
4155
4155
|
/** @description Represents a stored payment method */
|
|
4156
4156
|
PaymentMethodDto: {
|
|
@@ -4305,6 +4305,13 @@ export interface components {
|
|
|
4305
4305
|
* @enum {string}
|
|
4306
4306
|
*/
|
|
4307
4307
|
PaymentStatusDto: "unknown" | "created" | "pending" | "completed" | "canceled" | "failed" | "refunded" | "chargeback" | "refund_failed" | "refund_processing";
|
|
4308
|
+
/** @description Paysafecard payment method details */
|
|
4309
|
+
PaysafeCardDetailsDto: {
|
|
4310
|
+
first_name?: null | string;
|
|
4311
|
+
last_name?: null | string;
|
|
4312
|
+
psc_id?: null | string;
|
|
4313
|
+
association_id?: null | string;
|
|
4314
|
+
};
|
|
4308
4315
|
/**
|
|
4309
4316
|
* Format: period
|
|
4310
4317
|
* @description ISO 8601 duration format
|
|
@@ -5137,7 +5144,6 @@ export interface components {
|
|
|
5137
5144
|
/** @description Represents a PayNow store and its associated configuration. */
|
|
5138
5145
|
StoreDto: {
|
|
5139
5146
|
id: components["schemas"]["FlakeId"];
|
|
5140
|
-
trust?: components["schemas"]["StoreTrustDto"];
|
|
5141
5147
|
owner_id: components["schemas"]["FlakeId"];
|
|
5142
5148
|
/** @description The URL-safe slug used to identify the store (e.g. "my-rust-server"). */
|
|
5143
5149
|
slug: string;
|
|
@@ -5185,8 +5191,6 @@ export interface components {
|
|
|
5185
5191
|
*/
|
|
5186
5192
|
onboarding_completed_at?: null | string;
|
|
5187
5193
|
platform_store_type_association?: components["schemas"]["PlatformStoreTypeAssociationDetailsDto"];
|
|
5188
|
-
/** @description The list of members who have access to manage this store. */
|
|
5189
|
-
members?: null | components["schemas"]["StoreMemberDto"][];
|
|
5190
5194
|
};
|
|
5191
5195
|
/** @description Represents a member of a PayNow store. */
|
|
5192
5196
|
StoreMemberDto: {
|
|
@@ -5570,7 +5574,6 @@ export interface components {
|
|
|
5570
5574
|
/** @description Human-readable identifier for the subscription. */
|
|
5571
5575
|
pretty_id: string;
|
|
5572
5576
|
store_id: components["schemas"]["FlakeId"];
|
|
5573
|
-
store?: components["schemas"]["StorefrontStoreDto"];
|
|
5574
5577
|
customer: components["schemas"]["CustomerDto"];
|
|
5575
5578
|
payment_method_id?: components["schemas"]["FlakeId"];
|
|
5576
5579
|
payment_method?: components["schemas"]["PaymentMethodDto"];
|
|
@@ -5838,7 +5841,6 @@ export interface components {
|
|
|
5838
5841
|
/** @description Identifier for the pricing region associated with this subscription line. */
|
|
5839
5842
|
pricing_region_id?: null | string;
|
|
5840
5843
|
gift_to_customer_id?: components["schemas"]["FlakeId"];
|
|
5841
|
-
gift_to_customer?: components["schemas"]["CustomerDto"];
|
|
5842
5844
|
selected_gameserver_id?: components["schemas"]["FlakeId"];
|
|
5843
5845
|
sale_id?: components["schemas"]["FlakeId"];
|
|
5844
5846
|
trial_id?: components["schemas"]["FlakeId"];
|