@emilgroup/payment-sdk 1.13.1-beta.82 → 1.13.1-beta.83
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/.openapi-generator/FILES +4 -0
- package/README.md +2 -2
- package/api/exceeding-credits-api.ts +349 -0
- package/api.ts +2 -0
- package/dist/api/exceeding-credits-api.d.ts +206 -0
- package/dist/api/exceeding-credits-api.js +352 -0
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/models/exceeding-credit-class.d.ts +116 -0
- package/dist/models/exceeding-credit-class.js +29 -0
- package/dist/models/get-exceeding-credit-response-class.d.ts +25 -0
- package/dist/models/get-exceeding-credit-response-class.js +15 -0
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/dist/models/list-exceeding-credits-response-class.d.ts +31 -0
- package/dist/models/list-exceeding-credits-response-class.js +15 -0
- package/models/exceeding-credit-class.ts +125 -0
- package/models/get-exceeding-credit-response-class.ts +31 -0
- package/models/index.ts +3 -0
- package/models/list-exceeding-credits-response-class.ts +37 -0
- package/package.json +1 -1
|
@@ -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 });
|
|
@@ -0,0 +1,125 @@
|
|
|
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 ExceedingCreditClass
|
|
21
|
+
*/
|
|
22
|
+
export interface ExceedingCreditClass {
|
|
23
|
+
/**
|
|
24
|
+
* The amount of the credit
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof ExceedingCreditClass
|
|
27
|
+
*/
|
|
28
|
+
'amount': number;
|
|
29
|
+
/**
|
|
30
|
+
* The currency of the credit
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ExceedingCreditClass
|
|
33
|
+
*/
|
|
34
|
+
'currency'?: ExceedingCreditClassCurrencyEnum;
|
|
35
|
+
/**
|
|
36
|
+
* The bank transaction code of the credit
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof ExceedingCreditClass
|
|
39
|
+
*/
|
|
40
|
+
'bankTransactionCode': string;
|
|
41
|
+
/**
|
|
42
|
+
* The description of the credit
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof ExceedingCreditClass
|
|
45
|
+
*/
|
|
46
|
+
'description': string;
|
|
47
|
+
/**
|
|
48
|
+
* The invoice code of the credit
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ExceedingCreditClass
|
|
51
|
+
*/
|
|
52
|
+
'invoiceCode': string;
|
|
53
|
+
/**
|
|
54
|
+
* The invoice number of the credit
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof ExceedingCreditClass
|
|
57
|
+
*/
|
|
58
|
+
'invoiceNumber': string;
|
|
59
|
+
/**
|
|
60
|
+
* The policy number of the credit
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof ExceedingCreditClass
|
|
63
|
+
*/
|
|
64
|
+
'policyNumber': string;
|
|
65
|
+
/**
|
|
66
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
67
|
+
* @type {number}
|
|
68
|
+
* @memberof ExceedingCreditClass
|
|
69
|
+
*/
|
|
70
|
+
'id': number;
|
|
71
|
+
/**
|
|
72
|
+
* The code of the credit
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof ExceedingCreditClass
|
|
75
|
+
*/
|
|
76
|
+
'code': string;
|
|
77
|
+
/**
|
|
78
|
+
* The policy code of the credit
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof ExceedingCreditClass
|
|
81
|
+
*/
|
|
82
|
+
'policyCode': string;
|
|
83
|
+
/**
|
|
84
|
+
* Time at which the object was created.
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof ExceedingCreditClass
|
|
87
|
+
*/
|
|
88
|
+
'createdAt': string;
|
|
89
|
+
/**
|
|
90
|
+
* Time at which the object was updated.
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof ExceedingCreditClass
|
|
93
|
+
*/
|
|
94
|
+
'updatedAt': string;
|
|
95
|
+
/**
|
|
96
|
+
* Identifier of the user who created the record.
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof ExceedingCreditClass
|
|
99
|
+
*/
|
|
100
|
+
'createdBy': string;
|
|
101
|
+
/**
|
|
102
|
+
* Identifier of the user who last updated the record.
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof ExceedingCreditClass
|
|
105
|
+
*/
|
|
106
|
+
'updatedBy': string;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
export const ExceedingCreditClassCurrencyEnum = {
|
|
110
|
+
Eur: 'EUR',
|
|
111
|
+
Usd: 'USD',
|
|
112
|
+
Gbp: 'GBP',
|
|
113
|
+
Chf: 'CHF',
|
|
114
|
+
Pln: 'PLN',
|
|
115
|
+
Aud: 'AUD',
|
|
116
|
+
Cad: 'CAD',
|
|
117
|
+
Ddk: 'DDK',
|
|
118
|
+
Huf: 'HUF',
|
|
119
|
+
Nok: 'NOK',
|
|
120
|
+
Sek: 'SEK'
|
|
121
|
+
} as const;
|
|
122
|
+
|
|
123
|
+
export type ExceedingCreditClassCurrencyEnum = typeof ExceedingCreditClassCurrencyEnum[keyof typeof ExceedingCreditClassCurrencyEnum];
|
|
124
|
+
|
|
125
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
import { ExceedingCreditClass } from './exceeding-credit-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetExceedingCreditResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetExceedingCreditResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Exceeding credit
|
|
26
|
+
* @type {ExceedingCreditClass}
|
|
27
|
+
* @memberof GetExceedingCreditResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'exceedingCredit': ExceedingCreditClass;
|
|
30
|
+
}
|
|
31
|
+
|
package/models/index.ts
CHANGED
|
@@ -34,11 +34,13 @@ export * from './create-tenant-bank-account-response-class';
|
|
|
34
34
|
export * from './deactivate-payment-reminder-request-dto';
|
|
35
35
|
export * from './deactivate-payment-reminder-response-class';
|
|
36
36
|
export * from './deactivated-payment-reminder-class';
|
|
37
|
+
export * from './exceeding-credit-class';
|
|
37
38
|
export * from './financial-account-class';
|
|
38
39
|
export * from './generate-invoice-match-suggestions-response-class';
|
|
39
40
|
export * from './get-bank-account-response-class';
|
|
40
41
|
export * from './get-bank-order-response-class';
|
|
41
42
|
export * from './get-bank-transactions-response-class';
|
|
43
|
+
export * from './get-exceeding-credit-response-class';
|
|
42
44
|
export * from './get-payment-method-response-class';
|
|
43
45
|
export * from './get-payment-reminder-response-class';
|
|
44
46
|
export * from './get-payment-response-class';
|
|
@@ -63,6 +65,7 @@ export * from './link-bank-transactions-response-class';
|
|
|
63
65
|
export * from './list-bank-accounts-response-class';
|
|
64
66
|
export * from './list-bank-orders-response-class';
|
|
65
67
|
export * from './list-bank-transactions-response-class';
|
|
68
|
+
export * from './list-exceeding-credits-response-class';
|
|
66
69
|
export * from './list-payment-methods-response-class';
|
|
67
70
|
export * from './list-payment-reminders-response-class';
|
|
68
71
|
export * from './list-payments-response-class';
|
|
@@ -0,0 +1,37 @@
|
|
|
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
|
+
import { ExceedingCreditClass } from './exceeding-credit-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListExceedingCreditsResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListExceedingCreditsResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The list of exceeding credits.
|
|
26
|
+
* @type {Array<ExceedingCreditClass>}
|
|
27
|
+
* @memberof ListExceedingCreditsResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<ExceedingCreditClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListExceedingCreditsResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
}
|
|
37
|
+
|