@paynow-gg/typescript-sdk 1.0.56 → 1.0.57
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 +33 -1
- package/dist/generated/management.d.ts.map +1 -1
- package/dist/generated/management.js.map +1 -1
- package/dist/generated/storefront.d.ts +32 -0
- package/dist/generated/storefront.d.ts.map +1 -1
- package/dist/generated/storefront.js.map +1 -1
- package/package.json +1 -1
|
@@ -4134,7 +4134,7 @@ export interface components {
|
|
|
4134
4134
|
last_payment_error?: components["schemas"]["LastPaymentErrorDto"];
|
|
4135
4135
|
};
|
|
4136
4136
|
/** @enum {string} */
|
|
4137
|
-
PaymentGatewayDto: "invalid" | "stripe" | "paypal" | "forumpay" | "steamskins" | "nuvei" | "pagseguro" | "tazapay";
|
|
4137
|
+
PaymentGatewayDto: "invalid" | "stripe" | "paypal" | "forumpay" | "steamskins" | "nuvei" | "pagseguro" | "tazapay" | "paysafecard";
|
|
4138
4138
|
/** @description Contains detailed information about a payment method.
|
|
4139
4139
|
* DISCLAIMER: These fields are not guaranteed to be backwards compatible and may change or be removed without notice. */
|
|
4140
4140
|
PaymentMethodDetailsDto: {
|
|
@@ -4151,6 +4151,7 @@ export interface components {
|
|
|
4151
4151
|
alipay?: components["schemas"]["AlipayDetailsDto"];
|
|
4152
4152
|
pay_by_bank?: components["schemas"]["PayByBankDetailsDto"];
|
|
4153
4153
|
pix?: components["schemas"]["PixDetailsDto"];
|
|
4154
|
+
paysafecard?: components["schemas"]["PaysafeCardDetailsDto"];
|
|
4154
4155
|
};
|
|
4155
4156
|
/** @description Represents a stored payment method */
|
|
4156
4157
|
PaymentMethodDto: {
|
|
@@ -4305,6 +4306,37 @@ export interface components {
|
|
|
4305
4306
|
* @enum {string}
|
|
4306
4307
|
*/
|
|
4307
4308
|
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
|
+
/** @description Paysafecard payment method details */
|
|
4336
|
+
PaysafeCardDetailsDto: {
|
|
4337
|
+
/** @description The paysafecard cards used for payment */
|
|
4338
|
+
cards?: null | components["schemas"]["PaysafeCardCardDto"][];
|
|
4339
|
+
};
|
|
4308
4340
|
/**
|
|
4309
4341
|
* Format: period
|
|
4310
4342
|
* @description ISO 8601 duration format
|