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.
- checksums.yaml +4 -4
- data/README.md +21 -0
- data/docs/_schemas.md +997 -157
- data/docs/dataTable.md +214 -0
- data/docs/dataTableRow.md +136 -0
- data/docs/dataTableRows.md +139 -0
- data/docs/dataTables.md +91 -0
- data/docs/flow.md +41 -1
- data/lib/losant_rest/client.rb +18 -2
- data/lib/losant_rest/data_table.rb +272 -0
- data/lib/losant_rest/data_table_row.rb +180 -0
- data/lib/losant_rest/data_table_rows.rb +192 -0
- data/lib/losant_rest/data_tables.rb +136 -0
- data/lib/losant_rest/flow.rb +47 -1
- data/lib/losant_rest/version.rb +1 -1
- data/lib/losant_rest.rb +4 -0
- data/schemas/application.json +3 -0
- data/schemas/applicationApiTokenPost.json +16 -0
- data/schemas/applications.json +3 -0
- data/schemas/auditLog.json +1 -0
- data/schemas/auditLogFilter.json +1 -0
- data/schemas/auditLogs.json +1 -0
- data/schemas/dataTable.json +79 -0
- data/schemas/dataTableColumn.json +39 -0
- data/schemas/dataTablePatch.json +16 -0
- data/schemas/dataTablePost.json +63 -0
- data/schemas/dataTableQuery.json +86 -0
- data/schemas/dataTableRow.json +28 -0
- data/schemas/dataTableRowInsertUpdate.json +15 -0
- data/schemas/dataTableRows.json +68 -0
- data/schemas/dataTables.json +121 -0
- data/schemas/flow.json +1 -0
- data/schemas/flowPatch.json +1 -0
- data/schemas/flowPost.json +1 -0
- data/schemas/flowVersion.json +1 -0
- data/schemas/flowVersionPost.json +1 -0
- data/schemas/flowVersions.json +1 -0
- data/schemas/flows.json +1 -0
- data/schemas/me.json +14 -0
- data/schemas/org.json +14 -0
- data/schemas/orgs.json +14 -0
- data/schemas/payloadCounts.json +8 -0
- metadata +19 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3e6ccf5f1d052224deaa3c6efa4900997d1aed71
|
|
4
|
+
data.tar.gz: 15b73941af1da360429e25946f58fb89616e6812
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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/) -
|