@emilgroup/public-api-sdk 1.0.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 +63 -0
- package/.openapi-generator/VERSION +1 -0
- package/.openapi-generator-ignore +23 -0
- package/README.md +51 -0
- package/api/documents-api.ts +438 -0
- package/api/leads-api.ts +478 -0
- package/api/notifications-api.ts +165 -0
- package/api/payments-setup-api.ts +300 -0
- package/api/products-api.ts +713 -0
- package/api.ts +40 -0
- package/base.ts +247 -0
- package/common.ts +198 -0
- package/configuration.ts +101 -0
- package/dist/api/documents-api.d.ts +252 -0
- package/dist/api/documents-api.js +439 -0
- package/dist/api/leads-api.d.ts +266 -0
- package/dist/api/leads-api.js +502 -0
- package/dist/api/notifications-api.d.ts +97 -0
- package/dist/api/notifications-api.js +224 -0
- package/dist/api/payments-setup-api.d.ts +172 -0
- package/dist/api/payments-setup-api.js +329 -0
- package/dist/api/products-api.d.ts +396 -0
- package/dist/api/products-api.js +700 -0
- package/dist/api.d.ts +20 -0
- package/dist/api.js +40 -0
- package/dist/base.d.ts +72 -0
- package/dist/base.js +293 -0
- package/dist/common.d.ts +91 -0
- package/dist/common.js +276 -0
- package/dist/configuration.d.ts +83 -0
- package/dist/configuration.js +44 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +35 -0
- package/dist/models/complete-braintree-payment-setup-request-dto.d.ts +48 -0
- package/dist/models/complete-braintree-payment-setup-request-dto.js +15 -0
- package/dist/models/complete-payment-setup-request-dto.d.ts +32 -0
- package/dist/models/complete-payment-setup-request-dto.js +15 -0
- package/dist/models/complete-payment-setup-response-class.d.ts +25 -0
- package/dist/models/complete-payment-setup-response-class.js +15 -0
- package/dist/models/complete-stripe-payment-setup-request-dto.d.ts +60 -0
- package/dist/models/complete-stripe-payment-setup-request-dto.js +15 -0
- package/dist/models/create-account-request-dto.d.ts +115 -0
- package/dist/models/create-account-request-dto.js +27 -0
- package/dist/models/create-bank-account-request-dto.d.ts +30 -0
- package/dist/models/create-bank-account-request-dto.js +15 -0
- package/dist/models/create-custom-application-request-dto.d.ts +35 -0
- package/dist/models/create-custom-application-request-dto.js +20 -0
- package/dist/models/create-custom-application-response-class.d.ts +24 -0
- package/dist/models/create-custom-application-response-class.js +15 -0
- package/dist/models/create-document-request-dto.d.ts +101 -0
- package/dist/models/create-document-request-dto.js +31 -0
- package/dist/models/create-estimated-invoice-request-dto.d.ts +49 -0
- package/dist/models/create-estimated-invoice-request-dto.js +20 -0
- package/dist/models/create-estimated-invoice-response-class.d.ts +31 -0
- package/dist/models/create-estimated-invoice-response-class.js +15 -0
- package/dist/models/create-lead-request-dto.d.ts +84 -0
- package/dist/models/create-lead-request-dto.js +22 -0
- package/dist/models/create-lead-response-class.d.ts +25 -0
- package/dist/models/create-lead-response-class.js +15 -0
- package/dist/models/document-class.d.ts +130 -0
- package/dist/models/document-class.js +41 -0
- package/dist/models/get-custom-css-response-class.d.ts +24 -0
- package/dist/models/get-custom-css-response-class.js +15 -0
- package/dist/models/get-lead-response-class.d.ts +25 -0
- package/dist/models/get-lead-response-class.js +15 -0
- package/dist/models/index.d.ts +45 -0
- package/dist/models/index.js +61 -0
- package/dist/models/initiate-braintree-payment-setup-request-dto.d.ts +30 -0
- package/dist/models/initiate-braintree-payment-setup-request-dto.js +15 -0
- package/dist/models/initiate-braintree-payment-setup-response-class.d.ts +24 -0
- package/dist/models/initiate-braintree-payment-setup-response-class.js +15 -0
- package/dist/models/initiate-lead-response-class.d.ts +24 -0
- package/dist/models/initiate-lead-response-class.js +15 -0
- package/dist/models/initiate-payment-setup-request-dto.d.ts +32 -0
- package/dist/models/initiate-payment-setup-request-dto.js +15 -0
- package/dist/models/initiate-payment-setup-response-class.d.ts +32 -0
- package/dist/models/initiate-payment-setup-response-class.js +15 -0
- package/dist/models/initiate-stripe-payment-setup-request-dto.d.ts +30 -0
- package/dist/models/initiate-stripe-payment-setup-request-dto.js +15 -0
- package/dist/models/initiate-stripe-payment-setup-response-class.d.ts +30 -0
- package/dist/models/initiate-stripe-payment-setup-response-class.js +15 -0
- package/dist/models/insured-object-class.d.ts +67 -0
- package/dist/models/insured-object-class.js +15 -0
- package/dist/models/insured-object-type-class.d.ts +48 -0
- package/dist/models/insured-object-type-class.js +15 -0
- package/dist/models/invoice-class.d.ts +128 -0
- package/dist/models/invoice-class.js +15 -0
- package/dist/models/invoice-item-class.d.ts +108 -0
- package/dist/models/invoice-item-class.js +15 -0
- package/dist/models/invoice-status-class.d.ts +42 -0
- package/dist/models/invoice-status-class.js +15 -0
- package/dist/models/lead-account-class.d.ts +109 -0
- package/dist/models/lead-account-class.js +22 -0
- package/dist/models/lead-bank-account-class.d.ts +30 -0
- package/dist/models/lead-bank-account-class.js +15 -0
- package/dist/models/lead-class.d.ts +77 -0
- package/dist/models/lead-class.js +15 -0
- package/dist/models/lead-policy-class.d.ts +43 -0
- package/dist/models/lead-policy-class.js +15 -0
- package/dist/models/lead-policy-object-class.d.ts +30 -0
- package/dist/models/lead-policy-object-class.js +15 -0
- package/dist/models/list-documents-response-class.d.ts +31 -0
- package/dist/models/list-documents-response-class.js +15 -0
- package/dist/models/payment-method-class.d.ts +60 -0
- package/dist/models/payment-method-class.js +15 -0
- package/dist/models/policy-object-request-dto.d.ts +30 -0
- package/dist/models/policy-object-request-dto.js +15 -0
- package/dist/models/premium-override-dto.d.ts +53 -0
- package/dist/models/premium-override-dto.js +25 -0
- package/dist/models/premium-override-request-dto.d.ts +25 -0
- package/dist/models/premium-override-request-dto.js +15 -0
- package/dist/models/product-factor-class.d.ts +60 -0
- package/dist/models/product-factor-class.js +15 -0
- package/dist/models/product-field-class.d.ts +120 -0
- package/dist/models/product-field-class.js +15 -0
- package/dist/models/send-notification-request-dto.d.ts +36 -0
- package/dist/models/send-notification-request-dto.js +15 -0
- package/dist/models/send-notification-response-class.d.ts +24 -0
- package/dist/models/send-notification-response-class.js +15 -0
- package/dist/models/update-lead-request-dto.d.ts +84 -0
- package/dist/models/update-lead-request-dto.js +22 -0
- package/dist/models/update-lead-response-class.d.ts +25 -0
- package/dist/models/update-lead-response-class.js +15 -0
- package/dist/models/uploaded-document-dto.d.ts +24 -0
- package/dist/models/uploaded-document-dto.js +15 -0
- package/git_push.sh +57 -0
- package/index.ts +19 -0
- package/models/complete-braintree-payment-setup-request-dto.ts +54 -0
- package/models/complete-payment-setup-request-dto.ts +38 -0
- package/models/complete-payment-setup-response-class.ts +31 -0
- package/models/complete-stripe-payment-setup-request-dto.ts +66 -0
- package/models/create-account-request-dto.ts +125 -0
- package/models/create-bank-account-request-dto.ts +36 -0
- package/models/create-custom-application-request-dto.ts +44 -0
- package/models/create-custom-application-response-class.ts +30 -0
- package/models/create-document-request-dto.ts +111 -0
- package/models/create-estimated-invoice-request-dto.ts +58 -0
- package/models/create-estimated-invoice-response-class.ts +37 -0
- package/models/create-lead-request-dto.ts +93 -0
- package/models/create-lead-response-class.ts +31 -0
- package/models/document-class.ts +141 -0
- package/models/get-custom-css-response-class.ts +30 -0
- package/models/get-lead-response-class.ts +31 -0
- package/models/index.ts +45 -0
- package/models/initiate-braintree-payment-setup-request-dto.ts +36 -0
- package/models/initiate-braintree-payment-setup-response-class.ts +30 -0
- package/models/initiate-lead-response-class.ts +30 -0
- package/models/initiate-payment-setup-request-dto.ts +38 -0
- package/models/initiate-payment-setup-response-class.ts +38 -0
- package/models/initiate-stripe-payment-setup-request-dto.ts +36 -0
- package/models/initiate-stripe-payment-setup-response-class.ts +36 -0
- package/models/insured-object-class.ts +73 -0
- package/models/insured-object-type-class.ts +54 -0
- package/models/invoice-class.ts +134 -0
- package/models/invoice-item-class.ts +114 -0
- package/models/invoice-status-class.ts +48 -0
- package/models/lead-account-class.ts +118 -0
- package/models/lead-bank-account-class.ts +36 -0
- package/models/lead-class.ts +83 -0
- package/models/lead-policy-class.ts +49 -0
- package/models/lead-policy-object-class.ts +36 -0
- package/models/list-documents-response-class.ts +37 -0
- package/models/payment-method-class.ts +66 -0
- package/models/policy-object-request-dto.ts +36 -0
- package/models/premium-override-dto.ts +63 -0
- package/models/premium-override-request-dto.ts +31 -0
- package/models/product-factor-class.ts +66 -0
- package/models/product-field-class.ts +126 -0
- package/models/send-notification-request-dto.ts +42 -0
- package/models/send-notification-response-class.ts +30 -0
- package/models/update-lead-request-dto.ts +93 -0
- package/models/update-lead-response-class.ts +31 -0
- package/models/uploaded-document-dto.ts +30 -0
- package/package.json +27 -0
- package/tsconfig.json +22 -0
|
@@ -0,0 +1,396 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil PublicAPI
|
|
3
|
+
* The Emil Public API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
|
+
import { Configuration } from '../configuration';
|
|
14
|
+
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import { CreateCustomApplicationRequestDto } from '../models';
|
|
16
|
+
import { CreateCustomApplicationResponseClass } from '../models';
|
|
17
|
+
import { CreateEstimatedInvoiceRequestDto } from '../models';
|
|
18
|
+
import { CreateEstimatedInvoiceResponseClass } from '../models';
|
|
19
|
+
import { GetCustomCssResponseClass } from '../models';
|
|
20
|
+
import { InsuredObjectClass } from '../models';
|
|
21
|
+
import { InsuredObjectTypeClass } from '../models';
|
|
22
|
+
import { ProductFactorClass } from '../models';
|
|
23
|
+
/**
|
|
24
|
+
* ProductsApi - axios parameter creator
|
|
25
|
+
* @export
|
|
26
|
+
*/
|
|
27
|
+
export declare const ProductsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
28
|
+
/**
|
|
29
|
+
* This will create an invoice product.
|
|
30
|
+
* @summary Create the invoice product
|
|
31
|
+
* @param {string} productCode
|
|
32
|
+
* @param {CreateEstimatedInvoiceRequestDto} createEstimatedInvoiceRequestDto
|
|
33
|
+
* @param {string} [authorization] Bearer Token
|
|
34
|
+
* @param {*} [options] Override http request option.
|
|
35
|
+
* @throws {RequiredError}
|
|
36
|
+
*/
|
|
37
|
+
createEstimatedInvoice: (productCode: string, createEstimatedInvoiceRequestDto: CreateEstimatedInvoiceRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
38
|
+
/**
|
|
39
|
+
* This will create a custom application for a specific provider.
|
|
40
|
+
* @summary Create the custom application
|
|
41
|
+
* @param {string} productCode
|
|
42
|
+
* @param {CreateCustomApplicationRequestDto} createCustomApplicationRequestDto
|
|
43
|
+
* @param {string} [authorization] Bearer Token
|
|
44
|
+
* @param {*} [options] Override http request option.
|
|
45
|
+
* @throws {RequiredError}
|
|
46
|
+
*/
|
|
47
|
+
customApplication: (productCode: string, createCustomApplicationRequestDto: CreateCustomApplicationRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
48
|
+
/**
|
|
49
|
+
* Returns a list of insured object types you have previously created. The insured object types are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
50
|
+
* @summary List insured object types
|
|
51
|
+
* @param {string} [authorization] Bearer Token
|
|
52
|
+
* @param {*} [options] Override http request option.
|
|
53
|
+
* @throws {RequiredError}
|
|
54
|
+
*/
|
|
55
|
+
getInsuredObjectTypes: (authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
56
|
+
/**
|
|
57
|
+
* Returns a list of insured objects you have previously created. The insured objects are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
58
|
+
* @summary List insured objects
|
|
59
|
+
* @param {string} productCode
|
|
60
|
+
* @param {string} [authorization] Bearer Token
|
|
61
|
+
* @param {*} [options] Override http request option.
|
|
62
|
+
* @throws {RequiredError}
|
|
63
|
+
*/
|
|
64
|
+
getInsuredObjects: (productCode: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
65
|
+
/**
|
|
66
|
+
* This will generate a custom css for booking funnel, based on product.
|
|
67
|
+
* @summary Generate a custom CSS
|
|
68
|
+
* @param {string} productCode
|
|
69
|
+
* @param {string} [authorization] Bearer Token
|
|
70
|
+
* @param {*} [options] Override http request option.
|
|
71
|
+
* @throws {RequiredError}
|
|
72
|
+
*/
|
|
73
|
+
getProductCustomCss: (productCode: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
74
|
+
/**
|
|
75
|
+
* Returns a list of product factors you have previously created. The product factors are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
76
|
+
* @summary List product factors
|
|
77
|
+
* @param {string} productCode
|
|
78
|
+
* @param {string} allValues
|
|
79
|
+
* @param {string} [authorization] Bearer Token
|
|
80
|
+
* @param {*} [options] Override http request option.
|
|
81
|
+
* @throws {RequiredError}
|
|
82
|
+
*/
|
|
83
|
+
getProductFactors: (productCode: string, allValues: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
84
|
+
};
|
|
85
|
+
/**
|
|
86
|
+
* ProductsApi - functional programming interface
|
|
87
|
+
* @export
|
|
88
|
+
*/
|
|
89
|
+
export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
90
|
+
/**
|
|
91
|
+
* This will create an invoice product.
|
|
92
|
+
* @summary Create the invoice product
|
|
93
|
+
* @param {string} productCode
|
|
94
|
+
* @param {CreateEstimatedInvoiceRequestDto} createEstimatedInvoiceRequestDto
|
|
95
|
+
* @param {string} [authorization] Bearer Token
|
|
96
|
+
* @param {*} [options] Override http request option.
|
|
97
|
+
* @throws {RequiredError}
|
|
98
|
+
*/
|
|
99
|
+
createEstimatedInvoice(productCode: string, createEstimatedInvoiceRequestDto: CreateEstimatedInvoiceRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEstimatedInvoiceResponseClass>>;
|
|
100
|
+
/**
|
|
101
|
+
* This will create a custom application for a specific provider.
|
|
102
|
+
* @summary Create the custom application
|
|
103
|
+
* @param {string} productCode
|
|
104
|
+
* @param {CreateCustomApplicationRequestDto} createCustomApplicationRequestDto
|
|
105
|
+
* @param {string} [authorization] Bearer Token
|
|
106
|
+
* @param {*} [options] Override http request option.
|
|
107
|
+
* @throws {RequiredError}
|
|
108
|
+
*/
|
|
109
|
+
customApplication(productCode: string, createCustomApplicationRequestDto: CreateCustomApplicationRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateCustomApplicationResponseClass>>;
|
|
110
|
+
/**
|
|
111
|
+
* Returns a list of insured object types you have previously created. The insured object types are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
112
|
+
* @summary List insured object types
|
|
113
|
+
* @param {string} [authorization] Bearer Token
|
|
114
|
+
* @param {*} [options] Override http request option.
|
|
115
|
+
* @throws {RequiredError}
|
|
116
|
+
*/
|
|
117
|
+
getInsuredObjectTypes(authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<InsuredObjectTypeClass>>>;
|
|
118
|
+
/**
|
|
119
|
+
* Returns a list of insured objects you have previously created. The insured objects are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
120
|
+
* @summary List insured objects
|
|
121
|
+
* @param {string} productCode
|
|
122
|
+
* @param {string} [authorization] Bearer Token
|
|
123
|
+
* @param {*} [options] Override http request option.
|
|
124
|
+
* @throws {RequiredError}
|
|
125
|
+
*/
|
|
126
|
+
getInsuredObjects(productCode: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<InsuredObjectClass>>>;
|
|
127
|
+
/**
|
|
128
|
+
* This will generate a custom css for booking funnel, based on product.
|
|
129
|
+
* @summary Generate a custom CSS
|
|
130
|
+
* @param {string} productCode
|
|
131
|
+
* @param {string} [authorization] Bearer Token
|
|
132
|
+
* @param {*} [options] Override http request option.
|
|
133
|
+
* @throws {RequiredError}
|
|
134
|
+
*/
|
|
135
|
+
getProductCustomCss(productCode: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetCustomCssResponseClass>>;
|
|
136
|
+
/**
|
|
137
|
+
* Returns a list of product factors you have previously created. The product factors are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
138
|
+
* @summary List product factors
|
|
139
|
+
* @param {string} productCode
|
|
140
|
+
* @param {string} allValues
|
|
141
|
+
* @param {string} [authorization] Bearer Token
|
|
142
|
+
* @param {*} [options] Override http request option.
|
|
143
|
+
* @throws {RequiredError}
|
|
144
|
+
*/
|
|
145
|
+
getProductFactors(productCode: string, allValues: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProductFactorClass>>>;
|
|
146
|
+
};
|
|
147
|
+
/**
|
|
148
|
+
* ProductsApi - factory interface
|
|
149
|
+
* @export
|
|
150
|
+
*/
|
|
151
|
+
export declare const ProductsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
152
|
+
/**
|
|
153
|
+
* This will create an invoice product.
|
|
154
|
+
* @summary Create the invoice product
|
|
155
|
+
* @param {string} productCode
|
|
156
|
+
* @param {CreateEstimatedInvoiceRequestDto} createEstimatedInvoiceRequestDto
|
|
157
|
+
* @param {string} [authorization] Bearer Token
|
|
158
|
+
* @param {*} [options] Override http request option.
|
|
159
|
+
* @throws {RequiredError}
|
|
160
|
+
*/
|
|
161
|
+
createEstimatedInvoice(productCode: string, createEstimatedInvoiceRequestDto: CreateEstimatedInvoiceRequestDto, authorization?: string, options?: any): AxiosPromise<CreateEstimatedInvoiceResponseClass>;
|
|
162
|
+
/**
|
|
163
|
+
* This will create a custom application for a specific provider.
|
|
164
|
+
* @summary Create the custom application
|
|
165
|
+
* @param {string} productCode
|
|
166
|
+
* @param {CreateCustomApplicationRequestDto} createCustomApplicationRequestDto
|
|
167
|
+
* @param {string} [authorization] Bearer Token
|
|
168
|
+
* @param {*} [options] Override http request option.
|
|
169
|
+
* @throws {RequiredError}
|
|
170
|
+
*/
|
|
171
|
+
customApplication(productCode: string, createCustomApplicationRequestDto: CreateCustomApplicationRequestDto, authorization?: string, options?: any): AxiosPromise<CreateCustomApplicationResponseClass>;
|
|
172
|
+
/**
|
|
173
|
+
* Returns a list of insured object types you have previously created. The insured object types are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
174
|
+
* @summary List insured object types
|
|
175
|
+
* @param {string} [authorization] Bearer Token
|
|
176
|
+
* @param {*} [options] Override http request option.
|
|
177
|
+
* @throws {RequiredError}
|
|
178
|
+
*/
|
|
179
|
+
getInsuredObjectTypes(authorization?: string, options?: any): AxiosPromise<Array<InsuredObjectTypeClass>>;
|
|
180
|
+
/**
|
|
181
|
+
* Returns a list of insured objects you have previously created. The insured objects are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
182
|
+
* @summary List insured objects
|
|
183
|
+
* @param {string} productCode
|
|
184
|
+
* @param {string} [authorization] Bearer Token
|
|
185
|
+
* @param {*} [options] Override http request option.
|
|
186
|
+
* @throws {RequiredError}
|
|
187
|
+
*/
|
|
188
|
+
getInsuredObjects(productCode: string, authorization?: string, options?: any): AxiosPromise<Array<InsuredObjectClass>>;
|
|
189
|
+
/**
|
|
190
|
+
* This will generate a custom css for booking funnel, based on product.
|
|
191
|
+
* @summary Generate a custom CSS
|
|
192
|
+
* @param {string} productCode
|
|
193
|
+
* @param {string} [authorization] Bearer Token
|
|
194
|
+
* @param {*} [options] Override http request option.
|
|
195
|
+
* @throws {RequiredError}
|
|
196
|
+
*/
|
|
197
|
+
getProductCustomCss(productCode: string, authorization?: string, options?: any): AxiosPromise<GetCustomCssResponseClass>;
|
|
198
|
+
/**
|
|
199
|
+
* Returns a list of product factors you have previously created. The product factors are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
200
|
+
* @summary List product factors
|
|
201
|
+
* @param {string} productCode
|
|
202
|
+
* @param {string} allValues
|
|
203
|
+
* @param {string} [authorization] Bearer Token
|
|
204
|
+
* @param {*} [options] Override http request option.
|
|
205
|
+
* @throws {RequiredError}
|
|
206
|
+
*/
|
|
207
|
+
getProductFactors(productCode: string, allValues: string, authorization?: string, options?: any): AxiosPromise<Array<ProductFactorClass>>;
|
|
208
|
+
};
|
|
209
|
+
/**
|
|
210
|
+
* Request parameters for createEstimatedInvoice operation in ProductsApi.
|
|
211
|
+
* @export
|
|
212
|
+
* @interface ProductsApiCreateEstimatedInvoiceRequest
|
|
213
|
+
*/
|
|
214
|
+
export interface ProductsApiCreateEstimatedInvoiceRequest {
|
|
215
|
+
/**
|
|
216
|
+
*
|
|
217
|
+
* @type {string}
|
|
218
|
+
* @memberof ProductsApiCreateEstimatedInvoice
|
|
219
|
+
*/
|
|
220
|
+
readonly productCode: string;
|
|
221
|
+
/**
|
|
222
|
+
*
|
|
223
|
+
* @type {CreateEstimatedInvoiceRequestDto}
|
|
224
|
+
* @memberof ProductsApiCreateEstimatedInvoice
|
|
225
|
+
*/
|
|
226
|
+
readonly createEstimatedInvoiceRequestDto: CreateEstimatedInvoiceRequestDto;
|
|
227
|
+
/**
|
|
228
|
+
* Bearer Token
|
|
229
|
+
* @type {string}
|
|
230
|
+
* @memberof ProductsApiCreateEstimatedInvoice
|
|
231
|
+
*/
|
|
232
|
+
readonly authorization?: string;
|
|
233
|
+
}
|
|
234
|
+
/**
|
|
235
|
+
* Request parameters for customApplication operation in ProductsApi.
|
|
236
|
+
* @export
|
|
237
|
+
* @interface ProductsApiCustomApplicationRequest
|
|
238
|
+
*/
|
|
239
|
+
export interface ProductsApiCustomApplicationRequest {
|
|
240
|
+
/**
|
|
241
|
+
*
|
|
242
|
+
* @type {string}
|
|
243
|
+
* @memberof ProductsApiCustomApplication
|
|
244
|
+
*/
|
|
245
|
+
readonly productCode: string;
|
|
246
|
+
/**
|
|
247
|
+
*
|
|
248
|
+
* @type {CreateCustomApplicationRequestDto}
|
|
249
|
+
* @memberof ProductsApiCustomApplication
|
|
250
|
+
*/
|
|
251
|
+
readonly createCustomApplicationRequestDto: CreateCustomApplicationRequestDto;
|
|
252
|
+
/**
|
|
253
|
+
* Bearer Token
|
|
254
|
+
* @type {string}
|
|
255
|
+
* @memberof ProductsApiCustomApplication
|
|
256
|
+
*/
|
|
257
|
+
readonly authorization?: string;
|
|
258
|
+
}
|
|
259
|
+
/**
|
|
260
|
+
* Request parameters for getInsuredObjectTypes operation in ProductsApi.
|
|
261
|
+
* @export
|
|
262
|
+
* @interface ProductsApiGetInsuredObjectTypesRequest
|
|
263
|
+
*/
|
|
264
|
+
export interface ProductsApiGetInsuredObjectTypesRequest {
|
|
265
|
+
/**
|
|
266
|
+
* Bearer Token
|
|
267
|
+
* @type {string}
|
|
268
|
+
* @memberof ProductsApiGetInsuredObjectTypes
|
|
269
|
+
*/
|
|
270
|
+
readonly authorization?: string;
|
|
271
|
+
}
|
|
272
|
+
/**
|
|
273
|
+
* Request parameters for getInsuredObjects operation in ProductsApi.
|
|
274
|
+
* @export
|
|
275
|
+
* @interface ProductsApiGetInsuredObjectsRequest
|
|
276
|
+
*/
|
|
277
|
+
export interface ProductsApiGetInsuredObjectsRequest {
|
|
278
|
+
/**
|
|
279
|
+
*
|
|
280
|
+
* @type {string}
|
|
281
|
+
* @memberof ProductsApiGetInsuredObjects
|
|
282
|
+
*/
|
|
283
|
+
readonly productCode: string;
|
|
284
|
+
/**
|
|
285
|
+
* Bearer Token
|
|
286
|
+
* @type {string}
|
|
287
|
+
* @memberof ProductsApiGetInsuredObjects
|
|
288
|
+
*/
|
|
289
|
+
readonly authorization?: string;
|
|
290
|
+
}
|
|
291
|
+
/**
|
|
292
|
+
* Request parameters for getProductCustomCss operation in ProductsApi.
|
|
293
|
+
* @export
|
|
294
|
+
* @interface ProductsApiGetProductCustomCssRequest
|
|
295
|
+
*/
|
|
296
|
+
export interface ProductsApiGetProductCustomCssRequest {
|
|
297
|
+
/**
|
|
298
|
+
*
|
|
299
|
+
* @type {string}
|
|
300
|
+
* @memberof ProductsApiGetProductCustomCss
|
|
301
|
+
*/
|
|
302
|
+
readonly productCode: string;
|
|
303
|
+
/**
|
|
304
|
+
* Bearer Token
|
|
305
|
+
* @type {string}
|
|
306
|
+
* @memberof ProductsApiGetProductCustomCss
|
|
307
|
+
*/
|
|
308
|
+
readonly authorization?: string;
|
|
309
|
+
}
|
|
310
|
+
/**
|
|
311
|
+
* Request parameters for getProductFactors operation in ProductsApi.
|
|
312
|
+
* @export
|
|
313
|
+
* @interface ProductsApiGetProductFactorsRequest
|
|
314
|
+
*/
|
|
315
|
+
export interface ProductsApiGetProductFactorsRequest {
|
|
316
|
+
/**
|
|
317
|
+
*
|
|
318
|
+
* @type {string}
|
|
319
|
+
* @memberof ProductsApiGetProductFactors
|
|
320
|
+
*/
|
|
321
|
+
readonly productCode: string;
|
|
322
|
+
/**
|
|
323
|
+
*
|
|
324
|
+
* @type {string}
|
|
325
|
+
* @memberof ProductsApiGetProductFactors
|
|
326
|
+
*/
|
|
327
|
+
readonly allValues: string;
|
|
328
|
+
/**
|
|
329
|
+
* Bearer Token
|
|
330
|
+
* @type {string}
|
|
331
|
+
* @memberof ProductsApiGetProductFactors
|
|
332
|
+
*/
|
|
333
|
+
readonly authorization?: string;
|
|
334
|
+
}
|
|
335
|
+
/**
|
|
336
|
+
* ProductsApi - object-oriented interface
|
|
337
|
+
* @export
|
|
338
|
+
* @class ProductsApi
|
|
339
|
+
* @extends {BaseAPI}
|
|
340
|
+
*/
|
|
341
|
+
export declare class ProductsApi extends BaseAPI {
|
|
342
|
+
/**
|
|
343
|
+
* This will create an invoice product.
|
|
344
|
+
* @summary Create the invoice product
|
|
345
|
+
* @param {ProductsApiCreateEstimatedInvoiceRequest} requestParameters Request parameters.
|
|
346
|
+
* @param {*} [options] Override http request option.
|
|
347
|
+
* @throws {RequiredError}
|
|
348
|
+
* @memberof ProductsApi
|
|
349
|
+
*/
|
|
350
|
+
createEstimatedInvoice(requestParameters: ProductsApiCreateEstimatedInvoiceRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEstimatedInvoiceResponseClass, any>>;
|
|
351
|
+
/**
|
|
352
|
+
* This will create a custom application for a specific provider.
|
|
353
|
+
* @summary Create the custom application
|
|
354
|
+
* @param {ProductsApiCustomApplicationRequest} requestParameters Request parameters.
|
|
355
|
+
* @param {*} [options] Override http request option.
|
|
356
|
+
* @throws {RequiredError}
|
|
357
|
+
* @memberof ProductsApi
|
|
358
|
+
*/
|
|
359
|
+
customApplication(requestParameters: ProductsApiCustomApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateCustomApplicationResponseClass, any>>;
|
|
360
|
+
/**
|
|
361
|
+
* Returns a list of insured object types you have previously created. The insured object types are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
362
|
+
* @summary List insured object types
|
|
363
|
+
* @param {ProductsApiGetInsuredObjectTypesRequest} requestParameters Request parameters.
|
|
364
|
+
* @param {*} [options] Override http request option.
|
|
365
|
+
* @throws {RequiredError}
|
|
366
|
+
* @memberof ProductsApi
|
|
367
|
+
*/
|
|
368
|
+
getInsuredObjectTypes(requestParameters?: ProductsApiGetInsuredObjectTypesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InsuredObjectTypeClass[], any>>;
|
|
369
|
+
/**
|
|
370
|
+
* Returns a list of insured objects you have previously created. The insured objects are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
371
|
+
* @summary List insured objects
|
|
372
|
+
* @param {ProductsApiGetInsuredObjectsRequest} requestParameters Request parameters.
|
|
373
|
+
* @param {*} [options] Override http request option.
|
|
374
|
+
* @throws {RequiredError}
|
|
375
|
+
* @memberof ProductsApi
|
|
376
|
+
*/
|
|
377
|
+
getInsuredObjects(requestParameters: ProductsApiGetInsuredObjectsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InsuredObjectClass[], any>>;
|
|
378
|
+
/**
|
|
379
|
+
* This will generate a custom css for booking funnel, based on product.
|
|
380
|
+
* @summary Generate a custom CSS
|
|
381
|
+
* @param {ProductsApiGetProductCustomCssRequest} requestParameters Request parameters.
|
|
382
|
+
* @param {*} [options] Override http request option.
|
|
383
|
+
* @throws {RequiredError}
|
|
384
|
+
* @memberof ProductsApi
|
|
385
|
+
*/
|
|
386
|
+
getProductCustomCss(requestParameters: ProductsApiGetProductCustomCssRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetCustomCssResponseClass, any>>;
|
|
387
|
+
/**
|
|
388
|
+
* Returns a list of product factors you have previously created. The product factors are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
389
|
+
* @summary List product factors
|
|
390
|
+
* @param {ProductsApiGetProductFactorsRequest} requestParameters Request parameters.
|
|
391
|
+
* @param {*} [options] Override http request option.
|
|
392
|
+
* @throws {RequiredError}
|
|
393
|
+
* @memberof ProductsApi
|
|
394
|
+
*/
|
|
395
|
+
getProductFactors(requestParameters: ProductsApiGetProductFactorsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductFactorClass[], any>>;
|
|
396
|
+
}
|