vayu-ts 0.1.4 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (158) hide show
  1. package/dist/openapi-v2/apis/AuthenticationApi.d.ts +24 -0
  2. package/dist/openapi-v2/apis/AuthenticationApi.js +79 -0
  3. package/dist/openapi-v2/apis/CustomersApi.d.ts +92 -0
  4. package/dist/openapi-v2/apis/CustomersApi.js +362 -0
  5. package/dist/openapi-v2/apis/EntitlementsApi.d.ts +49 -0
  6. package/dist/openapi-v2/apis/EntitlementsApi.js +176 -0
  7. package/dist/openapi-v2/apis/EventsApi.d.ts +63 -0
  8. package/dist/openapi-v2/apis/EventsApi.js +231 -0
  9. package/dist/openapi-v2/apis/InvoicesApi.d.ts +88 -0
  10. package/dist/openapi-v2/apis/InvoicesApi.js +344 -0
  11. package/dist/openapi-v2/apis/ProductsApi.d.ts +76 -0
  12. package/dist/openapi-v2/apis/ProductsApi.js +295 -0
  13. package/dist/openapi-v2/apis/baseapi.d.ts +33 -0
  14. package/dist/openapi-v2/apis/baseapi.js +41 -0
  15. package/dist/openapi-v2/apis/exception.d.ts +19 -0
  16. package/dist/openapi-v2/apis/exception.js +22 -0
  17. package/dist/openapi-v2/auth/auth.d.ts +38 -0
  18. package/dist/openapi-v2/auth/auth.js +16 -0
  19. package/dist/openapi-v2/configuration.d.ts +63 -0
  20. package/dist/openapi-v2/configuration.js +34 -0
  21. package/dist/openapi-v2/http/http.d.ts +142 -0
  22. package/dist/openapi-v2/http/http.js +229 -0
  23. package/dist/openapi-v2/http/isomorphic-fetch.d.ts +5 -0
  24. package/dist/openapi-v2/http/isomorphic-fetch.js +33 -0
  25. package/dist/openapi-v2/index.d.ts +10 -0
  26. package/dist/openapi-v2/index.js +33 -0
  27. package/dist/openapi-v2/middleware.d.ts +54 -0
  28. package/dist/openapi-v2/middleware.js +16 -0
  29. package/dist/openapi-v2/models/APICreateCustomerPayload.d.ts +45 -0
  30. package/dist/openapi-v2/models/APICreateCustomerPayload.js +49 -0
  31. package/dist/openapi-v2/models/APICreateInvoicePayload.d.ts +41 -0
  32. package/dist/openapi-v2/models/APICreateInvoicePayload.js +49 -0
  33. package/dist/openapi-v2/models/APICreateProductPayload.d.ts +43 -0
  34. package/dist/openapi-v2/models/APICreateProductPayload.js +55 -0
  35. package/dist/openapi-v2/models/APICustomer.d.ts +64 -0
  36. package/dist/openapi-v2/models/APICustomer.js +76 -0
  37. package/dist/openapi-v2/models/APIEntitlement.d.ts +56 -0
  38. package/dist/openapi-v2/models/APIEntitlement.js +79 -0
  39. package/dist/openapi-v2/models/APIEvent.d.ts +72 -0
  40. package/dist/openapi-v2/models/APIEvent.js +88 -0
  41. package/dist/openapi-v2/models/APIIngestEventPayload.d.ts +49 -0
  42. package/dist/openapi-v2/models/APIIngestEventPayload.js +55 -0
  43. package/dist/openapi-v2/models/APIInvoice.d.ts +71 -0
  44. package/dist/openapi-v2/models/APIInvoice.js +88 -0
  45. package/dist/openapi-v2/models/APIInvoiceBillingPeriod.d.ts +38 -0
  46. package/dist/openapi-v2/models/APIInvoiceBillingPeriod.js +40 -0
  47. package/dist/openapi-v2/models/APIProduct.d.ts +62 -0
  48. package/dist/openapi-v2/models/APIProduct.js +82 -0
  49. package/dist/openapi-v2/models/APIQueryPayloadAPICustomer.d.ts +43 -0
  50. package/dist/openapi-v2/models/APIQueryPayloadAPICustomer.js +49 -0
  51. package/dist/openapi-v2/models/APIQueryPayloadAPIEntitlement.d.ts +43 -0
  52. package/dist/openapi-v2/models/APIQueryPayloadAPIEntitlement.js +49 -0
  53. package/dist/openapi-v2/models/APIQueryPayloadAPIEvent.d.ts +43 -0
  54. package/dist/openapi-v2/models/APIQueryPayloadAPIEvent.js +49 -0
  55. package/dist/openapi-v2/models/APIQueryPayloadAPIInvoice.d.ts +43 -0
  56. package/dist/openapi-v2/models/APIQueryPayloadAPIInvoice.js +49 -0
  57. package/dist/openapi-v2/models/APIQueryPayloadAPIProduct.d.ts +43 -0
  58. package/dist/openapi-v2/models/APIQueryPayloadAPIProduct.js +49 -0
  59. package/dist/openapi-v2/models/APIUpdateCustomerPayload.d.ts +45 -0
  60. package/dist/openapi-v2/models/APIUpdateCustomerPayload.js +49 -0
  61. package/dist/openapi-v2/models/APIUpdateInvoicePayload.d.ts +41 -0
  62. package/dist/openapi-v2/models/APIUpdateInvoicePayload.js +49 -0
  63. package/dist/openapi-v2/models/APIUpdateProductPayload.d.ts +43 -0
  64. package/dist/openapi-v2/models/APIUpdateProductPayload.js +55 -0
  65. package/dist/openapi-v2/models/Aggregation.d.ts +32 -0
  66. package/dist/openapi-v2/models/Aggregation.js +43 -0
  67. package/dist/openapi-v2/models/AggregationMethods.d.ts +18 -0
  68. package/dist/openapi-v2/models/AggregationMethods.js +22 -0
  69. package/dist/openapi-v2/models/Condition.d.ts +29 -0
  70. package/dist/openapi-v2/models/Condition.js +31 -0
  71. package/dist/openapi-v2/models/Criterion.d.ts +32 -0
  72. package/dist/openapi-v2/models/Criterion.js +43 -0
  73. package/dist/openapi-v2/models/CriterionOperators.d.ts +23 -0
  74. package/dist/openapi-v2/models/CriterionOperators.js +27 -0
  75. package/dist/openapi-v2/models/CriterionValue.d.ts +27 -0
  76. package/dist/openapi-v2/models/CriterionValue.js +24 -0
  77. package/dist/openapi-v2/models/EntitlementRevision.d.ts +36 -0
  78. package/dist/openapi-v2/models/EntitlementRevision.js +55 -0
  79. package/dist/openapi-v2/models/Event.d.ts +54 -0
  80. package/dist/openapi-v2/models/Event.js +85 -0
  81. package/dist/openapi-v2/models/IngestEventToTheSystem201Response.d.ts +31 -0
  82. package/dist/openapi-v2/models/IngestEventToTheSystem201Response.js +43 -0
  83. package/dist/openapi-v2/models/InvoiceProductBreakdown.d.ts +36 -0
  84. package/dist/openapi-v2/models/InvoiceProductBreakdown.js +46 -0
  85. package/dist/openapi-v2/models/Login200Response.d.ts +28 -0
  86. package/dist/openapi-v2/models/Login200Response.js +31 -0
  87. package/dist/openapi-v2/models/LoginRequest.d.ts +28 -0
  88. package/dist/openapi-v2/models/LoginRequest.js +31 -0
  89. package/dist/openapi-v2/models/ObjectSerializer.d.ts +67 -0
  90. package/dist/openapi-v2/models/ObjectSerializer.js +377 -0
  91. package/dist/openapi-v2/models/Pricing.d.ts +30 -0
  92. package/dist/openapi-v2/models/Pricing.js +37 -0
  93. package/dist/openapi-v2/models/PricingTiersInner.d.ts +31 -0
  94. package/dist/openapi-v2/models/PricingTiersInner.js +49 -0
  95. package/dist/openapi-v2/models/ProductBreakdown.d.ts +29 -0
  96. package/dist/openapi-v2/models/ProductBreakdown.js +37 -0
  97. package/dist/openapi-v2/models/QueryResultAPICustomer.d.ts +40 -0
  98. package/dist/openapi-v2/models/QueryResultAPICustomer.js +43 -0
  99. package/dist/openapi-v2/models/QueryResultAPIEntitlement.d.ts +40 -0
  100. package/dist/openapi-v2/models/QueryResultAPIEntitlement.js +43 -0
  101. package/dist/openapi-v2/models/QueryResultAPIEvent.d.ts +40 -0
  102. package/dist/openapi-v2/models/QueryResultAPIEvent.js +43 -0
  103. package/dist/openapi-v2/models/QueryResultAPIInvoice.d.ts +40 -0
  104. package/dist/openapi-v2/models/QueryResultAPIInvoice.js +43 -0
  105. package/dist/openapi-v2/models/QueryResultAPIProduct.d.ts +40 -0
  106. package/dist/openapi-v2/models/QueryResultAPIProduct.js +43 -0
  107. package/dist/openapi-v2/models/ReviseEntitlementPayload.d.ts +37 -0
  108. package/dist/openapi-v2/models/ReviseEntitlementPayload.js +43 -0
  109. package/dist/openapi-v2/models/UpdateEventPayload.d.ts +33 -0
  110. package/dist/openapi-v2/models/UpdateEventPayload.js +31 -0
  111. package/dist/openapi-v2/models/all.d.ts +40 -0
  112. package/dist/openapi-v2/models/all.js +56 -0
  113. package/dist/openapi-v2/rxjsStub.d.ts +10 -0
  114. package/dist/openapi-v2/rxjsStub.js +31 -0
  115. package/dist/openapi-v2/servers.d.ts +38 -0
  116. package/dist/openapi-v2/servers.js +51 -0
  117. package/dist/openapi-v2/types/ObservableAPI.d.ts +281 -0
  118. package/dist/openapi-v2/types/ObservableAPI.js +694 -0
  119. package/dist/openapi-v2/types/PromiseAPI.d.ts +268 -0
  120. package/dist/openapi-v2/types/PromiseAPI.js +405 -0
  121. package/dist/openapi-v2/util.d.ts +15 -0
  122. package/dist/openapi-v2/util.js +42 -0
  123. package/dist/sdk/services/configuration.service.js +1 -1
  124. package/dist/sdk-v2/clients/CustomersClient.d.ts +11 -0
  125. package/dist/sdk-v2/clients/CustomersClient.js +50 -0
  126. package/dist/sdk-v2/clients/EntitlementsClient.d.ts +8 -0
  127. package/dist/sdk-v2/clients/EntitlementsClient.js +35 -0
  128. package/dist/sdk-v2/clients/EventsClient.d.ts +9 -0
  129. package/dist/sdk-v2/clients/EventsClient.js +40 -0
  130. package/dist/sdk-v2/clients/InvoicesClient.d.ts +11 -0
  131. package/dist/sdk-v2/clients/InvoicesClient.js +50 -0
  132. package/dist/sdk-v2/clients/ProductsClient.d.ts +10 -0
  133. package/dist/sdk-v2/clients/ProductsClient.js +45 -0
  134. package/dist/sdk-v2/clients/index.d.ts +4 -0
  135. package/dist/sdk-v2/clients/index.js +20 -0
  136. package/dist/sdk-v2/index.d.ts +11 -0
  137. package/dist/sdk-v2/index.js +53 -0
  138. package/dist/sdk-v2/services/configuration.service.d.ts +21 -0
  139. package/dist/sdk-v2/services/configuration.service.js +98 -0
  140. package/dist/sdk-v2/services/index.d.ts +1 -0
  141. package/dist/sdk-v2/services/index.js +17 -0
  142. package/dist/sdk-v2/types/Customers.d.ts +1 -0
  143. package/dist/sdk-v2/types/Customers.js +2 -0
  144. package/dist/sdk-v2/types/Entitlements.d.ts +1 -0
  145. package/dist/sdk-v2/types/Entitlements.js +2 -0
  146. package/dist/sdk-v2/types/Events.d.ts +1 -0
  147. package/dist/sdk-v2/types/Events.js +2 -0
  148. package/dist/sdk-v2/types/Invoices.d.ts +1 -0
  149. package/dist/sdk-v2/types/Invoices.js +2 -0
  150. package/dist/sdk-v2/types/Products.d.ts +1 -0
  151. package/dist/sdk-v2/types/Products.js +2 -0
  152. package/dist/sdk-v2/types/index.d.ts +6 -0
  153. package/dist/sdk-v2/types/index.js +24 -0
  154. package/dist/v2.d.ts +1 -0
  155. package/dist/v2.js +17 -0
  156. package/package.json +17 -1
  157. package/dist/openapi/types/ObjectParamAPI.d.ts +0 -845
  158. package/dist/openapi/types/ObjectParamAPI.js +0 -606
@@ -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,36 @@
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 { Pricing } from '../models/Pricing';
13
+ export declare class EntitlementRevision {
14
+ /**
15
+ * A class representation of the BSON ObjectId type.
16
+ */
17
+ 'revisionId': string;
18
+ 'reason': string;
19
+ 'asOf': Date;
20
+ 'pricing': Pricing;
21
+ 'createdAt': Date;
22
+ static readonly discriminator: string | 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
+ }
@@ -0,0 +1,55 @@
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.EntitlementRevision = void 0;
15
+ class EntitlementRevision {
16
+ static getAttributeTypeMap() {
17
+ return EntitlementRevision.attributeTypeMap;
18
+ }
19
+ constructor() {
20
+ }
21
+ }
22
+ exports.EntitlementRevision = EntitlementRevision;
23
+ EntitlementRevision.discriminator = undefined;
24
+ EntitlementRevision.attributeTypeMap = [
25
+ {
26
+ "name": "revisionId",
27
+ "baseName": "revisionId",
28
+ "type": "string",
29
+ "format": ""
30
+ },
31
+ {
32
+ "name": "reason",
33
+ "baseName": "reason",
34
+ "type": "string",
35
+ "format": ""
36
+ },
37
+ {
38
+ "name": "asOf",
39
+ "baseName": "asOf",
40
+ "type": "Date",
41
+ "format": "date-time"
42
+ },
43
+ {
44
+ "name": "pricing",
45
+ "baseName": "pricing",
46
+ "type": "Pricing",
47
+ "format": ""
48
+ },
49
+ {
50
+ "name": "createdAt",
51
+ "baseName": "createdAt",
52
+ "type": "Date",
53
+ "format": "date-time"
54
+ }
55
+ ];
@@ -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
+ ];
@@ -0,0 +1,31 @@
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 { APIIngestEventPayload } from '../models/APIIngestEventPayload';
13
+ export declare class IngestEventToTheSystem201Response {
14
+ 'insertedIds': Array<string>;
15
+ 'insertedCount': number;
16
+ 'payload': Array<APIIngestEventPayload>;
17
+ static readonly discriminator: string | undefined;
18
+ static readonly attributeTypeMap: Array<{
19
+ name: string;
20
+ baseName: string;
21
+ type: string;
22
+ format: string;
23
+ }>;
24
+ static getAttributeTypeMap(): {
25
+ name: string;
26
+ baseName: string;
27
+ type: string;
28
+ format: string;
29
+ }[];
30
+ constructor();
31
+ }
@@ -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.IngestEventToTheSystem201Response = void 0;
15
+ class IngestEventToTheSystem201Response {
16
+ static getAttributeTypeMap() {
17
+ return IngestEventToTheSystem201Response.attributeTypeMap;
18
+ }
19
+ constructor() {
20
+ }
21
+ }
22
+ exports.IngestEventToTheSystem201Response = IngestEventToTheSystem201Response;
23
+ IngestEventToTheSystem201Response.discriminator = undefined;
24
+ IngestEventToTheSystem201Response.attributeTypeMap = [
25
+ {
26
+ "name": "insertedIds",
27
+ "baseName": "insertedIds",
28
+ "type": "Array<string>",
29
+ "format": ""
30
+ },
31
+ {
32
+ "name": "insertedCount",
33
+ "baseName": "insertedCount",
34
+ "type": "number",
35
+ "format": "double"
36
+ },
37
+ {
38
+ "name": "payload",
39
+ "baseName": "payload",
40
+ "type": "Array<APIIngestEventPayload>",
41
+ "format": ""
42
+ }
43
+ ];
@@ -0,0 +1,36 @@
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 { ProductBreakdown } from '../models/ProductBreakdown';
13
+ /**
14
+ * Invoice product breakdown
15
+ */
16
+ export declare class InvoiceProductBreakdown {
17
+ 'timeBoundPrice'?: {
18
+ [key: string]: ProductBreakdown;
19
+ };
20
+ 'totalUnits': number;
21
+ 'totalPrice': number;
22
+ static readonly discriminator: string | 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
+ }
@@ -0,0 +1,46 @@
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.InvoiceProductBreakdown = void 0;
15
+ /**
16
+ * Invoice product breakdown
17
+ */
18
+ class InvoiceProductBreakdown {
19
+ static getAttributeTypeMap() {
20
+ return InvoiceProductBreakdown.attributeTypeMap;
21
+ }
22
+ constructor() {
23
+ }
24
+ }
25
+ exports.InvoiceProductBreakdown = InvoiceProductBreakdown;
26
+ InvoiceProductBreakdown.discriminator = undefined;
27
+ InvoiceProductBreakdown.attributeTypeMap = [
28
+ {
29
+ "name": "timeBoundPrice",
30
+ "baseName": "timeBoundPrice",
31
+ "type": "{ [key: string]: ProductBreakdown; }",
32
+ "format": ""
33
+ },
34
+ {
35
+ "name": "totalUnits",
36
+ "baseName": "totalUnits",
37
+ "type": "number",
38
+ "format": "double"
39
+ },
40
+ {
41
+ "name": "totalPrice",
42
+ "baseName": "totalPrice",
43
+ "type": "number",
44
+ "format": "double"
45
+ }
46
+ ];
@@ -0,0 +1,28 @@
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 Login200Response {
13
+ 'accessToken': string;
14
+ static readonly discriminator: string | undefined;
15
+ static readonly attributeTypeMap: Array<{
16
+ name: string;
17
+ baseName: string;
18
+ type: string;
19
+ format: string;
20
+ }>;
21
+ static getAttributeTypeMap(): {
22
+ name: string;
23
+ baseName: string;
24
+ type: string;
25
+ format: string;
26
+ }[];
27
+ constructor();
28
+ }
@@ -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.Login200Response = void 0;
15
+ class Login200Response {
16
+ static getAttributeTypeMap() {
17
+ return Login200Response.attributeTypeMap;
18
+ }
19
+ constructor() {
20
+ }
21
+ }
22
+ exports.Login200Response = Login200Response;
23
+ Login200Response.discriminator = undefined;
24
+ Login200Response.attributeTypeMap = [
25
+ {
26
+ "name": "accessToken",
27
+ "baseName": "accessToken",
28
+ "type": "string",
29
+ "format": ""
30
+ }
31
+ ];
@@ -0,0 +1,28 @@
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 LoginRequest {
13
+ 'refreshToken': string;
14
+ static readonly discriminator: string | undefined;
15
+ static readonly attributeTypeMap: Array<{
16
+ name: string;
17
+ baseName: string;
18
+ type: string;
19
+ format: string;
20
+ }>;
21
+ static getAttributeTypeMap(): {
22
+ name: string;
23
+ baseName: string;
24
+ type: string;
25
+ format: string;
26
+ }[];
27
+ constructor();
28
+ }
@@ -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.LoginRequest = void 0;
15
+ class LoginRequest {
16
+ static getAttributeTypeMap() {
17
+ return LoginRequest.attributeTypeMap;
18
+ }
19
+ constructor() {
20
+ }
21
+ }
22
+ exports.LoginRequest = LoginRequest;
23
+ LoginRequest.discriminator = undefined;
24
+ LoginRequest.attributeTypeMap = [
25
+ {
26
+ "name": "refreshToken",
27
+ "baseName": "refreshToken",
28
+ "type": "string",
29
+ "format": ""
30
+ }
31
+ ];