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,75 @@
|
|
|
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 { CustomFieldEntities } from '../models/CustomFieldEntities';
|
|
13
|
+
import { CustomFieldValueTypes } from '../models/CustomFieldValueTypes';
|
|
14
|
+
import { IntegrationEntityTypes } from '../models/IntegrationEntityTypes';
|
|
15
|
+
export declare class DeleteCustomFieldResponseCustomField {
|
|
16
|
+
'vayuEntity': CustomFieldEntities;
|
|
17
|
+
/**
|
|
18
|
+
* The name of the custom field in Vayu
|
|
19
|
+
*/
|
|
20
|
+
'vayuCustomFieldName': string;
|
|
21
|
+
'valueType': CustomFieldValueTypes;
|
|
22
|
+
/**
|
|
23
|
+
* The integration provider (e.g., \"Salesforce\", \"HubSpot\")
|
|
24
|
+
*/
|
|
25
|
+
'integrationSource'?: DeleteCustomFieldResponseCustomFieldIntegrationSourceEnum;
|
|
26
|
+
'integrationEntityType'?: IntegrationEntityTypes;
|
|
27
|
+
/**
|
|
28
|
+
* The path to the field in the integration
|
|
29
|
+
*/
|
|
30
|
+
'fieldPath'?: string;
|
|
31
|
+
/**
|
|
32
|
+
* Allowed values for Enum type fields
|
|
33
|
+
*/
|
|
34
|
+
'allowedValues'?: Array<string>;
|
|
35
|
+
/**
|
|
36
|
+
* Default value for Enum type fields. Must be one of allowedValues.
|
|
37
|
+
*/
|
|
38
|
+
'defaultValue'?: string;
|
|
39
|
+
'id': string;
|
|
40
|
+
'createdAt': Date;
|
|
41
|
+
'updatedAt': Date;
|
|
42
|
+
'deletedAt': string;
|
|
43
|
+
static readonly discriminator: string | undefined;
|
|
44
|
+
static readonly mapping: {
|
|
45
|
+
[index: string]: string;
|
|
46
|
+
} | undefined;
|
|
47
|
+
static readonly attributeTypeMap: Array<{
|
|
48
|
+
name: string;
|
|
49
|
+
baseName: string;
|
|
50
|
+
type: string;
|
|
51
|
+
format: string;
|
|
52
|
+
}>;
|
|
53
|
+
static getAttributeTypeMap(): {
|
|
54
|
+
name: string;
|
|
55
|
+
baseName: string;
|
|
56
|
+
type: string;
|
|
57
|
+
format: string;
|
|
58
|
+
}[];
|
|
59
|
+
constructor();
|
|
60
|
+
}
|
|
61
|
+
export declare enum DeleteCustomFieldResponseCustomFieldIntegrationSourceEnum {
|
|
62
|
+
NetSuite = "NetSuite",
|
|
63
|
+
QuickBooks = "QuickBooks",
|
|
64
|
+
Stripe = "Stripe",
|
|
65
|
+
Salesforce = "Salesforce",
|
|
66
|
+
Hubspot = "Hubspot",
|
|
67
|
+
Vayu = "Vayu",
|
|
68
|
+
Slack = "Slack",
|
|
69
|
+
S3 = "S3",
|
|
70
|
+
Morning = "Morning",
|
|
71
|
+
Snowflake = "Snowflake",
|
|
72
|
+
Anrok = "Anrok",
|
|
73
|
+
Connact = "Connact",
|
|
74
|
+
Xero = "Xero"
|
|
75
|
+
}
|
|
@@ -0,0 +1,114 @@
|
|
|
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.DeleteCustomFieldResponseCustomFieldIntegrationSourceEnum = exports.DeleteCustomFieldResponseCustomField = void 0;
|
|
15
|
+
class DeleteCustomFieldResponseCustomField {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return DeleteCustomFieldResponseCustomField.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.DeleteCustomFieldResponseCustomField = DeleteCustomFieldResponseCustomField;
|
|
23
|
+
DeleteCustomFieldResponseCustomField.discriminator = undefined;
|
|
24
|
+
DeleteCustomFieldResponseCustomField.mapping = undefined;
|
|
25
|
+
DeleteCustomFieldResponseCustomField.attributeTypeMap = [
|
|
26
|
+
{
|
|
27
|
+
"name": "vayuEntity",
|
|
28
|
+
"baseName": "vayuEntity",
|
|
29
|
+
"type": "CustomFieldEntities",
|
|
30
|
+
"format": ""
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "vayuCustomFieldName",
|
|
34
|
+
"baseName": "vayuCustomFieldName",
|
|
35
|
+
"type": "string",
|
|
36
|
+
"format": ""
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "valueType",
|
|
40
|
+
"baseName": "valueType",
|
|
41
|
+
"type": "CustomFieldValueTypes",
|
|
42
|
+
"format": ""
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "integrationSource",
|
|
46
|
+
"baseName": "integrationSource",
|
|
47
|
+
"type": "DeleteCustomFieldResponseCustomFieldIntegrationSourceEnum",
|
|
48
|
+
"format": ""
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "integrationEntityType",
|
|
52
|
+
"baseName": "integrationEntityType",
|
|
53
|
+
"type": "IntegrationEntityTypes",
|
|
54
|
+
"format": ""
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"name": "fieldPath",
|
|
58
|
+
"baseName": "fieldPath",
|
|
59
|
+
"type": "string",
|
|
60
|
+
"format": ""
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"name": "allowedValues",
|
|
64
|
+
"baseName": "allowedValues",
|
|
65
|
+
"type": "Array<string>",
|
|
66
|
+
"format": ""
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "defaultValue",
|
|
70
|
+
"baseName": "defaultValue",
|
|
71
|
+
"type": "string",
|
|
72
|
+
"format": ""
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"name": "id",
|
|
76
|
+
"baseName": "id",
|
|
77
|
+
"type": "string",
|
|
78
|
+
"format": ""
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"name": "createdAt",
|
|
82
|
+
"baseName": "createdAt",
|
|
83
|
+
"type": "Date",
|
|
84
|
+
"format": "date-time"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "updatedAt",
|
|
88
|
+
"baseName": "updatedAt",
|
|
89
|
+
"type": "Date",
|
|
90
|
+
"format": "date-time"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"name": "deletedAt",
|
|
94
|
+
"baseName": "deletedAt",
|
|
95
|
+
"type": "string",
|
|
96
|
+
"format": ""
|
|
97
|
+
}
|
|
98
|
+
];
|
|
99
|
+
var DeleteCustomFieldResponseCustomFieldIntegrationSourceEnum;
|
|
100
|
+
(function (DeleteCustomFieldResponseCustomFieldIntegrationSourceEnum) {
|
|
101
|
+
DeleteCustomFieldResponseCustomFieldIntegrationSourceEnum["NetSuite"] = "NetSuite";
|
|
102
|
+
DeleteCustomFieldResponseCustomFieldIntegrationSourceEnum["QuickBooks"] = "QuickBooks";
|
|
103
|
+
DeleteCustomFieldResponseCustomFieldIntegrationSourceEnum["Stripe"] = "Stripe";
|
|
104
|
+
DeleteCustomFieldResponseCustomFieldIntegrationSourceEnum["Salesforce"] = "Salesforce";
|
|
105
|
+
DeleteCustomFieldResponseCustomFieldIntegrationSourceEnum["Hubspot"] = "Hubspot";
|
|
106
|
+
DeleteCustomFieldResponseCustomFieldIntegrationSourceEnum["Vayu"] = "Vayu";
|
|
107
|
+
DeleteCustomFieldResponseCustomFieldIntegrationSourceEnum["Slack"] = "Slack";
|
|
108
|
+
DeleteCustomFieldResponseCustomFieldIntegrationSourceEnum["S3"] = "S3";
|
|
109
|
+
DeleteCustomFieldResponseCustomFieldIntegrationSourceEnum["Morning"] = "Morning";
|
|
110
|
+
DeleteCustomFieldResponseCustomFieldIntegrationSourceEnum["Snowflake"] = "Snowflake";
|
|
111
|
+
DeleteCustomFieldResponseCustomFieldIntegrationSourceEnum["Anrok"] = "Anrok";
|
|
112
|
+
DeleteCustomFieldResponseCustomFieldIntegrationSourceEnum["Connact"] = "Connact";
|
|
113
|
+
DeleteCustomFieldResponseCustomFieldIntegrationSourceEnum["Xero"] = "Xero";
|
|
114
|
+
})(DeleteCustomFieldResponseCustomFieldIntegrationSourceEnum = exports.DeleteCustomFieldResponseCustomFieldIntegrationSourceEnum || (exports.DeleteCustomFieldResponseCustomFieldIntegrationSourceEnum = {}));
|
|
@@ -68,6 +68,26 @@ export declare class DeleteCustomerResponseCustomer {
|
|
|
68
68
|
* The name of the subsidiary of the customer
|
|
69
69
|
*/
|
|
70
70
|
'subsidiary'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
* Total outstanding amount across all unpaid invoices (in USD)
|
|
73
|
+
*/
|
|
74
|
+
'totalOutstandingAmount'?: number;
|
|
75
|
+
/**
|
|
76
|
+
* Total amount of invoices with no billing status set (in USD)
|
|
77
|
+
*/
|
|
78
|
+
'openAmount'?: number;
|
|
79
|
+
/**
|
|
80
|
+
* Total amount of overdue invoices (in USD)
|
|
81
|
+
*/
|
|
82
|
+
'overdueAmount'?: number;
|
|
83
|
+
/**
|
|
84
|
+
* Total amount of invoices pending payment (in USD)
|
|
85
|
+
*/
|
|
86
|
+
'pendingPaymentAmount'?: number;
|
|
87
|
+
/**
|
|
88
|
+
* Total amount of paid invoices (in USD)
|
|
89
|
+
*/
|
|
90
|
+
'paidAmount'?: number;
|
|
71
91
|
'id': string;
|
|
72
92
|
'createdAt': Date;
|
|
73
93
|
'updatedAt': Date;
|
|
@@ -119,6 +119,36 @@ DeleteCustomerResponseCustomer.attributeTypeMap = [
|
|
|
119
119
|
"type": "string",
|
|
120
120
|
"format": ""
|
|
121
121
|
},
|
|
122
|
+
{
|
|
123
|
+
"name": "totalOutstandingAmount",
|
|
124
|
+
"baseName": "totalOutstandingAmount",
|
|
125
|
+
"type": "number",
|
|
126
|
+
"format": ""
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"name": "openAmount",
|
|
130
|
+
"baseName": "openAmount",
|
|
131
|
+
"type": "number",
|
|
132
|
+
"format": ""
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"name": "overdueAmount",
|
|
136
|
+
"baseName": "overdueAmount",
|
|
137
|
+
"type": "number",
|
|
138
|
+
"format": ""
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"name": "pendingPaymentAmount",
|
|
142
|
+
"baseName": "pendingPaymentAmount",
|
|
143
|
+
"type": "number",
|
|
144
|
+
"format": ""
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"name": "paidAmount",
|
|
148
|
+
"baseName": "paidAmount",
|
|
149
|
+
"type": "number",
|
|
150
|
+
"format": ""
|
|
151
|
+
},
|
|
122
152
|
{
|
|
123
153
|
"name": "id",
|
|
124
154
|
"baseName": "id",
|
|
@@ -0,0 +1,32 @@
|
|
|
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 { DeletePlanResponsePlan } from '../models/DeletePlanResponsePlan';
|
|
13
|
+
export declare class DeletePlanResponse {
|
|
14
|
+
'plan': DeletePlanResponsePlan;
|
|
15
|
+
static readonly discriminator: string | undefined;
|
|
16
|
+
static readonly mapping: {
|
|
17
|
+
[index: string]: string;
|
|
18
|
+
} | undefined;
|
|
19
|
+
static readonly attributeTypeMap: Array<{
|
|
20
|
+
name: string;
|
|
21
|
+
baseName: string;
|
|
22
|
+
type: string;
|
|
23
|
+
format: string;
|
|
24
|
+
}>;
|
|
25
|
+
static getAttributeTypeMap(): {
|
|
26
|
+
name: string;
|
|
27
|
+
baseName: string;
|
|
28
|
+
type: string;
|
|
29
|
+
format: string;
|
|
30
|
+
}[];
|
|
31
|
+
constructor();
|
|
32
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
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.DeletePlanResponse = void 0;
|
|
15
|
+
class DeletePlanResponse {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return DeletePlanResponse.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.DeletePlanResponse = DeletePlanResponse;
|
|
23
|
+
DeletePlanResponse.discriminator = undefined;
|
|
24
|
+
DeletePlanResponse.mapping = undefined;
|
|
25
|
+
DeletePlanResponse.attributeTypeMap = [
|
|
26
|
+
{
|
|
27
|
+
"name": "plan",
|
|
28
|
+
"baseName": "plan",
|
|
29
|
+
"type": "DeletePlanResponsePlan",
|
|
30
|
+
"format": ""
|
|
31
|
+
}
|
|
32
|
+
];
|
|
@@ -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
|
+
import { PlanBillingData } from '../models/PlanBillingData';
|
|
13
|
+
import { PlanStatus } from '../models/PlanStatus';
|
|
14
|
+
export declare class DeletePlanResponsePlan {
|
|
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
|
+
'deletedAt': string;
|
|
25
|
+
static readonly discriminator: string | undefined;
|
|
26
|
+
static readonly mapping: {
|
|
27
|
+
[index: string]: string;
|
|
28
|
+
} | undefined;
|
|
29
|
+
static readonly attributeTypeMap: Array<{
|
|
30
|
+
name: string;
|
|
31
|
+
baseName: string;
|
|
32
|
+
type: string;
|
|
33
|
+
format: string;
|
|
34
|
+
}>;
|
|
35
|
+
static getAttributeTypeMap(): {
|
|
36
|
+
name: string;
|
|
37
|
+
baseName: string;
|
|
38
|
+
type: string;
|
|
39
|
+
format: string;
|
|
40
|
+
}[];
|
|
41
|
+
constructor();
|
|
42
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
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.DeletePlanResponsePlan = void 0;
|
|
15
|
+
class DeletePlanResponsePlan {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return DeletePlanResponsePlan.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.DeletePlanResponsePlan = DeletePlanResponsePlan;
|
|
23
|
+
DeletePlanResponsePlan.discriminator = undefined;
|
|
24
|
+
DeletePlanResponsePlan.mapping = undefined;
|
|
25
|
+
DeletePlanResponsePlan.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
|
+
{
|
|
63
|
+
"name": "deletedAt",
|
|
64
|
+
"baseName": "deletedAt",
|
|
65
|
+
"type": "string",
|
|
66
|
+
"format": ""
|
|
67
|
+
}
|
|
68
|
+
];
|
|
@@ -22,7 +22,7 @@ export declare class EventsDryRunResponseObjectMeterWithValuesInner {
|
|
|
22
22
|
'eventName': string;
|
|
23
23
|
'aggregationMethod': AggregationMethod;
|
|
24
24
|
'filter'?: Filter;
|
|
25
|
-
'value': number;
|
|
25
|
+
'value': number | null;
|
|
26
26
|
'instanceValue'?: any | null;
|
|
27
27
|
static readonly discriminator: string | undefined;
|
|
28
28
|
static readonly mapping: {
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { ContractStatus } from '../models/ContractStatus';
|
|
13
|
+
import { Currency } from '../models/Currency';
|
|
13
14
|
import { CustomField } from '../models/CustomField';
|
|
14
15
|
import { CustomFieldValue } from '../models/CustomFieldValue';
|
|
15
16
|
import { ProductGroup } from '../models/ProductGroup';
|
|
@@ -68,6 +69,11 @@ export declare class GetContractResponseContract {
|
|
|
68
69
|
*/
|
|
69
70
|
'customFieldValues'?: Array<CustomFieldValue> | null;
|
|
70
71
|
'status'?: ContractStatus;
|
|
72
|
+
/**
|
|
73
|
+
* The purchase order number of the contract
|
|
74
|
+
*/
|
|
75
|
+
'purchaseOrder'?: string;
|
|
76
|
+
'currency'?: Currency;
|
|
71
77
|
'id': string;
|
|
72
78
|
'createdAt': Date;
|
|
73
79
|
'updatedAt': Date;
|
|
@@ -107,6 +107,18 @@ GetContractResponseContract.attributeTypeMap = [
|
|
|
107
107
|
"type": "ContractStatus",
|
|
108
108
|
"format": ""
|
|
109
109
|
},
|
|
110
|
+
{
|
|
111
|
+
"name": "purchaseOrder",
|
|
112
|
+
"baseName": "purchaseOrder",
|
|
113
|
+
"type": "string",
|
|
114
|
+
"format": ""
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"name": "currency",
|
|
118
|
+
"baseName": "currency",
|
|
119
|
+
"type": "Currency",
|
|
120
|
+
"format": ""
|
|
121
|
+
},
|
|
110
122
|
{
|
|
111
123
|
"name": "id",
|
|
112
124
|
"baseName": "id",
|
|
@@ -0,0 +1,32 @@
|
|
|
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 GetCustomFieldResponse {
|
|
14
|
+
'customField': CreateCustomFieldResponseCustomField;
|
|
15
|
+
static readonly discriminator: string | undefined;
|
|
16
|
+
static readonly mapping: {
|
|
17
|
+
[index: string]: string;
|
|
18
|
+
} | undefined;
|
|
19
|
+
static readonly attributeTypeMap: Array<{
|
|
20
|
+
name: string;
|
|
21
|
+
baseName: string;
|
|
22
|
+
type: string;
|
|
23
|
+
format: string;
|
|
24
|
+
}>;
|
|
25
|
+
static getAttributeTypeMap(): {
|
|
26
|
+
name: string;
|
|
27
|
+
baseName: string;
|
|
28
|
+
type: string;
|
|
29
|
+
format: string;
|
|
30
|
+
}[];
|
|
31
|
+
constructor();
|
|
32
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
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.GetCustomFieldResponse = void 0;
|
|
15
|
+
class GetCustomFieldResponse {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return GetCustomFieldResponse.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.GetCustomFieldResponse = GetCustomFieldResponse;
|
|
23
|
+
GetCustomFieldResponse.discriminator = undefined;
|
|
24
|
+
GetCustomFieldResponse.mapping = undefined;
|
|
25
|
+
GetCustomFieldResponse.attributeTypeMap = [
|
|
26
|
+
{
|
|
27
|
+
"name": "customField",
|
|
28
|
+
"baseName": "customField",
|
|
29
|
+
"type": "CreateCustomFieldResponseCustomField",
|
|
30
|
+
"format": ""
|
|
31
|
+
}
|
|
32
|
+
];
|
|
@@ -71,6 +71,26 @@ export declare class GetCustomerByNameResponseCustomer {
|
|
|
71
71
|
* The name of the subsidiary of the customer
|
|
72
72
|
*/
|
|
73
73
|
'subsidiary'?: string | null;
|
|
74
|
+
/**
|
|
75
|
+
* Total outstanding amount across all unpaid invoices (in USD)
|
|
76
|
+
*/
|
|
77
|
+
'totalOutstandingAmount'?: number;
|
|
78
|
+
/**
|
|
79
|
+
* Total amount of invoices with no billing status set (in USD)
|
|
80
|
+
*/
|
|
81
|
+
'openAmount'?: number;
|
|
82
|
+
/**
|
|
83
|
+
* Total amount of overdue invoices (in USD)
|
|
84
|
+
*/
|
|
85
|
+
'overdueAmount'?: number;
|
|
86
|
+
/**
|
|
87
|
+
* Total amount of invoices pending payment (in USD)
|
|
88
|
+
*/
|
|
89
|
+
'pendingPaymentAmount'?: number;
|
|
90
|
+
/**
|
|
91
|
+
* Total amount of paid invoices (in USD)
|
|
92
|
+
*/
|
|
93
|
+
'paidAmount'?: number;
|
|
74
94
|
'id': string;
|
|
75
95
|
'createdAt': Date;
|
|
76
96
|
'updatedAt': Date;
|
|
@@ -122,6 +122,36 @@ GetCustomerByNameResponseCustomer.attributeTypeMap = [
|
|
|
122
122
|
"type": "string",
|
|
123
123
|
"format": ""
|
|
124
124
|
},
|
|
125
|
+
{
|
|
126
|
+
"name": "totalOutstandingAmount",
|
|
127
|
+
"baseName": "totalOutstandingAmount",
|
|
128
|
+
"type": "number",
|
|
129
|
+
"format": ""
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"name": "openAmount",
|
|
133
|
+
"baseName": "openAmount",
|
|
134
|
+
"type": "number",
|
|
135
|
+
"format": ""
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"name": "overdueAmount",
|
|
139
|
+
"baseName": "overdueAmount",
|
|
140
|
+
"type": "number",
|
|
141
|
+
"format": ""
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"name": "pendingPaymentAmount",
|
|
145
|
+
"baseName": "pendingPaymentAmount",
|
|
146
|
+
"type": "number",
|
|
147
|
+
"format": ""
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"name": "paidAmount",
|
|
151
|
+
"baseName": "paidAmount",
|
|
152
|
+
"type": "number",
|
|
153
|
+
"format": ""
|
|
154
|
+
},
|
|
125
155
|
{
|
|
126
156
|
"name": "id",
|
|
127
157
|
"baseName": "id",
|
|
@@ -0,0 +1,32 @@
|
|
|
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 GetPlanResponse {
|
|
14
|
+
'plan': GetPlanResponsePlan;
|
|
15
|
+
static readonly discriminator: string | undefined;
|
|
16
|
+
static readonly mapping: {
|
|
17
|
+
[index: string]: string;
|
|
18
|
+
} | undefined;
|
|
19
|
+
static readonly attributeTypeMap: Array<{
|
|
20
|
+
name: string;
|
|
21
|
+
baseName: string;
|
|
22
|
+
type: string;
|
|
23
|
+
format: string;
|
|
24
|
+
}>;
|
|
25
|
+
static getAttributeTypeMap(): {
|
|
26
|
+
name: string;
|
|
27
|
+
baseName: string;
|
|
28
|
+
type: string;
|
|
29
|
+
format: string;
|
|
30
|
+
}[];
|
|
31
|
+
constructor();
|
|
32
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
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.GetPlanResponse = void 0;
|
|
15
|
+
class GetPlanResponse {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return GetPlanResponse.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.GetPlanResponse = GetPlanResponse;
|
|
23
|
+
GetPlanResponse.discriminator = undefined;
|
|
24
|
+
GetPlanResponse.mapping = undefined;
|
|
25
|
+
GetPlanResponse.attributeTypeMap = [
|
|
26
|
+
{
|
|
27
|
+
"name": "plan",
|
|
28
|
+
"baseName": "plan",
|
|
29
|
+
"type": "GetPlanResponsePlan",
|
|
30
|
+
"format": ""
|
|
31
|
+
}
|
|
32
|
+
];
|