vayu-ts 0.2.14 → 0.3.4

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 (217) hide show
  1. package/dist/example/index.d.ts +1 -0
  2. package/dist/example/index.js +74 -0
  3. package/dist/openapi/apis/CatalogProductsApi.d.ts +89 -0
  4. package/dist/openapi/apis/CatalogProductsApi.js +354 -0
  5. package/dist/openapi/apis/CloudUsageSubmissionApi.d.ts +25 -0
  6. package/dist/openapi/apis/CloudUsageSubmissionApi.js +85 -0
  7. package/dist/openapi/apis/ContractsApi.d.ts +21 -3
  8. package/dist/openapi/apis/ContractsApi.js +75 -3
  9. package/dist/openapi/apis/CustomersApi.d.ts +63 -0
  10. package/dist/openapi/apis/CustomersApi.js +257 -7
  11. package/dist/openapi/apis/EventsApi.d.ts +16 -0
  12. package/dist/openapi/apis/EventsApi.js +67 -12
  13. package/dist/openapi/apis/InvoicesApi.d.ts +19 -3
  14. package/dist/openapi/apis/InvoicesApi.js +69 -3
  15. package/dist/openapi/apis/ProductConsumptionsApi.js +0 -3
  16. package/dist/openapi/apis/WebhooksApi.js +0 -3
  17. package/dist/openapi/http/http.d.ts +6 -18
  18. package/dist/openapi/http/http.js +25 -13
  19. package/dist/openapi/http/isomorphic-fetch.d.ts +1 -0
  20. package/dist/openapi/http/isomorphic-fetch.js +4 -7
  21. package/dist/openapi/index.d.ts +1 -1
  22. package/dist/openapi/index.js +3 -1
  23. package/dist/openapi/models/Address.d.ts +5 -5
  24. package/dist/openapi/models/CloudUsageResult.d.ts +83 -0
  25. package/dist/openapi/models/CloudUsageResult.js +103 -0
  26. package/dist/openapi/models/Contact.d.ts +3 -1
  27. package/dist/openapi/models/Contact.js +12 -0
  28. package/dist/openapi/models/ContractStatus.d.ts +23 -0
  29. package/dist/openapi/models/ContractStatus.js +27 -0
  30. package/dist/openapi/models/CreateCatalogProductRequest.d.ts +42 -0
  31. package/dist/openapi/models/CreateCatalogProductRequest.js +44 -0
  32. package/dist/openapi/models/CreateCatalogProductResponse.d.ts +32 -0
  33. package/dist/openapi/models/CreateCatalogProductResponse.js +32 -0
  34. package/dist/openapi/models/CreateCatalogProductResponseCatalogProduct.d.ts +45 -0
  35. package/dist/openapi/models/CreateCatalogProductResponseCatalogProduct.js +62 -0
  36. package/dist/openapi/models/CreateContractRequest.d.ts +47 -5
  37. package/dist/openapi/models/CreateContractRequest.js +65 -5
  38. package/dist/openapi/models/CreateCustomerRelationRequest.d.ts +38 -0
  39. package/dist/openapi/models/CreateCustomerRelationRequest.js +38 -0
  40. package/dist/openapi/models/CreateCustomerRelationResponse.d.ts +32 -0
  41. package/dist/openapi/models/CreateCustomerRelationResponse.js +32 -0
  42. package/dist/openapi/models/CreateCustomerRelationResponseCustomerRelation.d.ts +41 -0
  43. package/dist/openapi/models/CreateCustomerRelationResponseCustomerRelation.js +56 -0
  44. package/dist/openapi/models/CreateCustomerRequest.d.ts +50 -2
  45. package/dist/openapi/models/CreateCustomerRequest.js +82 -6
  46. package/dist/openapi/models/CreateCustomerResponseCustomer.d.ts +50 -2
  47. package/dist/openapi/models/CreateCustomerResponseCustomer.js +82 -6
  48. package/dist/openapi/models/CreditLedgerEntry.d.ts +3 -1
  49. package/dist/openapi/models/CreditLedgerEntry.js +8 -2
  50. package/dist/openapi/models/Currency.d.ts +24 -0
  51. package/dist/openapi/models/Currency.js +28 -0
  52. package/dist/openapi/models/CustomField.d.ts +65 -0
  53. package/dist/openapi/models/CustomField.js +78 -0
  54. package/dist/openapi/models/CustomFieldValue.d.ts +33 -0
  55. package/dist/openapi/models/CustomFieldValue.js +44 -0
  56. package/dist/openapi/models/CustomFieldValueTypes.d.ts +19 -0
  57. package/dist/openapi/models/CustomFieldValueTypes.js +23 -0
  58. package/dist/openapi/models/CustomerCloudProviderSettings.d.ts +39 -0
  59. package/dist/openapi/models/CustomerCloudProviderSettings.js +51 -0
  60. package/dist/openapi/models/CustomerSource.d.ts +21 -0
  61. package/dist/openapi/models/CustomerSource.js +25 -0
  62. package/dist/openapi/models/DeleteCatalogProductResponse.d.ts +32 -0
  63. package/dist/openapi/models/DeleteCatalogProductResponse.js +32 -0
  64. package/dist/openapi/models/DeleteCatalogProductResponseCatalogProduct.d.ts +46 -0
  65. package/dist/openapi/models/DeleteCatalogProductResponseCatalogProduct.js +68 -0
  66. package/dist/openapi/models/DeleteContractResponseContract.d.ts +47 -5
  67. package/dist/openapi/models/DeleteContractResponseContract.js +65 -5
  68. package/dist/openapi/models/DeleteCustomerResponseCustomer.d.ts +50 -2
  69. package/dist/openapi/models/DeleteCustomerResponseCustomer.js +82 -6
  70. package/dist/openapi/models/DeleteEventsByRefsRequest.d.ts +31 -0
  71. package/dist/openapi/models/DeleteEventsByRefsRequest.js +32 -0
  72. package/dist/openapi/models/DeleteEventsByRefsResponse.d.ts +35 -0
  73. package/dist/openapi/models/DeleteEventsByRefsResponse.js +32 -0
  74. package/dist/openapi/models/DeleteEventsByRefsResponseEventsInner.d.ts +56 -0
  75. package/dist/openapi/models/DeleteEventsByRefsResponseEventsInner.js +80 -0
  76. package/dist/openapi/models/ExternalOverageStrategy.d.ts +20 -0
  77. package/dist/openapi/models/ExternalOverageStrategy.js +24 -0
  78. package/dist/openapi/models/GetCatalogProductResponse.d.ts +32 -0
  79. package/dist/openapi/models/GetCatalogProductResponse.js +32 -0
  80. package/dist/openapi/models/GetContractByIntegrationIdResponse.d.ts +32 -0
  81. package/dist/openapi/models/GetContractByIntegrationIdResponse.js +32 -0
  82. package/dist/openapi/models/GetContractResponseContract.d.ts +47 -5
  83. package/dist/openapi/models/GetContractResponseContract.js +65 -5
  84. package/dist/openapi/models/GetCustomerByIntegrationIdResponse.d.ts +32 -0
  85. package/dist/openapi/models/GetCustomerByIntegrationIdResponse.js +32 -0
  86. package/dist/openapi/models/GetCustomerByNameResponse.d.ts +32 -0
  87. package/dist/openapi/models/GetCustomerByNameResponse.js +32 -0
  88. package/dist/openapi/models/GetCustomerByNameResponseCustomer.d.ts +103 -0
  89. package/dist/openapi/models/GetCustomerByNameResponseCustomer.js +153 -0
  90. package/dist/openapi/models/GetCustomerRelationResponse.d.ts +32 -0
  91. package/dist/openapi/models/GetCustomerRelationResponse.js +32 -0
  92. package/dist/openapi/models/GetInvoiceResponseInvoice.d.ts +14 -0
  93. package/dist/openapi/models/GetInvoiceResponseInvoice.js +30 -0
  94. package/dist/openapi/models/GetInvoiceResponseInvoiceRevenueBreakdown.d.ts +39 -0
  95. package/dist/openapi/models/GetInvoiceResponseInvoiceRevenueBreakdown.js +65 -0
  96. package/dist/openapi/models/IntegrationEntity.d.ts +42 -0
  97. package/dist/openapi/models/IntegrationEntity.js +62 -0
  98. package/dist/openapi/models/IntegrationEntityTypes.d.ts +23 -0
  99. package/dist/openapi/models/IntegrationEntityTypes.js +27 -0
  100. package/dist/openapi/models/IntegrationProviders.d.ts +26 -0
  101. package/dist/openapi/models/IntegrationProviders.js +30 -0
  102. package/dist/openapi/models/IntegrationType.d.ts +26 -0
  103. package/dist/openapi/models/IntegrationType.js +30 -0
  104. package/dist/openapi/models/InvoiceBillingStatus.d.ts +21 -0
  105. package/dist/openapi/models/InvoiceBillingStatus.js +25 -0
  106. package/dist/openapi/models/InvoicePaymentStatusResponse.d.ts +39 -0
  107. package/dist/openapi/models/InvoicePaymentStatusResponse.js +74 -0
  108. package/dist/openapi/models/ListCatalogProductsResponse.d.ts +35 -0
  109. package/dist/openapi/models/ListCatalogProductsResponse.js +50 -0
  110. package/dist/openapi/models/NotificationEventType.d.ts +3 -1
  111. package/dist/openapi/models/NotificationEventType.js +2 -0
  112. package/dist/openapi/models/ObjectSerializer.d.ts +61 -0
  113. package/dist/openapi/models/ObjectSerializer.js +191 -0
  114. package/dist/openapi/models/PartnerSubmissionDetail.d.ts +46 -0
  115. package/dist/openapi/models/PartnerSubmissionDetail.js +49 -0
  116. package/dist/openapi/models/PaymentInfo.d.ts +45 -0
  117. package/dist/openapi/models/PaymentInfo.js +89 -0
  118. package/dist/openapi/models/PaymentInfoDepositTo.d.ts +32 -0
  119. package/dist/openapi/models/PaymentInfoDepositTo.js +38 -0
  120. package/dist/openapi/models/PaymentTerm.d.ts +18 -0
  121. package/dist/openapi/models/PaymentTerm.js +22 -0
  122. package/dist/openapi/models/ProductCloudProviderSettings.d.ts +39 -0
  123. package/dist/openapi/models/ProductCloudProviderSettings.js +51 -0
  124. package/dist/openapi/models/ProductGroup.d.ts +65 -0
  125. package/dist/openapi/models/ProductGroup.js +80 -0
  126. package/dist/openapi/models/ProductGroupCommitment.d.ts +45 -0
  127. package/dist/openapi/models/ProductGroupCommitment.js +53 -0
  128. package/dist/openapi/models/ProductGroupProductsInner.d.ts +68 -0
  129. package/dist/openapi/models/ProductGroupProductsInner.js +98 -0
  130. package/dist/openapi/models/ProductGroupProductsInnerCommitment.d.ts +45 -0
  131. package/dist/openapi/models/ProductGroupProductsInnerCommitment.js +53 -0
  132. package/dist/openapi/models/ProductGroupProductsInnerCommitmentScheduling.d.ts +39 -0
  133. package/dist/openapi/models/ProductGroupProductsInnerCommitmentScheduling.js +41 -0
  134. package/dist/openapi/models/ProductGroupProductsInnerPricing.d.ts +36 -0
  135. package/dist/openapi/models/ProductGroupProductsInnerPricing.js +24 -0
  136. package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf.d.ts +35 -0
  137. package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf.js +42 -0
  138. package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf1.d.ts +37 -0
  139. package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf1.js +48 -0
  140. package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf1InstallmentsInner.d.ts +32 -0
  141. package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf1InstallmentsInner.js +38 -0
  142. package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf2.d.ts +37 -0
  143. package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf2.js +48 -0
  144. package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf2SubscriptionCadence.d.ts +38 -0
  145. package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf2SubscriptionCadence.js +45 -0
  146. package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf3.d.ts +46 -0
  147. package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf3.js +78 -0
  148. package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf3SubscriptionCadence.d.ts +38 -0
  149. package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf3SubscriptionCadence.js +45 -0
  150. package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf3TiersInner.d.ts +35 -0
  151. package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf3TiersInner.js +56 -0
  152. package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf4.d.ts +41 -0
  153. package/dist/openapi/models/ProductGroupProductsInnerPricingOneOf4.js +60 -0
  154. package/dist/openapi/models/ProductGroupProductsInnerScheduling.d.ts +39 -0
  155. package/dist/openapi/models/ProductGroupProductsInnerScheduling.js +41 -0
  156. package/dist/openapi/models/ProductGroupProductsInnerSchedulingDuration.d.ts +41 -0
  157. package/dist/openapi/models/ProductGroupProductsInnerSchedulingDuration.js +48 -0
  158. package/dist/openapi/models/SubmitCloudUsageRequest.d.ts +39 -0
  159. package/dist/openapi/models/SubmitCloudUsageRequest.js +38 -0
  160. package/dist/openapi/models/SyncStatus.d.ts +16 -0
  161. package/dist/openapi/models/SyncStatus.js +20 -0
  162. package/dist/openapi/models/UpdateCatalogProductRequest.d.ts +42 -0
  163. package/dist/openapi/models/UpdateCatalogProductRequest.js +44 -0
  164. package/dist/openapi/models/UpdateCatalogProductResponse.d.ts +32 -0
  165. package/dist/openapi/models/UpdateCatalogProductResponse.js +32 -0
  166. package/dist/openapi/models/UpdateCustomerRequest.d.ts +50 -2
  167. package/dist/openapi/models/UpdateCustomerRequest.js +82 -6
  168. package/dist/openapi/models/UsageWindow.d.ts +41 -0
  169. package/dist/openapi/models/UsageWindow.js +41 -0
  170. package/dist/openapi/models/all.d.ts +61 -0
  171. package/dist/openapi/models/all.js +61 -0
  172. package/dist/openapi/types/ObservableAPI.d.ts +212 -12
  173. package/dist/openapi/types/ObservableAPI.js +424 -17
  174. package/dist/openapi/types/PromiseAPI.d.ts +208 -12
  175. package/dist/openapi/types/PromiseAPI.js +294 -34
  176. package/dist/sdk/clients/CatalogProductsClient.d.ts +11 -0
  177. package/dist/sdk/clients/CatalogProductsClient.js +28 -0
  178. package/dist/sdk/clients/CloudUsageSubmissionClient.d.ts +6 -0
  179. package/dist/sdk/clients/CloudUsageSubmissionClient.js +14 -0
  180. package/dist/sdk/clients/ContractsClient.d.ts +2 -1
  181. package/dist/sdk/clients/ContractsClient.js +3 -0
  182. package/dist/sdk/clients/CreditsClient.d.ts +9 -0
  183. package/dist/sdk/clients/CreditsClient.js +22 -0
  184. package/dist/sdk/clients/CustomersClient.d.ts +6 -1
  185. package/dist/sdk/clients/CustomersClient.js +15 -0
  186. package/dist/sdk/clients/EventsClient.d.ts +2 -1
  187. package/dist/sdk/clients/EventsClient.js +3 -0
  188. package/dist/sdk/clients/InvoicesClient.d.ts +1 -0
  189. package/dist/sdk/clients/InvoicesClient.js +3 -0
  190. package/dist/sdk/clients/MeasurementsClient.d.ts +10 -0
  191. package/dist/sdk/clients/MeasurementsClient.js +25 -0
  192. package/dist/sdk/clients/index.d.ts +4 -0
  193. package/dist/sdk/clients/index.js +4 -0
  194. package/dist/sdk/index.d.ts +6 -1
  195. package/dist/sdk/index.js +13 -0
  196. package/dist/sdk/services/authenticated-http-library.d.ts +11 -0
  197. package/dist/sdk/services/authenticated-http-library.js +29 -0
  198. package/dist/sdk/services/authenticator.d.ts +11 -0
  199. package/dist/sdk/services/authenticator.js +57 -0
  200. package/dist/sdk/services/configuration.service.d.ts +7 -6
  201. package/dist/sdk/services/configuration.service.js +12 -44
  202. package/dist/sdk/types/CatalogProducts.d.ts +1 -0
  203. package/dist/sdk/types/CatalogProducts.js +2 -0
  204. package/dist/sdk/types/CloudUsageSubmission.d.ts +1 -0
  205. package/dist/sdk/types/CloudUsageSubmission.js +2 -0
  206. package/dist/sdk/types/Contracts.d.ts +1 -1
  207. package/dist/sdk/types/Credits.d.ts +1 -0
  208. package/dist/sdk/types/Credits.js +2 -0
  209. package/dist/sdk/types/Customers.d.ts +1 -1
  210. package/dist/sdk/types/Events.d.ts +1 -1
  211. package/dist/sdk/types/Invoices.d.ts +1 -1
  212. package/dist/sdk/types/Measurements.d.ts +1 -0
  213. package/dist/sdk/types/Measurements.js +2 -0
  214. package/dist/sdk/types/index.d.ts +4 -0
  215. package/dist/sdk/types/index.js +4 -0
  216. package/dist/sdk-v2/services/configuration.service.js +16 -8
  217. package/package.json +3 -4
@@ -10,7 +10,10 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import { FullDayPeriod } from '../models/FullDayPeriod';
13
+ import { GetInvoiceResponseInvoiceRevenueBreakdown } from '../models/GetInvoiceResponseInvoiceRevenueBreakdown';
14
+ import { InvoiceBillingStatus } from '../models/InvoiceBillingStatus';
13
15
  import { LineItem } from '../models/LineItem';
16
+ import { PaymentInfo } from '../models/PaymentInfo';
14
17
  export declare class GetInvoiceResponseInvoice {
15
18
  /**
16
19
  * The id of the customer that the invoice is associated with
@@ -25,6 +28,17 @@ export declare class GetInvoiceResponseInvoice {
25
28
  */
26
29
  'name': string;
27
30
  'billingCycle': FullDayPeriod;
31
+ 'revenueBreakdown': GetInvoiceResponseInvoiceRevenueBreakdown;
32
+ 'billingStatus': InvoiceBillingStatus;
33
+ 'paymentInfo'?: PaymentInfo;
34
+ /**
35
+ * The due date of the invoice
36
+ */
37
+ 'dueDate': Date | null;
38
+ /**
39
+ * The id of the account that the invoice is associated with
40
+ */
41
+ 'accountId': string;
28
42
  'lineItems': Array<LineItem>;
29
43
  /**
30
44
  * The total amount of the invoice
@@ -47,6 +47,36 @@ GetInvoiceResponseInvoice.attributeTypeMap = [
47
47
  "type": "FullDayPeriod",
48
48
  "format": ""
49
49
  },
50
+ {
51
+ "name": "revenueBreakdown",
52
+ "baseName": "revenueBreakdown",
53
+ "type": "GetInvoiceResponseInvoiceRevenueBreakdown",
54
+ "format": ""
55
+ },
56
+ {
57
+ "name": "billingStatus",
58
+ "baseName": "billingStatus",
59
+ "type": "InvoiceBillingStatus",
60
+ "format": ""
61
+ },
62
+ {
63
+ "name": "paymentInfo",
64
+ "baseName": "paymentInfo",
65
+ "type": "PaymentInfo",
66
+ "format": ""
67
+ },
68
+ {
69
+ "name": "dueDate",
70
+ "baseName": "dueDate",
71
+ "type": "Date",
72
+ "format": "date-time"
73
+ },
74
+ {
75
+ "name": "accountId",
76
+ "baseName": "accountId",
77
+ "type": "string",
78
+ "format": ""
79
+ },
50
80
  {
51
81
  "name": "lineItems",
52
82
  "baseName": "lineItems",
@@ -0,0 +1,39 @@
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
+ /**
13
+ * The breakdown of the revenue for the invoice
14
+ */
15
+ export declare class GetInvoiceResponseInvoiceRevenueBreakdown {
16
+ 'total': number;
17
+ 'subtotal': number;
18
+ 'overage': number;
19
+ 'discount': number;
20
+ 'creditsUsed': number;
21
+ 'tax': number;
22
+ static readonly discriminator: string | undefined;
23
+ static readonly mapping: {
24
+ [index: string]: string;
25
+ } | 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,65 @@
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.GetInvoiceResponseInvoiceRevenueBreakdown = void 0;
15
+ /**
16
+ * The breakdown of the revenue for the invoice
17
+ */
18
+ class GetInvoiceResponseInvoiceRevenueBreakdown {
19
+ static getAttributeTypeMap() {
20
+ return GetInvoiceResponseInvoiceRevenueBreakdown.attributeTypeMap;
21
+ }
22
+ constructor() {
23
+ }
24
+ }
25
+ exports.GetInvoiceResponseInvoiceRevenueBreakdown = GetInvoiceResponseInvoiceRevenueBreakdown;
26
+ GetInvoiceResponseInvoiceRevenueBreakdown.discriminator = undefined;
27
+ GetInvoiceResponseInvoiceRevenueBreakdown.mapping = undefined;
28
+ GetInvoiceResponseInvoiceRevenueBreakdown.attributeTypeMap = [
29
+ {
30
+ "name": "total",
31
+ "baseName": "total",
32
+ "type": "number",
33
+ "format": ""
34
+ },
35
+ {
36
+ "name": "subtotal",
37
+ "baseName": "subtotal",
38
+ "type": "number",
39
+ "format": ""
40
+ },
41
+ {
42
+ "name": "overage",
43
+ "baseName": "overage",
44
+ "type": "number",
45
+ "format": ""
46
+ },
47
+ {
48
+ "name": "discount",
49
+ "baseName": "discount",
50
+ "type": "number",
51
+ "format": ""
52
+ },
53
+ {
54
+ "name": "creditsUsed",
55
+ "baseName": "creditsUsed",
56
+ "type": "number",
57
+ "format": ""
58
+ },
59
+ {
60
+ "name": "tax",
61
+ "baseName": "tax",
62
+ "type": "number",
63
+ "format": ""
64
+ }
65
+ ];
@@ -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 { IntegrationProviders } from '../models/IntegrationProviders';
13
+ import { SyncStatus } from '../models/SyncStatus';
14
+ export declare class IntegrationEntity {
15
+ 'updatedAt': Date;
16
+ 'integrationProvider': IntegrationProviders;
17
+ 'integrationExternalId': string;
18
+ 'syncStatus': SyncStatus;
19
+ 'metadata'?: {
20
+ [key: string]: any | null;
21
+ } | null;
22
+ 'rawSyncedData'?: {
23
+ [key: string]: any | null;
24
+ } | null;
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,62 @@
1
+ "use strict";
2
+ /**
3
+ * Vayu API
4
+ * The Vayu API is a RESTful API that allows you to submit events for processing and storage & manage billing related entities. The API is secured using the Bearer Authentication scheme with JWT tokens. To obtain a JWT token, please contact Vayu at team@withvayu.com
5
+ *
6
+ * OpenAPI spec version: 1.0.0
7
+ * Contact: dev@withvayu.com
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.IntegrationEntity = void 0;
15
+ class IntegrationEntity {
16
+ static getAttributeTypeMap() {
17
+ return IntegrationEntity.attributeTypeMap;
18
+ }
19
+ constructor() {
20
+ }
21
+ }
22
+ exports.IntegrationEntity = IntegrationEntity;
23
+ IntegrationEntity.discriminator = undefined;
24
+ IntegrationEntity.mapping = undefined;
25
+ IntegrationEntity.attributeTypeMap = [
26
+ {
27
+ "name": "updatedAt",
28
+ "baseName": "updatedAt",
29
+ "type": "Date",
30
+ "format": "date-time"
31
+ },
32
+ {
33
+ "name": "integrationProvider",
34
+ "baseName": "integrationProvider",
35
+ "type": "IntegrationProviders",
36
+ "format": ""
37
+ },
38
+ {
39
+ "name": "integrationExternalId",
40
+ "baseName": "integrationExternalId",
41
+ "type": "string",
42
+ "format": ""
43
+ },
44
+ {
45
+ "name": "syncStatus",
46
+ "baseName": "syncStatus",
47
+ "type": "SyncStatus",
48
+ "format": ""
49
+ },
50
+ {
51
+ "name": "metadata",
52
+ "baseName": "metadata",
53
+ "type": "{ [key: string]: any | null; }",
54
+ "format": ""
55
+ },
56
+ {
57
+ "name": "rawSyncedData",
58
+ "baseName": "rawSyncedData",
59
+ "type": "{ [key: string]: any | null; }",
60
+ "format": ""
61
+ }
62
+ ];
@@ -0,0 +1,23 @@
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
+ /**
13
+ * The entity type in the integration (e.g., \"Opportunity\", \"Deal\")
14
+ */
15
+ export declare enum IntegrationEntityTypes {
16
+ Account = "Account",
17
+ Invoice = "Invoice",
18
+ SalesOrder = "SalesOrder",
19
+ Item = "Item",
20
+ Deal = "Deal",
21
+ Company = "Company",
22
+ Opportunity = "Opportunity"
23
+ }
@@ -0,0 +1,27 @@
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.IntegrationEntityTypes = void 0;
15
+ /**
16
+ * The entity type in the integration (e.g., \"Opportunity\", \"Deal\")
17
+ */
18
+ var IntegrationEntityTypes;
19
+ (function (IntegrationEntityTypes) {
20
+ IntegrationEntityTypes["Account"] = "Account";
21
+ IntegrationEntityTypes["Invoice"] = "Invoice";
22
+ IntegrationEntityTypes["SalesOrder"] = "SalesOrder";
23
+ IntegrationEntityTypes["Item"] = "Item";
24
+ IntegrationEntityTypes["Deal"] = "Deal";
25
+ IntegrationEntityTypes["Company"] = "Company";
26
+ IntegrationEntityTypes["Opportunity"] = "Opportunity";
27
+ })(IntegrationEntityTypes = exports.IntegrationEntityTypes || (exports.IntegrationEntityTypes = {}));
@@ -0,0 +1,26 @@
1
+ /**
2
+ * Vayu API
3
+ * The Vayu API is a RESTful API that allows you to submit events for processing and storage & manage billing related entities. The API is secured using the Bearer Authentication scheme with JWT tokens. To obtain a JWT token, please contact Vayu at team@withvayu.com
4
+ *
5
+ * OpenAPI spec version: 1.0.0
6
+ * Contact: dev@withvayu.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ export declare enum IntegrationProviders {
13
+ Hubspot = "Hubspot",
14
+ Stripe = "Stripe",
15
+ NetSuite = "NetSuite",
16
+ Salesforce = "Salesforce",
17
+ QuickBooks = "QuickBooks",
18
+ Slack = "Slack",
19
+ S3 = "S3",
20
+ Vayu = "Vayu",
21
+ Morning = "Morning",
22
+ Anrok = "Anrok",
23
+ Snowflake = "Snowflake",
24
+ Connact = "Connact",
25
+ Xero = "Xero"
26
+ }
@@ -0,0 +1,30 @@
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.IntegrationProviders = void 0;
15
+ var IntegrationProviders;
16
+ (function (IntegrationProviders) {
17
+ IntegrationProviders["Hubspot"] = "Hubspot";
18
+ IntegrationProviders["Stripe"] = "Stripe";
19
+ IntegrationProviders["NetSuite"] = "NetSuite";
20
+ IntegrationProviders["Salesforce"] = "Salesforce";
21
+ IntegrationProviders["QuickBooks"] = "QuickBooks";
22
+ IntegrationProviders["Slack"] = "Slack";
23
+ IntegrationProviders["S3"] = "S3";
24
+ IntegrationProviders["Vayu"] = "Vayu";
25
+ IntegrationProviders["Morning"] = "Morning";
26
+ IntegrationProviders["Anrok"] = "Anrok";
27
+ IntegrationProviders["Snowflake"] = "Snowflake";
28
+ IntegrationProviders["Connact"] = "Connact";
29
+ IntegrationProviders["Xero"] = "Xero";
30
+ })(IntegrationProviders = exports.IntegrationProviders || (exports.IntegrationProviders = {}));
@@ -0,0 +1,26 @@
1
+ /**
2
+ * Vayu API
3
+ * The Vayu API is a RESTful API that allows you to submit events for processing and storage & manage billing related entities. The API is secured using the Bearer Authentication scheme with JWT tokens. To obtain a JWT token, please contact Vayu at team@withvayu.com
4
+ *
5
+ * OpenAPI spec version: 1.0.0
6
+ * Contact: dev@withvayu.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ export declare enum IntegrationType {
13
+ Hubspot = "Hubspot",
14
+ Stripe = "Stripe",
15
+ NetSuite = "NetSuite",
16
+ Salesforce = "Salesforce",
17
+ QuickBooks = "QuickBooks",
18
+ Slack = "Slack",
19
+ S3 = "S3",
20
+ Vayu = "Vayu",
21
+ Morning = "Morning",
22
+ Anrok = "Anrok",
23
+ Snowflake = "Snowflake",
24
+ Connact = "Connact",
25
+ Xero = "Xero"
26
+ }
@@ -0,0 +1,30 @@
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.IntegrationType = void 0;
15
+ var IntegrationType;
16
+ (function (IntegrationType) {
17
+ IntegrationType["Hubspot"] = "Hubspot";
18
+ IntegrationType["Stripe"] = "Stripe";
19
+ IntegrationType["NetSuite"] = "NetSuite";
20
+ IntegrationType["Salesforce"] = "Salesforce";
21
+ IntegrationType["QuickBooks"] = "QuickBooks";
22
+ IntegrationType["Slack"] = "Slack";
23
+ IntegrationType["S3"] = "S3";
24
+ IntegrationType["Vayu"] = "Vayu";
25
+ IntegrationType["Morning"] = "Morning";
26
+ IntegrationType["Anrok"] = "Anrok";
27
+ IntegrationType["Snowflake"] = "Snowflake";
28
+ IntegrationType["Connact"] = "Connact";
29
+ IntegrationType["Xero"] = "Xero";
30
+ })(IntegrationType = exports.IntegrationType || (exports.IntegrationType = {}));
@@ -0,0 +1,21 @@
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
+ /**
13
+ * The billing status of the invoice
14
+ */
15
+ export declare enum InvoiceBillingStatus {
16
+ None = "None",
17
+ Paid = "Paid",
18
+ Rejected = "Rejected",
19
+ PendingPayment = "PendingPayment",
20
+ Overdue = "Overdue"
21
+ }
@@ -0,0 +1,25 @@
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.InvoiceBillingStatus = void 0;
15
+ /**
16
+ * The billing status of the invoice
17
+ */
18
+ var InvoiceBillingStatus;
19
+ (function (InvoiceBillingStatus) {
20
+ InvoiceBillingStatus["None"] = "None";
21
+ InvoiceBillingStatus["Paid"] = "Paid";
22
+ InvoiceBillingStatus["Rejected"] = "Rejected";
23
+ InvoiceBillingStatus["PendingPayment"] = "PendingPayment";
24
+ InvoiceBillingStatus["Overdue"] = "Overdue";
25
+ })(InvoiceBillingStatus = exports.InvoiceBillingStatus || (exports.InvoiceBillingStatus = {}));
@@ -0,0 +1,39 @@
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 { InvoiceBillingStatus } from '../models/InvoiceBillingStatus';
13
+ export declare class InvoicePaymentStatusResponse {
14
+ 'invoiceId': string;
15
+ 'billingStatus': InvoiceBillingStatus;
16
+ 'amountDue': number;
17
+ 'amountPaid': number;
18
+ 'total': number;
19
+ 'dueDate'?: Date;
20
+ 'paidAt'?: Date;
21
+ 'invoicePdfUrl'?: string;
22
+ static readonly discriminator: string | undefined;
23
+ static readonly mapping: {
24
+ [index: string]: string;
25
+ } | 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,74 @@
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.InvoicePaymentStatusResponse = void 0;
15
+ class InvoicePaymentStatusResponse {
16
+ static getAttributeTypeMap() {
17
+ return InvoicePaymentStatusResponse.attributeTypeMap;
18
+ }
19
+ constructor() {
20
+ }
21
+ }
22
+ exports.InvoicePaymentStatusResponse = InvoicePaymentStatusResponse;
23
+ InvoicePaymentStatusResponse.discriminator = undefined;
24
+ InvoicePaymentStatusResponse.mapping = undefined;
25
+ InvoicePaymentStatusResponse.attributeTypeMap = [
26
+ {
27
+ "name": "invoiceId",
28
+ "baseName": "invoiceId",
29
+ "type": "string",
30
+ "format": ""
31
+ },
32
+ {
33
+ "name": "billingStatus",
34
+ "baseName": "billingStatus",
35
+ "type": "InvoiceBillingStatus",
36
+ "format": ""
37
+ },
38
+ {
39
+ "name": "amountDue",
40
+ "baseName": "amountDue",
41
+ "type": "number",
42
+ "format": ""
43
+ },
44
+ {
45
+ "name": "amountPaid",
46
+ "baseName": "amountPaid",
47
+ "type": "number",
48
+ "format": ""
49
+ },
50
+ {
51
+ "name": "total",
52
+ "baseName": "total",
53
+ "type": "number",
54
+ "format": ""
55
+ },
56
+ {
57
+ "name": "dueDate",
58
+ "baseName": "dueDate",
59
+ "type": "Date",
60
+ "format": "date-time"
61
+ },
62
+ {
63
+ "name": "paidAt",
64
+ "baseName": "paidAt",
65
+ "type": "Date",
66
+ "format": "date-time"
67
+ },
68
+ {
69
+ "name": "invoicePdfUrl",
70
+ "baseName": "invoicePdfUrl",
71
+ "type": "string",
72
+ "format": ""
73
+ }
74
+ ];
@@ -0,0 +1,35 @@
1
+ /**
2
+ * Vayu API
3
+ * The Vayu API is a RESTful API that allows you to submit events for processing and storage & manage billing related entities. The API is secured using the Bearer Authentication scheme with JWT tokens. To obtain a JWT token, please contact Vayu at team@withvayu.com
4
+ *
5
+ * OpenAPI spec version: 1.0.0
6
+ * Contact: dev@withvayu.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { CreateCatalogProductResponseCatalogProduct } from '../models/CreateCatalogProductResponseCatalogProduct';
13
+ export declare class ListCatalogProductsResponse {
14
+ 'catalogProducts': Array<CreateCatalogProductResponseCatalogProduct>;
15
+ 'total': number;
16
+ 'hasMore': boolean;
17
+ 'nextCursor'?: string;
18
+ static readonly discriminator: string | undefined;
19
+ static readonly mapping: {
20
+ [index: string]: string;
21
+ } | undefined;
22
+ static readonly attributeTypeMap: Array<{
23
+ name: string;
24
+ baseName: string;
25
+ type: string;
26
+ format: string;
27
+ }>;
28
+ static getAttributeTypeMap(): {
29
+ name: string;
30
+ baseName: string;
31
+ type: string;
32
+ format: string;
33
+ }[];
34
+ constructor();
35
+ }