@emilgroup/payment-sdk-node 1.0.0 → 1.0.1

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/README.md CHANGED
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
17
17
  Navigate to the folder of your consuming project and run one of the following commands:
18
18
 
19
19
  ```
20
- npm install @emilgroup/payment-sdk-node@1.0.0 --save
20
+ npm install @emilgroup/payment-sdk-node@1.0.1 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/payment-sdk-node@1.0.0
24
+ yarn add @emilgroup/payment-sdk-node@1.0.1
25
25
  ```
26
26
 
27
27
  And then you can import `PaymentsApi`.
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { PaymentMethodClass } from './payment-method-class';
12
13
  /**
13
14
  *
14
15
  * @export
@@ -17,10 +18,10 @@
17
18
  export interface ListPaymentMethodsResponseClass {
18
19
  /**
19
20
  * Payment methods
20
- * @type {Array<string>}
21
+ * @type {Array<PaymentMethodClass>}
21
22
  * @memberof ListPaymentMethodsResponseClass
22
23
  */
23
- 'items': Array<string>;
24
+ 'items': Array<PaymentMethodClass>;
24
25
  /**
25
26
  * Next page token
26
27
  * @type {string}
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { PaymentClass } from './payment-class';
12
13
  /**
13
14
  *
14
15
  * @export
@@ -17,10 +18,10 @@
17
18
  export interface ListPaymentsResponseClass {
18
19
  /**
19
20
  * Payments
20
- * @type {Array<string>}
21
+ * @type {Array<PaymentClass>}
21
22
  * @memberof ListPaymentsResponseClass
22
23
  */
23
- 'items': Array<string>;
24
+ 'items': Array<PaymentClass>;
24
25
  /**
25
26
  * Next page token
26
27
  * @type {string}
@@ -13,6 +13,7 @@
13
13
  */
14
14
 
15
15
 
16
+ import { PaymentMethodClass } from './payment-method-class';
16
17
 
17
18
  /**
18
19
  *
@@ -22,10 +23,10 @@
22
23
  export interface ListPaymentMethodsResponseClass {
23
24
  /**
24
25
  * Payment methods
25
- * @type {Array<string>}
26
+ * @type {Array<PaymentMethodClass>}
26
27
  * @memberof ListPaymentMethodsResponseClass
27
28
  */
28
- 'items': Array<string>;
29
+ 'items': Array<PaymentMethodClass>;
29
30
  /**
30
31
  * Next page token
31
32
  * @type {string}
@@ -13,6 +13,7 @@
13
13
  */
14
14
 
15
15
 
16
+ import { PaymentClass } from './payment-class';
16
17
 
17
18
  /**
18
19
  *
@@ -22,10 +23,10 @@
22
23
  export interface ListPaymentsResponseClass {
23
24
  /**
24
25
  * Payments
25
- * @type {Array<string>}
26
+ * @type {Array<PaymentClass>}
26
27
  * @memberof ListPaymentsResponseClass
27
28
  */
28
- 'items': Array<string>;
29
+ 'items': Array<PaymentClass>;
29
30
  /**
30
31
  * Next page token
31
32
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/payment-sdk-node",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "OpenAPI client for @emilgroup/payment-sdk-node",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [