losant_rest 1.2.3 → 1.3.0

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 (43) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +21 -0
  3. data/docs/_schemas.md +997 -157
  4. data/docs/dataTable.md +214 -0
  5. data/docs/dataTableRow.md +136 -0
  6. data/docs/dataTableRows.md +139 -0
  7. data/docs/dataTables.md +91 -0
  8. data/docs/flow.md +41 -1
  9. data/lib/losant_rest/client.rb +18 -2
  10. data/lib/losant_rest/data_table.rb +272 -0
  11. data/lib/losant_rest/data_table_row.rb +180 -0
  12. data/lib/losant_rest/data_table_rows.rb +192 -0
  13. data/lib/losant_rest/data_tables.rb +136 -0
  14. data/lib/losant_rest/flow.rb +47 -1
  15. data/lib/losant_rest/version.rb +1 -1
  16. data/lib/losant_rest.rb +4 -0
  17. data/schemas/application.json +3 -0
  18. data/schemas/applicationApiTokenPost.json +16 -0
  19. data/schemas/applications.json +3 -0
  20. data/schemas/auditLog.json +1 -0
  21. data/schemas/auditLogFilter.json +1 -0
  22. data/schemas/auditLogs.json +1 -0
  23. data/schemas/dataTable.json +79 -0
  24. data/schemas/dataTableColumn.json +39 -0
  25. data/schemas/dataTablePatch.json +16 -0
  26. data/schemas/dataTablePost.json +63 -0
  27. data/schemas/dataTableQuery.json +86 -0
  28. data/schemas/dataTableRow.json +28 -0
  29. data/schemas/dataTableRowInsertUpdate.json +15 -0
  30. data/schemas/dataTableRows.json +68 -0
  31. data/schemas/dataTables.json +121 -0
  32. data/schemas/flow.json +1 -0
  33. data/schemas/flowPatch.json +1 -0
  34. data/schemas/flowPost.json +1 -0
  35. data/schemas/flowVersion.json +1 -0
  36. data/schemas/flowVersionPost.json +1 -0
  37. data/schemas/flowVersions.json +1 -0
  38. data/schemas/flows.json +1 -0
  39. data/schemas/me.json +14 -0
  40. data/schemas/org.json +14 -0
  41. data/schemas/orgs.json +14 -0
  42. data/schemas/payloadCounts.json +8 -0
  43. metadata +19 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 37d58167c3e225126783a01442a951bfdecefcfe
4
- data.tar.gz: 774a7a07f0eea9fcbf39132c00de78aeb52db057
3
+ metadata.gz: 3e6ccf5f1d052224deaa3c6efa4900997d1aed71
4
+ data.tar.gz: 15b73941af1da360429e25946f58fb89616e6812
5
5
  SHA512:
6
- metadata.gz: cd8b606d5705891e67836680857d7982ebd9ecd770ad8e7968d1e4f9d1c6f16aeca2062ef336cd85855ead32ceae61fa28e1e3d6a4fca7e0994a2c489c4620d1
7
- data.tar.gz: 9e4d59149da6cc0720ca8801cbab199965d831bd8a92d74c242d55ffe13991ecc92b91e319b765456caa596dea3a7fb4bee3f93464a6d92210b88b04ff37cb69
6
+ metadata.gz: 57d7f959d6966a79c0d9ef978f02ed180a49f4c6ca2d51a01b12930f85430a934a6a0179448922fc239eae8333c3f59b264b7d663a9a819ba5eed0965400351d
7
+ data.tar.gz: 8ef116fa5950199ce9aa2035bab23a029a4b60aaa3679fb8871c9b2c493e827c7bf1db5c634a81464afdafe43a485a4a6d251e284bc93912eea5a6d196fdc5f3
data/README.md CHANGED
@@ -152,6 +152,27 @@ listing the dashboards or creating a new dashboard.
152
152
  Contains the actions for querying against historical Device
153
153
  data across an Application.
154
154
 
155
+ * [data_table](docs/dataTable.md)
156
+ Contains all the actions that can be performed against a single
157
+ [Data Table](https://docs.losant.com/data-tables/overview/) -
158
+ for instance, getting info on a single data table or modifying the columns
159
+ of a data table.
160
+
161
+ * [data_tables](docs/dataTables.md)
162
+ Contains all of the actions that can be performed against the collection of
163
+ [Data Tables](https://docs.losant.com/data-tables/overview/) belonging
164
+ to an Application - such as listing all data tables or creating a new data table.
165
+
166
+ * [data_table_row](docs/dataTableRow.md)
167
+ Contains all the actions that can be performed against a single
168
+ row inside of a [Data Table](https://docs.losant.com/data-tables/overview/) -
169
+ for instance, getting the contents of a row, or modifying a row.
170
+
171
+ * [data_table_rows](docs/dataTableRows.md)
172
+ Contains all of the actions that can be performed against the collection of
173
+ rows that make up a [Data Table](https://docs.losant.com/data-tables/overview/) - such as querying for
174
+ rows in that table, or adding a new row to the table.
175
+
155
176
  * [device](docs/device.md)
156
177
  Contains all the actions that can be performed against a single
157
178
  [Device](https://docs.losant.com/devices/overview/) -