losant_rest 1.10.3 → 1.13.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (212) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/README.md +2 -2
  4. data/docs/_schemas.md +27526 -11724
  5. data/docs/application.md +83 -0
  6. data/docs/applicationApiTokens.md +2 -2
  7. data/docs/applicationCertificateAuthorities.md +1 -1
  8. data/docs/applicationCertificates.md +1 -1
  9. data/docs/applicationDashboard.md +133 -0
  10. data/docs/applicationDashboards.md +93 -0
  11. data/docs/applicationKeys.md +4 -3
  12. data/docs/applicationTemplate.md +46 -0
  13. data/docs/applicationTemplates.md +77 -2
  14. data/docs/applications.md +1 -1
  15. data/docs/auditLogs.md +1 -1
  16. data/docs/dashboards.md +1 -1
  17. data/docs/dataTables.md +1 -1
  18. data/docs/device.md +6 -3
  19. data/docs/deviceRecipes.md +1 -1
  20. data/docs/devices.md +125 -1
  21. data/docs/edgeDeployments.md +1 -1
  22. data/docs/events.md +4 -4
  23. data/docs/experienceEndpoint.md +1 -0
  24. data/docs/experienceGroups.md +1 -1
  25. data/docs/experienceUsers.md +1 -1
  26. data/docs/experienceVersions.md +1 -1
  27. data/docs/experienceViews.md +1 -1
  28. data/docs/files.md +1 -1
  29. data/docs/flow.md +41 -0
  30. data/docs/flowVersions.md +2 -1
  31. data/docs/flows.md +5 -2
  32. data/docs/instance.md +128 -0
  33. data/docs/instanceMember.md +133 -0
  34. data/docs/instanceMembers.md +91 -0
  35. data/docs/instanceOrg.md +133 -0
  36. data/docs/instanceOrgMember.md +139 -0
  37. data/docs/instanceOrgMembers.md +96 -0
  38. data/docs/instanceOrgs.md +91 -0
  39. data/docs/instances.md +50 -0
  40. data/docs/integration.md +1 -0
  41. data/docs/integrations.md +1 -1
  42. data/docs/me.md +0 -36
  43. data/docs/notebooks.md +1 -1
  44. data/docs/orgs.md +1 -1
  45. data/docs/webhook.md +1 -0
  46. data/docs/webhooks.md +1 -1
  47. data/lib/losant_rest.rb +12 -1
  48. data/lib/losant_rest/application.rb +97 -2
  49. data/lib/losant_rest/application_api_token.rb +1 -1
  50. data/lib/losant_rest/application_api_tokens.rb +2 -2
  51. data/lib/losant_rest/application_certificate.rb +1 -1
  52. data/lib/losant_rest/application_certificate_authorities.rb +1 -1
  53. data/lib/losant_rest/application_certificate_authority.rb +1 -1
  54. data/lib/losant_rest/application_certificates.rb +1 -1
  55. data/lib/losant_rest/application_dashboard.rb +176 -0
  56. data/lib/losant_rest/application_dashboards.rb +138 -0
  57. data/lib/losant_rest/application_key.rb +1 -1
  58. data/lib/losant_rest/application_keys.rb +4 -1
  59. data/lib/losant_rest/application_template.rb +79 -0
  60. data/lib/losant_rest/application_templates.rb +90 -2
  61. data/lib/losant_rest/applications.rb +1 -1
  62. data/lib/losant_rest/audit_log.rb +1 -1
  63. data/lib/losant_rest/audit_logs.rb +1 -1
  64. data/lib/losant_rest/auth.rb +1 -1
  65. data/lib/losant_rest/client.rb +47 -3
  66. data/lib/losant_rest/dashboard.rb +1 -1
  67. data/lib/losant_rest/dashboards.rb +1 -1
  68. data/lib/losant_rest/data.rb +1 -1
  69. data/lib/losant_rest/data_table.rb +1 -1
  70. data/lib/losant_rest/data_table_row.rb +1 -1
  71. data/lib/losant_rest/data_table_rows.rb +1 -1
  72. data/lib/losant_rest/data_tables.rb +1 -1
  73. data/lib/losant_rest/device.rb +10 -4
  74. data/lib/losant_rest/device_recipe.rb +1 -1
  75. data/lib/losant_rest/device_recipes.rb +1 -1
  76. data/lib/losant_rest/devices.rb +153 -1
  77. data/lib/losant_rest/edge_deployments.rb +1 -1
  78. data/lib/losant_rest/error.rb +1 -1
  79. data/lib/losant_rest/event.rb +1 -1
  80. data/lib/losant_rest/events.rb +4 -4
  81. data/lib/losant_rest/experience.rb +1 -1
  82. data/lib/losant_rest/experience_domain.rb +1 -1
  83. data/lib/losant_rest/experience_domains.rb +1 -1
  84. data/lib/losant_rest/experience_endpoint.rb +3 -1
  85. data/lib/losant_rest/experience_endpoints.rb +1 -1
  86. data/lib/losant_rest/experience_group.rb +1 -1
  87. data/lib/losant_rest/experience_groups.rb +1 -1
  88. data/lib/losant_rest/experience_slug.rb +1 -1
  89. data/lib/losant_rest/experience_slugs.rb +1 -1
  90. data/lib/losant_rest/experience_user.rb +1 -1
  91. data/lib/losant_rest/experience_users.rb +1 -1
  92. data/lib/losant_rest/experience_version.rb +1 -1
  93. data/lib/losant_rest/experience_versions.rb +1 -1
  94. data/lib/losant_rest/experience_view.rb +1 -1
  95. data/lib/losant_rest/experience_views.rb +1 -1
  96. data/lib/losant_rest/file.rb +1 -1
  97. data/lib/losant_rest/files.rb +1 -1
  98. data/lib/losant_rest/flow.rb +47 -1
  99. data/lib/losant_rest/flow_version.rb +1 -1
  100. data/lib/losant_rest/flow_versions.rb +4 -1
  101. data/lib/losant_rest/flows.rb +9 -1
  102. data/lib/losant_rest/instance.rb +181 -0
  103. data/lib/losant_rest/instance_member.rb +176 -0
  104. data/lib/losant_rest/instance_members.rb +134 -0
  105. data/lib/losant_rest/instance_org.rb +176 -0
  106. data/lib/losant_rest/instance_org_member.rb +182 -0
  107. data/lib/losant_rest/instance_org_members.rb +138 -0
  108. data/lib/losant_rest/instance_orgs.rb +139 -0
  109. data/lib/losant_rest/instances.rb +88 -0
  110. data/lib/losant_rest/integration.rb +3 -1
  111. data/lib/losant_rest/integrations.rb +1 -1
  112. data/lib/losant_rest/me.rb +2 -43
  113. data/lib/losant_rest/notebook.rb +1 -1
  114. data/lib/losant_rest/notebooks.rb +1 -1
  115. data/lib/losant_rest/org.rb +2 -2
  116. data/lib/losant_rest/org_invites.rb +1 -1
  117. data/lib/losant_rest/orgs.rb +1 -1
  118. data/lib/losant_rest/utils.rb +1 -1
  119. data/lib/losant_rest/version.rb +2 -2
  120. data/lib/losant_rest/webhook.rb +3 -1
  121. data/lib/losant_rest/webhooks.rb +1 -1
  122. data/schemas/advancedApplicationKeyQuery.json +1082 -0
  123. data/schemas/advancedDeviceQuery.json +309 -0
  124. data/schemas/advancedFlowByVersionQuery.json +665 -0
  125. data/schemas/advancedFlowQuery.json +883 -0
  126. data/schemas/advancedFlowVersionQuery.json +925 -0
  127. data/schemas/application.json +8 -0
  128. data/schemas/applicationApiTokenPost.json +12 -0
  129. data/schemas/applicationApplyTemplatePatch.json +19 -0
  130. data/schemas/applicationCreationByTemplateResult.json +8 -0
  131. data/schemas/applicationDashboardPost.json +5683 -0
  132. data/schemas/applicationGlobalPatch.json +33 -0
  133. data/schemas/applicationPost.json +8 -0
  134. data/schemas/applicationTemplate.json +20 -0
  135. data/schemas/applicationTemplateCategories.json +43 -0
  136. data/schemas/applicationTemplateCategory.json +23 -0
  137. data/schemas/applicationTemplates.json +32 -0
  138. data/schemas/applications.json +8 -0
  139. data/schemas/attributeNamesResponse.json +14 -0
  140. data/schemas/authedUser.json +3 -0
  141. data/schemas/changePassword.json +2 -2
  142. data/schemas/dashboard.json +197 -26
  143. data/schemas/dashboardPatch.json +197 -26
  144. data/schemas/dashboardPost.json +197 -26
  145. data/schemas/dashboards.json +197 -26
  146. data/schemas/dataExport.json +132 -1
  147. data/schemas/deviceAttributeDataTypeFilter.json +29 -0
  148. data/schemas/deviceClassFilter.json +1 -2
  149. data/schemas/devicesDeletePost.json +309 -0
  150. data/schemas/devicesExportPost.json +309 -0
  151. data/schemas/devicesPatch.json +309 -0
  152. data/schemas/devicesRemoveDataPost.json +309 -0
  153. data/schemas/experienceLinkedResources.json +96 -0
  154. data/schemas/experienceVersion.json +9 -0
  155. data/schemas/experienceVersionPatch.json +9 -0
  156. data/schemas/experienceVersions.json +9 -0
  157. data/schemas/filePost.json +8 -2
  158. data/schemas/files.json +3 -0
  159. data/schemas/flow.json +32 -0
  160. data/schemas/flowPatch.json +32 -0
  161. data/schemas/flowPost.json +32 -0
  162. data/schemas/flowStorageMetadata.json +13 -0
  163. data/schemas/flowVersion.json +64 -0
  164. data/schemas/flowVersionPost.json +32 -0
  165. data/schemas/flowVersions.json +64 -0
  166. data/schemas/flows.json +32 -0
  167. data/schemas/flowsImportPost.json +64 -0
  168. data/schemas/flowsImportResult.json +96 -0
  169. data/schemas/githubLogin.json +53 -4
  170. data/schemas/historicalSummaries.json +43 -0
  171. data/schemas/historicalSummary.json +455 -0
  172. data/schemas/instance.json +132 -0
  173. data/schemas/instanceMember.json +37 -0
  174. data/schemas/instanceMemberPatch.json +17 -0
  175. data/schemas/instanceMemberPost.json +22 -0
  176. data/schemas/instanceMembers.json +69 -0
  177. data/schemas/instanceOrg.json +133 -0
  178. data/schemas/instanceOrgMember.json +37 -0
  179. data/schemas/instanceOrgMemberPatch.json +69 -0
  180. data/schemas/instanceOrgMemberPost.json +161 -0
  181. data/schemas/instanceOrgMembers.json +34 -0
  182. data/schemas/instanceOrgPatch.json +122 -0
  183. data/schemas/instanceOrgPost.json +125 -0
  184. data/schemas/instanceOrgs.json +174 -0
  185. data/schemas/instanceReportOptionsPost.json +40 -0
  186. data/schemas/instances.json +43 -0
  187. data/schemas/integration.json +3 -0
  188. data/schemas/integrationPatch.json +3 -0
  189. data/schemas/integrationPost.json +3 -0
  190. data/schemas/integrations.json +3 -0
  191. data/schemas/me.json +3 -3
  192. data/schemas/mePatch.json +2 -2
  193. data/schemas/multiDeviceCommand.json +309 -0
  194. data/schemas/notebook.json +7 -0
  195. data/schemas/notebookExecutionLogs.json +7 -0
  196. data/schemas/notebookPatch.json +7 -0
  197. data/schemas/notebookPost.json +7 -0
  198. data/schemas/notebooks.json +7 -0
  199. data/schemas/orgInviteInfo.json +3 -0
  200. data/schemas/orgInvitePost.json +3 -0
  201. data/schemas/orgInvites.json +3 -0
  202. data/schemas/orgPatch.json +0 -9
  203. data/schemas/passwordResetFinish.json +2 -2
  204. data/schemas/payloadStats.json +110 -0
  205. data/schemas/tagKeysResponse.json +14 -0
  206. data/schemas/tagValuesResponse.json +19 -0
  207. data/schemas/templateKeywords.json +14 -0
  208. data/schemas/timeSeriesData.json +12 -2
  209. data/schemas/timeSeriesQuery.json +94 -14
  210. data/schemas/userCredentials.json +51 -3
  211. data/schemas/userPost.json +59 -7
  212. metadata +61 -6
@@ -1330,6 +1330,17 @@
1330
1330
  },
1331
1331
  "config": {
1332
1332
  "type": "object",
1333
+ "properties": {
1334
+ "scope": {
1335
+ "type": "string",
1336
+ "enum": [
1337
+ "local",
1338
+ "global",
1339
+ "experience",
1340
+ "cloud"
1341
+ ]
1342
+ }
1343
+ },
1333
1344
  "additionalProperties": false
1334
1345
  },
1335
1346
  "meta": {
@@ -1794,6 +1805,19 @@
1794
1805
  "baudRate": {
1795
1806
  "type": "number"
1796
1807
  },
1808
+ "dataBits": {
1809
+ "type": "number"
1810
+ },
1811
+ "stopBits": {
1812
+ "type": "number"
1813
+ },
1814
+ "parity": {
1815
+ "type": "string",
1816
+ "maxLength": 8
1817
+ },
1818
+ "rtscts": {
1819
+ "type": "boolean"
1820
+ },
1797
1821
  "encoding": {
1798
1822
  "type": "string",
1799
1823
  "maxLength": 48
@@ -1802,6 +1826,10 @@
1802
1826
  "type": "string",
1803
1827
  "maxLength": 1024
1804
1828
  },
1829
+ "writeOnOpenEncoding": {
1830
+ "type": "string",
1831
+ "maxLength": 48
1832
+ },
1805
1833
  "byteLength": {
1806
1834
  "type": "string",
1807
1835
  "maxLength": 48
@@ -1809,6 +1837,10 @@
1809
1837
  "delimiter": {
1810
1838
  "type": "string",
1811
1839
  "maxLength": 48
1840
+ },
1841
+ "delimiterEncoding": {
1842
+ "type": "string",
1843
+ "maxLength": 48
1812
1844
  }
1813
1845
  },
1814
1846
  "additionalProperties": false
@@ -3546,6 +3578,17 @@
3546
3578
  },
3547
3579
  "config": {
3548
3580
  "type": "object",
3581
+ "properties": {
3582
+ "scope": {
3583
+ "type": "string",
3584
+ "enum": [
3585
+ "local",
3586
+ "global",
3587
+ "experience",
3588
+ "cloud"
3589
+ ]
3590
+ }
3591
+ },
3549
3592
  "additionalProperties": false
3550
3593
  },
3551
3594
  "meta": {
@@ -4010,6 +4053,19 @@
4010
4053
  "baudRate": {
4011
4054
  "type": "number"
4012
4055
  },
4056
+ "dataBits": {
4057
+ "type": "number"
4058
+ },
4059
+ "stopBits": {
4060
+ "type": "number"
4061
+ },
4062
+ "parity": {
4063
+ "type": "string",
4064
+ "maxLength": 8
4065
+ },
4066
+ "rtscts": {
4067
+ "type": "boolean"
4068
+ },
4013
4069
  "encoding": {
4014
4070
  "type": "string",
4015
4071
  "maxLength": 48
@@ -4018,6 +4074,10 @@
4018
4074
  "type": "string",
4019
4075
  "maxLength": 1024
4020
4076
  },
4077
+ "writeOnOpenEncoding": {
4078
+ "type": "string",
4079
+ "maxLength": 48
4080
+ },
4021
4081
  "byteLength": {
4022
4082
  "type": "string",
4023
4083
  "maxLength": 48
@@ -4025,6 +4085,10 @@
4025
4085
  "delimiter": {
4026
4086
  "type": "string",
4027
4087
  "maxLength": 48
4088
+ },
4089
+ "delimiterEncoding": {
4090
+ "type": "string",
4091
+ "maxLength": 48
4028
4092
  }
4029
4093
  },
4030
4094
  "additionalProperties": false
@@ -5712,6 +5776,17 @@
5712
5776
  },
5713
5777
  "config": {
5714
5778
  "type": "object",
5779
+ "properties": {
5780
+ "scope": {
5781
+ "type": "string",
5782
+ "enum": [
5783
+ "local",
5784
+ "global",
5785
+ "experience",
5786
+ "cloud"
5787
+ ]
5788
+ }
5789
+ },
5715
5790
  "additionalProperties": false
5716
5791
  },
5717
5792
  "meta": {
@@ -6176,6 +6251,19 @@
6176
6251
  "baudRate": {
6177
6252
  "type": "number"
6178
6253
  },
6254
+ "dataBits": {
6255
+ "type": "number"
6256
+ },
6257
+ "stopBits": {
6258
+ "type": "number"
6259
+ },
6260
+ "parity": {
6261
+ "type": "string",
6262
+ "maxLength": 8
6263
+ },
6264
+ "rtscts": {
6265
+ "type": "boolean"
6266
+ },
6179
6267
  "encoding": {
6180
6268
  "type": "string",
6181
6269
  "maxLength": 48
@@ -6184,6 +6272,10 @@
6184
6272
  "type": "string",
6185
6273
  "maxLength": 1024
6186
6274
  },
6275
+ "writeOnOpenEncoding": {
6276
+ "type": "string",
6277
+ "maxLength": 48
6278
+ },
6187
6279
  "byteLength": {
6188
6280
  "type": "string",
6189
6281
  "maxLength": 48
@@ -6191,6 +6283,10 @@
6191
6283
  "delimiter": {
6192
6284
  "type": "string",
6193
6285
  "maxLength": 48
6286
+ },
6287
+ "delimiterEncoding": {
6288
+ "type": "string",
6289
+ "maxLength": 48
6194
6290
  }
6195
6291
  },
6196
6292
  "additionalProperties": false
@@ -37,6 +37,15 @@
37
37
  "endpointDefaultCors": {
38
38
  "type": "boolean"
39
39
  },
40
+ "allowedCorsOrigins": {
41
+ "type": "array",
42
+ "items": {
43
+ "type": "string",
44
+ "minLength": 8,
45
+ "maxLength": 270
46
+ },
47
+ "maxItems": 100
48
+ },
40
49
  "version": {
41
50
  "type": "string",
42
51
  "minLength": 1,
@@ -5,6 +5,15 @@
5
5
  "endpointDefaultCors": {
6
6
  "type": "boolean"
7
7
  },
8
+ "allowedCorsOrigins": {
9
+ "type": "array",
10
+ "items": {
11
+ "type": "string",
12
+ "minLength": 8,
13
+ "maxLength": 270
14
+ },
15
+ "maxItems": 100
16
+ },
8
17
  "description": {
9
18
  "type": "string",
10
19
  "maxLength": 32767
@@ -44,6 +44,15 @@
44
44
  "endpointDefaultCors": {
45
45
  "type": "boolean"
46
46
  },
47
+ "allowedCorsOrigins": {
48
+ "type": "array",
49
+ "items": {
50
+ "type": "string",
51
+ "minLength": 8,
52
+ "maxLength": 270
53
+ },
54
+ "maxItems": 100
55
+ },
47
56
  "version": {
48
57
  "type": "string",
49
58
  "minLength": 1,
@@ -34,7 +34,13 @@
34
34
  "height": {
35
35
  "type": "number"
36
36
  }
37
- }
37
+ },
38
+ "additionalProperties": false
38
39
  }
39
- }
40
+ },
41
+ "additionalProperties": false,
42
+ "required": [
43
+ "name",
44
+ "type"
45
+ ]
40
46
  }
data/schemas/files.json CHANGED
@@ -125,6 +125,9 @@
125
125
  "DESC",
126
126
  ""
127
127
  ]
128
+ },
129
+ "parentExists": {
130
+ "type": "boolean"
128
131
  }
129
132
  }
130
133
  }
data/schemas/flow.json CHANGED
@@ -947,6 +947,17 @@
947
947
  },
948
948
  "config": {
949
949
  "type": "object",
950
+ "properties": {
951
+ "scope": {
952
+ "type": "string",
953
+ "enum": [
954
+ "local",
955
+ "global",
956
+ "experience",
957
+ "cloud"
958
+ ]
959
+ }
960
+ },
950
961
  "additionalProperties": false
951
962
  },
952
963
  "meta": {
@@ -1411,6 +1422,19 @@
1411
1422
  "baudRate": {
1412
1423
  "type": "number"
1413
1424
  },
1425
+ "dataBits": {
1426
+ "type": "number"
1427
+ },
1428
+ "stopBits": {
1429
+ "type": "number"
1430
+ },
1431
+ "parity": {
1432
+ "type": "string",
1433
+ "maxLength": 8
1434
+ },
1435
+ "rtscts": {
1436
+ "type": "boolean"
1437
+ },
1414
1438
  "encoding": {
1415
1439
  "type": "string",
1416
1440
  "maxLength": 48
@@ -1419,6 +1443,10 @@
1419
1443
  "type": "string",
1420
1444
  "maxLength": 1024
1421
1445
  },
1446
+ "writeOnOpenEncoding": {
1447
+ "type": "string",
1448
+ "maxLength": 48
1449
+ },
1422
1450
  "byteLength": {
1423
1451
  "type": "string",
1424
1452
  "maxLength": 48
@@ -1426,6 +1454,10 @@
1426
1454
  "delimiter": {
1427
1455
  "type": "string",
1428
1456
  "maxLength": 48
1457
+ },
1458
+ "delimiterEncoding": {
1459
+ "type": "string",
1460
+ "maxLength": 48
1429
1461
  }
1430
1462
  },
1431
1463
  "additionalProperties": false
@@ -928,6 +928,17 @@
928
928
  },
929
929
  "config": {
930
930
  "type": "object",
931
+ "properties": {
932
+ "scope": {
933
+ "type": "string",
934
+ "enum": [
935
+ "local",
936
+ "global",
937
+ "experience",
938
+ "cloud"
939
+ ]
940
+ }
941
+ },
931
942
  "additionalProperties": false
932
943
  },
933
944
  "meta": {
@@ -1392,6 +1403,19 @@
1392
1403
  "baudRate": {
1393
1404
  "type": "number"
1394
1405
  },
1406
+ "dataBits": {
1407
+ "type": "number"
1408
+ },
1409
+ "stopBits": {
1410
+ "type": "number"
1411
+ },
1412
+ "parity": {
1413
+ "type": "string",
1414
+ "maxLength": 8
1415
+ },
1416
+ "rtscts": {
1417
+ "type": "boolean"
1418
+ },
1395
1419
  "encoding": {
1396
1420
  "type": "string",
1397
1421
  "maxLength": 48
@@ -1400,6 +1424,10 @@
1400
1424
  "type": "string",
1401
1425
  "maxLength": 1024
1402
1426
  },
1427
+ "writeOnOpenEncoding": {
1428
+ "type": "string",
1429
+ "maxLength": 48
1430
+ },
1403
1431
  "byteLength": {
1404
1432
  "type": "string",
1405
1433
  "maxLength": 48
@@ -1407,6 +1435,10 @@
1407
1435
  "delimiter": {
1408
1436
  "type": "string",
1409
1437
  "maxLength": 48
1438
+ },
1439
+ "delimiterEncoding": {
1440
+ "type": "string",
1441
+ "maxLength": 48
1410
1442
  }
1411
1443
  },
1412
1444
  "additionalProperties": false
@@ -917,6 +917,17 @@
917
917
  },
918
918
  "config": {
919
919
  "type": "object",
920
+ "properties": {
921
+ "scope": {
922
+ "type": "string",
923
+ "enum": [
924
+ "local",
925
+ "global",
926
+ "experience",
927
+ "cloud"
928
+ ]
929
+ }
930
+ },
920
931
  "additionalProperties": false
921
932
  },
922
933
  "meta": {
@@ -1381,6 +1392,19 @@
1381
1392
  "baudRate": {
1382
1393
  "type": "number"
1383
1394
  },
1395
+ "dataBits": {
1396
+ "type": "number"
1397
+ },
1398
+ "stopBits": {
1399
+ "type": "number"
1400
+ },
1401
+ "parity": {
1402
+ "type": "string",
1403
+ "maxLength": 8
1404
+ },
1405
+ "rtscts": {
1406
+ "type": "boolean"
1407
+ },
1384
1408
  "encoding": {
1385
1409
  "type": "string",
1386
1410
  "maxLength": 48
@@ -1389,6 +1413,10 @@
1389
1413
  "type": "string",
1390
1414
  "maxLength": 1024
1391
1415
  },
1416
+ "writeOnOpenEncoding": {
1417
+ "type": "string",
1418
+ "maxLength": 48
1419
+ },
1392
1420
  "byteLength": {
1393
1421
  "type": "string",
1394
1422
  "maxLength": 48
@@ -1396,6 +1424,10 @@
1396
1424
  "delimiter": {
1397
1425
  "type": "string",
1398
1426
  "maxLength": 48
1427
+ },
1428
+ "delimiterEncoding": {
1429
+ "type": "string",
1430
+ "maxLength": 48
1399
1431
  }
1400
1432
  },
1401
1433
  "additionalProperties": false
@@ -0,0 +1,13 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
+ "type": "object",
4
+ "properties": {
5
+ "memoryUsed": {
6
+ "type": "number"
7
+ },
8
+ "keysCount": {
9
+ "type": "number"
10
+ }
11
+ },
12
+ "additionalProperties": false
13
+ }
@@ -932,6 +932,17 @@
932
932
  },
933
933
  "config": {
934
934
  "type": "object",
935
+ "properties": {
936
+ "scope": {
937
+ "type": "string",
938
+ "enum": [
939
+ "local",
940
+ "global",
941
+ "experience",
942
+ "cloud"
943
+ ]
944
+ }
945
+ },
935
946
  "additionalProperties": false
936
947
  },
937
948
  "meta": {
@@ -1396,6 +1407,19 @@
1396
1407
  "baudRate": {
1397
1408
  "type": "number"
1398
1409
  },
1410
+ "dataBits": {
1411
+ "type": "number"
1412
+ },
1413
+ "stopBits": {
1414
+ "type": "number"
1415
+ },
1416
+ "parity": {
1417
+ "type": "string",
1418
+ "maxLength": 8
1419
+ },
1420
+ "rtscts": {
1421
+ "type": "boolean"
1422
+ },
1399
1423
  "encoding": {
1400
1424
  "type": "string",
1401
1425
  "maxLength": 48
@@ -1404,6 +1428,10 @@
1404
1428
  "type": "string",
1405
1429
  "maxLength": 1024
1406
1430
  },
1431
+ "writeOnOpenEncoding": {
1432
+ "type": "string",
1433
+ "maxLength": 48
1434
+ },
1407
1435
  "byteLength": {
1408
1436
  "type": "string",
1409
1437
  "maxLength": 48
@@ -1411,6 +1439,10 @@
1411
1439
  "delimiter": {
1412
1440
  "type": "string",
1413
1441
  "maxLength": 48
1442
+ },
1443
+ "delimiterEncoding": {
1444
+ "type": "string",
1445
+ "maxLength": 48
1414
1446
  }
1415
1447
  },
1416
1448
  "additionalProperties": false
@@ -3098,6 +3130,17 @@
3098
3130
  },
3099
3131
  "config": {
3100
3132
  "type": "object",
3133
+ "properties": {
3134
+ "scope": {
3135
+ "type": "string",
3136
+ "enum": [
3137
+ "local",
3138
+ "global",
3139
+ "experience",
3140
+ "cloud"
3141
+ ]
3142
+ }
3143
+ },
3101
3144
  "additionalProperties": false
3102
3145
  },
3103
3146
  "meta": {
@@ -3562,6 +3605,19 @@
3562
3605
  "baudRate": {
3563
3606
  "type": "number"
3564
3607
  },
3608
+ "dataBits": {
3609
+ "type": "number"
3610
+ },
3611
+ "stopBits": {
3612
+ "type": "number"
3613
+ },
3614
+ "parity": {
3615
+ "type": "string",
3616
+ "maxLength": 8
3617
+ },
3618
+ "rtscts": {
3619
+ "type": "boolean"
3620
+ },
3565
3621
  "encoding": {
3566
3622
  "type": "string",
3567
3623
  "maxLength": 48
@@ -3570,6 +3626,10 @@
3570
3626
  "type": "string",
3571
3627
  "maxLength": 1024
3572
3628
  },
3629
+ "writeOnOpenEncoding": {
3630
+ "type": "string",
3631
+ "maxLength": 48
3632
+ },
3573
3633
  "byteLength": {
3574
3634
  "type": "string",
3575
3635
  "maxLength": 48
@@ -3577,6 +3637,10 @@
3577
3637
  "delimiter": {
3578
3638
  "type": "string",
3579
3639
  "maxLength": 48
3640
+ },
3641
+ "delimiterEncoding": {
3642
+ "type": "string",
3643
+ "maxLength": 48
3580
3644
  }
3581
3645
  },
3582
3646
  "additionalProperties": false