vayu-ts 0.1.4 → 0.2.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.
Files changed (146) hide show
  1. package/dist/openapi-v2/apis/AuthenticationApi.d.ts +24 -0
  2. package/dist/openapi-v2/apis/AuthenticationApi.js +79 -0
  3. package/dist/openapi-v2/apis/CustomersApi.d.ts +76 -0
  4. package/dist/openapi-v2/apis/CustomersApi.js +295 -0
  5. package/dist/openapi-v2/apis/EventsApi.d.ts +63 -0
  6. package/dist/openapi-v2/apis/EventsApi.js +231 -0
  7. package/dist/openapi-v2/apis/InvoicesApi.d.ts +88 -0
  8. package/dist/openapi-v2/apis/InvoicesApi.js +344 -0
  9. package/dist/openapi-v2/apis/ProductsApi.d.ts +90 -0
  10. package/dist/openapi-v2/apis/ProductsApi.js +359 -0
  11. package/dist/openapi-v2/apis/baseapi.d.ts +33 -0
  12. package/dist/openapi-v2/apis/baseapi.js +41 -0
  13. package/dist/openapi-v2/apis/exception.d.ts +19 -0
  14. package/dist/openapi-v2/apis/exception.js +22 -0
  15. package/dist/openapi-v2/auth/auth.d.ts +38 -0
  16. package/dist/openapi-v2/auth/auth.js +16 -0
  17. package/dist/openapi-v2/configuration.d.ts +63 -0
  18. package/dist/openapi-v2/configuration.js +34 -0
  19. package/dist/openapi-v2/http/http.d.ts +142 -0
  20. package/dist/openapi-v2/http/http.js +229 -0
  21. package/dist/openapi-v2/http/isomorphic-fetch.d.ts +5 -0
  22. package/dist/openapi-v2/http/isomorphic-fetch.js +33 -0
  23. package/dist/openapi-v2/index.d.ts +10 -0
  24. package/dist/openapi-v2/index.js +32 -0
  25. package/dist/openapi-v2/middleware.d.ts +54 -0
  26. package/dist/openapi-v2/middleware.js +16 -0
  27. package/dist/openapi-v2/models/APICreateCustomerPayload.d.ts +45 -0
  28. package/dist/openapi-v2/models/APICreateCustomerPayload.js +49 -0
  29. package/dist/openapi-v2/models/APICreateInvoicePayload.d.ts +41 -0
  30. package/dist/openapi-v2/models/APICreateInvoicePayload.js +49 -0
  31. package/dist/openapi-v2/models/APICreateProductPayload.d.ts +39 -0
  32. package/dist/openapi-v2/models/APICreateProductPayload.js +49 -0
  33. package/dist/openapi-v2/models/APICustomer.d.ts +64 -0
  34. package/dist/openapi-v2/models/APICustomer.js +76 -0
  35. package/dist/openapi-v2/models/APIEvent.d.ts +72 -0
  36. package/dist/openapi-v2/models/APIEvent.js +88 -0
  37. package/dist/openapi-v2/models/APIIngestEventPayload.d.ts +49 -0
  38. package/dist/openapi-v2/models/APIIngestEventPayload.js +55 -0
  39. package/dist/openapi-v2/models/APIInvoice.d.ts +71 -0
  40. package/dist/openapi-v2/models/APIInvoice.js +88 -0
  41. package/dist/openapi-v2/models/APIInvoiceBillingPeriod.d.ts +38 -0
  42. package/dist/openapi-v2/models/APIInvoiceBillingPeriod.js +40 -0
  43. package/dist/openapi-v2/models/APIProduct.d.ts +63 -0
  44. package/dist/openapi-v2/models/APIProduct.js +82 -0
  45. package/dist/openapi-v2/models/APIQueryPayloadAPICustomer.d.ts +43 -0
  46. package/dist/openapi-v2/models/APIQueryPayloadAPICustomer.js +49 -0
  47. package/dist/openapi-v2/models/APIQueryPayloadAPIEvent.d.ts +43 -0
  48. package/dist/openapi-v2/models/APIQueryPayloadAPIEvent.js +49 -0
  49. package/dist/openapi-v2/models/APIQueryPayloadAPIInvoice.d.ts +43 -0
  50. package/dist/openapi-v2/models/APIQueryPayloadAPIInvoice.js +49 -0
  51. package/dist/openapi-v2/models/APIQueryPayloadAPIProduct.d.ts +43 -0
  52. package/dist/openapi-v2/models/APIQueryPayloadAPIProduct.js +49 -0
  53. package/dist/openapi-v2/models/APIUpdateCustomerPayload.d.ts +45 -0
  54. package/dist/openapi-v2/models/APIUpdateCustomerPayload.js +49 -0
  55. package/dist/openapi-v2/models/APIUpdateInvoicePayload.d.ts +41 -0
  56. package/dist/openapi-v2/models/APIUpdateInvoicePayload.js +49 -0
  57. package/dist/openapi-v2/models/APIUpdateProductPayload.d.ts +39 -0
  58. package/dist/openapi-v2/models/APIUpdateProductPayload.js +49 -0
  59. package/dist/openapi-v2/models/Aggregation.d.ts +32 -0
  60. package/dist/openapi-v2/models/Aggregation.js +43 -0
  61. package/dist/openapi-v2/models/AggregationMethods.d.ts +18 -0
  62. package/dist/openapi-v2/models/AggregationMethods.js +22 -0
  63. package/dist/openapi-v2/models/Condition.d.ts +29 -0
  64. package/dist/openapi-v2/models/Condition.js +31 -0
  65. package/dist/openapi-v2/models/Criterion.d.ts +32 -0
  66. package/dist/openapi-v2/models/Criterion.js +43 -0
  67. package/dist/openapi-v2/models/CriterionOperators.d.ts +23 -0
  68. package/dist/openapi-v2/models/CriterionOperators.js +27 -0
  69. package/dist/openapi-v2/models/CriterionValue.d.ts +27 -0
  70. package/dist/openapi-v2/models/CriterionValue.js +24 -0
  71. package/dist/openapi-v2/models/Event.d.ts +54 -0
  72. package/dist/openapi-v2/models/Event.js +85 -0
  73. package/dist/openapi-v2/models/IngestEventToTheSystem201Response.d.ts +31 -0
  74. package/dist/openapi-v2/models/IngestEventToTheSystem201Response.js +43 -0
  75. package/dist/openapi-v2/models/InvoiceProductBreakdown.d.ts +36 -0
  76. package/dist/openapi-v2/models/InvoiceProductBreakdown.js +46 -0
  77. package/dist/openapi-v2/models/Login200Response.d.ts +28 -0
  78. package/dist/openapi-v2/models/Login200Response.js +31 -0
  79. package/dist/openapi-v2/models/LoginRequest.d.ts +28 -0
  80. package/dist/openapi-v2/models/LoginRequest.js +31 -0
  81. package/dist/openapi-v2/models/ObjectSerializer.d.ts +64 -0
  82. package/dist/openapi-v2/models/ObjectSerializer.js +368 -0
  83. package/dist/openapi-v2/models/Pricing.d.ts +30 -0
  84. package/dist/openapi-v2/models/Pricing.js +37 -0
  85. package/dist/openapi-v2/models/PricingTiersInner.d.ts +31 -0
  86. package/dist/openapi-v2/models/PricingTiersInner.js +49 -0
  87. package/dist/openapi-v2/models/ProductBreakdown.d.ts +29 -0
  88. package/dist/openapi-v2/models/ProductBreakdown.js +37 -0
  89. package/dist/openapi-v2/models/ProductRevision.d.ts +36 -0
  90. package/dist/openapi-v2/models/ProductRevision.js +55 -0
  91. package/dist/openapi-v2/models/QueryResultAPICustomer.d.ts +40 -0
  92. package/dist/openapi-v2/models/QueryResultAPICustomer.js +43 -0
  93. package/dist/openapi-v2/models/QueryResultAPIEvent.d.ts +40 -0
  94. package/dist/openapi-v2/models/QueryResultAPIEvent.js +43 -0
  95. package/dist/openapi-v2/models/QueryResultAPIInvoice.d.ts +40 -0
  96. package/dist/openapi-v2/models/QueryResultAPIInvoice.js +43 -0
  97. package/dist/openapi-v2/models/QueryResultAPIProduct.d.ts +40 -0
  98. package/dist/openapi-v2/models/QueryResultAPIProduct.js +43 -0
  99. package/dist/openapi-v2/models/ReviseProductPayload.d.ts +37 -0
  100. package/dist/openapi-v2/models/ReviseProductPayload.js +43 -0
  101. package/dist/openapi-v2/models/UpdateEventPayload.d.ts +33 -0
  102. package/dist/openapi-v2/models/UpdateEventPayload.js +31 -0
  103. package/dist/openapi-v2/models/all.d.ts +37 -0
  104. package/dist/openapi-v2/models/all.js +53 -0
  105. package/dist/openapi-v2/rxjsStub.d.ts +10 -0
  106. package/dist/openapi-v2/rxjsStub.js +31 -0
  107. package/dist/openapi-v2/servers.d.ts +38 -0
  108. package/dist/openapi-v2/servers.js +51 -0
  109. package/dist/openapi-v2/types/ObservableAPI.d.ts +245 -0
  110. package/dist/openapi-v2/types/ObservableAPI.js +608 -0
  111. package/dist/openapi-v2/types/PromiseAPI.d.ts +234 -0
  112. package/dist/openapi-v2/types/PromiseAPI.js +354 -0
  113. package/dist/openapi-v2/util.d.ts +15 -0
  114. package/dist/openapi-v2/util.js +42 -0
  115. package/dist/sdk/services/configuration.service.js +1 -1
  116. package/dist/sdk-v2/clients/CustomersClient.d.ts +10 -0
  117. package/dist/sdk-v2/clients/CustomersClient.js +45 -0
  118. package/dist/sdk-v2/clients/EventsClient.d.ts +9 -0
  119. package/dist/sdk-v2/clients/EventsClient.js +46 -0
  120. package/dist/sdk-v2/clients/InvoicesClient.d.ts +11 -0
  121. package/dist/sdk-v2/clients/InvoicesClient.js +50 -0
  122. package/dist/sdk-v2/clients/ProductsClient.d.ts +11 -0
  123. package/dist/sdk-v2/clients/ProductsClient.js +50 -0
  124. package/dist/sdk-v2/clients/index.d.ts +4 -0
  125. package/dist/sdk-v2/clients/index.js +20 -0
  126. package/dist/sdk-v2/index.d.ts +11 -0
  127. package/dist/sdk-v2/index.js +53 -0
  128. package/dist/sdk-v2/services/configuration.service.d.ts +21 -0
  129. package/dist/sdk-v2/services/configuration.service.js +98 -0
  130. package/dist/sdk-v2/services/index.d.ts +1 -0
  131. package/dist/sdk-v2/services/index.js +17 -0
  132. package/dist/sdk-v2/types/Customers.d.ts +1 -0
  133. package/dist/sdk-v2/types/Customers.js +2 -0
  134. package/dist/sdk-v2/types/Events.d.ts +1 -0
  135. package/dist/sdk-v2/types/Events.js +2 -0
  136. package/dist/sdk-v2/types/Invoices.d.ts +1 -0
  137. package/dist/sdk-v2/types/Invoices.js +2 -0
  138. package/dist/sdk-v2/types/Products.d.ts +1 -0
  139. package/dist/sdk-v2/types/Products.js +2 -0
  140. package/dist/sdk-v2/types/index.d.ts +6 -0
  141. package/dist/sdk-v2/types/index.js +23 -0
  142. package/dist/v2.d.ts +1 -0
  143. package/dist/v2.js +17 -0
  144. package/package.json +17 -1
  145. package/dist/openapi/types/ObjectParamAPI.d.ts +0 -845
  146. package/dist/openapi/types/ObjectParamAPI.js +0 -606
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.servers = exports.server1 = exports.ServerConfiguration = void 0;
4
+ const http_1 = require("./http/http");
5
+ /**
6
+ *
7
+ * Represents the configuration of a server including its
8
+ * url template and variable configuration based on the url.
9
+ *
10
+ */
11
+ class ServerConfiguration {
12
+ constructor(url, variableConfiguration) {
13
+ this.url = url;
14
+ this.variableConfiguration = variableConfiguration;
15
+ }
16
+ /**
17
+ * Sets the value of the variables of this server. Variables are included in
18
+ * the `url` of this ServerConfiguration in the form `{variableName}`
19
+ *
20
+ * @param variableConfiguration a partial variable configuration for the
21
+ * variables contained in the url
22
+ */
23
+ setVariables(variableConfiguration) {
24
+ Object.assign(this.variableConfiguration, variableConfiguration);
25
+ }
26
+ getConfiguration() {
27
+ return this.variableConfiguration;
28
+ }
29
+ getUrl() {
30
+ let replacedUrl = this.url;
31
+ for (const key in this.variableConfiguration) {
32
+ var re = new RegExp("{" + key + "}", "g");
33
+ replacedUrl = replacedUrl.replace(re, this.variableConfiguration[key]);
34
+ }
35
+ return replacedUrl;
36
+ }
37
+ /**
38
+ * Creates a new request context for this server using the url with variables
39
+ * replaced with their respective values and the endpoint of the request appended.
40
+ *
41
+ * @param endpoint the endpoint to be queried on the server
42
+ * @param httpMethod httpMethod to be used
43
+ *
44
+ */
45
+ makeRequestContext(endpoint, httpMethod) {
46
+ return new http_1.RequestContext(this.getUrl() + endpoint, httpMethod);
47
+ }
48
+ }
49
+ exports.ServerConfiguration = ServerConfiguration;
50
+ exports.server1 = new ServerConfiguration("", {});
51
+ exports.servers = [exports.server1];
@@ -0,0 +1,245 @@
1
+ import { HttpInfo } from '../http/http';
2
+ import { Configuration } from '../configuration';
3
+ import { Observable } from '../rxjsStub';
4
+ import { APICreateCustomerPayload } from '../models/APICreateCustomerPayload';
5
+ import { APICreateInvoicePayload } from '../models/APICreateInvoicePayload';
6
+ import { APICreateProductPayload } from '../models/APICreateProductPayload';
7
+ import { APICustomer } from '../models/APICustomer';
8
+ import { APIEvent } from '../models/APIEvent';
9
+ import { APIIngestEventPayload } from '../models/APIIngestEventPayload';
10
+ import { APIInvoice } from '../models/APIInvoice';
11
+ import { APIProduct } from '../models/APIProduct';
12
+ import { APIQueryPayloadAPICustomer } from '../models/APIQueryPayloadAPICustomer';
13
+ import { APIQueryPayloadAPIEvent } from '../models/APIQueryPayloadAPIEvent';
14
+ import { APIQueryPayloadAPIInvoice } from '../models/APIQueryPayloadAPIInvoice';
15
+ import { APIQueryPayloadAPIProduct } from '../models/APIQueryPayloadAPIProduct';
16
+ import { APIUpdateCustomerPayload } from '../models/APIUpdateCustomerPayload';
17
+ import { APIUpdateInvoicePayload } from '../models/APIUpdateInvoicePayload';
18
+ import { APIUpdateProductPayload } from '../models/APIUpdateProductPayload';
19
+ import { IngestEventToTheSystem201Response } from '../models/IngestEventToTheSystem201Response';
20
+ import { Login200Response } from '../models/Login200Response';
21
+ import { LoginRequest } from '../models/LoginRequest';
22
+ import { QueryResultAPICustomer } from '../models/QueryResultAPICustomer';
23
+ import { QueryResultAPIEvent } from '../models/QueryResultAPIEvent';
24
+ import { QueryResultAPIInvoice } from '../models/QueryResultAPIInvoice';
25
+ import { QueryResultAPIProduct } from '../models/QueryResultAPIProduct';
26
+ import { ReviseProductPayload } from '../models/ReviseProductPayload';
27
+ import { AuthenticationApiRequestFactory, AuthenticationApiResponseProcessor } from "../apis/AuthenticationApi";
28
+ export declare class ObservableAuthenticationApi {
29
+ private requestFactory;
30
+ private responseProcessor;
31
+ private configuration;
32
+ constructor(configuration: Configuration, requestFactory?: AuthenticationApiRequestFactory, responseProcessor?: AuthenticationApiResponseProcessor);
33
+ /**
34
+ * @param loginRequest
35
+ */
36
+ loginWithHttpInfo(loginRequest: LoginRequest, _options?: Configuration): Observable<HttpInfo<Login200Response>>;
37
+ /**
38
+ * @param loginRequest
39
+ */
40
+ login(loginRequest: LoginRequest, _options?: Configuration): Observable<Login200Response>;
41
+ }
42
+ import { CustomersApiRequestFactory, CustomersApiResponseProcessor } from "../apis/CustomersApi";
43
+ export declare class ObservableCustomersApi {
44
+ private requestFactory;
45
+ private responseProcessor;
46
+ private configuration;
47
+ constructor(configuration: Configuration, requestFactory?: CustomersApiRequestFactory, responseProcessor?: CustomersApiResponseProcessor);
48
+ /**
49
+ * @param aPICreateCustomerPayload
50
+ */
51
+ createCustomerWithHttpInfo(aPICreateCustomerPayload: APICreateCustomerPayload, _options?: Configuration): Observable<HttpInfo<APICustomer>>;
52
+ /**
53
+ * @param aPICreateCustomerPayload
54
+ */
55
+ createCustomer(aPICreateCustomerPayload: APICreateCustomerPayload, _options?: Configuration): Observable<APICustomer>;
56
+ /**
57
+ * @param id
58
+ */
59
+ deleteCustomerWithHttpInfo(id: string, _options?: Configuration): Observable<HttpInfo<void>>;
60
+ /**
61
+ * @param id
62
+ */
63
+ deleteCustomer(id: string, _options?: Configuration): Observable<void>;
64
+ /**
65
+ * @param id
66
+ */
67
+ getCustomerWithHttpInfo(id: string, _options?: Configuration): Observable<HttpInfo<APICustomer>>;
68
+ /**
69
+ * @param id
70
+ */
71
+ getCustomer(id: string, _options?: Configuration): Observable<APICustomer>;
72
+ /**
73
+ * @param aPIQueryPayloadAPICustomer
74
+ */
75
+ queryCustomersWithHttpInfo(aPIQueryPayloadAPICustomer: APIQueryPayloadAPICustomer, _options?: Configuration): Observable<HttpInfo<QueryResultAPICustomer>>;
76
+ /**
77
+ * @param aPIQueryPayloadAPICustomer
78
+ */
79
+ queryCustomers(aPIQueryPayloadAPICustomer: APIQueryPayloadAPICustomer, _options?: Configuration): Observable<QueryResultAPICustomer>;
80
+ /**
81
+ * @param aPIUpdateCustomerPayload
82
+ * @param id
83
+ */
84
+ updateCustomerWithHttpInfo(aPIUpdateCustomerPayload: APIUpdateCustomerPayload, id: string, _options?: Configuration): Observable<HttpInfo<APICustomer>>;
85
+ /**
86
+ * @param aPIUpdateCustomerPayload
87
+ * @param id
88
+ */
89
+ updateCustomer(aPIUpdateCustomerPayload: APIUpdateCustomerPayload, id: string, _options?: Configuration): Observable<APICustomer>;
90
+ }
91
+ import { EventsApiRequestFactory, EventsApiResponseProcessor } from "../apis/EventsApi";
92
+ export declare class ObservableEventsApi {
93
+ private requestFactory;
94
+ private responseProcessor;
95
+ private configuration;
96
+ constructor(configuration: Configuration, requestFactory?: EventsApiRequestFactory, responseProcessor?: EventsApiResponseProcessor);
97
+ /**
98
+ * @param id
99
+ */
100
+ deleteEventWithHttpInfo(id: string, _options?: Configuration): Observable<HttpInfo<void>>;
101
+ /**
102
+ * @param id
103
+ */
104
+ deleteEvent(id: string, _options?: Configuration): Observable<void>;
105
+ /**
106
+ * @param id
107
+ */
108
+ getEventWithHttpInfo(id: string, _options?: Configuration): Observable<HttpInfo<APIEvent>>;
109
+ /**
110
+ * @param id
111
+ */
112
+ getEvent(id: string, _options?: Configuration): Observable<APIEvent>;
113
+ /**
114
+ * @param aPIIngestEventPayload
115
+ */
116
+ ingestEventToTheSystemWithHttpInfo(aPIIngestEventPayload: Array<APIIngestEventPayload>, _options?: Configuration): Observable<HttpInfo<IngestEventToTheSystem201Response>>;
117
+ /**
118
+ * @param aPIIngestEventPayload
119
+ */
120
+ ingestEventToTheSystem(aPIIngestEventPayload: Array<APIIngestEventPayload>, _options?: Configuration): Observable<IngestEventToTheSystem201Response>;
121
+ /**
122
+ * @param aPIQueryPayloadAPIEvent
123
+ */
124
+ queryEventsWithHttpInfo(aPIQueryPayloadAPIEvent: APIQueryPayloadAPIEvent, _options?: Configuration): Observable<HttpInfo<QueryResultAPIEvent>>;
125
+ /**
126
+ * @param aPIQueryPayloadAPIEvent
127
+ */
128
+ queryEvents(aPIQueryPayloadAPIEvent: APIQueryPayloadAPIEvent, _options?: Configuration): Observable<QueryResultAPIEvent>;
129
+ }
130
+ import { InvoicesApiRequestFactory, InvoicesApiResponseProcessor } from "../apis/InvoicesApi";
131
+ export declare class ObservableInvoicesApi {
132
+ private requestFactory;
133
+ private responseProcessor;
134
+ private configuration;
135
+ constructor(configuration: Configuration, requestFactory?: InvoicesApiRequestFactory, responseProcessor?: InvoicesApiResponseProcessor);
136
+ /**
137
+ * @param id
138
+ */
139
+ calculateInvoiceWithHttpInfo(id: string, _options?: Configuration): Observable<HttpInfo<APIInvoice>>;
140
+ /**
141
+ * @param id
142
+ */
143
+ calculateInvoice(id: string, _options?: Configuration): Observable<APIInvoice>;
144
+ /**
145
+ * @param aPICreateInvoicePayload
146
+ */
147
+ createInvoiceWithHttpInfo(aPICreateInvoicePayload: APICreateInvoicePayload, _options?: Configuration): Observable<HttpInfo<APIInvoice>>;
148
+ /**
149
+ * @param aPICreateInvoicePayload
150
+ */
151
+ createInvoice(aPICreateInvoicePayload: APICreateInvoicePayload, _options?: Configuration): Observable<APIInvoice>;
152
+ /**
153
+ * @param id
154
+ */
155
+ deleteInvoiceWithHttpInfo(id: string, _options?: Configuration): Observable<HttpInfo<void>>;
156
+ /**
157
+ * @param id
158
+ */
159
+ deleteInvoice(id: string, _options?: Configuration): Observable<void>;
160
+ /**
161
+ * @param id
162
+ */
163
+ getInvoiceWithHttpInfo(id: string, _options?: Configuration): Observable<HttpInfo<APIInvoice>>;
164
+ /**
165
+ * @param id
166
+ */
167
+ getInvoice(id: string, _options?: Configuration): Observable<APIInvoice>;
168
+ /**
169
+ * @param aPIQueryPayloadAPIInvoice
170
+ */
171
+ queryInvoicesWithHttpInfo(aPIQueryPayloadAPIInvoice: APIQueryPayloadAPIInvoice, _options?: Configuration): Observable<HttpInfo<QueryResultAPIInvoice>>;
172
+ /**
173
+ * @param aPIQueryPayloadAPIInvoice
174
+ */
175
+ queryInvoices(aPIQueryPayloadAPIInvoice: APIQueryPayloadAPIInvoice, _options?: Configuration): Observable<QueryResultAPIInvoice>;
176
+ /**
177
+ * @param aPIUpdateInvoicePayload
178
+ * @param id
179
+ */
180
+ updateInvoiceWithHttpInfo(aPIUpdateInvoicePayload: APIUpdateInvoicePayload, id: string, _options?: Configuration): Observable<HttpInfo<APIInvoice>>;
181
+ /**
182
+ * @param aPIUpdateInvoicePayload
183
+ * @param id
184
+ */
185
+ updateInvoice(aPIUpdateInvoicePayload: APIUpdateInvoicePayload, id: string, _options?: Configuration): Observable<APIInvoice>;
186
+ }
187
+ import { ProductsApiRequestFactory, ProductsApiResponseProcessor } from "../apis/ProductsApi";
188
+ export declare class ObservableProductsApi {
189
+ private requestFactory;
190
+ private responseProcessor;
191
+ private configuration;
192
+ constructor(configuration: Configuration, requestFactory?: ProductsApiRequestFactory, responseProcessor?: ProductsApiResponseProcessor);
193
+ /**
194
+ * @param aPICreateProductPayload
195
+ */
196
+ createProductWithHttpInfo(aPICreateProductPayload: APICreateProductPayload, _options?: Configuration): Observable<HttpInfo<APIProduct>>;
197
+ /**
198
+ * @param aPICreateProductPayload
199
+ */
200
+ createProduct(aPICreateProductPayload: APICreateProductPayload, _options?: Configuration): Observable<APIProduct>;
201
+ /**
202
+ * @param id
203
+ */
204
+ deleteProductWithHttpInfo(id: string, _options?: Configuration): Observable<HttpInfo<void>>;
205
+ /**
206
+ * @param id
207
+ */
208
+ deleteProduct(id: string, _options?: Configuration): Observable<void>;
209
+ /**
210
+ * @param id
211
+ */
212
+ getProductWithHttpInfo(id: string, _options?: Configuration): Observable<HttpInfo<APIProduct>>;
213
+ /**
214
+ * @param id
215
+ */
216
+ getProduct(id: string, _options?: Configuration): Observable<APIProduct>;
217
+ /**
218
+ * @param aPIQueryPayloadAPIProduct
219
+ */
220
+ queryProductsWithHttpInfo(aPIQueryPayloadAPIProduct: APIQueryPayloadAPIProduct, _options?: Configuration): Observable<HttpInfo<QueryResultAPIProduct>>;
221
+ /**
222
+ * @param aPIQueryPayloadAPIProduct
223
+ */
224
+ queryProducts(aPIQueryPayloadAPIProduct: APIQueryPayloadAPIProduct, _options?: Configuration): Observable<QueryResultAPIProduct>;
225
+ /**
226
+ * @param body
227
+ * @param id
228
+ */
229
+ reviseAProductWithHttpInfo(body: ReviseProductPayload, id: string, _options?: Configuration): Observable<HttpInfo<APIProduct>>;
230
+ /**
231
+ * @param body
232
+ * @param id
233
+ */
234
+ reviseAProduct(body: ReviseProductPayload, id: string, _options?: Configuration): Observable<APIProduct>;
235
+ /**
236
+ * @param aPIUpdateProductPayload
237
+ * @param id
238
+ */
239
+ updateProductWithHttpInfo(aPIUpdateProductPayload: APIUpdateProductPayload, id: string, _options?: Configuration): Observable<HttpInfo<APIProduct>>;
240
+ /**
241
+ * @param aPIUpdateProductPayload
242
+ * @param id
243
+ */
244
+ updateProduct(aPIUpdateProductPayload: APIUpdateProductPayload, id: string, _options?: Configuration): Observable<APIProduct>;
245
+ }