@blues-inc/notehub-js 1.0.35 → 1.0.36-beta.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.
Files changed (135) hide show
  1. package/README.md +236 -222
  2. package/dist/ApiClient.js +156 -156
  3. package/dist/api/AlertApi.js +22 -22
  4. package/dist/api/AuthorizationApi.js +18 -18
  5. package/dist/api/BillingAccountApi.js +14 -14
  6. package/dist/api/DeviceApi.js +404 -351
  7. package/dist/api/EventApi.js +130 -130
  8. package/dist/api/ExternalDevicesApi.js +41 -41
  9. package/dist/api/MonitorApi.js +52 -52
  10. package/dist/api/ProjectApi.js +441 -355
  11. package/dist/api/RouteApi.js +81 -81
  12. package/dist/api/WebhookApi.js +51 -51
  13. package/dist/index.js +84 -7
  14. package/dist/model/Alert.js +76 -74
  15. package/dist/model/AlertDataInner.js +35 -35
  16. package/dist/model/AlertNotificationsInner.js +18 -18
  17. package/dist/model/AnalyticsEventsData.js +130 -0
  18. package/dist/model/AnalyticsEventsResponse.js +132 -0
  19. package/dist/model/AnalyticsRouteLogsData.js +140 -0
  20. package/dist/model/AnalyticsRouteLogsResponse.js +132 -0
  21. package/dist/model/AnalyticsSessionsData.js +140 -0
  22. package/dist/model/AnalyticsSessionsResponse.js +132 -0
  23. package/dist/model/Aws.js +65 -65
  24. package/dist/model/Azure.js +43 -43
  25. package/dist/model/BillingAccount.js +21 -21
  26. package/dist/model/BillingAccountRole.js +9 -9
  27. package/dist/model/Body.js +5 -5
  28. package/dist/model/CloneProjectRequest.js +20 -20
  29. package/dist/model/Contact.js +22 -22
  30. package/dist/model/CreateFleetRequest.js +12 -12
  31. package/dist/model/CreateMonitor.js +126 -125
  32. package/dist/model/CreateProductRequest.js +22 -22
  33. package/dist/model/CreateProjectRequest.js +16 -16
  34. package/dist/model/CreateUpdateRepository.js +17 -17
  35. package/dist/model/CurrentFirmware.js +12 -12
  36. package/dist/model/DFUEnv.js +12 -12
  37. package/dist/model/DFUState.js +65 -65
  38. package/dist/model/DataField.js +7 -7
  39. package/dist/model/DataSet.js +30 -29
  40. package/dist/model/DataSetField.js +19 -19
  41. package/dist/model/DeleteDeviceFleetsRequest.js +8 -8
  42. package/dist/model/Device.js +102 -101
  43. package/dist/model/DeviceDfuHistory.js +20 -19
  44. package/dist/model/DeviceDfuHistoryPage.js +13 -12
  45. package/dist/model/DeviceDfuStateMachine.js +25 -24
  46. package/dist/model/DeviceDfuStateMachineNode.js +22 -22
  47. package/dist/model/DeviceDfuStatus.js +20 -20
  48. package/dist/model/DeviceDfuStatusCurrent.js +32 -32
  49. package/dist/model/DeviceDfuStatusPage.js +13 -12
  50. package/dist/model/DeviceSession.js +221 -221
  51. package/dist/model/DeviceTowerInfo.js +14 -14
  52. package/dist/model/DeviceUsage.js +32 -32
  53. package/dist/model/DfuActionRequest.js +7 -7
  54. package/dist/model/EmailNotification.js +7 -7
  55. package/dist/model/EnvTreeJsonNode.js +269 -0
  56. package/dist/model/EnvVar.js +119 -0
  57. package/dist/model/EnvironmentVariables.js +8 -8
  58. package/dist/model/Error.js +31 -31
  59. package/dist/model/Event.js +248 -248
  60. package/dist/model/Firmware.js +49 -49
  61. package/dist/model/FirmwareInfo.js +60 -60
  62. package/dist/model/Fleet.js +36 -27
  63. package/dist/model/GetAlerts200Response.js +15 -14
  64. package/dist/model/GetBillingAccounts200Response.js +10 -9
  65. package/dist/model/GetDeviceEnvironmentVariables200Response.js +16 -16
  66. package/dist/model/GetDeviceHealthLog200Response.js +12 -11
  67. package/dist/model/GetDeviceHealthLog200ResponseHealthLogInner.js +19 -19
  68. package/dist/model/GetDeviceLatest200Response.js +10 -9
  69. package/dist/model/GetDevicePublicKey200Response.js +16 -16
  70. package/dist/model/GetDeviceSessions200Response.js +17 -16
  71. package/dist/model/GetProjectDevicePublicKeys200Response.js +17 -16
  72. package/dist/model/GetProjectDevicePublicKeys200ResponseDevicePublicKeysInner.js +12 -12
  73. package/dist/model/GetProjectDevices200Response.js +17 -16
  74. package/dist/model/GetProjectEvents200Response.js +21 -20
  75. package/dist/model/GetProjectEventsByCursor200Response.js +24 -23
  76. package/dist/model/GetProjectFleets200Response.js +12 -11
  77. package/dist/model/GetProjectMembers200Response.js +12 -11
  78. package/dist/model/GetProjectProducts200Response.js +10 -9
  79. package/dist/model/GetProjects200Response.js +10 -9
  80. package/dist/model/GetWebhooks200Response.js +10 -9
  81. package/dist/model/Google.js +33 -33
  82. package/dist/model/HandleNoteChanges200Response.js +11 -11
  83. package/dist/model/HandleNoteGet200Response.js +13 -13
  84. package/dist/model/HandleNoteSignal200Response.js +5 -5
  85. package/dist/model/HandleNotefileChanges200Response.js +11 -11
  86. package/dist/model/HandleNotefileChangesPending200Response.js +14 -14
  87. package/dist/model/HandleNotefileDeleteRequest.js +7 -7
  88. package/dist/model/Http.js +35 -35
  89. package/dist/model/HttpFilter.js +19 -19
  90. package/dist/model/HttpTransform.js +20 -20
  91. package/dist/model/Location.js +40 -40
  92. package/dist/model/Login200Response.js +7 -7
  93. package/dist/model/LoginRequest.js +12 -12
  94. package/dist/model/Monitor.js +100 -99
  95. package/dist/model/MonitorAlertRoutesInner.js +9 -10
  96. package/dist/model/Mqtt.js +66 -66
  97. package/dist/model/Note.js +10 -10
  98. package/dist/model/NotefileSchema.js +19 -18
  99. package/dist/model/NotehubRoute.js +36 -36
  100. package/dist/model/NotehubRouteSchema.js +45 -46
  101. package/dist/model/PersonalAccessToken.js +159 -0
  102. package/dist/model/PersonalAccessTokenCreatedBy.js +116 -0
  103. package/dist/model/PersonalAccessTokenInfo.js +112 -0
  104. package/dist/model/PersonalAccessTokenSecret.js +105 -0
  105. package/dist/model/PostProvisionProjectDeviceRequest.js +18 -18
  106. package/dist/model/Product.js +26 -26
  107. package/dist/model/Project.js +34 -34
  108. package/dist/model/ProjectMember.js +22 -22
  109. package/dist/model/Proxy.js +24 -24
  110. package/dist/model/PutDeviceFleetsRequest.js +8 -8
  111. package/dist/model/QuestionDataResponseLineChart.js +39 -39
  112. package/dist/model/QuestionDataResponseMap.js +16 -16
  113. package/dist/model/Radresponder.js +25 -25
  114. package/dist/model/Repository.js +22 -22
  115. package/dist/model/Role.js +9 -9
  116. package/dist/model/RouteLog.js +44 -35
  117. package/dist/model/SchemaProperty.js +40 -38
  118. package/dist/model/SimUsage.js +19 -19
  119. package/dist/model/Slack.js +53 -53
  120. package/dist/model/SlackBearerNotification.js +25 -25
  121. package/dist/model/SlackWebHookNotification.js +20 -20
  122. package/dist/model/Snowflake.js +45 -45
  123. package/dist/model/SnowflakeTransform.js +12 -12
  124. package/dist/model/Thingworx.js +33 -33
  125. package/dist/model/TowerLocation.js +54 -54
  126. package/dist/model/Twilio.js +43 -43
  127. package/dist/model/UpdateFleetRequest.js +31 -22
  128. package/dist/model/UploadMetadata.js +59 -59
  129. package/dist/model/UserDbRoute.js +25 -25
  130. package/dist/model/UserDfuStateMachine.js +20 -20
  131. package/dist/model/UserDfuStateMachineStatus.js +20 -20
  132. package/dist/model/UserFirmwareInfo.js +12 -12
  133. package/dist/model/WebhookSettings.js +15 -15
  134. package/package.json +3 -3
  135. package/dist/api/RepositoryApi.js +0 -605
package/dist/index.js CHANGED
@@ -27,6 +27,42 @@ Object.defineProperty(exports, "AlertNotificationsInner", {
27
27
  return _AlertNotificationsInner["default"];
28
28
  }
29
29
  });
30
+ Object.defineProperty(exports, "AnalyticsEventsData", {
31
+ enumerable: true,
32
+ get: function get() {
33
+ return _AnalyticsEventsData["default"];
34
+ }
35
+ });
36
+ Object.defineProperty(exports, "AnalyticsEventsResponse", {
37
+ enumerable: true,
38
+ get: function get() {
39
+ return _AnalyticsEventsResponse["default"];
40
+ }
41
+ });
42
+ Object.defineProperty(exports, "AnalyticsRouteLogsData", {
43
+ enumerable: true,
44
+ get: function get() {
45
+ return _AnalyticsRouteLogsData["default"];
46
+ }
47
+ });
48
+ Object.defineProperty(exports, "AnalyticsRouteLogsResponse", {
49
+ enumerable: true,
50
+ get: function get() {
51
+ return _AnalyticsRouteLogsResponse["default"];
52
+ }
53
+ });
54
+ Object.defineProperty(exports, "AnalyticsSessionsData", {
55
+ enumerable: true,
56
+ get: function get() {
57
+ return _AnalyticsSessionsData["default"];
58
+ }
59
+ });
60
+ Object.defineProperty(exports, "AnalyticsSessionsResponse", {
61
+ enumerable: true,
62
+ get: function get() {
63
+ return _AnalyticsSessionsResponse["default"];
64
+ }
65
+ });
30
66
  Object.defineProperty(exports, "ApiClient", {
31
67
  enumerable: true,
32
68
  get: function get() {
@@ -243,6 +279,18 @@ Object.defineProperty(exports, "EmailNotification", {
243
279
  return _EmailNotification["default"];
244
280
  }
245
281
  });
282
+ Object.defineProperty(exports, "EnvTreeJsonNode", {
283
+ enumerable: true,
284
+ get: function get() {
285
+ return _EnvTreeJsonNode["default"];
286
+ }
287
+ });
288
+ Object.defineProperty(exports, "EnvVar", {
289
+ enumerable: true,
290
+ get: function get() {
291
+ return _EnvVar["default"];
292
+ }
293
+ });
246
294
  Object.defineProperty(exports, "EnvironmentVariables", {
247
295
  enumerable: true,
248
296
  get: function get() {
@@ -525,6 +573,30 @@ Object.defineProperty(exports, "NotehubRouteSchema", {
525
573
  return _NotehubRouteSchema["default"];
526
574
  }
527
575
  });
576
+ Object.defineProperty(exports, "PersonalAccessToken", {
577
+ enumerable: true,
578
+ get: function get() {
579
+ return _PersonalAccessToken["default"];
580
+ }
581
+ });
582
+ Object.defineProperty(exports, "PersonalAccessTokenCreatedBy", {
583
+ enumerable: true,
584
+ get: function get() {
585
+ return _PersonalAccessTokenCreatedBy["default"];
586
+ }
587
+ });
588
+ Object.defineProperty(exports, "PersonalAccessTokenInfo", {
589
+ enumerable: true,
590
+ get: function get() {
591
+ return _PersonalAccessTokenInfo["default"];
592
+ }
593
+ });
594
+ Object.defineProperty(exports, "PersonalAccessTokenSecret", {
595
+ enumerable: true,
596
+ get: function get() {
597
+ return _PersonalAccessTokenSecret["default"];
598
+ }
599
+ });
528
600
  Object.defineProperty(exports, "PostProvisionProjectDeviceRequest", {
529
601
  enumerable: true,
530
602
  get: function get() {
@@ -591,12 +663,6 @@ Object.defineProperty(exports, "Repository", {
591
663
  return _Repository["default"];
592
664
  }
593
665
  });
594
- Object.defineProperty(exports, "RepositoryApi", {
595
- enumerable: true,
596
- get: function get() {
597
- return _RepositoryApi["default"];
598
- }
599
- });
600
666
  Object.defineProperty(exports, "Role", {
601
667
  enumerable: true,
602
668
  get: function get() {
@@ -727,6 +793,12 @@ var _ApiClient = _interopRequireDefault(require("./ApiClient"));
727
793
  var _Alert = _interopRequireDefault(require("./model/Alert"));
728
794
  var _AlertDataInner = _interopRequireDefault(require("./model/AlertDataInner"));
729
795
  var _AlertNotificationsInner = _interopRequireDefault(require("./model/AlertNotificationsInner"));
796
+ var _AnalyticsEventsData = _interopRequireDefault(require("./model/AnalyticsEventsData"));
797
+ var _AnalyticsEventsResponse = _interopRequireDefault(require("./model/AnalyticsEventsResponse"));
798
+ var _AnalyticsRouteLogsData = _interopRequireDefault(require("./model/AnalyticsRouteLogsData"));
799
+ var _AnalyticsRouteLogsResponse = _interopRequireDefault(require("./model/AnalyticsRouteLogsResponse"));
800
+ var _AnalyticsSessionsData = _interopRequireDefault(require("./model/AnalyticsSessionsData"));
801
+ var _AnalyticsSessionsResponse = _interopRequireDefault(require("./model/AnalyticsSessionsResponse"));
730
802
  var _Aws = _interopRequireDefault(require("./model/Aws"));
731
803
  var _Azure = _interopRequireDefault(require("./model/Azure"));
732
804
  var _BillingAccount = _interopRequireDefault(require("./model/BillingAccount"));
@@ -759,6 +831,8 @@ var _DeviceTowerInfo = _interopRequireDefault(require("./model/DeviceTowerInfo")
759
831
  var _DeviceUsage = _interopRequireDefault(require("./model/DeviceUsage"));
760
832
  var _DfuActionRequest = _interopRequireDefault(require("./model/DfuActionRequest"));
761
833
  var _EmailNotification = _interopRequireDefault(require("./model/EmailNotification"));
834
+ var _EnvTreeJsonNode = _interopRequireDefault(require("./model/EnvTreeJsonNode"));
835
+ var _EnvVar = _interopRequireDefault(require("./model/EnvVar"));
762
836
  var _EnvironmentVariables = _interopRequireDefault(require("./model/EnvironmentVariables"));
763
837
  var _Error = _interopRequireDefault(require("./model/Error"));
764
838
  var _Event = _interopRequireDefault(require("./model/Event"));
@@ -803,6 +877,10 @@ var _Note = _interopRequireDefault(require("./model/Note"));
803
877
  var _NotefileSchema = _interopRequireDefault(require("./model/NotefileSchema"));
804
878
  var _NotehubRoute = _interopRequireDefault(require("./model/NotehubRoute"));
805
879
  var _NotehubRouteSchema = _interopRequireDefault(require("./model/NotehubRouteSchema"));
880
+ var _PersonalAccessToken = _interopRequireDefault(require("./model/PersonalAccessToken"));
881
+ var _PersonalAccessTokenCreatedBy = _interopRequireDefault(require("./model/PersonalAccessTokenCreatedBy"));
882
+ var _PersonalAccessTokenInfo = _interopRequireDefault(require("./model/PersonalAccessTokenInfo"));
883
+ var _PersonalAccessTokenSecret = _interopRequireDefault(require("./model/PersonalAccessTokenSecret"));
806
884
  var _PostProvisionProjectDeviceRequest = _interopRequireDefault(require("./model/PostProvisionProjectDeviceRequest"));
807
885
  var _Product = _interopRequireDefault(require("./model/Product"));
808
886
  var _Project = _interopRequireDefault(require("./model/Project"));
@@ -840,7 +918,6 @@ var _EventApi = _interopRequireDefault(require("./api/EventApi"));
840
918
  var _ExternalDevicesApi = _interopRequireDefault(require("./api/ExternalDevicesApi"));
841
919
  var _MonitorApi = _interopRequireDefault(require("./api/MonitorApi"));
842
920
  var _ProjectApi = _interopRequireDefault(require("./api/ProjectApi"));
843
- var _RepositoryApi = _interopRequireDefault(require("./api/RepositoryApi"));
844
921
  var _RouteApi = _interopRequireDefault(require("./api/RouteApi"));
845
922
  var _WebhookApi = _interopRequireDefault(require("./api/WebhookApi"));
846
923
  function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
@@ -18,7 +18,7 @@ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r),
18
18
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
19
19
  function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
20
20
  * Notehub API
21
- * The OpenAPI definition for the Notehub.io API.
21
+ * The OpenAPI definition for the Notehub.io API.
22
22
  *
23
23
  * The version of the OpenAPI document: 1.2.0
24
24
  * Contact: engineering@blues.io
@@ -31,7 +31,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
31
31
  /**
32
32
  * The Alert model module.
33
33
  * @module model/Alert
34
- * @version 1.0.35
34
+ * @version 1.0.36-beta.10
35
35
  */
36
36
  var Alert = /*#__PURE__*/function () {
37
37
  /**
@@ -64,47 +64,47 @@ var Alert = /*#__PURE__*/function () {
64
64
  value: function constructFromObject(data, obj) {
65
65
  if (data) {
66
66
  obj = obj || new Alert();
67
- if (data.hasOwnProperty("uid")) {
68
- obj["uid"] = _ApiClient["default"].convertToType(data["uid"], "String");
67
+ if (data.hasOwnProperty('uid')) {
68
+ obj['uid'] = _ApiClient["default"].convertToType(data['uid'], 'String');
69
69
  }
70
- if (data.hasOwnProperty("monitor_uid")) {
71
- obj["monitor_uid"] = _ApiClient["default"].convertToType(data["monitor_uid"], "String");
70
+ if (data.hasOwnProperty('monitor_uid')) {
71
+ obj['monitor_uid'] = _ApiClient["default"].convertToType(data['monitor_uid'], 'String');
72
72
  }
73
- if (data.hasOwnProperty("monitor_name")) {
74
- obj["monitor_name"] = _ApiClient["default"].convertToType(data["monitor_name"], "String");
73
+ if (data.hasOwnProperty('monitor_name')) {
74
+ obj['monitor_name'] = _ApiClient["default"].convertToType(data['monitor_name'], 'String');
75
75
  }
76
- if (data.hasOwnProperty("device_uid")) {
77
- obj["device_uid"] = _ApiClient["default"].convertToType(data["device_uid"], "String");
76
+ if (data.hasOwnProperty('device_uid')) {
77
+ obj['device_uid'] = _ApiClient["default"].convertToType(data['device_uid'], 'String');
78
78
  }
79
- if (data.hasOwnProperty("created_at")) {
80
- obj["created_at"] = _ApiClient["default"].convertToType(data["created_at"], "Number");
79
+ if (data.hasOwnProperty('created_at')) {
80
+ obj['created_at'] = _ApiClient["default"].convertToType(data['created_at'], 'Number');
81
81
  }
82
- if (data.hasOwnProperty("value")) {
83
- obj["value"] = _ApiClient["default"].convertToType(data["value"], "Number");
82
+ if (data.hasOwnProperty('value')) {
83
+ obj['value'] = _ApiClient["default"].convertToType(data['value'], 'Number');
84
84
  }
85
- if (data.hasOwnProperty("resolved")) {
86
- obj["resolved"] = _ApiClient["default"].convertToType(data["resolved"], "Boolean");
85
+ if (data.hasOwnProperty('resolved')) {
86
+ obj['resolved'] = _ApiClient["default"].convertToType(data['resolved'], 'Boolean');
87
87
  }
88
- if (data.hasOwnProperty("version")) {
89
- obj["version"] = _ApiClient["default"].convertToType(data["version"], "Number");
88
+ if (data.hasOwnProperty('version')) {
89
+ obj['version'] = _ApiClient["default"].convertToType(data['version'], 'Number');
90
90
  }
91
- if (data.hasOwnProperty("alert_source")) {
92
- obj["alert_source"] = _ApiClient["default"].convertToType(data["alert_source"], "String");
91
+ if (data.hasOwnProperty('alert_source')) {
92
+ obj['alert_source'] = _ApiClient["default"].convertToType(data['alert_source'], 'String');
93
93
  }
94
- if (data.hasOwnProperty("source")) {
95
- obj["source"] = _ApiClient["default"].convertToType(data["source"], "String");
94
+ if (data.hasOwnProperty('source')) {
95
+ obj['source'] = _ApiClient["default"].convertToType(data['source'], 'String');
96
96
  }
97
- if (data.hasOwnProperty("monitor_type")) {
98
- obj["monitor_type"] = _ApiClient["default"].convertToType(data["monitor_type"], "String");
97
+ if (data.hasOwnProperty('monitor_type')) {
98
+ obj['monitor_type'] = _ApiClient["default"].convertToType(data['monitor_type'], 'String');
99
99
  }
100
- if (data.hasOwnProperty("field_name")) {
101
- obj["field_name"] = _ApiClient["default"].convertToType(data["field_name"], "String");
100
+ if (data.hasOwnProperty('field_name')) {
101
+ obj['field_name'] = _ApiClient["default"].convertToType(data['field_name'], 'String');
102
102
  }
103
- if (data.hasOwnProperty("data")) {
104
- obj["data"] = _ApiClient["default"].convertToType(data["data"], [_AlertDataInner["default"]]);
103
+ if (data.hasOwnProperty('data')) {
104
+ obj['data'] = _ApiClient["default"].convertToType(data['data'], [_AlertDataInner["default"]]);
105
105
  }
106
- if (data.hasOwnProperty("notifications")) {
107
- obj["notifications"] = _ApiClient["default"].convertToType(data["notifications"], [_AlertNotificationsInner["default"]]);
106
+ if (data.hasOwnProperty('notifications')) {
107
+ obj['notifications'] = _ApiClient["default"].convertToType(data['notifications'], [_AlertNotificationsInner["default"]]);
108
108
  }
109
109
  } else if (data === null) {
110
110
  return null;
@@ -121,45 +121,45 @@ var Alert = /*#__PURE__*/function () {
121
121
  key: "validateJSON",
122
122
  value: function validateJSON(data) {
123
123
  // ensure the json data is a string
124
- if (data["uid"] && !(typeof data["uid"] === "string" || data["uid"] instanceof String)) {
125
- throw new Error("Expected the field `uid` to be a primitive type in the JSON string but got " + data["uid"]);
124
+ if (data['uid'] && !(typeof data['uid'] === 'string' || data['uid'] instanceof String)) {
125
+ throw new Error("Expected the field `uid` to be a primitive type in the JSON string but got " + data['uid']);
126
126
  }
127
127
  // ensure the json data is a string
128
- if (data["monitor_uid"] && !(typeof data["monitor_uid"] === "string" || data["monitor_uid"] instanceof String)) {
129
- throw new Error("Expected the field `monitor_uid` to be a primitive type in the JSON string but got " + data["monitor_uid"]);
128
+ if (data['monitor_uid'] && !(typeof data['monitor_uid'] === 'string' || data['monitor_uid'] instanceof String)) {
129
+ throw new Error("Expected the field `monitor_uid` to be a primitive type in the JSON string but got " + data['monitor_uid']);
130
130
  }
131
131
  // ensure the json data is a string
132
- if (data["monitor_name"] && !(typeof data["monitor_name"] === "string" || data["monitor_name"] instanceof String)) {
133
- throw new Error("Expected the field `monitor_name` to be a primitive type in the JSON string but got " + data["monitor_name"]);
132
+ if (data['monitor_name'] && !(typeof data['monitor_name'] === 'string' || data['monitor_name'] instanceof String)) {
133
+ throw new Error("Expected the field `monitor_name` to be a primitive type in the JSON string but got " + data['monitor_name']);
134
134
  }
135
135
  // ensure the json data is a string
136
- if (data["device_uid"] && !(typeof data["device_uid"] === "string" || data["device_uid"] instanceof String)) {
137
- throw new Error("Expected the field `device_uid` to be a primitive type in the JSON string but got " + data["device_uid"]);
136
+ if (data['device_uid'] && !(typeof data['device_uid'] === 'string' || data['device_uid'] instanceof String)) {
137
+ throw new Error("Expected the field `device_uid` to be a primitive type in the JSON string but got " + data['device_uid']);
138
138
  }
139
139
  // ensure the json data is a string
140
- if (data["alert_source"] && !(typeof data["alert_source"] === "string" || data["alert_source"] instanceof String)) {
141
- throw new Error("Expected the field `alert_source` to be a primitive type in the JSON string but got " + data["alert_source"]);
140
+ if (data['alert_source'] && !(typeof data['alert_source'] === 'string' || data['alert_source'] instanceof String)) {
141
+ throw new Error("Expected the field `alert_source` to be a primitive type in the JSON string but got " + data['alert_source']);
142
142
  }
143
143
  // ensure the json data is a string
144
- if (data["source"] && !(typeof data["source"] === "string" || data["source"] instanceof String)) {
145
- throw new Error("Expected the field `source` to be a primitive type in the JSON string but got " + data["source"]);
144
+ if (data['source'] && !(typeof data['source'] === 'string' || data['source'] instanceof String)) {
145
+ throw new Error("Expected the field `source` to be a primitive type in the JSON string but got " + data['source']);
146
146
  }
147
147
  // ensure the json data is a string
148
- if (data["monitor_type"] && !(typeof data["monitor_type"] === "string" || data["monitor_type"] instanceof String)) {
149
- throw new Error("Expected the field `monitor_type` to be a primitive type in the JSON string but got " + data["monitor_type"]);
148
+ if (data['monitor_type'] && !(typeof data['monitor_type'] === 'string' || data['monitor_type'] instanceof String)) {
149
+ throw new Error("Expected the field `monitor_type` to be a primitive type in the JSON string but got " + data['monitor_type']);
150
150
  }
151
151
  // ensure the json data is a string
152
- if (data["field_name"] && !(typeof data["field_name"] === "string" || data["field_name"] instanceof String)) {
153
- throw new Error("Expected the field `field_name` to be a primitive type in the JSON string but got " + data["field_name"]);
152
+ if (data['field_name'] && !(typeof data['field_name'] === 'string' || data['field_name'] instanceof String)) {
153
+ throw new Error("Expected the field `field_name` to be a primitive type in the JSON string but got " + data['field_name']);
154
154
  }
155
- if (data["data"]) {
155
+ if (data['data']) {
156
156
  // data not null
157
157
  // ensure the json data is an array
158
- if (!Array.isArray(data["data"])) {
159
- throw new Error("Expected the field `data` to be an array in the JSON data but got " + data["data"]);
158
+ if (!Array.isArray(data['data'])) {
159
+ throw new Error("Expected the field `data` to be an array in the JSON data but got " + data['data']);
160
160
  }
161
161
  // validate the optional field `data` (array)
162
- var _iterator = _createForOfIteratorHelper(data["data"]),
162
+ var _iterator = _createForOfIteratorHelper(data['data']),
163
163
  _step;
164
164
  try {
165
165
  for (_iterator.s(); !(_step = _iterator.n()).done;) {
@@ -171,15 +171,16 @@ var Alert = /*#__PURE__*/function () {
171
171
  } finally {
172
172
  _iterator.f();
173
173
  }
174
+ ;
174
175
  }
175
- if (data["notifications"]) {
176
+ if (data['notifications']) {
176
177
  // data not null
177
178
  // ensure the json data is an array
178
- if (!Array.isArray(data["notifications"])) {
179
- throw new Error("Expected the field `notifications` to be an array in the JSON data but got " + data["notifications"]);
179
+ if (!Array.isArray(data['notifications'])) {
180
+ throw new Error("Expected the field `notifications` to be an array in the JSON data but got " + data['notifications']);
180
181
  }
181
182
  // validate the optional field `notifications` (array)
182
- var _iterator2 = _createForOfIteratorHelper(data["notifications"]),
183
+ var _iterator2 = _createForOfIteratorHelper(data['notifications']),
183
184
  _step2;
184
185
  try {
185
186
  for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {
@@ -191,6 +192,7 @@ var Alert = /*#__PURE__*/function () {
191
192
  } finally {
192
193
  _iterator2.f();
193
194
  }
195
+ ;
194
196
  }
195
197
  return true;
196
198
  }
@@ -200,100 +202,100 @@ var Alert = /*#__PURE__*/function () {
200
202
  * Alert UID
201
203
  * @member {String} uid
202
204
  */
203
- Alert.prototype["uid"] = undefined;
205
+ Alert.prototype['uid'] = undefined;
204
206
 
205
207
  /**
206
208
  * Monitor UID
207
209
  * @member {String} monitor_uid
208
210
  */
209
- Alert.prototype["monitor_uid"] = undefined;
211
+ Alert.prototype['monitor_uid'] = undefined;
210
212
 
211
213
  /**
212
214
  * Monitor Name
213
215
  * @member {String} monitor_name
214
216
  */
215
- Alert.prototype["monitor_name"] = undefined;
217
+ Alert.prototype['monitor_name'] = undefined;
216
218
 
217
219
  /**
218
220
  * Device UID
219
221
  * @member {String} device_uid
220
222
  */
221
- Alert.prototype["device_uid"] = undefined;
223
+ Alert.prototype['device_uid'] = undefined;
222
224
 
223
225
  /**
224
226
  * The time the alert was created
225
227
  * @member {Number} created_at
226
228
  */
227
- Alert.prototype["created_at"] = undefined;
229
+ Alert.prototype['created_at'] = undefined;
228
230
 
229
231
  /**
230
232
  * The value that triggered the alert
231
233
  * @member {Number} value
232
234
  */
233
- Alert.prototype["value"] = undefined;
235
+ Alert.prototype['value'] = undefined;
234
236
 
235
237
  /**
236
238
  * If true, the alert has been resolved
237
239
  * @member {Boolean} resolved
238
240
  */
239
- Alert.prototype["resolved"] = undefined;
241
+ Alert.prototype['resolved'] = undefined;
240
242
 
241
243
  /**
242
244
  * The version of the alert
243
245
  * @member {Number} version
244
246
  */
245
- Alert.prototype["version"] = undefined;
247
+ Alert.prototype['version'] = undefined;
246
248
 
247
249
  /**
248
250
  * The source of the alert
249
251
  * @member {module:model/Alert.AlertSourceEnum} alert_source
250
252
  */
251
- Alert.prototype["alert_source"] = undefined;
253
+ Alert.prototype['alert_source'] = undefined;
252
254
 
253
255
  /**
254
256
  * The UID of the source of the alert
255
257
  * @member {String} source
256
258
  */
257
- Alert.prototype["source"] = undefined;
259
+ Alert.prototype['source'] = undefined;
258
260
 
259
261
  /**
260
262
  * The type of monitor that triggered the alert
261
263
  * @member {module:model/Alert.MonitorTypeEnum} monitor_type
262
264
  */
263
- Alert.prototype["monitor_type"] = undefined;
265
+ Alert.prototype['monitor_type'] = undefined;
264
266
 
265
267
  /**
266
268
  * The field name that triggered the alert
267
269
  * @member {String} field_name
268
270
  */
269
- Alert.prototype["field_name"] = undefined;
271
+ Alert.prototype['field_name'] = undefined;
270
272
 
271
273
  /**
272
274
  * @member {Array.<module:model/AlertDataInner>} data
273
275
  */
274
- Alert.prototype["data"] = undefined;
276
+ Alert.prototype['data'] = undefined;
275
277
 
276
278
  /**
277
279
  * @member {Array.<module:model/AlertNotificationsInner>} notifications
278
280
  */
279
- Alert.prototype["notifications"] = undefined;
281
+ Alert.prototype['notifications'] = undefined;
280
282
 
281
283
  /**
282
284
  * Allowed values for the <code>alert_source</code> property.
283
285
  * @enum {String}
284
286
  * @readonly
285
287
  */
286
- Alert["AlertSourceEnum"] = {
288
+ Alert['AlertSourceEnum'] = {
287
289
  /**
288
290
  * value: "app"
289
291
  * @const
290
292
  */
291
- app: "app",
293
+ "app": "app",
292
294
  /**
293
295
  * value: "device"
294
296
  * @const
295
297
  */
296
- device: "device"
298
+ "device": "device"
297
299
  };
298
300
 
299
301
  /**
@@ -301,16 +303,16 @@ Alert["AlertSourceEnum"] = {
301
303
  * @enum {String}
302
304
  * @readonly
303
305
  */
304
- Alert["MonitorTypeEnum"] = {
306
+ Alert['MonitorTypeEnum'] = {
305
307
  /**
306
308
  * value: "event"
307
309
  * @const
308
310
  */
309
- event: "event",
311
+ "event": "event",
310
312
  /**
311
313
  * value: "device"
312
314
  * @const
313
315
  */
314
- device: "device"
316
+ "device": "device"
315
317
  };
316
318
  var _default = exports["default"] = Alert;
@@ -13,7 +13,7 @@ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r),
13
13
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
14
14
  function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
15
15
  * Notehub API
16
- * The OpenAPI definition for the Notehub.io API.
16
+ * The OpenAPI definition for the Notehub.io API.
17
17
  *
18
18
  * The version of the OpenAPI document: 1.2.0
19
19
  * Contact: engineering@blues.io
@@ -26,7 +26,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
26
26
  /**
27
27
  * The AlertDataInner model module.
28
28
  * @module model/AlertDataInner
29
- * @version 1.0.35
29
+ * @version 1.0.36-beta.10
30
30
  */
31
31
  var AlertDataInner = /*#__PURE__*/function () {
32
32
  /**
@@ -59,23 +59,23 @@ var AlertDataInner = /*#__PURE__*/function () {
59
59
  value: function constructFromObject(data, obj) {
60
60
  if (data) {
61
61
  obj = obj || new AlertDataInner();
62
- if (data.hasOwnProperty("alert_source")) {
63
- obj["alert_source"] = _ApiClient["default"].convertToType(data["alert_source"], "String");
62
+ if (data.hasOwnProperty('alert_source')) {
63
+ obj['alert_source'] = _ApiClient["default"].convertToType(data['alert_source'], 'String');
64
64
  }
65
- if (data.hasOwnProperty("source")) {
66
- obj["source"] = _ApiClient["default"].convertToType(data["source"], "String");
65
+ if (data.hasOwnProperty('source')) {
66
+ obj['source'] = _ApiClient["default"].convertToType(data['source'], 'String');
67
67
  }
68
- if (data.hasOwnProperty("source_type")) {
69
- obj["source_type"] = _ApiClient["default"].convertToType(data["source_type"], "String");
68
+ if (data.hasOwnProperty('source_type')) {
69
+ obj['source_type'] = _ApiClient["default"].convertToType(data['source_type'], 'String');
70
70
  }
71
- if (data.hasOwnProperty("value")) {
72
- obj["value"] = _ApiClient["default"].convertToType(data["value"], "Number");
71
+ if (data.hasOwnProperty('value')) {
72
+ obj['value'] = _ApiClient["default"].convertToType(data['value'], 'Number');
73
73
  }
74
- if (data.hasOwnProperty("source_uid")) {
75
- obj["source_uid"] = _ApiClient["default"].convertToType(data["source_uid"], "String");
74
+ if (data.hasOwnProperty('source_uid')) {
75
+ obj['source_uid'] = _ApiClient["default"].convertToType(data['source_uid'], 'String');
76
76
  }
77
- if (data.hasOwnProperty("when")) {
78
- obj["when"] = _ApiClient["default"].convertToType(data["when"], "String");
77
+ if (data.hasOwnProperty('when')) {
78
+ obj['when'] = _ApiClient["default"].convertToType(data['when'], 'String');
79
79
  }
80
80
  } else if (data === null) {
81
81
  return null;
@@ -92,24 +92,24 @@ var AlertDataInner = /*#__PURE__*/function () {
92
92
  key: "validateJSON",
93
93
  value: function validateJSON(data) {
94
94
  // ensure the json data is a string
95
- if (data["alert_source"] && !(typeof data["alert_source"] === "string" || data["alert_source"] instanceof String)) {
96
- throw new Error("Expected the field `alert_source` to be a primitive type in the JSON string but got " + data["alert_source"]);
95
+ if (data['alert_source'] && !(typeof data['alert_source'] === 'string' || data['alert_source'] instanceof String)) {
96
+ throw new Error("Expected the field `alert_source` to be a primitive type in the JSON string but got " + data['alert_source']);
97
97
  }
98
98
  // ensure the json data is a string
99
- if (data["source"] && !(typeof data["source"] === "string" || data["source"] instanceof String)) {
100
- throw new Error("Expected the field `source` to be a primitive type in the JSON string but got " + data["source"]);
99
+ if (data['source'] && !(typeof data['source'] === 'string' || data['source'] instanceof String)) {
100
+ throw new Error("Expected the field `source` to be a primitive type in the JSON string but got " + data['source']);
101
101
  }
102
102
  // ensure the json data is a string
103
- if (data["source_type"] && !(typeof data["source_type"] === "string" || data["source_type"] instanceof String)) {
104
- throw new Error("Expected the field `source_type` to be a primitive type in the JSON string but got " + data["source_type"]);
103
+ if (data['source_type'] && !(typeof data['source_type'] === 'string' || data['source_type'] instanceof String)) {
104
+ throw new Error("Expected the field `source_type` to be a primitive type in the JSON string but got " + data['source_type']);
105
105
  }
106
106
  // ensure the json data is a string
107
- if (data["source_uid"] && !(typeof data["source_uid"] === "string" || data["source_uid"] instanceof String)) {
108
- throw new Error("Expected the field `source_uid` to be a primitive type in the JSON string but got " + data["source_uid"]);
107
+ if (data['source_uid'] && !(typeof data['source_uid'] === 'string' || data['source_uid'] instanceof String)) {
108
+ throw new Error("Expected the field `source_uid` to be a primitive type in the JSON string but got " + data['source_uid']);
109
109
  }
110
110
  // ensure the json data is a string
111
- if (data["when"] && !(typeof data["when"] === "string" || data["when"] instanceof String)) {
112
- throw new Error("Expected the field `when` to be a primitive type in the JSON string but got " + data["when"]);
111
+ if (data['when'] && !(typeof data['when'] === 'string' || data['when'] instanceof String)) {
112
+ throw new Error("Expected the field `when` to be a primitive type in the JSON string but got " + data['when']);
113
113
  }
114
114
  return true;
115
115
  }
@@ -119,54 +119,54 @@ var AlertDataInner = /*#__PURE__*/function () {
119
119
  * The source of the alert
120
120
  * @member {module:model/AlertDataInner.AlertSourceEnum} alert_source
121
121
  */
122
- AlertDataInner.prototype["alert_source"] = undefined;
122
+ AlertDataInner.prototype['alert_source'] = undefined;
123
123
 
124
124
  /**
125
125
  * The UID of the source of the alert
126
126
  * @member {String} source
127
127
  */
128
- AlertDataInner.prototype["source"] = undefined;
128
+ AlertDataInner.prototype['source'] = undefined;
129
129
 
130
130
  /**
131
131
  * The type of source.
132
132
  * @member {module:model/AlertDataInner.SourceTypeEnum} source_type
133
133
  */
134
- AlertDataInner.prototype["source_type"] = undefined;
134
+ AlertDataInner.prototype['source_type'] = undefined;
135
135
 
136
136
  /**
137
137
  * The value that triggered the alert
138
138
  * @member {Number} value
139
139
  */
140
- AlertDataInner.prototype["value"] = undefined;
140
+ AlertDataInner.prototype['value'] = undefined;
141
141
 
142
142
  /**
143
143
  * The UID of the source of the alert
144
144
  * @member {String} source_uid
145
145
  */
146
- AlertDataInner.prototype["source_uid"] = undefined;
146
+ AlertDataInner.prototype['source_uid'] = undefined;
147
147
 
148
148
  /**
149
149
  * The time the alert was created
150
150
  * @member {String} when
151
151
  */
152
- AlertDataInner.prototype["when"] = undefined;
152
+ AlertDataInner.prototype['when'] = undefined;
153
153
 
154
154
  /**
155
155
  * Allowed values for the <code>alert_source</code> property.
156
156
  * @enum {String}
157
157
  * @readonly
158
158
  */
159
- AlertDataInner["AlertSourceEnum"] = {
159
+ AlertDataInner['AlertSourceEnum'] = {
160
160
  /**
161
161
  * value: "app"
162
162
  * @const
163
163
  */
164
- app: "app",
164
+ "app": "app",
165
165
  /**
166
166
  * value: "device"
167
167
  * @const
168
168
  */
169
- device: "device"
169
+ "device": "device"
170
170
  };
171
171
 
172
172
  /**
@@ -174,11 +174,11 @@ AlertDataInner["AlertSourceEnum"] = {
174
174
  * @enum {String}
175
175
  * @readonly
176
176
  */
177
- AlertDataInner["SourceTypeEnum"] = {
177
+ AlertDataInner['SourceTypeEnum'] = {
178
178
  /**
179
179
  * value: "event"
180
180
  * @const
181
181
  */
182
- event: "event"
182
+ "event": "event"
183
183
  };
184
184
  var _default = exports["default"] = AlertDataInner;