vayu-ts 0.2.4 → 0.2.6

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.
Files changed (33) hide show
  1. package/dist/openapi-v2/apis/CustomersApi.d.ts +15 -9
  2. package/dist/openapi-v2/apis/CustomersApi.js +15 -9
  3. package/dist/openapi-v2/apis/EntitlementsApi.d.ts +6 -3
  4. package/dist/openapi-v2/apis/EntitlementsApi.js +6 -3
  5. package/dist/openapi-v2/apis/EventsApi.d.ts +8 -4
  6. package/dist/openapi-v2/apis/EventsApi.js +8 -4
  7. package/dist/openapi-v2/apis/InvoicesApi.d.ts +13 -7
  8. package/dist/openapi-v2/apis/InvoicesApi.js +13 -7
  9. package/dist/openapi-v2/apis/ProductsApi.d.ts +11 -6
  10. package/dist/openapi-v2/apis/ProductsApi.js +11 -6
  11. package/dist/openapi-v2/models/ObjectSerializer.d.ts +1 -2
  12. package/dist/openapi-v2/models/ObjectSerializer.js +2 -6
  13. package/dist/openapi-v2/models/Pricing.d.ts +2 -0
  14. package/dist/openapi-v2/models/Pricing.js +6 -0
  15. package/dist/openapi-v2/models/PricingCadence.d.ts +18 -0
  16. package/dist/openapi-v2/models/PricingCadence.js +22 -0
  17. package/dist/openapi-v2/models/all.d.ts +1 -2
  18. package/dist/openapi-v2/models/all.js +1 -2
  19. package/dist/openapi-v2/types/ObservableAPI.d.ts +106 -58
  20. package/dist/openapi-v2/types/ObservableAPI.js +106 -58
  21. package/dist/openapi-v2/types/PromiseAPI.d.ts +106 -58
  22. package/dist/openapi-v2/types/PromiseAPI.js +106 -58
  23. package/dist/sdk-v2/clients/index.d.ts +1 -0
  24. package/dist/sdk-v2/clients/index.js +1 -0
  25. package/dist/sdk-v2/index.d.ts +2 -1
  26. package/dist/sdk-v2/index.js +3 -0
  27. package/dist/sdk-v2/types/index.d.ts +2 -1
  28. package/dist/sdk-v2/types/index.js +3 -1
  29. package/package.json +1 -1
  30. package/dist/openapi-v2/models/Event.d.ts +0 -54
  31. package/dist/openapi-v2/models/Event.js +0 -85
  32. package/dist/openapi-v2/models/UpdateEventPayload.d.ts +0 -33
  33. package/dist/openapi-v2/models/UpdateEventPayload.js +0 -31
@@ -1,33 +0,0 @@
1
- /**
2
- * 24k
3
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
- *
5
- * OpenAPI spec version: 1.0.0
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- export declare class UpdateEventPayload {
13
- /**
14
- * Construct a type with a set of properties K of type T
15
- */
16
- 'metadata'?: {
17
- [key: string]: any;
18
- };
19
- static readonly discriminator: string | undefined;
20
- static readonly attributeTypeMap: Array<{
21
- name: string;
22
- baseName: string;
23
- type: string;
24
- format: string;
25
- }>;
26
- static getAttributeTypeMap(): {
27
- name: string;
28
- baseName: string;
29
- type: string;
30
- format: string;
31
- }[];
32
- constructor();
33
- }
@@ -1,31 +0,0 @@
1
- "use strict";
2
- /**
3
- * 24k
4
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
- *
6
- * OpenAPI spec version: 1.0.0
7
- *
8
- *
9
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
- * https://openapi-generator.tech
11
- * Do not edit the class manually.
12
- */
13
- Object.defineProperty(exports, "__esModule", { value: true });
14
- exports.UpdateEventPayload = void 0;
15
- class UpdateEventPayload {
16
- static getAttributeTypeMap() {
17
- return UpdateEventPayload.attributeTypeMap;
18
- }
19
- constructor() {
20
- }
21
- }
22
- exports.UpdateEventPayload = UpdateEventPayload;
23
- UpdateEventPayload.discriminator = undefined;
24
- UpdateEventPayload.attributeTypeMap = [
25
- {
26
- "name": "metadata",
27
- "baseName": "metadata",
28
- "type": "{ [key: string]: any; }",
29
- "format": ""
30
- }
31
- ];