vayu-ts 0.1.4 → 0.2.1
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 +76 -0
- package/dist/openapi-v2/apis/CustomersApi.js +295 -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 +90 -0
- package/dist/openapi-v2/apis/ProductsApi.js +359 -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 +32 -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 +39 -0
- package/dist/openapi-v2/models/APICreateProductPayload.js +49 -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/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 +63 -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/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 +39 -0
- package/dist/openapi-v2/models/APIUpdateProductPayload.js +49 -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/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 +64 -0
- package/dist/openapi-v2/models/ObjectSerializer.js +368 -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/ProductRevision.d.ts +36 -0
- package/dist/openapi-v2/models/ProductRevision.js +55 -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/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/ReviseProductPayload.d.ts +37 -0
- package/dist/openapi-v2/models/ReviseProductPayload.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 +37 -0
- package/dist/openapi-v2/models/all.js +53 -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 +245 -0
- package/dist/openapi-v2/types/ObservableAPI.js +608 -0
- package/dist/openapi-v2/types/PromiseAPI.d.ts +234 -0
- package/dist/openapi-v2/types/PromiseAPI.js +354 -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 +10 -0
- package/dist/sdk-v2/clients/CustomersClient.js +45 -0
- package/dist/sdk-v2/clients/EventsClient.d.ts +9 -0
- package/dist/sdk-v2/clients/EventsClient.js +46 -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 +11 -0
- package/dist/sdk-v2/clients/ProductsClient.js +50 -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/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 +23 -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,41 @@
|
|
|
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
|
+
export declare class APIUpdateInvoicePayload {
|
|
14
|
+
/**
|
|
15
|
+
* Name
|
|
16
|
+
*/
|
|
17
|
+
'name'?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Customer ID
|
|
20
|
+
*/
|
|
21
|
+
'customerId'?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Products
|
|
24
|
+
*/
|
|
25
|
+
'products'?: Array<string>;
|
|
26
|
+
'billingPeriod'?: APIInvoiceBillingPeriod;
|
|
27
|
+
static readonly discriminator: string | 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,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.APIUpdateInvoicePayload = void 0;
|
|
15
|
+
class APIUpdateInvoicePayload {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return APIUpdateInvoicePayload.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.APIUpdateInvoicePayload = APIUpdateInvoicePayload;
|
|
23
|
+
APIUpdateInvoicePayload.discriminator = undefined;
|
|
24
|
+
APIUpdateInvoicePayload.attributeTypeMap = [
|
|
25
|
+
{
|
|
26
|
+
"name": "name",
|
|
27
|
+
"baseName": "name",
|
|
28
|
+
"type": "string",
|
|
29
|
+
"format": ""
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "customerId",
|
|
33
|
+
"baseName": "customerId",
|
|
34
|
+
"type": "string",
|
|
35
|
+
"format": ""
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "products",
|
|
39
|
+
"baseName": "products",
|
|
40
|
+
"type": "Array<string>",
|
|
41
|
+
"format": ""
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "billingPeriod",
|
|
45
|
+
"baseName": "billingPeriod",
|
|
46
|
+
"type": "APIInvoiceBillingPeriod",
|
|
47
|
+
"format": ""
|
|
48
|
+
}
|
|
49
|
+
];
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
export declare class APIUpdateProductPayload {
|
|
15
|
+
/**
|
|
16
|
+
* Name
|
|
17
|
+
*/
|
|
18
|
+
'name'?: string;
|
|
19
|
+
/**
|
|
20
|
+
* Description
|
|
21
|
+
*/
|
|
22
|
+
'description'?: string;
|
|
23
|
+
'aggregation'?: Aggregation;
|
|
24
|
+
'pricing'?: Pricing;
|
|
25
|
+
static readonly discriminator: string | undefined;
|
|
26
|
+
static readonly attributeTypeMap: Array<{
|
|
27
|
+
name: string;
|
|
28
|
+
baseName: string;
|
|
29
|
+
type: string;
|
|
30
|
+
format: string;
|
|
31
|
+
}>;
|
|
32
|
+
static getAttributeTypeMap(): {
|
|
33
|
+
name: string;
|
|
34
|
+
baseName: string;
|
|
35
|
+
type: string;
|
|
36
|
+
format: string;
|
|
37
|
+
}[];
|
|
38
|
+
constructor();
|
|
39
|
+
}
|
|
@@ -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.APIUpdateProductPayload = void 0;
|
|
15
|
+
class APIUpdateProductPayload {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return APIUpdateProductPayload.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.APIUpdateProductPayload = APIUpdateProductPayload;
|
|
23
|
+
APIUpdateProductPayload.discriminator = undefined;
|
|
24
|
+
APIUpdateProductPayload.attributeTypeMap = [
|
|
25
|
+
{
|
|
26
|
+
"name": "name",
|
|
27
|
+
"baseName": "name",
|
|
28
|
+
"type": "string",
|
|
29
|
+
"format": ""
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "description",
|
|
33
|
+
"baseName": "description",
|
|
34
|
+
"type": "string",
|
|
35
|
+
"format": ""
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "aggregation",
|
|
39
|
+
"baseName": "aggregation",
|
|
40
|
+
"type": "Aggregation",
|
|
41
|
+
"format": ""
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "pricing",
|
|
45
|
+
"baseName": "pricing",
|
|
46
|
+
"type": "Pricing",
|
|
47
|
+
"format": ""
|
|
48
|
+
}
|
|
49
|
+
];
|
|
@@ -0,0 +1,32 @@
|
|
|
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 { AggregationMethods } from '../models/AggregationMethods';
|
|
13
|
+
import { Condition } from '../models/Condition';
|
|
14
|
+
export declare class Aggregation {
|
|
15
|
+
'type': AggregationMethods;
|
|
16
|
+
'field'?: string;
|
|
17
|
+
'filter'?: Array<Condition>;
|
|
18
|
+
static readonly discriminator: string | 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,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* 24k
|
|
4
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
*
|
|
6
|
+
* OpenAPI spec version: 1.0.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.Aggregation = void 0;
|
|
15
|
+
class Aggregation {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return Aggregation.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.Aggregation = Aggregation;
|
|
23
|
+
Aggregation.discriminator = undefined;
|
|
24
|
+
Aggregation.attributeTypeMap = [
|
|
25
|
+
{
|
|
26
|
+
"name": "type",
|
|
27
|
+
"baseName": "type",
|
|
28
|
+
"type": "AggregationMethods",
|
|
29
|
+
"format": ""
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "field",
|
|
33
|
+
"baseName": "field",
|
|
34
|
+
"type": "string",
|
|
35
|
+
"format": ""
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "filter",
|
|
39
|
+
"baseName": "filter",
|
|
40
|
+
"type": "Array<Condition>",
|
|
41
|
+
"format": ""
|
|
42
|
+
}
|
|
43
|
+
];
|
|
@@ -0,0 +1,18 @@
|
|
|
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 enum AggregationMethods {
|
|
13
|
+
Sum = "sum",
|
|
14
|
+
Avg = "avg",
|
|
15
|
+
Max = "max",
|
|
16
|
+
Min = "min",
|
|
17
|
+
Count = "count"
|
|
18
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
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.AggregationMethods = void 0;
|
|
15
|
+
var AggregationMethods;
|
|
16
|
+
(function (AggregationMethods) {
|
|
17
|
+
AggregationMethods["Sum"] = "sum";
|
|
18
|
+
AggregationMethods["Avg"] = "avg";
|
|
19
|
+
AggregationMethods["Max"] = "max";
|
|
20
|
+
AggregationMethods["Min"] = "min";
|
|
21
|
+
AggregationMethods["Count"] = "count";
|
|
22
|
+
})(AggregationMethods = exports.AggregationMethods || (exports.AggregationMethods = {}));
|
|
@@ -0,0 +1,29 @@
|
|
|
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 { Criterion } from '../models/Criterion';
|
|
13
|
+
export declare class Condition {
|
|
14
|
+
'criterions': Array<Criterion>;
|
|
15
|
+
static readonly discriminator: string | undefined;
|
|
16
|
+
static readonly attributeTypeMap: Array<{
|
|
17
|
+
name: string;
|
|
18
|
+
baseName: string;
|
|
19
|
+
type: string;
|
|
20
|
+
format: string;
|
|
21
|
+
}>;
|
|
22
|
+
static getAttributeTypeMap(): {
|
|
23
|
+
name: string;
|
|
24
|
+
baseName: string;
|
|
25
|
+
type: string;
|
|
26
|
+
format: string;
|
|
27
|
+
}[];
|
|
28
|
+
constructor();
|
|
29
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* 24k
|
|
4
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
*
|
|
6
|
+
* OpenAPI spec version: 1.0.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.Condition = void 0;
|
|
15
|
+
class Condition {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return Condition.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.Condition = Condition;
|
|
23
|
+
Condition.discriminator = undefined;
|
|
24
|
+
Condition.attributeTypeMap = [
|
|
25
|
+
{
|
|
26
|
+
"name": "criterions",
|
|
27
|
+
"baseName": "criterions",
|
|
28
|
+
"type": "Array<Criterion>",
|
|
29
|
+
"format": ""
|
|
30
|
+
}
|
|
31
|
+
];
|
|
@@ -0,0 +1,32 @@
|
|
|
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 { CriterionOperators } from '../models/CriterionOperators';
|
|
13
|
+
import { CriterionValue } from '../models/CriterionValue';
|
|
14
|
+
export declare class Criterion {
|
|
15
|
+
'value': CriterionValue;
|
|
16
|
+
'operator': CriterionOperators;
|
|
17
|
+
'field': string;
|
|
18
|
+
static readonly discriminator: string | 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,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* 24k
|
|
4
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
*
|
|
6
|
+
* OpenAPI spec version: 1.0.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.Criterion = void 0;
|
|
15
|
+
class Criterion {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return Criterion.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.Criterion = Criterion;
|
|
23
|
+
Criterion.discriminator = undefined;
|
|
24
|
+
Criterion.attributeTypeMap = [
|
|
25
|
+
{
|
|
26
|
+
"name": "value",
|
|
27
|
+
"baseName": "value",
|
|
28
|
+
"type": "CriterionValue",
|
|
29
|
+
"format": ""
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "operator",
|
|
33
|
+
"baseName": "operator",
|
|
34
|
+
"type": "CriterionOperators",
|
|
35
|
+
"format": ""
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "field",
|
|
39
|
+
"baseName": "field",
|
|
40
|
+
"type": "string",
|
|
41
|
+
"format": ""
|
|
42
|
+
}
|
|
43
|
+
];
|
|
@@ -0,0 +1,23 @@
|
|
|
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 enum CriterionOperators {
|
|
13
|
+
Equals = "Equals",
|
|
14
|
+
NotEqual = "NotEqual",
|
|
15
|
+
Has = "Has",
|
|
16
|
+
In = "In",
|
|
17
|
+
Contains = "Contains",
|
|
18
|
+
NotContain = "NotContain",
|
|
19
|
+
LargerThan = "LargerThan",
|
|
20
|
+
LowerThan = "LowerThan",
|
|
21
|
+
LowerEqualTo = "LowerEqualTo",
|
|
22
|
+
LargerEqualTo = "LargerEqualTo"
|
|
23
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
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.CriterionOperators = void 0;
|
|
15
|
+
var CriterionOperators;
|
|
16
|
+
(function (CriterionOperators) {
|
|
17
|
+
CriterionOperators["Equals"] = "Equals";
|
|
18
|
+
CriterionOperators["NotEqual"] = "NotEqual";
|
|
19
|
+
CriterionOperators["Has"] = "Has";
|
|
20
|
+
CriterionOperators["In"] = "In";
|
|
21
|
+
CriterionOperators["Contains"] = "Contains";
|
|
22
|
+
CriterionOperators["NotContain"] = "NotContain";
|
|
23
|
+
CriterionOperators["LargerThan"] = "LargerThan";
|
|
24
|
+
CriterionOperators["LowerThan"] = "LowerThan";
|
|
25
|
+
CriterionOperators["LowerEqualTo"] = "LowerEqualTo";
|
|
26
|
+
CriterionOperators["LargerEqualTo"] = "LargerEqualTo";
|
|
27
|
+
})(CriterionOperators = exports.CriterionOperators || (exports.CriterionOperators = {}));
|
|
@@ -0,0 +1,27 @@
|
|
|
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 CriterionValue {
|
|
13
|
+
static readonly discriminator: string | undefined;
|
|
14
|
+
static readonly attributeTypeMap: Array<{
|
|
15
|
+
name: string;
|
|
16
|
+
baseName: string;
|
|
17
|
+
type: string;
|
|
18
|
+
format: string;
|
|
19
|
+
}>;
|
|
20
|
+
static getAttributeTypeMap(): {
|
|
21
|
+
name: string;
|
|
22
|
+
baseName: string;
|
|
23
|
+
type: string;
|
|
24
|
+
format: string;
|
|
25
|
+
}[];
|
|
26
|
+
constructor();
|
|
27
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
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.CriterionValue = void 0;
|
|
15
|
+
class CriterionValue {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return CriterionValue.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.CriterionValue = CriterionValue;
|
|
23
|
+
CriterionValue.discriminator = undefined;
|
|
24
|
+
CriterionValue.attributeTypeMap = [];
|
|
@@ -0,0 +1,54 @@
|
|
|
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 Event {
|
|
13
|
+
/**
|
|
14
|
+
* A class representation of the BSON ObjectId type.
|
|
15
|
+
*/
|
|
16
|
+
'id': string;
|
|
17
|
+
'createdAt': Date;
|
|
18
|
+
'updatedAt': Date;
|
|
19
|
+
'name': string;
|
|
20
|
+
'timestamp': number;
|
|
21
|
+
/**
|
|
22
|
+
* Construct a type with a set of properties K of type T
|
|
23
|
+
*/
|
|
24
|
+
'metadata': {
|
|
25
|
+
[key: string]: any;
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* A class representation of the BSON ObjectId type.
|
|
29
|
+
*/
|
|
30
|
+
'accountId': string;
|
|
31
|
+
/**
|
|
32
|
+
* A class representation of the BSON ObjectId type.
|
|
33
|
+
*/
|
|
34
|
+
'customerId': string;
|
|
35
|
+
/**
|
|
36
|
+
* A class representation of the BSON ObjectId type.
|
|
37
|
+
*/
|
|
38
|
+
'productId': string;
|
|
39
|
+
'ref': string;
|
|
40
|
+
static readonly discriminator: string | undefined;
|
|
41
|
+
static readonly attributeTypeMap: Array<{
|
|
42
|
+
name: string;
|
|
43
|
+
baseName: string;
|
|
44
|
+
type: string;
|
|
45
|
+
format: string;
|
|
46
|
+
}>;
|
|
47
|
+
static getAttributeTypeMap(): {
|
|
48
|
+
name: string;
|
|
49
|
+
baseName: string;
|
|
50
|
+
type: string;
|
|
51
|
+
format: string;
|
|
52
|
+
}[];
|
|
53
|
+
constructor();
|
|
54
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
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.Event = void 0;
|
|
15
|
+
class Event {
|
|
16
|
+
static getAttributeTypeMap() {
|
|
17
|
+
return Event.attributeTypeMap;
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.Event = Event;
|
|
23
|
+
Event.discriminator = undefined;
|
|
24
|
+
Event.attributeTypeMap = [
|
|
25
|
+
{
|
|
26
|
+
"name": "id",
|
|
27
|
+
"baseName": "_id",
|
|
28
|
+
"type": "string",
|
|
29
|
+
"format": ""
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "createdAt",
|
|
33
|
+
"baseName": "createdAt",
|
|
34
|
+
"type": "Date",
|
|
35
|
+
"format": "date-time"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "updatedAt",
|
|
39
|
+
"baseName": "updatedAt",
|
|
40
|
+
"type": "Date",
|
|
41
|
+
"format": "date-time"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "name",
|
|
45
|
+
"baseName": "name",
|
|
46
|
+
"type": "string",
|
|
47
|
+
"format": ""
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "timestamp",
|
|
51
|
+
"baseName": "timestamp",
|
|
52
|
+
"type": "number",
|
|
53
|
+
"format": "double"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "metadata",
|
|
57
|
+
"baseName": "metadata",
|
|
58
|
+
"type": "{ [key: string]: any; }",
|
|
59
|
+
"format": ""
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "accountId",
|
|
63
|
+
"baseName": "accountId",
|
|
64
|
+
"type": "string",
|
|
65
|
+
"format": ""
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "customerId",
|
|
69
|
+
"baseName": "customerId",
|
|
70
|
+
"type": "string",
|
|
71
|
+
"format": ""
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "productId",
|
|
75
|
+
"baseName": "productId",
|
|
76
|
+
"type": "string",
|
|
77
|
+
"format": ""
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "ref",
|
|
81
|
+
"baseName": "ref",
|
|
82
|
+
"type": "string",
|
|
83
|
+
"format": ""
|
|
84
|
+
}
|
|
85
|
+
];
|