@emilgroup/billing-sdk-node 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.
Files changed (91) hide show
  1. package/.openapi-generator/FILES +35 -0
  2. package/.openapi-generator/VERSION +1 -0
  3. package/.openapi-generator-ignore +23 -0
  4. package/README.md +68 -0
  5. package/api/correction-invoices-api.ts +165 -0
  6. package/api/estimated-invoices-api.ts +268 -0
  7. package/api/initial-invoices-api.ts +165 -0
  8. package/api/invoices-api.ts +232 -0
  9. package/api/recurring-invoices-api.ts +165 -0
  10. package/api.ts +44 -0
  11. package/base.ts +293 -0
  12. package/common.ts +138 -0
  13. package/configuration.ts +109 -0
  14. package/dist/api/correction-invoices-api.d.ts +93 -0
  15. package/dist/api/correction-invoices-api.js +224 -0
  16. package/dist/api/estimated-invoices-api.d.ts +146 -0
  17. package/dist/api/estimated-invoices-api.js +313 -0
  18. package/dist/api/initial-invoices-api.d.ts +93 -0
  19. package/dist/api/initial-invoices-api.js +224 -0
  20. package/dist/api/invoices-api.d.ts +137 -0
  21. package/dist/api/invoices-api.js +254 -0
  22. package/dist/api/recurring-invoices-api.d.ts +93 -0
  23. package/dist/api/recurring-invoices-api.js +224 -0
  24. package/dist/api.d.ts +20 -0
  25. package/dist/api.js +40 -0
  26. package/dist/base.d.ts +77 -0
  27. package/dist/base.js +394 -0
  28. package/dist/common.d.ts +66 -0
  29. package/dist/common.js +244 -0
  30. package/dist/configuration.d.ts +90 -0
  31. package/dist/configuration.js +44 -0
  32. package/dist/index.d.ts +15 -0
  33. package/dist/index.js +35 -0
  34. package/dist/models/create-correction-invoices-response-class.d.ts +24 -0
  35. package/dist/models/create-correction-invoices-response-class.js +15 -0
  36. package/dist/models/create-custom-estimated-invoice-request-dto.d.ts +35 -0
  37. package/dist/models/create-custom-estimated-invoice-request-dto.js +20 -0
  38. package/dist/models/create-custom-estimated-invoice-response-class.d.ts +24 -0
  39. package/dist/models/create-custom-estimated-invoice-response-class.js +15 -0
  40. package/dist/models/create-estimated-invoice-request-dto.d.ts +31 -0
  41. package/dist/models/create-estimated-invoice-request-dto.js +15 -0
  42. package/dist/models/create-estimated-invoice-response-class.d.ts +31 -0
  43. package/dist/models/create-estimated-invoice-response-class.js +15 -0
  44. package/dist/models/create-invoice-request-dto.d.ts +75 -0
  45. package/dist/models/create-invoice-request-dto.js +24 -0
  46. package/dist/models/create-invoice-response-class.d.ts +25 -0
  47. package/dist/models/create-invoice-response-class.js +15 -0
  48. package/dist/models/index.d.ts +17 -0
  49. package/dist/models/index.js +33 -0
  50. package/dist/models/invoice-class.d.ts +120 -0
  51. package/dist/models/invoice-class.js +15 -0
  52. package/dist/models/list-invoices-response-class.d.ts +30 -0
  53. package/dist/models/list-invoices-response-class.js +15 -0
  54. package/dist/models/list-request-dto.d.ts +54 -0
  55. package/dist/models/list-request-dto.js +15 -0
  56. package/dist/models/policy-dto.d.ts +85 -0
  57. package/dist/models/policy-dto.js +15 -0
  58. package/dist/models/policy-object-dto.d.ts +42 -0
  59. package/dist/models/policy-object-dto.js +15 -0
  60. package/dist/models/policy-premium-dto.d.ts +43 -0
  61. package/dist/models/policy-premium-dto.js +15 -0
  62. package/dist/models/policy-premium-item-dto.d.ts +49 -0
  63. package/dist/models/policy-premium-item-dto.js +15 -0
  64. package/dist/models/policy-version-dto.d.ts +55 -0
  65. package/dist/models/policy-version-dto.js +15 -0
  66. package/dist/models/premium-formula-dto.d.ts +72 -0
  67. package/dist/models/premium-formula-dto.js +15 -0
  68. package/dist/models/timeslice-dto.d.ts +62 -0
  69. package/dist/models/timeslice-dto.js +15 -0
  70. package/git_push.sh +57 -0
  71. package/index.ts +19 -0
  72. package/models/create-correction-invoices-response-class.ts +30 -0
  73. package/models/create-custom-estimated-invoice-request-dto.ts +44 -0
  74. package/models/create-custom-estimated-invoice-response-class.ts +30 -0
  75. package/models/create-estimated-invoice-request-dto.ts +37 -0
  76. package/models/create-estimated-invoice-response-class.ts +37 -0
  77. package/models/create-invoice-request-dto.ts +84 -0
  78. package/models/create-invoice-response-class.ts +31 -0
  79. package/models/index.ts +17 -0
  80. package/models/invoice-class.ts +126 -0
  81. package/models/list-invoices-response-class.ts +36 -0
  82. package/models/list-request-dto.ts +60 -0
  83. package/models/policy-dto.ts +91 -0
  84. package/models/policy-object-dto.ts +48 -0
  85. package/models/policy-premium-dto.ts +49 -0
  86. package/models/policy-premium-item-dto.ts +55 -0
  87. package/models/policy-version-dto.ts +61 -0
  88. package/models/premium-formula-dto.ts +78 -0
  89. package/models/timeslice-dto.ts +68 -0
  90. package/package.json +30 -0
  91. package/tsconfig.json +22 -0
@@ -0,0 +1,35 @@
1
+ .gitignore
2
+ .npmignore
3
+ .openapi-generator-ignore
4
+ README.md
5
+ api.ts
6
+ api/correction-invoices-api.ts
7
+ api/estimated-invoices-api.ts
8
+ api/initial-invoices-api.ts
9
+ api/invoices-api.ts
10
+ api/recurring-invoices-api.ts
11
+ base.ts
12
+ common.ts
13
+ configuration.ts
14
+ git_push.sh
15
+ index.ts
16
+ models/create-correction-invoices-response-class.ts
17
+ models/create-custom-estimated-invoice-request-dto.ts
18
+ models/create-custom-estimated-invoice-response-class.ts
19
+ models/create-estimated-invoice-request-dto.ts
20
+ models/create-estimated-invoice-response-class.ts
21
+ models/create-invoice-request-dto.ts
22
+ models/create-invoice-response-class.ts
23
+ models/index.ts
24
+ models/invoice-class.ts
25
+ models/list-invoices-response-class.ts
26
+ models/list-request-dto.ts
27
+ models/policy-dto.ts
28
+ models/policy-object-dto.ts
29
+ models/policy-premium-dto.ts
30
+ models/policy-premium-item-dto.ts
31
+ models/policy-version-dto.ts
32
+ models/premium-formula-dto.ts
33
+ models/timeslice-dto.ts
34
+ package.json
35
+ tsconfig.json
@@ -0,0 +1 @@
1
+ 5.4.0
@@ -0,0 +1,23 @@
1
+ # OpenAPI Generator Ignore
2
+ # Generated by openapi-generator https://github.com/openapitools/openapi-generator
3
+
4
+ # Use this file to prevent files from being overwritten by the generator.
5
+ # The patterns follow closely to .gitignore or .dockerignore.
6
+
7
+ # As an example, the C# client generator defines ApiClient.cs.
8
+ # You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
9
+ #ApiClient.cs
10
+
11
+ # You can match any string of characters against a directory, file or extension with a single asterisk (*):
12
+ #foo/*/qux
13
+ # The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14
+
15
+ # You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16
+ #foo/**/qux
17
+ # This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18
+
19
+ # You can also negate patterns with an exclamation (!).
20
+ # For example, you can ignore all files in a docs folder with the file extension .md:
21
+ #docs/*.md
22
+ # Then explicitly reverse the ignore rule for a single file:
23
+ #!docs/README.md
package/README.md ADDED
@@ -0,0 +1,68 @@
1
+ # Emil Billing SDK for Nodejs
2
+
3
+ This TypeScript/JavaScript client utilizes [axios](https://github.com/axios/axios). The generated Node module can be used with Nodejs based applications.
4
+
5
+ Language level
6
+ * ES5 - you must have a Promises/A+ library installed
7
+ * ES6
8
+
9
+ Module system
10
+ * CommonJS
11
+ * ES6 module system
12
+
13
+ Although this package can be used in both TypeScript and JavaScript, it is intended to be used with TypeScript. The definition should be automatically resolved via `package.json`. ([Reference](http://www.typescriptlang.org/docs/handbook/typings-for-npm-packages.html))
14
+
15
+ ## Consuming
16
+
17
+ Navigate to the folder of your consuming project and run one of the following commands:
18
+
19
+ ```
20
+ npm install @emilgroup/billing-sdk-node@1.0.0 --save
21
+ ```
22
+ or
23
+ ```
24
+ yarn add @emilgroup/billing-sdk-node@1.0.0
25
+ ```
26
+
27
+ And then you can import `InvoicesApi`.
28
+
29
+ ```ts
30
+ import { InvoicesApi } from '@emilgroup/billing-sdk-node'
31
+
32
+ const invoicesApi = new InvoicesApi();
33
+ ```
34
+ ## Credentials
35
+
36
+ To use authentication protected endpoints, you have to first authorize. To do so, the easiest way is to provide a configuration file under `~/.emil/credentials` with the following content:
37
+
38
+ ```shell
39
+ emil_username=XXXXX@XXXX.XXX
40
+ emil_password=XXXXXXXXXXXXXX
41
+ ```
42
+
43
+ It is also possible to provide environment variables instead:
44
+
45
+ ```shell
46
+ export EMIL_USERNAME=XXXXX@XXXX.XXX
47
+ export EMIL_PASSWORD=XXXXXXXXXXXXXX
48
+ ```
49
+
50
+ ## Example
51
+
52
+ Here is a basic functionning example:
53
+
54
+ ```ts
55
+ async function listInvoices(): Promise<Void> {
56
+ try {
57
+ const invoicesApi = new InvoicesApi();
58
+
59
+ await invoicesApi.initialize(); // should be called only once per Api.
60
+
61
+ const { data: { items } } = await invoicesApi.listInvoices();
62
+
63
+ console.log(items);
64
+ } catch(error) {
65
+ // process error
66
+ }
67
+ }
68
+ ```
@@ -0,0 +1,165 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL BillingService
5
+ * The EMIL BillingService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
17
+ import { Configuration } from '../configuration';
18
+ // Some imports not used depending on template conditions
19
+ // @ts-ignore
20
+ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
21
+ // @ts-ignore
22
+ import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
23
+ // @ts-ignore
24
+ import { CreateCorrectionInvoicesResponseClass } from '../models';
25
+ // @ts-ignore
26
+ import { CreateInvoiceRequestDto } from '../models';
27
+ // URLSearchParams not necessarily used
28
+ // @ts-ignore
29
+ import { URL, URLSearchParams } from 'url';
30
+ const FormData = require('form-data');
31
+ /**
32
+ * CorrectionInvoicesApi - axios parameter creator
33
+ * @export
34
+ */
35
+ export const CorrectionInvoicesApiAxiosParamCreator = function (configuration?: Configuration) {
36
+ return {
37
+ /**
38
+ *
39
+ * @param {CreateInvoiceRequestDto} createInvoiceRequestDto
40
+ * @param {string} [authorization] Bearer Token
41
+ * @param {*} [options] Override http request option.
42
+ * @throws {RequiredError}
43
+ */
44
+ createCorrectionInvoice: async (createInvoiceRequestDto: CreateInvoiceRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
45
+ // verify required parameter 'createInvoiceRequestDto' is not null or undefined
46
+ assertParamExists('createCorrectionInvoice', 'createInvoiceRequestDto', createInvoiceRequestDto)
47
+ const localVarPath = `/billingservice/v1/correction-invoices`;
48
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
49
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
50
+ let baseOptions;
51
+ let baseAccessToken;
52
+ if (configuration) {
53
+ baseOptions = configuration.baseOptions;
54
+ baseAccessToken = configuration.accessToken;
55
+ }
56
+
57
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
58
+ const localVarHeaderParameter = {} as any;
59
+ const localVarQueryParameter = {} as any;
60
+
61
+ // authentication bearer required
62
+ // http bearer authentication required
63
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
64
+
65
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
66
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
67
+ }
68
+
69
+
70
+
71
+ localVarHeaderParameter['Content-Type'] = 'application/json';
72
+
73
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
74
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
75
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
76
+ localVarRequestOptions.data = serializeDataIfNeeded(createInvoiceRequestDto, localVarRequestOptions, configuration)
77
+
78
+ return {
79
+ url: toPathString(localVarUrlObj),
80
+ options: localVarRequestOptions,
81
+ };
82
+ },
83
+ }
84
+ };
85
+
86
+ /**
87
+ * CorrectionInvoicesApi - functional programming interface
88
+ * @export
89
+ */
90
+ export const CorrectionInvoicesApiFp = function(configuration?: Configuration) {
91
+ const localVarAxiosParamCreator = CorrectionInvoicesApiAxiosParamCreator(configuration)
92
+ return {
93
+ /**
94
+ *
95
+ * @param {CreateInvoiceRequestDto} createInvoiceRequestDto
96
+ * @param {string} [authorization] Bearer Token
97
+ * @param {*} [options] Override http request option.
98
+ * @throws {RequiredError}
99
+ */
100
+ async createCorrectionInvoice(createInvoiceRequestDto: CreateInvoiceRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateCorrectionInvoicesResponseClass>> {
101
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createCorrectionInvoice(createInvoiceRequestDto, authorization, options);
102
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
103
+ },
104
+ }
105
+ };
106
+
107
+ /**
108
+ * CorrectionInvoicesApi - factory interface
109
+ * @export
110
+ */
111
+ export const CorrectionInvoicesApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
112
+ const localVarFp = CorrectionInvoicesApiFp(configuration)
113
+ return {
114
+ /**
115
+ *
116
+ * @param {CreateInvoiceRequestDto} createInvoiceRequestDto
117
+ * @param {string} [authorization] Bearer Token
118
+ * @param {*} [options] Override http request option.
119
+ * @throws {RequiredError}
120
+ */
121
+ createCorrectionInvoice(createInvoiceRequestDto: CreateInvoiceRequestDto, authorization?: string, options?: any): AxiosPromise<CreateCorrectionInvoicesResponseClass> {
122
+ return localVarFp.createCorrectionInvoice(createInvoiceRequestDto, authorization, options).then((request) => request(axios, basePath));
123
+ },
124
+ };
125
+ };
126
+
127
+ /**
128
+ * Request parameters for createCorrectionInvoice operation in CorrectionInvoicesApi.
129
+ * @export
130
+ * @interface CorrectionInvoicesApiCreateCorrectionInvoiceRequest
131
+ */
132
+ export interface CorrectionInvoicesApiCreateCorrectionInvoiceRequest {
133
+ /**
134
+ *
135
+ * @type {CreateInvoiceRequestDto}
136
+ * @memberof CorrectionInvoicesApiCreateCorrectionInvoice
137
+ */
138
+ readonly createInvoiceRequestDto: CreateInvoiceRequestDto
139
+
140
+ /**
141
+ * Bearer Token
142
+ * @type {string}
143
+ * @memberof CorrectionInvoicesApiCreateCorrectionInvoice
144
+ */
145
+ readonly authorization?: string
146
+ }
147
+
148
+ /**
149
+ * CorrectionInvoicesApi - object-oriented interface
150
+ * @export
151
+ * @class CorrectionInvoicesApi
152
+ * @extends {BaseAPI}
153
+ */
154
+ export class CorrectionInvoicesApi extends BaseAPI {
155
+ /**
156
+ *
157
+ * @param {CorrectionInvoicesApiCreateCorrectionInvoiceRequest} requestParameters Request parameters.
158
+ * @param {*} [options] Override http request option.
159
+ * @throws {RequiredError}
160
+ * @memberof CorrectionInvoicesApi
161
+ */
162
+ public createCorrectionInvoice(requestParameters: CorrectionInvoicesApiCreateCorrectionInvoiceRequest, options?: AxiosRequestConfig) {
163
+ return CorrectionInvoicesApiFp(this.configuration).createCorrectionInvoice(requestParameters.createInvoiceRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
164
+ }
165
+ }
@@ -0,0 +1,268 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * EMIL BillingService
5
+ * The EMIL BillingService API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
17
+ import { Configuration } from '../configuration';
18
+ // Some imports not used depending on template conditions
19
+ // @ts-ignore
20
+ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
21
+ // @ts-ignore
22
+ import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
23
+ // @ts-ignore
24
+ import { CreateCustomEstimatedInvoiceRequestDto } from '../models';
25
+ // @ts-ignore
26
+ import { CreateCustomEstimatedInvoiceResponseClass } from '../models';
27
+ // @ts-ignore
28
+ import { CreateEstimatedInvoiceRequestDto } from '../models';
29
+ // @ts-ignore
30
+ import { CreateEstimatedInvoiceResponseClass } from '../models';
31
+ // URLSearchParams not necessarily used
32
+ // @ts-ignore
33
+ import { URL, URLSearchParams } from 'url';
34
+ const FormData = require('form-data');
35
+ /**
36
+ * EstimatedInvoicesApi - axios parameter creator
37
+ * @export
38
+ */
39
+ export const EstimatedInvoicesApiAxiosParamCreator = function (configuration?: Configuration) {
40
+ return {
41
+ /**
42
+ *
43
+ * @param {CreateCustomEstimatedInvoiceRequestDto} createCustomEstimatedInvoiceRequestDto
44
+ * @param {string} [authorization] Bearer Token
45
+ * @param {*} [options] Override http request option.
46
+ * @throws {RequiredError}
47
+ */
48
+ createCustomEstimatedInvoice: async (createCustomEstimatedInvoiceRequestDto: CreateCustomEstimatedInvoiceRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
49
+ // verify required parameter 'createCustomEstimatedInvoiceRequestDto' is not null or undefined
50
+ assertParamExists('createCustomEstimatedInvoice', 'createCustomEstimatedInvoiceRequestDto', createCustomEstimatedInvoiceRequestDto)
51
+ const localVarPath = `/billingservice/v1/estimated-invoices/custom`;
52
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
53
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
54
+ let baseOptions;
55
+ let baseAccessToken;
56
+ if (configuration) {
57
+ baseOptions = configuration.baseOptions;
58
+ baseAccessToken = configuration.accessToken;
59
+ }
60
+
61
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
62
+ const localVarHeaderParameter = {} as any;
63
+ const localVarQueryParameter = {} as any;
64
+
65
+ // authentication bearer required
66
+ // http bearer authentication required
67
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
68
+
69
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
70
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
71
+ }
72
+
73
+
74
+
75
+ localVarHeaderParameter['Content-Type'] = 'application/json';
76
+
77
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
78
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
79
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
80
+ localVarRequestOptions.data = serializeDataIfNeeded(createCustomEstimatedInvoiceRequestDto, localVarRequestOptions, configuration)
81
+
82
+ return {
83
+ url: toPathString(localVarUrlObj),
84
+ options: localVarRequestOptions,
85
+ };
86
+ },
87
+ /**
88
+ *
89
+ * @param {CreateEstimatedInvoiceRequestDto} createEstimatedInvoiceRequestDto
90
+ * @param {string} [authorization] Bearer Token
91
+ * @param {*} [options] Override http request option.
92
+ * @throws {RequiredError}
93
+ */
94
+ createEstimatedInvoice: async (createEstimatedInvoiceRequestDto: CreateEstimatedInvoiceRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
95
+ // verify required parameter 'createEstimatedInvoiceRequestDto' is not null or undefined
96
+ assertParamExists('createEstimatedInvoice', 'createEstimatedInvoiceRequestDto', createEstimatedInvoiceRequestDto)
97
+ const localVarPath = `/billingservice/v1/estimated-invoices`;
98
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
99
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
100
+ let baseOptions;
101
+ let baseAccessToken;
102
+ if (configuration) {
103
+ baseOptions = configuration.baseOptions;
104
+ baseAccessToken = configuration.accessToken;
105
+ }
106
+
107
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
108
+ const localVarHeaderParameter = {} as any;
109
+ const localVarQueryParameter = {} as any;
110
+
111
+ // authentication bearer required
112
+ // http bearer authentication required
113
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
114
+
115
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
116
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
117
+ }
118
+
119
+
120
+
121
+ localVarHeaderParameter['Content-Type'] = 'application/json';
122
+
123
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
124
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
125
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
126
+ localVarRequestOptions.data = serializeDataIfNeeded(createEstimatedInvoiceRequestDto, localVarRequestOptions, configuration)
127
+
128
+ return {
129
+ url: toPathString(localVarUrlObj),
130
+ options: localVarRequestOptions,
131
+ };
132
+ },
133
+ }
134
+ };
135
+
136
+ /**
137
+ * EstimatedInvoicesApi - functional programming interface
138
+ * @export
139
+ */
140
+ export const EstimatedInvoicesApiFp = function(configuration?: Configuration) {
141
+ const localVarAxiosParamCreator = EstimatedInvoicesApiAxiosParamCreator(configuration)
142
+ return {
143
+ /**
144
+ *
145
+ * @param {CreateCustomEstimatedInvoiceRequestDto} createCustomEstimatedInvoiceRequestDto
146
+ * @param {string} [authorization] Bearer Token
147
+ * @param {*} [options] Override http request option.
148
+ * @throws {RequiredError}
149
+ */
150
+ async createCustomEstimatedInvoice(createCustomEstimatedInvoiceRequestDto: CreateCustomEstimatedInvoiceRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateCustomEstimatedInvoiceResponseClass>> {
151
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createCustomEstimatedInvoice(createCustomEstimatedInvoiceRequestDto, authorization, options);
152
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
153
+ },
154
+ /**
155
+ *
156
+ * @param {CreateEstimatedInvoiceRequestDto} createEstimatedInvoiceRequestDto
157
+ * @param {string} [authorization] Bearer Token
158
+ * @param {*} [options] Override http request option.
159
+ * @throws {RequiredError}
160
+ */
161
+ async createEstimatedInvoice(createEstimatedInvoiceRequestDto: CreateEstimatedInvoiceRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEstimatedInvoiceResponseClass>> {
162
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createEstimatedInvoice(createEstimatedInvoiceRequestDto, authorization, options);
163
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
164
+ },
165
+ }
166
+ };
167
+
168
+ /**
169
+ * EstimatedInvoicesApi - factory interface
170
+ * @export
171
+ */
172
+ export const EstimatedInvoicesApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
173
+ const localVarFp = EstimatedInvoicesApiFp(configuration)
174
+ return {
175
+ /**
176
+ *
177
+ * @param {CreateCustomEstimatedInvoiceRequestDto} createCustomEstimatedInvoiceRequestDto
178
+ * @param {string} [authorization] Bearer Token
179
+ * @param {*} [options] Override http request option.
180
+ * @throws {RequiredError}
181
+ */
182
+ createCustomEstimatedInvoice(createCustomEstimatedInvoiceRequestDto: CreateCustomEstimatedInvoiceRequestDto, authorization?: string, options?: any): AxiosPromise<CreateCustomEstimatedInvoiceResponseClass> {
183
+ return localVarFp.createCustomEstimatedInvoice(createCustomEstimatedInvoiceRequestDto, authorization, options).then((request) => request(axios, basePath));
184
+ },
185
+ /**
186
+ *
187
+ * @param {CreateEstimatedInvoiceRequestDto} createEstimatedInvoiceRequestDto
188
+ * @param {string} [authorization] Bearer Token
189
+ * @param {*} [options] Override http request option.
190
+ * @throws {RequiredError}
191
+ */
192
+ createEstimatedInvoice(createEstimatedInvoiceRequestDto: CreateEstimatedInvoiceRequestDto, authorization?: string, options?: any): AxiosPromise<CreateEstimatedInvoiceResponseClass> {
193
+ return localVarFp.createEstimatedInvoice(createEstimatedInvoiceRequestDto, authorization, options).then((request) => request(axios, basePath));
194
+ },
195
+ };
196
+ };
197
+
198
+ /**
199
+ * Request parameters for createCustomEstimatedInvoice operation in EstimatedInvoicesApi.
200
+ * @export
201
+ * @interface EstimatedInvoicesApiCreateCustomEstimatedInvoiceRequest
202
+ */
203
+ export interface EstimatedInvoicesApiCreateCustomEstimatedInvoiceRequest {
204
+ /**
205
+ *
206
+ * @type {CreateCustomEstimatedInvoiceRequestDto}
207
+ * @memberof EstimatedInvoicesApiCreateCustomEstimatedInvoice
208
+ */
209
+ readonly createCustomEstimatedInvoiceRequestDto: CreateCustomEstimatedInvoiceRequestDto
210
+
211
+ /**
212
+ * Bearer Token
213
+ * @type {string}
214
+ * @memberof EstimatedInvoicesApiCreateCustomEstimatedInvoice
215
+ */
216
+ readonly authorization?: string
217
+ }
218
+
219
+ /**
220
+ * Request parameters for createEstimatedInvoice operation in EstimatedInvoicesApi.
221
+ * @export
222
+ * @interface EstimatedInvoicesApiCreateEstimatedInvoiceRequest
223
+ */
224
+ export interface EstimatedInvoicesApiCreateEstimatedInvoiceRequest {
225
+ /**
226
+ *
227
+ * @type {CreateEstimatedInvoiceRequestDto}
228
+ * @memberof EstimatedInvoicesApiCreateEstimatedInvoice
229
+ */
230
+ readonly createEstimatedInvoiceRequestDto: CreateEstimatedInvoiceRequestDto
231
+
232
+ /**
233
+ * Bearer Token
234
+ * @type {string}
235
+ * @memberof EstimatedInvoicesApiCreateEstimatedInvoice
236
+ */
237
+ readonly authorization?: string
238
+ }
239
+
240
+ /**
241
+ * EstimatedInvoicesApi - object-oriented interface
242
+ * @export
243
+ * @class EstimatedInvoicesApi
244
+ * @extends {BaseAPI}
245
+ */
246
+ export class EstimatedInvoicesApi extends BaseAPI {
247
+ /**
248
+ *
249
+ * @param {EstimatedInvoicesApiCreateCustomEstimatedInvoiceRequest} requestParameters Request parameters.
250
+ * @param {*} [options] Override http request option.
251
+ * @throws {RequiredError}
252
+ * @memberof EstimatedInvoicesApi
253
+ */
254
+ public createCustomEstimatedInvoice(requestParameters: EstimatedInvoicesApiCreateCustomEstimatedInvoiceRequest, options?: AxiosRequestConfig) {
255
+ return EstimatedInvoicesApiFp(this.configuration).createCustomEstimatedInvoice(requestParameters.createCustomEstimatedInvoiceRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
256
+ }
257
+
258
+ /**
259
+ *
260
+ * @param {EstimatedInvoicesApiCreateEstimatedInvoiceRequest} requestParameters Request parameters.
261
+ * @param {*} [options] Override http request option.
262
+ * @throws {RequiredError}
263
+ * @memberof EstimatedInvoicesApi
264
+ */
265
+ public createEstimatedInvoice(requestParameters: EstimatedInvoicesApiCreateEstimatedInvoiceRequest, options?: AxiosRequestConfig) {
266
+ return EstimatedInvoicesApiFp(this.configuration).createEstimatedInvoice(requestParameters.createEstimatedInvoiceRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
267
+ }
268
+ }