@emilgroup/payment-sdk 1.13.1-beta.24 → 1.13.1-beta.25

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.
@@ -29,6 +29,7 @@ models/billing-profile-limited-response-dto.ts
29
29
  models/card-details-dto.ts
30
30
  models/complete-adyen-payment-setup-request-dto.ts
31
31
  models/complete-braintree-payment-setup-request-dto.ts
32
+ models/complete-eis-payment-setup-request-dto.ts
32
33
  models/complete-payment-setup-request-dto.ts
33
34
  models/complete-payment-setup-response-class.ts
34
35
  models/complete-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.24 --save
20
+ npm install @emilgroup/payment-sdk@1.13.1-beta.25 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/payment-sdk@1.13.1-beta.24
24
+ yarn add @emilgroup/payment-sdk@1.13.1-beta.25
25
25
  ```
26
26
 
27
27
  And then you can import `PaymentsApi`.
@@ -93,5 +93,6 @@ export declare const CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum: {
93
93
  readonly Venmo: "venmo";
94
94
  readonly Masterpass: "masterpass";
95
95
  readonly B4u: "b4u";
96
+ readonly Invoice: "invoice";
96
97
  };
97
98
  export type CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum = typeof CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum[keyof typeof CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum];
@@ -28,5 +28,6 @@ exports.CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum = {
28
28
  SamsungPay: 'samsung_pay',
29
29
  Venmo: 'venmo',
30
30
  Masterpass: 'masterpass',
31
- B4u: 'b4u'
31
+ B4u: 'b4u',
32
+ Invoice: 'invoice'
32
33
  };
@@ -0,0 +1,42 @@
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 CompleteEisPaymentSetupRequestDto
16
+ */
17
+ export interface CompleteEisPaymentSetupRequestDto {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof CompleteEisPaymentSetupRequestDto
22
+ */
23
+ 'accountCode'?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof CompleteEisPaymentSetupRequestDto
28
+ */
29
+ 'partnerCode'?: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof CompleteEisPaymentSetupRequestDto
34
+ */
35
+ 'leadCode'?: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof CompleteEisPaymentSetupRequestDto
40
+ */
41
+ 'setupToken'?: string;
42
+ }
@@ -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 { CompleteAdyenPaymentSetupRequestDto } from './complete-adyen-payment-setup-request-dto';
13
13
  import { CompleteBraintreePaymentSetupRequestDto } from './complete-braintree-payment-setup-request-dto';
14
+ import { CompleteEisPaymentSetupRequestDto } from './complete-eis-payment-setup-request-dto';
14
15
  import { CompleteStripePaymentSetupRequestDto } from './complete-stripe-payment-setup-request-dto';
15
16
  /**
16
17
  *
@@ -42,4 +43,10 @@ export interface CompletePaymentSetupRequestDto {
42
43
  * @memberof CompletePaymentSetupRequestDto
43
44
  */
44
45
  'adyen'?: CompleteAdyenPaymentSetupRequestDto;
46
+ /**
47
+ *
48
+ * @type {CompleteEisPaymentSetupRequestDto}
49
+ * @memberof CompletePaymentSetupRequestDto
50
+ */
51
+ 'eis'?: CompleteEisPaymentSetupRequestDto;
45
52
  }
@@ -92,5 +92,6 @@ export declare const CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum:
92
92
  readonly Venmo: "venmo";
93
93
  readonly Masterpass: "masterpass";
94
94
  readonly B4u: "b4u";
95
+ readonly Invoice: "invoice";
95
96
  };
96
97
  export type CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum = typeof CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum[keyof typeof CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum];
@@ -28,5 +28,6 @@ exports.CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum = {
28
28
  SamsungPay: 'samsung_pay',
29
29
  Venmo: 'venmo',
30
30
  Masterpass: 'masterpass',
31
- B4u: 'b4u'
31
+ B4u: 'b4u',
32
+ Invoice: 'invoice'
32
33
  };
@@ -53,6 +53,12 @@ export interface CreatePspPaymentMethodRequestDto {
53
53
  * @memberof CreatePspPaymentMethodRequestDto
54
54
  */
55
55
  'productSlug'?: string;
56
+ /**
57
+ *
58
+ * @type {string}
59
+ * @memberof CreatePspPaymentMethodRequestDto
60
+ */
61
+ 'leadCode'?: string;
56
62
  }
57
63
  export declare const CreatePspPaymentMethodRequestDtoTypeEnum: {
58
64
  readonly Paypal: "paypal";
@@ -69,5 +75,6 @@ export declare const CreatePspPaymentMethodRequestDtoTypeEnum: {
69
75
  readonly Venmo: "venmo";
70
76
  readonly Masterpass: "masterpass";
71
77
  readonly B4u: "b4u";
78
+ readonly Invoice: "invoice";
72
79
  };
73
80
  export type CreatePspPaymentMethodRequestDtoTypeEnum = typeof CreatePspPaymentMethodRequestDtoTypeEnum[keyof typeof CreatePspPaymentMethodRequestDtoTypeEnum];
@@ -28,5 +28,6 @@ exports.CreatePspPaymentMethodRequestDtoTypeEnum = {
28
28
  SamsungPay: 'samsung_pay',
29
29
  Venmo: 'venmo',
30
30
  Masterpass: 'masterpass',
31
- B4u: 'b4u'
31
+ B4u: 'b4u',
32
+ Invoice: 'invoice'
32
33
  };
@@ -8,6 +8,7 @@ export * from './billing-profile-limited-response-dto';
8
8
  export * from './card-details-dto';
9
9
  export * from './complete-adyen-payment-setup-request-dto';
10
10
  export * from './complete-braintree-payment-setup-request-dto';
11
+ export * from './complete-eis-payment-setup-request-dto';
11
12
  export * from './complete-payment-setup-request-dto';
12
13
  export * from './complete-payment-setup-response-class';
13
14
  export * from './complete-stripe-payment-setup-request-dto';
@@ -24,6 +24,7 @@ __exportStar(require("./billing-profile-limited-response-dto"), exports);
24
24
  __exportStar(require("./card-details-dto"), exports);
25
25
  __exportStar(require("./complete-adyen-payment-setup-request-dto"), exports);
26
26
  __exportStar(require("./complete-braintree-payment-setup-request-dto"), exports);
27
+ __exportStar(require("./complete-eis-payment-setup-request-dto"), exports);
27
28
  __exportStar(require("./complete-payment-setup-request-dto"), exports);
28
29
  __exportStar(require("./complete-payment-setup-response-class"), exports);
29
30
  __exportStar(require("./complete-stripe-payment-setup-request-dto"), exports);
@@ -98,7 +98,8 @@ export const CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum = {
98
98
  SamsungPay: 'samsung_pay',
99
99
  Venmo: 'venmo',
100
100
  Masterpass: 'masterpass',
101
- B4u: 'b4u'
101
+ B4u: 'b4u',
102
+ Invoice: 'invoice'
102
103
  } as const;
103
104
 
104
105
  export type CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum = typeof CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum[keyof typeof CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum];
@@ -0,0 +1,48 @@
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 CompleteEisPaymentSetupRequestDto
21
+ */
22
+ export interface CompleteEisPaymentSetupRequestDto {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof CompleteEisPaymentSetupRequestDto
27
+ */
28
+ 'accountCode'?: string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof CompleteEisPaymentSetupRequestDto
33
+ */
34
+ 'partnerCode'?: string;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof CompleteEisPaymentSetupRequestDto
39
+ */
40
+ 'leadCode'?: string;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof CompleteEisPaymentSetupRequestDto
45
+ */
46
+ 'setupToken'?: string;
47
+ }
48
+
@@ -15,6 +15,7 @@
15
15
 
16
16
  import { CompleteAdyenPaymentSetupRequestDto } from './complete-adyen-payment-setup-request-dto';
17
17
  import { CompleteBraintreePaymentSetupRequestDto } from './complete-braintree-payment-setup-request-dto';
18
+ import { CompleteEisPaymentSetupRequestDto } from './complete-eis-payment-setup-request-dto';
18
19
  import { CompleteStripePaymentSetupRequestDto } from './complete-stripe-payment-setup-request-dto';
19
20
 
20
21
  /**
@@ -47,5 +48,11 @@ export interface CompletePaymentSetupRequestDto {
47
48
  * @memberof CompletePaymentSetupRequestDto
48
49
  */
49
50
  'adyen'?: CompleteAdyenPaymentSetupRequestDto;
51
+ /**
52
+ *
53
+ * @type {CompleteEisPaymentSetupRequestDto}
54
+ * @memberof CompletePaymentSetupRequestDto
55
+ */
56
+ 'eis'?: CompleteEisPaymentSetupRequestDto;
50
57
  }
51
58
 
@@ -97,7 +97,8 @@ export const CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum = {
97
97
  SamsungPay: 'samsung_pay',
98
98
  Venmo: 'venmo',
99
99
  Masterpass: 'masterpass',
100
- B4u: 'b4u'
100
+ B4u: 'b4u',
101
+ Invoice: 'invoice'
101
102
  } as const;
102
103
 
103
104
  export type CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum = typeof CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum[keyof typeof CompleteStripePaymentSetupRequestDtoPaymentMethodTypeEnum];
@@ -58,6 +58,12 @@ export interface CreatePspPaymentMethodRequestDto {
58
58
  * @memberof CreatePspPaymentMethodRequestDto
59
59
  */
60
60
  'productSlug'?: string;
61
+ /**
62
+ *
63
+ * @type {string}
64
+ * @memberof CreatePspPaymentMethodRequestDto
65
+ */
66
+ 'leadCode'?: string;
61
67
  }
62
68
 
63
69
  export const CreatePspPaymentMethodRequestDtoTypeEnum = {
@@ -74,7 +80,8 @@ export const CreatePspPaymentMethodRequestDtoTypeEnum = {
74
80
  SamsungPay: 'samsung_pay',
75
81
  Venmo: 'venmo',
76
82
  Masterpass: 'masterpass',
77
- B4u: 'b4u'
83
+ B4u: 'b4u',
84
+ Invoice: 'invoice'
78
85
  } as const;
79
86
 
80
87
  export type CreatePspPaymentMethodRequestDtoTypeEnum = typeof CreatePspPaymentMethodRequestDtoTypeEnum[keyof typeof CreatePspPaymentMethodRequestDtoTypeEnum];
package/models/index.ts CHANGED
@@ -8,6 +8,7 @@ export * from './billing-profile-limited-response-dto';
8
8
  export * from './card-details-dto';
9
9
  export * from './complete-adyen-payment-setup-request-dto';
10
10
  export * from './complete-braintree-payment-setup-request-dto';
11
+ export * from './complete-eis-payment-setup-request-dto';
11
12
  export * from './complete-payment-setup-request-dto';
12
13
  export * from './complete-payment-setup-response-class';
13
14
  export * from './complete-stripe-payment-setup-request-dto';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/payment-sdk",
3
- "version": "1.13.1-beta.24",
3
+ "version": "1.13.1-beta.25",
4
4
  "description": "OpenAPI client for @emilgroup/payment-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [