@blues-inc/notehub-js 1.0.7 → 1.0.9
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 +53 -11
- package/dist/api/FilesApi.js +1 -1
- package/dist/api/FleetApi.js +27 -6
- package/dist/api/NotesApi.js +3 -3
- package/dist/api/ProductApi.js +1 -1
- package/dist/api/ProjectApi.js +27 -6
- package/dist/api/RouteApi.js +7 -7
- package/dist/model/Aws.js +1 -1
- package/dist/model/Azure.js +1 -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 +13 -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 +1 -1
- 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 +1 -1
- package/dist/model/Route.js +1 -1
- package/dist/model/RouteSchema.js +1 -1
- package/dist/model/Snowflake.js +1 -1
- package/dist/model/SnowflakeTransform.js +1 -1
- package/dist/model/Thingworx.js +1 -1
- package/dist/model/TowerLocation.js +1 -1
- package/dist/model/Twilio.js +1 -1
- 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.9
|
|
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.9
|
|
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.9/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.9
|
|
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.9
|
|
22
22
|
*/
|
|
23
23
|
var EventApi = /*#__PURE__*/function () {
|
|
24
24
|
/**
|
|
@@ -40,11 +40,13 @@ 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
|
|
47
47
|
* @param {Number} opts.endDate Unix timestamp
|
|
48
|
+
* @param {Boolean} opts.systemFilesOnly
|
|
49
|
+
* @param {String} opts.files
|
|
48
50
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GetProjectEvents200Response} and HTTP response
|
|
49
51
|
*/
|
|
50
52
|
_createClass(EventApi, [{
|
|
@@ -67,11 +69,13 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
67
69
|
var queryParams = {
|
|
68
70
|
'pageSize': opts['pageSize'],
|
|
69
71
|
'pageNum': opts['pageNum'],
|
|
70
|
-
'
|
|
72
|
+
'deviceUID': opts['deviceUID'],
|
|
71
73
|
'sortBy': opts['sortBy'],
|
|
72
74
|
'sortOrder': opts['sortOrder'],
|
|
73
75
|
'startDate': opts['startDate'],
|
|
74
|
-
'endDate': opts['endDate']
|
|
76
|
+
'endDate': opts['endDate'],
|
|
77
|
+
'systemFilesOnly': opts['systemFilesOnly'],
|
|
78
|
+
'files': opts['files']
|
|
75
79
|
};
|
|
76
80
|
var headerParams = {};
|
|
77
81
|
var formParams = {};
|
|
@@ -89,11 +93,13 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
89
93
|
* @param {Object} opts Optional parameters
|
|
90
94
|
* @param {Number} opts.pageSize (default to 50)
|
|
91
95
|
* @param {Number} opts.pageNum (default to 1)
|
|
92
|
-
* @param {
|
|
96
|
+
* @param {String} opts.deviceUID A Device UID.
|
|
93
97
|
* @param {module:model/String} opts.sortBy (default to 'captured')
|
|
94
98
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
95
99
|
* @param {Number} opts.startDate Unix timestamp
|
|
96
100
|
* @param {Number} opts.endDate Unix timestamp
|
|
101
|
+
* @param {Boolean} opts.systemFilesOnly
|
|
102
|
+
* @param {String} opts.files
|
|
97
103
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GetProjectEvents200Response}
|
|
98
104
|
*/
|
|
99
105
|
}, {
|
|
@@ -112,6 +118,11 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
112
118
|
* @param {Number} opts.limit (default to 50)
|
|
113
119
|
* @param {String} opts.cursor A cursor, which can be obtained from the `next_cursor` value from a previous call to this endpoint. The results set returned will include this event as its first result if the given identifier is actually the UID of an event. If this event UID is not found, the parameter is ignored and the results set is the same as if the parameter was not included.
|
|
114
120
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
121
|
+
* @param {Boolean} opts.systemFilesOnly
|
|
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
|
|
115
126
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GetProjectEventsByCursor200Response} and HTTP response
|
|
116
127
|
*/
|
|
117
128
|
}, {
|
|
@@ -134,7 +145,12 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
134
145
|
var queryParams = {
|
|
135
146
|
'limit': opts['limit'],
|
|
136
147
|
'cursor': opts['cursor'],
|
|
137
|
-
'sortOrder': opts['sortOrder']
|
|
148
|
+
'sortOrder': opts['sortOrder'],
|
|
149
|
+
'systemFilesOnly': opts['systemFilesOnly'],
|
|
150
|
+
'files': opts['files'],
|
|
151
|
+
'deviceUID': opts['deviceUID'],
|
|
152
|
+
'startDate': opts['startDate'],
|
|
153
|
+
'endDate': opts['endDate']
|
|
138
154
|
};
|
|
139
155
|
var headerParams = {};
|
|
140
156
|
var formParams = {};
|
|
@@ -153,6 +169,11 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
153
169
|
* @param {Number} opts.limit (default to 50)
|
|
154
170
|
* @param {String} opts.cursor A cursor, which can be obtained from the `next_cursor` value from a previous call to this endpoint. The results set returned will include this event as its first result if the given identifier is actually the UID of an event. If this event UID is not found, the parameter is ignored and the results set is the same as if the parameter was not included.
|
|
155
171
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
172
|
+
* @param {Boolean} opts.systemFilesOnly
|
|
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
|
|
156
177
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GetProjectEventsByCursor200Response}
|
|
157
178
|
*/
|
|
158
179
|
}, {
|
|
@@ -169,11 +190,13 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
169
190
|
* @param {Object} opts Optional parameters
|
|
170
191
|
* @param {Number} opts.pageSize (default to 50)
|
|
171
192
|
* @param {Number} opts.pageNum (default to 1)
|
|
172
|
-
* @param {
|
|
193
|
+
* @param {String} opts.deviceUID A Device UID.
|
|
173
194
|
* @param {module:model/String} opts.sortBy (default to 'captured')
|
|
174
195
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
175
196
|
* @param {Number} opts.startDate Unix timestamp
|
|
176
197
|
* @param {Number} opts.endDate Unix timestamp
|
|
198
|
+
* @param {Boolean} opts.systemFilesOnly
|
|
199
|
+
* @param {String} opts.files
|
|
177
200
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GetProjectEvents200Response} and HTTP response
|
|
178
201
|
*/
|
|
179
202
|
}, {
|
|
@@ -191,11 +214,13 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
191
214
|
var queryParams = {
|
|
192
215
|
'pageSize': opts['pageSize'],
|
|
193
216
|
'pageNum': opts['pageNum'],
|
|
194
|
-
'
|
|
217
|
+
'deviceUID': opts['deviceUID'],
|
|
195
218
|
'sortBy': opts['sortBy'],
|
|
196
219
|
'sortOrder': opts['sortOrder'],
|
|
197
220
|
'startDate': opts['startDate'],
|
|
198
|
-
'endDate': opts['endDate']
|
|
221
|
+
'endDate': opts['endDate'],
|
|
222
|
+
'systemFilesOnly': opts['systemFilesOnly'],
|
|
223
|
+
'files': opts['files']
|
|
199
224
|
};
|
|
200
225
|
var headerParams = {};
|
|
201
226
|
var formParams = {};
|
|
@@ -212,11 +237,13 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
212
237
|
* @param {Object} opts Optional parameters
|
|
213
238
|
* @param {Number} opts.pageSize (default to 50)
|
|
214
239
|
* @param {Number} opts.pageNum (default to 1)
|
|
215
|
-
* @param {
|
|
240
|
+
* @param {String} opts.deviceUID A Device UID.
|
|
216
241
|
* @param {module:model/String} opts.sortBy (default to 'captured')
|
|
217
242
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
218
243
|
* @param {Number} opts.startDate Unix timestamp
|
|
219
244
|
* @param {Number} opts.endDate Unix timestamp
|
|
245
|
+
* @param {Boolean} opts.systemFilesOnly
|
|
246
|
+
* @param {String} opts.files
|
|
220
247
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GetProjectEvents200Response}
|
|
221
248
|
*/
|
|
222
249
|
}, {
|
|
@@ -234,6 +261,11 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
234
261
|
* @param {Number} opts.limit (default to 50)
|
|
235
262
|
* @param {String} opts.cursor A cursor, which can be obtained from the `next_cursor` value from a previous call to this endpoint. The results set returned will include this event as its first result if the given identifier is actually the UID of an event. If this event UID is not found, the parameter is ignored and the results set is the same as if the parameter was not included.
|
|
236
263
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
264
|
+
* @param {Boolean} opts.systemFilesOnly
|
|
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
|
|
237
269
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GetProjectEventsByCursor200Response} and HTTP response
|
|
238
270
|
*/
|
|
239
271
|
}, {
|
|
@@ -251,7 +283,12 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
251
283
|
var queryParams = {
|
|
252
284
|
'limit': opts['limit'],
|
|
253
285
|
'cursor': opts['cursor'],
|
|
254
|
-
'sortOrder': opts['sortOrder']
|
|
286
|
+
'sortOrder': opts['sortOrder'],
|
|
287
|
+
'systemFilesOnly': opts['systemFilesOnly'],
|
|
288
|
+
'files': opts['files'],
|
|
289
|
+
'deviceUID': opts['deviceUID'],
|
|
290
|
+
'startDate': opts['startDate'],
|
|
291
|
+
'endDate': opts['endDate']
|
|
255
292
|
};
|
|
256
293
|
var headerParams = {};
|
|
257
294
|
var formParams = {};
|
|
@@ -269,6 +306,11 @@ var EventApi = /*#__PURE__*/function () {
|
|
|
269
306
|
* @param {Number} opts.limit (default to 50)
|
|
270
307
|
* @param {String} opts.cursor A cursor, which can be obtained from the `next_cursor` value from a previous call to this endpoint. The results set returned will include this event as its first result if the given identifier is actually the UID of an event. If this event UID is not found, the parameter is ignored and the results set is the same as if the parameter was not included.
|
|
271
308
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
309
|
+
* @param {Boolean} opts.systemFilesOnly
|
|
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
|
|
272
314
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GetProjectEventsByCursor200Response}
|
|
273
315
|
*/
|
|
274
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.9
|
|
30
30
|
*/
|
|
31
31
|
var FleetApi = /*#__PURE__*/function () {
|
|
32
32
|
/**
|
|
@@ -336,11 +336,13 @@ 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
|
|
343
343
|
* @param {Number} opts.endDate Unix timestamp
|
|
344
|
+
* @param {Boolean} opts.systemFilesOnly
|
|
345
|
+
* @param {String} opts.files
|
|
344
346
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GetProjectEvents200Response} and HTTP response
|
|
345
347
|
*/
|
|
346
348
|
}, {
|
|
@@ -363,11 +365,13 @@ var FleetApi = /*#__PURE__*/function () {
|
|
|
363
365
|
var queryParams = {
|
|
364
366
|
'pageSize': opts['pageSize'],
|
|
365
367
|
'pageNum': opts['pageNum'],
|
|
366
|
-
'
|
|
368
|
+
'deviceUID': opts['deviceUID'],
|
|
367
369
|
'sortBy': opts['sortBy'],
|
|
368
370
|
'sortOrder': opts['sortOrder'],
|
|
369
371
|
'startDate': opts['startDate'],
|
|
370
|
-
'endDate': opts['endDate']
|
|
372
|
+
'endDate': opts['endDate'],
|
|
373
|
+
'systemFilesOnly': opts['systemFilesOnly'],
|
|
374
|
+
'files': opts['files']
|
|
371
375
|
};
|
|
372
376
|
var headerParams = {};
|
|
373
377
|
var formParams = {};
|
|
@@ -385,11 +389,13 @@ var FleetApi = /*#__PURE__*/function () {
|
|
|
385
389
|
* @param {Object} opts Optional parameters
|
|
386
390
|
* @param {Number} opts.pageSize (default to 50)
|
|
387
391
|
* @param {Number} opts.pageNum (default to 1)
|
|
388
|
-
* @param {
|
|
392
|
+
* @param {String} opts.deviceUID A Device UID.
|
|
389
393
|
* @param {module:model/String} opts.sortBy (default to 'captured')
|
|
390
394
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
391
395
|
* @param {Number} opts.startDate Unix timestamp
|
|
392
396
|
* @param {Number} opts.endDate Unix timestamp
|
|
397
|
+
* @param {Boolean} opts.systemFilesOnly
|
|
398
|
+
* @param {String} opts.files
|
|
393
399
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GetProjectEvents200Response}
|
|
394
400
|
*/
|
|
395
401
|
}, {
|
|
@@ -408,6 +414,11 @@ var FleetApi = /*#__PURE__*/function () {
|
|
|
408
414
|
* @param {Number} opts.limit (default to 50)
|
|
409
415
|
* @param {String} opts.cursor A cursor, which can be obtained from the `next_cursor` value from a previous call to this endpoint. The results set returned will include this event as its first result if the given identifier is actually the UID of an event. If this event UID is not found, the parameter is ignored and the results set is the same as if the parameter was not included.
|
|
410
416
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
417
|
+
* @param {Boolean} opts.systemFilesOnly
|
|
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
|
|
411
422
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GetProjectEventsByCursor200Response} and HTTP response
|
|
412
423
|
*/
|
|
413
424
|
}, {
|
|
@@ -430,7 +441,12 @@ var FleetApi = /*#__PURE__*/function () {
|
|
|
430
441
|
var queryParams = {
|
|
431
442
|
'limit': opts['limit'],
|
|
432
443
|
'cursor': opts['cursor'],
|
|
433
|
-
'sortOrder': opts['sortOrder']
|
|
444
|
+
'sortOrder': opts['sortOrder'],
|
|
445
|
+
'systemFilesOnly': opts['systemFilesOnly'],
|
|
446
|
+
'files': opts['files'],
|
|
447
|
+
'deviceUID': opts['deviceUID'],
|
|
448
|
+
'startDate': opts['startDate'],
|
|
449
|
+
'endDate': opts['endDate']
|
|
434
450
|
};
|
|
435
451
|
var headerParams = {};
|
|
436
452
|
var formParams = {};
|
|
@@ -449,6 +465,11 @@ var FleetApi = /*#__PURE__*/function () {
|
|
|
449
465
|
* @param {Number} opts.limit (default to 50)
|
|
450
466
|
* @param {String} opts.cursor A cursor, which can be obtained from the `next_cursor` value from a previous call to this endpoint. The results set returned will include this event as its first result if the given identifier is actually the UID of an event. If this event UID is not found, the parameter is ignored and the results set is the same as if the parameter was not included.
|
|
451
467
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
468
|
+
* @param {Boolean} opts.systemFilesOnly
|
|
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
|
|
452
473
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GetProjectEventsByCursor200Response}
|
|
453
474
|
*/
|
|
454
475
|
}, {
|
package/dist/api/NotesApi.js
CHANGED
|
@@ -19,7 +19,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
19
19
|
/**
|
|
20
20
|
* Notes service.
|
|
21
21
|
* @module api/NotesApi
|
|
22
|
-
* @version 1.0.
|
|
22
|
+
* @version 1.0.9
|
|
23
23
|
*/
|
|
24
24
|
var NotesApi = /*#__PURE__*/function () {
|
|
25
25
|
/**
|
|
@@ -35,7 +35,7 @@ var NotesApi = /*#__PURE__*/function () {
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
/**
|
|
38
|
-
* Adds a Note to a Notefile.
|
|
38
|
+
* Adds a Note to a Notefile, creating the Notefile if it doesn't yet exist.
|
|
39
39
|
* @param {String} projectUID
|
|
40
40
|
* @param {String} deviceUID
|
|
41
41
|
* @param {String} notefileID
|
|
@@ -78,7 +78,7 @@ var NotesApi = /*#__PURE__*/function () {
|
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
/**
|
|
81
|
-
* Adds a Note to a Notefile.
|
|
81
|
+
* Adds a Note to a Notefile, creating the Notefile if it doesn't yet exist.
|
|
82
82
|
* @param {String} projectUID
|
|
83
83
|
* @param {String} deviceUID
|
|
84
84
|
* @param {String} notefileID
|
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.9
|
|
32
32
|
*/
|
|
33
33
|
var ProjectApi = /*#__PURE__*/function () {
|
|
34
34
|
/**
|
|
@@ -392,11 +392,13 @@ 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
|
|
399
399
|
* @param {Number} opts.endDate Unix timestamp
|
|
400
|
+
* @param {Boolean} opts.systemFilesOnly
|
|
401
|
+
* @param {String} opts.files
|
|
400
402
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GetProjectEvents200Response} and HTTP response
|
|
401
403
|
*/
|
|
402
404
|
}, {
|
|
@@ -414,11 +416,13 @@ var ProjectApi = /*#__PURE__*/function () {
|
|
|
414
416
|
var queryParams = {
|
|
415
417
|
'pageSize': opts['pageSize'],
|
|
416
418
|
'pageNum': opts['pageNum'],
|
|
417
|
-
'
|
|
419
|
+
'deviceUID': opts['deviceUID'],
|
|
418
420
|
'sortBy': opts['sortBy'],
|
|
419
421
|
'sortOrder': opts['sortOrder'],
|
|
420
422
|
'startDate': opts['startDate'],
|
|
421
|
-
'endDate': opts['endDate']
|
|
423
|
+
'endDate': opts['endDate'],
|
|
424
|
+
'systemFilesOnly': opts['systemFilesOnly'],
|
|
425
|
+
'files': opts['files']
|
|
422
426
|
};
|
|
423
427
|
var headerParams = {};
|
|
424
428
|
var formParams = {};
|
|
@@ -435,11 +439,13 @@ var ProjectApi = /*#__PURE__*/function () {
|
|
|
435
439
|
* @param {Object} opts Optional parameters
|
|
436
440
|
* @param {Number} opts.pageSize (default to 50)
|
|
437
441
|
* @param {Number} opts.pageNum (default to 1)
|
|
438
|
-
* @param {
|
|
442
|
+
* @param {String} opts.deviceUID A Device UID.
|
|
439
443
|
* @param {module:model/String} opts.sortBy (default to 'captured')
|
|
440
444
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
441
445
|
* @param {Number} opts.startDate Unix timestamp
|
|
442
446
|
* @param {Number} opts.endDate Unix timestamp
|
|
447
|
+
* @param {Boolean} opts.systemFilesOnly
|
|
448
|
+
* @param {String} opts.files
|
|
443
449
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GetProjectEvents200Response}
|
|
444
450
|
*/
|
|
445
451
|
}, {
|
|
@@ -457,6 +463,11 @@ var ProjectApi = /*#__PURE__*/function () {
|
|
|
457
463
|
* @param {Number} opts.limit (default to 50)
|
|
458
464
|
* @param {String} opts.cursor A cursor, which can be obtained from the `next_cursor` value from a previous call to this endpoint. The results set returned will include this event as its first result if the given identifier is actually the UID of an event. If this event UID is not found, the parameter is ignored and the results set is the same as if the parameter was not included.
|
|
459
465
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
466
|
+
* @param {Boolean} opts.systemFilesOnly
|
|
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
|
|
460
471
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GetProjectEventsByCursor200Response} and HTTP response
|
|
461
472
|
*/
|
|
462
473
|
}, {
|
|
@@ -474,7 +485,12 @@ var ProjectApi = /*#__PURE__*/function () {
|
|
|
474
485
|
var queryParams = {
|
|
475
486
|
'limit': opts['limit'],
|
|
476
487
|
'cursor': opts['cursor'],
|
|
477
|
-
'sortOrder': opts['sortOrder']
|
|
488
|
+
'sortOrder': opts['sortOrder'],
|
|
489
|
+
'systemFilesOnly': opts['systemFilesOnly'],
|
|
490
|
+
'files': opts['files'],
|
|
491
|
+
'deviceUID': opts['deviceUID'],
|
|
492
|
+
'startDate': opts['startDate'],
|
|
493
|
+
'endDate': opts['endDate']
|
|
478
494
|
};
|
|
479
495
|
var headerParams = {};
|
|
480
496
|
var formParams = {};
|
|
@@ -492,6 +508,11 @@ var ProjectApi = /*#__PURE__*/function () {
|
|
|
492
508
|
* @param {Number} opts.limit (default to 50)
|
|
493
509
|
* @param {String} opts.cursor A cursor, which can be obtained from the `next_cursor` value from a previous call to this endpoint. The results set returned will include this event as its first result if the given identifier is actually the UID of an event. If this event UID is not found, the parameter is ignored and the results set is the same as if the parameter was not included.
|
|
494
510
|
* @param {module:model/String} opts.sortOrder (default to 'asc')
|
|
511
|
+
* @param {Boolean} opts.systemFilesOnly
|
|
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
|
|
495
516
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GetProjectEventsByCursor200Response}
|
|
496
517
|
*/
|
|
497
518
|
}, {
|
package/dist/api/RouteApi.js
CHANGED
|
@@ -18,7 +18,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
|
|
|
18
18
|
/**
|
|
19
19
|
* Route service.
|
|
20
20
|
* @module api/RouteApi
|
|
21
|
-
* @version 1.0.
|
|
21
|
+
* @version 1.0.9
|
|
22
22
|
*/
|
|
23
23
|
var RouteApi = /*#__PURE__*/function () {
|
|
24
24
|
/**
|
|
@@ -34,7 +34,7 @@ var RouteApi = /*#__PURE__*/function () {
|
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
/**
|
|
37
|
-
* Create Route within a Project
|
|
37
|
+
* Create Route within a Project
|
|
38
38
|
* @param {String} projectUID
|
|
39
39
|
* @param {module:model/Route} route Route to be Created
|
|
40
40
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/Route} and HTTP response
|
|
@@ -65,7 +65,7 @@ var RouteApi = /*#__PURE__*/function () {
|
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
/**
|
|
68
|
-
* Create Route within a Project
|
|
68
|
+
* Create Route within a Project
|
|
69
69
|
* @param {String} projectUID
|
|
70
70
|
* @param {module:model/Route} route Route to be Created
|
|
71
71
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/Route}
|
|
@@ -125,7 +125,7 @@ var RouteApi = /*#__PURE__*/function () {
|
|
|
125
125
|
}
|
|
126
126
|
|
|
127
127
|
/**
|
|
128
|
-
* Get single route within a project
|
|
128
|
+
* Get single route within a project
|
|
129
129
|
* @param {String} projectUID
|
|
130
130
|
* @param {String} routeUID
|
|
131
131
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/Route} and HTTP response
|
|
@@ -157,7 +157,7 @@ var RouteApi = /*#__PURE__*/function () {
|
|
|
157
157
|
}
|
|
158
158
|
|
|
159
159
|
/**
|
|
160
|
-
* Get single route within a project
|
|
160
|
+
* Get single route within a project
|
|
161
161
|
* @param {String} projectUID
|
|
162
162
|
* @param {String} routeUID
|
|
163
163
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/Route}
|
|
@@ -171,7 +171,7 @@ var RouteApi = /*#__PURE__*/function () {
|
|
|
171
171
|
}
|
|
172
172
|
|
|
173
173
|
/**
|
|
174
|
-
* Get all Routes within a Project
|
|
174
|
+
* Get all Routes within a Project
|
|
175
175
|
* @param {String} projectUID
|
|
176
176
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Array.<module:model/UserDbRoute>} and HTTP response
|
|
177
177
|
*/
|
|
@@ -197,7 +197,7 @@ var RouteApi = /*#__PURE__*/function () {
|
|
|
197
197
|
}
|
|
198
198
|
|
|
199
199
|
/**
|
|
200
|
-
* Get all Routes within a Project
|
|
200
|
+
* Get all Routes within a Project
|
|
201
201
|
* @param {String} projectUID
|
|
202
202
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Array.<module:model/UserDbRoute>}
|
|
203
203
|
*/
|
package/dist/model/Aws.js
CHANGED
package/dist/model/Azure.js
CHANGED
|
@@ -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.9
|
|
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.9
|
|
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.9
|
|
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.9
|
|
22
22
|
*/
|
|
23
23
|
var CreateProjectRequest = /*#__PURE__*/function () {
|
|
24
24
|
/**
|
package/dist/model/DFUEnv.js
CHANGED
package/dist/model/DFUState.js
CHANGED