@paynow-gg/typescript-sdk 1.0.57 → 1.0.59
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 +6 -36
- package/dist/generated/management.d.ts.map +1 -1
- package/dist/generated/management.js.map +1 -1
- package/dist/generated/storefront.d.ts +4 -34
- 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: {
|
|
@@ -4306,36 +4305,12 @@ export interface components {
|
|
|
4306
4305
|
* @enum {string}
|
|
4307
4306
|
*/
|
|
4308
4307
|
PaymentStatusDto: "unknown" | "created" | "pending" | "completed" | "canceled" | "failed" | "refunded" | "chargeback" | "refund_failed" | "refund_processing";
|
|
4309
|
-
/** @description A single paysafecard card */
|
|
4310
|
-
PaysafeCardCardDto: {
|
|
4311
|
-
/**
|
|
4312
|
-
* @description The card serial number
|
|
4313
|
-
* @example 1234567890123456
|
|
4314
|
-
*/
|
|
4315
|
-
serial: string;
|
|
4316
|
-
/**
|
|
4317
|
-
* @description The currency code
|
|
4318
|
-
* @example eur
|
|
4319
|
-
*/
|
|
4320
|
-
currency: string;
|
|
4321
|
-
/**
|
|
4322
|
-
* Format: int64
|
|
4323
|
-
* @description The amount in minor units
|
|
4324
|
-
* @example 1000
|
|
4325
|
-
*/
|
|
4326
|
-
amount: number;
|
|
4327
|
-
/** @description The card type */
|
|
4328
|
-
type: string;
|
|
4329
|
-
/**
|
|
4330
|
-
* @description The country code
|
|
4331
|
-
* @example DE
|
|
4332
|
-
*/
|
|
4333
|
-
country: string;
|
|
4334
|
-
};
|
|
4335
4308
|
/** @description Paysafecard payment method details */
|
|
4336
4309
|
PaysafeCardDetailsDto: {
|
|
4337
|
-
|
|
4338
|
-
|
|
4310
|
+
first_name?: null | string;
|
|
4311
|
+
last_name?: null | string;
|
|
4312
|
+
psc_id?: null | string;
|
|
4313
|
+
association_id?: null | string;
|
|
4339
4314
|
};
|
|
4340
4315
|
/**
|
|
4341
4316
|
* Format: period
|
|
@@ -4696,7 +4671,7 @@ export interface components {
|
|
|
4696
4671
|
* Contact support for help with setting the correct tax code.
|
|
4697
4672
|
* @enum {string}
|
|
4698
4673
|
*/
|
|
4699
|
-
ProductTaxCode: "unknown" | "digital_goods_subscription" | "digital_goods_permanent" | "saas" | "downloaded_software" | "digital_goods_subscription_gaming" | "digital_goods_permanent_gaming";
|
|
4674
|
+
ProductTaxCode: "unknown" | "digital_goods_subscription" | "digital_goods_permanent" | "saas" | "downloaded_software" | "digital_goods_subscription_gaming" | "digital_goods_permanent_gaming" | "iaas" | "paas" | "saas_security" | "saas_storage";
|
|
4700
4675
|
/** @description Represents the configuration for trials of a product */
|
|
4701
4676
|
ProductTrialConfigurationDto: {
|
|
4702
4677
|
/** @description Indicates if trials should be enabled for the product. */
|
|
@@ -5169,7 +5144,6 @@ export interface components {
|
|
|
5169
5144
|
/** @description Represents a PayNow store and its associated configuration. */
|
|
5170
5145
|
StoreDto: {
|
|
5171
5146
|
id: components["schemas"]["FlakeId"];
|
|
5172
|
-
trust?: components["schemas"]["StoreTrustDto"];
|
|
5173
5147
|
owner_id: components["schemas"]["FlakeId"];
|
|
5174
5148
|
/** @description The URL-safe slug used to identify the store (e.g. "my-rust-server"). */
|
|
5175
5149
|
slug: string;
|
|
@@ -5217,8 +5191,6 @@ export interface components {
|
|
|
5217
5191
|
*/
|
|
5218
5192
|
onboarding_completed_at?: null | string;
|
|
5219
5193
|
platform_store_type_association?: components["schemas"]["PlatformStoreTypeAssociationDetailsDto"];
|
|
5220
|
-
/** @description The list of members who have access to manage this store. */
|
|
5221
|
-
members?: null | components["schemas"]["StoreMemberDto"][];
|
|
5222
5194
|
};
|
|
5223
5195
|
/** @description Represents a member of a PayNow store. */
|
|
5224
5196
|
StoreMemberDto: {
|
|
@@ -5602,7 +5574,6 @@ export interface components {
|
|
|
5602
5574
|
/** @description Human-readable identifier for the subscription. */
|
|
5603
5575
|
pretty_id: string;
|
|
5604
5576
|
store_id: components["schemas"]["FlakeId"];
|
|
5605
|
-
store?: components["schemas"]["StorefrontStoreDto"];
|
|
5606
5577
|
customer: components["schemas"]["CustomerDto"];
|
|
5607
5578
|
payment_method_id?: components["schemas"]["FlakeId"];
|
|
5608
5579
|
payment_method?: components["schemas"]["PaymentMethodDto"];
|
|
@@ -5870,7 +5841,6 @@ export interface components {
|
|
|
5870
5841
|
/** @description Identifier for the pricing region associated with this subscription line. */
|
|
5871
5842
|
pricing_region_id?: null | string;
|
|
5872
5843
|
gift_to_customer_id?: components["schemas"]["FlakeId"];
|
|
5873
|
-
gift_to_customer?: components["schemas"]["CustomerDto"];
|
|
5874
5844
|
selected_gameserver_id?: components["schemas"]["FlakeId"];
|
|
5875
5845
|
sale_id?: components["schemas"]["FlakeId"];
|
|
5876
5846
|
trial_id?: components["schemas"]["FlakeId"];
|