losant_rest 1.21.3 → 1.22.1
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/docs/_schemas.md +1796 -152
- data/docs/deviceAttribute.md +139 -0
- data/docs/deviceAttributes.md +96 -0
- data/lib/platform_rest/client.rb +10 -2
- data/lib/platform_rest/device_attribute.rb +182 -0
- data/lib/platform_rest/device_attributes.rb +138 -0
- data/lib/platform_rest/version.rb +1 -1
- data/lib/platform_rest.rb +2 -0
- data/schemas/apiTokenPost.json +8 -0
- data/schemas/applicationDashboardPost.json +120 -0
- data/schemas/applicationExportPost.json +29 -0
- data/schemas/applicationImportExecutions.json +18 -1
- data/schemas/credential.json +39 -1
- data/schemas/credentialPatch.json +37 -0
- data/schemas/credentialPost.json +54 -1
- data/schemas/credentials.json +39 -1
- data/schemas/dashboard.json +120 -0
- data/schemas/dashboardPatch.json +120 -0
- data/schemas/dashboardPost.json +120 -0
- data/schemas/dashboards.json +120 -0
- data/schemas/dataExport.json +4 -0
- data/schemas/device.json +0 -1
- data/schemas/deviceAttribute.json +128 -0
- data/schemas/deviceAttributePatch.json +111 -0
- data/schemas/deviceAttributePost.json +125 -0
- data/schemas/deviceAttributes.json +171 -0
- data/schemas/devicePatch.json +0 -1
- data/schemas/devicePost.json +0 -1
- data/schemas/deviceRecipe.json +0 -1
- data/schemas/deviceRecipePatch.json +0 -1
- data/schemas/deviceRecipePost.json +0 -1
- data/schemas/deviceRecipes.json +0 -1
- data/schemas/devices.json +0 -1
- data/schemas/devicesPatch.json +65 -3
- data/schemas/githubLogin.json +8 -0
- data/schemas/importIntoApplicationOptions.json +17 -0
- data/schemas/samlResponse.json +8 -0
- data/schemas/suggestFunctionPost.json +15 -0
- data/schemas/suggestFunctionResponse.json +37 -0
- data/schemas/userCredentials.json +8 -0
- data/schemas/userPost.json +8 -0
- metadata +12 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: losant_rest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.22.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Kuehl
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-06-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|
@@ -109,6 +109,8 @@ files:
|
|
109
109
|
- docs/dataTableRows.md
|
110
110
|
- docs/dataTables.md
|
111
111
|
- docs/device.md
|
112
|
+
- docs/deviceAttribute.md
|
113
|
+
- docs/deviceAttributes.md
|
112
114
|
- docs/deviceRecipe.md
|
113
115
|
- docs/deviceRecipes.md
|
114
116
|
- docs/devices.md
|
@@ -204,6 +206,8 @@ files:
|
|
204
206
|
- lib/platform_rest/data_table_rows.rb
|
205
207
|
- lib/platform_rest/data_tables.rb
|
206
208
|
- lib/platform_rest/device.rb
|
209
|
+
- lib/platform_rest/device_attribute.rb
|
210
|
+
- lib/platform_rest/device_attributes.rb
|
207
211
|
- lib/platform_rest/device_recipe.rb
|
208
212
|
- lib/platform_rest/device_recipes.rb
|
209
213
|
- lib/platform_rest/devices.rb
|
@@ -361,7 +365,11 @@ files:
|
|
361
365
|
- schemas/debugExcludeIds.json
|
362
366
|
- schemas/debugLevels.json
|
363
367
|
- schemas/device.json
|
368
|
+
- schemas/deviceAttribute.json
|
364
369
|
- schemas/deviceAttributeDataTypeFilter.json
|
370
|
+
- schemas/deviceAttributePatch.json
|
371
|
+
- schemas/deviceAttributePost.json
|
372
|
+
- schemas/deviceAttributes.json
|
365
373
|
- schemas/deviceClassFilter.json
|
366
374
|
- schemas/deviceCommand.json
|
367
375
|
- schemas/deviceCommands.json
|
@@ -570,6 +578,8 @@ files:
|
|
570
578
|
- schemas/success.json
|
571
579
|
- schemas/successWithExecutionId.json
|
572
580
|
- schemas/successWithJobId.json
|
581
|
+
- schemas/suggestFunctionPost.json
|
582
|
+
- schemas/suggestFunctionResponse.json
|
573
583
|
- schemas/tagKeysResponse.json
|
574
584
|
- schemas/tagValuesResponse.json
|
575
585
|
- schemas/templateKeywords.json
|