losant_rest 1.1.2 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +29 -0
- data/docs/_schemas.md +1805 -267
- data/docs/auth.md +1 -1
- data/docs/experienceEndpoint.md +130 -0
- data/docs/experienceEndpoints.md +131 -0
- data/docs/experienceGroup.md +130 -0
- data/docs/experienceGroups.md +91 -0
- data/docs/experienceUser.md +130 -0
- data/docs/experienceUsers.md +92 -0
- data/docs/flows.md +1 -0
- data/lib/losant_rest/client.rb +26 -2
- data/lib/losant_rest/experience_endpoint.rb +174 -0
- data/lib/losant_rest/experience_endpoints.rb +186 -0
- data/lib/losant_rest/experience_group.rb +174 -0
- data/lib/losant_rest/experience_groups.rb +136 -0
- data/lib/losant_rest/experience_user.rb +174 -0
- data/lib/losant_rest/experience_users.rb +138 -0
- data/lib/losant_rest/flows.rb +2 -0
- data/lib/losant_rest/version.rb +1 -1
- data/lib/losant_rest.rb +6 -0
- data/schemas/application.json +30 -5
- data/schemas/applicationApiTokenPost.json +22 -0
- data/schemas/applicationKey.json +4 -2
- data/schemas/applicationKeyPost.json +4 -2
- data/schemas/applicationKeys.json +4 -2
- data/schemas/applicationPatch.json +13 -0
- data/schemas/applicationPost.json +13 -0
- data/schemas/applications.json +30 -5
- data/schemas/auditLog.json +3 -0
- data/schemas/auditLogFilter.json +3 -0
- data/schemas/auditLogs.json +3 -0
- data/schemas/authedDevice.json +1 -2
- data/schemas/dashboard.json +4 -2
- data/schemas/dashboardPatch.json +4 -2
- data/schemas/dashboardPost.json +4 -2
- data/schemas/dashboards.json +4 -2
- data/schemas/device.json +5 -4
- data/schemas/devicePatch.json +5 -4
- data/schemas/devicePost.json +5 -4
- data/schemas/deviceRecipe.json +5 -4
- data/schemas/deviceRecipePatch.json +5 -4
- data/schemas/deviceRecipePost.json +5 -4
- data/schemas/deviceRecipes.json +5 -4
- data/schemas/deviceTagFilter.json +2 -1
- data/schemas/devices.json +5 -4
- data/schemas/experienceEndpoint.json +74 -0
- data/schemas/experienceEndpointPatch.json +46 -0
- data/schemas/experienceEndpointPost.json +50 -0
- data/schemas/experienceEndpointStats.json +21 -0
- data/schemas/experienceEndpoints.json +45 -0
- data/schemas/experienceGroup.json +51 -0
- data/schemas/experienceGroupPatch.json +32 -0
- data/schemas/experienceGroupPost.json +35 -0
- data/schemas/experienceGroups.json +93 -0
- data/schemas/experienceUser.json +83 -0
- data/schemas/experienceUserPatch.json +48 -0
- data/schemas/experienceUserPost.json +52 -0
- data/schemas/experienceUsers.json +129 -0
- data/schemas/flow.json +34 -10
- data/schemas/flowLog.json +2 -19
- data/schemas/flowPatch.json +34 -10
- data/schemas/flowPost.json +34 -10
- data/schemas/flowTriggerFilter.json +19 -0
- data/schemas/flows.json +34 -10
- data/schemas/lastValueQuery.json +4 -2
- data/schemas/me.json +39 -7
- data/schemas/multiDeviceCommand.json +4 -2
- data/schemas/org.json +41 -9
- data/schemas/orgs.json +41 -9
- data/schemas/payloadCounts.json +8 -0
- data/schemas/resourceTransfer.json +6 -3
- data/schemas/solution.json +3 -1
- data/schemas/solutionUser.json +2 -1
- data/schemas/solutionUserPatch.json +2 -1
- data/schemas/solutionUserPost.json +2 -1
- data/schemas/solutionUsers.json +2 -1
- data/schemas/solutions.json +3 -1
- data/schemas/timeSeriesQuery.json +4 -2
- metadata +28 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 56b077ca63d36f215dfc3736ae9d853433f92498
|
4
|
+
data.tar.gz: dccaa092ac1a61b22267add095b094ef528ee357
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11be7edc1876b7c63e195e7b2d36fabf263733a1b6f5c0f1baea672e2a5cbd0a93fe84fbd55dc9526dbd8ff9229250cbb580b002136a2d4ab74bf8c2a99fc123
|
7
|
+
data.tar.gz: 6e971f6040890a5961fde5f963099a75030c4e0091ef61313611eb2e2465c9f67cc237cb18e1216e09d0c210e13b767cda57b3fb53bb07a7e5ec856ca134c3da
|
data/README.md
CHANGED
@@ -185,6 +185,35 @@ Contains all the actions that can be performed against the collection of
|
|
185
185
|
[Events](https://docs.losant.com/events/overview/) belonging
|
186
186
|
to an Application - such as listing open events or creating a new event.
|
187
187
|
|
188
|
+
* [experience_endpoint](docs/experienceEndpoint.md)
|
189
|
+
Contains all the actions that can be performed against a single
|
190
|
+
[Experience Endpoint](https://docs.losant.com/experiences/endpoints/), such as updating route
|
191
|
+
information.
|
192
|
+
|
193
|
+
* [experience_endpoints](docs/experienceEndpoints.md)
|
194
|
+
Contains all the actions that can be performed against the collection of
|
195
|
+
[Experience Endpoints](https://docs.losant.com/experiences/endpoints/) belonging
|
196
|
+
to an Application - such as listing endpoints or creating a new endpoint.
|
197
|
+
|
198
|
+
* [experience_group](docs/experienceGroup.md)
|
199
|
+
Contains all the actions that can be performed against a single
|
200
|
+
[Experience Group](https://docs.losant.com/experiences/groups/), such as updating member information.
|
201
|
+
|
202
|
+
* [experience_groups](docs/experienceGroups.md)
|
203
|
+
Contains all the actions that can be performed against the collection of
|
204
|
+
[Experience Groups](https://docs.losant.com/experiences/groups/) belonging
|
205
|
+
to an Application - such as listing groups or creating a new group.
|
206
|
+
|
207
|
+
* [experience_user](docs/experienceUser.md)
|
208
|
+
Contains all the actions that can be performed against a single
|
209
|
+
[Experience User](https://docs.losant.com/experiences/users/), such as changing their email
|
210
|
+
or password.
|
211
|
+
|
212
|
+
* [experience_users](docs/experienceUsers.md)
|
213
|
+
Contains all the actions that can be performed against the collection of
|
214
|
+
[Experience Users](https://docs.losant.com/experiences/users/) belonging
|
215
|
+
to an Application - such as listing users or creating a new user.
|
216
|
+
|
188
217
|
* [flow](docs/flow.md)
|
189
218
|
Contains all the actions that can be performed against a single
|
190
219
|
[Workflow](https://docs.losant.com/workflows/overview/), such as enabling or
|