@flexprice/sdk 0.0.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/README.md +380 -0
- package/dist/ApiClient.js +703 -0
- package/dist/api/AuthApi.js +116 -0
- package/dist/api/CustomersApi.js +373 -0
- package/dist/api/EntitlementsApi.js +291 -0
- package/dist/api/EnvironmentsApi.js +204 -0
- package/dist/api/EventsApi.js +237 -0
- package/dist/api/FeaturesApi.js +252 -0
- package/dist/api/IntegrationsApi.js +189 -0
- package/dist/api/InvoicesApi.js +444 -0
- package/dist/api/MetersApi.js +287 -0
- package/dist/api/PaymentsApi.js +296 -0
- package/dist/api/PlansApi.js +248 -0
- package/dist/api/PricesApi.js +250 -0
- package/dist/api/SecretsApi.js +155 -0
- package/dist/api/SubscriptionsApi.js +383 -0
- package/dist/api/TasksApi.js +254 -0
- package/dist/api/TenantsApi.js +182 -0
- package/dist/api/UsersApi.js +75 -0
- package/dist/api/WalletsApi.js +384 -0
- package/dist/index.js +1154 -0
- package/dist/model/DtoAddress.js +149 -0
- package/dist/model/DtoAggregatedEntitlement.js +123 -0
- package/dist/model/DtoAggregatedFeature.js +138 -0
- package/dist/model/DtoAuthResponse.js +113 -0
- package/dist/model/DtoBillingPeriodInfo.js +114 -0
- package/dist/model/DtoBulkIngestEventRequest.js +130 -0
- package/dist/model/DtoCreateAPIKeyRequest.js +147 -0
- package/dist/model/DtoCreateAPIKeyResponse.js +103 -0
- package/dist/model/DtoCreateCustomerRequest.js +218 -0
- package/dist/model/DtoCreateEntitlementRequest.js +180 -0
- package/dist/model/DtoCreateEnvironmentRequest.js +126 -0
- package/dist/model/DtoCreateFeatureRequest.js +193 -0
- package/dist/model/DtoCreateIntegrationRequest.js +135 -0
- package/dist/model/DtoCreateInvoiceLineItemRequest.js +238 -0
- package/dist/model/DtoCreateInvoiceRequest.js +316 -0
- package/dist/model/DtoCreateMeterRequest.js +183 -0
- package/dist/model/DtoCreatePaymentRequest.js +202 -0
- package/dist/model/DtoCreatePlanEntitlementRequest.js +180 -0
- package/dist/model/DtoCreatePlanPriceRequest.js +318 -0
- package/dist/model/DtoCreatePlanRequest.js +196 -0
- package/dist/model/DtoCreatePriceRequest.js +318 -0
- package/dist/model/DtoCreatePriceTier.js +132 -0
- package/dist/model/DtoCreateSubscriptionRequest.js +244 -0
- package/dist/model/DtoCreateTaskRequest.js +167 -0
- package/dist/model/DtoCreateTenantRequest.js +126 -0
- package/dist/model/DtoCreateWalletRequest.js +216 -0
- package/dist/model/DtoCustomerEntitlementsResponse.js +122 -0
- package/dist/model/DtoCustomerInvoiceSummary.js +165 -0
- package/dist/model/DtoCustomerMultiCurrencyInvoiceSummary.js +134 -0
- package/dist/model/DtoCustomerResponse.js +300 -0
- package/dist/model/DtoCustomerUsageSummaryResponse.js +150 -0
- package/dist/model/DtoEntitlementResponse.js +276 -0
- package/dist/model/DtoEntitlementSource.js +161 -0
- package/dist/model/DtoEnvironmentResponse.js +137 -0
- package/dist/model/DtoEvent.js +159 -0
- package/dist/model/DtoFeatureResponse.js +275 -0
- package/dist/model/DtoFeatureUsageSummary.js +164 -0
- package/dist/model/DtoGetEventsResponse.js +142 -0
- package/dist/model/DtoGetPreviewInvoiceRequest.js +136 -0
- package/dist/model/DtoGetUsageByMeterRequest.js +179 -0
- package/dist/model/DtoGetUsageBySubscriptionRequest.js +144 -0
- package/dist/model/DtoGetUsageBySubscriptionResponse.js +166 -0
- package/dist/model/DtoGetUsageRequest.js +203 -0
- package/dist/model/DtoGetUsageResponse.js +139 -0
- package/dist/model/DtoIngestEventRequest.js +186 -0
- package/dist/model/DtoInvoiceLineItemResponse.js +343 -0
- package/dist/model/DtoInvoiceResponse.js +479 -0
- package/dist/model/DtoLinkedIntegrationsResponse.js +89 -0
- package/dist/model/DtoListCustomersResponse.js +124 -0
- package/dist/model/DtoListEntitlementsResponse.js +124 -0
- package/dist/model/DtoListEnvironmentsResponse.js +134 -0
- package/dist/model/DtoListFeaturesResponse.js +124 -0
- package/dist/model/DtoListInvoicesResponse.js +124 -0
- package/dist/model/DtoListPaymentsResponse.js +124 -0
- package/dist/model/DtoListPlansResponse.js +124 -0
- package/dist/model/DtoListPricesResponse.js +124 -0
- package/dist/model/DtoListSecretsResponse.js +124 -0
- package/dist/model/DtoListSubscriptionPausesResponse.js +118 -0
- package/dist/model/DtoListSubscriptionsResponse.js +124 -0
- package/dist/model/DtoListTasksResponse.js +124 -0
- package/dist/model/DtoListWalletTransactionsResponse.js +124 -0
- package/dist/model/DtoLoginRequest.js +138 -0
- package/dist/model/DtoMeterResponse.js +217 -0
- package/dist/model/DtoPauseSubscriptionRequest.js +171 -0
- package/dist/model/DtoPaymentAttemptResponse.js +191 -0
- package/dist/model/DtoPaymentResponse.js +331 -0
- package/dist/model/DtoPlanResponse.js +269 -0
- package/dist/model/DtoPriceResponse.js +412 -0
- package/dist/model/DtoResumeSubscriptionRequest.js +127 -0
- package/dist/model/DtoSecretResponse.js +200 -0
- package/dist/model/DtoSignUpRequest.js +148 -0
- package/dist/model/DtoSubscriptionPauseResponse.js +300 -0
- package/dist/model/DtoSubscriptionResponse.js +518 -0
- package/dist/model/DtoSubscriptionUsageByMetersResponse.js +165 -0
- package/dist/model/DtoTaskResponse.js +311 -0
- package/dist/model/DtoTenantBillingDetails.js +127 -0
- package/dist/model/DtoTenantBillingUsage.js +124 -0
- package/dist/model/DtoTenantResponse.js +151 -0
- package/dist/model/DtoTopUpWalletRequest.js +185 -0
- package/dist/model/DtoUpdateCustomerRequest.js +195 -0
- package/dist/model/DtoUpdateEntitlementRequest.js +122 -0
- package/dist/model/DtoUpdateEnvironmentRequest.js +101 -0
- package/dist/model/DtoUpdateFeatureRequest.js +135 -0
- package/dist/model/DtoUpdateMeterRequest.js +110 -0
- package/dist/model/DtoUpdatePaymentRequest.js +99 -0
- package/dist/model/DtoUpdatePaymentStatusRequest.js +117 -0
- package/dist/model/DtoUpdatePlanEntitlementRequest.js +193 -0
- package/dist/model/DtoUpdatePlanPriceRequest.js +331 -0
- package/dist/model/DtoUpdatePlanRequest.js +176 -0
- package/dist/model/DtoUpdatePriceRequest.js +111 -0
- package/dist/model/DtoUpdateTaskStatusRequest.js +109 -0
- package/dist/model/DtoUpdateTenantRequest.js +91 -0
- package/dist/model/DtoUpdateWalletRequest.js +150 -0
- package/dist/model/DtoUsageResult.js +97 -0
- package/dist/model/DtoUserResponse.js +115 -0
- package/dist/model/DtoWalletBalanceResponse.js +353 -0
- package/dist/model/DtoWalletResponse.js +252 -0
- package/dist/model/DtoWalletTransactionResponse.js +238 -0
- package/dist/model/ErrorsErrorDetail.js +111 -0
- package/dist/model/ErrorsErrorResponse.js +99 -0
- package/dist/model/MeterAggregation.js +99 -0
- package/dist/model/MeterFilter.js +103 -0
- package/dist/model/PriceJSONBTransformQuantity.js +99 -0
- package/dist/model/PricePrice.js +398 -0
- package/dist/model/PricePriceTier.js +104 -0
- package/dist/model/PriceTransformQuantity.js +99 -0
- package/dist/model/SubscriptionSubscriptionLineItem.js +355 -0
- package/dist/model/SubscriptionSubscriptionPause.js +300 -0
- package/dist/model/TypesAggregationType.js +68 -0
- package/dist/model/TypesAutoTopupTrigger.js +58 -0
- package/dist/model/TypesBillingCadence.js +58 -0
- package/dist/model/TypesBillingModel.js +63 -0
- package/dist/model/TypesBillingPeriod.js +78 -0
- package/dist/model/TypesBillingTier.js +58 -0
- package/dist/model/TypesEntityType.js +63 -0
- package/dist/model/TypesFeatureType.js +63 -0
- package/dist/model/TypesFileType.js +58 -0
- package/dist/model/TypesInvoiceBillingReason.js +68 -0
- package/dist/model/TypesInvoiceCadence.js +58 -0
- package/dist/model/TypesInvoiceStatus.js +63 -0
- package/dist/model/TypesInvoiceType.js +63 -0
- package/dist/model/TypesPaginationResponse.js +101 -0
- package/dist/model/TypesPauseMode.js +63 -0
- package/dist/model/TypesPauseStatus.js +73 -0
- package/dist/model/TypesPaymentDestinationType.js +53 -0
- package/dist/model/TypesPaymentMethodType.js +68 -0
- package/dist/model/TypesPaymentStatus.js +78 -0
- package/dist/model/TypesPriceType.js +58 -0
- package/dist/model/TypesResetUsage.js +58 -0
- package/dist/model/TypesResumeMode.js +63 -0
- package/dist/model/TypesSecretProvider.js +63 -0
- package/dist/model/TypesSecretType.js +63 -0
- package/dist/model/TypesStatus.js +63 -0
- package/dist/model/TypesSubscriptionStatus.js +88 -0
- package/dist/model/TypesTaskStatus.js +68 -0
- package/dist/model/TypesTaskType.js +58 -0
- package/dist/model/TypesTransactionReason.js +88 -0
- package/dist/model/TypesTransactionStatus.js +63 -0
- package/dist/model/TypesTransactionType.js +58 -0
- package/dist/model/TypesWalletConfig.js +91 -0
- package/dist/model/TypesWalletConfigPriceType.js +63 -0
- package/dist/model/TypesWalletStatus.js +63 -0
- package/dist/model/TypesWalletTxReferenceType.js +68 -0
- package/dist/model/TypesWalletType.js +58 -0
- package/dist/model/TypesWindowSize.js +63 -0
- package/package.json +54 -0
|
@@ -0,0 +1,444 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
var _DtoCreateInvoiceRequest = _interopRequireDefault(require("../model/DtoCreateInvoiceRequest"));
|
|
9
|
+
var _DtoCustomerMultiCurrencyInvoiceSummary = _interopRequireDefault(require("../model/DtoCustomerMultiCurrencyInvoiceSummary"));
|
|
10
|
+
var _DtoGetPreviewInvoiceRequest = _interopRequireDefault(require("../model/DtoGetPreviewInvoiceRequest"));
|
|
11
|
+
var _DtoInvoiceResponse = _interopRequireDefault(require("../model/DtoInvoiceResponse"));
|
|
12
|
+
var _DtoListInvoicesResponse = _interopRequireDefault(require("../model/DtoListInvoicesResponse"));
|
|
13
|
+
var _DtoUpdatePaymentStatusRequest = _interopRequireDefault(require("../model/DtoUpdatePaymentStatusRequest"));
|
|
14
|
+
var _ErrorsErrorResponse = _interopRequireDefault(require("../model/ErrorsErrorResponse"));
|
|
15
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
16
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
17
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
18
|
+
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
|
|
19
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
20
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
21
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
|
|
22
|
+
* FlexPrice API
|
|
23
|
+
* FlexPrice API Service
|
|
24
|
+
*
|
|
25
|
+
* The version of the OpenAPI document: 1.0
|
|
26
|
+
*
|
|
27
|
+
*
|
|
28
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
29
|
+
* https://openapi-generator.tech
|
|
30
|
+
* Do not edit the class manually.
|
|
31
|
+
*
|
|
32
|
+
*/
|
|
33
|
+
/**
|
|
34
|
+
* Invoices service.
|
|
35
|
+
* @module api/InvoicesApi
|
|
36
|
+
* @version 1.0
|
|
37
|
+
*/
|
|
38
|
+
var InvoicesApi = exports["default"] = /*#__PURE__*/function () {
|
|
39
|
+
/**
|
|
40
|
+
* Constructs a new InvoicesApi.
|
|
41
|
+
* @alias module:api/InvoicesApi
|
|
42
|
+
* @class
|
|
43
|
+
* @param {module:ApiClient} [apiClient] Optional API client implementation to use,
|
|
44
|
+
* default to {@link module:ApiClient#instance} if unspecified.
|
|
45
|
+
*/
|
|
46
|
+
function InvoicesApi(apiClient) {
|
|
47
|
+
_classCallCheck(this, InvoicesApi);
|
|
48
|
+
this.apiClient = apiClient || _ApiClient["default"].instance;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Callback function to receive the result of the customersIdInvoicesSummaryGet operation.
|
|
53
|
+
* @callback module:api/InvoicesApi~customersIdInvoicesSummaryGetCallback
|
|
54
|
+
* @param {String} error Error message, if any.
|
|
55
|
+
* @param {module:model/DtoCustomerMultiCurrencyInvoiceSummary} data The data returned by the service call.
|
|
56
|
+
* @param {String} response The complete HTTP response.
|
|
57
|
+
*/
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Get a customer invoice summary
|
|
61
|
+
* Get a customer invoice summary
|
|
62
|
+
* @param {String} id Customer ID
|
|
63
|
+
* @param {module:api/InvoicesApi~customersIdInvoicesSummaryGetCallback} callback The callback function, accepting three arguments: error, data, response
|
|
64
|
+
* data is of type: {@link module:model/DtoCustomerMultiCurrencyInvoiceSummary}
|
|
65
|
+
*/
|
|
66
|
+
return _createClass(InvoicesApi, [{
|
|
67
|
+
key: "customersIdInvoicesSummaryGet",
|
|
68
|
+
value: function customersIdInvoicesSummaryGet(id, callback) {
|
|
69
|
+
var postBody = null;
|
|
70
|
+
// verify the required parameter 'id' is set
|
|
71
|
+
if (id === undefined || id === null) {
|
|
72
|
+
throw new Error("Missing the required parameter 'id' when calling customersIdInvoicesSummaryGet");
|
|
73
|
+
}
|
|
74
|
+
var pathParams = {
|
|
75
|
+
'id': id
|
|
76
|
+
};
|
|
77
|
+
var queryParams = {};
|
|
78
|
+
var headerParams = {};
|
|
79
|
+
var formParams = {};
|
|
80
|
+
var authNames = ['ApiKeyAuth'];
|
|
81
|
+
var contentTypes = [];
|
|
82
|
+
var accepts = ['application/json'];
|
|
83
|
+
var returnType = _DtoCustomerMultiCurrencyInvoiceSummary["default"];
|
|
84
|
+
return this.apiClient.callApi('/customers/{id}/invoices/summary', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* Callback function to receive the result of the invoicesGet operation.
|
|
89
|
+
* @callback module:api/InvoicesApi~invoicesGetCallback
|
|
90
|
+
* @param {String} error Error message, if any.
|
|
91
|
+
* @param {module:model/DtoListInvoicesResponse} data The data returned by the service call.
|
|
92
|
+
* @param {String} response The complete HTTP response.
|
|
93
|
+
*/
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* List invoices
|
|
97
|
+
* List invoices with optional filtering
|
|
98
|
+
* @param {Object} opts Optional parameters
|
|
99
|
+
* @param {Number} [amountDueGt]
|
|
100
|
+
* @param {Number} [amountRemainingGt]
|
|
101
|
+
* @param {String} [customerId]
|
|
102
|
+
* @param {String} [endTime]
|
|
103
|
+
* @param {String} [expand]
|
|
104
|
+
* @param {Array.<module:model/String>} [invoiceStatus]
|
|
105
|
+
* @param {module:model/String} [invoiceType]
|
|
106
|
+
* @param {Number} [limit]
|
|
107
|
+
* @param {Number} [offset]
|
|
108
|
+
* @param {module:model/String} [order]
|
|
109
|
+
* @param {Array.<module:model/String>} [paymentStatus]
|
|
110
|
+
* @param {String} [sort]
|
|
111
|
+
* @param {String} [startTime]
|
|
112
|
+
* @param {module:model/String} [status]
|
|
113
|
+
* @param {String} [subscriptionId]
|
|
114
|
+
* @param {module:api/InvoicesApi~invoicesGetCallback} callback The callback function, accepting three arguments: error, data, response
|
|
115
|
+
* data is of type: {@link module:model/DtoListInvoicesResponse}
|
|
116
|
+
*/
|
|
117
|
+
}, {
|
|
118
|
+
key: "invoicesGet",
|
|
119
|
+
value: function invoicesGet(opts, callback) {
|
|
120
|
+
opts = opts || {};
|
|
121
|
+
var postBody = null;
|
|
122
|
+
var pathParams = {};
|
|
123
|
+
var queryParams = {
|
|
124
|
+
'amount_due_gt': opts['amountDueGt'],
|
|
125
|
+
'amount_remaining_gt': opts['amountRemainingGt'],
|
|
126
|
+
'customer_id': opts['customerId'],
|
|
127
|
+
'end_time': opts['endTime'],
|
|
128
|
+
'expand': opts['expand'],
|
|
129
|
+
'invoice_status': this.apiClient.buildCollectionParam(opts['invoiceStatus'], 'csv'),
|
|
130
|
+
'invoice_type': opts['invoiceType'],
|
|
131
|
+
'limit': opts['limit'],
|
|
132
|
+
'offset': opts['offset'],
|
|
133
|
+
'order': opts['order'],
|
|
134
|
+
'payment_status': this.apiClient.buildCollectionParam(opts['paymentStatus'], 'csv'),
|
|
135
|
+
'sort': opts['sort'],
|
|
136
|
+
'start_time': opts['startTime'],
|
|
137
|
+
'status': opts['status'],
|
|
138
|
+
'subscription_id': opts['subscriptionId']
|
|
139
|
+
};
|
|
140
|
+
var headerParams = {};
|
|
141
|
+
var formParams = {};
|
|
142
|
+
var authNames = [];
|
|
143
|
+
var contentTypes = [];
|
|
144
|
+
var accepts = ['application/json'];
|
|
145
|
+
var returnType = _DtoListInvoicesResponse["default"];
|
|
146
|
+
return this.apiClient.callApi('/invoices', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* Callback function to receive the result of the invoicesIdFinalizePost operation.
|
|
151
|
+
* @callback module:api/InvoicesApi~invoicesIdFinalizePostCallback
|
|
152
|
+
* @param {String} error Error message, if any.
|
|
153
|
+
* @param {Object.<String, {String: Object}>} data The data returned by the service call.
|
|
154
|
+
* @param {String} response The complete HTTP response.
|
|
155
|
+
*/
|
|
156
|
+
|
|
157
|
+
/**
|
|
158
|
+
* Finalize an invoice
|
|
159
|
+
* Finalize a draft invoice
|
|
160
|
+
* @param {String} id Invoice ID
|
|
161
|
+
* @param {module:api/InvoicesApi~invoicesIdFinalizePostCallback} callback The callback function, accepting three arguments: error, data, response
|
|
162
|
+
* data is of type: {@link Object.<String, {String: Object}>}
|
|
163
|
+
*/
|
|
164
|
+
}, {
|
|
165
|
+
key: "invoicesIdFinalizePost",
|
|
166
|
+
value: function invoicesIdFinalizePost(id, callback) {
|
|
167
|
+
var postBody = null;
|
|
168
|
+
// verify the required parameter 'id' is set
|
|
169
|
+
if (id === undefined || id === null) {
|
|
170
|
+
throw new Error("Missing the required parameter 'id' when calling invoicesIdFinalizePost");
|
|
171
|
+
}
|
|
172
|
+
var pathParams = {
|
|
173
|
+
'id': id
|
|
174
|
+
};
|
|
175
|
+
var queryParams = {};
|
|
176
|
+
var headerParams = {};
|
|
177
|
+
var formParams = {};
|
|
178
|
+
var authNames = [];
|
|
179
|
+
var contentTypes = [];
|
|
180
|
+
var accepts = ['application/json'];
|
|
181
|
+
var returnType = {
|
|
182
|
+
'String': Object
|
|
183
|
+
};
|
|
184
|
+
return this.apiClient.callApi('/invoices/{id}/finalize', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* Callback function to receive the result of the invoicesIdGet operation.
|
|
189
|
+
* @callback module:api/InvoicesApi~invoicesIdGetCallback
|
|
190
|
+
* @param {String} error Error message, if any.
|
|
191
|
+
* @param {module:model/DtoInvoiceResponse} data The data returned by the service call.
|
|
192
|
+
* @param {String} response The complete HTTP response.
|
|
193
|
+
*/
|
|
194
|
+
|
|
195
|
+
/**
|
|
196
|
+
* Get an invoice by ID
|
|
197
|
+
* Get detailed information about an invoice
|
|
198
|
+
* @param {String} id Invoice ID
|
|
199
|
+
* @param {module:api/InvoicesApi~invoicesIdGetCallback} callback The callback function, accepting three arguments: error, data, response
|
|
200
|
+
* data is of type: {@link module:model/DtoInvoiceResponse}
|
|
201
|
+
*/
|
|
202
|
+
}, {
|
|
203
|
+
key: "invoicesIdGet",
|
|
204
|
+
value: function invoicesIdGet(id, callback) {
|
|
205
|
+
var postBody = null;
|
|
206
|
+
// verify the required parameter 'id' is set
|
|
207
|
+
if (id === undefined || id === null) {
|
|
208
|
+
throw new Error("Missing the required parameter 'id' when calling invoicesIdGet");
|
|
209
|
+
}
|
|
210
|
+
var pathParams = {
|
|
211
|
+
'id': id
|
|
212
|
+
};
|
|
213
|
+
var queryParams = {};
|
|
214
|
+
var headerParams = {};
|
|
215
|
+
var formParams = {};
|
|
216
|
+
var authNames = [];
|
|
217
|
+
var contentTypes = [];
|
|
218
|
+
var accepts = ['application/json'];
|
|
219
|
+
var returnType = _DtoInvoiceResponse["default"];
|
|
220
|
+
return this.apiClient.callApi('/invoices/{id}', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
/**
|
|
224
|
+
* Callback function to receive the result of the invoicesIdPaymentAttemptPost operation.
|
|
225
|
+
* @callback module:api/InvoicesApi~invoicesIdPaymentAttemptPostCallback
|
|
226
|
+
* @param {String} error Error message, if any.
|
|
227
|
+
* @param {Object.<String, {String: Object}>} data The data returned by the service call.
|
|
228
|
+
* @param {String} response The complete HTTP response.
|
|
229
|
+
*/
|
|
230
|
+
|
|
231
|
+
/**
|
|
232
|
+
* Attempt payment for an invoice
|
|
233
|
+
* Attempt to pay an invoice using customer's available wallets
|
|
234
|
+
* @param {String} id Invoice ID
|
|
235
|
+
* @param {module:api/InvoicesApi~invoicesIdPaymentAttemptPostCallback} callback The callback function, accepting three arguments: error, data, response
|
|
236
|
+
* data is of type: {@link Object.<String, {String: Object}>}
|
|
237
|
+
*/
|
|
238
|
+
}, {
|
|
239
|
+
key: "invoicesIdPaymentAttemptPost",
|
|
240
|
+
value: function invoicesIdPaymentAttemptPost(id, callback) {
|
|
241
|
+
var postBody = null;
|
|
242
|
+
// verify the required parameter 'id' is set
|
|
243
|
+
if (id === undefined || id === null) {
|
|
244
|
+
throw new Error("Missing the required parameter 'id' when calling invoicesIdPaymentAttemptPost");
|
|
245
|
+
}
|
|
246
|
+
var pathParams = {
|
|
247
|
+
'id': id
|
|
248
|
+
};
|
|
249
|
+
var queryParams = {};
|
|
250
|
+
var headerParams = {};
|
|
251
|
+
var formParams = {};
|
|
252
|
+
var authNames = [];
|
|
253
|
+
var contentTypes = [];
|
|
254
|
+
var accepts = ['application/json'];
|
|
255
|
+
var returnType = {
|
|
256
|
+
'String': Object
|
|
257
|
+
};
|
|
258
|
+
return this.apiClient.callApi('/invoices/{id}/payment/attempt', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* Callback function to receive the result of the invoicesIdPaymentPut operation.
|
|
263
|
+
* @callback module:api/InvoicesApi~invoicesIdPaymentPutCallback
|
|
264
|
+
* @param {String} error Error message, if any.
|
|
265
|
+
* @param {module:model/DtoInvoiceResponse} data The data returned by the service call.
|
|
266
|
+
* @param {String} response The complete HTTP response.
|
|
267
|
+
*/
|
|
268
|
+
|
|
269
|
+
/**
|
|
270
|
+
* Update invoice payment status
|
|
271
|
+
* Update the payment status of an invoice
|
|
272
|
+
* @param {String} id Invoice ID
|
|
273
|
+
* @param {module:model/DtoUpdatePaymentStatusRequest} request Payment Status Update Request
|
|
274
|
+
* @param {module:api/InvoicesApi~invoicesIdPaymentPutCallback} callback The callback function, accepting three arguments: error, data, response
|
|
275
|
+
* data is of type: {@link module:model/DtoInvoiceResponse}
|
|
276
|
+
*/
|
|
277
|
+
}, {
|
|
278
|
+
key: "invoicesIdPaymentPut",
|
|
279
|
+
value: function invoicesIdPaymentPut(id, request, callback) {
|
|
280
|
+
var postBody = request;
|
|
281
|
+
// verify the required parameter 'id' is set
|
|
282
|
+
if (id === undefined || id === null) {
|
|
283
|
+
throw new Error("Missing the required parameter 'id' when calling invoicesIdPaymentPut");
|
|
284
|
+
}
|
|
285
|
+
// verify the required parameter 'request' is set
|
|
286
|
+
if (request === undefined || request === null) {
|
|
287
|
+
throw new Error("Missing the required parameter 'request' when calling invoicesIdPaymentPut");
|
|
288
|
+
}
|
|
289
|
+
var pathParams = {
|
|
290
|
+
'id': id
|
|
291
|
+
};
|
|
292
|
+
var queryParams = {};
|
|
293
|
+
var headerParams = {};
|
|
294
|
+
var formParams = {};
|
|
295
|
+
var authNames = ['ApiKeyAuth'];
|
|
296
|
+
var contentTypes = ['application/json'];
|
|
297
|
+
var accepts = ['application/json'];
|
|
298
|
+
var returnType = _DtoInvoiceResponse["default"];
|
|
299
|
+
return this.apiClient.callApi('/invoices/{id}/payment', 'PUT', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
/**
|
|
303
|
+
* Callback function to receive the result of the invoicesIdPdfGet operation.
|
|
304
|
+
* @callback module:api/InvoicesApi~invoicesIdPdfGetCallback
|
|
305
|
+
* @param {String} error Error message, if any.
|
|
306
|
+
* @param {File} data The data returned by the service call.
|
|
307
|
+
* @param {String} response The complete HTTP response.
|
|
308
|
+
*/
|
|
309
|
+
|
|
310
|
+
/**
|
|
311
|
+
* Get PDF for an invoice
|
|
312
|
+
* Retrieve the PDF document for a specific invoice by its ID
|
|
313
|
+
* @param {String} id Invoice ID
|
|
314
|
+
* @param {module:api/InvoicesApi~invoicesIdPdfGetCallback} callback The callback function, accepting three arguments: error, data, response
|
|
315
|
+
* data is of type: {@link File}
|
|
316
|
+
*/
|
|
317
|
+
}, {
|
|
318
|
+
key: "invoicesIdPdfGet",
|
|
319
|
+
value: function invoicesIdPdfGet(id, callback) {
|
|
320
|
+
var postBody = null;
|
|
321
|
+
// verify the required parameter 'id' is set
|
|
322
|
+
if (id === undefined || id === null) {
|
|
323
|
+
throw new Error("Missing the required parameter 'id' when calling invoicesIdPdfGet");
|
|
324
|
+
}
|
|
325
|
+
var pathParams = {
|
|
326
|
+
'id': id
|
|
327
|
+
};
|
|
328
|
+
var queryParams = {};
|
|
329
|
+
var headerParams = {};
|
|
330
|
+
var formParams = {};
|
|
331
|
+
var authNames = [];
|
|
332
|
+
var contentTypes = [];
|
|
333
|
+
var accepts = ['*/*'];
|
|
334
|
+
var returnType = File;
|
|
335
|
+
return this.apiClient.callApi('/invoices/{id}/pdf', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
/**
|
|
339
|
+
* Callback function to receive the result of the invoicesIdVoidPost operation.
|
|
340
|
+
* @callback module:api/InvoicesApi~invoicesIdVoidPostCallback
|
|
341
|
+
* @param {String} error Error message, if any.
|
|
342
|
+
* @param {Object.<String, {String: Object}>} data The data returned by the service call.
|
|
343
|
+
* @param {String} response The complete HTTP response.
|
|
344
|
+
*/
|
|
345
|
+
|
|
346
|
+
/**
|
|
347
|
+
* Void an invoice
|
|
348
|
+
* Void an invoice that hasn't been paid
|
|
349
|
+
* @param {String} id Invoice ID
|
|
350
|
+
* @param {module:api/InvoicesApi~invoicesIdVoidPostCallback} callback The callback function, accepting three arguments: error, data, response
|
|
351
|
+
* data is of type: {@link Object.<String, {String: Object}>}
|
|
352
|
+
*/
|
|
353
|
+
}, {
|
|
354
|
+
key: "invoicesIdVoidPost",
|
|
355
|
+
value: function invoicesIdVoidPost(id, callback) {
|
|
356
|
+
var postBody = null;
|
|
357
|
+
// verify the required parameter 'id' is set
|
|
358
|
+
if (id === undefined || id === null) {
|
|
359
|
+
throw new Error("Missing the required parameter 'id' when calling invoicesIdVoidPost");
|
|
360
|
+
}
|
|
361
|
+
var pathParams = {
|
|
362
|
+
'id': id
|
|
363
|
+
};
|
|
364
|
+
var queryParams = {};
|
|
365
|
+
var headerParams = {};
|
|
366
|
+
var formParams = {};
|
|
367
|
+
var authNames = [];
|
|
368
|
+
var contentTypes = [];
|
|
369
|
+
var accepts = ['application/json'];
|
|
370
|
+
var returnType = {
|
|
371
|
+
'String': Object
|
|
372
|
+
};
|
|
373
|
+
return this.apiClient.callApi('/invoices/{id}/void', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
/**
|
|
377
|
+
* Callback function to receive the result of the invoicesPost operation.
|
|
378
|
+
* @callback module:api/InvoicesApi~invoicesPostCallback
|
|
379
|
+
* @param {String} error Error message, if any.
|
|
380
|
+
* @param {module:model/DtoInvoiceResponse} data The data returned by the service call.
|
|
381
|
+
* @param {String} response The complete HTTP response.
|
|
382
|
+
*/
|
|
383
|
+
|
|
384
|
+
/**
|
|
385
|
+
* Create a new invoice
|
|
386
|
+
* Create a new invoice with the provided details
|
|
387
|
+
* @param {module:model/DtoCreateInvoiceRequest} invoice Invoice details
|
|
388
|
+
* @param {module:api/InvoicesApi~invoicesPostCallback} callback The callback function, accepting three arguments: error, data, response
|
|
389
|
+
* data is of type: {@link module:model/DtoInvoiceResponse}
|
|
390
|
+
*/
|
|
391
|
+
}, {
|
|
392
|
+
key: "invoicesPost",
|
|
393
|
+
value: function invoicesPost(invoice, callback) {
|
|
394
|
+
var postBody = invoice;
|
|
395
|
+
// verify the required parameter 'invoice' is set
|
|
396
|
+
if (invoice === undefined || invoice === null) {
|
|
397
|
+
throw new Error("Missing the required parameter 'invoice' when calling invoicesPost");
|
|
398
|
+
}
|
|
399
|
+
var pathParams = {};
|
|
400
|
+
var queryParams = {};
|
|
401
|
+
var headerParams = {};
|
|
402
|
+
var formParams = {};
|
|
403
|
+
var authNames = [];
|
|
404
|
+
var contentTypes = ['application/json'];
|
|
405
|
+
var accepts = ['application/json'];
|
|
406
|
+
var returnType = _DtoInvoiceResponse["default"];
|
|
407
|
+
return this.apiClient.callApi('/invoices', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
/**
|
|
411
|
+
* Callback function to receive the result of the invoicesPreviewPost operation.
|
|
412
|
+
* @callback module:api/InvoicesApi~invoicesPreviewPostCallback
|
|
413
|
+
* @param {String} error Error message, if any.
|
|
414
|
+
* @param {module:model/DtoInvoiceResponse} data The data returned by the service call.
|
|
415
|
+
* @param {String} response The complete HTTP response.
|
|
416
|
+
*/
|
|
417
|
+
|
|
418
|
+
/**
|
|
419
|
+
* Get a preview invoice
|
|
420
|
+
* Get a preview invoice
|
|
421
|
+
* @param {module:model/DtoGetPreviewInvoiceRequest} request Preview Invoice Request
|
|
422
|
+
* @param {module:api/InvoicesApi~invoicesPreviewPostCallback} callback The callback function, accepting three arguments: error, data, response
|
|
423
|
+
* data is of type: {@link module:model/DtoInvoiceResponse}
|
|
424
|
+
*/
|
|
425
|
+
}, {
|
|
426
|
+
key: "invoicesPreviewPost",
|
|
427
|
+
value: function invoicesPreviewPost(request, callback) {
|
|
428
|
+
var postBody = request;
|
|
429
|
+
// verify the required parameter 'request' is set
|
|
430
|
+
if (request === undefined || request === null) {
|
|
431
|
+
throw new Error("Missing the required parameter 'request' when calling invoicesPreviewPost");
|
|
432
|
+
}
|
|
433
|
+
var pathParams = {};
|
|
434
|
+
var queryParams = {};
|
|
435
|
+
var headerParams = {};
|
|
436
|
+
var formParams = {};
|
|
437
|
+
var authNames = [];
|
|
438
|
+
var contentTypes = ['application/json'];
|
|
439
|
+
var accepts = ['application/json'];
|
|
440
|
+
var returnType = _DtoInvoiceResponse["default"];
|
|
441
|
+
return this.apiClient.callApi('/invoices/preview', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
442
|
+
}
|
|
443
|
+
}]);
|
|
444
|
+
}();
|