vayu-ts 0.1.4 → 0.2.3

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