@emilgroup/payment-sdk 1.4.1-beta.9 → 1.5.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/.openapi-generator/FILES +11 -11
- package/README.md +2 -2
- package/api/bank-accounts-api.ts +500 -88
- package/api/bank-transaction-api.ts +93 -123
- package/api/{default-api.ts → health-check-api.ts} +22 -18
- package/api/payment-methods-api.ts +61 -242
- package/api/payment-reminders-api.ts +57 -99
- package/api/payment-setup-api.ts +17 -9
- package/api/payments-api.ts +72 -135
- package/api/refunds-api.ts +80 -120
- package/api/tenant-bank-account-api.ts +96 -118
- package/api/webhooks-api.ts +38 -21
- package/api.ts +3 -3
- package/base.ts +22 -10
- package/common.ts +2 -2
- package/configuration.ts +1 -1
- package/dist/api/bank-accounts-api.d.ts +292 -69
- package/dist/api/bank-accounts-api.js +432 -62
- package/dist/api/bank-transaction-api.d.ts +84 -104
- package/dist/api/bank-transaction-api.js +63 -74
- package/dist/api/health-check-api.d.ts +70 -0
- package/dist/api/{default-api.js → health-check-api.js} +31 -27
- package/dist/api/payment-methods-api.d.ts +51 -151
- package/dist/api/payment-methods-api.js +48 -178
- package/dist/api/payment-reminders-api.d.ts +52 -79
- package/dist/api/payment-reminders-api.js +44 -62
- package/dist/api/payment-setup-api.d.ts +17 -9
- package/dist/api/payment-setup-api.js +17 -9
- package/dist/api/payments-api.d.ts +62 -98
- package/dist/api/payments-api.js +55 -85
- package/dist/api/refunds-api.d.ts +73 -91
- package/dist/api/refunds-api.js +58 -68
- package/dist/api/tenant-bank-account-api.d.ts +90 -105
- package/dist/api/tenant-bank-account-api.js +63 -75
- package/dist/api/webhooks-api.d.ts +29 -16
- package/dist/api/webhooks-api.js +29 -19
- package/dist/api.d.ts +2 -2
- package/dist/api.js +2 -2
- package/dist/base.d.ts +6 -3
- package/dist/base.js +31 -22
- package/dist/common.d.ts +2 -2
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/models/{bank-transaction-response-class.d.ts → bank-transaction-class-without-expand-properties.d.ts} +31 -33
- package/dist/models/{bank-transaction-response-class.js → bank-transaction-class-without-expand-properties.js} +1 -1
- package/dist/models/create-bank-account-request-dto.d.ts +42 -0
- package/dist/models/{get-refund-response-class.js → create-bank-account-request-dto.js} +1 -1
- package/dist/models/create-payment-reminder-request-dto.d.ts +1 -1
- package/dist/models/create-payment-reminder-request-dto.js +1 -1
- package/dist/models/create-payment-request-dto.d.ts +3 -3
- package/dist/models/create-payment-request-dto.js +1 -1
- package/dist/models/create-refund-request-dto.d.ts +1 -1
- package/dist/models/create-refund-request-dto.js +1 -1
- package/dist/models/create-tenant-bank-account-request-dto.d.ts +1 -1
- package/dist/models/create-tenant-bank-account-request-dto.js +1 -1
- package/dist/models/create-tenant-bank-account-response-class.d.ts +25 -0
- package/dist/models/{create-refund-response-class.js → create-tenant-bank-account-response-class.js} +1 -1
- package/dist/models/deactivate-payment-reminder-request-dto.d.ts +1 -1
- package/dist/models/deactivate-payment-reminder-request-dto.js +1 -1
- package/dist/models/get-tenant-bank-account-response-class.d.ts +5 -5
- package/dist/models/get-tenant-bank-account-response-class.js +1 -1
- package/dist/models/index.d.ts +10 -10
- package/dist/models/index.js +10 -10
- package/dist/models/inline-response200.d.ts +1 -1
- package/dist/models/inline-response200.js +1 -1
- package/dist/models/inline-response503.d.ts +1 -1
- package/dist/models/inline-response503.js +1 -1
- package/dist/models/link-bank-transaction-request-dto-rest.d.ts +1 -1
- package/dist/models/link-bank-transaction-request-dto-rest.js +1 -1
- package/dist/models/list-tenant-bank-account-response-class.d.ts +31 -0
- package/dist/models/{get-bank-transactions-response-class.js → list-tenant-bank-account-response-class.js} +1 -1
- package/dist/models/set-primary-bank-account-request-dto-rest.d.ts +24 -0
- package/dist/models/set-primary-bank-account-request-dto-rest.js +15 -0
- package/dist/models/{tenant-bank-account-response-class.d.ts → tenant-bank-account-class-without-expand-properties.d.ts} +23 -11
- package/dist/models/tenant-bank-account-class-without-expand-properties.js +15 -0
- package/dist/models/tenant-bank-account-class.d.ts +85 -0
- package/dist/models/tenant-bank-account-class.js +15 -0
- package/dist/models/unlink-bank-transaction-request-dto-rest.d.ts +2 -2
- package/dist/models/unlink-bank-transaction-request-dto-rest.js +1 -1
- package/dist/models/update-bank-account-request-dto-rest.d.ts +30 -0
- package/dist/models/update-bank-account-request-dto-rest.js +15 -0
- package/dist/models/update-bank-account-request-dto.d.ts +36 -0
- package/dist/models/update-bank-account-request-dto.js +15 -0
- package/dist/models/update-tenant-bank-account-response-class.d.ts +25 -0
- package/dist/models/update-tenant-bank-account-response-class.js +15 -0
- package/dist/models/update-tenant-bank-account-rest-request-dto.d.ts +1 -1
- package/dist/models/update-tenant-bank-account-rest-request-dto.js +1 -1
- package/dist/models/validate-pspconfig-request-dto.d.ts +1 -1
- package/dist/models/validate-pspconfig-request-dto.js +1 -1
- package/index.ts +1 -1
- package/models/{bank-transaction-response-class.ts → bank-transaction-class-without-expand-properties.ts} +31 -33
- package/models/create-bank-account-request-dto.ts +48 -0
- package/models/create-payment-reminder-request-dto.ts +1 -1
- package/models/create-payment-request-dto.ts +3 -3
- package/models/create-refund-request-dto.ts +1 -1
- package/models/create-tenant-bank-account-request-dto.ts +1 -1
- package/models/create-tenant-bank-account-response-class.ts +31 -0
- package/models/deactivate-payment-reminder-request-dto.ts +1 -1
- package/models/get-tenant-bank-account-response-class.ts +5 -5
- package/models/index.ts +10 -10
- package/models/inline-response200.ts +1 -1
- package/models/inline-response503.ts +1 -1
- package/models/link-bank-transaction-request-dto-rest.ts +1 -1
- package/models/list-tenant-bank-account-response-class.ts +37 -0
- package/models/set-primary-bank-account-request-dto-rest.ts +30 -0
- package/models/{tenant-bank-account-response-class.ts → tenant-bank-account-class-without-expand-properties.ts} +23 -11
- package/models/tenant-bank-account-class.ts +91 -0
- package/models/unlink-bank-transaction-request-dto-rest.ts +2 -2
- package/models/update-bank-account-request-dto-rest.ts +36 -0
- package/models/update-bank-account-request-dto.ts +42 -0
- package/models/update-tenant-bank-account-response-class.ts +31 -0
- package/models/update-tenant-bank-account-rest-request-dto.ts +1 -1
- package/models/validate-pspconfig-request-dto.ts +1 -1
- package/package.json +1 -1
- package/dist/api/default-api.d.ts +0 -66
- package/dist/models/create-refund-response-class.d.ts +0 -25
- package/dist/models/get-bank-transactions-response-class.d.ts +0 -25
- package/dist/models/get-refund-response-class.d.ts +0 -25
- package/dist/models/get-request-dto.d.ts +0 -30
- package/dist/models/get-request-dto.js +0 -15
- package/dist/models/list-bank-transactions-response-class.d.ts +0 -31
- package/dist/models/list-bank-transactions-response-class.js +0 -15
- package/dist/models/list-refunds-response-class.d.ts +0 -31
- package/dist/models/list-refunds-response-class.js +0 -15
- package/dist/models/refund-class.d.ts +0 -104
- package/dist/models/refund-class.js +0 -28
- package/dist/models/tenant-bank-account-response-class.js +0 -15
- package/dist/models/transaction-class.d.ts +0 -54
- package/dist/models/transaction-class.js +0 -15
- package/models/create-refund-response-class.ts +0 -31
- package/models/get-bank-transactions-response-class.ts +0 -31
- package/models/get-refund-response-class.ts +0 -31
- package/models/get-request-dto.ts +0 -36
- package/models/list-bank-transactions-response-class.ts +0 -37
- package/models/list-refunds-response-class.ts +0 -37
- package/models/refund-class.ts +0 -114
- package/models/transaction-class.ts +0 -60
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Emil Payment Service
|
|
3
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
6
|
* Contact: kontakt@emil.de
|
|
@@ -21,7 +21,7 @@ import { DeactivatePaymentReminderRequestDto } from '../models';
|
|
|
21
21
|
export declare const PaymentRemindersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
22
|
/**
|
|
23
23
|
* This will create a payment reminder in the database.
|
|
24
|
-
* @summary Create the payment
|
|
24
|
+
* @summary Create the payment reminder
|
|
25
25
|
* @param {CreatePaymentReminderRequestDto} createPaymentReminderRequestDto
|
|
26
26
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
27
27
|
* @param {*} [options] Override http request option.
|
|
@@ -29,8 +29,8 @@ export declare const PaymentRemindersApiAxiosParamCreator: (configuration?: Conf
|
|
|
29
29
|
*/
|
|
30
30
|
createPaymentReminder: (createPaymentReminderRequestDto: CreatePaymentReminderRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
33
|
-
* @summary
|
|
32
|
+
* This will deactivate the payment reminder
|
|
33
|
+
* @summary Deactivate payment reminder
|
|
34
34
|
* @param {string} code Unique identifier for the object.
|
|
35
35
|
* @param {DeactivatePaymentReminderRequestDto} deactivatePaymentReminderRequestDto
|
|
36
36
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -39,29 +39,26 @@ export declare const PaymentRemindersApiAxiosParamCreator: (configuration?: Conf
|
|
|
39
39
|
*/
|
|
40
40
|
deactivatePaymentReminder: (code: string, deactivatePaymentReminderRequestDto: DeactivatePaymentReminderRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
41
41
|
/**
|
|
42
|
-
* Retrieves the details of the payment reminder that was previously created. Supply the unique payment reminder code
|
|
42
|
+
* Retrieves the details of the payment reminder that was previously created. Supply the unique payment reminder code that was returned when you created it and Emil Api will return the corresponding payment reminder information.
|
|
43
43
|
* @summary Retrieve the payment reminder
|
|
44
|
-
* @param {string} code
|
|
44
|
+
* @param {string} code
|
|
45
45
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
46
46
|
* @param {*} [options] Override http request option.
|
|
47
47
|
* @throws {RequiredError}
|
|
48
48
|
*/
|
|
49
49
|
getPolicy: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
50
50
|
/**
|
|
51
|
-
* Returns a list of payment reminders you have previously created.
|
|
51
|
+
* Returns a list of payment reminders you have previously created. The payment reminders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
52
52
|
* @summary List payment reminders
|
|
53
53
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
54
|
-
* @param {
|
|
55
|
-
* @param {
|
|
56
|
-
* @param {
|
|
57
|
-
* @param {
|
|
58
|
-
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
59
|
-
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
60
|
-
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
54
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, policyCode, nextReminderDate</i>
|
|
55
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, policyCode, nextReminderDate</i>
|
|
56
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
57
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: <i>
|
|
61
58
|
* @param {*} [options] Override http request option.
|
|
62
59
|
* @throws {RequiredError}
|
|
63
60
|
*/
|
|
64
|
-
listPaymentReminders: (authorization?: string,
|
|
61
|
+
listPaymentReminders: (authorization?: string, filter?: string, filters?: string, order?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
65
62
|
};
|
|
66
63
|
/**
|
|
67
64
|
* PaymentRemindersApi - functional programming interface
|
|
@@ -70,7 +67,7 @@ export declare const PaymentRemindersApiAxiosParamCreator: (configuration?: Conf
|
|
|
70
67
|
export declare const PaymentRemindersApiFp: (configuration?: Configuration) => {
|
|
71
68
|
/**
|
|
72
69
|
* This will create a payment reminder in the database.
|
|
73
|
-
* @summary Create the payment
|
|
70
|
+
* @summary Create the payment reminder
|
|
74
71
|
* @param {CreatePaymentReminderRequestDto} createPaymentReminderRequestDto
|
|
75
72
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
76
73
|
* @param {*} [options] Override http request option.
|
|
@@ -78,8 +75,8 @@ export declare const PaymentRemindersApiFp: (configuration?: Configuration) => {
|
|
|
78
75
|
*/
|
|
79
76
|
createPaymentReminder(createPaymentReminderRequestDto: CreatePaymentReminderRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
80
77
|
/**
|
|
81
|
-
*
|
|
82
|
-
* @summary
|
|
78
|
+
* This will deactivate the payment reminder
|
|
79
|
+
* @summary Deactivate payment reminder
|
|
83
80
|
* @param {string} code Unique identifier for the object.
|
|
84
81
|
* @param {DeactivatePaymentReminderRequestDto} deactivatePaymentReminderRequestDto
|
|
85
82
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -88,29 +85,26 @@ export declare const PaymentRemindersApiFp: (configuration?: Configuration) => {
|
|
|
88
85
|
*/
|
|
89
86
|
deactivatePaymentReminder(code: string, deactivatePaymentReminderRequestDto: DeactivatePaymentReminderRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
90
87
|
/**
|
|
91
|
-
* Retrieves the details of the payment reminder that was previously created. Supply the unique payment reminder code
|
|
88
|
+
* Retrieves the details of the payment reminder that was previously created. Supply the unique payment reminder code that was returned when you created it and Emil Api will return the corresponding payment reminder information.
|
|
92
89
|
* @summary Retrieve the payment reminder
|
|
93
|
-
* @param {string} code
|
|
90
|
+
* @param {string} code
|
|
94
91
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
95
92
|
* @param {*} [options] Override http request option.
|
|
96
93
|
* @throws {RequiredError}
|
|
97
94
|
*/
|
|
98
95
|
getPolicy(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
99
96
|
/**
|
|
100
|
-
* Returns a list of payment reminders you have previously created.
|
|
97
|
+
* Returns a list of payment reminders you have previously created. The payment reminders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
101
98
|
* @summary List payment reminders
|
|
102
99
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
103
|
-
* @param {
|
|
104
|
-
* @param {
|
|
105
|
-
* @param {
|
|
106
|
-
* @param {
|
|
107
|
-
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
108
|
-
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
109
|
-
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
100
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, policyCode, nextReminderDate</i>
|
|
101
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, policyCode, nextReminderDate</i>
|
|
102
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
103
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: <i>
|
|
110
104
|
* @param {*} [options] Override http request option.
|
|
111
105
|
* @throws {RequiredError}
|
|
112
106
|
*/
|
|
113
|
-
listPaymentReminders(authorization?: string,
|
|
107
|
+
listPaymentReminders(authorization?: string, filter?: string, filters?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
114
108
|
};
|
|
115
109
|
/**
|
|
116
110
|
* PaymentRemindersApi - factory interface
|
|
@@ -119,7 +113,7 @@ export declare const PaymentRemindersApiFp: (configuration?: Configuration) => {
|
|
|
119
113
|
export declare const PaymentRemindersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
120
114
|
/**
|
|
121
115
|
* This will create a payment reminder in the database.
|
|
122
|
-
* @summary Create the payment
|
|
116
|
+
* @summary Create the payment reminder
|
|
123
117
|
* @param {CreatePaymentReminderRequestDto} createPaymentReminderRequestDto
|
|
124
118
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
125
119
|
* @param {*} [options] Override http request option.
|
|
@@ -127,8 +121,8 @@ export declare const PaymentRemindersApiFactory: (configuration?: Configuration,
|
|
|
127
121
|
*/
|
|
128
122
|
createPaymentReminder(createPaymentReminderRequestDto: CreatePaymentReminderRequestDto, authorization?: string, options?: any): AxiosPromise<void>;
|
|
129
123
|
/**
|
|
130
|
-
*
|
|
131
|
-
* @summary
|
|
124
|
+
* This will deactivate the payment reminder
|
|
125
|
+
* @summary Deactivate payment reminder
|
|
132
126
|
* @param {string} code Unique identifier for the object.
|
|
133
127
|
* @param {DeactivatePaymentReminderRequestDto} deactivatePaymentReminderRequestDto
|
|
134
128
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -137,29 +131,26 @@ export declare const PaymentRemindersApiFactory: (configuration?: Configuration,
|
|
|
137
131
|
*/
|
|
138
132
|
deactivatePaymentReminder(code: string, deactivatePaymentReminderRequestDto: DeactivatePaymentReminderRequestDto, authorization?: string, options?: any): AxiosPromise<void>;
|
|
139
133
|
/**
|
|
140
|
-
* Retrieves the details of the payment reminder that was previously created. Supply the unique payment reminder code
|
|
134
|
+
* Retrieves the details of the payment reminder that was previously created. Supply the unique payment reminder code that was returned when you created it and Emil Api will return the corresponding payment reminder information.
|
|
141
135
|
* @summary Retrieve the payment reminder
|
|
142
|
-
* @param {string} code
|
|
136
|
+
* @param {string} code
|
|
143
137
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
144
138
|
* @param {*} [options] Override http request option.
|
|
145
139
|
* @throws {RequiredError}
|
|
146
140
|
*/
|
|
147
141
|
getPolicy(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
148
142
|
/**
|
|
149
|
-
* Returns a list of payment reminders you have previously created.
|
|
143
|
+
* Returns a list of payment reminders you have previously created. The payment reminders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
150
144
|
* @summary List payment reminders
|
|
151
145
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
152
|
-
* @param {
|
|
153
|
-
* @param {
|
|
154
|
-
* @param {
|
|
155
|
-
* @param {
|
|
156
|
-
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
157
|
-
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
158
|
-
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
146
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, policyCode, nextReminderDate</i>
|
|
147
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, policyCode, nextReminderDate</i>
|
|
148
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
149
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: <i>
|
|
159
150
|
* @param {*} [options] Override http request option.
|
|
160
151
|
* @throws {RequiredError}
|
|
161
152
|
*/
|
|
162
|
-
listPaymentReminders(authorization?: string,
|
|
153
|
+
listPaymentReminders(authorization?: string, filter?: string, filters?: string, order?: string, expand?: string, options?: any): AxiosPromise<void>;
|
|
163
154
|
};
|
|
164
155
|
/**
|
|
165
156
|
* Request parameters for createPaymentReminder operation in PaymentRemindersApi.
|
|
@@ -212,7 +203,7 @@ export interface PaymentRemindersApiDeactivatePaymentReminderRequest {
|
|
|
212
203
|
*/
|
|
213
204
|
export interface PaymentRemindersApiGetPolicyRequest {
|
|
214
205
|
/**
|
|
215
|
-
*
|
|
206
|
+
*
|
|
216
207
|
* @type {string}
|
|
217
208
|
* @memberof PaymentRemindersApiGetPolicy
|
|
218
209
|
*/
|
|
@@ -237,47 +228,29 @@ export interface PaymentRemindersApiListPaymentRemindersRequest {
|
|
|
237
228
|
*/
|
|
238
229
|
readonly authorization?: string;
|
|
239
230
|
/**
|
|
240
|
-
*
|
|
241
|
-
* @type {
|
|
242
|
-
* @memberof PaymentRemindersApiListPaymentReminders
|
|
243
|
-
*/
|
|
244
|
-
readonly pageSize?: any;
|
|
245
|
-
/**
|
|
246
|
-
* A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
247
|
-
* @type {any}
|
|
248
|
-
* @memberof PaymentRemindersApiListPaymentReminders
|
|
249
|
-
*/
|
|
250
|
-
readonly pageToken?: any;
|
|
251
|
-
/**
|
|
252
|
-
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
253
|
-
* @type {any}
|
|
254
|
-
* @memberof PaymentRemindersApiListPaymentReminders
|
|
255
|
-
*/
|
|
256
|
-
readonly filter?: any;
|
|
257
|
-
/**
|
|
258
|
-
* Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
259
|
-
* @type {any}
|
|
231
|
+
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, policyCode, nextReminderDate</i>
|
|
232
|
+
* @type {string}
|
|
260
233
|
* @memberof PaymentRemindersApiListPaymentReminders
|
|
261
234
|
*/
|
|
262
|
-
readonly
|
|
235
|
+
readonly filter?: string;
|
|
263
236
|
/**
|
|
264
|
-
*
|
|
265
|
-
* @type {
|
|
237
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, policyCode, nextReminderDate</i>
|
|
238
|
+
* @type {string}
|
|
266
239
|
* @memberof PaymentRemindersApiListPaymentReminders
|
|
267
240
|
*/
|
|
268
|
-
readonly
|
|
241
|
+
readonly filters?: string;
|
|
269
242
|
/**
|
|
270
|
-
*
|
|
271
|
-
* @type {
|
|
243
|
+
* Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
244
|
+
* @type {string}
|
|
272
245
|
* @memberof PaymentRemindersApiListPaymentReminders
|
|
273
246
|
*/
|
|
274
|
-
readonly
|
|
247
|
+
readonly order?: string;
|
|
275
248
|
/**
|
|
276
|
-
*
|
|
277
|
-
* @type {
|
|
249
|
+
* Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: <i>
|
|
250
|
+
* @type {string}
|
|
278
251
|
* @memberof PaymentRemindersApiListPaymentReminders
|
|
279
252
|
*/
|
|
280
|
-
readonly
|
|
253
|
+
readonly expand?: string;
|
|
281
254
|
}
|
|
282
255
|
/**
|
|
283
256
|
* PaymentRemindersApi - object-oriented interface
|
|
@@ -288,7 +261,7 @@ export interface PaymentRemindersApiListPaymentRemindersRequest {
|
|
|
288
261
|
export declare class PaymentRemindersApi extends BaseAPI {
|
|
289
262
|
/**
|
|
290
263
|
* This will create a payment reminder in the database.
|
|
291
|
-
* @summary Create the payment
|
|
264
|
+
* @summary Create the payment reminder
|
|
292
265
|
* @param {PaymentRemindersApiCreatePaymentReminderRequest} requestParameters Request parameters.
|
|
293
266
|
* @param {*} [options] Override http request option.
|
|
294
267
|
* @throws {RequiredError}
|
|
@@ -296,8 +269,8 @@ export declare class PaymentRemindersApi extends BaseAPI {
|
|
|
296
269
|
*/
|
|
297
270
|
createPaymentReminder(requestParameters: PaymentRemindersApiCreatePaymentReminderRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
298
271
|
/**
|
|
299
|
-
*
|
|
300
|
-
* @summary
|
|
272
|
+
* This will deactivate the payment reminder
|
|
273
|
+
* @summary Deactivate payment reminder
|
|
301
274
|
* @param {PaymentRemindersApiDeactivatePaymentReminderRequest} requestParameters Request parameters.
|
|
302
275
|
* @param {*} [options] Override http request option.
|
|
303
276
|
* @throws {RequiredError}
|
|
@@ -305,7 +278,7 @@ export declare class PaymentRemindersApi extends BaseAPI {
|
|
|
305
278
|
*/
|
|
306
279
|
deactivatePaymentReminder(requestParameters: PaymentRemindersApiDeactivatePaymentReminderRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
307
280
|
/**
|
|
308
|
-
* Retrieves the details of the payment reminder that was previously created. Supply the unique payment reminder code
|
|
281
|
+
* Retrieves the details of the payment reminder that was previously created. Supply the unique payment reminder code that was returned when you created it and Emil Api will return the corresponding payment reminder information.
|
|
309
282
|
* @summary Retrieve the payment reminder
|
|
310
283
|
* @param {PaymentRemindersApiGetPolicyRequest} requestParameters Request parameters.
|
|
311
284
|
* @param {*} [options] Override http request option.
|
|
@@ -314,7 +287,7 @@ export declare class PaymentRemindersApi extends BaseAPI {
|
|
|
314
287
|
*/
|
|
315
288
|
getPolicy(requestParameters: PaymentRemindersApiGetPolicyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
316
289
|
/**
|
|
317
|
-
* Returns a list of payment reminders you have previously created.
|
|
290
|
+
* Returns a list of payment reminders you have previously created. The payment reminders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
318
291
|
* @summary List payment reminders
|
|
319
292
|
* @param {PaymentRemindersApiListPaymentRemindersRequest} requestParameters Request parameters.
|
|
320
293
|
* @param {*} [options] Override http request option.
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Emil Payment Service
|
|
6
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
9
|
* Contact: kontakt@emil.de
|
|
@@ -94,7 +94,7 @@ var PaymentRemindersApiAxiosParamCreator = function (configuration) {
|
|
|
94
94
|
return {
|
|
95
95
|
/**
|
|
96
96
|
* This will create a payment reminder in the database.
|
|
97
|
-
* @summary Create the payment
|
|
97
|
+
* @summary Create the payment reminder
|
|
98
98
|
* @param {CreatePaymentReminderRequestDto} createPaymentReminderRequestDto
|
|
99
99
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
100
100
|
* @param {*} [options] Override http request option.
|
|
@@ -142,8 +142,8 @@ var PaymentRemindersApiAxiosParamCreator = function (configuration) {
|
|
|
142
142
|
});
|
|
143
143
|
},
|
|
144
144
|
/**
|
|
145
|
-
*
|
|
146
|
-
* @summary
|
|
145
|
+
* This will deactivate the payment reminder
|
|
146
|
+
* @summary Deactivate payment reminder
|
|
147
147
|
* @param {string} code Unique identifier for the object.
|
|
148
148
|
* @param {DeactivatePaymentReminderRequestDto} deactivatePaymentReminderRequestDto
|
|
149
149
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -195,9 +195,9 @@ var PaymentRemindersApiAxiosParamCreator = function (configuration) {
|
|
|
195
195
|
});
|
|
196
196
|
},
|
|
197
197
|
/**
|
|
198
|
-
* Retrieves the details of the payment reminder that was previously created. Supply the unique payment reminder code
|
|
198
|
+
* Retrieves the details of the payment reminder that was previously created. Supply the unique payment reminder code that was returned when you created it and Emil Api will return the corresponding payment reminder information.
|
|
199
199
|
* @summary Retrieve the payment reminder
|
|
200
|
-
* @param {string} code
|
|
200
|
+
* @param {string} code
|
|
201
201
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
202
202
|
* @param {*} [options] Override http request option.
|
|
203
203
|
* @throws {RequiredError}
|
|
@@ -243,20 +243,17 @@ var PaymentRemindersApiAxiosParamCreator = function (configuration) {
|
|
|
243
243
|
});
|
|
244
244
|
},
|
|
245
245
|
/**
|
|
246
|
-
* Returns a list of payment reminders you have previously created.
|
|
246
|
+
* Returns a list of payment reminders you have previously created. The payment reminders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
247
247
|
* @summary List payment reminders
|
|
248
248
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
249
|
-
* @param {
|
|
250
|
-
* @param {
|
|
251
|
-
* @param {
|
|
252
|
-
* @param {
|
|
253
|
-
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
254
|
-
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
255
|
-
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
249
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, policyCode, nextReminderDate</i>
|
|
250
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, policyCode, nextReminderDate</i>
|
|
251
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
252
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: <i>
|
|
256
253
|
* @param {*} [options] Override http request option.
|
|
257
254
|
* @throws {RequiredError}
|
|
258
255
|
*/
|
|
259
|
-
listPaymentReminders: function (authorization,
|
|
256
|
+
listPaymentReminders: function (authorization, filter, filters, order, expand, options) {
|
|
260
257
|
if (options === void 0) { options = {}; }
|
|
261
258
|
return __awaiter(_this, void 0, void 0, function () {
|
|
262
259
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -279,17 +276,11 @@ var PaymentRemindersApiAxiosParamCreator = function (configuration) {
|
|
|
279
276
|
// authentication bearer required
|
|
280
277
|
// http bearer authentication required
|
|
281
278
|
_a.sent();
|
|
282
|
-
if (pageSize !== undefined) {
|
|
283
|
-
localVarQueryParameter['pageSize'] = pageSize;
|
|
284
|
-
}
|
|
285
|
-
if (pageToken !== undefined) {
|
|
286
|
-
localVarQueryParameter['pageToken'] = pageToken;
|
|
287
|
-
}
|
|
288
279
|
if (filter !== undefined) {
|
|
289
280
|
localVarQueryParameter['filter'] = filter;
|
|
290
281
|
}
|
|
291
|
-
if (
|
|
292
|
-
localVarQueryParameter['
|
|
282
|
+
if (filters !== undefined) {
|
|
283
|
+
localVarQueryParameter['filters'] = filters;
|
|
293
284
|
}
|
|
294
285
|
if (order !== undefined) {
|
|
295
286
|
localVarQueryParameter['order'] = order;
|
|
@@ -297,9 +288,6 @@ var PaymentRemindersApiAxiosParamCreator = function (configuration) {
|
|
|
297
288
|
if (expand !== undefined) {
|
|
298
289
|
localVarQueryParameter['expand'] = expand;
|
|
299
290
|
}
|
|
300
|
-
if (filters !== undefined) {
|
|
301
|
-
localVarQueryParameter['filters'] = filters;
|
|
302
|
-
}
|
|
303
291
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
304
292
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
305
293
|
}
|
|
@@ -326,7 +314,7 @@ var PaymentRemindersApiFp = function (configuration) {
|
|
|
326
314
|
return {
|
|
327
315
|
/**
|
|
328
316
|
* This will create a payment reminder in the database.
|
|
329
|
-
* @summary Create the payment
|
|
317
|
+
* @summary Create the payment reminder
|
|
330
318
|
* @param {CreatePaymentReminderRequestDto} createPaymentReminderRequestDto
|
|
331
319
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
332
320
|
* @param {*} [options] Override http request option.
|
|
@@ -346,8 +334,8 @@ var PaymentRemindersApiFp = function (configuration) {
|
|
|
346
334
|
});
|
|
347
335
|
},
|
|
348
336
|
/**
|
|
349
|
-
*
|
|
350
|
-
* @summary
|
|
337
|
+
* This will deactivate the payment reminder
|
|
338
|
+
* @summary Deactivate payment reminder
|
|
351
339
|
* @param {string} code Unique identifier for the object.
|
|
352
340
|
* @param {DeactivatePaymentReminderRequestDto} deactivatePaymentReminderRequestDto
|
|
353
341
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -368,9 +356,9 @@ var PaymentRemindersApiFp = function (configuration) {
|
|
|
368
356
|
});
|
|
369
357
|
},
|
|
370
358
|
/**
|
|
371
|
-
* Retrieves the details of the payment reminder that was previously created. Supply the unique payment reminder code
|
|
359
|
+
* Retrieves the details of the payment reminder that was previously created. Supply the unique payment reminder code that was returned when you created it and Emil Api will return the corresponding payment reminder information.
|
|
372
360
|
* @summary Retrieve the payment reminder
|
|
373
|
-
* @param {string} code
|
|
361
|
+
* @param {string} code
|
|
374
362
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
375
363
|
* @param {*} [options] Override http request option.
|
|
376
364
|
* @throws {RequiredError}
|
|
@@ -389,25 +377,22 @@ var PaymentRemindersApiFp = function (configuration) {
|
|
|
389
377
|
});
|
|
390
378
|
},
|
|
391
379
|
/**
|
|
392
|
-
* Returns a list of payment reminders you have previously created.
|
|
380
|
+
* Returns a list of payment reminders you have previously created. The payment reminders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
393
381
|
* @summary List payment reminders
|
|
394
382
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
395
|
-
* @param {
|
|
396
|
-
* @param {
|
|
397
|
-
* @param {
|
|
398
|
-
* @param {
|
|
399
|
-
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
400
|
-
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
401
|
-
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
383
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, policyCode, nextReminderDate</i>
|
|
384
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, policyCode, nextReminderDate</i>
|
|
385
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
386
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: <i>
|
|
402
387
|
* @param {*} [options] Override http request option.
|
|
403
388
|
* @throws {RequiredError}
|
|
404
389
|
*/
|
|
405
|
-
listPaymentReminders: function (authorization,
|
|
390
|
+
listPaymentReminders: function (authorization, filter, filters, order, expand, options) {
|
|
406
391
|
return __awaiter(this, void 0, void 0, function () {
|
|
407
392
|
var localVarAxiosArgs;
|
|
408
393
|
return __generator(this, function (_a) {
|
|
409
394
|
switch (_a.label) {
|
|
410
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPaymentReminders(authorization,
|
|
395
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPaymentReminders(authorization, filter, filters, order, expand, options)];
|
|
411
396
|
case 1:
|
|
412
397
|
localVarAxiosArgs = _a.sent();
|
|
413
398
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -427,7 +412,7 @@ var PaymentRemindersApiFactory = function (configuration, basePath, axios) {
|
|
|
427
412
|
return {
|
|
428
413
|
/**
|
|
429
414
|
* This will create a payment reminder in the database.
|
|
430
|
-
* @summary Create the payment
|
|
415
|
+
* @summary Create the payment reminder
|
|
431
416
|
* @param {CreatePaymentReminderRequestDto} createPaymentReminderRequestDto
|
|
432
417
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
433
418
|
* @param {*} [options] Override http request option.
|
|
@@ -437,8 +422,8 @@ var PaymentRemindersApiFactory = function (configuration, basePath, axios) {
|
|
|
437
422
|
return localVarFp.createPaymentReminder(createPaymentReminderRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
438
423
|
},
|
|
439
424
|
/**
|
|
440
|
-
*
|
|
441
|
-
* @summary
|
|
425
|
+
* This will deactivate the payment reminder
|
|
426
|
+
* @summary Deactivate payment reminder
|
|
442
427
|
* @param {string} code Unique identifier for the object.
|
|
443
428
|
* @param {DeactivatePaymentReminderRequestDto} deactivatePaymentReminderRequestDto
|
|
444
429
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -449,9 +434,9 @@ var PaymentRemindersApiFactory = function (configuration, basePath, axios) {
|
|
|
449
434
|
return localVarFp.deactivatePaymentReminder(code, deactivatePaymentReminderRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
450
435
|
},
|
|
451
436
|
/**
|
|
452
|
-
* Retrieves the details of the payment reminder that was previously created. Supply the unique payment reminder code
|
|
437
|
+
* Retrieves the details of the payment reminder that was previously created. Supply the unique payment reminder code that was returned when you created it and Emil Api will return the corresponding payment reminder information.
|
|
453
438
|
* @summary Retrieve the payment reminder
|
|
454
|
-
* @param {string} code
|
|
439
|
+
* @param {string} code
|
|
455
440
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
456
441
|
* @param {*} [options] Override http request option.
|
|
457
442
|
* @throws {RequiredError}
|
|
@@ -460,21 +445,18 @@ var PaymentRemindersApiFactory = function (configuration, basePath, axios) {
|
|
|
460
445
|
return localVarFp.getPolicy(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
461
446
|
},
|
|
462
447
|
/**
|
|
463
|
-
* Returns a list of payment reminders you have previously created.
|
|
448
|
+
* Returns a list of payment reminders you have previously created. The payment reminders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
464
449
|
* @summary List payment reminders
|
|
465
450
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
466
|
-
* @param {
|
|
467
|
-
* @param {
|
|
468
|
-
* @param {
|
|
469
|
-
* @param {
|
|
470
|
-
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
471
|
-
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
472
|
-
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
451
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, policyCode, nextReminderDate</i>
|
|
452
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, policyCode, nextReminderDate</i>
|
|
453
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
454
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: <i>
|
|
473
455
|
* @param {*} [options] Override http request option.
|
|
474
456
|
* @throws {RequiredError}
|
|
475
457
|
*/
|
|
476
|
-
listPaymentReminders: function (authorization,
|
|
477
|
-
return localVarFp.listPaymentReminders(authorization,
|
|
458
|
+
listPaymentReminders: function (authorization, filter, filters, order, expand, options) {
|
|
459
|
+
return localVarFp.listPaymentReminders(authorization, filter, filters, order, expand, options).then(function (request) { return request(axios, basePath); });
|
|
478
460
|
},
|
|
479
461
|
};
|
|
480
462
|
};
|
|
@@ -492,7 +474,7 @@ var PaymentRemindersApi = /** @class */ (function (_super) {
|
|
|
492
474
|
}
|
|
493
475
|
/**
|
|
494
476
|
* This will create a payment reminder in the database.
|
|
495
|
-
* @summary Create the payment
|
|
477
|
+
* @summary Create the payment reminder
|
|
496
478
|
* @param {PaymentRemindersApiCreatePaymentReminderRequest} requestParameters Request parameters.
|
|
497
479
|
* @param {*} [options] Override http request option.
|
|
498
480
|
* @throws {RequiredError}
|
|
@@ -503,8 +485,8 @@ var PaymentRemindersApi = /** @class */ (function (_super) {
|
|
|
503
485
|
return (0, exports.PaymentRemindersApiFp)(this.configuration).createPaymentReminder(requestParameters.createPaymentReminderRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
504
486
|
};
|
|
505
487
|
/**
|
|
506
|
-
*
|
|
507
|
-
* @summary
|
|
488
|
+
* This will deactivate the payment reminder
|
|
489
|
+
* @summary Deactivate payment reminder
|
|
508
490
|
* @param {PaymentRemindersApiDeactivatePaymentReminderRequest} requestParameters Request parameters.
|
|
509
491
|
* @param {*} [options] Override http request option.
|
|
510
492
|
* @throws {RequiredError}
|
|
@@ -515,7 +497,7 @@ var PaymentRemindersApi = /** @class */ (function (_super) {
|
|
|
515
497
|
return (0, exports.PaymentRemindersApiFp)(this.configuration).deactivatePaymentReminder(requestParameters.code, requestParameters.deactivatePaymentReminderRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
516
498
|
};
|
|
517
499
|
/**
|
|
518
|
-
* Retrieves the details of the payment reminder that was previously created. Supply the unique payment reminder code
|
|
500
|
+
* Retrieves the details of the payment reminder that was previously created. Supply the unique payment reminder code that was returned when you created it and Emil Api will return the corresponding payment reminder information.
|
|
519
501
|
* @summary Retrieve the payment reminder
|
|
520
502
|
* @param {PaymentRemindersApiGetPolicyRequest} requestParameters Request parameters.
|
|
521
503
|
* @param {*} [options] Override http request option.
|
|
@@ -527,7 +509,7 @@ var PaymentRemindersApi = /** @class */ (function (_super) {
|
|
|
527
509
|
return (0, exports.PaymentRemindersApiFp)(this.configuration).getPolicy(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
528
510
|
};
|
|
529
511
|
/**
|
|
530
|
-
* Returns a list of payment reminders you have previously created.
|
|
512
|
+
* Returns a list of payment reminders you have previously created. The payment reminders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
531
513
|
* @summary List payment reminders
|
|
532
514
|
* @param {PaymentRemindersApiListPaymentRemindersRequest} requestParameters Request parameters.
|
|
533
515
|
* @param {*} [options] Override http request option.
|
|
@@ -537,7 +519,7 @@ var PaymentRemindersApi = /** @class */ (function (_super) {
|
|
|
537
519
|
PaymentRemindersApi.prototype.listPaymentReminders = function (requestParameters, options) {
|
|
538
520
|
var _this = this;
|
|
539
521
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
540
|
-
return (0, exports.PaymentRemindersApiFp)(this.configuration).listPaymentReminders(requestParameters.authorization, requestParameters.
|
|
522
|
+
return (0, exports.PaymentRemindersApiFp)(this.configuration).listPaymentReminders(requestParameters.authorization, requestParameters.filter, requestParameters.filters, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
541
523
|
};
|
|
542
524
|
return PaymentRemindersApi;
|
|
543
525
|
}(base_1.BaseAPI));
|