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.
- package/dist/openapi-v2/apis/AuthenticationApi.d.ts +24 -0
- package/dist/openapi-v2/apis/AuthenticationApi.js +79 -0
- package/dist/openapi-v2/apis/CustomersApi.d.ts +92 -0
- package/dist/openapi-v2/apis/CustomersApi.js +362 -0
- package/dist/openapi-v2/apis/EntitlementsApi.d.ts +49 -0
- package/dist/openapi-v2/apis/EntitlementsApi.js +176 -0
- package/dist/openapi-v2/apis/EventsApi.d.ts +63 -0
- package/dist/openapi-v2/apis/EventsApi.js +231 -0
- package/dist/openapi-v2/apis/InvoicesApi.d.ts +88 -0
- package/dist/openapi-v2/apis/InvoicesApi.js +344 -0
- package/dist/openapi-v2/apis/ProductsApi.d.ts +76 -0
- package/dist/openapi-v2/apis/ProductsApi.js +295 -0
- package/dist/openapi-v2/apis/baseapi.d.ts +33 -0
- package/dist/openapi-v2/apis/baseapi.js +41 -0
- package/dist/openapi-v2/apis/exception.d.ts +19 -0
- package/dist/openapi-v2/apis/exception.js +22 -0
- package/dist/openapi-v2/auth/auth.d.ts +38 -0
- package/dist/openapi-v2/auth/auth.js +16 -0
- package/dist/openapi-v2/configuration.d.ts +63 -0
- package/dist/openapi-v2/configuration.js +34 -0
- package/dist/openapi-v2/http/http.d.ts +142 -0
- package/dist/openapi-v2/http/http.js +229 -0
- package/dist/openapi-v2/http/isomorphic-fetch.d.ts +5 -0
- package/dist/openapi-v2/http/isomorphic-fetch.js +33 -0
- package/dist/openapi-v2/index.d.ts +10 -0
- package/dist/openapi-v2/index.js +33 -0
- package/dist/openapi-v2/middleware.d.ts +54 -0
- package/dist/openapi-v2/middleware.js +16 -0
- package/dist/openapi-v2/models/APICreateCustomerPayload.d.ts +45 -0
- package/dist/openapi-v2/models/APICreateCustomerPayload.js +49 -0
- package/dist/openapi-v2/models/APICreateInvoicePayload.d.ts +41 -0
- package/dist/openapi-v2/models/APICreateInvoicePayload.js +49 -0
- package/dist/openapi-v2/models/APICreateProductPayload.d.ts +43 -0
- package/dist/openapi-v2/models/APICreateProductPayload.js +55 -0
- package/dist/openapi-v2/models/APICustomer.d.ts +64 -0
- package/dist/openapi-v2/models/APICustomer.js +76 -0
- package/dist/openapi-v2/models/APIEntitlement.d.ts +56 -0
- package/dist/openapi-v2/models/APIEntitlement.js +79 -0
- package/dist/openapi-v2/models/APIEvent.d.ts +72 -0
- package/dist/openapi-v2/models/APIEvent.js +88 -0
- package/dist/openapi-v2/models/APIIngestEventPayload.d.ts +49 -0
- package/dist/openapi-v2/models/APIIngestEventPayload.js +55 -0
- package/dist/openapi-v2/models/APIInvoice.d.ts +71 -0
- package/dist/openapi-v2/models/APIInvoice.js +88 -0
- package/dist/openapi-v2/models/APIInvoiceBillingPeriod.d.ts +38 -0
- package/dist/openapi-v2/models/APIInvoiceBillingPeriod.js +40 -0
- package/dist/openapi-v2/models/APIProduct.d.ts +62 -0
- package/dist/openapi-v2/models/APIProduct.js +82 -0
- package/dist/openapi-v2/models/APIQueryPayloadAPICustomer.d.ts +43 -0
- package/dist/openapi-v2/models/APIQueryPayloadAPICustomer.js +49 -0
- package/dist/openapi-v2/models/APIQueryPayloadAPIEntitlement.d.ts +43 -0
- package/dist/openapi-v2/models/APIQueryPayloadAPIEntitlement.js +49 -0
- package/dist/openapi-v2/models/APIQueryPayloadAPIEvent.d.ts +43 -0
- package/dist/openapi-v2/models/APIQueryPayloadAPIEvent.js +49 -0
- package/dist/openapi-v2/models/APIQueryPayloadAPIInvoice.d.ts +43 -0
- package/dist/openapi-v2/models/APIQueryPayloadAPIInvoice.js +49 -0
- package/dist/openapi-v2/models/APIQueryPayloadAPIProduct.d.ts +43 -0
- package/dist/openapi-v2/models/APIQueryPayloadAPIProduct.js +49 -0
- package/dist/openapi-v2/models/APIUpdateCustomerPayload.d.ts +45 -0
- package/dist/openapi-v2/models/APIUpdateCustomerPayload.js +49 -0
- package/dist/openapi-v2/models/APIUpdateInvoicePayload.d.ts +41 -0
- package/dist/openapi-v2/models/APIUpdateInvoicePayload.js +49 -0
- package/dist/openapi-v2/models/APIUpdateProductPayload.d.ts +43 -0
- package/dist/openapi-v2/models/APIUpdateProductPayload.js +55 -0
- package/dist/openapi-v2/models/Aggregation.d.ts +32 -0
- package/dist/openapi-v2/models/Aggregation.js +43 -0
- package/dist/openapi-v2/models/AggregationMethods.d.ts +18 -0
- package/dist/openapi-v2/models/AggregationMethods.js +22 -0
- package/dist/openapi-v2/models/Condition.d.ts +29 -0
- package/dist/openapi-v2/models/Condition.js +31 -0
- package/dist/openapi-v2/models/Criterion.d.ts +32 -0
- package/dist/openapi-v2/models/Criterion.js +43 -0
- package/dist/openapi-v2/models/CriterionOperators.d.ts +23 -0
- package/dist/openapi-v2/models/CriterionOperators.js +27 -0
- package/dist/openapi-v2/models/CriterionValue.d.ts +27 -0
- package/dist/openapi-v2/models/CriterionValue.js +24 -0
- package/dist/openapi-v2/models/EntitlementRevision.d.ts +36 -0
- package/dist/openapi-v2/models/EntitlementRevision.js +55 -0
- package/dist/openapi-v2/models/Event.d.ts +54 -0
- package/dist/openapi-v2/models/Event.js +85 -0
- package/dist/openapi-v2/models/IngestEventToTheSystem201Response.d.ts +31 -0
- package/dist/openapi-v2/models/IngestEventToTheSystem201Response.js +43 -0
- package/dist/openapi-v2/models/InvoiceProductBreakdown.d.ts +36 -0
- package/dist/openapi-v2/models/InvoiceProductBreakdown.js +46 -0
- package/dist/openapi-v2/models/Login200Response.d.ts +28 -0
- package/dist/openapi-v2/models/Login200Response.js +31 -0
- package/dist/openapi-v2/models/LoginRequest.d.ts +28 -0
- package/dist/openapi-v2/models/LoginRequest.js +31 -0
- package/dist/openapi-v2/models/ObjectSerializer.d.ts +67 -0
- package/dist/openapi-v2/models/ObjectSerializer.js +377 -0
- package/dist/openapi-v2/models/Pricing.d.ts +30 -0
- package/dist/openapi-v2/models/Pricing.js +37 -0
- package/dist/openapi-v2/models/PricingTiersInner.d.ts +31 -0
- package/dist/openapi-v2/models/PricingTiersInner.js +49 -0
- package/dist/openapi-v2/models/ProductBreakdown.d.ts +29 -0
- package/dist/openapi-v2/models/ProductBreakdown.js +37 -0
- package/dist/openapi-v2/models/QueryResultAPICustomer.d.ts +40 -0
- package/dist/openapi-v2/models/QueryResultAPICustomer.js +43 -0
- package/dist/openapi-v2/models/QueryResultAPIEntitlement.d.ts +40 -0
- package/dist/openapi-v2/models/QueryResultAPIEntitlement.js +43 -0
- package/dist/openapi-v2/models/QueryResultAPIEvent.d.ts +40 -0
- package/dist/openapi-v2/models/QueryResultAPIEvent.js +43 -0
- package/dist/openapi-v2/models/QueryResultAPIInvoice.d.ts +40 -0
- package/dist/openapi-v2/models/QueryResultAPIInvoice.js +43 -0
- package/dist/openapi-v2/models/QueryResultAPIProduct.d.ts +40 -0
- package/dist/openapi-v2/models/QueryResultAPIProduct.js +43 -0
- package/dist/openapi-v2/models/ReviseEntitlementPayload.d.ts +37 -0
- package/dist/openapi-v2/models/ReviseEntitlementPayload.js +43 -0
- package/dist/openapi-v2/models/UpdateEventPayload.d.ts +33 -0
- package/dist/openapi-v2/models/UpdateEventPayload.js +31 -0
- package/dist/openapi-v2/models/all.d.ts +40 -0
- package/dist/openapi-v2/models/all.js +56 -0
- package/dist/openapi-v2/rxjsStub.d.ts +10 -0
- package/dist/openapi-v2/rxjsStub.js +31 -0
- package/dist/openapi-v2/servers.d.ts +38 -0
- package/dist/openapi-v2/servers.js +51 -0
- package/dist/openapi-v2/types/ObservableAPI.d.ts +281 -0
- package/dist/openapi-v2/types/ObservableAPI.js +694 -0
- package/dist/openapi-v2/types/PromiseAPI.d.ts +268 -0
- package/dist/openapi-v2/types/PromiseAPI.js +405 -0
- package/dist/openapi-v2/util.d.ts +15 -0
- package/dist/openapi-v2/util.js +42 -0
- package/dist/sdk/services/configuration.service.js +1 -1
- package/dist/sdk-v2/clients/CustomersClient.d.ts +11 -0
- package/dist/sdk-v2/clients/CustomersClient.js +50 -0
- package/dist/sdk-v2/clients/EntitlementsClient.d.ts +8 -0
- package/dist/sdk-v2/clients/EntitlementsClient.js +35 -0
- package/dist/sdk-v2/clients/EventsClient.d.ts +9 -0
- package/dist/sdk-v2/clients/EventsClient.js +40 -0
- package/dist/sdk-v2/clients/InvoicesClient.d.ts +11 -0
- package/dist/sdk-v2/clients/InvoicesClient.js +50 -0
- package/dist/sdk-v2/clients/ProductsClient.d.ts +10 -0
- package/dist/sdk-v2/clients/ProductsClient.js +45 -0
- package/dist/sdk-v2/clients/index.d.ts +4 -0
- package/dist/sdk-v2/clients/index.js +20 -0
- package/dist/sdk-v2/index.d.ts +11 -0
- package/dist/sdk-v2/index.js +53 -0
- package/dist/sdk-v2/services/configuration.service.d.ts +21 -0
- package/dist/sdk-v2/services/configuration.service.js +98 -0
- package/dist/sdk-v2/services/index.d.ts +1 -0
- package/dist/sdk-v2/services/index.js +17 -0
- package/dist/sdk-v2/types/Customers.d.ts +1 -0
- package/dist/sdk-v2/types/Customers.js +2 -0
- package/dist/sdk-v2/types/Entitlements.d.ts +1 -0
- package/dist/sdk-v2/types/Entitlements.js +2 -0
- package/dist/sdk-v2/types/Events.d.ts +1 -0
- package/dist/sdk-v2/types/Events.js +2 -0
- package/dist/sdk-v2/types/Invoices.d.ts +1 -0
- package/dist/sdk-v2/types/Invoices.js +2 -0
- package/dist/sdk-v2/types/Products.d.ts +1 -0
- package/dist/sdk-v2/types/Products.js +2 -0
- package/dist/sdk-v2/types/index.d.ts +6 -0
- package/dist/sdk-v2/types/index.js +24 -0
- package/dist/v2.d.ts +1 -0
- package/dist/v2.js +17 -0
- package/package.json +17 -1
- package/dist/openapi/types/ObjectParamAPI.d.ts +0 -845
- package/dist/openapi/types/ObjectParamAPI.js +0 -606
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 24k
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
*
|
|
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 { APICustomer } from '../models/APICustomer';
|
|
13
|
+
export declare class QueryResultAPICustomer {
|
|
14
|
+
/**
|
|
15
|
+
* Items
|
|
16
|
+
*/
|
|
17
|
+
'items': Array<APICustomer>;
|
|
18
|
+
/**
|
|
19
|
+
* Total items found
|
|
20
|
+
*/
|
|
21
|
+
'totalCount': number;
|
|
22
|
+
/**
|
|
23
|
+
* There are more items
|
|
24
|
+
*/
|
|
25
|
+
'hasMore': boolean;
|
|
26
|
+
static readonly discriminator: string | undefined;
|
|
27
|
+
static readonly attributeTypeMap: Array<{
|
|
28
|
+
name: string;
|
|
29
|
+
baseName: string;
|
|
30
|
+
type: string;
|
|
31
|
+
format: string;
|
|
32
|
+
}>;
|
|
33
|
+
static getAttributeTypeMap(): {
|
|
34
|
+
name: string;
|
|
35
|
+
baseName: string;
|
|
36
|
+
type: string;
|
|
37
|
+
format: string;
|
|
38
|
+
}[];
|
|
39
|
+
constructor();
|
|
40
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* 24k
|
|
4
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
*
|
|
6
|
+
* OpenAPI spec version: 1.0.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.QueryResultAPICustomer = void 0;
|
|
15
|
+
class QueryResultAPICustomer {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return QueryResultAPICustomer.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.QueryResultAPICustomer = QueryResultAPICustomer;
|
|
23
|
+
QueryResultAPICustomer.discriminator = undefined;
|
|
24
|
+
QueryResultAPICustomer.attributeTypeMap = [
|
|
25
|
+
{
|
|
26
|
+
"name": "items",
|
|
27
|
+
"baseName": "items",
|
|
28
|
+
"type": "Array<APICustomer>",
|
|
29
|
+
"format": ""
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "totalCount",
|
|
33
|
+
"baseName": "totalCount",
|
|
34
|
+
"type": "number",
|
|
35
|
+
"format": "int32"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "hasMore",
|
|
39
|
+
"baseName": "hasMore",
|
|
40
|
+
"type": "boolean",
|
|
41
|
+
"format": ""
|
|
42
|
+
}
|
|
43
|
+
];
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 24k
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
*
|
|
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 { APIEntitlement } from '../models/APIEntitlement';
|
|
13
|
+
export declare class QueryResultAPIEntitlement {
|
|
14
|
+
/**
|
|
15
|
+
* Items
|
|
16
|
+
*/
|
|
17
|
+
'items': Array<APIEntitlement>;
|
|
18
|
+
/**
|
|
19
|
+
* Total items found
|
|
20
|
+
*/
|
|
21
|
+
'totalCount': number;
|
|
22
|
+
/**
|
|
23
|
+
* There are more items
|
|
24
|
+
*/
|
|
25
|
+
'hasMore': boolean;
|
|
26
|
+
static readonly discriminator: string | undefined;
|
|
27
|
+
static readonly attributeTypeMap: Array<{
|
|
28
|
+
name: string;
|
|
29
|
+
baseName: string;
|
|
30
|
+
type: string;
|
|
31
|
+
format: string;
|
|
32
|
+
}>;
|
|
33
|
+
static getAttributeTypeMap(): {
|
|
34
|
+
name: string;
|
|
35
|
+
baseName: string;
|
|
36
|
+
type: string;
|
|
37
|
+
format: string;
|
|
38
|
+
}[];
|
|
39
|
+
constructor();
|
|
40
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* 24k
|
|
4
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
*
|
|
6
|
+
* OpenAPI spec version: 1.0.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.QueryResultAPIEntitlement = void 0;
|
|
15
|
+
class QueryResultAPIEntitlement {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return QueryResultAPIEntitlement.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.QueryResultAPIEntitlement = QueryResultAPIEntitlement;
|
|
23
|
+
QueryResultAPIEntitlement.discriminator = undefined;
|
|
24
|
+
QueryResultAPIEntitlement.attributeTypeMap = [
|
|
25
|
+
{
|
|
26
|
+
"name": "items",
|
|
27
|
+
"baseName": "items",
|
|
28
|
+
"type": "Array<APIEntitlement>",
|
|
29
|
+
"format": ""
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "totalCount",
|
|
33
|
+
"baseName": "totalCount",
|
|
34
|
+
"type": "number",
|
|
35
|
+
"format": "int32"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "hasMore",
|
|
39
|
+
"baseName": "hasMore",
|
|
40
|
+
"type": "boolean",
|
|
41
|
+
"format": ""
|
|
42
|
+
}
|
|
43
|
+
];
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 24k
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
*
|
|
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 { APIEvent } from '../models/APIEvent';
|
|
13
|
+
export declare class QueryResultAPIEvent {
|
|
14
|
+
/**
|
|
15
|
+
* Items
|
|
16
|
+
*/
|
|
17
|
+
'items': Array<APIEvent>;
|
|
18
|
+
/**
|
|
19
|
+
* Total items found
|
|
20
|
+
*/
|
|
21
|
+
'totalCount': number;
|
|
22
|
+
/**
|
|
23
|
+
* There are more items
|
|
24
|
+
*/
|
|
25
|
+
'hasMore': boolean;
|
|
26
|
+
static readonly discriminator: string | undefined;
|
|
27
|
+
static readonly attributeTypeMap: Array<{
|
|
28
|
+
name: string;
|
|
29
|
+
baseName: string;
|
|
30
|
+
type: string;
|
|
31
|
+
format: string;
|
|
32
|
+
}>;
|
|
33
|
+
static getAttributeTypeMap(): {
|
|
34
|
+
name: string;
|
|
35
|
+
baseName: string;
|
|
36
|
+
type: string;
|
|
37
|
+
format: string;
|
|
38
|
+
}[];
|
|
39
|
+
constructor();
|
|
40
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* 24k
|
|
4
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
*
|
|
6
|
+
* OpenAPI spec version: 1.0.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.QueryResultAPIEvent = void 0;
|
|
15
|
+
class QueryResultAPIEvent {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return QueryResultAPIEvent.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.QueryResultAPIEvent = QueryResultAPIEvent;
|
|
23
|
+
QueryResultAPIEvent.discriminator = undefined;
|
|
24
|
+
QueryResultAPIEvent.attributeTypeMap = [
|
|
25
|
+
{
|
|
26
|
+
"name": "items",
|
|
27
|
+
"baseName": "items",
|
|
28
|
+
"type": "Array<APIEvent>",
|
|
29
|
+
"format": ""
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "totalCount",
|
|
33
|
+
"baseName": "totalCount",
|
|
34
|
+
"type": "number",
|
|
35
|
+
"format": "int32"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "hasMore",
|
|
39
|
+
"baseName": "hasMore",
|
|
40
|
+
"type": "boolean",
|
|
41
|
+
"format": ""
|
|
42
|
+
}
|
|
43
|
+
];
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 24k
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
*
|
|
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 { APIInvoice } from '../models/APIInvoice';
|
|
13
|
+
export declare class QueryResultAPIInvoice {
|
|
14
|
+
/**
|
|
15
|
+
* Items
|
|
16
|
+
*/
|
|
17
|
+
'items': Array<APIInvoice>;
|
|
18
|
+
/**
|
|
19
|
+
* Total items found
|
|
20
|
+
*/
|
|
21
|
+
'totalCount': number;
|
|
22
|
+
/**
|
|
23
|
+
* There are more items
|
|
24
|
+
*/
|
|
25
|
+
'hasMore': boolean;
|
|
26
|
+
static readonly discriminator: string | undefined;
|
|
27
|
+
static readonly attributeTypeMap: Array<{
|
|
28
|
+
name: string;
|
|
29
|
+
baseName: string;
|
|
30
|
+
type: string;
|
|
31
|
+
format: string;
|
|
32
|
+
}>;
|
|
33
|
+
static getAttributeTypeMap(): {
|
|
34
|
+
name: string;
|
|
35
|
+
baseName: string;
|
|
36
|
+
type: string;
|
|
37
|
+
format: string;
|
|
38
|
+
}[];
|
|
39
|
+
constructor();
|
|
40
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* 24k
|
|
4
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
*
|
|
6
|
+
* OpenAPI spec version: 1.0.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.QueryResultAPIInvoice = void 0;
|
|
15
|
+
class QueryResultAPIInvoice {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return QueryResultAPIInvoice.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.QueryResultAPIInvoice = QueryResultAPIInvoice;
|
|
23
|
+
QueryResultAPIInvoice.discriminator = undefined;
|
|
24
|
+
QueryResultAPIInvoice.attributeTypeMap = [
|
|
25
|
+
{
|
|
26
|
+
"name": "items",
|
|
27
|
+
"baseName": "items",
|
|
28
|
+
"type": "Array<APIInvoice>",
|
|
29
|
+
"format": ""
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "totalCount",
|
|
33
|
+
"baseName": "totalCount",
|
|
34
|
+
"type": "number",
|
|
35
|
+
"format": "int32"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "hasMore",
|
|
39
|
+
"baseName": "hasMore",
|
|
40
|
+
"type": "boolean",
|
|
41
|
+
"format": ""
|
|
42
|
+
}
|
|
43
|
+
];
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 24k
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
*
|
|
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 { APIProduct } from '../models/APIProduct';
|
|
13
|
+
export declare class QueryResultAPIProduct {
|
|
14
|
+
/**
|
|
15
|
+
* Items
|
|
16
|
+
*/
|
|
17
|
+
'items': Array<APIProduct>;
|
|
18
|
+
/**
|
|
19
|
+
* Total items found
|
|
20
|
+
*/
|
|
21
|
+
'totalCount': number;
|
|
22
|
+
/**
|
|
23
|
+
* There are more items
|
|
24
|
+
*/
|
|
25
|
+
'hasMore': boolean;
|
|
26
|
+
static readonly discriminator: string | undefined;
|
|
27
|
+
static readonly attributeTypeMap: Array<{
|
|
28
|
+
name: string;
|
|
29
|
+
baseName: string;
|
|
30
|
+
type: string;
|
|
31
|
+
format: string;
|
|
32
|
+
}>;
|
|
33
|
+
static getAttributeTypeMap(): {
|
|
34
|
+
name: string;
|
|
35
|
+
baseName: string;
|
|
36
|
+
type: string;
|
|
37
|
+
format: string;
|
|
38
|
+
}[];
|
|
39
|
+
constructor();
|
|
40
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* 24k
|
|
4
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
*
|
|
6
|
+
* OpenAPI spec version: 1.0.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.QueryResultAPIProduct = void 0;
|
|
15
|
+
class QueryResultAPIProduct {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return QueryResultAPIProduct.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.QueryResultAPIProduct = QueryResultAPIProduct;
|
|
23
|
+
QueryResultAPIProduct.discriminator = undefined;
|
|
24
|
+
QueryResultAPIProduct.attributeTypeMap = [
|
|
25
|
+
{
|
|
26
|
+
"name": "items",
|
|
27
|
+
"baseName": "items",
|
|
28
|
+
"type": "Array<APIProduct>",
|
|
29
|
+
"format": ""
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "totalCount",
|
|
33
|
+
"baseName": "totalCount",
|
|
34
|
+
"type": "number",
|
|
35
|
+
"format": "int32"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "hasMore",
|
|
39
|
+
"baseName": "hasMore",
|
|
40
|
+
"type": "boolean",
|
|
41
|
+
"format": ""
|
|
42
|
+
}
|
|
43
|
+
];
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 24k
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
*
|
|
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 { Pricing } from '../models/Pricing';
|
|
13
|
+
export declare class ReviseEntitlementPayload {
|
|
14
|
+
/**
|
|
15
|
+
* The reason the product was revised
|
|
16
|
+
*/
|
|
17
|
+
'reason': string;
|
|
18
|
+
'pricing': Pricing;
|
|
19
|
+
/**
|
|
20
|
+
* The date the revision is effective as of
|
|
21
|
+
*/
|
|
22
|
+
'asOf': string;
|
|
23
|
+
static readonly discriminator: string | undefined;
|
|
24
|
+
static readonly attributeTypeMap: Array<{
|
|
25
|
+
name: string;
|
|
26
|
+
baseName: string;
|
|
27
|
+
type: string;
|
|
28
|
+
format: string;
|
|
29
|
+
}>;
|
|
30
|
+
static getAttributeTypeMap(): {
|
|
31
|
+
name: string;
|
|
32
|
+
baseName: string;
|
|
33
|
+
type: string;
|
|
34
|
+
format: string;
|
|
35
|
+
}[];
|
|
36
|
+
constructor();
|
|
37
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* 24k
|
|
4
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
*
|
|
6
|
+
* OpenAPI spec version: 1.0.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.ReviseEntitlementPayload = void 0;
|
|
15
|
+
class ReviseEntitlementPayload {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return ReviseEntitlementPayload.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.ReviseEntitlementPayload = ReviseEntitlementPayload;
|
|
23
|
+
ReviseEntitlementPayload.discriminator = undefined;
|
|
24
|
+
ReviseEntitlementPayload.attributeTypeMap = [
|
|
25
|
+
{
|
|
26
|
+
"name": "reason",
|
|
27
|
+
"baseName": "reason",
|
|
28
|
+
"type": "string",
|
|
29
|
+
"format": ""
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "pricing",
|
|
33
|
+
"baseName": "pricing",
|
|
34
|
+
"type": "Pricing",
|
|
35
|
+
"format": ""
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "asOf",
|
|
39
|
+
"baseName": "asOf",
|
|
40
|
+
"type": "string",
|
|
41
|
+
"format": "date"
|
|
42
|
+
}
|
|
43
|
+
];
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 24k
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
*
|
|
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
|
+
export declare class UpdateEventPayload {
|
|
13
|
+
/**
|
|
14
|
+
* Construct a type with a set of properties K of type T
|
|
15
|
+
*/
|
|
16
|
+
'metadata'?: {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
};
|
|
19
|
+
static readonly discriminator: string | undefined;
|
|
20
|
+
static readonly attributeTypeMap: Array<{
|
|
21
|
+
name: string;
|
|
22
|
+
baseName: string;
|
|
23
|
+
type: string;
|
|
24
|
+
format: string;
|
|
25
|
+
}>;
|
|
26
|
+
static getAttributeTypeMap(): {
|
|
27
|
+
name: string;
|
|
28
|
+
baseName: string;
|
|
29
|
+
type: string;
|
|
30
|
+
format: string;
|
|
31
|
+
}[];
|
|
32
|
+
constructor();
|
|
33
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* 24k
|
|
4
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
*
|
|
6
|
+
* OpenAPI spec version: 1.0.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.UpdateEventPayload = void 0;
|
|
15
|
+
class UpdateEventPayload {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return UpdateEventPayload.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.UpdateEventPayload = UpdateEventPayload;
|
|
23
|
+
UpdateEventPayload.discriminator = undefined;
|
|
24
|
+
UpdateEventPayload.attributeTypeMap = [
|
|
25
|
+
{
|
|
26
|
+
"name": "metadata",
|
|
27
|
+
"baseName": "metadata",
|
|
28
|
+
"type": "{ [key: string]: any; }",
|
|
29
|
+
"format": ""
|
|
30
|
+
}
|
|
31
|
+
];
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
export * from '../models/APICreateCustomerPayload';
|
|
2
|
+
export * from '../models/APICreateInvoicePayload';
|
|
3
|
+
export * from '../models/APICreateProductPayload';
|
|
4
|
+
export * from '../models/APICustomer';
|
|
5
|
+
export * from '../models/APIEntitlement';
|
|
6
|
+
export * from '../models/APIEvent';
|
|
7
|
+
export * from '../models/APIIngestEventPayload';
|
|
8
|
+
export * from '../models/APIInvoice';
|
|
9
|
+
export * from '../models/APIInvoiceBillingPeriod';
|
|
10
|
+
export * from '../models/APIProduct';
|
|
11
|
+
export * from '../models/APIQueryPayloadAPICustomer';
|
|
12
|
+
export * from '../models/APIQueryPayloadAPIEntitlement';
|
|
13
|
+
export * from '../models/APIQueryPayloadAPIEvent';
|
|
14
|
+
export * from '../models/APIQueryPayloadAPIInvoice';
|
|
15
|
+
export * from '../models/APIQueryPayloadAPIProduct';
|
|
16
|
+
export * from '../models/APIUpdateCustomerPayload';
|
|
17
|
+
export * from '../models/APIUpdateInvoicePayload';
|
|
18
|
+
export * from '../models/APIUpdateProductPayload';
|
|
19
|
+
export * from '../models/Aggregation';
|
|
20
|
+
export * from '../models/AggregationMethods';
|
|
21
|
+
export * from '../models/Condition';
|
|
22
|
+
export * from '../models/Criterion';
|
|
23
|
+
export * from '../models/CriterionOperators';
|
|
24
|
+
export * from '../models/CriterionValue';
|
|
25
|
+
export * from '../models/EntitlementRevision';
|
|
26
|
+
export * from '../models/Event';
|
|
27
|
+
export * from '../models/IngestEventToTheSystem201Response';
|
|
28
|
+
export * from '../models/InvoiceProductBreakdown';
|
|
29
|
+
export * from '../models/Login200Response';
|
|
30
|
+
export * from '../models/LoginRequest';
|
|
31
|
+
export * from '../models/Pricing';
|
|
32
|
+
export * from '../models/PricingTiersInner';
|
|
33
|
+
export * from '../models/ProductBreakdown';
|
|
34
|
+
export * from '../models/QueryResultAPICustomer';
|
|
35
|
+
export * from '../models/QueryResultAPIEntitlement';
|
|
36
|
+
export * from '../models/QueryResultAPIEvent';
|
|
37
|
+
export * from '../models/QueryResultAPIInvoice';
|
|
38
|
+
export * from '../models/QueryResultAPIProduct';
|
|
39
|
+
export * from '../models/ReviseEntitlementPayload';
|
|
40
|
+
export * from '../models/UpdateEventPayload';
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("../models/APICreateCustomerPayload"), exports);
|
|
18
|
+
__exportStar(require("../models/APICreateInvoicePayload"), exports);
|
|
19
|
+
__exportStar(require("../models/APICreateProductPayload"), exports);
|
|
20
|
+
__exportStar(require("../models/APICustomer"), exports);
|
|
21
|
+
__exportStar(require("../models/APIEntitlement"), exports);
|
|
22
|
+
__exportStar(require("../models/APIEvent"), exports);
|
|
23
|
+
__exportStar(require("../models/APIIngestEventPayload"), exports);
|
|
24
|
+
__exportStar(require("../models/APIInvoice"), exports);
|
|
25
|
+
__exportStar(require("../models/APIInvoiceBillingPeriod"), exports);
|
|
26
|
+
__exportStar(require("../models/APIProduct"), exports);
|
|
27
|
+
__exportStar(require("../models/APIQueryPayloadAPICustomer"), exports);
|
|
28
|
+
__exportStar(require("../models/APIQueryPayloadAPIEntitlement"), exports);
|
|
29
|
+
__exportStar(require("../models/APIQueryPayloadAPIEvent"), exports);
|
|
30
|
+
__exportStar(require("../models/APIQueryPayloadAPIInvoice"), exports);
|
|
31
|
+
__exportStar(require("../models/APIQueryPayloadAPIProduct"), exports);
|
|
32
|
+
__exportStar(require("../models/APIUpdateCustomerPayload"), exports);
|
|
33
|
+
__exportStar(require("../models/APIUpdateInvoicePayload"), exports);
|
|
34
|
+
__exportStar(require("../models/APIUpdateProductPayload"), exports);
|
|
35
|
+
__exportStar(require("../models/Aggregation"), exports);
|
|
36
|
+
__exportStar(require("../models/AggregationMethods"), exports);
|
|
37
|
+
__exportStar(require("../models/Condition"), exports);
|
|
38
|
+
__exportStar(require("../models/Criterion"), exports);
|
|
39
|
+
__exportStar(require("../models/CriterionOperators"), exports);
|
|
40
|
+
__exportStar(require("../models/CriterionValue"), exports);
|
|
41
|
+
__exportStar(require("../models/EntitlementRevision"), exports);
|
|
42
|
+
__exportStar(require("../models/Event"), exports);
|
|
43
|
+
__exportStar(require("../models/IngestEventToTheSystem201Response"), exports);
|
|
44
|
+
__exportStar(require("../models/InvoiceProductBreakdown"), exports);
|
|
45
|
+
__exportStar(require("../models/Login200Response"), exports);
|
|
46
|
+
__exportStar(require("../models/LoginRequest"), exports);
|
|
47
|
+
__exportStar(require("../models/Pricing"), exports);
|
|
48
|
+
__exportStar(require("../models/PricingTiersInner"), exports);
|
|
49
|
+
__exportStar(require("../models/ProductBreakdown"), exports);
|
|
50
|
+
__exportStar(require("../models/QueryResultAPICustomer"), exports);
|
|
51
|
+
__exportStar(require("../models/QueryResultAPIEntitlement"), exports);
|
|
52
|
+
__exportStar(require("../models/QueryResultAPIEvent"), exports);
|
|
53
|
+
__exportStar(require("../models/QueryResultAPIInvoice"), exports);
|
|
54
|
+
__exportStar(require("../models/QueryResultAPIProduct"), exports);
|
|
55
|
+
__exportStar(require("../models/ReviseEntitlementPayload"), exports);
|
|
56
|
+
__exportStar(require("../models/UpdateEventPayload"), exports);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare class Observable<T> {
|
|
2
|
+
private promise;
|
|
3
|
+
constructor(promise: Promise<T>);
|
|
4
|
+
toPromise(): Promise<T>;
|
|
5
|
+
pipe<S>(callback: (value: T) => S | Promise<S>): Observable<S>;
|
|
6
|
+
}
|
|
7
|
+
export declare function from<T>(promise: Promise<any>): Observable<any>;
|
|
8
|
+
export declare function of<T>(value: T): Observable<T>;
|
|
9
|
+
export declare function mergeMap<T, S>(callback: (value: T) => Observable<S>): (value: T) => Promise<S>;
|
|
10
|
+
export declare function map(callback: any): any;
|