@blues-inc/notehub-js 1.0.9 → 1.0.10
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 +1 -1
- package/dist/ApiClient.js +2 -2
- package/dist/api/AuthorizationApi.js +1 -1
- package/dist/api/BillingAccountApi.js +1 -1
- package/dist/api/DeviceApi.js +1 -1
- package/dist/api/DevicesApi.js +1 -1
- package/dist/api/EnvironmentVariablesApi.js +1 -1
- package/dist/api/EventApi.js +1 -1
- package/dist/api/FilesApi.js +1 -1
- package/dist/api/FleetApi.js +1 -1
- package/dist/api/NotesApi.js +1 -1
- package/dist/api/ProductApi.js +1 -1
- package/dist/api/ProjectApi.js +1 -1
- package/dist/api/RouteApi.js +1 -1
- package/dist/model/Aws.js +2 -1
- package/dist/model/Azure.js +15 -1
- package/dist/model/BillingAccount.js +1 -1
- package/dist/model/Body.js +1 -1
- package/dist/model/Contact.js +1 -1
- package/dist/model/CreateFleetRequest.js +1 -1
- package/dist/model/CreateProductRequest.js +1 -1
- package/dist/model/CreateProjectRequest.js +1 -1
- package/dist/model/DFUEnv.js +1 -1
- package/dist/model/DFUState.js +1 -1
- package/dist/model/DeleteDeviceFleetsRequest.js +1 -1
- package/dist/model/Device.js +1 -1
- package/dist/model/DeviceSession.js +1 -1
- package/dist/model/DeviceTowerInfo.js +1 -1
- package/dist/model/DeviceUsage.js +1 -1
- package/dist/model/EnvironmentVariables.js +1 -1
- package/dist/model/Error.js +1 -1
- package/dist/model/Event.js +1 -1
- package/dist/model/Fleet.js +1 -1
- package/dist/model/GetBillingAccounts200Response.js +1 -1
- package/dist/model/GetDeviceEnvironmentVariables200Response.js +1 -1
- package/dist/model/GetDeviceHealthLog200Response.js +1 -1
- package/dist/model/GetDeviceHealthLog200ResponseHealthLogInner.js +1 -1
- package/dist/model/GetDeviceLatest200Response.js +1 -1
- package/dist/model/GetDevicePublicKey200Response.js +1 -1
- package/dist/model/GetDeviceSessions200Response.js +1 -1
- package/dist/model/GetProjectDevicePublicKeys200Response.js +1 -1
- package/dist/model/GetProjectDevicePublicKeys200ResponseDevicePublicKeysInner.js +1 -1
- package/dist/model/GetProjectDevices200Response.js +1 -1
- package/dist/model/GetProjectEvents200Response.js +1 -1
- package/dist/model/GetProjectEventsByCursor200Response.js +1 -1
- package/dist/model/GetProjectFleets200Response.js +1 -1
- package/dist/model/GetProjectMembers200Response.js +1 -1
- package/dist/model/GetProjectProducts200Response.js +1 -1
- package/dist/model/GetProjects200Response.js +1 -1
- package/dist/model/Google.js +1 -1
- package/dist/model/HandleNoteChanges200Response.js +1 -1
- package/dist/model/HandleNoteGet200Response.js +1 -1
- package/dist/model/HandleNoteSignal200Response.js +1 -1
- package/dist/model/HandleNotefileChanges200Response.js +1 -1
- package/dist/model/HandleNotefileChangesPending200Response.js +1 -1
- package/dist/model/HandleNotefileDeleteRequest.js +1 -1
- package/dist/model/Http.js +1 -1
- package/dist/model/HttpFilter.js +1 -1
- package/dist/model/HttpTransform.js +1 -1
- package/dist/model/Location.js +1 -1
- package/dist/model/Login200Response.js +1 -1
- package/dist/model/LoginRequest.js +1 -1
- package/dist/model/Mqtt.js +8 -9
- package/dist/model/Note.js +1 -1
- package/dist/model/Product.js +1 -1
- package/dist/model/Project.js +1 -1
- package/dist/model/ProjectMember.js +1 -1
- package/dist/model/Proxy.js +1 -1
- package/dist/model/PutDeviceFleetsRequest.js +1 -1
- package/dist/model/Radresponder.js +2 -2
- package/dist/model/Route.js +1 -1
- package/dist/model/RouteSchema.js +17 -8
- package/dist/model/Snowflake.js +2 -2
- package/dist/model/SnowflakeTransform.js +1 -1
- package/dist/model/Thingworx.js +2 -1
- package/dist/model/TowerLocation.js +1 -1
- package/dist/model/Twilio.js +2 -2
- package/dist/model/UpdateFleetRequest.js +1 -1
- package/dist/model/UserDbRoute.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ The OpenAPI definition for the Notehub.io API.
|
|
|
6
6
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
7
7
|
|
|
8
8
|
- API version: 1.0.0
|
|
9
|
-
- Package version: 1.0.
|
|
9
|
+
- Package version: 1.0.10
|
|
10
10
|
- Build package: org.openapitools.codegen.languages.JavascriptClientCodegen
|
|
11
11
|
For more information, please visit [https://dev.blues.io/support/](https://dev.blues.io/support/)
|
|
12
12
|
|
package/dist/ApiClient.js
CHANGED
|
@@ -15,7 +15,7 @@ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _ty
|
|
|
15
15
|
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); }
|
|
16
16
|
/**
|
|
17
17
|
* @module ApiClient
|
|
18
|
-
* @version 1.0.
|
|
18
|
+
* @version 1.0.10
|
|
19
19
|
*/
|
|
20
20
|
/**
|
|
21
21
|
* Manages low level client-server communications, parameter marshalling, etc. There should not be any need for an
|
|
@@ -63,7 +63,7 @@ var ApiClient = /*#__PURE__*/function () {
|
|
|
63
63
|
* @default {}
|
|
64
64
|
*/
|
|
65
65
|
this.defaultHeaders = {
|
|
66
|
-
'User-Agent': 'OpenAPI-Generator/1.0.
|
|
66
|
+
'User-Agent': 'OpenAPI-Generator/1.0.10/Javascript'
|
|
67
67
|
};
|
|
68
68
|
|
|
69
69
|
/**
|
package/dist/api/DeviceApi.js
CHANGED
package/dist/api/DevicesApi.js
CHANGED
|
@@ -18,7 +18,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
18
18
|
/**
|
|
19
19
|
* EnvironmentVariables service.
|
|
20
20
|
* @module api/EnvironmentVariablesApi
|
|
21
|
-
* @version 1.0.
|
|
21
|
+
* @version 1.0.10
|
|
22
22
|
*/
|
|
23
23
|
var EnvironmentVariablesApi = /*#__PURE__*/function () {
|
|
24
24
|
/**
|
package/dist/api/EventApi.js
CHANGED
package/dist/api/FilesApi.js
CHANGED
package/dist/api/FleetApi.js
CHANGED
package/dist/api/NotesApi.js
CHANGED
package/dist/api/ProductApi.js
CHANGED
package/dist/api/ProjectApi.js
CHANGED
package/dist/api/RouteApi.js
CHANGED
package/dist/model/Aws.js
CHANGED
|
@@ -17,7 +17,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
17
17
|
/**
|
|
18
18
|
* The Aws model module.
|
|
19
19
|
* @module model/Aws
|
|
20
|
-
* @version 1.0.
|
|
20
|
+
* @version 1.0.10
|
|
21
21
|
*/
|
|
22
22
|
var Aws = /*#__PURE__*/function () {
|
|
23
23
|
/**
|
|
@@ -211,6 +211,7 @@ Aws.prototype['region'] = undefined;
|
|
|
211
211
|
Aws.prototype['access_key_id'] = undefined;
|
|
212
212
|
|
|
213
213
|
/**
|
|
214
|
+
* This value is input-only and will be omitted from the response and replaced with a placeholder
|
|
214
215
|
* @member {String} access_key_secret
|
|
215
216
|
*/
|
|
216
217
|
Aws.prototype['access_key_secret'] = undefined;
|
package/dist/model/Azure.js
CHANGED
|
@@ -17,7 +17,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
17
17
|
/**
|
|
18
18
|
* The Azure model module.
|
|
19
19
|
* @module model/Azure
|
|
20
|
-
* @version 1.0.
|
|
20
|
+
* @version 1.0.10
|
|
21
21
|
*/
|
|
22
22
|
var Azure = /*#__PURE__*/function () {
|
|
23
23
|
/**
|
|
@@ -69,6 +69,9 @@ var Azure = /*#__PURE__*/function () {
|
|
|
69
69
|
if (data.hasOwnProperty('timeout')) {
|
|
70
70
|
obj['timeout'] = _ApiClient["default"].convertToType(data['timeout'], 'Number');
|
|
71
71
|
}
|
|
72
|
+
if (data.hasOwnProperty('functions_key_secret')) {
|
|
73
|
+
obj['functions_key_secret'] = _ApiClient["default"].convertToType(data['functions_key_secret'], 'String');
|
|
74
|
+
}
|
|
72
75
|
if (data.hasOwnProperty('sas_policy_name')) {
|
|
73
76
|
obj['sas_policy_name'] = _ApiClient["default"].convertToType(data['sas_policy_name'], 'String');
|
|
74
77
|
}
|
|
@@ -108,6 +111,10 @@ var Azure = /*#__PURE__*/function () {
|
|
|
108
111
|
throw new Error("Expected the field `url` to be a primitive type in the JSON string but got " + data['url']);
|
|
109
112
|
}
|
|
110
113
|
// ensure the json data is a string
|
|
114
|
+
if (data['functions_key_secret'] && !(typeof data['functions_key_secret'] === 'string' || data['functions_key_secret'] instanceof String)) {
|
|
115
|
+
throw new Error("Expected the field `functions_key_secret` to be a primitive type in the JSON string but got " + data['functions_key_secret']);
|
|
116
|
+
}
|
|
117
|
+
// ensure the json data is a string
|
|
111
118
|
if (data['sas_policy_name'] && !(typeof data['sas_policy_name'] === 'string' || data['sas_policy_name'] instanceof String)) {
|
|
112
119
|
throw new Error("Expected the field `sas_policy_name` to be a primitive type in the JSON string but got " + data['sas_policy_name']);
|
|
113
120
|
}
|
|
@@ -153,12 +160,19 @@ Azure.prototype['url'] = undefined;
|
|
|
153
160
|
*/
|
|
154
161
|
Azure.prototype['timeout'] = 15;
|
|
155
162
|
|
|
163
|
+
/**
|
|
164
|
+
* This value is input-only and will be omitted from the response and replaced with a placeholder
|
|
165
|
+
* @member {String} functions_key_secret
|
|
166
|
+
*/
|
|
167
|
+
Azure.prototype['functions_key_secret'] = undefined;
|
|
168
|
+
|
|
156
169
|
/**
|
|
157
170
|
* @member {String} sas_policy_name
|
|
158
171
|
*/
|
|
159
172
|
Azure.prototype['sas_policy_name'] = undefined;
|
|
160
173
|
|
|
161
174
|
/**
|
|
175
|
+
* This value is input-only and will be omitted from the response and replaced with a placeholder
|
|
162
176
|
* @member {String} sas_policy_key
|
|
163
177
|
*/
|
|
164
178
|
Azure.prototype['sas_policy_key'] = undefined;
|
|
@@ -19,7 +19,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
19
19
|
/**
|
|
20
20
|
* The BillingAccount model module.
|
|
21
21
|
* @module model/BillingAccount
|
|
22
|
-
* @version 1.0.
|
|
22
|
+
* @version 1.0.10
|
|
23
23
|
*/
|
|
24
24
|
var BillingAccount = /*#__PURE__*/function () {
|
|
25
25
|
/**
|
package/dist/model/Body.js
CHANGED
package/dist/model/Contact.js
CHANGED
|
@@ -15,7 +15,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
15
15
|
/**
|
|
16
16
|
* The CreateFleetRequest model module.
|
|
17
17
|
* @module model/CreateFleetRequest
|
|
18
|
-
* @version 1.0.
|
|
18
|
+
* @version 1.0.10
|
|
19
19
|
*/
|
|
20
20
|
var CreateFleetRequest = /*#__PURE__*/function () {
|
|
21
21
|
/**
|
|
@@ -18,7 +18,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
18
18
|
/**
|
|
19
19
|
* The CreateProductRequest model module.
|
|
20
20
|
* @module model/CreateProductRequest
|
|
21
|
-
* @version 1.0.
|
|
21
|
+
* @version 1.0.10
|
|
22
22
|
*/
|
|
23
23
|
var CreateProductRequest = /*#__PURE__*/function () {
|
|
24
24
|
/**
|
|
@@ -18,7 +18,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
18
18
|
/**
|
|
19
19
|
* The CreateProjectRequest model module.
|
|
20
20
|
* @module model/CreateProjectRequest
|
|
21
|
-
* @version 1.0.
|
|
21
|
+
* @version 1.0.10
|
|
22
22
|
*/
|
|
23
23
|
var CreateProjectRequest = /*#__PURE__*/function () {
|
|
24
24
|
/**
|
package/dist/model/DFUEnv.js
CHANGED
package/dist/model/DFUState.js
CHANGED
|
@@ -18,7 +18,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
18
18
|
/**
|
|
19
19
|
* The DeleteDeviceFleetsRequest model module.
|
|
20
20
|
* @module model/DeleteDeviceFleetsRequest
|
|
21
|
-
* @version 1.0.
|
|
21
|
+
* @version 1.0.10
|
|
22
22
|
*/
|
|
23
23
|
var DeleteDeviceFleetsRequest = /*#__PURE__*/function () {
|
|
24
24
|
/**
|
package/dist/model/Device.js
CHANGED
|
@@ -17,7 +17,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
17
17
|
/**
|
|
18
18
|
* The DeviceSession model module.
|
|
19
19
|
* @module model/DeviceSession
|
|
20
|
-
* @version 1.0.
|
|
20
|
+
* @version 1.0.10
|
|
21
21
|
*/
|
|
22
22
|
var DeviceSession = /*#__PURE__*/function () {
|
|
23
23
|
/**
|
|
@@ -15,7 +15,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
15
15
|
/**
|
|
16
16
|
* The DeviceTowerInfo model module.
|
|
17
17
|
* @module model/DeviceTowerInfo
|
|
18
|
-
* @version 1.0.
|
|
18
|
+
* @version 1.0.10
|
|
19
19
|
*/
|
|
20
20
|
var DeviceTowerInfo = /*#__PURE__*/function () {
|
|
21
21
|
/**
|
|
@@ -18,7 +18,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
18
18
|
/**
|
|
19
19
|
* The EnvironmentVariables model module.
|
|
20
20
|
* @module model/EnvironmentVariables
|
|
21
|
-
* @version 1.0.
|
|
21
|
+
* @version 1.0.10
|
|
22
22
|
*/
|
|
23
23
|
var EnvironmentVariables = /*#__PURE__*/function () {
|
|
24
24
|
/**
|
package/dist/model/Error.js
CHANGED
package/dist/model/Event.js
CHANGED
package/dist/model/Fleet.js
CHANGED
|
@@ -19,7 +19,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
19
19
|
/**
|
|
20
20
|
* The GetBillingAccounts200Response model module.
|
|
21
21
|
* @module model/GetBillingAccounts200Response
|
|
22
|
-
* @version 1.0.
|
|
22
|
+
* @version 1.0.10
|
|
23
23
|
*/
|
|
24
24
|
var GetBillingAccounts200Response = /*#__PURE__*/function () {
|
|
25
25
|
/**
|
|
@@ -18,7 +18,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
18
18
|
/**
|
|
19
19
|
* The GetDeviceEnvironmentVariables200Response model module.
|
|
20
20
|
* @module model/GetDeviceEnvironmentVariables200Response
|
|
21
|
-
* @version 1.0.
|
|
21
|
+
* @version 1.0.10
|
|
22
22
|
*/
|
|
23
23
|
var GetDeviceEnvironmentVariables200Response = /*#__PURE__*/function () {
|
|
24
24
|
/**
|
|
@@ -19,7 +19,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
19
19
|
/**
|
|
20
20
|
* The GetDeviceHealthLog200Response model module.
|
|
21
21
|
* @module model/GetDeviceHealthLog200Response
|
|
22
|
-
* @version 1.0.
|
|
22
|
+
* @version 1.0.10
|
|
23
23
|
*/
|
|
24
24
|
var GetDeviceHealthLog200Response = /*#__PURE__*/function () {
|
|
25
25
|
/**
|
|
@@ -18,7 +18,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
18
18
|
/**
|
|
19
19
|
* The GetDeviceHealthLog200ResponseHealthLogInner model module.
|
|
20
20
|
* @module model/GetDeviceHealthLog200ResponseHealthLogInner
|
|
21
|
-
* @version 1.0.
|
|
21
|
+
* @version 1.0.10
|
|
22
22
|
*/
|
|
23
23
|
var GetDeviceHealthLog200ResponseHealthLogInner = /*#__PURE__*/function () {
|
|
24
24
|
/**
|
|
@@ -19,7 +19,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
19
19
|
/**
|
|
20
20
|
* The GetDeviceLatest200Response model module.
|
|
21
21
|
* @module model/GetDeviceLatest200Response
|
|
22
|
-
* @version 1.0.
|
|
22
|
+
* @version 1.0.10
|
|
23
23
|
*/
|
|
24
24
|
var GetDeviceLatest200Response = /*#__PURE__*/function () {
|
|
25
25
|
/**
|
|
@@ -18,7 +18,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
18
18
|
/**
|
|
19
19
|
* The GetDevicePublicKey200Response model module.
|
|
20
20
|
* @module model/GetDevicePublicKey200Response
|
|
21
|
-
* @version 1.0.
|
|
21
|
+
* @version 1.0.10
|
|
22
22
|
*/
|
|
23
23
|
var GetDevicePublicKey200Response = /*#__PURE__*/function () {
|
|
24
24
|
/**
|
|
@@ -19,7 +19,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
19
19
|
/**
|
|
20
20
|
* The GetDeviceSessions200Response model module.
|
|
21
21
|
* @module model/GetDeviceSessions200Response
|
|
22
|
-
* @version 1.0.
|
|
22
|
+
* @version 1.0.10
|
|
23
23
|
*/
|
|
24
24
|
var GetDeviceSessions200Response = /*#__PURE__*/function () {
|
|
25
25
|
/**
|
|
@@ -19,7 +19,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
19
19
|
/**
|
|
20
20
|
* The GetProjectDevicePublicKeys200Response model module.
|
|
21
21
|
* @module model/GetProjectDevicePublicKeys200Response
|
|
22
|
-
* @version 1.0.
|
|
22
|
+
* @version 1.0.10
|
|
23
23
|
*/
|
|
24
24
|
var GetProjectDevicePublicKeys200Response = /*#__PURE__*/function () {
|
|
25
25
|
/**
|
|
@@ -15,7 +15,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
15
15
|
/**
|
|
16
16
|
* The GetProjectDevicePublicKeys200ResponseDevicePublicKeysInner model module.
|
|
17
17
|
* @module model/GetProjectDevicePublicKeys200ResponseDevicePublicKeysInner
|
|
18
|
-
* @version 1.0.
|
|
18
|
+
* @version 1.0.10
|
|
19
19
|
*/
|
|
20
20
|
var GetProjectDevicePublicKeys200ResponseDevicePublicKeysInner = /*#__PURE__*/function () {
|
|
21
21
|
/**
|
|
@@ -19,7 +19,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
19
19
|
/**
|
|
20
20
|
* The GetProjectDevices200Response model module.
|
|
21
21
|
* @module model/GetProjectDevices200Response
|
|
22
|
-
* @version 1.0.
|
|
22
|
+
* @version 1.0.10
|
|
23
23
|
*/
|
|
24
24
|
var GetProjectDevices200Response = /*#__PURE__*/function () {
|
|
25
25
|
/**
|
|
@@ -19,7 +19,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
19
19
|
/**
|
|
20
20
|
* The GetProjectEvents200Response model module.
|
|
21
21
|
* @module model/GetProjectEvents200Response
|
|
22
|
-
* @version 1.0.
|
|
22
|
+
* @version 1.0.10
|
|
23
23
|
*/
|
|
24
24
|
var GetProjectEvents200Response = /*#__PURE__*/function () {
|
|
25
25
|
/**
|
|
@@ -19,7 +19,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
19
19
|
/**
|
|
20
20
|
* The GetProjectEventsByCursor200Response model module.
|
|
21
21
|
* @module model/GetProjectEventsByCursor200Response
|
|
22
|
-
* @version 1.0.
|
|
22
|
+
* @version 1.0.10
|
|
23
23
|
*/
|
|
24
24
|
var GetProjectEventsByCursor200Response = /*#__PURE__*/function () {
|
|
25
25
|
/**
|
|
@@ -19,7 +19,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
19
19
|
/**
|
|
20
20
|
* The GetProjectFleets200Response model module.
|
|
21
21
|
* @module model/GetProjectFleets200Response
|
|
22
|
-
* @version 1.0.
|
|
22
|
+
* @version 1.0.10
|
|
23
23
|
*/
|
|
24
24
|
var GetProjectFleets200Response = /*#__PURE__*/function () {
|
|
25
25
|
/**
|
|
@@ -19,7 +19,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
19
19
|
/**
|
|
20
20
|
* The GetProjectMembers200Response model module.
|
|
21
21
|
* @module model/GetProjectMembers200Response
|
|
22
|
-
* @version 1.0.
|
|
22
|
+
* @version 1.0.10
|
|
23
23
|
*/
|
|
24
24
|
var GetProjectMembers200Response = /*#__PURE__*/function () {
|
|
25
25
|
/**
|
|
@@ -19,7 +19,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
19
19
|
/**
|
|
20
20
|
* The GetProjectProducts200Response model module.
|
|
21
21
|
* @module model/GetProjectProducts200Response
|
|
22
|
-
* @version 1.0.
|
|
22
|
+
* @version 1.0.10
|
|
23
23
|
*/
|
|
24
24
|
var GetProjectProducts200Response = /*#__PURE__*/function () {
|
|
25
25
|
/**
|
|
@@ -19,7 +19,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
19
19
|
/**
|
|
20
20
|
* The GetProjects200Response model module.
|
|
21
21
|
* @module model/GetProjects200Response
|
|
22
|
-
* @version 1.0.
|
|
22
|
+
* @version 1.0.10
|
|
23
23
|
*/
|
|
24
24
|
var GetProjects200Response = /*#__PURE__*/function () {
|
|
25
25
|
/**
|
package/dist/model/Google.js
CHANGED
|
@@ -15,7 +15,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
15
15
|
/**
|
|
16
16
|
* The HandleNoteChanges200Response model module.
|
|
17
17
|
* @module model/HandleNoteChanges200Response
|
|
18
|
-
* @version 1.0.
|
|
18
|
+
* @version 1.0.10
|
|
19
19
|
*/
|
|
20
20
|
var HandleNoteChanges200Response = /*#__PURE__*/function () {
|
|
21
21
|
/**
|
|
@@ -15,7 +15,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
15
15
|
/**
|
|
16
16
|
* The HandleNoteGet200Response model module.
|
|
17
17
|
* @module model/HandleNoteGet200Response
|
|
18
|
-
* @version 1.0.
|
|
18
|
+
* @version 1.0.10
|
|
19
19
|
*/
|
|
20
20
|
var HandleNoteGet200Response = /*#__PURE__*/function () {
|
|
21
21
|
/**
|
|
@@ -15,7 +15,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
15
15
|
/**
|
|
16
16
|
* The HandleNoteSignal200Response model module.
|
|
17
17
|
* @module model/HandleNoteSignal200Response
|
|
18
|
-
* @version 1.0.
|
|
18
|
+
* @version 1.0.10
|
|
19
19
|
*/
|
|
20
20
|
var HandleNoteSignal200Response = /*#__PURE__*/function () {
|
|
21
21
|
/**
|
|
@@ -15,7 +15,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
15
15
|
/**
|
|
16
16
|
* The HandleNotefileChanges200Response model module.
|
|
17
17
|
* @module model/HandleNotefileChanges200Response
|
|
18
|
-
* @version 1.0.
|
|
18
|
+
* @version 1.0.10
|
|
19
19
|
*/
|
|
20
20
|
var HandleNotefileChanges200Response = /*#__PURE__*/function () {
|
|
21
21
|
/**
|
|
@@ -15,7 +15,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
15
15
|
/**
|
|
16
16
|
* The HandleNotefileChangesPending200Response model module.
|
|
17
17
|
* @module model/HandleNotefileChangesPending200Response
|
|
18
|
-
* @version 1.0.
|
|
18
|
+
* @version 1.0.10
|
|
19
19
|
*/
|
|
20
20
|
var HandleNotefileChangesPending200Response = /*#__PURE__*/function () {
|
|
21
21
|
/**
|
|
@@ -15,7 +15,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
15
15
|
/**
|
|
16
16
|
* The HandleNotefileDeleteRequest model module.
|
|
17
17
|
* @module model/HandleNotefileDeleteRequest
|
|
18
|
-
* @version 1.0.
|
|
18
|
+
* @version 1.0.10
|
|
19
19
|
*/
|
|
20
20
|
var HandleNotefileDeleteRequest = /*#__PURE__*/function () {
|
|
21
21
|
/**
|
package/dist/model/Http.js
CHANGED
package/dist/model/HttpFilter.js
CHANGED
|
@@ -15,7 +15,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
15
15
|
/**
|
|
16
16
|
* The HttpTransform model module.
|
|
17
17
|
* @module model/HttpTransform
|
|
18
|
-
* @version 1.0.
|
|
18
|
+
* @version 1.0.10
|
|
19
19
|
*/
|
|
20
20
|
var HttpTransform = /*#__PURE__*/function () {
|
|
21
21
|
/**
|
package/dist/model/Location.js
CHANGED
|
@@ -15,7 +15,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
15
15
|
/**
|
|
16
16
|
* The Login200Response model module.
|
|
17
17
|
* @module model/Login200Response
|
|
18
|
-
* @version 1.0.
|
|
18
|
+
* @version 1.0.10
|
|
19
19
|
*/
|
|
20
20
|
var Login200Response = /*#__PURE__*/function () {
|
|
21
21
|
/**
|
package/dist/model/Mqtt.js
CHANGED
|
@@ -17,7 +17,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
17
17
|
/**
|
|
18
18
|
* The Mqtt model module.
|
|
19
19
|
* @module model/Mqtt
|
|
20
|
-
* @version 1.0.
|
|
20
|
+
* @version 1.0.10
|
|
21
21
|
*/
|
|
22
22
|
var Mqtt = /*#__PURE__*/function () {
|
|
23
23
|
/**
|
|
@@ -202,6 +202,7 @@ Mqtt.prototype['port'] = undefined;
|
|
|
202
202
|
Mqtt.prototype['username'] = undefined;
|
|
203
203
|
|
|
204
204
|
/**
|
|
205
|
+
* This value is input-only and will be omitted from the response and replaced with a placeholder
|
|
205
206
|
* @member {String} password
|
|
206
207
|
*/
|
|
207
208
|
Mqtt.prototype['password'] = undefined;
|
|
@@ -212,29 +213,27 @@ Mqtt.prototype['password'] = undefined;
|
|
|
212
213
|
Mqtt.prototype['topic'] = undefined;
|
|
213
214
|
|
|
214
215
|
/**
|
|
215
|
-
* Certificate with \\n newlines.
|
|
216
|
+
* Certificate with \\n newlines. This value is input-only and will be omitted from the response and replaced with a placeholder
|
|
216
217
|
* @member {String} certificate
|
|
217
218
|
*/
|
|
218
219
|
Mqtt.prototype['certificate'] = undefined;
|
|
219
220
|
|
|
220
221
|
/**
|
|
221
|
-
* Name of certificate.
|
|
222
|
+
* Name of certificate.
|
|
222
223
|
* @member {String} certificate_name
|
|
223
|
-
* @default 'present'
|
|
224
224
|
*/
|
|
225
|
-
Mqtt.prototype['certificate_name'] =
|
|
225
|
+
Mqtt.prototype['certificate_name'] = undefined;
|
|
226
226
|
|
|
227
227
|
/**
|
|
228
|
-
* Key with \\n newlines.
|
|
228
|
+
* Key with \\n newlines. This value is input-only and will be omitted from the response and replaced with a placeholder
|
|
229
229
|
* @member {String} key
|
|
230
230
|
*/
|
|
231
231
|
Mqtt.prototype['key'] = undefined;
|
|
232
232
|
|
|
233
233
|
/**
|
|
234
|
-
* Name of key
|
|
234
|
+
* Name of key
|
|
235
235
|
* @member {String} private_key_name
|
|
236
|
-
* @default 'present'
|
|
237
236
|
*/
|
|
238
|
-
Mqtt.prototype['private_key_name'] =
|
|
237
|
+
Mqtt.prototype['private_key_name'] = undefined;
|
|
239
238
|
var _default = Mqtt;
|
|
240
239
|
exports["default"] = _default;
|
package/dist/model/Note.js
CHANGED
package/dist/model/Product.js
CHANGED
package/dist/model/Project.js
CHANGED
|
@@ -19,7 +19,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
19
19
|
/**
|
|
20
20
|
* The ProjectMember model module.
|
|
21
21
|
* @module model/ProjectMember
|
|
22
|
-
* @version 1.0.
|
|
22
|
+
* @version 1.0.10
|
|
23
23
|
*/
|
|
24
24
|
var ProjectMember = /*#__PURE__*/function () {
|
|
25
25
|
/**
|
package/dist/model/Proxy.js
CHANGED
|
@@ -18,7 +18,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
18
18
|
/**
|
|
19
19
|
* The PutDeviceFleetsRequest model module.
|
|
20
20
|
* @module model/PutDeviceFleetsRequest
|
|
21
|
-
* @version 1.0.
|
|
21
|
+
* @version 1.0.10
|
|
22
22
|
*/
|
|
23
23
|
var PutDeviceFleetsRequest = /*#__PURE__*/function () {
|
|
24
24
|
/**
|
|
@@ -15,7 +15,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
15
15
|
/**
|
|
16
16
|
* The Radresponder model module.
|
|
17
17
|
* @module model/Radresponder
|
|
18
|
-
* @version 1.0.
|
|
18
|
+
* @version 1.0.10
|
|
19
19
|
*/
|
|
20
20
|
var Radresponder = /*#__PURE__*/function () {
|
|
21
21
|
/**
|
|
@@ -122,7 +122,7 @@ Radresponder.prototype['data_feed_key'] = undefined;
|
|
|
122
122
|
Radresponder.prototype['client_id'] = undefined;
|
|
123
123
|
|
|
124
124
|
/**
|
|
125
|
-
*
|
|
125
|
+
* This value is input-only and will be omitted from the response and replaced with a placeholder
|
|
126
126
|
* @member {String} client_secret
|
|
127
127
|
*/
|
|
128
128
|
Radresponder.prototype['client_secret'] = undefined;
|
package/dist/model/Route.js
CHANGED
|
@@ -27,7 +27,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
27
27
|
/**
|
|
28
28
|
* The RouteSchema model module.
|
|
29
29
|
* @module model/RouteSchema
|
|
30
|
-
* @version 1.0.
|
|
30
|
+
* @version 1.0.10
|
|
31
31
|
*/
|
|
32
32
|
var RouteSchema = /*#__PURE__*/function () {
|
|
33
33
|
/**
|
|
@@ -300,6 +300,7 @@ RouteSchema.prototype['port'] = undefined;
|
|
|
300
300
|
RouteSchema.prototype['username'] = undefined;
|
|
301
301
|
|
|
302
302
|
/**
|
|
303
|
+
* This value is input-only and will be omitted from the response and replaced with a placeholder
|
|
303
304
|
* @member {String} password
|
|
304
305
|
*/
|
|
305
306
|
RouteSchema.prototype['password'] = undefined;
|
|
@@ -310,20 +311,19 @@ RouteSchema.prototype['password'] = undefined;
|
|
|
310
311
|
RouteSchema.prototype['topic'] = undefined;
|
|
311
312
|
|
|
312
313
|
/**
|
|
313
|
-
* Certificate with \\n newlines.
|
|
314
|
+
* Certificate with \\n newlines. This value is input-only and will be omitted from the response and replaced with a placeholder
|
|
314
315
|
* @member {String} certificate
|
|
315
316
|
*/
|
|
316
317
|
RouteSchema.prototype['certificate'] = undefined;
|
|
317
318
|
|
|
318
319
|
/**
|
|
319
|
-
* Name of certificate.
|
|
320
|
+
* Name of certificate.
|
|
320
321
|
* @member {String} certificate_name
|
|
321
|
-
* @default 'present'
|
|
322
322
|
*/
|
|
323
|
-
RouteSchema.prototype['certificate_name'] =
|
|
323
|
+
RouteSchema.prototype['certificate_name'] = undefined;
|
|
324
324
|
|
|
325
325
|
/**
|
|
326
|
-
* Key with \\n newlines.
|
|
326
|
+
* Key with \\n newlines. This value is input-only and will be omitted from the response and replaced with a placeholder
|
|
327
327
|
* @member {String} key
|
|
328
328
|
*/
|
|
329
329
|
RouteSchema.prototype['key'] = undefined;
|
|
@@ -346,6 +346,7 @@ RouteSchema.prototype['region'] = undefined;
|
|
|
346
346
|
RouteSchema.prototype['access_key_id'] = undefined;
|
|
347
347
|
|
|
348
348
|
/**
|
|
349
|
+
* This value is input-only and will be omitted from the response and replaced with a placeholder
|
|
349
350
|
* @member {String} access_key_secret
|
|
350
351
|
*/
|
|
351
352
|
RouteSchema.prototype['access_key_secret'] = undefined;
|
|
@@ -382,22 +383,30 @@ RouteSchema.prototype['data_feed_key'] = undefined;
|
|
|
382
383
|
RouteSchema.prototype['client_id'] = undefined;
|
|
383
384
|
|
|
384
385
|
/**
|
|
385
|
-
*
|
|
386
|
+
* This value is input-only and will be omitted from the response and replaced with a placeholder
|
|
386
387
|
* @member {String} client_secret
|
|
387
388
|
*/
|
|
388
389
|
RouteSchema.prototype['client_secret'] = undefined;
|
|
389
390
|
|
|
391
|
+
/**
|
|
392
|
+
* This value is input-only and will be omitted from the response and replaced with a placeholder
|
|
393
|
+
* @member {String} functions_key_secret
|
|
394
|
+
*/
|
|
395
|
+
RouteSchema.prototype['functions_key_secret'] = undefined;
|
|
396
|
+
|
|
390
397
|
/**
|
|
391
398
|
* @member {String} sas_policy_name
|
|
392
399
|
*/
|
|
393
400
|
RouteSchema.prototype['sas_policy_name'] = undefined;
|
|
394
401
|
|
|
395
402
|
/**
|
|
403
|
+
* This value is input-only and will be omitted from the response and replaced with a placeholder
|
|
396
404
|
* @member {String} sas_policy_key
|
|
397
405
|
*/
|
|
398
406
|
RouteSchema.prototype['sas_policy_key'] = undefined;
|
|
399
407
|
|
|
400
408
|
/**
|
|
409
|
+
* This value is input-only and will be omitted from the response and replaced with a placeholder
|
|
401
410
|
* @member {String} app_key
|
|
402
411
|
*/
|
|
403
412
|
RouteSchema.prototype['app_key'] = undefined;
|
|
@@ -418,7 +427,7 @@ RouteSchema.prototype['account_name'] = undefined;
|
|
|
418
427
|
RouteSchema.prototype['user_name'] = undefined;
|
|
419
428
|
|
|
420
429
|
/**
|
|
421
|
-
* PEM key with \\n newlines.
|
|
430
|
+
* PEM key with \\n newlines. This value is input-only and will be omitted from the response and replaced with a placeholder
|
|
422
431
|
* @member {String} pem
|
|
423
432
|
*/
|
|
424
433
|
RouteSchema.prototype['pem'] = undefined;
|
package/dist/model/Snowflake.js
CHANGED
|
@@ -17,7 +17,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
17
17
|
/**
|
|
18
18
|
* The Snowflake model module.
|
|
19
19
|
* @module model/Snowflake
|
|
20
|
-
* @version 1.0.
|
|
20
|
+
* @version 1.0.10
|
|
21
21
|
*/
|
|
22
22
|
var Snowflake = /*#__PURE__*/function () {
|
|
23
23
|
/**
|
|
@@ -177,7 +177,7 @@ Snowflake.prototype['user_name'] = undefined;
|
|
|
177
177
|
Snowflake.prototype['private_key_name'] = 'present';
|
|
178
178
|
|
|
179
179
|
/**
|
|
180
|
-
* PEM key with \\n newlines.
|
|
180
|
+
* PEM key with \\n newlines. This value is input-only and will be omitted from the response and replaced with a placeholder
|
|
181
181
|
* @member {String} pem
|
|
182
182
|
*/
|
|
183
183
|
Snowflake.prototype['pem'] = undefined;
|
|
@@ -15,7 +15,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
15
15
|
/**
|
|
16
16
|
* The SnowflakeTransform model module.
|
|
17
17
|
* @module model/SnowflakeTransform
|
|
18
|
-
* @version 1.0.
|
|
18
|
+
* @version 1.0.10
|
|
19
19
|
*/
|
|
20
20
|
var SnowflakeTransform = /*#__PURE__*/function () {
|
|
21
21
|
/**
|
package/dist/model/Thingworx.js
CHANGED
|
@@ -17,7 +17,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
17
17
|
/**
|
|
18
18
|
* The Thingworx model module.
|
|
19
19
|
* @module model/Thingworx
|
|
20
|
-
* @version 1.0.
|
|
20
|
+
* @version 1.0.10
|
|
21
21
|
*/
|
|
22
22
|
var Thingworx = /*#__PURE__*/function () {
|
|
23
23
|
/**
|
|
@@ -147,6 +147,7 @@ Thingworx.prototype['url'] = undefined;
|
|
|
147
147
|
Thingworx.prototype['timeout'] = 15;
|
|
148
148
|
|
|
149
149
|
/**
|
|
150
|
+
* This value is input-only and will be omitted from the response and replaced with a placeholder
|
|
150
151
|
* @member {String} app_key
|
|
151
152
|
*/
|
|
152
153
|
Thingworx.prototype['app_key'] = undefined;
|
|
@@ -15,7 +15,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
15
15
|
/**
|
|
16
16
|
* The TowerLocation model module.
|
|
17
17
|
* @module model/TowerLocation
|
|
18
|
-
* @version 1.0.
|
|
18
|
+
* @version 1.0.10
|
|
19
19
|
*/
|
|
20
20
|
var TowerLocation = /*#__PURE__*/function () {
|
|
21
21
|
/**
|
package/dist/model/Twilio.js
CHANGED
|
@@ -16,7 +16,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
16
16
|
/**
|
|
17
17
|
* The Twilio model module.
|
|
18
18
|
* @module model/Twilio
|
|
19
|
-
* @version 1.0.
|
|
19
|
+
* @version 1.0.10
|
|
20
20
|
*/
|
|
21
21
|
var Twilio = /*#__PURE__*/function () {
|
|
22
22
|
/**
|
|
@@ -150,7 +150,7 @@ Twilio.prototype['timeout'] = 15;
|
|
|
150
150
|
Twilio.prototype['account_sid'] = undefined;
|
|
151
151
|
|
|
152
152
|
/**
|
|
153
|
-
* Twilio Auth Token
|
|
153
|
+
* Twilio Auth Token. This value will be omitted from the response and replaced with a placeholder.
|
|
154
154
|
* @member {String} auth_token
|
|
155
155
|
*/
|
|
156
156
|
Twilio.prototype['auth_token'] = undefined;
|
|
@@ -15,7 +15,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
15
15
|
/**
|
|
16
16
|
* The UpdateFleetRequest model module.
|
|
17
17
|
* @module model/UpdateFleetRequest
|
|
18
|
-
* @version 1.0.
|
|
18
|
+
* @version 1.0.10
|
|
19
19
|
*/
|
|
20
20
|
var UpdateFleetRequest = /*#__PURE__*/function () {
|
|
21
21
|
/**
|