@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
@@ -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 AlertNotificationsInner model module.
28
28
  * @module model/AlertNotificationsInner
29
- * @version 1.0.35
29
+ * @version 1.0.36-beta.10
30
30
  */
31
31
  var AlertNotificationsInner = /*#__PURE__*/function () {
32
32
  /**
@@ -59,14 +59,14 @@ var AlertNotificationsInner = /*#__PURE__*/function () {
59
59
  value: function constructFromObject(data, obj) {
60
60
  if (data) {
61
61
  obj = obj || new AlertNotificationsInner();
62
- if (data.hasOwnProperty("notification_type")) {
63
- obj["notification_type"] = _ApiClient["default"].convertToType(data["notification_type"], "String");
62
+ if (data.hasOwnProperty('notification_type')) {
63
+ obj['notification_type'] = _ApiClient["default"].convertToType(data['notification_type'], 'String');
64
64
  }
65
- if (data.hasOwnProperty("status")) {
66
- obj["status"] = _ApiClient["default"].convertToType(data["status"], "Number");
65
+ if (data.hasOwnProperty('status')) {
66
+ obj['status'] = _ApiClient["default"].convertToType(data['status'], 'Number');
67
67
  }
68
- if (data.hasOwnProperty("recipients")) {
69
- obj["recipients"] = _ApiClient["default"].convertToType(data["recipients"], "String");
68
+ if (data.hasOwnProperty('recipients')) {
69
+ obj['recipients'] = _ApiClient["default"].convertToType(data['recipients'], 'String');
70
70
  }
71
71
  } else if (data === null) {
72
72
  return null;
@@ -83,12 +83,12 @@ var AlertNotificationsInner = /*#__PURE__*/function () {
83
83
  key: "validateJSON",
84
84
  value: function validateJSON(data) {
85
85
  // ensure the json data is a string
86
- if (data["notification_type"] && !(typeof data["notification_type"] === "string" || data["notification_type"] instanceof String)) {
87
- throw new Error("Expected the field `notification_type` to be a primitive type in the JSON string but got " + data["notification_type"]);
86
+ if (data['notification_type'] && !(typeof data['notification_type'] === 'string' || data['notification_type'] instanceof String)) {
87
+ throw new Error("Expected the field `notification_type` to be a primitive type in the JSON string but got " + data['notification_type']);
88
88
  }
89
89
  // ensure the json data is a string
90
- if (data["recipients"] && !(typeof data["recipients"] === "string" || data["recipients"] instanceof String)) {
91
- throw new Error("Expected the field `recipients` to be a primitive type in the JSON string but got " + data["recipients"]);
90
+ if (data['recipients'] && !(typeof data['recipients'] === 'string' || data['recipients'] instanceof String)) {
91
+ throw new Error("Expected the field `recipients` to be a primitive type in the JSON string but got " + data['recipients']);
92
92
  }
93
93
  return true;
94
94
  }
@@ -98,35 +98,35 @@ var AlertNotificationsInner = /*#__PURE__*/function () {
98
98
  * The type of notification
99
99
  * @member {module:model/AlertNotificationsInner.NotificationTypeEnum} notification_type
100
100
  */
101
- AlertNotificationsInner.prototype["notification_type"] = undefined;
101
+ AlertNotificationsInner.prototype['notification_type'] = undefined;
102
102
 
103
103
  /**
104
104
  * The status of the notification
105
105
  * @member {Number} status
106
106
  */
107
- AlertNotificationsInner.prototype["status"] = undefined;
107
+ AlertNotificationsInner.prototype['status'] = undefined;
108
108
 
109
109
  /**
110
110
  * The recipients of the notification
111
111
  * @member {String} recipients
112
112
  */
113
- AlertNotificationsInner.prototype["recipients"] = undefined;
113
+ AlertNotificationsInner.prototype['recipients'] = undefined;
114
114
 
115
115
  /**
116
116
  * Allowed values for the <code>notification_type</code> property.
117
117
  * @enum {String}
118
118
  * @readonly
119
119
  */
120
- AlertNotificationsInner["NotificationTypeEnum"] = {
120
+ AlertNotificationsInner['NotificationTypeEnum'] = {
121
121
  /**
122
122
  * value: "email"
123
123
  * @const
124
124
  */
125
- email: "email",
125
+ "email": "email",
126
126
  /**
127
127
  * value: "slack"
128
128
  * @const
129
129
  */
130
- slack: "slack"
130
+ "slack": "slack"
131
131
  };
132
132
  var _default = exports["default"] = AlertNotificationsInner;
@@ -0,0 +1,130 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _ApiClient = _interopRequireDefault(require("../ApiClient"));
8
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
9
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
10
+ function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
11
+ function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
12
+ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
13
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
14
+ function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
15
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
16
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
17
+ 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); } /**
18
+ * Notehub API
19
+ * The OpenAPI definition for the Notehub.io API.
20
+ *
21
+ * The version of the OpenAPI document: 1.2.0
22
+ * Contact: engineering@blues.io
23
+ *
24
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
25
+ * https://openapi-generator.tech
26
+ * Do not edit the class manually.
27
+ *
28
+ */
29
+ /**
30
+ * The AnalyticsEventsData model module.
31
+ * @module model/AnalyticsEventsData
32
+ * @version 1.0.36-beta.10
33
+ */
34
+ var AnalyticsEventsData = /*#__PURE__*/function () {
35
+ /**
36
+ * Constructs a new <code>AnalyticsEventsData</code>.
37
+ * @alias module:model/AnalyticsEventsData
38
+ * @param period {Date}
39
+ * @param events {Number}
40
+ * @param platformEvents {Number}
41
+ */
42
+ function AnalyticsEventsData(period, events, platformEvents) {
43
+ _classCallCheck(this, AnalyticsEventsData);
44
+ AnalyticsEventsData.initialize(this, period, events, platformEvents);
45
+ }
46
+
47
+ /**
48
+ * Initializes the fields of this object.
49
+ * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
50
+ * Only for internal use.
51
+ */
52
+ return _createClass(AnalyticsEventsData, null, [{
53
+ key: "initialize",
54
+ value: function initialize(obj, period, events, platformEvents) {
55
+ obj['period'] = period;
56
+ obj['events'] = events;
57
+ obj['platform_events'] = platformEvents;
58
+ }
59
+
60
+ /**
61
+ * Constructs a <code>AnalyticsEventsData</code> from a plain JavaScript object, optionally creating a new instance.
62
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
63
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
64
+ * @param {module:model/AnalyticsEventsData} obj Optional instance to populate.
65
+ * @return {module:model/AnalyticsEventsData} The populated <code>AnalyticsEventsData</code> instance.
66
+ */
67
+ }, {
68
+ key: "constructFromObject",
69
+ value: function constructFromObject(data, obj) {
70
+ if (data) {
71
+ obj = obj || new AnalyticsEventsData();
72
+ if (data.hasOwnProperty('period')) {
73
+ obj['period'] = _ApiClient["default"].convertToType(data['period'], 'Date');
74
+ }
75
+ if (data.hasOwnProperty('events')) {
76
+ obj['events'] = _ApiClient["default"].convertToType(data['events'], 'Number');
77
+ }
78
+ if (data.hasOwnProperty('platform_events')) {
79
+ obj['platform_events'] = _ApiClient["default"].convertToType(data['platform_events'], 'Number');
80
+ }
81
+ } else if (data === null) {
82
+ return null;
83
+ }
84
+ return obj;
85
+ }
86
+
87
+ /**
88
+ * Validates the JSON data with respect to <code>AnalyticsEventsData</code>.
89
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
90
+ * @return {boolean} to indicate whether the JSON data is valid with respect to <code>AnalyticsEventsData</code>.
91
+ */
92
+ }, {
93
+ key: "validateJSON",
94
+ value: function validateJSON(data) {
95
+ // check to make sure all required properties are present in the JSON string
96
+ var _iterator = _createForOfIteratorHelper(AnalyticsEventsData.RequiredProperties),
97
+ _step;
98
+ try {
99
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
100
+ var property = _step.value;
101
+ if (!data[property]) {
102
+ throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
103
+ }
104
+ }
105
+ } catch (err) {
106
+ _iterator.e(err);
107
+ } finally {
108
+ _iterator.f();
109
+ }
110
+ return true;
111
+ }
112
+ }]);
113
+ }();
114
+ AnalyticsEventsData.RequiredProperties = ["period", "events", "platform_events"];
115
+
116
+ /**
117
+ * @member {Date} period
118
+ */
119
+ AnalyticsEventsData.prototype['period'] = undefined;
120
+
121
+ /**
122
+ * @member {Number} events
123
+ */
124
+ AnalyticsEventsData.prototype['events'] = undefined;
125
+
126
+ /**
127
+ * @member {Number} platform_events
128
+ */
129
+ AnalyticsEventsData.prototype['platform_events'] = undefined;
130
+ var _default = exports["default"] = AnalyticsEventsData;
@@ -0,0 +1,132 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _ApiClient = _interopRequireDefault(require("../ApiClient"));
8
+ var _AnalyticsEventsData = _interopRequireDefault(require("./AnalyticsEventsData"));
9
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
10
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
11
+ function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
12
+ function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
13
+ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
14
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
15
+ function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
16
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
17
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
18
+ 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); } /**
19
+ * Notehub API
20
+ * The OpenAPI definition for the Notehub.io API.
21
+ *
22
+ * The version of the OpenAPI document: 1.2.0
23
+ * Contact: engineering@blues.io
24
+ *
25
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
26
+ * https://openapi-generator.tech
27
+ * Do not edit the class manually.
28
+ *
29
+ */
30
+ /**
31
+ * The AnalyticsEventsResponse model module.
32
+ * @module model/AnalyticsEventsResponse
33
+ * @version 1.0.36-beta.10
34
+ */
35
+ var AnalyticsEventsResponse = /*#__PURE__*/function () {
36
+ /**
37
+ * Constructs a new <code>AnalyticsEventsResponse</code>.
38
+ * @alias module:model/AnalyticsEventsResponse
39
+ * @param data {Array.<module:model/AnalyticsEventsData>}
40
+ */
41
+ function AnalyticsEventsResponse(data) {
42
+ _classCallCheck(this, AnalyticsEventsResponse);
43
+ AnalyticsEventsResponse.initialize(this, data);
44
+ }
45
+
46
+ /**
47
+ * Initializes the fields of this object.
48
+ * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
49
+ * Only for internal use.
50
+ */
51
+ return _createClass(AnalyticsEventsResponse, null, [{
52
+ key: "initialize",
53
+ value: function initialize(obj, data) {
54
+ obj['data'] = data;
55
+ }
56
+
57
+ /**
58
+ * Constructs a <code>AnalyticsEventsResponse</code> from a plain JavaScript object, optionally creating a new instance.
59
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
60
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
61
+ * @param {module:model/AnalyticsEventsResponse} obj Optional instance to populate.
62
+ * @return {module:model/AnalyticsEventsResponse} The populated <code>AnalyticsEventsResponse</code> instance.
63
+ */
64
+ }, {
65
+ key: "constructFromObject",
66
+ value: function constructFromObject(data, obj) {
67
+ if (data) {
68
+ obj = obj || new AnalyticsEventsResponse();
69
+ if (data.hasOwnProperty('data')) {
70
+ obj['data'] = _ApiClient["default"].convertToType(data['data'], [_AnalyticsEventsData["default"]]);
71
+ }
72
+ } else if (data === null) {
73
+ return null;
74
+ }
75
+ return obj;
76
+ }
77
+
78
+ /**
79
+ * Validates the JSON data with respect to <code>AnalyticsEventsResponse</code>.
80
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
81
+ * @return {boolean} to indicate whether the JSON data is valid with respect to <code>AnalyticsEventsResponse</code>.
82
+ */
83
+ }, {
84
+ key: "validateJSON",
85
+ value: function validateJSON(data) {
86
+ // check to make sure all required properties are present in the JSON string
87
+ var _iterator = _createForOfIteratorHelper(AnalyticsEventsResponse.RequiredProperties),
88
+ _step;
89
+ try {
90
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
91
+ var property = _step.value;
92
+ if (!data[property]) {
93
+ throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
94
+ }
95
+ }
96
+ } catch (err) {
97
+ _iterator.e(err);
98
+ } finally {
99
+ _iterator.f();
100
+ }
101
+ if (data['data']) {
102
+ // data not null
103
+ // ensure the json data is an array
104
+ if (!Array.isArray(data['data'])) {
105
+ throw new Error("Expected the field `data` to be an array in the JSON data but got " + data['data']);
106
+ }
107
+ // validate the optional field `data` (array)
108
+ var _iterator2 = _createForOfIteratorHelper(data['data']),
109
+ _step2;
110
+ try {
111
+ for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {
112
+ var item = _step2.value;
113
+ _AnalyticsEventsData["default"].validateJsonObject(item);
114
+ }
115
+ } catch (err) {
116
+ _iterator2.e(err);
117
+ } finally {
118
+ _iterator2.f();
119
+ }
120
+ ;
121
+ }
122
+ return true;
123
+ }
124
+ }]);
125
+ }();
126
+ AnalyticsEventsResponse.RequiredProperties = ["data"];
127
+
128
+ /**
129
+ * @member {Array.<module:model/AnalyticsEventsData>} data
130
+ */
131
+ AnalyticsEventsResponse.prototype['data'] = undefined;
132
+ var _default = exports["default"] = AnalyticsEventsResponse;
@@ -0,0 +1,140 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _ApiClient = _interopRequireDefault(require("../ApiClient"));
8
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
9
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
10
+ function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
11
+ function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
12
+ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
13
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
14
+ function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
15
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
16
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
17
+ 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); } /**
18
+ * Notehub API
19
+ * The OpenAPI definition for the Notehub.io API.
20
+ *
21
+ * The version of the OpenAPI document: 1.2.0
22
+ * Contact: engineering@blues.io
23
+ *
24
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
25
+ * https://openapi-generator.tech
26
+ * Do not edit the class manually.
27
+ *
28
+ */
29
+ /**
30
+ * The AnalyticsRouteLogsData model module.
31
+ * @module model/AnalyticsRouteLogsData
32
+ * @version 1.0.36-beta.10
33
+ */
34
+ var AnalyticsRouteLogsData = /*#__PURE__*/function () {
35
+ /**
36
+ * Constructs a new <code>AnalyticsRouteLogsData</code>.
37
+ * @alias module:model/AnalyticsRouteLogsData
38
+ * @param period {Date}
39
+ * @param successfulRoutes {Number}
40
+ * @param failedRoutes {Number}
41
+ * @param totalRoutes {Number}
42
+ */
43
+ function AnalyticsRouteLogsData(period, successfulRoutes, failedRoutes, totalRoutes) {
44
+ _classCallCheck(this, AnalyticsRouteLogsData);
45
+ AnalyticsRouteLogsData.initialize(this, period, successfulRoutes, failedRoutes, totalRoutes);
46
+ }
47
+
48
+ /**
49
+ * Initializes the fields of this object.
50
+ * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
51
+ * Only for internal use.
52
+ */
53
+ return _createClass(AnalyticsRouteLogsData, null, [{
54
+ key: "initialize",
55
+ value: function initialize(obj, period, successfulRoutes, failedRoutes, totalRoutes) {
56
+ obj['period'] = period;
57
+ obj['successful_routes'] = successfulRoutes;
58
+ obj['failed_routes'] = failedRoutes;
59
+ obj['total_routes'] = totalRoutes;
60
+ }
61
+
62
+ /**
63
+ * Constructs a <code>AnalyticsRouteLogsData</code> from a plain JavaScript object, optionally creating a new instance.
64
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
65
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
66
+ * @param {module:model/AnalyticsRouteLogsData} obj Optional instance to populate.
67
+ * @return {module:model/AnalyticsRouteLogsData} The populated <code>AnalyticsRouteLogsData</code> instance.
68
+ */
69
+ }, {
70
+ key: "constructFromObject",
71
+ value: function constructFromObject(data, obj) {
72
+ if (data) {
73
+ obj = obj || new AnalyticsRouteLogsData();
74
+ if (data.hasOwnProperty('period')) {
75
+ obj['period'] = _ApiClient["default"].convertToType(data['period'], 'Date');
76
+ }
77
+ if (data.hasOwnProperty('successful_routes')) {
78
+ obj['successful_routes'] = _ApiClient["default"].convertToType(data['successful_routes'], 'Number');
79
+ }
80
+ if (data.hasOwnProperty('failed_routes')) {
81
+ obj['failed_routes'] = _ApiClient["default"].convertToType(data['failed_routes'], 'Number');
82
+ }
83
+ if (data.hasOwnProperty('total_routes')) {
84
+ obj['total_routes'] = _ApiClient["default"].convertToType(data['total_routes'], 'Number');
85
+ }
86
+ } else if (data === null) {
87
+ return null;
88
+ }
89
+ return obj;
90
+ }
91
+
92
+ /**
93
+ * Validates the JSON data with respect to <code>AnalyticsRouteLogsData</code>.
94
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
95
+ * @return {boolean} to indicate whether the JSON data is valid with respect to <code>AnalyticsRouteLogsData</code>.
96
+ */
97
+ }, {
98
+ key: "validateJSON",
99
+ value: function validateJSON(data) {
100
+ // check to make sure all required properties are present in the JSON string
101
+ var _iterator = _createForOfIteratorHelper(AnalyticsRouteLogsData.RequiredProperties),
102
+ _step;
103
+ try {
104
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
105
+ var property = _step.value;
106
+ if (!data[property]) {
107
+ throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
108
+ }
109
+ }
110
+ } catch (err) {
111
+ _iterator.e(err);
112
+ } finally {
113
+ _iterator.f();
114
+ }
115
+ return true;
116
+ }
117
+ }]);
118
+ }();
119
+ AnalyticsRouteLogsData.RequiredProperties = ["period", "successful_routes", "failed_routes", "total_routes"];
120
+
121
+ /**
122
+ * @member {Date} period
123
+ */
124
+ AnalyticsRouteLogsData.prototype['period'] = undefined;
125
+
126
+ /**
127
+ * @member {Number} successful_routes
128
+ */
129
+ AnalyticsRouteLogsData.prototype['successful_routes'] = undefined;
130
+
131
+ /**
132
+ * @member {Number} failed_routes
133
+ */
134
+ AnalyticsRouteLogsData.prototype['failed_routes'] = undefined;
135
+
136
+ /**
137
+ * @member {Number} total_routes
138
+ */
139
+ AnalyticsRouteLogsData.prototype['total_routes'] = undefined;
140
+ var _default = exports["default"] = AnalyticsRouteLogsData;
@@ -0,0 +1,132 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _ApiClient = _interopRequireDefault(require("../ApiClient"));
8
+ var _AnalyticsRouteLogsData = _interopRequireDefault(require("./AnalyticsRouteLogsData"));
9
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
10
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
11
+ function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
12
+ function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
13
+ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
14
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
15
+ function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
16
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
17
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
18
+ 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); } /**
19
+ * Notehub API
20
+ * The OpenAPI definition for the Notehub.io API.
21
+ *
22
+ * The version of the OpenAPI document: 1.2.0
23
+ * Contact: engineering@blues.io
24
+ *
25
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
26
+ * https://openapi-generator.tech
27
+ * Do not edit the class manually.
28
+ *
29
+ */
30
+ /**
31
+ * The AnalyticsRouteLogsResponse model module.
32
+ * @module model/AnalyticsRouteLogsResponse
33
+ * @version 1.0.36-beta.10
34
+ */
35
+ var AnalyticsRouteLogsResponse = /*#__PURE__*/function () {
36
+ /**
37
+ * Constructs a new <code>AnalyticsRouteLogsResponse</code>.
38
+ * @alias module:model/AnalyticsRouteLogsResponse
39
+ * @param data {Array.<module:model/AnalyticsRouteLogsData>}
40
+ */
41
+ function AnalyticsRouteLogsResponse(data) {
42
+ _classCallCheck(this, AnalyticsRouteLogsResponse);
43
+ AnalyticsRouteLogsResponse.initialize(this, data);
44
+ }
45
+
46
+ /**
47
+ * Initializes the fields of this object.
48
+ * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
49
+ * Only for internal use.
50
+ */
51
+ return _createClass(AnalyticsRouteLogsResponse, null, [{
52
+ key: "initialize",
53
+ value: function initialize(obj, data) {
54
+ obj['data'] = data;
55
+ }
56
+
57
+ /**
58
+ * Constructs a <code>AnalyticsRouteLogsResponse</code> from a plain JavaScript object, optionally creating a new instance.
59
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
60
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
61
+ * @param {module:model/AnalyticsRouteLogsResponse} obj Optional instance to populate.
62
+ * @return {module:model/AnalyticsRouteLogsResponse} The populated <code>AnalyticsRouteLogsResponse</code> instance.
63
+ */
64
+ }, {
65
+ key: "constructFromObject",
66
+ value: function constructFromObject(data, obj) {
67
+ if (data) {
68
+ obj = obj || new AnalyticsRouteLogsResponse();
69
+ if (data.hasOwnProperty('data')) {
70
+ obj['data'] = _ApiClient["default"].convertToType(data['data'], [_AnalyticsRouteLogsData["default"]]);
71
+ }
72
+ } else if (data === null) {
73
+ return null;
74
+ }
75
+ return obj;
76
+ }
77
+
78
+ /**
79
+ * Validates the JSON data with respect to <code>AnalyticsRouteLogsResponse</code>.
80
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
81
+ * @return {boolean} to indicate whether the JSON data is valid with respect to <code>AnalyticsRouteLogsResponse</code>.
82
+ */
83
+ }, {
84
+ key: "validateJSON",
85
+ value: function validateJSON(data) {
86
+ // check to make sure all required properties are present in the JSON string
87
+ var _iterator = _createForOfIteratorHelper(AnalyticsRouteLogsResponse.RequiredProperties),
88
+ _step;
89
+ try {
90
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
91
+ var property = _step.value;
92
+ if (!data[property]) {
93
+ throw new Error("The required field `" + property + "` is not found in the JSON data: " + JSON.stringify(data));
94
+ }
95
+ }
96
+ } catch (err) {
97
+ _iterator.e(err);
98
+ } finally {
99
+ _iterator.f();
100
+ }
101
+ if (data['data']) {
102
+ // data not null
103
+ // ensure the json data is an array
104
+ if (!Array.isArray(data['data'])) {
105
+ throw new Error("Expected the field `data` to be an array in the JSON data but got " + data['data']);
106
+ }
107
+ // validate the optional field `data` (array)
108
+ var _iterator2 = _createForOfIteratorHelper(data['data']),
109
+ _step2;
110
+ try {
111
+ for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {
112
+ var item = _step2.value;
113
+ _AnalyticsRouteLogsData["default"].validateJsonObject(item);
114
+ }
115
+ } catch (err) {
116
+ _iterator2.e(err);
117
+ } finally {
118
+ _iterator2.f();
119
+ }
120
+ ;
121
+ }
122
+ return true;
123
+ }
124
+ }]);
125
+ }();
126
+ AnalyticsRouteLogsResponse.RequiredProperties = ["data"];
127
+
128
+ /**
129
+ * @member {Array.<module:model/AnalyticsRouteLogsData>} data
130
+ */
131
+ AnalyticsRouteLogsResponse.prototype['data'] = undefined;
132
+ var _default = exports["default"] = AnalyticsRouteLogsResponse;