vayu-ts 0.3.4 → 0.3.8
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/apis/AuthApi.js +8 -4
- package/dist/openapi/apis/CatalogProductsApi.js +46 -23
- package/dist/openapi/apis/CloudUsageSubmissionApi.js +8 -4
- package/dist/openapi/apis/ContractsApi.js +48 -22
- package/dist/openapi/apis/CreditsApi.js +24 -12
- package/dist/openapi/apis/CustomFieldsApi.d.ts +89 -0
- package/dist/openapi/apis/CustomFieldsApi.js +377 -0
- package/dist/openapi/apis/CustomersApi.js +124 -52
- package/dist/openapi/apis/EventsApi.d.ts +116 -1
- package/dist/openapi/apis/EventsApi.js +605 -25
- package/dist/openapi/apis/InvoicesApi.d.ts +4 -1
- package/dist/openapi/apis/InvoicesApi.js +42 -14
- package/dist/openapi/apis/MeasurementsApi.js +36 -18
- package/dist/openapi/apis/MetersApi.js +38 -19
- package/dist/openapi/apis/PlansApi.d.ts +56 -0
- package/dist/openapi/apis/PlansApi.js +225 -0
- package/dist/openapi/apis/ProductConsumptionsApi.js +12 -4
- package/dist/openapi/apis/WebhooksApi.js +12 -4
- package/dist/openapi/index.d.ts +1 -1
- package/dist/openapi/index.js +3 -1
- package/dist/openapi/models/BillingInterval.d.ts +18 -0
- package/dist/openapi/models/BillingInterval.js +22 -0
- package/dist/openapi/models/ConflictErrorResponse.d.ts +42 -0
- package/dist/openapi/models/ConflictErrorResponse.js +52 -0
- package/dist/openapi/models/Contact.js +1 -1
- package/dist/openapi/models/CreateContractRequest.d.ts +14 -0
- package/dist/openapi/models/CreateContractRequest.js +24 -0
- package/dist/openapi/models/CreateCustomFieldRequest.d.ts +71 -0
- package/dist/openapi/models/CreateCustomFieldRequest.js +90 -0
- package/dist/openapi/models/CreateCustomFieldResponse.d.ts +32 -0
- package/dist/openapi/models/CreateCustomFieldResponse.js +32 -0
- package/dist/openapi/models/CreateCustomFieldResponseCustomField.d.ts +74 -0
- package/dist/openapi/models/CreateCustomFieldResponseCustomField.js +108 -0
- package/dist/openapi/models/CreateCustomerRequest.d.ts +20 -0
- package/dist/openapi/models/CreateCustomerRequest.js +30 -0
- package/dist/openapi/models/CreateCustomerResponseCustomer.d.ts +20 -0
- package/dist/openapi/models/CreateCustomerResponseCustomer.js +30 -0
- package/dist/openapi/models/CustomFieldEntities.d.ts +20 -0
- package/dist/openapi/models/CustomFieldEntities.js +24 -0
- package/dist/openapi/models/CustomFieldValueTypes.d.ts +2 -1
- package/dist/openapi/models/CustomFieldValueTypes.js +1 -0
- package/dist/openapi/models/DeleteContractResponseContract.d.ts +6 -0
- package/dist/openapi/models/DeleteContractResponseContract.js +12 -0
- package/dist/openapi/models/DeleteCustomFieldResponse.d.ts +32 -0
- package/dist/openapi/models/DeleteCustomFieldResponse.js +32 -0
- package/dist/openapi/models/DeleteCustomFieldResponseCustomField.d.ts +75 -0
- package/dist/openapi/models/DeleteCustomFieldResponseCustomField.js +114 -0
- package/dist/openapi/models/DeleteCustomerResponseCustomer.d.ts +20 -0
- package/dist/openapi/models/DeleteCustomerResponseCustomer.js +30 -0
- package/dist/openapi/models/DeletePlanResponse.d.ts +32 -0
- package/dist/openapi/models/DeletePlanResponse.js +32 -0
- package/dist/openapi/models/DeletePlanResponsePlan.d.ts +42 -0
- package/dist/openapi/models/DeletePlanResponsePlan.js +68 -0
- package/dist/openapi/models/EventsDryRunResponseObjectMeterWithValuesInner.d.ts +1 -1
- package/dist/openapi/models/GetContractResponseContract.d.ts +6 -0
- package/dist/openapi/models/GetContractResponseContract.js +12 -0
- package/dist/openapi/models/GetCustomFieldResponse.d.ts +32 -0
- package/dist/openapi/models/GetCustomFieldResponse.js +32 -0
- package/dist/openapi/models/GetCustomerByNameResponseCustomer.d.ts +20 -0
- package/dist/openapi/models/GetCustomerByNameResponseCustomer.js +30 -0
- package/dist/openapi/models/GetPlanResponse.d.ts +32 -0
- package/dist/openapi/models/GetPlanResponse.js +32 -0
- package/dist/openapi/models/GetPlanResponsePlan.d.ts +41 -0
- package/dist/openapi/models/GetPlanResponsePlan.js +62 -0
- package/dist/openapi/models/InternalServerErrorResponse.d.ts +42 -0
- package/dist/openapi/models/InternalServerErrorResponse.js +52 -0
- package/dist/openapi/models/ListCustomFieldsResponse.d.ts +35 -0
- package/dist/openapi/models/ListCustomFieldsResponse.js +50 -0
- package/dist/openapi/models/ListPlansResponse.d.ts +35 -0
- package/dist/openapi/models/ListPlansResponse.js +50 -0
- package/dist/openapi/models/NotFoundErrorResponse.d.ts +42 -0
- package/dist/openapi/models/NotFoundErrorResponse.js +52 -0
- package/dist/openapi/models/NotificationEventType.d.ts +5 -1
- package/dist/openapi/models/NotificationEventType.js +4 -0
- package/dist/openapi/models/ObjectSerializer.d.ts +51 -0
- package/dist/openapi/models/ObjectSerializer.js +176 -0
- package/dist/openapi/models/PlanBillingData.d.ts +41 -0
- package/dist/openapi/models/PlanBillingData.js +59 -0
- package/dist/openapi/models/PlanDuration.d.ts +30 -0
- package/dist/openapi/models/PlanDuration.js +25 -0
- package/dist/openapi/models/PlanStatus.d.ts +19 -0
- package/dist/openapi/models/PlanStatus.js +23 -0
- package/dist/openapi/models/ProductGroupCommitment.d.ts +8 -0
- package/dist/openapi/models/ProductGroupCommitment.js +12 -1
- package/dist/openapi/models/ProductGroupProductsInnerCommitment.d.ts +8 -0
- package/dist/openapi/models/ProductGroupProductsInnerCommitment.js +12 -1
- package/dist/openapi/models/ProductGroupProductsInnerCommitmentScheduling.d.ts +4 -4
- package/dist/openapi/models/ProductGroupProductsInnerCommitmentScheduling.js +2 -2
- package/dist/openapi/models/ProductGroupProductsInnerCommitmentSchedulingDuration.d.ts +41 -0
- package/dist/openapi/models/ProductGroupProductsInnerCommitmentSchedulingDuration.js +48 -0
- package/dist/openapi/models/ProductGroupProductsInnerPricing.d.ts +3 -1
- package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf.d.ts +6 -0
- package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf.js +12 -0
- package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf1.d.ts +2 -0
- package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf1.js +6 -0
- package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf2.d.ts +2 -0
- package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf2.js +6 -0
- package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf5.d.ts +42 -0
- package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf5.js +48 -0
- package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf6.d.ts +42 -0
- package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf6.js +48 -0
- package/dist/openapi/models/ProductGroupProductsInnerPricingOneOfDiscount.d.ts +53 -0
- package/dist/openapi/models/ProductGroupProductsInnerPricingOneOfDiscount.js +58 -0
- package/dist/openapi/models/QueryEventsResponse.d.ts +3 -3
- package/dist/openapi/models/QueryEventsResponse.js +18 -0
- package/dist/openapi/models/RateLimitErrorResponse.d.ts +42 -0
- package/dist/openapi/models/RateLimitErrorResponse.js +52 -0
- package/dist/openapi/models/RequestTooLongErrorResponse.d.ts +42 -0
- package/dist/openapi/models/RequestTooLongErrorResponse.js +52 -0
- package/dist/openapi/models/UnauthorizedErrorResponse.d.ts +42 -0
- package/dist/openapi/models/UnauthorizedErrorResponse.js +52 -0
- package/dist/openapi/models/UnlimitedDuration.d.ts +14 -0
- package/dist/openapi/models/UnlimitedDuration.js +18 -0
- package/dist/openapi/models/UpdateCustomFieldRequest.d.ts +71 -0
- package/dist/openapi/models/UpdateCustomFieldRequest.js +90 -0
- package/dist/openapi/models/UpdateCustomFieldResponse.d.ts +32 -0
- package/dist/openapi/models/UpdateCustomFieldResponse.js +32 -0
- package/dist/openapi/models/UpdateCustomerRequest.d.ts +20 -0
- package/dist/openapi/models/UpdateCustomerRequest.js +30 -0
- package/dist/openapi/models/V2DeleteEventResponse.d.ts +32 -0
- package/dist/openapi/models/V2DeleteEventResponse.js +32 -0
- package/dist/openapi/models/V2DeleteEventsByRefsRequest.d.ts +31 -0
- package/dist/openapi/models/V2DeleteEventsByRefsRequest.js +32 -0
- package/dist/openapi/models/V2DeleteEventsByRefsResponse.d.ts +35 -0
- package/dist/openapi/models/V2DeleteEventsByRefsResponse.js +32 -0
- package/dist/openapi/models/V2EventsDryRunRequest.d.ts +32 -0
- package/dist/openapi/models/V2EventsDryRunRequest.js +32 -0
- package/dist/openapi/models/V2EventsDryRunResponse.d.ts +32 -0
- package/dist/openapi/models/V2EventsDryRunResponse.js +32 -0
- package/dist/openapi/models/V2GetEventResponse.d.ts +32 -0
- package/dist/openapi/models/V2GetEventResponse.js +32 -0
- package/dist/openapi/models/V2QueryEventsAggregationRequest.d.ts +45 -0
- package/dist/openapi/models/V2QueryEventsAggregationRequest.js +70 -0
- package/dist/openapi/models/V2QueryEventsAggregationRequestMetersInner.d.ts +39 -0
- package/dist/openapi/models/V2QueryEventsAggregationRequestMetersInner.js +62 -0
- package/dist/openapi/models/V2QueryEventsAggregationRequestMetersInnerAggregation.d.ts +35 -0
- package/dist/openapi/models/V2QueryEventsAggregationRequestMetersInnerAggregation.js +44 -0
- package/dist/openapi/models/V2QueryEventsAggregationRequestMetersInnerAggregationFieldArithmetic.d.ts +38 -0
- package/dist/openapi/models/V2QueryEventsAggregationRequestMetersInnerAggregationFieldArithmetic.js +45 -0
- package/dist/openapi/models/V2QueryEventsAggregationRequestMetersInnerFiltersInner.d.ts +43 -0
- package/dist/openapi/models/V2QueryEventsAggregationRequestMetersInnerFiltersInner.js +54 -0
- package/dist/openapi/models/V2QueryEventsAggregationRequestMetersInnerFiltersInnerValue.d.ts +30 -0
- package/dist/openapi/models/V2QueryEventsAggregationRequestMetersInnerFiltersInnerValue.js +25 -0
- package/dist/openapi/models/V2QueryEventsAggregationRequestMetersInnerSqlFullQuery.d.ts +34 -0
- package/dist/openapi/models/V2QueryEventsAggregationRequestMetersInnerSqlFullQuery.js +38 -0
- package/dist/openapi/models/V2QueryEventsAggregationRequestPeriod.d.ts +32 -0
- package/dist/openapi/models/V2QueryEventsAggregationRequestPeriod.js +38 -0
- package/dist/openapi/models/V2QueryEventsAggregationResponse.d.ts +42 -0
- package/dist/openapi/models/V2QueryEventsAggregationResponse.js +52 -0
- package/dist/openapi/models/V2QueryEventsAggregationResponseDataPointsInner.d.ts +34 -0
- package/dist/openapi/models/V2QueryEventsAggregationResponseDataPointsInner.js +38 -0
- package/dist/openapi/models/V2QueryEventsResponse.d.ts +35 -0
- package/dist/openapi/models/V2QueryEventsResponse.js +50 -0
- package/dist/openapi/models/V2SendEventsRequest.d.ts +32 -0
- package/dist/openapi/models/V2SendEventsRequest.js +32 -0
- package/dist/openapi/models/V2SendEventsResponse.d.ts +40 -0
- package/dist/openapi/models/V2SendEventsResponse.js +38 -0
- package/dist/openapi/models/ValidationErrorResponse.d.ts +51 -0
- package/dist/openapi/models/ValidationErrorResponse.js +60 -0
- package/dist/openapi/models/ValidationErrorResponseParamsInner.d.ts +38 -0
- package/dist/openapi/models/ValidationErrorResponseParamsInner.js +38 -0
- package/dist/openapi/models/WebhookSubscribeRequest.d.ts +1 -0
- package/dist/openapi/models/WebhookSubscribeRequest.js +6 -0
- package/dist/openapi/models/all.d.ts +51 -0
- package/dist/openapi/models/all.js +51 -0
- package/dist/openapi/types/ObservableAPI.d.ts +243 -4
- package/dist/openapi/types/ObservableAPI.js +486 -9
- package/dist/openapi/types/PromiseAPI.d.ts +239 -4
- package/dist/openapi/types/PromiseAPI.js +330 -22
- package/dist/sdk/clients/EventsClient.js +1 -1
- package/dist/sdk/clients/WebhooksClient.d.ts +2 -0
- package/dist/sdk/clients/WebhooksClient.js +14 -0
- package/package.json +1 -1
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Vayu API
|
|
3
|
+
* The Vayu API is a RESTful API that allows you to submit events for processing and storage & manage billing related entities. The API is secured using the Bearer Authentication scheme with JWT tokens. To obtain a JWT token, please contact Vayu at team@withvayu.com
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
* Contact: dev@withvayu.com
|
|
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 { PlanBillingData } from '../models/PlanBillingData';
|
|
13
|
+
import { PlanStatus } from '../models/PlanStatus';
|
|
14
|
+
export declare class GetPlanResponsePlan {
|
|
15
|
+
/**
|
|
16
|
+
* The name of the plan
|
|
17
|
+
*/
|
|
18
|
+
'name': string;
|
|
19
|
+
'status': PlanStatus;
|
|
20
|
+
'billingData': PlanBillingData;
|
|
21
|
+
'id': string;
|
|
22
|
+
'createdAt': Date;
|
|
23
|
+
'updatedAt': Date;
|
|
24
|
+
static readonly discriminator: string | undefined;
|
|
25
|
+
static readonly mapping: {
|
|
26
|
+
[index: string]: string;
|
|
27
|
+
} | undefined;
|
|
28
|
+
static readonly attributeTypeMap: Array<{
|
|
29
|
+
name: string;
|
|
30
|
+
baseName: string;
|
|
31
|
+
type: string;
|
|
32
|
+
format: string;
|
|
33
|
+
}>;
|
|
34
|
+
static getAttributeTypeMap(): {
|
|
35
|
+
name: string;
|
|
36
|
+
baseName: string;
|
|
37
|
+
type: string;
|
|
38
|
+
format: string;
|
|
39
|
+
}[];
|
|
40
|
+
constructor();
|
|
41
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Vayu API
|
|
4
|
+
* The Vayu API is a RESTful API that allows you to submit events for processing and storage & manage billing related entities. The API is secured using the Bearer Authentication scheme with JWT tokens. To obtain a JWT token, please contact Vayu at team@withvayu.com
|
|
5
|
+
*
|
|
6
|
+
* OpenAPI spec version: 1.0.0
|
|
7
|
+
* Contact: dev@withvayu.com
|
|
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.GetPlanResponsePlan = void 0;
|
|
15
|
+
class GetPlanResponsePlan {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return GetPlanResponsePlan.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.GetPlanResponsePlan = GetPlanResponsePlan;
|
|
23
|
+
GetPlanResponsePlan.discriminator = undefined;
|
|
24
|
+
GetPlanResponsePlan.mapping = undefined;
|
|
25
|
+
GetPlanResponsePlan.attributeTypeMap = [
|
|
26
|
+
{
|
|
27
|
+
"name": "name",
|
|
28
|
+
"baseName": "name",
|
|
29
|
+
"type": "string",
|
|
30
|
+
"format": ""
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "status",
|
|
34
|
+
"baseName": "status",
|
|
35
|
+
"type": "PlanStatus",
|
|
36
|
+
"format": ""
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "billingData",
|
|
40
|
+
"baseName": "billingData",
|
|
41
|
+
"type": "PlanBillingData",
|
|
42
|
+
"format": ""
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "id",
|
|
46
|
+
"baseName": "id",
|
|
47
|
+
"type": "string",
|
|
48
|
+
"format": ""
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "createdAt",
|
|
52
|
+
"baseName": "createdAt",
|
|
53
|
+
"type": "Date",
|
|
54
|
+
"format": "date-time"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"name": "updatedAt",
|
|
58
|
+
"baseName": "updatedAt",
|
|
59
|
+
"type": "Date",
|
|
60
|
+
"format": "date-time"
|
|
61
|
+
}
|
|
62
|
+
];
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Vayu API
|
|
3
|
+
* The Vayu API is a RESTful API that allows you to submit events for processing and storage & manage billing related entities. The API is secured using the Bearer Authentication scheme with JWT tokens. To obtain a JWT token, please contact Vayu at team@withvayu.com
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
* Contact: dev@withvayu.com
|
|
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 InternalServerErrorResponse {
|
|
13
|
+
'type': InternalServerErrorResponseTypeEnum;
|
|
14
|
+
'code': InternalServerErrorResponseCodeEnum;
|
|
15
|
+
/**
|
|
16
|
+
* Human-readable error explanation
|
|
17
|
+
*/
|
|
18
|
+
'message': string;
|
|
19
|
+
static readonly discriminator: string | undefined;
|
|
20
|
+
static readonly mapping: {
|
|
21
|
+
[index: string]: string;
|
|
22
|
+
} | undefined;
|
|
23
|
+
static readonly attributeTypeMap: Array<{
|
|
24
|
+
name: string;
|
|
25
|
+
baseName: string;
|
|
26
|
+
type: string;
|
|
27
|
+
format: string;
|
|
28
|
+
}>;
|
|
29
|
+
static getAttributeTypeMap(): {
|
|
30
|
+
name: string;
|
|
31
|
+
baseName: string;
|
|
32
|
+
type: string;
|
|
33
|
+
format: string;
|
|
34
|
+
}[];
|
|
35
|
+
constructor();
|
|
36
|
+
}
|
|
37
|
+
export declare enum InternalServerErrorResponseTypeEnum {
|
|
38
|
+
ApiError = "api_error"
|
|
39
|
+
}
|
|
40
|
+
export declare enum InternalServerErrorResponseCodeEnum {
|
|
41
|
+
InternalError = "internal_error"
|
|
42
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Vayu API
|
|
4
|
+
* The Vayu API is a RESTful API that allows you to submit events for processing and storage & manage billing related entities. The API is secured using the Bearer Authentication scheme with JWT tokens. To obtain a JWT token, please contact Vayu at team@withvayu.com
|
|
5
|
+
*
|
|
6
|
+
* OpenAPI spec version: 1.0.0
|
|
7
|
+
* Contact: dev@withvayu.com
|
|
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.InternalServerErrorResponseCodeEnum = exports.InternalServerErrorResponseTypeEnum = exports.InternalServerErrorResponse = void 0;
|
|
15
|
+
class InternalServerErrorResponse {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return InternalServerErrorResponse.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.InternalServerErrorResponse = InternalServerErrorResponse;
|
|
23
|
+
InternalServerErrorResponse.discriminator = undefined;
|
|
24
|
+
InternalServerErrorResponse.mapping = undefined;
|
|
25
|
+
InternalServerErrorResponse.attributeTypeMap = [
|
|
26
|
+
{
|
|
27
|
+
"name": "type",
|
|
28
|
+
"baseName": "type",
|
|
29
|
+
"type": "InternalServerErrorResponseTypeEnum",
|
|
30
|
+
"format": ""
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "code",
|
|
34
|
+
"baseName": "code",
|
|
35
|
+
"type": "InternalServerErrorResponseCodeEnum",
|
|
36
|
+
"format": ""
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "message",
|
|
40
|
+
"baseName": "message",
|
|
41
|
+
"type": "string",
|
|
42
|
+
"format": ""
|
|
43
|
+
}
|
|
44
|
+
];
|
|
45
|
+
var InternalServerErrorResponseTypeEnum;
|
|
46
|
+
(function (InternalServerErrorResponseTypeEnum) {
|
|
47
|
+
InternalServerErrorResponseTypeEnum["ApiError"] = "api_error";
|
|
48
|
+
})(InternalServerErrorResponseTypeEnum = exports.InternalServerErrorResponseTypeEnum || (exports.InternalServerErrorResponseTypeEnum = {}));
|
|
49
|
+
var InternalServerErrorResponseCodeEnum;
|
|
50
|
+
(function (InternalServerErrorResponseCodeEnum) {
|
|
51
|
+
InternalServerErrorResponseCodeEnum["InternalError"] = "internal_error";
|
|
52
|
+
})(InternalServerErrorResponseCodeEnum = exports.InternalServerErrorResponseCodeEnum || (exports.InternalServerErrorResponseCodeEnum = {}));
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Vayu API
|
|
3
|
+
* The Vayu API is a RESTful API that allows you to submit events for processing and storage & manage billing related entities. The API is secured using the Bearer Authentication scheme with JWT tokens. To obtain a JWT token, please contact Vayu at team@withvayu.com
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
* Contact: dev@withvayu.com
|
|
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 { CreateCustomFieldResponseCustomField } from '../models/CreateCustomFieldResponseCustomField';
|
|
13
|
+
export declare class ListCustomFieldsResponse {
|
|
14
|
+
'customFields': Array<CreateCustomFieldResponseCustomField>;
|
|
15
|
+
'total': number;
|
|
16
|
+
'hasMore': boolean;
|
|
17
|
+
'nextCursor'?: string;
|
|
18
|
+
static readonly discriminator: string | undefined;
|
|
19
|
+
static readonly mapping: {
|
|
20
|
+
[index: string]: string;
|
|
21
|
+
} | undefined;
|
|
22
|
+
static readonly attributeTypeMap: Array<{
|
|
23
|
+
name: string;
|
|
24
|
+
baseName: string;
|
|
25
|
+
type: string;
|
|
26
|
+
format: string;
|
|
27
|
+
}>;
|
|
28
|
+
static getAttributeTypeMap(): {
|
|
29
|
+
name: string;
|
|
30
|
+
baseName: string;
|
|
31
|
+
type: string;
|
|
32
|
+
format: string;
|
|
33
|
+
}[];
|
|
34
|
+
constructor();
|
|
35
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Vayu API
|
|
4
|
+
* The Vayu API is a RESTful API that allows you to submit events for processing and storage & manage billing related entities. The API is secured using the Bearer Authentication scheme with JWT tokens. To obtain a JWT token, please contact Vayu at team@withvayu.com
|
|
5
|
+
*
|
|
6
|
+
* OpenAPI spec version: 1.0.0
|
|
7
|
+
* Contact: dev@withvayu.com
|
|
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.ListCustomFieldsResponse = void 0;
|
|
15
|
+
class ListCustomFieldsResponse {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return ListCustomFieldsResponse.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.ListCustomFieldsResponse = ListCustomFieldsResponse;
|
|
23
|
+
ListCustomFieldsResponse.discriminator = undefined;
|
|
24
|
+
ListCustomFieldsResponse.mapping = undefined;
|
|
25
|
+
ListCustomFieldsResponse.attributeTypeMap = [
|
|
26
|
+
{
|
|
27
|
+
"name": "customFields",
|
|
28
|
+
"baseName": "customFields",
|
|
29
|
+
"type": "Array<CreateCustomFieldResponseCustomField>",
|
|
30
|
+
"format": ""
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "total",
|
|
34
|
+
"baseName": "total",
|
|
35
|
+
"type": "number",
|
|
36
|
+
"format": ""
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "hasMore",
|
|
40
|
+
"baseName": "hasMore",
|
|
41
|
+
"type": "boolean",
|
|
42
|
+
"format": ""
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "nextCursor",
|
|
46
|
+
"baseName": "nextCursor",
|
|
47
|
+
"type": "string",
|
|
48
|
+
"format": ""
|
|
49
|
+
}
|
|
50
|
+
];
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Vayu API
|
|
3
|
+
* The Vayu API is a RESTful API that allows you to submit events for processing and storage & manage billing related entities. The API is secured using the Bearer Authentication scheme with JWT tokens. To obtain a JWT token, please contact Vayu at team@withvayu.com
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
* Contact: dev@withvayu.com
|
|
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 { GetPlanResponsePlan } from '../models/GetPlanResponsePlan';
|
|
13
|
+
export declare class ListPlansResponse {
|
|
14
|
+
'plans': Array<GetPlanResponsePlan>;
|
|
15
|
+
'total': number;
|
|
16
|
+
'hasMore': boolean;
|
|
17
|
+
'nextCursor'?: string;
|
|
18
|
+
static readonly discriminator: string | undefined;
|
|
19
|
+
static readonly mapping: {
|
|
20
|
+
[index: string]: string;
|
|
21
|
+
} | undefined;
|
|
22
|
+
static readonly attributeTypeMap: Array<{
|
|
23
|
+
name: string;
|
|
24
|
+
baseName: string;
|
|
25
|
+
type: string;
|
|
26
|
+
format: string;
|
|
27
|
+
}>;
|
|
28
|
+
static getAttributeTypeMap(): {
|
|
29
|
+
name: string;
|
|
30
|
+
baseName: string;
|
|
31
|
+
type: string;
|
|
32
|
+
format: string;
|
|
33
|
+
}[];
|
|
34
|
+
constructor();
|
|
35
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Vayu API
|
|
4
|
+
* The Vayu API is a RESTful API that allows you to submit events for processing and storage & manage billing related entities. The API is secured using the Bearer Authentication scheme with JWT tokens. To obtain a JWT token, please contact Vayu at team@withvayu.com
|
|
5
|
+
*
|
|
6
|
+
* OpenAPI spec version: 1.0.0
|
|
7
|
+
* Contact: dev@withvayu.com
|
|
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.ListPlansResponse = void 0;
|
|
15
|
+
class ListPlansResponse {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return ListPlansResponse.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.ListPlansResponse = ListPlansResponse;
|
|
23
|
+
ListPlansResponse.discriminator = undefined;
|
|
24
|
+
ListPlansResponse.mapping = undefined;
|
|
25
|
+
ListPlansResponse.attributeTypeMap = [
|
|
26
|
+
{
|
|
27
|
+
"name": "plans",
|
|
28
|
+
"baseName": "plans",
|
|
29
|
+
"type": "Array<GetPlanResponsePlan>",
|
|
30
|
+
"format": ""
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "total",
|
|
34
|
+
"baseName": "total",
|
|
35
|
+
"type": "number",
|
|
36
|
+
"format": ""
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "hasMore",
|
|
40
|
+
"baseName": "hasMore",
|
|
41
|
+
"type": "boolean",
|
|
42
|
+
"format": ""
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "nextCursor",
|
|
46
|
+
"baseName": "nextCursor",
|
|
47
|
+
"type": "string",
|
|
48
|
+
"format": ""
|
|
49
|
+
}
|
|
50
|
+
];
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Vayu API
|
|
3
|
+
* The Vayu API is a RESTful API that allows you to submit events for processing and storage & manage billing related entities. The API is secured using the Bearer Authentication scheme with JWT tokens. To obtain a JWT token, please contact Vayu at team@withvayu.com
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0.0
|
|
6
|
+
* Contact: dev@withvayu.com
|
|
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 NotFoundErrorResponse {
|
|
13
|
+
'type': NotFoundErrorResponseTypeEnum;
|
|
14
|
+
'code': NotFoundErrorResponseCodeEnum;
|
|
15
|
+
/**
|
|
16
|
+
* Human-readable error explanation
|
|
17
|
+
*/
|
|
18
|
+
'message': string;
|
|
19
|
+
static readonly discriminator: string | undefined;
|
|
20
|
+
static readonly mapping: {
|
|
21
|
+
[index: string]: string;
|
|
22
|
+
} | undefined;
|
|
23
|
+
static readonly attributeTypeMap: Array<{
|
|
24
|
+
name: string;
|
|
25
|
+
baseName: string;
|
|
26
|
+
type: string;
|
|
27
|
+
format: string;
|
|
28
|
+
}>;
|
|
29
|
+
static getAttributeTypeMap(): {
|
|
30
|
+
name: string;
|
|
31
|
+
baseName: string;
|
|
32
|
+
type: string;
|
|
33
|
+
format: string;
|
|
34
|
+
}[];
|
|
35
|
+
constructor();
|
|
36
|
+
}
|
|
37
|
+
export declare enum NotFoundErrorResponseTypeEnum {
|
|
38
|
+
InvalidRequestError = "invalid_request_error"
|
|
39
|
+
}
|
|
40
|
+
export declare enum NotFoundErrorResponseCodeEnum {
|
|
41
|
+
ResourceNotFound = "resource_not_found"
|
|
42
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Vayu API
|
|
4
|
+
* The Vayu API is a RESTful API that allows you to submit events for processing and storage & manage billing related entities. The API is secured using the Bearer Authentication scheme with JWT tokens. To obtain a JWT token, please contact Vayu at team@withvayu.com
|
|
5
|
+
*
|
|
6
|
+
* OpenAPI spec version: 1.0.0
|
|
7
|
+
* Contact: dev@withvayu.com
|
|
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.NotFoundErrorResponseCodeEnum = exports.NotFoundErrorResponseTypeEnum = exports.NotFoundErrorResponse = void 0;
|
|
15
|
+
class NotFoundErrorResponse {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return NotFoundErrorResponse.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.NotFoundErrorResponse = NotFoundErrorResponse;
|
|
23
|
+
NotFoundErrorResponse.discriminator = undefined;
|
|
24
|
+
NotFoundErrorResponse.mapping = undefined;
|
|
25
|
+
NotFoundErrorResponse.attributeTypeMap = [
|
|
26
|
+
{
|
|
27
|
+
"name": "type",
|
|
28
|
+
"baseName": "type",
|
|
29
|
+
"type": "NotFoundErrorResponseTypeEnum",
|
|
30
|
+
"format": ""
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "code",
|
|
34
|
+
"baseName": "code",
|
|
35
|
+
"type": "NotFoundErrorResponseCodeEnum",
|
|
36
|
+
"format": ""
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "message",
|
|
40
|
+
"baseName": "message",
|
|
41
|
+
"type": "string",
|
|
42
|
+
"format": ""
|
|
43
|
+
}
|
|
44
|
+
];
|
|
45
|
+
var NotFoundErrorResponseTypeEnum;
|
|
46
|
+
(function (NotFoundErrorResponseTypeEnum) {
|
|
47
|
+
NotFoundErrorResponseTypeEnum["InvalidRequestError"] = "invalid_request_error";
|
|
48
|
+
})(NotFoundErrorResponseTypeEnum = exports.NotFoundErrorResponseTypeEnum || (exports.NotFoundErrorResponseTypeEnum = {}));
|
|
49
|
+
var NotFoundErrorResponseCodeEnum;
|
|
50
|
+
(function (NotFoundErrorResponseCodeEnum) {
|
|
51
|
+
NotFoundErrorResponseCodeEnum["ResourceNotFound"] = "resource_not_found";
|
|
52
|
+
})(NotFoundErrorResponseCodeEnum = exports.NotFoundErrorResponseCodeEnum || (exports.NotFoundErrorResponseCodeEnum = {}));
|
|
@@ -20,6 +20,10 @@ export declare enum NotificationEventType {
|
|
|
20
20
|
UnchargedEvents = "UnchargedEvents",
|
|
21
21
|
TierCrossed = "TierCrossed",
|
|
22
22
|
CommitmentCrossed = "CommitmentCrossed",
|
|
23
|
+
CommitmentUsageCrossed = "CommitmentUsageCrossed",
|
|
24
|
+
CurrencyCommitmentUsageCrossed = "CurrencyCommitmentUsageCrossed",
|
|
23
25
|
FinalTierExceeded = "FinalTierExceeded",
|
|
24
|
-
InvoicePaymentStatusChanged = "InvoicePaymentStatusChanged"
|
|
26
|
+
InvoicePaymentStatusChanged = "InvoicePaymentStatusChanged",
|
|
27
|
+
InvoiceSendFailed = "InvoiceSendFailed",
|
|
28
|
+
PingTest = "PingTest"
|
|
25
29
|
}
|
|
@@ -24,6 +24,10 @@ var NotificationEventType;
|
|
|
24
24
|
NotificationEventType["UnchargedEvents"] = "UnchargedEvents";
|
|
25
25
|
NotificationEventType["TierCrossed"] = "TierCrossed";
|
|
26
26
|
NotificationEventType["CommitmentCrossed"] = "CommitmentCrossed";
|
|
27
|
+
NotificationEventType["CommitmentUsageCrossed"] = "CommitmentUsageCrossed";
|
|
28
|
+
NotificationEventType["CurrencyCommitmentUsageCrossed"] = "CurrencyCommitmentUsageCrossed";
|
|
27
29
|
NotificationEventType["FinalTierExceeded"] = "FinalTierExceeded";
|
|
28
30
|
NotificationEventType["InvoicePaymentStatusChanged"] = "InvoicePaymentStatusChanged";
|
|
31
|
+
NotificationEventType["InvoiceSendFailed"] = "InvoiceSendFailed";
|
|
32
|
+
NotificationEventType["PingTest"] = "PingTest";
|
|
29
33
|
})(NotificationEventType = exports.NotificationEventType || (exports.NotificationEventType = {}));
|
|
@@ -2,8 +2,10 @@ export * from '../models/Address';
|
|
|
2
2
|
export * from '../models/AggregationMethod';
|
|
3
3
|
export * from '../models/AggregationOperator';
|
|
4
4
|
export * from '../models/BillingCycleStatus';
|
|
5
|
+
export * from '../models/BillingInterval';
|
|
5
6
|
export * from '../models/CloudUsageResult';
|
|
6
7
|
export * from '../models/Condition';
|
|
8
|
+
export * from '../models/ConflictErrorResponse';
|
|
7
9
|
export * from '../models/Contact';
|
|
8
10
|
export * from '../models/ContractStatus';
|
|
9
11
|
export * from '../models/CreateCatalogProductRequest';
|
|
@@ -11,6 +13,9 @@ export * from '../models/CreateCatalogProductResponse';
|
|
|
11
13
|
export * from '../models/CreateCatalogProductResponseCatalogProduct';
|
|
12
14
|
export * from '../models/CreateContractRequest';
|
|
13
15
|
export * from '../models/CreateContractResponse';
|
|
16
|
+
export * from '../models/CreateCustomFieldRequest';
|
|
17
|
+
export * from '../models/CreateCustomFieldResponse';
|
|
18
|
+
export * from '../models/CreateCustomFieldResponseCustomField';
|
|
14
19
|
export * from '../models/CreateCustomerRelationRequest';
|
|
15
20
|
export * from '../models/CreateCustomerRelationResponse';
|
|
16
21
|
export * from '../models/CreateCustomerRelationResponseCustomerRelation';
|
|
@@ -26,6 +31,7 @@ export * from '../models/Criterion';
|
|
|
26
31
|
export * from '../models/CriterionOperator';
|
|
27
32
|
export * from '../models/Currency';
|
|
28
33
|
export * from '../models/CustomField';
|
|
34
|
+
export * from '../models/CustomFieldEntities';
|
|
29
35
|
export * from '../models/CustomFieldValue';
|
|
30
36
|
export * from '../models/CustomFieldValueTypes';
|
|
31
37
|
export * from '../models/CustomerCloudProviderSettings';
|
|
@@ -35,6 +41,8 @@ export * from '../models/DeleteCatalogProductResponse';
|
|
|
35
41
|
export * from '../models/DeleteCatalogProductResponseCatalogProduct';
|
|
36
42
|
export * from '../models/DeleteContractResponse';
|
|
37
43
|
export * from '../models/DeleteContractResponseContract';
|
|
44
|
+
export * from '../models/DeleteCustomFieldResponse';
|
|
45
|
+
export * from '../models/DeleteCustomFieldResponseCustomField';
|
|
38
46
|
export * from '../models/DeleteCustomerResponse';
|
|
39
47
|
export * from '../models/DeleteCustomerResponseCustomer';
|
|
40
48
|
export * from '../models/DeleteEventResponse';
|
|
@@ -46,6 +54,8 @@ export * from '../models/DeleteMeasurementResponse';
|
|
|
46
54
|
export * from '../models/DeleteMeasurementResponseMeasurement';
|
|
47
55
|
export * from '../models/DeleteMeterResponse';
|
|
48
56
|
export * from '../models/DeleteMeterResponseMeter';
|
|
57
|
+
export * from '../models/DeletePlanResponse';
|
|
58
|
+
export * from '../models/DeletePlanResponsePlan';
|
|
49
59
|
export * from '../models/Event';
|
|
50
60
|
export * from '../models/EventsDryRunRequest';
|
|
51
61
|
export * from '../models/EventsDryRunResponse';
|
|
@@ -59,6 +69,7 @@ export * from '../models/GetCatalogProductResponse';
|
|
|
59
69
|
export * from '../models/GetContractByIntegrationIdResponse';
|
|
60
70
|
export * from '../models/GetContractResponse';
|
|
61
71
|
export * from '../models/GetContractResponseContract';
|
|
72
|
+
export * from '../models/GetCustomFieldResponse';
|
|
62
73
|
export * from '../models/GetCustomerByIntegrationIdResponse';
|
|
63
74
|
export * from '../models/GetCustomerByNameResponse';
|
|
64
75
|
export * from '../models/GetCustomerByNameResponseCustomer';
|
|
@@ -74,6 +85,8 @@ export * from '../models/GetInvoiceResponseInvoiceRevenueBreakdown';
|
|
|
74
85
|
export * from '../models/GetMeasurementResponse';
|
|
75
86
|
export * from '../models/GetMeterResponse';
|
|
76
87
|
export * from '../models/GetMeterResponseMeter';
|
|
88
|
+
export * from '../models/GetPlanResponse';
|
|
89
|
+
export * from '../models/GetPlanResponsePlan';
|
|
77
90
|
export * from '../models/GetProductConsumptionResponse';
|
|
78
91
|
export * from '../models/GetProductConsumptionResponseProductConsumption';
|
|
79
92
|
export * from '../models/GrantCreditsRequest';
|
|
@@ -81,6 +94,7 @@ export * from '../models/IntegrationEntity';
|
|
|
81
94
|
export * from '../models/IntegrationEntityTypes';
|
|
82
95
|
export * from '../models/IntegrationProviders';
|
|
83
96
|
export * from '../models/IntegrationType';
|
|
97
|
+
export * from '../models/InternalServerErrorResponse';
|
|
84
98
|
export * from '../models/InvalidEvent';
|
|
85
99
|
export * from '../models/InvoiceBillingStatus';
|
|
86
100
|
export * from '../models/InvoicePaymentStatusResponse';
|
|
@@ -89,18 +103,24 @@ export * from '../models/LineItemRevenueBreakdown';
|
|
|
89
103
|
export * from '../models/ListCatalogProductsResponse';
|
|
90
104
|
export * from '../models/ListContractsResponse';
|
|
91
105
|
export * from '../models/ListCreditLedgerEntriesResponse';
|
|
106
|
+
export * from '../models/ListCustomFieldsResponse';
|
|
92
107
|
export * from '../models/ListCustomersResponse';
|
|
93
108
|
export * from '../models/ListInvoicesResponse';
|
|
94
109
|
export * from '../models/ListMeasurementsResponse';
|
|
95
110
|
export * from '../models/ListMetersResponse';
|
|
111
|
+
export * from '../models/ListPlansResponse';
|
|
96
112
|
export * from '../models/LoginRequest';
|
|
97
113
|
export * from '../models/LoginResponse';
|
|
98
114
|
export * from '../models/Meter';
|
|
115
|
+
export * from '../models/NotFoundErrorResponse';
|
|
99
116
|
export * from '../models/NotificationEventType';
|
|
100
117
|
export * from '../models/PartnerSubmissionDetail';
|
|
101
118
|
export * from '../models/PaymentInfo';
|
|
102
119
|
export * from '../models/PaymentInfoDepositTo';
|
|
103
120
|
export * from '../models/PaymentTerm';
|
|
121
|
+
export * from '../models/PlanBillingData';
|
|
122
|
+
export * from '../models/PlanDuration';
|
|
123
|
+
export * from '../models/PlanStatus';
|
|
104
124
|
export * from '../models/ProductCloudProviderSettings';
|
|
105
125
|
export * from '../models/ProductConsumption';
|
|
106
126
|
export * from '../models/ProductGroup';
|
|
@@ -108,6 +128,7 @@ export * from '../models/ProductGroupCommitment';
|
|
|
108
128
|
export * from '../models/ProductGroupProductsInner';
|
|
109
129
|
export * from '../models/ProductGroupProductsInnerCommitment';
|
|
110
130
|
export * from '../models/ProductGroupProductsInnerCommitmentScheduling';
|
|
131
|
+
export * from '../models/ProductGroupProductsInnerCommitmentSchedulingDuration';
|
|
111
132
|
export * from '../models/ProductGroupProductsInnerPricing';
|
|
112
133
|
export * from '../models/ProductGroupProductsInnerPricingOneOf';
|
|
113
134
|
export * from '../models/ProductGroupProductsInnerPricingOneOf1';
|
|
@@ -118,21 +139,51 @@ export * from '../models/ProductGroupProductsInnerPricingOneOf3';
|
|
|
118
139
|
export * from '../models/ProductGroupProductsInnerPricingOneOf3SubscriptionCadence';
|
|
119
140
|
export * from '../models/ProductGroupProductsInnerPricingOneOf3TiersInner';
|
|
120
141
|
export * from '../models/ProductGroupProductsInnerPricingOneOf4';
|
|
142
|
+
export * from '../models/ProductGroupProductsInnerPricingOneOf5';
|
|
143
|
+
export * from '../models/ProductGroupProductsInnerPricingOneOf6';
|
|
144
|
+
export * from '../models/ProductGroupProductsInnerPricingOneOfDiscount';
|
|
121
145
|
export * from '../models/ProductGroupProductsInnerScheduling';
|
|
122
146
|
export * from '../models/ProductGroupProductsInnerSchedulingDuration';
|
|
123
147
|
export * from '../models/QueryEventsResponse';
|
|
124
148
|
export * from '../models/QueryEventsResponseEventsInner';
|
|
149
|
+
export * from '../models/RateLimitErrorResponse';
|
|
150
|
+
export * from '../models/RequestTooLongErrorResponse';
|
|
125
151
|
export * from '../models/SendEventsRequest';
|
|
126
152
|
export * from '../models/SendEventsResponse';
|
|
127
153
|
export * from '../models/SubmitCloudUsageRequest';
|
|
128
154
|
export * from '../models/SyncStatus';
|
|
155
|
+
export * from '../models/UnauthorizedErrorResponse';
|
|
156
|
+
export * from '../models/UnlimitedDuration';
|
|
129
157
|
export * from '../models/UpdateCatalogProductRequest';
|
|
130
158
|
export * from '../models/UpdateCatalogProductResponse';
|
|
159
|
+
export * from '../models/UpdateCustomFieldRequest';
|
|
160
|
+
export * from '../models/UpdateCustomFieldResponse';
|
|
131
161
|
export * from '../models/UpdateCustomerRequest';
|
|
132
162
|
export * from '../models/UpdateCustomerResponse';
|
|
133
163
|
export * from '../models/UpdateMeterRequest';
|
|
134
164
|
export * from '../models/UpdateMeterResponse';
|
|
135
165
|
export * from '../models/UsageWindow';
|
|
166
|
+
export * from '../models/V2DeleteEventResponse';
|
|
167
|
+
export * from '../models/V2DeleteEventsByRefsRequest';
|
|
168
|
+
export * from '../models/V2DeleteEventsByRefsResponse';
|
|
169
|
+
export * from '../models/V2EventsDryRunRequest';
|
|
170
|
+
export * from '../models/V2EventsDryRunResponse';
|
|
171
|
+
export * from '../models/V2GetEventResponse';
|
|
172
|
+
export * from '../models/V2QueryEventsAggregationRequest';
|
|
173
|
+
export * from '../models/V2QueryEventsAggregationRequestMetersInner';
|
|
174
|
+
export * from '../models/V2QueryEventsAggregationRequestMetersInnerAggregation';
|
|
175
|
+
export * from '../models/V2QueryEventsAggregationRequestMetersInnerAggregationFieldArithmetic';
|
|
176
|
+
export * from '../models/V2QueryEventsAggregationRequestMetersInnerFiltersInner';
|
|
177
|
+
export * from '../models/V2QueryEventsAggregationRequestMetersInnerFiltersInnerValue';
|
|
178
|
+
export * from '../models/V2QueryEventsAggregationRequestMetersInnerSqlFullQuery';
|
|
179
|
+
export * from '../models/V2QueryEventsAggregationRequestPeriod';
|
|
180
|
+
export * from '../models/V2QueryEventsAggregationResponse';
|
|
181
|
+
export * from '../models/V2QueryEventsAggregationResponseDataPointsInner';
|
|
182
|
+
export * from '../models/V2QueryEventsResponse';
|
|
183
|
+
export * from '../models/V2SendEventsRequest';
|
|
184
|
+
export * from '../models/V2SendEventsResponse';
|
|
185
|
+
export * from '../models/ValidationErrorResponse';
|
|
186
|
+
export * from '../models/ValidationErrorResponseParamsInner';
|
|
136
187
|
export * from '../models/WebhookSubscribeRequest';
|
|
137
188
|
export declare class ObjectSerializer {
|
|
138
189
|
static findCorrectType(data: any, expectedType: string): any;
|