@emilgroup/payment-sdk 1.13.1-beta.80 → 1.13.1-beta.82

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.
@@ -78,6 +78,7 @@ models/initiate-stripe-payment-setup-request-dto.ts
78
78
  models/initiate-stripe-payment-setup-response-class.ts
79
79
  models/inline-response200.ts
80
80
  models/inline-response503.ts
81
+ models/invoice-allocation-dto.ts
81
82
  models/invoice-match-suggestion-class.ts
82
83
  models/link-bank-transaction-request-dto-rest.ts
83
84
  models/link-bank-transactions-response-class.ts
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@1.13.1-beta.80 --save
20
+ npm install @emilgroup/payment-sdk@1.13.1-beta.82 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/payment-sdk@1.13.1-beta.80
24
+ yarn add @emilgroup/payment-sdk@1.13.1-beta.82
25
25
  ```
26
26
 
27
27
  And then you can import `PaymentsApi`.
@@ -56,6 +56,7 @@ export * from './initiate-stripe-payment-setup-request-dto';
56
56
  export * from './initiate-stripe-payment-setup-response-class';
57
57
  export * from './inline-response200';
58
58
  export * from './inline-response503';
59
+ export * from './invoice-allocation-dto';
59
60
  export * from './invoice-match-suggestion-class';
60
61
  export * from './link-bank-transaction-request-dto-rest';
61
62
  export * from './link-bank-transactions-response-class';
@@ -72,6 +72,7 @@ __exportStar(require("./initiate-stripe-payment-setup-request-dto"), exports);
72
72
  __exportStar(require("./initiate-stripe-payment-setup-response-class"), exports);
73
73
  __exportStar(require("./inline-response200"), exports);
74
74
  __exportStar(require("./inline-response503"), exports);
75
+ __exportStar(require("./invoice-allocation-dto"), exports);
75
76
  __exportStar(require("./invoice-match-suggestion-class"), exports);
76
77
  __exportStar(require("./link-bank-transaction-request-dto-rest"), exports);
77
78
  __exportStar(require("./link-bank-transactions-response-class"), exports);
@@ -0,0 +1,30 @@
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 InvoiceAllocationDto
16
+ */
17
+ export interface InvoiceAllocationDto {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof InvoiceAllocationDto
22
+ */
23
+ 'invoiceCode': string;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof InvoiceAllocationDto
28
+ */
29
+ 'allocatedAmount': number;
30
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Emil Payment Service
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.
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { InvoiceAllocationDto } from './invoice-allocation-dto';
12
13
  /**
13
14
  *
14
15
  * @export
@@ -16,9 +17,9 @@
16
17
  */
17
18
  export interface LinkBankTransactionRequestDtoRest {
18
19
  /**
19
- * List of invoice codes associated with bank transaction.
20
- * @type {Array<number>}
20
+ * List of invoice allocations associated with bank transaction.
21
+ * @type {Array<InvoiceAllocationDto>}
21
22
  * @memberof LinkBankTransactionRequestDtoRest
22
23
  */
23
- 'invoiceIds': Array<number>;
24
+ 'invoiceAllocations': Array<InvoiceAllocationDto>;
24
25
  }
package/models/index.ts CHANGED
@@ -56,6 +56,7 @@ export * from './initiate-stripe-payment-setup-request-dto';
56
56
  export * from './initiate-stripe-payment-setup-response-class';
57
57
  export * from './inline-response200';
58
58
  export * from './inline-response503';
59
+ export * from './invoice-allocation-dto';
59
60
  export * from './invoice-match-suggestion-class';
60
61
  export * from './link-bank-transaction-request-dto-rest';
61
62
  export * from './link-bank-transactions-response-class';
@@ -0,0 +1,36 @@
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 InvoiceAllocationDto
21
+ */
22
+ export interface InvoiceAllocationDto {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof InvoiceAllocationDto
27
+ */
28
+ 'invoiceCode': string;
29
+ /**
30
+ *
31
+ * @type {number}
32
+ * @memberof InvoiceAllocationDto
33
+ */
34
+ 'allocatedAmount': number;
35
+ }
36
+
@@ -13,6 +13,7 @@
13
13
  */
14
14
 
15
15
 
16
+ import { InvoiceAllocationDto } from './invoice-allocation-dto';
16
17
 
17
18
  /**
18
19
  *
@@ -21,10 +22,10 @@
21
22
  */
22
23
  export interface LinkBankTransactionRequestDtoRest {
23
24
  /**
24
- * List of invoice codes associated with bank transaction.
25
- * @type {Array<number>}
25
+ * List of invoice allocations associated with bank transaction.
26
+ * @type {Array<InvoiceAllocationDto>}
26
27
  * @memberof LinkBankTransactionRequestDtoRest
27
28
  */
28
- 'invoiceIds': Array<number>;
29
+ 'invoiceAllocations': Array<InvoiceAllocationDto>;
29
30
  }
30
31
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/payment-sdk",
3
- "version": "1.13.1-beta.80",
3
+ "version": "1.13.1-beta.82",
4
4
  "description": "OpenAPI client for @emilgroup/payment-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [