@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,116 @@
|
|
|
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 _DtoAuthResponse = _interopRequireDefault(require("../model/DtoAuthResponse"));
|
|
9
|
+
var _DtoLoginRequest = _interopRequireDefault(require("../model/DtoLoginRequest"));
|
|
10
|
+
var _DtoSignUpRequest = _interopRequireDefault(require("../model/DtoSignUpRequest"));
|
|
11
|
+
var _ErrorsErrorResponse = _interopRequireDefault(require("../model/ErrorsErrorResponse"));
|
|
12
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
13
|
+
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); }
|
|
14
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
15
|
+
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); } }
|
|
16
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
17
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
18
|
+
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); } /**
|
|
19
|
+
* FlexPrice API
|
|
20
|
+
* FlexPrice API Service
|
|
21
|
+
*
|
|
22
|
+
* The version of the OpenAPI document: 1.0
|
|
23
|
+
*
|
|
24
|
+
*
|
|
25
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
26
|
+
* https://openapi-generator.tech
|
|
27
|
+
* Do not edit the class manually.
|
|
28
|
+
*
|
|
29
|
+
*/
|
|
30
|
+
/**
|
|
31
|
+
* Auth service.
|
|
32
|
+
* @module api/AuthApi
|
|
33
|
+
* @version 1.0
|
|
34
|
+
*/
|
|
35
|
+
var AuthApi = exports["default"] = /*#__PURE__*/function () {
|
|
36
|
+
/**
|
|
37
|
+
* Constructs a new AuthApi.
|
|
38
|
+
* @alias module:api/AuthApi
|
|
39
|
+
* @class
|
|
40
|
+
* @param {module:ApiClient} [apiClient] Optional API client implementation to use,
|
|
41
|
+
* default to {@link module:ApiClient#instance} if unspecified.
|
|
42
|
+
*/
|
|
43
|
+
function AuthApi(apiClient) {
|
|
44
|
+
_classCallCheck(this, AuthApi);
|
|
45
|
+
this.apiClient = apiClient || _ApiClient["default"].instance;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Callback function to receive the result of the authLoginPost operation.
|
|
50
|
+
* @callback module:api/AuthApi~authLoginPostCallback
|
|
51
|
+
* @param {String} error Error message, if any.
|
|
52
|
+
* @param {module:model/DtoAuthResponse} data The data returned by the service call.
|
|
53
|
+
* @param {String} response The complete HTTP response.
|
|
54
|
+
*/
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Login
|
|
58
|
+
* Login a user
|
|
59
|
+
* @param {module:model/DtoLoginRequest} login Login request
|
|
60
|
+
* @param {module:api/AuthApi~authLoginPostCallback} callback The callback function, accepting three arguments: error, data, response
|
|
61
|
+
* data is of type: {@link module:model/DtoAuthResponse}
|
|
62
|
+
*/
|
|
63
|
+
return _createClass(AuthApi, [{
|
|
64
|
+
key: "authLoginPost",
|
|
65
|
+
value: function authLoginPost(login, callback) {
|
|
66
|
+
var postBody = login;
|
|
67
|
+
// verify the required parameter 'login' is set
|
|
68
|
+
if (login === undefined || login === null) {
|
|
69
|
+
throw new Error("Missing the required parameter 'login' when calling authLoginPost");
|
|
70
|
+
}
|
|
71
|
+
var pathParams = {};
|
|
72
|
+
var queryParams = {};
|
|
73
|
+
var headerParams = {};
|
|
74
|
+
var formParams = {};
|
|
75
|
+
var authNames = [];
|
|
76
|
+
var contentTypes = ['application/json'];
|
|
77
|
+
var accepts = ['application/json'];
|
|
78
|
+
var returnType = _DtoAuthResponse["default"];
|
|
79
|
+
return this.apiClient.callApi('/auth/login', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Callback function to receive the result of the authSignupPost operation.
|
|
84
|
+
* @callback module:api/AuthApi~authSignupPostCallback
|
|
85
|
+
* @param {String} error Error message, if any.
|
|
86
|
+
* @param {module:model/DtoAuthResponse} data The data returned by the service call.
|
|
87
|
+
* @param {String} response The complete HTTP response.
|
|
88
|
+
*/
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* Sign up
|
|
92
|
+
* Sign up a new user
|
|
93
|
+
* @param {module:model/DtoSignUpRequest} signup Sign up request
|
|
94
|
+
* @param {module:api/AuthApi~authSignupPostCallback} callback The callback function, accepting three arguments: error, data, response
|
|
95
|
+
* data is of type: {@link module:model/DtoAuthResponse}
|
|
96
|
+
*/
|
|
97
|
+
}, {
|
|
98
|
+
key: "authSignupPost",
|
|
99
|
+
value: function authSignupPost(signup, callback) {
|
|
100
|
+
var postBody = signup;
|
|
101
|
+
// verify the required parameter 'signup' is set
|
|
102
|
+
if (signup === undefined || signup === null) {
|
|
103
|
+
throw new Error("Missing the required parameter 'signup' when calling authSignupPost");
|
|
104
|
+
}
|
|
105
|
+
var pathParams = {};
|
|
106
|
+
var queryParams = {};
|
|
107
|
+
var headerParams = {};
|
|
108
|
+
var formParams = {};
|
|
109
|
+
var authNames = [];
|
|
110
|
+
var contentTypes = ['application/json'];
|
|
111
|
+
var accepts = ['application/json'];
|
|
112
|
+
var returnType = _DtoAuthResponse["default"];
|
|
113
|
+
return this.apiClient.callApi('/auth/signup', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
114
|
+
}
|
|
115
|
+
}]);
|
|
116
|
+
}();
|
|
@@ -0,0 +1,373 @@
|
|
|
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 _DtoCreateCustomerRequest = _interopRequireDefault(require("../model/DtoCreateCustomerRequest"));
|
|
9
|
+
var _DtoCustomerEntitlementsResponse = _interopRequireDefault(require("../model/DtoCustomerEntitlementsResponse"));
|
|
10
|
+
var _DtoCustomerResponse = _interopRequireDefault(require("../model/DtoCustomerResponse"));
|
|
11
|
+
var _DtoCustomerUsageSummaryResponse = _interopRequireDefault(require("../model/DtoCustomerUsageSummaryResponse"));
|
|
12
|
+
var _DtoListCustomersResponse = _interopRequireDefault(require("../model/DtoListCustomersResponse"));
|
|
13
|
+
var _DtoUpdateCustomerRequest = _interopRequireDefault(require("../model/DtoUpdateCustomerRequest"));
|
|
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
|
+
* Customers service.
|
|
35
|
+
* @module api/CustomersApi
|
|
36
|
+
* @version 1.0
|
|
37
|
+
*/
|
|
38
|
+
var CustomersApi = exports["default"] = /*#__PURE__*/function () {
|
|
39
|
+
/**
|
|
40
|
+
* Constructs a new CustomersApi.
|
|
41
|
+
* @alias module:api/CustomersApi
|
|
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 CustomersApi(apiClient) {
|
|
47
|
+
_classCallCheck(this, CustomersApi);
|
|
48
|
+
this.apiClient = apiClient || _ApiClient["default"].instance;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Callback function to receive the result of the customersGet operation.
|
|
53
|
+
* @callback module:api/CustomersApi~customersGetCallback
|
|
54
|
+
* @param {String} error Error message, if any.
|
|
55
|
+
* @param {module:model/DtoListCustomersResponse} data The data returned by the service call.
|
|
56
|
+
* @param {String} response The complete HTTP response.
|
|
57
|
+
*/
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Get customers
|
|
61
|
+
* Get customers
|
|
62
|
+
* @param {Object} opts Optional parameters
|
|
63
|
+
* @param {Array.<String>} [customerIds]
|
|
64
|
+
* @param {String} [email]
|
|
65
|
+
* @param {String} [endTime]
|
|
66
|
+
* @param {String} [expand]
|
|
67
|
+
* @param {String} [externalId]
|
|
68
|
+
* @param {Number} [limit]
|
|
69
|
+
* @param {Number} [offset]
|
|
70
|
+
* @param {module:model/String} [order]
|
|
71
|
+
* @param {String} [sort]
|
|
72
|
+
* @param {String} [startTime]
|
|
73
|
+
* @param {module:model/String} [status]
|
|
74
|
+
* @param {module:api/CustomersApi~customersGetCallback} callback The callback function, accepting three arguments: error, data, response
|
|
75
|
+
* data is of type: {@link module:model/DtoListCustomersResponse}
|
|
76
|
+
*/
|
|
77
|
+
return _createClass(CustomersApi, [{
|
|
78
|
+
key: "customersGet",
|
|
79
|
+
value: function customersGet(opts, callback) {
|
|
80
|
+
opts = opts || {};
|
|
81
|
+
var postBody = null;
|
|
82
|
+
var pathParams = {};
|
|
83
|
+
var queryParams = {
|
|
84
|
+
'customer_ids': this.apiClient.buildCollectionParam(opts['customerIds'], 'csv'),
|
|
85
|
+
'email': opts['email'],
|
|
86
|
+
'end_time': opts['endTime'],
|
|
87
|
+
'expand': opts['expand'],
|
|
88
|
+
'external_id': opts['externalId'],
|
|
89
|
+
'limit': opts['limit'],
|
|
90
|
+
'offset': opts['offset'],
|
|
91
|
+
'order': opts['order'],
|
|
92
|
+
'sort': opts['sort'],
|
|
93
|
+
'start_time': opts['startTime'],
|
|
94
|
+
'status': opts['status']
|
|
95
|
+
};
|
|
96
|
+
var headerParams = {};
|
|
97
|
+
var formParams = {};
|
|
98
|
+
var authNames = ['ApiKeyAuth'];
|
|
99
|
+
var contentTypes = [];
|
|
100
|
+
var accepts = ['application/json'];
|
|
101
|
+
var returnType = _DtoListCustomersResponse["default"];
|
|
102
|
+
return this.apiClient.callApi('/customers', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* Callback function to receive the result of the customersIdDelete operation.
|
|
107
|
+
* @callback module:api/CustomersApi~customersIdDeleteCallback
|
|
108
|
+
* @param {String} error Error message, if any.
|
|
109
|
+
* @param data This operation does not return a value.
|
|
110
|
+
* @param {String} response The complete HTTP response.
|
|
111
|
+
*/
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* Delete a customer
|
|
115
|
+
* Delete a customer
|
|
116
|
+
* @param {String} id Customer ID
|
|
117
|
+
* @param {module:api/CustomersApi~customersIdDeleteCallback} callback The callback function, accepting three arguments: error, data, response
|
|
118
|
+
*/
|
|
119
|
+
}, {
|
|
120
|
+
key: "customersIdDelete",
|
|
121
|
+
value: function customersIdDelete(id, callback) {
|
|
122
|
+
var postBody = null;
|
|
123
|
+
// verify the required parameter 'id' is set
|
|
124
|
+
if (id === undefined || id === null) {
|
|
125
|
+
throw new Error("Missing the required parameter 'id' when calling customersIdDelete");
|
|
126
|
+
}
|
|
127
|
+
var pathParams = {
|
|
128
|
+
'id': id
|
|
129
|
+
};
|
|
130
|
+
var queryParams = {};
|
|
131
|
+
var headerParams = {};
|
|
132
|
+
var formParams = {};
|
|
133
|
+
var authNames = ['ApiKeyAuth'];
|
|
134
|
+
var contentTypes = [];
|
|
135
|
+
var accepts = ['application/json'];
|
|
136
|
+
var returnType = null;
|
|
137
|
+
return this.apiClient.callApi('/customers/{id}', 'DELETE', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* Callback function to receive the result of the customersIdEntitlementsGet operation.
|
|
142
|
+
* @callback module:api/CustomersApi~customersIdEntitlementsGetCallback
|
|
143
|
+
* @param {String} error Error message, if any.
|
|
144
|
+
* @param {module:model/DtoCustomerEntitlementsResponse} data The data returned by the service call.
|
|
145
|
+
* @param {String} response The complete HTTP response.
|
|
146
|
+
*/
|
|
147
|
+
|
|
148
|
+
/**
|
|
149
|
+
* Get customer entitlements
|
|
150
|
+
* Get customer entitlements
|
|
151
|
+
* @param {String} id Customer ID
|
|
152
|
+
* @param {Object} opts Optional parameters
|
|
153
|
+
* @param {Array.<String>} [featureIds]
|
|
154
|
+
* @param {Array.<String>} [subscriptionIds]
|
|
155
|
+
* @param {module:api/CustomersApi~customersIdEntitlementsGetCallback} callback The callback function, accepting three arguments: error, data, response
|
|
156
|
+
* data is of type: {@link module:model/DtoCustomerEntitlementsResponse}
|
|
157
|
+
*/
|
|
158
|
+
}, {
|
|
159
|
+
key: "customersIdEntitlementsGet",
|
|
160
|
+
value: function customersIdEntitlementsGet(id, opts, callback) {
|
|
161
|
+
opts = opts || {};
|
|
162
|
+
var postBody = null;
|
|
163
|
+
// verify the required parameter 'id' is set
|
|
164
|
+
if (id === undefined || id === null) {
|
|
165
|
+
throw new Error("Missing the required parameter 'id' when calling customersIdEntitlementsGet");
|
|
166
|
+
}
|
|
167
|
+
var pathParams = {
|
|
168
|
+
'id': id
|
|
169
|
+
};
|
|
170
|
+
var queryParams = {
|
|
171
|
+
'feature_ids': this.apiClient.buildCollectionParam(opts['featureIds'], 'csv'),
|
|
172
|
+
'subscription_ids': this.apiClient.buildCollectionParam(opts['subscriptionIds'], 'csv')
|
|
173
|
+
};
|
|
174
|
+
var headerParams = {};
|
|
175
|
+
var formParams = {};
|
|
176
|
+
var authNames = ['ApiKeyAuth'];
|
|
177
|
+
var contentTypes = [];
|
|
178
|
+
var accepts = ['application/json'];
|
|
179
|
+
var returnType = _DtoCustomerEntitlementsResponse["default"];
|
|
180
|
+
return this.apiClient.callApi('/customers/{id}/entitlements', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* Callback function to receive the result of the customersIdGet operation.
|
|
185
|
+
* @callback module:api/CustomersApi~customersIdGetCallback
|
|
186
|
+
* @param {String} error Error message, if any.
|
|
187
|
+
* @param {module:model/DtoCustomerResponse} data The data returned by the service call.
|
|
188
|
+
* @param {String} response The complete HTTP response.
|
|
189
|
+
*/
|
|
190
|
+
|
|
191
|
+
/**
|
|
192
|
+
* Get a customer
|
|
193
|
+
* Get a customer
|
|
194
|
+
* @param {String} id Customer ID
|
|
195
|
+
* @param {module:api/CustomersApi~customersIdGetCallback} callback The callback function, accepting three arguments: error, data, response
|
|
196
|
+
* data is of type: {@link module:model/DtoCustomerResponse}
|
|
197
|
+
*/
|
|
198
|
+
}, {
|
|
199
|
+
key: "customersIdGet",
|
|
200
|
+
value: function customersIdGet(id, callback) {
|
|
201
|
+
var postBody = null;
|
|
202
|
+
// verify the required parameter 'id' is set
|
|
203
|
+
if (id === undefined || id === null) {
|
|
204
|
+
throw new Error("Missing the required parameter 'id' when calling customersIdGet");
|
|
205
|
+
}
|
|
206
|
+
var pathParams = {
|
|
207
|
+
'id': id
|
|
208
|
+
};
|
|
209
|
+
var queryParams = {};
|
|
210
|
+
var headerParams = {};
|
|
211
|
+
var formParams = {};
|
|
212
|
+
var authNames = ['ApiKeyAuth'];
|
|
213
|
+
var contentTypes = [];
|
|
214
|
+
var accepts = ['application/json'];
|
|
215
|
+
var returnType = _DtoCustomerResponse["default"];
|
|
216
|
+
return this.apiClient.callApi('/customers/{id}', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* Callback function to receive the result of the customersIdPut operation.
|
|
221
|
+
* @callback module:api/CustomersApi~customersIdPutCallback
|
|
222
|
+
* @param {String} error Error message, if any.
|
|
223
|
+
* @param {module:model/DtoCustomerResponse} data The data returned by the service call.
|
|
224
|
+
* @param {String} response The complete HTTP response.
|
|
225
|
+
*/
|
|
226
|
+
|
|
227
|
+
/**
|
|
228
|
+
* Update a customer
|
|
229
|
+
* Update a customer
|
|
230
|
+
* @param {String} id Customer ID
|
|
231
|
+
* @param {module:model/DtoUpdateCustomerRequest} customer Customer
|
|
232
|
+
* @param {module:api/CustomersApi~customersIdPutCallback} callback The callback function, accepting three arguments: error, data, response
|
|
233
|
+
* data is of type: {@link module:model/DtoCustomerResponse}
|
|
234
|
+
*/
|
|
235
|
+
}, {
|
|
236
|
+
key: "customersIdPut",
|
|
237
|
+
value: function customersIdPut(id, customer, callback) {
|
|
238
|
+
var postBody = customer;
|
|
239
|
+
// verify the required parameter 'id' is set
|
|
240
|
+
if (id === undefined || id === null) {
|
|
241
|
+
throw new Error("Missing the required parameter 'id' when calling customersIdPut");
|
|
242
|
+
}
|
|
243
|
+
// verify the required parameter 'customer' is set
|
|
244
|
+
if (customer === undefined || customer === null) {
|
|
245
|
+
throw new Error("Missing the required parameter 'customer' when calling customersIdPut");
|
|
246
|
+
}
|
|
247
|
+
var pathParams = {
|
|
248
|
+
'id': id
|
|
249
|
+
};
|
|
250
|
+
var queryParams = {};
|
|
251
|
+
var headerParams = {};
|
|
252
|
+
var formParams = {};
|
|
253
|
+
var authNames = ['ApiKeyAuth'];
|
|
254
|
+
var contentTypes = ['application/json'];
|
|
255
|
+
var accepts = ['application/json'];
|
|
256
|
+
var returnType = _DtoCustomerResponse["default"];
|
|
257
|
+
return this.apiClient.callApi('/customers/{id}', 'PUT', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
/**
|
|
261
|
+
* Callback function to receive the result of the customersIdUsageGet operation.
|
|
262
|
+
* @callback module:api/CustomersApi~customersIdUsageGetCallback
|
|
263
|
+
* @param {String} error Error message, if any.
|
|
264
|
+
* @param {module:model/DtoCustomerUsageSummaryResponse} data The data returned by the service call.
|
|
265
|
+
* @param {String} response The complete HTTP response.
|
|
266
|
+
*/
|
|
267
|
+
|
|
268
|
+
/**
|
|
269
|
+
* Get customer usage summary
|
|
270
|
+
* Get customer usage summary
|
|
271
|
+
* @param {String} id Customer ID
|
|
272
|
+
* @param {Object} opts Optional parameters
|
|
273
|
+
* @param {Array.<String>} [featureIds]
|
|
274
|
+
* @param {Array.<String>} [subscriptionIds]
|
|
275
|
+
* @param {module:api/CustomersApi~customersIdUsageGetCallback} callback The callback function, accepting three arguments: error, data, response
|
|
276
|
+
* data is of type: {@link module:model/DtoCustomerUsageSummaryResponse}
|
|
277
|
+
*/
|
|
278
|
+
}, {
|
|
279
|
+
key: "customersIdUsageGet",
|
|
280
|
+
value: function customersIdUsageGet(id, opts, callback) {
|
|
281
|
+
opts = opts || {};
|
|
282
|
+
var postBody = null;
|
|
283
|
+
// verify the required parameter 'id' is set
|
|
284
|
+
if (id === undefined || id === null) {
|
|
285
|
+
throw new Error("Missing the required parameter 'id' when calling customersIdUsageGet");
|
|
286
|
+
}
|
|
287
|
+
var pathParams = {
|
|
288
|
+
'id': id
|
|
289
|
+
};
|
|
290
|
+
var queryParams = {
|
|
291
|
+
'feature_ids': this.apiClient.buildCollectionParam(opts['featureIds'], 'csv'),
|
|
292
|
+
'subscription_ids': this.apiClient.buildCollectionParam(opts['subscriptionIds'], 'csv')
|
|
293
|
+
};
|
|
294
|
+
var headerParams = {};
|
|
295
|
+
var formParams = {};
|
|
296
|
+
var authNames = ['ApiKeyAuth'];
|
|
297
|
+
var contentTypes = [];
|
|
298
|
+
var accepts = ['application/json'];
|
|
299
|
+
var returnType = _DtoCustomerUsageSummaryResponse["default"];
|
|
300
|
+
return this.apiClient.callApi('/customers/{id}/usage', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
/**
|
|
304
|
+
* Callback function to receive the result of the customersLookupLookupKeyGet operation.
|
|
305
|
+
* @callback module:api/CustomersApi~customersLookupLookupKeyGetCallback
|
|
306
|
+
* @param {String} error Error message, if any.
|
|
307
|
+
* @param {module:model/DtoCustomerResponse} data The data returned by the service call.
|
|
308
|
+
* @param {String} response The complete HTTP response.
|
|
309
|
+
*/
|
|
310
|
+
|
|
311
|
+
/**
|
|
312
|
+
* Get a customer by lookup key
|
|
313
|
+
* Get a customer by lookup key (external_id)
|
|
314
|
+
* @param {String} lookupKey Customer Lookup Key (external_id)
|
|
315
|
+
* @param {module:api/CustomersApi~customersLookupLookupKeyGetCallback} callback The callback function, accepting three arguments: error, data, response
|
|
316
|
+
* data is of type: {@link module:model/DtoCustomerResponse}
|
|
317
|
+
*/
|
|
318
|
+
}, {
|
|
319
|
+
key: "customersLookupLookupKeyGet",
|
|
320
|
+
value: function customersLookupLookupKeyGet(lookupKey, callback) {
|
|
321
|
+
var postBody = null;
|
|
322
|
+
// verify the required parameter 'lookupKey' is set
|
|
323
|
+
if (lookupKey === undefined || lookupKey === null) {
|
|
324
|
+
throw new Error("Missing the required parameter 'lookupKey' when calling customersLookupLookupKeyGet");
|
|
325
|
+
}
|
|
326
|
+
var pathParams = {
|
|
327
|
+
'lookup_key': lookupKey
|
|
328
|
+
};
|
|
329
|
+
var queryParams = {};
|
|
330
|
+
var headerParams = {};
|
|
331
|
+
var formParams = {};
|
|
332
|
+
var authNames = ['ApiKeyAuth'];
|
|
333
|
+
var contentTypes = [];
|
|
334
|
+
var accepts = ['application/json'];
|
|
335
|
+
var returnType = _DtoCustomerResponse["default"];
|
|
336
|
+
return this.apiClient.callApi('/customers/lookup/{lookup_key}', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
/**
|
|
340
|
+
* Callback function to receive the result of the customersPost operation.
|
|
341
|
+
* @callback module:api/CustomersApi~customersPostCallback
|
|
342
|
+
* @param {String} error Error message, if any.
|
|
343
|
+
* @param {module:model/DtoCustomerResponse} data The data returned by the service call.
|
|
344
|
+
* @param {String} response The complete HTTP response.
|
|
345
|
+
*/
|
|
346
|
+
|
|
347
|
+
/**
|
|
348
|
+
* Create a customer
|
|
349
|
+
* Create a customer
|
|
350
|
+
* @param {module:model/DtoCreateCustomerRequest} customer Customer
|
|
351
|
+
* @param {module:api/CustomersApi~customersPostCallback} callback The callback function, accepting three arguments: error, data, response
|
|
352
|
+
* data is of type: {@link module:model/DtoCustomerResponse}
|
|
353
|
+
*/
|
|
354
|
+
}, {
|
|
355
|
+
key: "customersPost",
|
|
356
|
+
value: function customersPost(customer, callback) {
|
|
357
|
+
var postBody = customer;
|
|
358
|
+
// verify the required parameter 'customer' is set
|
|
359
|
+
if (customer === undefined || customer === null) {
|
|
360
|
+
throw new Error("Missing the required parameter 'customer' when calling customersPost");
|
|
361
|
+
}
|
|
362
|
+
var pathParams = {};
|
|
363
|
+
var queryParams = {};
|
|
364
|
+
var headerParams = {};
|
|
365
|
+
var formParams = {};
|
|
366
|
+
var authNames = ['ApiKeyAuth'];
|
|
367
|
+
var contentTypes = ['application/json'];
|
|
368
|
+
var accepts = ['application/json'];
|
|
369
|
+
var returnType = _DtoCustomerResponse["default"];
|
|
370
|
+
return this.apiClient.callApi('/customers', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null, callback);
|
|
371
|
+
}
|
|
372
|
+
}]);
|
|
373
|
+
}();
|