@blues-inc/notehub-js 1.0.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.
- package/README.md +297 -0
- package/dist/ApiClient.js +699 -0
- package/dist/api/AuthorizationApi.js +74 -0
- package/dist/api/BillingAccountApi.js +68 -0
- package/dist/api/DeviceApi.js +784 -0
- package/dist/api/DevicesApi.js +293 -0
- package/dist/api/EnvironmentVariablesApi.js +567 -0
- package/dist/api/EventApi.js +284 -0
- package/dist/api/FilesApi.js +193 -0
- package/dist/api/FleetApi.js +715 -0
- package/dist/api/NotesApi.js +435 -0
- package/dist/api/ProductApi.js +163 -0
- package/dist/api/ProjectApi.js +716 -0
- package/dist/api/RouteApi.js +266 -0
- package/dist/index.js +566 -0
- package/dist/model/Aws.js +233 -0
- package/dist/model/Azure.js +166 -0
- package/dist/model/BillingAccount.js +130 -0
- package/dist/model/BillingAccountRole.js +42 -0
- package/dist/model/Body.js +78 -0
- package/dist/model/Contact.js +118 -0
- package/dist/model/CreateFleetRequest.js +83 -0
- package/dist/model/CreateProductRequest.js +142 -0
- package/dist/model/CreateProjectRequest.js +119 -0
- package/dist/model/DFUEnv.js +97 -0
- package/dist/model/DFUState.js +276 -0
- package/dist/model/DeleteDeviceFleetsRequest.js +106 -0
- package/dist/model/Device.js +267 -0
- package/dist/model/DeviceSession.js +537 -0
- package/dist/model/DeviceTowerInfo.js +102 -0
- package/dist/model/DeviceUsage.js +150 -0
- package/dist/model/EnvironmentVariables.js +103 -0
- package/dist/model/Error.js +164 -0
- package/dist/model/Event.js +676 -0
- package/dist/model/Fleet.js +129 -0
- package/dist/model/GetBillingAccounts200Response.js +103 -0
- package/dist/model/GetDeviceEnvironmentVariables200Response.js +117 -0
- package/dist/model/GetDeviceHealthLog200Response.js +123 -0
- package/dist/model/GetDeviceHealthLog200ResponseHealthLogInner.js +125 -0
- package/dist/model/GetDeviceLatest200Response.js +104 -0
- package/dist/model/GetDevicePublicKey200Response.js +119 -0
- package/dist/model/GetDeviceSessions200Response.js +133 -0
- package/dist/model/GetProjectDevicePublicKeys200Response.js +133 -0
- package/dist/model/GetProjectDevicePublicKeys200ResponseDevicePublicKeysInner.js +94 -0
- package/dist/model/GetProjectDevices200Response.js +133 -0
- package/dist/model/GetProjectEvents200Response.js +149 -0
- package/dist/model/GetProjectEventsByCursor200Response.js +149 -0
- package/dist/model/GetProjectFleets200Response.js +123 -0
- package/dist/model/GetProjectMembers200Response.js +123 -0
- package/dist/model/GetProjectProducts200Response.js +103 -0
- package/dist/model/GetProjects200Response.js +103 -0
- package/dist/model/Google.js +142 -0
- package/dist/model/HandleNoteChanges200Response.js +97 -0
- package/dist/model/HandleNoteGet200Response.js +101 -0
- package/dist/model/HandleNoteSignal200Response.js +79 -0
- package/dist/model/HandleNotefileChanges200Response.js +97 -0
- package/dist/model/HandleNotefileChangesPending200Response.js +106 -0
- package/dist/model/HandleNotefileDeleteRequest.js +83 -0
- package/dist/model/Http.js +163 -0
- package/dist/model/HttpFilter.js +128 -0
- package/dist/model/HttpTransform.js +139 -0
- package/dist/model/Location.js +167 -0
- package/dist/model/Login200Response.js +82 -0
- package/dist/model/LoginRequest.js +94 -0
- package/dist/model/Mqtt.js +240 -0
- package/dist/model/Note.js +90 -0
- package/dist/model/Product.js +141 -0
- package/dist/model/Project.js +165 -0
- package/dist/model/ProjectMember.js +131 -0
- package/dist/model/Proxy.js +128 -0
- package/dist/model/PutDeviceFleetsRequest.js +106 -0
- package/dist/model/Radresponder.js +130 -0
- package/dist/model/Role.js +43 -0
- package/dist/model/Route.js +245 -0
- package/dist/model/RouteSchema.js +427 -0
- package/dist/model/Snowflake.js +185 -0
- package/dist/model/SnowflakeTransform.js +97 -0
- package/dist/model/Thingworx.js +154 -0
- package/dist/model/TowerLocation.js +204 -0
- package/dist/model/Twilio.js +181 -0
- package/dist/model/UpdateFleetRequest.js +109 -0
- package/dist/model/UserDbRoute.js +131 -0
- package/package.json +49 -0
|
@@ -0,0 +1,74 @@
|
|
|
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 _Login200Response = _interopRequireDefault(require("../model/Login200Response"));
|
|
9
|
+
var _LoginRequest = _interopRequireDefault(require("../model/LoginRequest"));
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
11
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
12
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
13
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
14
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
15
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
16
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
17
|
+
/**
|
|
18
|
+
* Authorization service.
|
|
19
|
+
* @module api/AuthorizationApi
|
|
20
|
+
* @version 1.0.4
|
|
21
|
+
*/
|
|
22
|
+
var AuthorizationApi = /*#__PURE__*/function () {
|
|
23
|
+
/**
|
|
24
|
+
* Constructs a new AuthorizationApi.
|
|
25
|
+
* @alias module:api/AuthorizationApi
|
|
26
|
+
* @class
|
|
27
|
+
* @param {module:ApiClient} [apiClient] Optional API client implementation to use,
|
|
28
|
+
* default to {@link module:ApiClient#instance} if unspecified.
|
|
29
|
+
*/
|
|
30
|
+
function AuthorizationApi(apiClient) {
|
|
31
|
+
_classCallCheck(this, AuthorizationApi);
|
|
32
|
+
this.apiClient = apiClient || _ApiClient["default"].instance;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Gets a session token from the API from a username and password.
|
|
37
|
+
* @param {module:model/LoginRequest} loginRequest
|
|
38
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/Login200Response} and HTTP response
|
|
39
|
+
*/
|
|
40
|
+
_createClass(AuthorizationApi, [{
|
|
41
|
+
key: "loginWithHttpInfo",
|
|
42
|
+
value: function loginWithHttpInfo(loginRequest) {
|
|
43
|
+
var postBody = loginRequest;
|
|
44
|
+
// verify the required parameter 'loginRequest' is set
|
|
45
|
+
if (loginRequest === undefined || loginRequest === null) {
|
|
46
|
+
throw new Error("Missing the required parameter 'loginRequest' when calling login");
|
|
47
|
+
}
|
|
48
|
+
var pathParams = {};
|
|
49
|
+
var queryParams = {};
|
|
50
|
+
var headerParams = {};
|
|
51
|
+
var formParams = {};
|
|
52
|
+
var authNames = [];
|
|
53
|
+
var contentTypes = ['application/json'];
|
|
54
|
+
var accepts = ['application/json'];
|
|
55
|
+
var returnType = _Login200Response["default"];
|
|
56
|
+
return this.apiClient.callApi('/auth/login', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Gets a session token from the API from a username and password.
|
|
61
|
+
* @param {module:model/LoginRequest} loginRequest
|
|
62
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/Login200Response}
|
|
63
|
+
*/
|
|
64
|
+
}, {
|
|
65
|
+
key: "login",
|
|
66
|
+
value: function login(loginRequest) {
|
|
67
|
+
return this.loginWithHttpInfo(loginRequest).then(function (response_and_data) {
|
|
68
|
+
return response_and_data.data;
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
}]);
|
|
72
|
+
return AuthorizationApi;
|
|
73
|
+
}();
|
|
74
|
+
exports["default"] = AuthorizationApi;
|
|
@@ -0,0 +1,68 @@
|
|
|
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 _Error = _interopRequireDefault(require("../model/Error"));
|
|
9
|
+
var _GetBillingAccounts200Response = _interopRequireDefault(require("../model/GetBillingAccounts200Response"));
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
11
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
12
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
13
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
14
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
15
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
16
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
17
|
+
/**
|
|
18
|
+
* BillingAccount service.
|
|
19
|
+
* @module api/BillingAccountApi
|
|
20
|
+
* @version 1.0.4
|
|
21
|
+
*/
|
|
22
|
+
var BillingAccountApi = /*#__PURE__*/function () {
|
|
23
|
+
/**
|
|
24
|
+
* Constructs a new BillingAccountApi.
|
|
25
|
+
* @alias module:api/BillingAccountApi
|
|
26
|
+
* @class
|
|
27
|
+
* @param {module:ApiClient} [apiClient] Optional API client implementation to use,
|
|
28
|
+
* default to {@link module:ApiClient#instance} if unspecified.
|
|
29
|
+
*/
|
|
30
|
+
function BillingAccountApi(apiClient) {
|
|
31
|
+
_classCallCheck(this, BillingAccountApi);
|
|
32
|
+
this.apiClient = apiClient || _ApiClient["default"].instance;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Get Billing Accounts accessible by the api_key
|
|
37
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GetBillingAccounts200Response} and HTTP response
|
|
38
|
+
*/
|
|
39
|
+
_createClass(BillingAccountApi, [{
|
|
40
|
+
key: "getBillingAccountsWithHttpInfo",
|
|
41
|
+
value: function getBillingAccountsWithHttpInfo() {
|
|
42
|
+
var postBody = null;
|
|
43
|
+
var pathParams = {};
|
|
44
|
+
var queryParams = {};
|
|
45
|
+
var headerParams = {};
|
|
46
|
+
var formParams = {};
|
|
47
|
+
var authNames = ['api_key'];
|
|
48
|
+
var contentTypes = [];
|
|
49
|
+
var accepts = ['application/json'];
|
|
50
|
+
var returnType = _GetBillingAccounts200Response["default"];
|
|
51
|
+
return this.apiClient.callApi('/v1/billing-accounts', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Get Billing Accounts accessible by the api_key
|
|
56
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GetBillingAccounts200Response}
|
|
57
|
+
*/
|
|
58
|
+
}, {
|
|
59
|
+
key: "getBillingAccounts",
|
|
60
|
+
value: function getBillingAccounts() {
|
|
61
|
+
return this.getBillingAccountsWithHttpInfo().then(function (response_and_data) {
|
|
62
|
+
return response_and_data.data;
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
}]);
|
|
66
|
+
return BillingAccountApi;
|
|
67
|
+
}();
|
|
68
|
+
exports["default"] = BillingAccountApi;
|