@blues-inc/notehub-js 1.0.8 → 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 +27 -9
- package/dist/api/FilesApi.js +1 -1
- package/dist/api/FleetApi.js +14 -5
- package/dist/api/NotesApi.js +1 -1
- package/dist/api/ProductApi.js +1 -1
- package/dist/api/ProjectApi.js +14 -5
- 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
|
@@ -18,7 +18,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
18
18
|
/**
|
|
19
19
|
* Event service.
|
|
20
20
|
* @module api/EventApi
|
|
21
|
-
* @version 1.0.
|
|
21
|
+
* @version 1.0.10
|
|
22
22
|
*/
|
|
23
23
|
var EventApi = /*#__PURE__*/function () {
|
|
24
24
|
/**
|
|
@@ -40,7 +40,7 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
40
40
|
* @param {Object} opts Optional parameters
|
|
41
41
|
* @param {Number} opts.pageSize (default to 50)
|
|
42
42
|
* @param {Number} opts.pageNum (default to 1)
|
|
43
|
-
* @param {
|
|
43
|
+
* @param {String} opts.deviceUID A Device UID.
|
|
44
44
|
* @param {module:model/String} opts.sortBy (default to 'captured')
|
|
45
45
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
46
46
|
* @param {Number} opts.startDate Unix timestamp
|
|
@@ -69,7 +69,7 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
69
69
|
var queryParams = {
|
|
70
70
|
'pageSize': opts['pageSize'],
|
|
71
71
|
'pageNum': opts['pageNum'],
|
|
72
|
-
'
|
|
72
|
+
'deviceUID': opts['deviceUID'],
|
|
73
73
|
'sortBy': opts['sortBy'],
|
|
74
74
|
'sortOrder': opts['sortOrder'],
|
|
75
75
|
'startDate': opts['startDate'],
|
|
@@ -93,7 +93,7 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
93
93
|
* @param {Object} opts Optional parameters
|
|
94
94
|
* @param {Number} opts.pageSize (default to 50)
|
|
95
95
|
* @param {Number} opts.pageNum (default to 1)
|
|
96
|
-
* @param {
|
|
96
|
+
* @param {String} opts.deviceUID A Device UID.
|
|
97
97
|
* @param {module:model/String} opts.sortBy (default to 'captured')
|
|
98
98
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
99
99
|
* @param {Number} opts.startDate Unix timestamp
|
|
@@ -120,6 +120,9 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
120
120
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
121
121
|
* @param {Boolean} opts.systemFilesOnly
|
|
122
122
|
* @param {String} opts.files
|
|
123
|
+
* @param {String} opts.deviceUID A Device UID.
|
|
124
|
+
* @param {Number} opts.startDate Unix timestamp
|
|
125
|
+
* @param {Number} opts.endDate Unix timestamp
|
|
123
126
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GetProjectEventsByCursor200Response} and HTTP response
|
|
124
127
|
*/
|
|
125
128
|
}, {
|
|
@@ -144,7 +147,10 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
144
147
|
'cursor': opts['cursor'],
|
|
145
148
|
'sortOrder': opts['sortOrder'],
|
|
146
149
|
'systemFilesOnly': opts['systemFilesOnly'],
|
|
147
|
-
'files': opts['files']
|
|
150
|
+
'files': opts['files'],
|
|
151
|
+
'deviceUID': opts['deviceUID'],
|
|
152
|
+
'startDate': opts['startDate'],
|
|
153
|
+
'endDate': opts['endDate']
|
|
148
154
|
};
|
|
149
155
|
var headerParams = {};
|
|
150
156
|
var formParams = {};
|
|
@@ -165,6 +171,9 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
165
171
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
166
172
|
* @param {Boolean} opts.systemFilesOnly
|
|
167
173
|
* @param {String} opts.files
|
|
174
|
+
* @param {String} opts.deviceUID A Device UID.
|
|
175
|
+
* @param {Number} opts.startDate Unix timestamp
|
|
176
|
+
* @param {Number} opts.endDate Unix timestamp
|
|
168
177
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GetProjectEventsByCursor200Response}
|
|
169
178
|
*/
|
|
170
179
|
}, {
|
|
@@ -181,7 +190,7 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
181
190
|
* @param {Object} opts Optional parameters
|
|
182
191
|
* @param {Number} opts.pageSize (default to 50)
|
|
183
192
|
* @param {Number} opts.pageNum (default to 1)
|
|
184
|
-
* @param {
|
|
193
|
+
* @param {String} opts.deviceUID A Device UID.
|
|
185
194
|
* @param {module:model/String} opts.sortBy (default to 'captured')
|
|
186
195
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
187
196
|
* @param {Number} opts.startDate Unix timestamp
|
|
@@ -205,7 +214,7 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
205
214
|
var queryParams = {
|
|
206
215
|
'pageSize': opts['pageSize'],
|
|
207
216
|
'pageNum': opts['pageNum'],
|
|
208
|
-
'
|
|
217
|
+
'deviceUID': opts['deviceUID'],
|
|
209
218
|
'sortBy': opts['sortBy'],
|
|
210
219
|
'sortOrder': opts['sortOrder'],
|
|
211
220
|
'startDate': opts['startDate'],
|
|
@@ -228,7 +237,7 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
228
237
|
* @param {Object} opts Optional parameters
|
|
229
238
|
* @param {Number} opts.pageSize (default to 50)
|
|
230
239
|
* @param {Number} opts.pageNum (default to 1)
|
|
231
|
-
* @param {
|
|
240
|
+
* @param {String} opts.deviceUID A Device UID.
|
|
232
241
|
* @param {module:model/String} opts.sortBy (default to 'captured')
|
|
233
242
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
234
243
|
* @param {Number} opts.startDate Unix timestamp
|
|
@@ -254,6 +263,9 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
254
263
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
255
264
|
* @param {Boolean} opts.systemFilesOnly
|
|
256
265
|
* @param {String} opts.files
|
|
266
|
+
* @param {String} opts.deviceUID A Device UID.
|
|
267
|
+
* @param {Number} opts.startDate Unix timestamp
|
|
268
|
+
* @param {Number} opts.endDate Unix timestamp
|
|
257
269
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GetProjectEventsByCursor200Response} and HTTP response
|
|
258
270
|
*/
|
|
259
271
|
}, {
|
|
@@ -273,7 +285,10 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
273
285
|
'cursor': opts['cursor'],
|
|
274
286
|
'sortOrder': opts['sortOrder'],
|
|
275
287
|
'systemFilesOnly': opts['systemFilesOnly'],
|
|
276
|
-
'files': opts['files']
|
|
288
|
+
'files': opts['files'],
|
|
289
|
+
'deviceUID': opts['deviceUID'],
|
|
290
|
+
'startDate': opts['startDate'],
|
|
291
|
+
'endDate': opts['endDate']
|
|
277
292
|
};
|
|
278
293
|
var headerParams = {};
|
|
279
294
|
var formParams = {};
|
|
@@ -293,6 +308,9 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
293
308
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
294
309
|
* @param {Boolean} opts.systemFilesOnly
|
|
295
310
|
* @param {String} opts.files
|
|
311
|
+
* @param {String} opts.deviceUID A Device UID.
|
|
312
|
+
* @param {Number} opts.startDate Unix timestamp
|
|
313
|
+
* @param {Number} opts.endDate Unix timestamp
|
|
296
314
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GetProjectEventsByCursor200Response}
|
|
297
315
|
*/
|
|
298
316
|
}, {
|
package/dist/api/FilesApi.js
CHANGED
package/dist/api/FleetApi.js
CHANGED
|
@@ -26,7 +26,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
26
26
|
/**
|
|
27
27
|
* Fleet service.
|
|
28
28
|
* @module api/FleetApi
|
|
29
|
-
* @version 1.0.
|
|
29
|
+
* @version 1.0.10
|
|
30
30
|
*/
|
|
31
31
|
var FleetApi = /*#__PURE__*/function () {
|
|
32
32
|
/**
|
|
@@ -336,7 +336,7 @@ var FleetApi = /*#__PURE__*/function () {
|
|
|
336
336
|
* @param {Object} opts Optional parameters
|
|
337
337
|
* @param {Number} opts.pageSize (default to 50)
|
|
338
338
|
* @param {Number} opts.pageNum (default to 1)
|
|
339
|
-
* @param {
|
|
339
|
+
* @param {String} opts.deviceUID A Device UID.
|
|
340
340
|
* @param {module:model/String} opts.sortBy (default to 'captured')
|
|
341
341
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
342
342
|
* @param {Number} opts.startDate Unix timestamp
|
|
@@ -365,7 +365,7 @@ var FleetApi = /*#__PURE__*/function () {
|
|
|
365
365
|
var queryParams = {
|
|
366
366
|
'pageSize': opts['pageSize'],
|
|
367
367
|
'pageNum': opts['pageNum'],
|
|
368
|
-
'
|
|
368
|
+
'deviceUID': opts['deviceUID'],
|
|
369
369
|
'sortBy': opts['sortBy'],
|
|
370
370
|
'sortOrder': opts['sortOrder'],
|
|
371
371
|
'startDate': opts['startDate'],
|
|
@@ -389,7 +389,7 @@ var FleetApi = /*#__PURE__*/function () {
|
|
|
389
389
|
* @param {Object} opts Optional parameters
|
|
390
390
|
* @param {Number} opts.pageSize (default to 50)
|
|
391
391
|
* @param {Number} opts.pageNum (default to 1)
|
|
392
|
-
* @param {
|
|
392
|
+
* @param {String} opts.deviceUID A Device UID.
|
|
393
393
|
* @param {module:model/String} opts.sortBy (default to 'captured')
|
|
394
394
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
395
395
|
* @param {Number} opts.startDate Unix timestamp
|
|
@@ -416,6 +416,9 @@ var FleetApi = /*#__PURE__*/function () {
|
|
|
416
416
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
417
417
|
* @param {Boolean} opts.systemFilesOnly
|
|
418
418
|
* @param {String} opts.files
|
|
419
|
+
* @param {String} opts.deviceUID A Device UID.
|
|
420
|
+
* @param {Number} opts.startDate Unix timestamp
|
|
421
|
+
* @param {Number} opts.endDate Unix timestamp
|
|
419
422
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GetProjectEventsByCursor200Response} and HTTP response
|
|
420
423
|
*/
|
|
421
424
|
}, {
|
|
@@ -440,7 +443,10 @@ var FleetApi = /*#__PURE__*/function () {
|
|
|
440
443
|
'cursor': opts['cursor'],
|
|
441
444
|
'sortOrder': opts['sortOrder'],
|
|
442
445
|
'systemFilesOnly': opts['systemFilesOnly'],
|
|
443
|
-
'files': opts['files']
|
|
446
|
+
'files': opts['files'],
|
|
447
|
+
'deviceUID': opts['deviceUID'],
|
|
448
|
+
'startDate': opts['startDate'],
|
|
449
|
+
'endDate': opts['endDate']
|
|
444
450
|
};
|
|
445
451
|
var headerParams = {};
|
|
446
452
|
var formParams = {};
|
|
@@ -461,6 +467,9 @@ var FleetApi = /*#__PURE__*/function () {
|
|
|
461
467
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
462
468
|
* @param {Boolean} opts.systemFilesOnly
|
|
463
469
|
* @param {String} opts.files
|
|
470
|
+
* @param {String} opts.deviceUID A Device UID.
|
|
471
|
+
* @param {Number} opts.startDate Unix timestamp
|
|
472
|
+
* @param {Number} opts.endDate Unix timestamp
|
|
464
473
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GetProjectEventsByCursor200Response}
|
|
465
474
|
*/
|
|
466
475
|
}, {
|
package/dist/api/NotesApi.js
CHANGED
package/dist/api/ProductApi.js
CHANGED
package/dist/api/ProjectApi.js
CHANGED
|
@@ -28,7 +28,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
28
28
|
/**
|
|
29
29
|
* Project service.
|
|
30
30
|
* @module api/ProjectApi
|
|
31
|
-
* @version 1.0.
|
|
31
|
+
* @version 1.0.10
|
|
32
32
|
*/
|
|
33
33
|
var ProjectApi = /*#__PURE__*/function () {
|
|
34
34
|
/**
|
|
@@ -392,7 +392,7 @@ var ProjectApi = /*#__PURE__*/function () {
|
|
|
392
392
|
* @param {Object} opts Optional parameters
|
|
393
393
|
* @param {Number} opts.pageSize (default to 50)
|
|
394
394
|
* @param {Number} opts.pageNum (default to 1)
|
|
395
|
-
* @param {
|
|
395
|
+
* @param {String} opts.deviceUID A Device UID.
|
|
396
396
|
* @param {module:model/String} opts.sortBy (default to 'captured')
|
|
397
397
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
398
398
|
* @param {Number} opts.startDate Unix timestamp
|
|
@@ -416,7 +416,7 @@ var ProjectApi = /*#__PURE__*/function () {
|
|
|
416
416
|
var queryParams = {
|
|
417
417
|
'pageSize': opts['pageSize'],
|
|
418
418
|
'pageNum': opts['pageNum'],
|
|
419
|
-
'
|
|
419
|
+
'deviceUID': opts['deviceUID'],
|
|
420
420
|
'sortBy': opts['sortBy'],
|
|
421
421
|
'sortOrder': opts['sortOrder'],
|
|
422
422
|
'startDate': opts['startDate'],
|
|
@@ -439,7 +439,7 @@ var ProjectApi = /*#__PURE__*/function () {
|
|
|
439
439
|
* @param {Object} opts Optional parameters
|
|
440
440
|
* @param {Number} opts.pageSize (default to 50)
|
|
441
441
|
* @param {Number} opts.pageNum (default to 1)
|
|
442
|
-
* @param {
|
|
442
|
+
* @param {String} opts.deviceUID A Device UID.
|
|
443
443
|
* @param {module:model/String} opts.sortBy (default to 'captured')
|
|
444
444
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
445
445
|
* @param {Number} opts.startDate Unix timestamp
|
|
@@ -465,6 +465,9 @@ var ProjectApi = /*#__PURE__*/function () {
|
|
|
465
465
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
466
466
|
* @param {Boolean} opts.systemFilesOnly
|
|
467
467
|
* @param {String} opts.files
|
|
468
|
+
* @param {String} opts.deviceUID A Device UID.
|
|
469
|
+
* @param {Number} opts.startDate Unix timestamp
|
|
470
|
+
* @param {Number} opts.endDate Unix timestamp
|
|
468
471
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GetProjectEventsByCursor200Response} and HTTP response
|
|
469
472
|
*/
|
|
470
473
|
}, {
|
|
@@ -484,7 +487,10 @@ var ProjectApi = /*#__PURE__*/function () {
|
|
|
484
487
|
'cursor': opts['cursor'],
|
|
485
488
|
'sortOrder': opts['sortOrder'],
|
|
486
489
|
'systemFilesOnly': opts['systemFilesOnly'],
|
|
487
|
-
'files': opts['files']
|
|
490
|
+
'files': opts['files'],
|
|
491
|
+
'deviceUID': opts['deviceUID'],
|
|
492
|
+
'startDate': opts['startDate'],
|
|
493
|
+
'endDate': opts['endDate']
|
|
488
494
|
};
|
|
489
495
|
var headerParams = {};
|
|
490
496
|
var formParams = {};
|
|
@@ -504,6 +510,9 @@ var ProjectApi = /*#__PURE__*/function () {
|
|
|
504
510
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
505
511
|
* @param {Boolean} opts.systemFilesOnly
|
|
506
512
|
* @param {String} opts.files
|
|
513
|
+
* @param {String} opts.deviceUID A Device UID.
|
|
514
|
+
* @param {Number} opts.startDate Unix timestamp
|
|
515
|
+
* @param {Number} opts.endDate Unix timestamp
|
|
507
516
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GetProjectEventsByCursor200Response}
|
|
508
517
|
*/
|
|
509
518
|
}, {
|
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
|
/**
|