losant_rest 1.17.2 → 1.17.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/docs/_schemas.md +703 -23
- data/lib/losant_rest/client.rb +2 -2
- data/lib/losant_rest/version.rb +1 -1
- data/schemas/applicationDashboardPost.json +61 -0
- data/schemas/dashboard.json +61 -0
- data/schemas/dashboardPatch.json +61 -0
- data/schemas/dashboardPost.json +61 -0
- data/schemas/dashboards.json +61 -0
- data/schemas/debugExcludeIds.json +10 -0
- data/schemas/debugLevels.json +16 -0
- data/schemas/experienceLinkedResources.json +50 -1
- data/schemas/experienceVersion.json +12 -0
- data/schemas/experienceVersions.json +12 -0
- data/schemas/flow.json +26 -1
- data/schemas/flowPatch.json +1 -0
- data/schemas/flowPost.json +1 -0
- data/schemas/flowVersion.json +24 -0
- data/schemas/flowVersions.json +24 -0
- data/schemas/flows.json +26 -1
- data/schemas/flowsImportPost.json +1 -0
- data/schemas/flowsImportResult.json +50 -1
- data/schemas/instanceCustomNode.json +2 -1
- data/schemas/instanceCustomNodePatch.json +1 -0
- data/schemas/instanceCustomNodePost.json +1 -0
- data/schemas/instanceCustomNodes.json +2 -1
- data/schemas/paletteResponse.json +4 -2
- data/schemas/resourceJob.json +19 -3
- data/schemas/resourceJobExecutionLogs.json +19 -3
- data/schemas/resourceJobPatch.json +19 -3
- data/schemas/resourceJobPost.json +19 -3
- data/schemas/resourceJobs.json +19 -3
- metadata +4 -2
data/schemas/flows.json
CHANGED
@@ -29,6 +29,30 @@
|
|
29
29
|
"type": "string",
|
30
30
|
"format": "date-time"
|
31
31
|
},
|
32
|
+
"createdById": {
|
33
|
+
"type": "string",
|
34
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
35
|
+
},
|
36
|
+
"createdByType": {
|
37
|
+
"type": "string",
|
38
|
+
"enum": [
|
39
|
+
"flow",
|
40
|
+
"user",
|
41
|
+
"apiToken"
|
42
|
+
]
|
43
|
+
},
|
44
|
+
"lastUpdatedById": {
|
45
|
+
"type": "string",
|
46
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
47
|
+
},
|
48
|
+
"lastUpdatedByType": {
|
49
|
+
"type": "string",
|
50
|
+
"enum": [
|
51
|
+
"flow",
|
52
|
+
"user",
|
53
|
+
"apiToken"
|
54
|
+
]
|
55
|
+
},
|
32
56
|
"name": {
|
33
57
|
"type": "string",
|
34
58
|
"minLength": 1,
|
@@ -57,7 +81,8 @@
|
|
57
81
|
"data",
|
58
82
|
"experience",
|
59
83
|
"logic",
|
60
|
-
"output"
|
84
|
+
"output",
|
85
|
+
"debug"
|
61
86
|
]
|
62
87
|
},
|
63
88
|
"enabled": {
|
@@ -30,6 +30,30 @@
|
|
30
30
|
"type": "string",
|
31
31
|
"format": "date-time"
|
32
32
|
},
|
33
|
+
"createdById": {
|
34
|
+
"type": "string",
|
35
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
36
|
+
},
|
37
|
+
"createdByType": {
|
38
|
+
"type": "string",
|
39
|
+
"enum": [
|
40
|
+
"flow",
|
41
|
+
"user",
|
42
|
+
"apiToken"
|
43
|
+
]
|
44
|
+
},
|
45
|
+
"lastUpdatedById": {
|
46
|
+
"type": "string",
|
47
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
48
|
+
},
|
49
|
+
"lastUpdatedByType": {
|
50
|
+
"type": "string",
|
51
|
+
"enum": [
|
52
|
+
"flow",
|
53
|
+
"user",
|
54
|
+
"apiToken"
|
55
|
+
]
|
56
|
+
},
|
33
57
|
"name": {
|
34
58
|
"type": "string",
|
35
59
|
"minLength": 1,
|
@@ -58,7 +82,8 @@
|
|
58
82
|
"data",
|
59
83
|
"experience",
|
60
84
|
"logic",
|
61
|
-
"output"
|
85
|
+
"output",
|
86
|
+
"debug"
|
62
87
|
]
|
63
88
|
},
|
64
89
|
"enabled": {
|
@@ -2665,6 +2690,30 @@
|
|
2665
2690
|
"type": "string",
|
2666
2691
|
"format": "date-time"
|
2667
2692
|
},
|
2693
|
+
"createdById": {
|
2694
|
+
"type": "string",
|
2695
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
2696
|
+
},
|
2697
|
+
"createdByType": {
|
2698
|
+
"type": "string",
|
2699
|
+
"enum": [
|
2700
|
+
"flow",
|
2701
|
+
"user",
|
2702
|
+
"apiToken"
|
2703
|
+
]
|
2704
|
+
},
|
2705
|
+
"lastUpdatedById": {
|
2706
|
+
"type": "string",
|
2707
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
2708
|
+
},
|
2709
|
+
"lastUpdatedByType": {
|
2710
|
+
"type": "string",
|
2711
|
+
"enum": [
|
2712
|
+
"flow",
|
2713
|
+
"user",
|
2714
|
+
"apiToken"
|
2715
|
+
]
|
2716
|
+
},
|
2668
2717
|
"version": {
|
2669
2718
|
"type": "string",
|
2670
2719
|
"minLength": 1,
|
@@ -39,7 +39,8 @@
|
|
39
39
|
"data",
|
40
40
|
"experience",
|
41
41
|
"logic",
|
42
|
-
"output"
|
42
|
+
"output",
|
43
|
+
"debug"
|
43
44
|
]
|
44
45
|
},
|
45
46
|
"customNodeConfig": {
|
@@ -430,7 +431,8 @@
|
|
430
431
|
"data",
|
431
432
|
"experience",
|
432
433
|
"logic",
|
433
|
-
"output"
|
434
|
+
"output",
|
435
|
+
"debug"
|
434
436
|
]
|
435
437
|
},
|
436
438
|
"customNodeConfig": {
|
data/schemas/resourceJob.json
CHANGED
@@ -50,19 +50,19 @@
|
|
50
50
|
]
|
51
51
|
},
|
52
52
|
"maxIterationConcurrency": {
|
53
|
-
"type": "
|
53
|
+
"type": "integer",
|
54
54
|
"enum": [
|
55
55
|
1,
|
56
56
|
10
|
57
57
|
]
|
58
58
|
},
|
59
59
|
"iterationDelay": {
|
60
|
-
"type": "
|
60
|
+
"type": "integer",
|
61
61
|
"min": 0,
|
62
62
|
"max": 60000
|
63
63
|
},
|
64
64
|
"iterationTimeout": {
|
65
|
-
"type": "
|
65
|
+
"type": "integer",
|
66
66
|
"min": 60000,
|
67
67
|
"max": 900000
|
68
68
|
},
|
@@ -81,6 +81,22 @@
|
|
81
81
|
"defaultContext": {
|
82
82
|
"type": "string",
|
83
83
|
"maxLength": 32767
|
84
|
+
},
|
85
|
+
"retryOnTimeout": {
|
86
|
+
"type": "boolean"
|
87
|
+
},
|
88
|
+
"retryOnFailure": {
|
89
|
+
"type": "boolean"
|
90
|
+
},
|
91
|
+
"maxIterationRetries": {
|
92
|
+
"type": "integer",
|
93
|
+
"min": 1,
|
94
|
+
"max": 5
|
95
|
+
},
|
96
|
+
"retryDelay": {
|
97
|
+
"type": "integer",
|
98
|
+
"min": 0,
|
99
|
+
"max": 30000
|
84
100
|
}
|
85
101
|
},
|
86
102
|
"additionalProperties": false
|
@@ -91,17 +91,17 @@
|
|
91
91
|
"maxLength": 32767
|
92
92
|
},
|
93
93
|
"iterationDelay": {
|
94
|
-
"type": "
|
94
|
+
"type": "integer",
|
95
95
|
"min": 0,
|
96
96
|
"max": 60000
|
97
97
|
},
|
98
98
|
"iterationTimeout": {
|
99
|
-
"type": "
|
99
|
+
"type": "integer",
|
100
100
|
"min": 60000,
|
101
101
|
"max": 900000
|
102
102
|
},
|
103
103
|
"maxIterationConcurrency": {
|
104
|
-
"type": "
|
104
|
+
"type": "integer",
|
105
105
|
"enum": [
|
106
106
|
1,
|
107
107
|
10
|
@@ -127,6 +127,22 @@
|
|
127
127
|
}
|
128
128
|
}
|
129
129
|
}
|
130
|
+
},
|
131
|
+
"retryOnTimeout": {
|
132
|
+
"type": "boolean"
|
133
|
+
},
|
134
|
+
"retryOnFailure": {
|
135
|
+
"type": "boolean"
|
136
|
+
},
|
137
|
+
"maxIterationRetries": {
|
138
|
+
"type": "integer",
|
139
|
+
"min": 1,
|
140
|
+
"max": 5
|
141
|
+
},
|
142
|
+
"retryDelay": {
|
143
|
+
"type": "integer",
|
144
|
+
"min": 0,
|
145
|
+
"max": 30000
|
130
146
|
}
|
131
147
|
}
|
132
148
|
}
|
@@ -30,25 +30,41 @@
|
|
30
30
|
"maxLength": 8192
|
31
31
|
},
|
32
32
|
"maxIterationConcurrency": {
|
33
|
-
"type": "
|
33
|
+
"type": "integer",
|
34
34
|
"enum": [
|
35
35
|
1,
|
36
36
|
10
|
37
37
|
]
|
38
38
|
},
|
39
39
|
"iterationDelay": {
|
40
|
-
"type": "
|
40
|
+
"type": "integer",
|
41
41
|
"min": 0,
|
42
42
|
"max": 60000
|
43
43
|
},
|
44
44
|
"iterationTimeout": {
|
45
|
-
"type": "
|
45
|
+
"type": "integer",
|
46
46
|
"min": 60000,
|
47
47
|
"max": 900000
|
48
48
|
},
|
49
49
|
"defaultContext": {
|
50
50
|
"type": "string",
|
51
51
|
"maxLength": 32767
|
52
|
+
},
|
53
|
+
"retryOnTimeout": {
|
54
|
+
"type": "boolean"
|
55
|
+
},
|
56
|
+
"retryOnFailure": {
|
57
|
+
"type": "boolean"
|
58
|
+
},
|
59
|
+
"maxIterationRetries": {
|
60
|
+
"type": "integer",
|
61
|
+
"min": 1,
|
62
|
+
"max": 5
|
63
|
+
},
|
64
|
+
"retryDelay": {
|
65
|
+
"type": "integer",
|
66
|
+
"min": 0,
|
67
|
+
"max": 30000
|
52
68
|
}
|
53
69
|
},
|
54
70
|
"additionalProperties": false
|
@@ -38,25 +38,41 @@
|
|
38
38
|
]
|
39
39
|
},
|
40
40
|
"maxIterationConcurrency": {
|
41
|
-
"type": "
|
41
|
+
"type": "integer",
|
42
42
|
"enum": [
|
43
43
|
1,
|
44
44
|
10
|
45
45
|
]
|
46
46
|
},
|
47
47
|
"iterationDelay": {
|
48
|
-
"type": "
|
48
|
+
"type": "integer",
|
49
49
|
"min": 0,
|
50
50
|
"max": 60000
|
51
51
|
},
|
52
52
|
"iterationTimeout": {
|
53
|
-
"type": "
|
53
|
+
"type": "integer",
|
54
54
|
"min": 60000,
|
55
55
|
"max": 900000
|
56
56
|
},
|
57
57
|
"defaultContext": {
|
58
58
|
"type": "string",
|
59
59
|
"maxLength": 32767
|
60
|
+
},
|
61
|
+
"retryOnTimeout": {
|
62
|
+
"type": "boolean"
|
63
|
+
},
|
64
|
+
"retryOnFailure": {
|
65
|
+
"type": "boolean"
|
66
|
+
},
|
67
|
+
"maxIterationRetries": {
|
68
|
+
"type": "integer",
|
69
|
+
"min": 1,
|
70
|
+
"max": 5
|
71
|
+
},
|
72
|
+
"retryDelay": {
|
73
|
+
"type": "integer",
|
74
|
+
"min": 0,
|
75
|
+
"max": 30000
|
60
76
|
}
|
61
77
|
},
|
62
78
|
"additionalProperties": false,
|
data/schemas/resourceJobs.json
CHANGED
@@ -57,19 +57,19 @@
|
|
57
57
|
]
|
58
58
|
},
|
59
59
|
"maxIterationConcurrency": {
|
60
|
-
"type": "
|
60
|
+
"type": "integer",
|
61
61
|
"enum": [
|
62
62
|
1,
|
63
63
|
10
|
64
64
|
]
|
65
65
|
},
|
66
66
|
"iterationDelay": {
|
67
|
-
"type": "
|
67
|
+
"type": "integer",
|
68
68
|
"min": 0,
|
69
69
|
"max": 60000
|
70
70
|
},
|
71
71
|
"iterationTimeout": {
|
72
|
-
"type": "
|
72
|
+
"type": "integer",
|
73
73
|
"min": 60000,
|
74
74
|
"max": 900000
|
75
75
|
},
|
@@ -88,6 +88,22 @@
|
|
88
88
|
"defaultContext": {
|
89
89
|
"type": "string",
|
90
90
|
"maxLength": 32767
|
91
|
+
},
|
92
|
+
"retryOnTimeout": {
|
93
|
+
"type": "boolean"
|
94
|
+
},
|
95
|
+
"retryOnFailure": {
|
96
|
+
"type": "boolean"
|
97
|
+
},
|
98
|
+
"maxIterationRetries": {
|
99
|
+
"type": "integer",
|
100
|
+
"min": 1,
|
101
|
+
"max": 5
|
102
|
+
},
|
103
|
+
"retryDelay": {
|
104
|
+
"type": "integer",
|
105
|
+
"min": 0,
|
106
|
+
"max": 30000
|
91
107
|
}
|
92
108
|
},
|
93
109
|
"additionalProperties": false
|
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.17.
|
4
|
+
version: 1.17.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Kuehl
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-03-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|
@@ -336,6 +336,8 @@ files:
|
|
336
336
|
- schemas/dataTableRowsDelete.json
|
337
337
|
- schemas/dataTableRowsExport.json
|
338
338
|
- schemas/dataTables.json
|
339
|
+
- schemas/debugExcludeIds.json
|
340
|
+
- schemas/debugLevels.json
|
339
341
|
- schemas/device.json
|
340
342
|
- schemas/deviceAttributeDataTypeFilter.json
|
341
343
|
- schemas/deviceClassFilter.json
|