losant_rest 1.10.1 → 1.11.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (135) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/docs/_schemas.md +26941 -15658
  4. data/docs/application.md +42 -0
  5. data/docs/applicationApiTokens.md +2 -2
  6. data/docs/applicationCertificateAuthorities.md +1 -1
  7. data/docs/applicationCertificates.md +1 -1
  8. data/docs/applicationKeys.md +1 -1
  9. data/docs/applicationTemplate.md +46 -0
  10. data/docs/applicationTemplates.md +77 -2
  11. data/docs/applications.md +1 -1
  12. data/docs/auditLogs.md +1 -1
  13. data/docs/dashboards.md +1 -1
  14. data/docs/dataTables.md +1 -1
  15. data/docs/device.md +6 -3
  16. data/docs/deviceRecipes.md +1 -1
  17. data/docs/devices.md +217 -5
  18. data/docs/edgeDeployments.md +1 -1
  19. data/docs/events.md +1 -1
  20. data/docs/experienceEndpoints.md +1 -0
  21. data/docs/experienceGroups.md +1 -1
  22. data/docs/experienceUsers.md +1 -1
  23. data/docs/experienceVersions.md +1 -1
  24. data/docs/experienceViews.md +1 -1
  25. data/docs/file.md +4 -4
  26. data/docs/files.md +1 -1
  27. data/docs/flow.md +94 -1
  28. data/docs/flowVersion.md +96 -1
  29. data/docs/flowVersions.md +2 -1
  30. data/docs/flows.md +4 -2
  31. data/docs/integrations.md +1 -1
  32. data/docs/me.md +0 -36
  33. data/docs/notebooks.md +1 -1
  34. data/docs/orgs.md +1 -1
  35. data/docs/webhooks.md +1 -1
  36. data/lib/losant_rest.rb +1 -0
  37. data/lib/losant_rest/application.rb +48 -0
  38. data/lib/losant_rest/application_api_tokens.rb +1 -1
  39. data/lib/losant_rest/application_template.rb +79 -0
  40. data/lib/losant_rest/application_templates.rb +89 -1
  41. data/lib/losant_rest/client.rb +6 -2
  42. data/lib/losant_rest/device.rb +9 -3
  43. data/lib/losant_rest/devices.rb +255 -3
  44. data/lib/losant_rest/experience_endpoints.rb +2 -0
  45. data/lib/losant_rest/file.rb +3 -3
  46. data/lib/losant_rest/flow.rb +115 -1
  47. data/lib/losant_rest/flow_version.rb +115 -1
  48. data/lib/losant_rest/flow_versions.rb +3 -0
  49. data/lib/losant_rest/flows.rb +6 -0
  50. data/lib/losant_rest/me.rb +0 -41
  51. data/lib/losant_rest/version.rb +1 -1
  52. data/schemas/advancedDeviceQuery.json +110 -0
  53. data/schemas/advancedEventQuery.json +198 -0
  54. data/schemas/advancedFlowByVersionQuery.json +665 -0
  55. data/schemas/advancedFlowQuery.json +665 -0
  56. data/schemas/advancedFlowVersionQuery.json +707 -0
  57. data/schemas/advancedQuery.json +22 -0
  58. data/schemas/application.json +8 -0
  59. data/schemas/applicationApiTokenPost.json +11 -1
  60. data/schemas/applicationApplyTemplatePatch.json +19 -0
  61. data/schemas/applicationCreationByTemplateResult.json +8 -0
  62. data/schemas/applicationPost.json +8 -0
  63. data/schemas/applicationTemplate.json +20 -0
  64. data/schemas/applicationTemplateCategories.json +43 -0
  65. data/schemas/applicationTemplateCategory.json +23 -0
  66. data/schemas/applicationTemplates.json +32 -0
  67. data/schemas/applications.json +8 -0
  68. data/schemas/attributeNamesResponse.json +14 -0
  69. data/schemas/authedUser.json +3 -0
  70. data/schemas/changePassword.json +2 -2
  71. data/schemas/dashboard.json +175 -25
  72. data/schemas/dashboardPatch.json +175 -25
  73. data/schemas/dashboardPost.json +175 -25
  74. data/schemas/dashboards.json +175 -25
  75. data/schemas/dataExport.json +142 -0
  76. data/schemas/dataTableRowsExport.json +22 -0
  77. data/schemas/deviceAttributeDataTypeFilter.json +29 -0
  78. data/schemas/deviceClassFilter.json +1 -2
  79. data/schemas/devicesDataRemoved.json +12 -0
  80. data/schemas/devicesDeletePost.json +1034 -0
  81. data/schemas/devicesDeleted.json +12 -0
  82. data/schemas/devicesExportPost.json +1035 -0
  83. data/schemas/devicesPatch.json +1757 -4
  84. data/schemas/devicesRemoveDataPost.json +1056 -0
  85. data/schemas/devicesUpdated.json +18 -0
  86. data/schemas/eventPost.json +22 -0
  87. data/schemas/eventsExport.json +198 -0
  88. data/schemas/experienceDomain.json +1 -1
  89. data/schemas/experienceDomainPatch.json +1 -1
  90. data/schemas/experienceDomainPost.json +1 -1
  91. data/schemas/experienceDomains.json +1 -1
  92. data/schemas/experienceLinkedResources.json +96 -0
  93. data/schemas/experienceVersion.json +10 -1
  94. data/schemas/experienceVersionPatch.json +9 -0
  95. data/schemas/experienceVersions.json +10 -1
  96. data/schemas/flow.json +32 -0
  97. data/schemas/flowErrors.json +87 -0
  98. data/schemas/flowPatch.json +32 -0
  99. data/schemas/flowPost.json +32 -0
  100. data/schemas/flowStats.json +54 -0
  101. data/schemas/flowVersion.json +64 -0
  102. data/schemas/flowVersionPost.json +32 -0
  103. data/schemas/flowVersions.json +64 -0
  104. data/schemas/flows.json +32 -0
  105. data/schemas/flowsImportPost.json +64 -0
  106. data/schemas/flowsImportResult.json +96 -0
  107. data/schemas/githubLogin.json +17 -4
  108. data/schemas/integration.json +3 -0
  109. data/schemas/integrationPatch.json +3 -0
  110. data/schemas/integrationPost.json +3 -0
  111. data/schemas/integrations.json +3 -0
  112. data/schemas/me.json +3 -3
  113. data/schemas/mePatch.json +2 -2
  114. data/schemas/multiDeviceCommand.json +1019 -0
  115. data/schemas/notebook.json +96 -0
  116. data/schemas/notebookExecutionLogs.json +7 -0
  117. data/schemas/notebookPatch.json +96 -0
  118. data/schemas/notebookPost.json +96 -0
  119. data/schemas/notebooks.json +96 -0
  120. data/schemas/org.json +1 -1
  121. data/schemas/orgInviteInfo.json +3 -0
  122. data/schemas/orgInvitePost.json +3 -0
  123. data/schemas/orgInvites.json +3 -0
  124. data/schemas/orgPatch.json +1 -1
  125. data/schemas/orgs.json +1 -1
  126. data/schemas/passwordResetFinish.json +2 -2
  127. data/schemas/samlResponse.json +1 -1
  128. data/schemas/tagKeysResponse.json +14 -0
  129. data/schemas/tagValuesResponse.json +19 -0
  130. data/schemas/templateKeywords.json +14 -0
  131. data/schemas/timeSeriesData.json +12 -2
  132. data/schemas/timeSeriesQuery.json +94 -14
  133. data/schemas/userCredentials.json +15 -3
  134. data/schemas/userPost.json +23 -7
  135. metadata +27 -6
@@ -231,8 +231,18 @@
231
231
  "type": "object",
232
232
  "properties": {
233
233
  "value": {
234
- "type": "string",
235
- "maxLength": 255
234
+ "oneOf": [
235
+ {
236
+ "type": "string",
237
+ "maxLength": 255
238
+ },
239
+ {
240
+ "type": "number"
241
+ },
242
+ {
243
+ "type": "boolean"
244
+ }
245
+ ]
236
246
  }
237
247
  },
238
248
  "additionalProperties": false,
@@ -287,6 +297,10 @@
287
297
  "type": "string",
288
298
  "maxLength": 255
289
299
  },
300
+ "expression": {
301
+ "type": "string",
302
+ "maxLength": 255
303
+ },
290
304
  "yAxisLabel": {
291
305
  "type": "string",
292
306
  "maxLength": 255
@@ -481,8 +495,18 @@
481
495
  "type": "object",
482
496
  "properties": {
483
497
  "value": {
484
- "type": "string",
485
- "maxLength": 255
498
+ "oneOf": [
499
+ {
500
+ "type": "string",
501
+ "maxLength": 255
502
+ },
503
+ {
504
+ "type": "number"
505
+ },
506
+ {
507
+ "type": "boolean"
508
+ }
509
+ ]
486
510
  }
487
511
  },
488
512
  "additionalProperties": false,
@@ -644,8 +668,18 @@
644
668
  "type": "object",
645
669
  "properties": {
646
670
  "value": {
647
- "type": "string",
648
- "maxLength": 255
671
+ "oneOf": [
672
+ {
673
+ "type": "string",
674
+ "maxLength": 255
675
+ },
676
+ {
677
+ "type": "number"
678
+ },
679
+ {
680
+ "type": "boolean"
681
+ }
682
+ ]
649
683
  }
650
684
  },
651
685
  "additionalProperties": false,
@@ -1149,6 +1183,9 @@
1149
1183
  "type": "string",
1150
1184
  "maxLength": 255
1151
1185
  }
1186
+ },
1187
+ "includeDeviceInfo": {
1188
+ "type": "boolean"
1152
1189
  }
1153
1190
  },
1154
1191
  "additionalProperties": false
@@ -1626,8 +1663,18 @@
1626
1663
  "type": "object",
1627
1664
  "properties": {
1628
1665
  "value": {
1629
- "type": "string",
1630
- "maxLength": 255
1666
+ "oneOf": [
1667
+ {
1668
+ "type": "string",
1669
+ "maxLength": 255
1670
+ },
1671
+ {
1672
+ "type": "number"
1673
+ },
1674
+ {
1675
+ "type": "boolean"
1676
+ }
1677
+ ]
1631
1678
  }
1632
1679
  },
1633
1680
  "additionalProperties": false,
@@ -1682,6 +1729,10 @@
1682
1729
  "type": "string",
1683
1730
  "maxLength": 255
1684
1731
  },
1732
+ "expression": {
1733
+ "type": "string",
1734
+ "maxLength": 255
1735
+ },
1685
1736
  "yAxisLabel": {
1686
1737
  "type": "string",
1687
1738
  "maxLength": 255
@@ -1912,8 +1963,18 @@
1912
1963
  "type": "object",
1913
1964
  "properties": {
1914
1965
  "value": {
1915
- "type": "string",
1916
- "maxLength": 255
1966
+ "oneOf": [
1967
+ {
1968
+ "type": "string",
1969
+ "maxLength": 255
1970
+ },
1971
+ {
1972
+ "type": "number"
1973
+ },
1974
+ {
1975
+ "type": "boolean"
1976
+ }
1977
+ ]
1917
1978
  }
1918
1979
  },
1919
1980
  "additionalProperties": false,
@@ -2187,6 +2248,10 @@
2187
2248
  "normal",
2188
2249
  "satellite"
2189
2250
  ]
2251
+ },
2252
+ "query": {
2253
+ "type": "string",
2254
+ "maxLength": 32767
2190
2255
  }
2191
2256
  },
2192
2257
  "additionalProperties": false
@@ -2394,7 +2459,7 @@
2394
2459
  },
2395
2460
  "segments": {
2396
2461
  "type": "array",
2397
- "maxItems": 100,
2462
+ "maxItems": 300,
2398
2463
  "items": {
2399
2464
  "oneOf": [
2400
2465
  {
@@ -2490,8 +2555,18 @@
2490
2555
  "type": "object",
2491
2556
  "properties": {
2492
2557
  "value": {
2493
- "type": "string",
2494
- "maxLength": 255
2558
+ "oneOf": [
2559
+ {
2560
+ "type": "string",
2561
+ "maxLength": 255
2562
+ },
2563
+ {
2564
+ "type": "number"
2565
+ },
2566
+ {
2567
+ "type": "boolean"
2568
+ }
2569
+ ]
2495
2570
  }
2496
2571
  },
2497
2572
  "additionalProperties": false,
@@ -3084,8 +3159,18 @@
3084
3159
  "type": "object",
3085
3160
  "properties": {
3086
3161
  "value": {
3087
- "type": "string",
3088
- "maxLength": 255
3162
+ "oneOf": [
3163
+ {
3164
+ "type": "string",
3165
+ "maxLength": 255
3166
+ },
3167
+ {
3168
+ "type": "number"
3169
+ },
3170
+ {
3171
+ "type": "boolean"
3172
+ }
3173
+ ]
3089
3174
  }
3090
3175
  },
3091
3176
  "additionalProperties": false,
@@ -3140,6 +3225,10 @@
3140
3225
  "type": "string",
3141
3226
  "maxLength": 255
3142
3227
  },
3228
+ "expression": {
3229
+ "type": "string",
3230
+ "maxLength": 255
3231
+ },
3143
3232
  "yAxisLabel": {
3144
3233
  "type": "string",
3145
3234
  "maxLength": 255
@@ -3427,8 +3516,18 @@
3427
3516
  "type": "object",
3428
3517
  "properties": {
3429
3518
  "value": {
3430
- "type": "string",
3431
- "maxLength": 255
3519
+ "oneOf": [
3520
+ {
3521
+ "type": "string",
3522
+ "maxLength": 255
3523
+ },
3524
+ {
3525
+ "type": "number"
3526
+ },
3527
+ {
3528
+ "type": "boolean"
3529
+ }
3530
+ ]
3432
3531
  }
3433
3532
  },
3434
3533
  "additionalProperties": false,
@@ -3651,8 +3750,18 @@
3651
3750
  "type": "object",
3652
3751
  "properties": {
3653
3752
  "value": {
3654
- "type": "string",
3655
- "maxLength": 255
3753
+ "oneOf": [
3754
+ {
3755
+ "type": "string",
3756
+ "maxLength": 255
3757
+ },
3758
+ {
3759
+ "type": "number"
3760
+ },
3761
+ {
3762
+ "type": "boolean"
3763
+ }
3764
+ ]
3656
3765
  }
3657
3766
  },
3658
3767
  "additionalProperties": false,
@@ -3704,6 +3813,9 @@
3704
3813
  },
3705
3814
  "defaultValue": {
3706
3815
  "type": "boolean"
3816
+ },
3817
+ "includeLabel": {
3818
+ "type": "boolean"
3707
3819
  }
3708
3820
  },
3709
3821
  "additionalProperties": false
@@ -3830,8 +3942,18 @@
3830
3942
  "type": "object",
3831
3943
  "properties": {
3832
3944
  "value": {
3833
- "type": "string",
3834
- "maxLength": 255
3945
+ "oneOf": [
3946
+ {
3947
+ "type": "string",
3948
+ "maxLength": 255
3949
+ },
3950
+ {
3951
+ "type": "number"
3952
+ },
3953
+ {
3954
+ "type": "boolean"
3955
+ }
3956
+ ]
3835
3957
  }
3836
3958
  },
3837
3959
  "additionalProperties": false,
@@ -4010,8 +4132,18 @@
4010
4132
  "type": "object",
4011
4133
  "properties": {
4012
4134
  "value": {
4013
- "type": "string",
4014
- "maxLength": 255
4135
+ "oneOf": [
4136
+ {
4137
+ "type": "string",
4138
+ "maxLength": 255
4139
+ },
4140
+ {
4141
+ "type": "number"
4142
+ },
4143
+ {
4144
+ "type": "boolean"
4145
+ }
4146
+ ]
4015
4147
  }
4016
4148
  },
4017
4149
  "additionalProperties": false,
@@ -4416,6 +4548,10 @@
4416
4548
  "type": "string",
4417
4549
  "maxLength": 32767
4418
4550
  },
4551
+ "query": {
4552
+ "type": "string",
4553
+ "maxLength": 32767
4554
+ },
4419
4555
  "resizedPins": {
4420
4556
  "type": "boolean"
4421
4557
  },
@@ -4656,8 +4792,18 @@
4656
4792
  "type": "object",
4657
4793
  "properties": {
4658
4794
  "value": {
4659
- "type": "string",
4660
- "maxLength": 255
4795
+ "oneOf": [
4796
+ {
4797
+ "type": "string",
4798
+ "maxLength": 255
4799
+ },
4800
+ {
4801
+ "type": "number"
4802
+ },
4803
+ {
4804
+ "type": "boolean"
4805
+ }
4806
+ ]
4661
4807
  }
4662
4808
  },
4663
4809
  "additionalProperties": false,
@@ -4712,6 +4858,10 @@
4712
4858
  "type": "string",
4713
4859
  "maxLength": 255
4714
4860
  },
4861
+ "expression": {
4862
+ "type": "string",
4863
+ "maxLength": 255
4864
+ },
4715
4865
  "yAxisLabel": {
4716
4866
  "type": "string",
4717
4867
  "maxLength": 255
@@ -239,8 +239,18 @@
239
239
  "type": "object",
240
240
  "properties": {
241
241
  "value": {
242
- "type": "string",
243
- "maxLength": 255
242
+ "oneOf": [
243
+ {
244
+ "type": "string",
245
+ "maxLength": 255
246
+ },
247
+ {
248
+ "type": "number"
249
+ },
250
+ {
251
+ "type": "boolean"
252
+ }
253
+ ]
244
254
  }
245
255
  },
246
256
  "additionalProperties": false,
@@ -295,6 +305,10 @@
295
305
  "type": "string",
296
306
  "maxLength": 255
297
307
  },
308
+ "expression": {
309
+ "type": "string",
310
+ "maxLength": 255
311
+ },
298
312
  "yAxisLabel": {
299
313
  "type": "string",
300
314
  "maxLength": 255
@@ -489,8 +503,18 @@
489
503
  "type": "object",
490
504
  "properties": {
491
505
  "value": {
492
- "type": "string",
493
- "maxLength": 255
506
+ "oneOf": [
507
+ {
508
+ "type": "string",
509
+ "maxLength": 255
510
+ },
511
+ {
512
+ "type": "number"
513
+ },
514
+ {
515
+ "type": "boolean"
516
+ }
517
+ ]
494
518
  }
495
519
  },
496
520
  "additionalProperties": false,
@@ -652,8 +676,18 @@
652
676
  "type": "object",
653
677
  "properties": {
654
678
  "value": {
655
- "type": "string",
656
- "maxLength": 255
679
+ "oneOf": [
680
+ {
681
+ "type": "string",
682
+ "maxLength": 255
683
+ },
684
+ {
685
+ "type": "number"
686
+ },
687
+ {
688
+ "type": "boolean"
689
+ }
690
+ ]
657
691
  }
658
692
  },
659
693
  "additionalProperties": false,
@@ -1157,6 +1191,9 @@
1157
1191
  "type": "string",
1158
1192
  "maxLength": 255
1159
1193
  }
1194
+ },
1195
+ "includeDeviceInfo": {
1196
+ "type": "boolean"
1160
1197
  }
1161
1198
  },
1162
1199
  "additionalProperties": false
@@ -1634,8 +1671,18 @@
1634
1671
  "type": "object",
1635
1672
  "properties": {
1636
1673
  "value": {
1637
- "type": "string",
1638
- "maxLength": 255
1674
+ "oneOf": [
1675
+ {
1676
+ "type": "string",
1677
+ "maxLength": 255
1678
+ },
1679
+ {
1680
+ "type": "number"
1681
+ },
1682
+ {
1683
+ "type": "boolean"
1684
+ }
1685
+ ]
1639
1686
  }
1640
1687
  },
1641
1688
  "additionalProperties": false,
@@ -1690,6 +1737,10 @@
1690
1737
  "type": "string",
1691
1738
  "maxLength": 255
1692
1739
  },
1740
+ "expression": {
1741
+ "type": "string",
1742
+ "maxLength": 255
1743
+ },
1693
1744
  "yAxisLabel": {
1694
1745
  "type": "string",
1695
1746
  "maxLength": 255
@@ -1920,8 +1971,18 @@
1920
1971
  "type": "object",
1921
1972
  "properties": {
1922
1973
  "value": {
1923
- "type": "string",
1924
- "maxLength": 255
1974
+ "oneOf": [
1975
+ {
1976
+ "type": "string",
1977
+ "maxLength": 255
1978
+ },
1979
+ {
1980
+ "type": "number"
1981
+ },
1982
+ {
1983
+ "type": "boolean"
1984
+ }
1985
+ ]
1925
1986
  }
1926
1987
  },
1927
1988
  "additionalProperties": false,
@@ -2195,6 +2256,10 @@
2195
2256
  "normal",
2196
2257
  "satellite"
2197
2258
  ]
2259
+ },
2260
+ "query": {
2261
+ "type": "string",
2262
+ "maxLength": 32767
2198
2263
  }
2199
2264
  },
2200
2265
  "additionalProperties": false
@@ -2402,7 +2467,7 @@
2402
2467
  },
2403
2468
  "segments": {
2404
2469
  "type": "array",
2405
- "maxItems": 100,
2470
+ "maxItems": 300,
2406
2471
  "items": {
2407
2472
  "oneOf": [
2408
2473
  {
@@ -2498,8 +2563,18 @@
2498
2563
  "type": "object",
2499
2564
  "properties": {
2500
2565
  "value": {
2501
- "type": "string",
2502
- "maxLength": 255
2566
+ "oneOf": [
2567
+ {
2568
+ "type": "string",
2569
+ "maxLength": 255
2570
+ },
2571
+ {
2572
+ "type": "number"
2573
+ },
2574
+ {
2575
+ "type": "boolean"
2576
+ }
2577
+ ]
2503
2578
  }
2504
2579
  },
2505
2580
  "additionalProperties": false,
@@ -3092,8 +3167,18 @@
3092
3167
  "type": "object",
3093
3168
  "properties": {
3094
3169
  "value": {
3095
- "type": "string",
3096
- "maxLength": 255
3170
+ "oneOf": [
3171
+ {
3172
+ "type": "string",
3173
+ "maxLength": 255
3174
+ },
3175
+ {
3176
+ "type": "number"
3177
+ },
3178
+ {
3179
+ "type": "boolean"
3180
+ }
3181
+ ]
3097
3182
  }
3098
3183
  },
3099
3184
  "additionalProperties": false,
@@ -3148,6 +3233,10 @@
3148
3233
  "type": "string",
3149
3234
  "maxLength": 255
3150
3235
  },
3236
+ "expression": {
3237
+ "type": "string",
3238
+ "maxLength": 255
3239
+ },
3151
3240
  "yAxisLabel": {
3152
3241
  "type": "string",
3153
3242
  "maxLength": 255
@@ -3435,8 +3524,18 @@
3435
3524
  "type": "object",
3436
3525
  "properties": {
3437
3526
  "value": {
3438
- "type": "string",
3439
- "maxLength": 255
3527
+ "oneOf": [
3528
+ {
3529
+ "type": "string",
3530
+ "maxLength": 255
3531
+ },
3532
+ {
3533
+ "type": "number"
3534
+ },
3535
+ {
3536
+ "type": "boolean"
3537
+ }
3538
+ ]
3440
3539
  }
3441
3540
  },
3442
3541
  "additionalProperties": false,
@@ -3659,8 +3758,18 @@
3659
3758
  "type": "object",
3660
3759
  "properties": {
3661
3760
  "value": {
3662
- "type": "string",
3663
- "maxLength": 255
3761
+ "oneOf": [
3762
+ {
3763
+ "type": "string",
3764
+ "maxLength": 255
3765
+ },
3766
+ {
3767
+ "type": "number"
3768
+ },
3769
+ {
3770
+ "type": "boolean"
3771
+ }
3772
+ ]
3664
3773
  }
3665
3774
  },
3666
3775
  "additionalProperties": false,
@@ -3712,6 +3821,9 @@
3712
3821
  },
3713
3822
  "defaultValue": {
3714
3823
  "type": "boolean"
3824
+ },
3825
+ "includeLabel": {
3826
+ "type": "boolean"
3715
3827
  }
3716
3828
  },
3717
3829
  "additionalProperties": false
@@ -3838,8 +3950,18 @@
3838
3950
  "type": "object",
3839
3951
  "properties": {
3840
3952
  "value": {
3841
- "type": "string",
3842
- "maxLength": 255
3953
+ "oneOf": [
3954
+ {
3955
+ "type": "string",
3956
+ "maxLength": 255
3957
+ },
3958
+ {
3959
+ "type": "number"
3960
+ },
3961
+ {
3962
+ "type": "boolean"
3963
+ }
3964
+ ]
3843
3965
  }
3844
3966
  },
3845
3967
  "additionalProperties": false,
@@ -4018,8 +4140,18 @@
4018
4140
  "type": "object",
4019
4141
  "properties": {
4020
4142
  "value": {
4021
- "type": "string",
4022
- "maxLength": 255
4143
+ "oneOf": [
4144
+ {
4145
+ "type": "string",
4146
+ "maxLength": 255
4147
+ },
4148
+ {
4149
+ "type": "number"
4150
+ },
4151
+ {
4152
+ "type": "boolean"
4153
+ }
4154
+ ]
4023
4155
  }
4024
4156
  },
4025
4157
  "additionalProperties": false,
@@ -4424,6 +4556,10 @@
4424
4556
  "type": "string",
4425
4557
  "maxLength": 32767
4426
4558
  },
4559
+ "query": {
4560
+ "type": "string",
4561
+ "maxLength": 32767
4562
+ },
4427
4563
  "resizedPins": {
4428
4564
  "type": "boolean"
4429
4565
  },
@@ -4664,8 +4800,18 @@
4664
4800
  "type": "object",
4665
4801
  "properties": {
4666
4802
  "value": {
4667
- "type": "string",
4668
- "maxLength": 255
4803
+ "oneOf": [
4804
+ {
4805
+ "type": "string",
4806
+ "maxLength": 255
4807
+ },
4808
+ {
4809
+ "type": "number"
4810
+ },
4811
+ {
4812
+ "type": "boolean"
4813
+ }
4814
+ ]
4669
4815
  }
4670
4816
  },
4671
4817
  "additionalProperties": false,
@@ -4720,6 +4866,10 @@
4720
4866
  "type": "string",
4721
4867
  "maxLength": 255
4722
4868
  },
4869
+ "expression": {
4870
+ "type": "string",
4871
+ "maxLength": 255
4872
+ },
4723
4873
  "yAxisLabel": {
4724
4874
  "type": "string",
4725
4875
  "maxLength": 255