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,71 @@
|
|
|
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 { APIInvoiceBillingPeriod } from '../models/APIInvoiceBillingPeriod';
|
|
13
|
+
import { InvoiceProductBreakdown } from '../models/InvoiceProductBreakdown';
|
|
14
|
+
/**
|
|
15
|
+
* API Invoice
|
|
16
|
+
*/
|
|
17
|
+
export declare class APIInvoice {
|
|
18
|
+
/**
|
|
19
|
+
* ID
|
|
20
|
+
*/
|
|
21
|
+
'id': string;
|
|
22
|
+
/**
|
|
23
|
+
* Name
|
|
24
|
+
*/
|
|
25
|
+
'name': string;
|
|
26
|
+
/**
|
|
27
|
+
* Account ID
|
|
28
|
+
*/
|
|
29
|
+
'accountId': string;
|
|
30
|
+
/**
|
|
31
|
+
* Customer ID
|
|
32
|
+
*/
|
|
33
|
+
'customerId': string;
|
|
34
|
+
/**
|
|
35
|
+
* Price Breakdown
|
|
36
|
+
*/
|
|
37
|
+
'price': number;
|
|
38
|
+
/**
|
|
39
|
+
* Products ids
|
|
40
|
+
*/
|
|
41
|
+
'products': Array<string>;
|
|
42
|
+
/**
|
|
43
|
+
* Price breakdown for each product
|
|
44
|
+
*/
|
|
45
|
+
'priceBreakdown': {
|
|
46
|
+
[key: string]: InvoiceProductBreakdown;
|
|
47
|
+
};
|
|
48
|
+
'billingPeriod': APIInvoiceBillingPeriod;
|
|
49
|
+
/**
|
|
50
|
+
* Created At
|
|
51
|
+
*/
|
|
52
|
+
'createdAt': string;
|
|
53
|
+
/**
|
|
54
|
+
* Updated At
|
|
55
|
+
*/
|
|
56
|
+
'updatedAt': string;
|
|
57
|
+
static readonly discriminator: string | undefined;
|
|
58
|
+
static readonly attributeTypeMap: Array<{
|
|
59
|
+
name: string;
|
|
60
|
+
baseName: string;
|
|
61
|
+
type: string;
|
|
62
|
+
format: string;
|
|
63
|
+
}>;
|
|
64
|
+
static getAttributeTypeMap(): {
|
|
65
|
+
name: string;
|
|
66
|
+
baseName: string;
|
|
67
|
+
type: string;
|
|
68
|
+
format: string;
|
|
69
|
+
}[];
|
|
70
|
+
constructor();
|
|
71
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
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.APIInvoice = void 0;
|
|
15
|
+
/**
|
|
16
|
+
* API Invoice
|
|
17
|
+
*/
|
|
18
|
+
class APIInvoice {
|
|
19
|
+
static getAttributeTypeMap() {
|
|
20
|
+
return APIInvoice.attributeTypeMap;
|
|
21
|
+
}
|
|
22
|
+
constructor() {
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
exports.APIInvoice = APIInvoice;
|
|
26
|
+
APIInvoice.discriminator = undefined;
|
|
27
|
+
APIInvoice.attributeTypeMap = [
|
|
28
|
+
{
|
|
29
|
+
"name": "id",
|
|
30
|
+
"baseName": "id",
|
|
31
|
+
"type": "string",
|
|
32
|
+
"format": ""
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "name",
|
|
36
|
+
"baseName": "name",
|
|
37
|
+
"type": "string",
|
|
38
|
+
"format": ""
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "accountId",
|
|
42
|
+
"baseName": "accountId",
|
|
43
|
+
"type": "string",
|
|
44
|
+
"format": ""
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "customerId",
|
|
48
|
+
"baseName": "customerId",
|
|
49
|
+
"type": "string",
|
|
50
|
+
"format": ""
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "price",
|
|
54
|
+
"baseName": "price",
|
|
55
|
+
"type": "number",
|
|
56
|
+
"format": "double"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "products",
|
|
60
|
+
"baseName": "products",
|
|
61
|
+
"type": "Array<string>",
|
|
62
|
+
"format": ""
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "priceBreakdown",
|
|
66
|
+
"baseName": "priceBreakdown",
|
|
67
|
+
"type": "{ [key: string]: InvoiceProductBreakdown; }",
|
|
68
|
+
"format": ""
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "billingPeriod",
|
|
72
|
+
"baseName": "billingPeriod",
|
|
73
|
+
"type": "APIInvoiceBillingPeriod",
|
|
74
|
+
"format": ""
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"name": "createdAt",
|
|
78
|
+
"baseName": "createdAt",
|
|
79
|
+
"type": "string",
|
|
80
|
+
"format": "date"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "updatedAt",
|
|
84
|
+
"baseName": "updatedAt",
|
|
85
|
+
"type": "string",
|
|
86
|
+
"format": "date"
|
|
87
|
+
}
|
|
88
|
+
];
|
|
@@ -0,0 +1,38 @@
|
|
|
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
|
+
/**
|
|
13
|
+
* Billing Period
|
|
14
|
+
*/
|
|
15
|
+
export declare class APIInvoiceBillingPeriod {
|
|
16
|
+
/**
|
|
17
|
+
* Period End Date
|
|
18
|
+
*/
|
|
19
|
+
'endTime': string;
|
|
20
|
+
/**
|
|
21
|
+
* Period Start Date
|
|
22
|
+
*/
|
|
23
|
+
'startTime': string;
|
|
24
|
+
static readonly discriminator: string | undefined;
|
|
25
|
+
static readonly attributeTypeMap: Array<{
|
|
26
|
+
name: string;
|
|
27
|
+
baseName: string;
|
|
28
|
+
type: string;
|
|
29
|
+
format: string;
|
|
30
|
+
}>;
|
|
31
|
+
static getAttributeTypeMap(): {
|
|
32
|
+
name: string;
|
|
33
|
+
baseName: string;
|
|
34
|
+
type: string;
|
|
35
|
+
format: string;
|
|
36
|
+
}[];
|
|
37
|
+
constructor();
|
|
38
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
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.APIInvoiceBillingPeriod = void 0;
|
|
15
|
+
/**
|
|
16
|
+
* Billing Period
|
|
17
|
+
*/
|
|
18
|
+
class APIInvoiceBillingPeriod {
|
|
19
|
+
static getAttributeTypeMap() {
|
|
20
|
+
return APIInvoiceBillingPeriod.attributeTypeMap;
|
|
21
|
+
}
|
|
22
|
+
constructor() {
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
exports.APIInvoiceBillingPeriod = APIInvoiceBillingPeriod;
|
|
26
|
+
APIInvoiceBillingPeriod.discriminator = undefined;
|
|
27
|
+
APIInvoiceBillingPeriod.attributeTypeMap = [
|
|
28
|
+
{
|
|
29
|
+
"name": "endTime",
|
|
30
|
+
"baseName": "endTime",
|
|
31
|
+
"type": "string",
|
|
32
|
+
"format": "date"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "startTime",
|
|
36
|
+
"baseName": "startTime",
|
|
37
|
+
"type": "string",
|
|
38
|
+
"format": "date"
|
|
39
|
+
}
|
|
40
|
+
];
|
|
@@ -0,0 +1,62 @@
|
|
|
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 { Aggregation } from '../models/Aggregation';
|
|
13
|
+
import { Pricing } from '../models/Pricing';
|
|
14
|
+
/**
|
|
15
|
+
* API Product
|
|
16
|
+
*/
|
|
17
|
+
export declare class APIProduct {
|
|
18
|
+
/**
|
|
19
|
+
* ID
|
|
20
|
+
*/
|
|
21
|
+
'id': string;
|
|
22
|
+
/**
|
|
23
|
+
* Name
|
|
24
|
+
*/
|
|
25
|
+
'name': string;
|
|
26
|
+
/**
|
|
27
|
+
* Event Name
|
|
28
|
+
*/
|
|
29
|
+
'eventName': string;
|
|
30
|
+
/**
|
|
31
|
+
* Description
|
|
32
|
+
*/
|
|
33
|
+
'description'?: string;
|
|
34
|
+
/**
|
|
35
|
+
* Account ID
|
|
36
|
+
*/
|
|
37
|
+
'accountId': string;
|
|
38
|
+
'aggregation': Aggregation;
|
|
39
|
+
'pricing': Pricing;
|
|
40
|
+
/**
|
|
41
|
+
* Created At
|
|
42
|
+
*/
|
|
43
|
+
'createdAt': string;
|
|
44
|
+
/**
|
|
45
|
+
* Updated At
|
|
46
|
+
*/
|
|
47
|
+
'updatedAt': string;
|
|
48
|
+
static readonly discriminator: string | undefined;
|
|
49
|
+
static readonly attributeTypeMap: Array<{
|
|
50
|
+
name: string;
|
|
51
|
+
baseName: string;
|
|
52
|
+
type: string;
|
|
53
|
+
format: string;
|
|
54
|
+
}>;
|
|
55
|
+
static getAttributeTypeMap(): {
|
|
56
|
+
name: string;
|
|
57
|
+
baseName: string;
|
|
58
|
+
type: string;
|
|
59
|
+
format: string;
|
|
60
|
+
}[];
|
|
61
|
+
constructor();
|
|
62
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
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.APIProduct = void 0;
|
|
15
|
+
/**
|
|
16
|
+
* API Product
|
|
17
|
+
*/
|
|
18
|
+
class APIProduct {
|
|
19
|
+
static getAttributeTypeMap() {
|
|
20
|
+
return APIProduct.attributeTypeMap;
|
|
21
|
+
}
|
|
22
|
+
constructor() {
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
exports.APIProduct = APIProduct;
|
|
26
|
+
APIProduct.discriminator = undefined;
|
|
27
|
+
APIProduct.attributeTypeMap = [
|
|
28
|
+
{
|
|
29
|
+
"name": "id",
|
|
30
|
+
"baseName": "id",
|
|
31
|
+
"type": "string",
|
|
32
|
+
"format": ""
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "name",
|
|
36
|
+
"baseName": "name",
|
|
37
|
+
"type": "string",
|
|
38
|
+
"format": ""
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "eventName",
|
|
42
|
+
"baseName": "eventName",
|
|
43
|
+
"type": "string",
|
|
44
|
+
"format": ""
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "description",
|
|
48
|
+
"baseName": "description",
|
|
49
|
+
"type": "string",
|
|
50
|
+
"format": ""
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "accountId",
|
|
54
|
+
"baseName": "accountId",
|
|
55
|
+
"type": "string",
|
|
56
|
+
"format": ""
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "aggregation",
|
|
60
|
+
"baseName": "aggregation",
|
|
61
|
+
"type": "Aggregation",
|
|
62
|
+
"format": ""
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "pricing",
|
|
66
|
+
"baseName": "pricing",
|
|
67
|
+
"type": "Pricing",
|
|
68
|
+
"format": ""
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "createdAt",
|
|
72
|
+
"baseName": "createdAt",
|
|
73
|
+
"type": "string",
|
|
74
|
+
"format": "date"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"name": "updatedAt",
|
|
78
|
+
"baseName": "updatedAt",
|
|
79
|
+
"type": "string",
|
|
80
|
+
"format": "date"
|
|
81
|
+
}
|
|
82
|
+
];
|
|
@@ -0,0 +1,43 @@
|
|
|
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 APIQueryPayloadAPICustomer {
|
|
13
|
+
/**
|
|
14
|
+
* Filter by field.
|
|
15
|
+
*/
|
|
16
|
+
'filter': any;
|
|
17
|
+
/**
|
|
18
|
+
* Page
|
|
19
|
+
*/
|
|
20
|
+
'page'?: number;
|
|
21
|
+
/**
|
|
22
|
+
* Page Size
|
|
23
|
+
*/
|
|
24
|
+
'pageSize'?: number;
|
|
25
|
+
/**
|
|
26
|
+
* Sort by field. Use 1 for ascending and -1 for descending.
|
|
27
|
+
*/
|
|
28
|
+
'sort'?: any;
|
|
29
|
+
static readonly discriminator: string | undefined;
|
|
30
|
+
static readonly attributeTypeMap: Array<{
|
|
31
|
+
name: string;
|
|
32
|
+
baseName: string;
|
|
33
|
+
type: string;
|
|
34
|
+
format: string;
|
|
35
|
+
}>;
|
|
36
|
+
static getAttributeTypeMap(): {
|
|
37
|
+
name: string;
|
|
38
|
+
baseName: string;
|
|
39
|
+
type: string;
|
|
40
|
+
format: string;
|
|
41
|
+
}[];
|
|
42
|
+
constructor();
|
|
43
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
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.APIQueryPayloadAPICustomer = void 0;
|
|
15
|
+
class APIQueryPayloadAPICustomer {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return APIQueryPayloadAPICustomer.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.APIQueryPayloadAPICustomer = APIQueryPayloadAPICustomer;
|
|
23
|
+
APIQueryPayloadAPICustomer.discriminator = undefined;
|
|
24
|
+
APIQueryPayloadAPICustomer.attributeTypeMap = [
|
|
25
|
+
{
|
|
26
|
+
"name": "filter",
|
|
27
|
+
"baseName": "filter",
|
|
28
|
+
"type": "any",
|
|
29
|
+
"format": ""
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "page",
|
|
33
|
+
"baseName": "page",
|
|
34
|
+
"type": "number",
|
|
35
|
+
"format": "int32"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "pageSize",
|
|
39
|
+
"baseName": "pageSize",
|
|
40
|
+
"type": "number",
|
|
41
|
+
"format": "int32"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "sort",
|
|
45
|
+
"baseName": "sort",
|
|
46
|
+
"type": "any",
|
|
47
|
+
"format": ""
|
|
48
|
+
}
|
|
49
|
+
];
|
|
@@ -0,0 +1,43 @@
|
|
|
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 APIQueryPayloadAPIEntitlement {
|
|
13
|
+
/**
|
|
14
|
+
* Filter by field.
|
|
15
|
+
*/
|
|
16
|
+
'filter': any;
|
|
17
|
+
/**
|
|
18
|
+
* Page
|
|
19
|
+
*/
|
|
20
|
+
'page'?: number;
|
|
21
|
+
/**
|
|
22
|
+
* Page Size
|
|
23
|
+
*/
|
|
24
|
+
'pageSize'?: number;
|
|
25
|
+
/**
|
|
26
|
+
* Sort by field. Use 1 for ascending and -1 for descending.
|
|
27
|
+
*/
|
|
28
|
+
'sort'?: any;
|
|
29
|
+
static readonly discriminator: string | undefined;
|
|
30
|
+
static readonly attributeTypeMap: Array<{
|
|
31
|
+
name: string;
|
|
32
|
+
baseName: string;
|
|
33
|
+
type: string;
|
|
34
|
+
format: string;
|
|
35
|
+
}>;
|
|
36
|
+
static getAttributeTypeMap(): {
|
|
37
|
+
name: string;
|
|
38
|
+
baseName: string;
|
|
39
|
+
type: string;
|
|
40
|
+
format: string;
|
|
41
|
+
}[];
|
|
42
|
+
constructor();
|
|
43
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
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.APIQueryPayloadAPIEntitlement = void 0;
|
|
15
|
+
class APIQueryPayloadAPIEntitlement {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return APIQueryPayloadAPIEntitlement.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.APIQueryPayloadAPIEntitlement = APIQueryPayloadAPIEntitlement;
|
|
23
|
+
APIQueryPayloadAPIEntitlement.discriminator = undefined;
|
|
24
|
+
APIQueryPayloadAPIEntitlement.attributeTypeMap = [
|
|
25
|
+
{
|
|
26
|
+
"name": "filter",
|
|
27
|
+
"baseName": "filter",
|
|
28
|
+
"type": "any",
|
|
29
|
+
"format": ""
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "page",
|
|
33
|
+
"baseName": "page",
|
|
34
|
+
"type": "number",
|
|
35
|
+
"format": "int32"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "pageSize",
|
|
39
|
+
"baseName": "pageSize",
|
|
40
|
+
"type": "number",
|
|
41
|
+
"format": "int32"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "sort",
|
|
45
|
+
"baseName": "sort",
|
|
46
|
+
"type": "any",
|
|
47
|
+
"format": ""
|
|
48
|
+
}
|
|
49
|
+
];
|
|
@@ -0,0 +1,43 @@
|
|
|
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 APIQueryPayloadAPIEvent {
|
|
13
|
+
/**
|
|
14
|
+
* Filter by field.
|
|
15
|
+
*/
|
|
16
|
+
'filter': any;
|
|
17
|
+
/**
|
|
18
|
+
* Page
|
|
19
|
+
*/
|
|
20
|
+
'page'?: number;
|
|
21
|
+
/**
|
|
22
|
+
* Page Size
|
|
23
|
+
*/
|
|
24
|
+
'pageSize'?: number;
|
|
25
|
+
/**
|
|
26
|
+
* Sort by field. Use 1 for ascending and -1 for descending.
|
|
27
|
+
*/
|
|
28
|
+
'sort'?: any;
|
|
29
|
+
static readonly discriminator: string | undefined;
|
|
30
|
+
static readonly attributeTypeMap: Array<{
|
|
31
|
+
name: string;
|
|
32
|
+
baseName: string;
|
|
33
|
+
type: string;
|
|
34
|
+
format: string;
|
|
35
|
+
}>;
|
|
36
|
+
static getAttributeTypeMap(): {
|
|
37
|
+
name: string;
|
|
38
|
+
baseName: string;
|
|
39
|
+
type: string;
|
|
40
|
+
format: string;
|
|
41
|
+
}[];
|
|
42
|
+
constructor();
|
|
43
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
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.APIQueryPayloadAPIEvent = void 0;
|
|
15
|
+
class APIQueryPayloadAPIEvent {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return APIQueryPayloadAPIEvent.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.APIQueryPayloadAPIEvent = APIQueryPayloadAPIEvent;
|
|
23
|
+
APIQueryPayloadAPIEvent.discriminator = undefined;
|
|
24
|
+
APIQueryPayloadAPIEvent.attributeTypeMap = [
|
|
25
|
+
{
|
|
26
|
+
"name": "filter",
|
|
27
|
+
"baseName": "filter",
|
|
28
|
+
"type": "any",
|
|
29
|
+
"format": ""
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "page",
|
|
33
|
+
"baseName": "page",
|
|
34
|
+
"type": "number",
|
|
35
|
+
"format": "int32"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "pageSize",
|
|
39
|
+
"baseName": "pageSize",
|
|
40
|
+
"type": "number",
|
|
41
|
+
"format": "int32"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "sort",
|
|
45
|
+
"baseName": "sort",
|
|
46
|
+
"type": "any",
|
|
47
|
+
"format": ""
|
|
48
|
+
}
|
|
49
|
+
];
|