@emilgroup/billing-sdk-node 1.17.1-beta.1 → 1.17.1
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 +2 -0
- package/README.md +2 -2
- package/api/draft-invoice-api.ts +346 -0
- package/api/invoices-api.ts +78 -78
- package/api.ts +2 -0
- package/dist/api/draft-invoice-api.d.ts +185 -0
- package/dist/api/draft-invoice-api.js +396 -0
- package/dist/api/invoices-api.d.ts +78 -78
- package/dist/api/invoices-api.js +46 -46
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/models/create-draft-invoice-request-dto.d.ts +89 -0
- package/dist/models/create-draft-invoice-request-dto.js +26 -0
- package/dist/models/create-estimated-invoice-for-interval-request-dto.d.ts +2 -2
- package/dist/models/create-invoice-payment-request-dto.d.ts +1 -1
- package/dist/models/create-invoice-request-dto.d.ts +2 -2
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/invoice-item-class.d.ts +12 -0
- package/dist/models/invoice-payment-class.d.ts +2 -2
- package/dist/models/policy-dto.d.ts +6 -0
- package/models/create-draft-invoice-request-dto.ts +98 -0
- package/models/create-estimated-invoice-for-interval-request-dto.ts +2 -2
- package/models/create-invoice-payment-request-dto.ts +1 -1
- package/models/create-invoice-request-dto.ts +2 -2
- package/models/index.ts +1 -0
- package/models/invoice-item-class.ts +12 -0
- package/models/invoice-payment-class.ts +2 -2
- package/models/policy-dto.ts +6 -0
- package/package.json +1 -1
|
@@ -21,8 +21,8 @@ import { ListPoliciesBillingDatesResponseClass } from '../models';
|
|
|
21
21
|
*/
|
|
22
22
|
export declare const InvoicesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
25
|
-
* @summary
|
|
24
|
+
* Gets an invoice.
|
|
25
|
+
* @summary Retrieve the invoice
|
|
26
26
|
* @param {string} code
|
|
27
27
|
* @param {string} expand
|
|
28
28
|
* @param {string} [authorization] Bearer Token
|
|
@@ -31,35 +31,35 @@ export declare const InvoicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
31
31
|
*/
|
|
32
32
|
getInvoice: (code: string, expand: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
33
33
|
/**
|
|
34
|
-
* Returns a list of invoices you have previously created.
|
|
34
|
+
* Returns a list of invoices you have previously created. The invoices are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
35
35
|
* @summary List invoices
|
|
36
36
|
* @param {string} [authorization] Bearer Token
|
|
37
37
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
38
38
|
* @param {any} [pageToken] 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.
|
|
39
|
-
* @param {
|
|
40
|
-
* @param {any} [search]
|
|
41
|
-
* @param {
|
|
42
|
-
* @param {
|
|
43
|
-
* @param {
|
|
39
|
+
* @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, policyCode, id, type, accountNumber, status, billingIntervalFrom, billingIntervalTo, createdAt</i>
|
|
40
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
41
|
+
* @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: invoiceNumber, status, netAmount, grossAmount, createdAt, dueDate, id</i>
|
|
42
|
+
* @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: statuses, payments.<i>
|
|
43
|
+
* @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, policyCode, id, type, accountNumber, status, billingIntervalFrom, billingIntervalTo, createdAt</i>
|
|
44
44
|
* @param {*} [options] Override http request option.
|
|
45
45
|
* @throws {RequiredError}
|
|
46
46
|
*/
|
|
47
|
-
listInvoices: (authorization?: string, pageSize?: any, pageToken?: any, filter?:
|
|
47
|
+
listInvoices: (authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
48
48
|
/**
|
|
49
|
-
* Returns a list of policies billing dates you have previously created.
|
|
49
|
+
* Returns a list of policies billing dates you have previously created. The policies billing dates are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
50
50
|
* @summary List policies billing dates
|
|
51
51
|
* @param {string} [authorization] Bearer Token
|
|
52
52
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
53
53
|
* @param {any} [pageToken] 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.
|
|
54
|
-
* @param {
|
|
55
|
-
* @param {any} [search]
|
|
56
|
-
* @param {
|
|
57
|
-
* @param {
|
|
58
|
-
* @param {
|
|
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: policyCode, isInvoiced, nextBillingDate, accountNumber, status, billingIntervalFrom, billingIntervalTo</i>
|
|
55
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
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: createdAt</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>
|
|
58
|
+
* @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: policyCode, isInvoiced, nextBillingDate, accountNumber, status, billingIntervalFrom, billingIntervalTo</i>
|
|
59
59
|
* @param {*} [options] Override http request option.
|
|
60
60
|
* @throws {RequiredError}
|
|
61
61
|
*/
|
|
62
|
-
listPoliciesBillingDates: (authorization?: string, pageSize?: any, pageToken?: any, filter?:
|
|
62
|
+
listPoliciesBillingDates: (authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
63
63
|
};
|
|
64
64
|
/**
|
|
65
65
|
* InvoicesApi - functional programming interface
|
|
@@ -67,8 +67,8 @@ export declare const InvoicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
67
67
|
*/
|
|
68
68
|
export declare const InvoicesApiFp: (configuration?: Configuration) => {
|
|
69
69
|
/**
|
|
70
|
-
*
|
|
71
|
-
* @summary
|
|
70
|
+
* Gets an invoice.
|
|
71
|
+
* @summary Retrieve the invoice
|
|
72
72
|
* @param {string} code
|
|
73
73
|
* @param {string} expand
|
|
74
74
|
* @param {string} [authorization] Bearer Token
|
|
@@ -77,35 +77,35 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
|
|
|
77
77
|
*/
|
|
78
78
|
getInvoice(code: string, expand: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetInvoiceResponseClass>>;
|
|
79
79
|
/**
|
|
80
|
-
* Returns a list of invoices you have previously created.
|
|
80
|
+
* Returns a list of invoices you have previously created. The invoices are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
81
81
|
* @summary List invoices
|
|
82
82
|
* @param {string} [authorization] Bearer Token
|
|
83
83
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
84
84
|
* @param {any} [pageToken] 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.
|
|
85
|
-
* @param {
|
|
86
|
-
* @param {any} [search]
|
|
87
|
-
* @param {
|
|
88
|
-
* @param {
|
|
89
|
-
* @param {
|
|
85
|
+
* @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, policyCode, id, type, accountNumber, status, billingIntervalFrom, billingIntervalTo, createdAt</i>
|
|
86
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
87
|
+
* @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: invoiceNumber, status, netAmount, grossAmount, createdAt, dueDate, id</i>
|
|
88
|
+
* @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: statuses, payments.<i>
|
|
89
|
+
* @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, policyCode, id, type, accountNumber, status, billingIntervalFrom, billingIntervalTo, createdAt</i>
|
|
90
90
|
* @param {*} [options] Override http request option.
|
|
91
91
|
* @throws {RequiredError}
|
|
92
92
|
*/
|
|
93
|
-
listInvoices(authorization?: string, pageSize?: any, pageToken?: any, filter?:
|
|
93
|
+
listInvoices(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListInvoicesResponseClass>>;
|
|
94
94
|
/**
|
|
95
|
-
* Returns a list of policies billing dates you have previously created.
|
|
95
|
+
* Returns a list of policies billing dates you have previously created. The policies billing dates are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
96
96
|
* @summary List policies billing dates
|
|
97
97
|
* @param {string} [authorization] Bearer Token
|
|
98
98
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
99
99
|
* @param {any} [pageToken] 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.
|
|
100
|
-
* @param {
|
|
101
|
-
* @param {any} [search]
|
|
102
|
-
* @param {
|
|
103
|
-
* @param {
|
|
104
|
-
* @param {
|
|
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: policyCode, isInvoiced, nextBillingDate, accountNumber, status, billingIntervalFrom, billingIntervalTo</i>
|
|
101
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
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: createdAt</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>
|
|
104
|
+
* @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: policyCode, isInvoiced, nextBillingDate, accountNumber, status, billingIntervalFrom, billingIntervalTo</i>
|
|
105
105
|
* @param {*} [options] Override http request option.
|
|
106
106
|
* @throws {RequiredError}
|
|
107
107
|
*/
|
|
108
|
-
listPoliciesBillingDates(authorization?: string, pageSize?: any, pageToken?: any, filter?:
|
|
108
|
+
listPoliciesBillingDates(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPoliciesBillingDatesResponseClass>>;
|
|
109
109
|
};
|
|
110
110
|
/**
|
|
111
111
|
* InvoicesApi - factory interface
|
|
@@ -113,8 +113,8 @@ export declare const InvoicesApiFp: (configuration?: Configuration) => {
|
|
|
113
113
|
*/
|
|
114
114
|
export declare const InvoicesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
115
115
|
/**
|
|
116
|
-
*
|
|
117
|
-
* @summary
|
|
116
|
+
* Gets an invoice.
|
|
117
|
+
* @summary Retrieve the invoice
|
|
118
118
|
* @param {string} code
|
|
119
119
|
* @param {string} expand
|
|
120
120
|
* @param {string} [authorization] Bearer Token
|
|
@@ -123,35 +123,35 @@ export declare const InvoicesApiFactory: (configuration?: Configuration, basePat
|
|
|
123
123
|
*/
|
|
124
124
|
getInvoice(code: string, expand: string, authorization?: string, options?: any): AxiosPromise<GetInvoiceResponseClass>;
|
|
125
125
|
/**
|
|
126
|
-
* Returns a list of invoices you have previously created.
|
|
126
|
+
* Returns a list of invoices you have previously created. The invoices are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
127
127
|
* @summary List invoices
|
|
128
128
|
* @param {string} [authorization] Bearer Token
|
|
129
129
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
130
130
|
* @param {any} [pageToken] 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.
|
|
131
|
-
* @param {
|
|
132
|
-
* @param {any} [search]
|
|
133
|
-
* @param {
|
|
134
|
-
* @param {
|
|
135
|
-
* @param {
|
|
131
|
+
* @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, policyCode, id, type, accountNumber, status, billingIntervalFrom, billingIntervalTo, createdAt</i>
|
|
132
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
133
|
+
* @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: invoiceNumber, status, netAmount, grossAmount, createdAt, dueDate, id</i>
|
|
134
|
+
* @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: statuses, payments.<i>
|
|
135
|
+
* @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, policyCode, id, type, accountNumber, status, billingIntervalFrom, billingIntervalTo, createdAt</i>
|
|
136
136
|
* @param {*} [options] Override http request option.
|
|
137
137
|
* @throws {RequiredError}
|
|
138
138
|
*/
|
|
139
|
-
listInvoices(authorization?: string, pageSize?: any, pageToken?: any, filter?:
|
|
139
|
+
listInvoices(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListInvoicesResponseClass>;
|
|
140
140
|
/**
|
|
141
|
-
* Returns a list of policies billing dates you have previously created.
|
|
141
|
+
* Returns a list of policies billing dates you have previously created. The policies billing dates are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
142
142
|
* @summary List policies billing dates
|
|
143
143
|
* @param {string} [authorization] Bearer Token
|
|
144
144
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
145
145
|
* @param {any} [pageToken] 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.
|
|
146
|
-
* @param {
|
|
147
|
-
* @param {any} [search]
|
|
148
|
-
* @param {
|
|
149
|
-
* @param {
|
|
150
|
-
* @param {
|
|
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: policyCode, isInvoiced, nextBillingDate, accountNumber, status, billingIntervalFrom, billingIntervalTo</i>
|
|
147
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
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: createdAt</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>
|
|
150
|
+
* @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: policyCode, isInvoiced, nextBillingDate, accountNumber, status, billingIntervalFrom, billingIntervalTo</i>
|
|
151
151
|
* @param {*} [options] Override http request option.
|
|
152
152
|
* @throws {RequiredError}
|
|
153
153
|
*/
|
|
154
|
-
listPoliciesBillingDates(authorization?: string, pageSize?: any, pageToken?: any, filter?:
|
|
154
|
+
listPoliciesBillingDates(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListPoliciesBillingDatesResponseClass>;
|
|
155
155
|
};
|
|
156
156
|
/**
|
|
157
157
|
* Request parameters for getInvoice operation in InvoicesApi.
|
|
@@ -203,35 +203,35 @@ export interface InvoicesApiListInvoicesRequest {
|
|
|
203
203
|
*/
|
|
204
204
|
readonly pageToken?: any;
|
|
205
205
|
/**
|
|
206
|
-
* Filter the response by one or multiple fields.
|
|
207
|
-
* @type {
|
|
206
|
+
* 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, policyCode, id, type, accountNumber, status, billingIntervalFrom, billingIntervalTo, createdAt</i>
|
|
207
|
+
* @type {string}
|
|
208
208
|
* @memberof InvoicesApiListInvoices
|
|
209
209
|
*/
|
|
210
|
-
readonly filter?:
|
|
210
|
+
readonly filter?: string;
|
|
211
211
|
/**
|
|
212
|
-
*
|
|
212
|
+
* To search the list by any field, pass search=xxx to fetch the result.
|
|
213
213
|
* @type {any}
|
|
214
214
|
* @memberof InvoicesApiListInvoices
|
|
215
215
|
*/
|
|
216
216
|
readonly search?: any;
|
|
217
217
|
/**
|
|
218
|
-
*
|
|
219
|
-
* @type {
|
|
218
|
+
* 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: invoiceNumber, status, netAmount, grossAmount, createdAt, dueDate, id</i>
|
|
219
|
+
* @type {string}
|
|
220
220
|
* @memberof InvoicesApiListInvoices
|
|
221
221
|
*/
|
|
222
|
-
readonly order?:
|
|
222
|
+
readonly order?: string;
|
|
223
223
|
/**
|
|
224
|
-
*
|
|
225
|
-
* @type {
|
|
224
|
+
* 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: statuses, payments.<i>
|
|
225
|
+
* @type {string}
|
|
226
226
|
* @memberof InvoicesApiListInvoices
|
|
227
227
|
*/
|
|
228
|
-
readonly expand?:
|
|
228
|
+
readonly expand?: string;
|
|
229
229
|
/**
|
|
230
|
-
* Filters the response by one or multiple fields.
|
|
231
|
-
* @type {
|
|
230
|
+
* 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, policyCode, id, type, accountNumber, status, billingIntervalFrom, billingIntervalTo, createdAt</i>
|
|
231
|
+
* @type {string}
|
|
232
232
|
* @memberof InvoicesApiListInvoices
|
|
233
233
|
*/
|
|
234
|
-
readonly filters?:
|
|
234
|
+
readonly filters?: string;
|
|
235
235
|
}
|
|
236
236
|
/**
|
|
237
237
|
* Request parameters for listPoliciesBillingDates operation in InvoicesApi.
|
|
@@ -258,35 +258,35 @@ export interface InvoicesApiListPoliciesBillingDatesRequest {
|
|
|
258
258
|
*/
|
|
259
259
|
readonly pageToken?: any;
|
|
260
260
|
/**
|
|
261
|
-
* Filter the response by one or multiple fields.
|
|
262
|
-
* @type {
|
|
261
|
+
* 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: policyCode, isInvoiced, nextBillingDate, accountNumber, status, billingIntervalFrom, billingIntervalTo</i>
|
|
262
|
+
* @type {string}
|
|
263
263
|
* @memberof InvoicesApiListPoliciesBillingDates
|
|
264
264
|
*/
|
|
265
|
-
readonly filter?:
|
|
265
|
+
readonly filter?: string;
|
|
266
266
|
/**
|
|
267
|
-
*
|
|
267
|
+
* To search the list by any field, pass search=xxx to fetch the result.
|
|
268
268
|
* @type {any}
|
|
269
269
|
* @memberof InvoicesApiListPoliciesBillingDates
|
|
270
270
|
*/
|
|
271
271
|
readonly search?: any;
|
|
272
272
|
/**
|
|
273
|
-
*
|
|
274
|
-
* @type {
|
|
273
|
+
* 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: createdAt</i>
|
|
274
|
+
* @type {string}
|
|
275
275
|
* @memberof InvoicesApiListPoliciesBillingDates
|
|
276
276
|
*/
|
|
277
|
-
readonly order?:
|
|
277
|
+
readonly order?: string;
|
|
278
278
|
/**
|
|
279
|
-
*
|
|
280
|
-
* @type {
|
|
279
|
+
* 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>
|
|
280
|
+
* @type {string}
|
|
281
281
|
* @memberof InvoicesApiListPoliciesBillingDates
|
|
282
282
|
*/
|
|
283
|
-
readonly expand?:
|
|
283
|
+
readonly expand?: string;
|
|
284
284
|
/**
|
|
285
|
-
* Filters the response by one or multiple fields.
|
|
286
|
-
* @type {
|
|
285
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: policyCode, isInvoiced, nextBillingDate, accountNumber, status, billingIntervalFrom, billingIntervalTo</i>
|
|
286
|
+
* @type {string}
|
|
287
287
|
* @memberof InvoicesApiListPoliciesBillingDates
|
|
288
288
|
*/
|
|
289
|
-
readonly filters?:
|
|
289
|
+
readonly filters?: string;
|
|
290
290
|
}
|
|
291
291
|
/**
|
|
292
292
|
* InvoicesApi - object-oriented interface
|
|
@@ -296,8 +296,8 @@ export interface InvoicesApiListPoliciesBillingDatesRequest {
|
|
|
296
296
|
*/
|
|
297
297
|
export declare class InvoicesApi extends BaseAPI {
|
|
298
298
|
/**
|
|
299
|
-
*
|
|
300
|
-
* @summary
|
|
299
|
+
* Gets an invoice.
|
|
300
|
+
* @summary Retrieve the invoice
|
|
301
301
|
* @param {InvoicesApiGetInvoiceRequest} requestParameters Request parameters.
|
|
302
302
|
* @param {*} [options] Override http request option.
|
|
303
303
|
* @throws {RequiredError}
|
|
@@ -305,7 +305,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
305
305
|
*/
|
|
306
306
|
getInvoice(requestParameters: InvoicesApiGetInvoiceRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetInvoiceResponseClass, any>>;
|
|
307
307
|
/**
|
|
308
|
-
* Returns a list of invoices you have previously created.
|
|
308
|
+
* Returns a list of invoices you have previously created. The invoices are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
309
309
|
* @summary List invoices
|
|
310
310
|
* @param {InvoicesApiListInvoicesRequest} requestParameters Request parameters.
|
|
311
311
|
* @param {*} [options] Override http request option.
|
|
@@ -314,7 +314,7 @@ export declare class InvoicesApi extends BaseAPI {
|
|
|
314
314
|
*/
|
|
315
315
|
listInvoices(requestParameters?: InvoicesApiListInvoicesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListInvoicesResponseClass, any>>;
|
|
316
316
|
/**
|
|
317
|
-
* Returns a list of policies billing dates you have previously created.
|
|
317
|
+
* Returns a list of policies billing dates you have previously created. The policies billing dates are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
318
318
|
* @summary List policies billing dates
|
|
319
319
|
* @param {InvoicesApiListPoliciesBillingDatesRequest} requestParameters Request parameters.
|
|
320
320
|
* @param {*} [options] Override http request option.
|
package/dist/api/invoices-api.js
CHANGED
|
@@ -97,8 +97,8 @@ var InvoicesApiAxiosParamCreator = function (configuration) {
|
|
|
97
97
|
var _this = this;
|
|
98
98
|
return {
|
|
99
99
|
/**
|
|
100
|
-
*
|
|
101
|
-
* @summary
|
|
100
|
+
* Gets an invoice.
|
|
101
|
+
* @summary Retrieve the invoice
|
|
102
102
|
* @param {string} code
|
|
103
103
|
* @param {string} expand
|
|
104
104
|
* @param {string} [authorization] Bearer Token
|
|
@@ -151,16 +151,16 @@ var InvoicesApiAxiosParamCreator = function (configuration) {
|
|
|
151
151
|
});
|
|
152
152
|
},
|
|
153
153
|
/**
|
|
154
|
-
* Returns a list of invoices you have previously created.
|
|
154
|
+
* Returns a list of invoices you have previously created. The invoices are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
155
155
|
* @summary List invoices
|
|
156
156
|
* @param {string} [authorization] Bearer Token
|
|
157
157
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
158
158
|
* @param {any} [pageToken] 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.
|
|
159
|
-
* @param {
|
|
160
|
-
* @param {any} [search]
|
|
161
|
-
* @param {
|
|
162
|
-
* @param {
|
|
163
|
-
* @param {
|
|
159
|
+
* @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, policyCode, id, type, accountNumber, status, billingIntervalFrom, billingIntervalTo, createdAt</i>
|
|
160
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
161
|
+
* @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: invoiceNumber, status, netAmount, grossAmount, createdAt, dueDate, id</i>
|
|
162
|
+
* @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: statuses, payments.<i>
|
|
163
|
+
* @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, policyCode, id, type, accountNumber, status, billingIntervalFrom, billingIntervalTo, createdAt</i>
|
|
164
164
|
* @param {*} [options] Override http request option.
|
|
165
165
|
* @throws {RequiredError}
|
|
166
166
|
*/
|
|
@@ -223,16 +223,16 @@ var InvoicesApiAxiosParamCreator = function (configuration) {
|
|
|
223
223
|
});
|
|
224
224
|
},
|
|
225
225
|
/**
|
|
226
|
-
* Returns a list of policies billing dates you have previously created.
|
|
226
|
+
* Returns a list of policies billing dates you have previously created. The policies billing dates are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
227
227
|
* @summary List policies billing dates
|
|
228
228
|
* @param {string} [authorization] Bearer Token
|
|
229
229
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
230
230
|
* @param {any} [pageToken] 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.
|
|
231
|
-
* @param {
|
|
232
|
-
* @param {any} [search]
|
|
233
|
-
* @param {
|
|
234
|
-
* @param {
|
|
235
|
-
* @param {
|
|
231
|
+
* @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: policyCode, isInvoiced, nextBillingDate, accountNumber, status, billingIntervalFrom, billingIntervalTo</i>
|
|
232
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
233
|
+
* @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: createdAt</i>
|
|
234
|
+
* @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>
|
|
235
|
+
* @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: policyCode, isInvoiced, nextBillingDate, accountNumber, status, billingIntervalFrom, billingIntervalTo</i>
|
|
236
236
|
* @param {*} [options] Override http request option.
|
|
237
237
|
* @throws {RequiredError}
|
|
238
238
|
*/
|
|
@@ -305,8 +305,8 @@ var InvoicesApiFp = function (configuration) {
|
|
|
305
305
|
var localVarAxiosParamCreator = (0, exports.InvoicesApiAxiosParamCreator)(configuration);
|
|
306
306
|
return {
|
|
307
307
|
/**
|
|
308
|
-
*
|
|
309
|
-
* @summary
|
|
308
|
+
* Gets an invoice.
|
|
309
|
+
* @summary Retrieve the invoice
|
|
310
310
|
* @param {string} code
|
|
311
311
|
* @param {string} expand
|
|
312
312
|
* @param {string} [authorization] Bearer Token
|
|
@@ -327,16 +327,16 @@ var InvoicesApiFp = function (configuration) {
|
|
|
327
327
|
});
|
|
328
328
|
},
|
|
329
329
|
/**
|
|
330
|
-
* Returns a list of invoices you have previously created.
|
|
330
|
+
* Returns a list of invoices you have previously created. The invoices are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
331
331
|
* @summary List invoices
|
|
332
332
|
* @param {string} [authorization] Bearer Token
|
|
333
333
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
334
334
|
* @param {any} [pageToken] 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.
|
|
335
|
-
* @param {
|
|
336
|
-
* @param {any} [search]
|
|
337
|
-
* @param {
|
|
338
|
-
* @param {
|
|
339
|
-
* @param {
|
|
335
|
+
* @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, policyCode, id, type, accountNumber, status, billingIntervalFrom, billingIntervalTo, createdAt</i>
|
|
336
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
337
|
+
* @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: invoiceNumber, status, netAmount, grossAmount, createdAt, dueDate, id</i>
|
|
338
|
+
* @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: statuses, payments.<i>
|
|
339
|
+
* @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, policyCode, id, type, accountNumber, status, billingIntervalFrom, billingIntervalTo, createdAt</i>
|
|
340
340
|
* @param {*} [options] Override http request option.
|
|
341
341
|
* @throws {RequiredError}
|
|
342
342
|
*/
|
|
@@ -354,16 +354,16 @@ var InvoicesApiFp = function (configuration) {
|
|
|
354
354
|
});
|
|
355
355
|
},
|
|
356
356
|
/**
|
|
357
|
-
* Returns a list of policies billing dates you have previously created.
|
|
357
|
+
* Returns a list of policies billing dates you have previously created. The policies billing dates are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
358
358
|
* @summary List policies billing dates
|
|
359
359
|
* @param {string} [authorization] Bearer Token
|
|
360
360
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
361
361
|
* @param {any} [pageToken] 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.
|
|
362
|
-
* @param {
|
|
363
|
-
* @param {any} [search]
|
|
364
|
-
* @param {
|
|
365
|
-
* @param {
|
|
366
|
-
* @param {
|
|
362
|
+
* @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: policyCode, isInvoiced, nextBillingDate, accountNumber, status, billingIntervalFrom, billingIntervalTo</i>
|
|
363
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
364
|
+
* @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: createdAt</i>
|
|
365
|
+
* @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>
|
|
366
|
+
* @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: policyCode, isInvoiced, nextBillingDate, accountNumber, status, billingIntervalFrom, billingIntervalTo</i>
|
|
367
367
|
* @param {*} [options] Override http request option.
|
|
368
368
|
* @throws {RequiredError}
|
|
369
369
|
*/
|
|
@@ -391,8 +391,8 @@ var InvoicesApiFactory = function (configuration, basePath, axios) {
|
|
|
391
391
|
var localVarFp = (0, exports.InvoicesApiFp)(configuration);
|
|
392
392
|
return {
|
|
393
393
|
/**
|
|
394
|
-
*
|
|
395
|
-
* @summary
|
|
394
|
+
* Gets an invoice.
|
|
395
|
+
* @summary Retrieve the invoice
|
|
396
396
|
* @param {string} code
|
|
397
397
|
* @param {string} expand
|
|
398
398
|
* @param {string} [authorization] Bearer Token
|
|
@@ -403,16 +403,16 @@ var InvoicesApiFactory = function (configuration, basePath, axios) {
|
|
|
403
403
|
return localVarFp.getInvoice(code, expand, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
404
404
|
},
|
|
405
405
|
/**
|
|
406
|
-
* Returns a list of invoices you have previously created.
|
|
406
|
+
* Returns a list of invoices you have previously created. The invoices are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
407
407
|
* @summary List invoices
|
|
408
408
|
* @param {string} [authorization] Bearer Token
|
|
409
409
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
410
410
|
* @param {any} [pageToken] 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.
|
|
411
|
-
* @param {
|
|
412
|
-
* @param {any} [search]
|
|
413
|
-
* @param {
|
|
414
|
-
* @param {
|
|
415
|
-
* @param {
|
|
411
|
+
* @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, policyCode, id, type, accountNumber, status, billingIntervalFrom, billingIntervalTo, createdAt</i>
|
|
412
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
413
|
+
* @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: invoiceNumber, status, netAmount, grossAmount, createdAt, dueDate, id</i>
|
|
414
|
+
* @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: statuses, payments.<i>
|
|
415
|
+
* @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, policyCode, id, type, accountNumber, status, billingIntervalFrom, billingIntervalTo, createdAt</i>
|
|
416
416
|
* @param {*} [options] Override http request option.
|
|
417
417
|
* @throws {RequiredError}
|
|
418
418
|
*/
|
|
@@ -420,16 +420,16 @@ var InvoicesApiFactory = function (configuration, basePath, axios) {
|
|
|
420
420
|
return localVarFp.listInvoices(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
421
421
|
},
|
|
422
422
|
/**
|
|
423
|
-
* Returns a list of policies billing dates you have previously created.
|
|
423
|
+
* Returns a list of policies billing dates you have previously created. The policies billing dates are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
424
424
|
* @summary List policies billing dates
|
|
425
425
|
* @param {string} [authorization] Bearer Token
|
|
426
426
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
427
427
|
* @param {any} [pageToken] 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.
|
|
428
|
-
* @param {
|
|
429
|
-
* @param {any} [search]
|
|
430
|
-
* @param {
|
|
431
|
-
* @param {
|
|
432
|
-
* @param {
|
|
428
|
+
* @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: policyCode, isInvoiced, nextBillingDate, accountNumber, status, billingIntervalFrom, billingIntervalTo</i>
|
|
429
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
430
|
+
* @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: createdAt</i>
|
|
431
|
+
* @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>
|
|
432
|
+
* @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: policyCode, isInvoiced, nextBillingDate, accountNumber, status, billingIntervalFrom, billingIntervalTo</i>
|
|
433
433
|
* @param {*} [options] Override http request option.
|
|
434
434
|
* @throws {RequiredError}
|
|
435
435
|
*/
|
|
@@ -451,8 +451,8 @@ var InvoicesApi = /** @class */ (function (_super) {
|
|
|
451
451
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
452
452
|
}
|
|
453
453
|
/**
|
|
454
|
-
*
|
|
455
|
-
* @summary
|
|
454
|
+
* Gets an invoice.
|
|
455
|
+
* @summary Retrieve the invoice
|
|
456
456
|
* @param {InvoicesApiGetInvoiceRequest} requestParameters Request parameters.
|
|
457
457
|
* @param {*} [options] Override http request option.
|
|
458
458
|
* @throws {RequiredError}
|
|
@@ -463,7 +463,7 @@ var InvoicesApi = /** @class */ (function (_super) {
|
|
|
463
463
|
return (0, exports.InvoicesApiFp)(this.configuration).getInvoice(requestParameters.code, requestParameters.expand, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
464
464
|
};
|
|
465
465
|
/**
|
|
466
|
-
* Returns a list of invoices you have previously created.
|
|
466
|
+
* Returns a list of invoices you have previously created. The invoices are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
467
467
|
* @summary List invoices
|
|
468
468
|
* @param {InvoicesApiListInvoicesRequest} requestParameters Request parameters.
|
|
469
469
|
* @param {*} [options] Override http request option.
|
|
@@ -476,7 +476,7 @@ var InvoicesApi = /** @class */ (function (_super) {
|
|
|
476
476
|
return (0, exports.InvoicesApiFp)(this.configuration).listInvoices(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
477
477
|
};
|
|
478
478
|
/**
|
|
479
|
-
* Returns a list of policies billing dates you have previously created.
|
|
479
|
+
* Returns a list of policies billing dates you have previously created. The policies billing dates are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
480
480
|
* @summary List policies billing dates
|
|
481
481
|
* @param {InvoicesApiListPoliciesBillingDatesRequest} requestParameters Request parameters.
|
|
482
482
|
* @param {*} [options] Override http request option.
|