@emilgroup/insurance-sdk-node 1.94.1-beta.3 → 1.95.1-beta.0
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 +2 -2
- package/dist/models/shared-create-payment-method-request-dto.d.ts +2 -0
- package/dist/models/shared-create-payment-method-request-dto.js +3 -1
- package/dist/models/shared-payment-method-response-class.d.ts +2 -0
- package/dist/models/shared-payment-method-response-class.js +3 -1
- package/models/shared-create-payment-method-request-dto.ts +3 -1
- package/models/shared-payment-method-response-class.ts +3 -1
- package/package.json +1 -1
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/insurance-sdk-node@1.
|
|
20
|
+
npm install @emilgroup/insurance-sdk-node@1.95.1-beta.0 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/insurance-sdk-node@1.
|
|
24
|
+
yarn add @emilgroup/insurance-sdk-node@1.95.1-beta.0
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PoliciesApi`.
|
|
@@ -51,6 +51,8 @@ export interface SharedCreatePaymentMethodRequestDto {
|
|
|
51
51
|
}
|
|
52
52
|
export declare const SharedCreatePaymentMethodRequestDtoTypeEnum: {
|
|
53
53
|
readonly Sepa: "sepa";
|
|
54
|
+
readonly SepaDebit: "sepa_debit";
|
|
54
55
|
readonly Invoice: "invoice";
|
|
56
|
+
readonly BankTransfer: "bank_transfer";
|
|
55
57
|
};
|
|
56
58
|
export type SharedCreatePaymentMethodRequestDtoTypeEnum = typeof SharedCreatePaymentMethodRequestDtoTypeEnum[keyof typeof SharedCreatePaymentMethodRequestDtoTypeEnum];
|
|
@@ -16,5 +16,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
16
16
|
exports.SharedCreatePaymentMethodRequestDtoTypeEnum = void 0;
|
|
17
17
|
exports.SharedCreatePaymentMethodRequestDtoTypeEnum = {
|
|
18
18
|
Sepa: 'sepa',
|
|
19
|
-
|
|
19
|
+
SepaDebit: 'sepa_debit',
|
|
20
|
+
Invoice: 'invoice',
|
|
21
|
+
BankTransfer: 'bank_transfer'
|
|
20
22
|
};
|
|
@@ -51,6 +51,8 @@ export interface SharedPaymentMethodResponseClass {
|
|
|
51
51
|
}
|
|
52
52
|
export declare const SharedPaymentMethodResponseClassTypeEnum: {
|
|
53
53
|
readonly Sepa: "sepa";
|
|
54
|
+
readonly SepaDebit: "sepa_debit";
|
|
54
55
|
readonly Invoice: "invoice";
|
|
56
|
+
readonly BankTransfer: "bank_transfer";
|
|
55
57
|
};
|
|
56
58
|
export type SharedPaymentMethodResponseClassTypeEnum = typeof SharedPaymentMethodResponseClassTypeEnum[keyof typeof SharedPaymentMethodResponseClassTypeEnum];
|
|
@@ -16,5 +16,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
16
16
|
exports.SharedPaymentMethodResponseClassTypeEnum = void 0;
|
|
17
17
|
exports.SharedPaymentMethodResponseClassTypeEnum = {
|
|
18
18
|
Sepa: 'sepa',
|
|
19
|
-
|
|
19
|
+
SepaDebit: 'sepa_debit',
|
|
20
|
+
Invoice: 'invoice',
|
|
21
|
+
BankTransfer: 'bank_transfer'
|
|
20
22
|
};
|
|
@@ -57,7 +57,9 @@ export interface SharedCreatePaymentMethodRequestDto {
|
|
|
57
57
|
|
|
58
58
|
export const SharedCreatePaymentMethodRequestDtoTypeEnum = {
|
|
59
59
|
Sepa: 'sepa',
|
|
60
|
-
|
|
60
|
+
SepaDebit: 'sepa_debit',
|
|
61
|
+
Invoice: 'invoice',
|
|
62
|
+
BankTransfer: 'bank_transfer'
|
|
61
63
|
} as const;
|
|
62
64
|
|
|
63
65
|
export type SharedCreatePaymentMethodRequestDtoTypeEnum = typeof SharedCreatePaymentMethodRequestDtoTypeEnum[keyof typeof SharedCreatePaymentMethodRequestDtoTypeEnum];
|
|
@@ -57,7 +57,9 @@ export interface SharedPaymentMethodResponseClass {
|
|
|
57
57
|
|
|
58
58
|
export const SharedPaymentMethodResponseClassTypeEnum = {
|
|
59
59
|
Sepa: 'sepa',
|
|
60
|
-
|
|
60
|
+
SepaDebit: 'sepa_debit',
|
|
61
|
+
Invoice: 'invoice',
|
|
62
|
+
BankTransfer: 'bank_transfer'
|
|
61
63
|
} as const;
|
|
62
64
|
|
|
63
65
|
export type SharedPaymentMethodResponseClassTypeEnum = typeof SharedPaymentMethodResponseClassTypeEnum[keyof typeof SharedPaymentMethodResponseClassTypeEnum];
|