@emilgroup/payment-sdk 1.13.1-beta.32 → 1.13.1-beta.34

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.
@@ -66,6 +66,7 @@ models/initiate-adyen-payment-setup-request-dto.ts
66
66
  models/initiate-adyen-payment-setup-response-class.ts
67
67
  models/initiate-braintree-payment-setup-request-dto.ts
68
68
  models/initiate-braintree-payment-setup-response-class.ts
69
+ models/initiate-eis-payment-setup-request-dto.ts
69
70
  models/initiate-payment-setup-request-dto.ts
70
71
  models/initiate-payment-setup-response-class.ts
71
72
  models/initiate-stripe-payment-setup-request-dto.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.32 --save
20
+ npm install @emilgroup/payment-sdk@1.13.1-beta.34 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/payment-sdk@1.13.1-beta.32
24
+ yarn add @emilgroup/payment-sdk@1.13.1-beta.34
25
25
  ```
26
26
 
27
27
  And then you can import `PaymentsApi`.
@@ -33,10 +33,4 @@ export interface CompleteEisPaymentSetupRequestDto {
33
33
  * @memberof CompleteEisPaymentSetupRequestDto
34
34
  */
35
35
  'leadCode'?: string;
36
- /**
37
- *
38
- * @type {string}
39
- * @memberof CompleteEisPaymentSetupRequestDto
40
- */
41
- 'setupToken'?: string;
42
36
  }
@@ -44,6 +44,7 @@ export * from './initiate-adyen-payment-setup-request-dto';
44
44
  export * from './initiate-adyen-payment-setup-response-class';
45
45
  export * from './initiate-braintree-payment-setup-request-dto';
46
46
  export * from './initiate-braintree-payment-setup-response-class';
47
+ export * from './initiate-eis-payment-setup-request-dto';
47
48
  export * from './initiate-payment-setup-request-dto';
48
49
  export * from './initiate-payment-setup-response-class';
49
50
  export * from './initiate-stripe-payment-setup-request-dto';
@@ -60,6 +60,7 @@ __exportStar(require("./initiate-adyen-payment-setup-request-dto"), exports);
60
60
  __exportStar(require("./initiate-adyen-payment-setup-response-class"), exports);
61
61
  __exportStar(require("./initiate-braintree-payment-setup-request-dto"), exports);
62
62
  __exportStar(require("./initiate-braintree-payment-setup-response-class"), exports);
63
+ __exportStar(require("./initiate-eis-payment-setup-request-dto"), exports);
63
64
  __exportStar(require("./initiate-payment-setup-request-dto"), exports);
64
65
  __exportStar(require("./initiate-payment-setup-response-class"), exports);
65
66
  __exportStar(require("./initiate-stripe-payment-setup-request-dto"), exports);
@@ -0,0 +1,36 @@
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 InitiateEisPaymentSetupRequestDto
16
+ */
17
+ export interface InitiateEisPaymentSetupRequestDto {
18
+ /**
19
+ * Unique identifier of the lead that this object belongs to.
20
+ * @type {string}
21
+ * @memberof InitiateEisPaymentSetupRequestDto
22
+ */
23
+ 'leadCode'?: string;
24
+ /**
25
+ * Unique identifier of the account that this object belongs to.
26
+ * @type {string}
27
+ * @memberof InitiateEisPaymentSetupRequestDto
28
+ */
29
+ 'accountCode'?: string;
30
+ /**
31
+ * Unique identifier of the partner that this object belongs to.
32
+ * @type {string}
33
+ * @memberof InitiateEisPaymentSetupRequestDto
34
+ */
35
+ 'partnerCode'?: string;
36
+ }
@@ -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 });
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import { InitiateAdyenPaymentSetupRequestDto } from './initiate-adyen-payment-setup-request-dto';
13
13
  import { InitiateBraintreePaymentSetupRequestDto } from './initiate-braintree-payment-setup-request-dto';
14
+ import { InitiateEisPaymentSetupRequestDto } from './initiate-eis-payment-setup-request-dto';
14
15
  import { InitiateStripePaymentSetupRequestDto } from './initiate-stripe-payment-setup-request-dto';
15
16
  /**
16
17
  *
@@ -38,10 +39,10 @@ export interface InitiatePaymentSetupRequestDto {
38
39
  'b4u'?: object;
39
40
  /**
40
41
  *
41
- * @type {object}
42
+ * @type {InitiateEisPaymentSetupRequestDto}
42
43
  * @memberof InitiatePaymentSetupRequestDto
43
44
  */
44
- 'eis'?: object;
45
+ 'eis'?: InitiateEisPaymentSetupRequestDto;
45
46
  /**
46
47
  *
47
48
  * @type {InitiateAdyenPaymentSetupRequestDto}
@@ -38,11 +38,5 @@ export interface CompleteEisPaymentSetupRequestDto {
38
38
  * @memberof CompleteEisPaymentSetupRequestDto
39
39
  */
40
40
  'leadCode'?: string;
41
- /**
42
- *
43
- * @type {string}
44
- * @memberof CompleteEisPaymentSetupRequestDto
45
- */
46
- 'setupToken'?: string;
47
41
  }
48
42
 
package/models/index.ts CHANGED
@@ -44,6 +44,7 @@ export * from './initiate-adyen-payment-setup-request-dto';
44
44
  export * from './initiate-adyen-payment-setup-response-class';
45
45
  export * from './initiate-braintree-payment-setup-request-dto';
46
46
  export * from './initiate-braintree-payment-setup-response-class';
47
+ export * from './initiate-eis-payment-setup-request-dto';
47
48
  export * from './initiate-payment-setup-request-dto';
48
49
  export * from './initiate-payment-setup-response-class';
49
50
  export * from './initiate-stripe-payment-setup-request-dto';
@@ -0,0 +1,42 @@
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 InitiateEisPaymentSetupRequestDto
21
+ */
22
+ export interface InitiateEisPaymentSetupRequestDto {
23
+ /**
24
+ * Unique identifier of the lead that this object belongs to.
25
+ * @type {string}
26
+ * @memberof InitiateEisPaymentSetupRequestDto
27
+ */
28
+ 'leadCode'?: string;
29
+ /**
30
+ * Unique identifier of the account that this object belongs to.
31
+ * @type {string}
32
+ * @memberof InitiateEisPaymentSetupRequestDto
33
+ */
34
+ 'accountCode'?: string;
35
+ /**
36
+ * Unique identifier of the partner that this object belongs to.
37
+ * @type {string}
38
+ * @memberof InitiateEisPaymentSetupRequestDto
39
+ */
40
+ 'partnerCode'?: string;
41
+ }
42
+
@@ -15,6 +15,7 @@
15
15
 
16
16
  import { InitiateAdyenPaymentSetupRequestDto } from './initiate-adyen-payment-setup-request-dto';
17
17
  import { InitiateBraintreePaymentSetupRequestDto } from './initiate-braintree-payment-setup-request-dto';
18
+ import { InitiateEisPaymentSetupRequestDto } from './initiate-eis-payment-setup-request-dto';
18
19
  import { InitiateStripePaymentSetupRequestDto } from './initiate-stripe-payment-setup-request-dto';
19
20
 
20
21
  /**
@@ -43,10 +44,10 @@ export interface InitiatePaymentSetupRequestDto {
43
44
  'b4u'?: object;
44
45
  /**
45
46
  *
46
- * @type {object}
47
+ * @type {InitiateEisPaymentSetupRequestDto}
47
48
  * @memberof InitiatePaymentSetupRequestDto
48
49
  */
49
- 'eis'?: object;
50
+ 'eis'?: InitiateEisPaymentSetupRequestDto;
50
51
  /**
51
52
  *
52
53
  * @type {InitiateAdyenPaymentSetupRequestDto}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/payment-sdk",
3
- "version": "1.13.1-beta.32",
3
+ "version": "1.13.1-beta.34",
4
4
  "description": "OpenAPI client for @emilgroup/payment-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [