@emilgroup/payment-sdk 1.13.1-beta.72 → 1.13.1-beta.74

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.
Files changed (29) hide show
  1. package/.openapi-generator/FILES +3 -1
  2. package/README.md +2 -2
  3. package/api/bank-transaction-api.ts +14 -31
  4. package/api/payments-api.ts +129 -4
  5. package/dist/api/bank-transaction-api.d.ts +11 -21
  6. package/dist/api/bank-transaction-api.js +12 -19
  7. package/dist/api/payments-api.d.ts +73 -4
  8. package/dist/api/payments-api.js +109 -4
  9. package/dist/models/bank-transaction-class-without-expand-properties.d.ts +7 -12
  10. package/dist/models/bank-transaction-class.d.ts +7 -12
  11. package/dist/models/bank-transaction-invoice-class.d.ts +54 -0
  12. package/dist/models/create-payment-order-dto.d.ts +48 -0
  13. package/{models/unlink-bank-transaction-request-dto-rest.ts → dist/models/create-payment-order-dto.js} +2 -17
  14. package/dist/models/create-payment-order-request-dto.d.ts +48 -0
  15. package/dist/models/{unlink-bank-transaction-request-dto-rest.d.ts → create-payment-order-request-dto.js} +4 -13
  16. package/dist/models/index.d.ts +3 -1
  17. package/dist/models/index.js +3 -1
  18. package/dist/models/link-bank-transaction-request-dto-rest.d.ts +3 -3
  19. package/dist/models/unlinked-bank-transaction-response-class.d.ts +7 -0
  20. package/models/bank-transaction-class-without-expand-properties.ts +7 -12
  21. package/models/bank-transaction-class.ts +7 -12
  22. package/models/bank-transaction-invoice-class.ts +60 -0
  23. package/models/create-payment-order-dto.ts +54 -0
  24. package/models/create-payment-order-request-dto.ts +54 -0
  25. package/models/index.ts +3 -1
  26. package/models/link-bank-transaction-request-dto-rest.ts +3 -3
  27. package/models/unlinked-bank-transaction-response-class.ts +7 -0
  28. package/package.json +1 -1
  29. /package/dist/models/{unlink-bank-transaction-request-dto-rest.js → bank-transaction-invoice-class.js} +0 -0
@@ -0,0 +1,48 @@
1
+ /**
2
+ * Emil Payment Service
3
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface CreatePaymentOrderDto
16
+ */
17
+ export interface CreatePaymentOrderDto {
18
+ /**
19
+ * Invoice referenced in this payment order.
20
+ * @type {number}
21
+ * @memberof CreatePaymentOrderDto
22
+ */
23
+ 'invoiceId': number;
24
+ /**
25
+ * Optional comment.
26
+ * @type {string}
27
+ * @memberof CreatePaymentOrderDto
28
+ */
29
+ 'comment'?: string;
30
+ /**
31
+ * Optional payment date.
32
+ * @type {string}
33
+ * @memberof CreatePaymentOrderDto
34
+ */
35
+ 'receivedDate'?: string;
36
+ /**
37
+ * Optional reference number.
38
+ * @type {string}
39
+ * @memberof CreatePaymentOrderDto
40
+ */
41
+ 'referenceNumber'?: string;
42
+ /**
43
+ * Optional field contain extra information.
44
+ * @type {object}
45
+ * @memberof CreatePaymentOrderDto
46
+ */
47
+ 'metadata': object;
48
+ }
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  /* tslint:disable */
2
3
  /* eslint-disable */
3
4
  /**
@@ -11,20 +12,4 @@
11
12
  * https://openapi-generator.tech
12
13
  * Do not edit the class manually.
13
14
  */
14
-
15
-
16
-
17
- /**
18
- *
19
- * @export
20
- * @interface UnlinkBankTransactionRequestDtoRest
21
- */
22
- export interface UnlinkBankTransactionRequestDtoRest {
23
- /**
24
- * The code of the invoice that the transaction will be unlinked from
25
- * @type {string}
26
- * @memberof UnlinkBankTransactionRequestDtoRest
27
- */
28
- 'invoiceCode': string;
29
- }
30
-
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,48 @@
1
+ /**
2
+ * Emil Payment Service
3
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface CreatePaymentOrderRequestDto
16
+ */
17
+ export interface CreatePaymentOrderRequestDto {
18
+ /**
19
+ *
20
+ * @type {number}
21
+ * @memberof CreatePaymentOrderRequestDto
22
+ */
23
+ 'invoiceId': number;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof CreatePaymentOrderRequestDto
28
+ */
29
+ 'comment'?: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof CreatePaymentOrderRequestDto
34
+ */
35
+ 'receivedDate'?: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof CreatePaymentOrderRequestDto
40
+ */
41
+ 'referenceNumber'?: string;
42
+ /**
43
+ *
44
+ * @type {object}
45
+ * @memberof CreatePaymentOrderRequestDto
46
+ */
47
+ 'metadata': object;
48
+ }
@@ -1,3 +1,6 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
1
4
  /**
2
5
  * Emil Payment Service
3
6
  * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
@@ -9,16 +12,4 @@
9
12
  * https://openapi-generator.tech
10
13
  * Do not edit the class manually.
11
14
  */
12
- /**
13
- *
14
- * @export
15
- * @interface UnlinkBankTransactionRequestDtoRest
16
- */
17
- export interface UnlinkBankTransactionRequestDtoRest {
18
- /**
19
- * The code of the invoice that the transaction will be unlinked from
20
- * @type {string}
21
- * @memberof UnlinkBankTransactionRequestDtoRest
22
- */
23
- 'invoiceCode': string;
24
- }
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -3,6 +3,7 @@ export * from './bank-account-class-without-expand-properties';
3
3
  export * from './bank-order-class';
4
4
  export * from './bank-transaction-class';
5
5
  export * from './bank-transaction-class-without-expand-properties';
6
+ export * from './bank-transaction-invoice-class';
6
7
  export * from './billing-profile-dto';
7
8
  export * from './billing-profile-limited-response-dto';
8
9
  export * from './card-details-dto';
@@ -17,6 +18,8 @@ export * from './create-bank-account-response-class';
17
18
  export * from './create-bank-order-request-dto';
18
19
  export * from './create-bank-order-response-class';
19
20
  export * from './create-payment-method-response-class';
21
+ export * from './create-payment-order-dto';
22
+ export * from './create-payment-order-request-dto';
20
23
  export * from './create-payment-reminder-request-dto';
21
24
  export * from './create-payment-reminder-response-class';
22
25
  export * from './create-payment-request-dto';
@@ -76,7 +79,6 @@ export * from './suggestion-generation-progress-class';
76
79
  export * from './symphony-profile-limited-response-dto';
77
80
  export * from './tenant-bank-account-class';
78
81
  export * from './tenant-bank-account-class-without-expand-properties';
79
- export * from './unlink-bank-transaction-request-dto-rest';
80
82
  export * from './unlink-bank-transactions-response-class';
81
83
  export * from './unlinked-bank-transaction-response-class';
82
84
  export * from './update-bank-account-request-dto';
@@ -19,6 +19,7 @@ __exportStar(require("./bank-account-class-without-expand-properties"), exports)
19
19
  __exportStar(require("./bank-order-class"), exports);
20
20
  __exportStar(require("./bank-transaction-class"), exports);
21
21
  __exportStar(require("./bank-transaction-class-without-expand-properties"), exports);
22
+ __exportStar(require("./bank-transaction-invoice-class"), exports);
22
23
  __exportStar(require("./billing-profile-dto"), exports);
23
24
  __exportStar(require("./billing-profile-limited-response-dto"), exports);
24
25
  __exportStar(require("./card-details-dto"), exports);
@@ -33,6 +34,8 @@ __exportStar(require("./create-bank-account-response-class"), exports);
33
34
  __exportStar(require("./create-bank-order-request-dto"), exports);
34
35
  __exportStar(require("./create-bank-order-response-class"), exports);
35
36
  __exportStar(require("./create-payment-method-response-class"), exports);
37
+ __exportStar(require("./create-payment-order-dto"), exports);
38
+ __exportStar(require("./create-payment-order-request-dto"), exports);
36
39
  __exportStar(require("./create-payment-reminder-request-dto"), exports);
37
40
  __exportStar(require("./create-payment-reminder-response-class"), exports);
38
41
  __exportStar(require("./create-payment-request-dto"), exports);
@@ -92,7 +95,6 @@ __exportStar(require("./suggestion-generation-progress-class"), exports);
92
95
  __exportStar(require("./symphony-profile-limited-response-dto"), exports);
93
96
  __exportStar(require("./tenant-bank-account-class"), exports);
94
97
  __exportStar(require("./tenant-bank-account-class-without-expand-properties"), exports);
95
- __exportStar(require("./unlink-bank-transaction-request-dto-rest"), exports);
96
98
  __exportStar(require("./unlink-bank-transactions-response-class"), exports);
97
99
  __exportStar(require("./unlinked-bank-transaction-response-class"), exports);
98
100
  __exportStar(require("./update-bank-account-request-dto"), exports);
@@ -16,9 +16,9 @@
16
16
  */
17
17
  export interface LinkBankTransactionRequestDtoRest {
18
18
  /**
19
- * The code of the invoice that the transaction will be linked to.
20
- * @type {string}
19
+ * List of invoice codes associated with bank transaction.
20
+ * @type {Array<number>}
21
21
  * @memberof LinkBankTransactionRequestDtoRest
22
22
  */
23
- 'invoiceCode': string;
23
+ 'invoiceIds': Array<number>;
24
24
  }
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import { BankOrderClass } from './bank-order-class';
13
+ import { BankTransactionInvoiceClass } from './bank-transaction-invoice-class';
13
14
  /**
14
15
  *
15
16
  * @export
@@ -94,6 +95,12 @@ export interface UnlinkedBankTransactionResponseClass {
94
95
  * @memberof UnlinkedBankTransactionResponseClass
95
96
  */
96
97
  'isLinked': boolean;
98
+ /**
99
+ * The bank transaction invoices that this bank transaction is linked to
100
+ * @type {Array<BankTransactionInvoiceClass>}
101
+ * @memberof UnlinkedBankTransactionResponseClass
102
+ */
103
+ 'bankTransactionInvoices'?: Array<BankTransactionInvoiceClass>;
97
104
  /**
98
105
  * The linked bank order object
99
106
  * @type {BankOrderClass}
@@ -14,6 +14,7 @@
14
14
 
15
15
 
16
16
  import { BankOrderClass } from './bank-order-class';
17
+ import { BankTransactionInvoiceClass } from './bank-transaction-invoice-class';
17
18
 
18
19
  /**
19
20
  *
@@ -99,24 +100,18 @@ export interface BankTransactionClassWithoutExpandProperties {
99
100
  * @memberof BankTransactionClassWithoutExpandProperties
100
101
  */
101
102
  'linkedTransactionId'?: number;
102
- /**
103
- * The code of the invoice that this bank transaction is linked to
104
- * @type {string}
105
- * @memberof BankTransactionClassWithoutExpandProperties
106
- */
107
- 'linkedInvoiceCode'?: string;
108
- /**
109
- * The identifying invoice number that this bank transaction is linked to
110
- * @type {string}
111
- * @memberof BankTransactionClassWithoutExpandProperties
112
- */
113
- 'linkedInvoiceNumber'?: string;
114
103
  /**
115
104
  * Boolean flag to indicate if the bank transaction is linked to an invoice - defaults to false
116
105
  * @type {boolean}
117
106
  * @memberof BankTransactionClassWithoutExpandProperties
118
107
  */
119
108
  'isLinked': boolean;
109
+ /**
110
+ * The bank transaction invoices that this bank transaction is linked to
111
+ * @type {Array<BankTransactionInvoiceClass>}
112
+ * @memberof BankTransactionClassWithoutExpandProperties
113
+ */
114
+ 'bankTransactionInvoices'?: Array<BankTransactionInvoiceClass>;
120
115
  /**
121
116
  * The linked bank order object
122
117
  * @type {BankOrderClass}
@@ -14,6 +14,7 @@
14
14
 
15
15
 
16
16
  import { BankOrderClass } from './bank-order-class';
17
+ import { BankTransactionInvoiceClass } from './bank-transaction-invoice-class';
17
18
  import { InvoiceMatchSuggestionClass } from './invoice-match-suggestion-class';
18
19
  import { SharedTransactionClass } from './shared-transaction-class';
19
20
  import { SuggestionGenerationProgressClass } from './suggestion-generation-progress-class';
@@ -103,24 +104,18 @@ export interface BankTransactionClass {
103
104
  * @memberof BankTransactionClass
104
105
  */
105
106
  'linkedTransactionId'?: number;
106
- /**
107
- * The code of the invoice that this bank transaction is linked to
108
- * @type {string}
109
- * @memberof BankTransactionClass
110
- */
111
- 'linkedInvoiceCode'?: string;
112
- /**
113
- * The identifying invoice number that this bank transaction is linked to
114
- * @type {string}
115
- * @memberof BankTransactionClass
116
- */
117
- 'linkedInvoiceNumber'?: string;
118
107
  /**
119
108
  * Boolean flag to indicate if the bank transaction is linked to an invoice - defaults to false
120
109
  * @type {boolean}
121
110
  * @memberof BankTransactionClass
122
111
  */
123
112
  'isLinked': boolean;
113
+ /**
114
+ * The bank transaction invoices that this bank transaction is linked to
115
+ * @type {Array<BankTransactionInvoiceClass>}
116
+ * @memberof BankTransactionClass
117
+ */
118
+ 'bankTransactionInvoices'?: Array<BankTransactionInvoiceClass>;
124
119
  /**
125
120
  * The bank account object that this transaction is belongs to
126
121
  * @type {TenantBankAccountClassWithoutExpandProperties}
@@ -0,0 +1,60 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil Payment Service
5
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface BankTransactionInvoiceClass
21
+ */
22
+ export interface BankTransactionInvoiceClass {
23
+ /**
24
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
25
+ * @type {number}
26
+ * @memberof BankTransactionInvoiceClass
27
+ */
28
+ 'id': number;
29
+ /**
30
+ * Unique identifier for the object.
31
+ * @type {string}
32
+ * @memberof BankTransactionInvoiceClass
33
+ */
34
+ 'code': string;
35
+ /**
36
+ * Bank transaction id
37
+ * @type {number}
38
+ * @memberof BankTransactionInvoiceClass
39
+ */
40
+ 'bankTransactionId': number;
41
+ /**
42
+ * Invoice code of the bank transaction invoice
43
+ * @type {string}
44
+ * @memberof BankTransactionInvoiceClass
45
+ */
46
+ 'invoiceCode': string;
47
+ /**
48
+ * Invoice number of the bank transaction invoice
49
+ * @type {string}
50
+ * @memberof BankTransactionInvoiceClass
51
+ */
52
+ 'invoiceNumber': string;
53
+ /**
54
+ * Time at which the object was created.
55
+ * @type {string}
56
+ * @memberof BankTransactionInvoiceClass
57
+ */
58
+ 'createdAt': string;
59
+ }
60
+
@@ -0,0 +1,54 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil Payment Service
5
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface CreatePaymentOrderDto
21
+ */
22
+ export interface CreatePaymentOrderDto {
23
+ /**
24
+ * Invoice referenced in this payment order.
25
+ * @type {number}
26
+ * @memberof CreatePaymentOrderDto
27
+ */
28
+ 'invoiceId': number;
29
+ /**
30
+ * Optional comment.
31
+ * @type {string}
32
+ * @memberof CreatePaymentOrderDto
33
+ */
34
+ 'comment'?: string;
35
+ /**
36
+ * Optional payment date.
37
+ * @type {string}
38
+ * @memberof CreatePaymentOrderDto
39
+ */
40
+ 'receivedDate'?: string;
41
+ /**
42
+ * Optional reference number.
43
+ * @type {string}
44
+ * @memberof CreatePaymentOrderDto
45
+ */
46
+ 'referenceNumber'?: string;
47
+ /**
48
+ * Optional field contain extra information.
49
+ * @type {object}
50
+ * @memberof CreatePaymentOrderDto
51
+ */
52
+ 'metadata': object;
53
+ }
54
+
@@ -0,0 +1,54 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil Payment Service
5
+ * This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface CreatePaymentOrderRequestDto
21
+ */
22
+ export interface CreatePaymentOrderRequestDto {
23
+ /**
24
+ *
25
+ * @type {number}
26
+ * @memberof CreatePaymentOrderRequestDto
27
+ */
28
+ 'invoiceId': number;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof CreatePaymentOrderRequestDto
33
+ */
34
+ 'comment'?: string;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof CreatePaymentOrderRequestDto
39
+ */
40
+ 'receivedDate'?: string;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof CreatePaymentOrderRequestDto
45
+ */
46
+ 'referenceNumber'?: string;
47
+ /**
48
+ *
49
+ * @type {object}
50
+ * @memberof CreatePaymentOrderRequestDto
51
+ */
52
+ 'metadata': object;
53
+ }
54
+
package/models/index.ts CHANGED
@@ -3,6 +3,7 @@ export * from './bank-account-class-without-expand-properties';
3
3
  export * from './bank-order-class';
4
4
  export * from './bank-transaction-class';
5
5
  export * from './bank-transaction-class-without-expand-properties';
6
+ export * from './bank-transaction-invoice-class';
6
7
  export * from './billing-profile-dto';
7
8
  export * from './billing-profile-limited-response-dto';
8
9
  export * from './card-details-dto';
@@ -17,6 +18,8 @@ export * from './create-bank-account-response-class';
17
18
  export * from './create-bank-order-request-dto';
18
19
  export * from './create-bank-order-response-class';
19
20
  export * from './create-payment-method-response-class';
21
+ export * from './create-payment-order-dto';
22
+ export * from './create-payment-order-request-dto';
20
23
  export * from './create-payment-reminder-request-dto';
21
24
  export * from './create-payment-reminder-response-class';
22
25
  export * from './create-payment-request-dto';
@@ -76,7 +79,6 @@ export * from './suggestion-generation-progress-class';
76
79
  export * from './symphony-profile-limited-response-dto';
77
80
  export * from './tenant-bank-account-class';
78
81
  export * from './tenant-bank-account-class-without-expand-properties';
79
- export * from './unlink-bank-transaction-request-dto-rest';
80
82
  export * from './unlink-bank-transactions-response-class';
81
83
  export * from './unlinked-bank-transaction-response-class';
82
84
  export * from './update-bank-account-request-dto';
@@ -21,10 +21,10 @@
21
21
  */
22
22
  export interface LinkBankTransactionRequestDtoRest {
23
23
  /**
24
- * The code of the invoice that the transaction will be linked to.
25
- * @type {string}
24
+ * List of invoice codes associated with bank transaction.
25
+ * @type {Array<number>}
26
26
  * @memberof LinkBankTransactionRequestDtoRest
27
27
  */
28
- 'invoiceCode': string;
28
+ 'invoiceIds': Array<number>;
29
29
  }
30
30
 
@@ -14,6 +14,7 @@
14
14
 
15
15
 
16
16
  import { BankOrderClass } from './bank-order-class';
17
+ import { BankTransactionInvoiceClass } from './bank-transaction-invoice-class';
17
18
 
18
19
  /**
19
20
  *
@@ -99,6 +100,12 @@ export interface UnlinkedBankTransactionResponseClass {
99
100
  * @memberof UnlinkedBankTransactionResponseClass
100
101
  */
101
102
  'isLinked': boolean;
103
+ /**
104
+ * The bank transaction invoices that this bank transaction is linked to
105
+ * @type {Array<BankTransactionInvoiceClass>}
106
+ * @memberof UnlinkedBankTransactionResponseClass
107
+ */
108
+ 'bankTransactionInvoices'?: Array<BankTransactionInvoiceClass>;
102
109
  /**
103
110
  * The linked bank order object
104
111
  * @type {BankOrderClass}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/payment-sdk",
3
- "version": "1.13.1-beta.72",
3
+ "version": "1.13.1-beta.74",
4
4
  "description": "OpenAPI client for @emilgroup/payment-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [