losant_rest 1.22.1 → 1.22.2

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.
@@ -39,6 +39,8 @@
39
39
  "applicationCertificateAuthorities.*",
40
40
  "applicationDashboards.*",
41
41
  "applicationDashboard.*",
42
+ "applicationJobLogs.*",
43
+ "applicationJobLog.*",
42
44
  "applicationKey.*",
43
45
  "applicationKeys.*",
44
46
  "credential.*",
@@ -130,6 +132,8 @@
130
132
  "applicationDashboard.delete",
131
133
  "applicationDashboards.get",
132
134
  "applicationDashboards.post",
135
+ "applicationJobLogs.get",
136
+ "applicationJobLog.get",
133
137
  "applicationKey.delete",
134
138
  "applicationKey.get",
135
139
  "applicationKey.patch",
@@ -461,6 +461,10 @@
461
461
  },
462
462
  "maxItems": 1000
463
463
  },
464
+ "delayDays": {
465
+ "type": "integer",
466
+ "minimum": 1
467
+ },
464
468
  "s3": {
465
469
  "type": "object",
466
470
  "properties": {
@@ -466,6 +466,10 @@
466
466
  },
467
467
  "maxItems": 1000
468
468
  },
469
+ "delayDays": {
470
+ "type": "integer",
471
+ "minimum": 1
472
+ },
469
473
  "s3": {
470
474
  "type": "object",
471
475
  "properties": {
@@ -0,0 +1,250 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "type": "object",
4
+ "properties": {
5
+ "id": {
6
+ "type": "string",
7
+ "pattern": "^[A-Fa-f\\d]{24}$"
8
+ },
9
+ "jobId": {
10
+ "type": "string",
11
+ "pattern": "^[A-Fa-f\\d]{24}$"
12
+ },
13
+ "jobExecutionId": {
14
+ "type": "string",
15
+ "pattern": "^[A-Fa-f\\d]{24}$"
16
+ },
17
+ "name": {
18
+ "type": "string"
19
+ },
20
+ "applicationId": {
21
+ "type": "string",
22
+ "pattern": "^[A-Fa-f\\d]{24}$"
23
+ },
24
+ "runQueuedAt": {
25
+ "type": "string",
26
+ "format": "date-time"
27
+ },
28
+ "runStartedAt": {
29
+ "type": "string",
30
+ "format": "date-time"
31
+ },
32
+ "runCompletedAt": {
33
+ "type": "string",
34
+ "format": "date-time"
35
+ },
36
+ "status": {
37
+ "type": "string",
38
+ "enum": [
39
+ "queued",
40
+ "inProgress",
41
+ "completed",
42
+ "errored",
43
+ "failed"
44
+ ]
45
+ },
46
+ "requestedById": {
47
+ "type": "string",
48
+ "pattern": "^[A-Fa-f\\d]{24}$"
49
+ },
50
+ "requestedByType": {
51
+ "type": "string",
52
+ "enum": [
53
+ "user",
54
+ "apiToken",
55
+ "flow",
56
+ "device",
57
+ "system"
58
+ ]
59
+ },
60
+ "ownerType": {
61
+ "type": "string",
62
+ "enum": [
63
+ "application",
64
+ "user",
65
+ "organization"
66
+ ]
67
+ },
68
+ "ownerId": {
69
+ "type": "string",
70
+ "pattern": "^[A-Fa-f\\d]{24}$"
71
+ },
72
+ "resourceType": {
73
+ "type": "string",
74
+ "enum": [
75
+ "application",
76
+ "dashboard",
77
+ "datatable",
78
+ "event",
79
+ "device",
80
+ "notebook",
81
+ "deviceRecipe"
82
+ ]
83
+ },
84
+ "resourceId": {
85
+ "type": "string",
86
+ "pattern": "^[A-Fa-f\\d]{24}$"
87
+ },
88
+ "progress": {
89
+ "type": "object",
90
+ "properties": {
91
+ "completed": {
92
+ "type": "number"
93
+ },
94
+ "total": {
95
+ "type": "number"
96
+ },
97
+ "status": {
98
+ "type": "string"
99
+ }
100
+ }
101
+ },
102
+ "error": {
103
+ "type": "object",
104
+ "properties": {
105
+ "name": {
106
+ "type": "string"
107
+ },
108
+ "message": {
109
+ "type": "string"
110
+ }
111
+ }
112
+ },
113
+ "input": {
114
+ "callbackUrl": {
115
+ "type": "string",
116
+ "format": "uri",
117
+ "maxLength": 1024
118
+ },
119
+ "emails": {
120
+ "type": "array",
121
+ "items": {
122
+ "type": "string",
123
+ "format": "email",
124
+ "maxLength": 1024
125
+ }
126
+ },
127
+ "start": {
128
+ "type": "number"
129
+ },
130
+ "end": {
131
+ "type": "number"
132
+ },
133
+ "gatewayId": {
134
+ "type": "string",
135
+ "pattern": "^[A-Fa-f\\d]{24}$"
136
+ },
137
+ "parentId": {
138
+ "type": "string",
139
+ "pattern": "^[A-Fa-f\\d]{24}$"
140
+ },
141
+ "query": {
142
+ "type": "string"
143
+ },
144
+ "ownerId": {
145
+ "type": "string",
146
+ "pattern": "^[A-Fa-f\\d]{24}$"
147
+ },
148
+ "ownerType": {
149
+ "type": "string",
150
+ "enum": [
151
+ "user",
152
+ "organization"
153
+ ]
154
+ },
155
+ "fileUrl": {
156
+ "type": "string",
157
+ "format": "uri",
158
+ "maxLength": 1024
159
+ },
160
+ "templateContext": {
161
+ "type": "string"
162
+ }
163
+ },
164
+ "output": {
165
+ "downloadUrls": {
166
+ "type": "array",
167
+ "items": {
168
+ "type": "string",
169
+ "format": "uri",
170
+ "maxLength": 1024
171
+ }
172
+ },
173
+ "devicesDirectory": {
174
+ "type": "string"
175
+ },
176
+ "eventsDirectory": {
177
+ "type": "string"
178
+ },
179
+ "dataTablesDirectory": {
180
+ "type": "string"
181
+ },
182
+ "created": {
183
+ "type": "number"
184
+ },
185
+ "failed": {
186
+ "type": "number"
187
+ },
188
+ "removed": {
189
+ "type": "number"
190
+ },
191
+ "restored": {
192
+ "type": "number"
193
+ },
194
+ "repoUrl": {
195
+ "type": "string"
196
+ },
197
+ "commit": {
198
+ "type": "string"
199
+ },
200
+ "noChanges": {
201
+ "type": "boolean"
202
+ },
203
+ "applicationId": {
204
+ "type": "string",
205
+ "pattern": "^[A-Fa-f\\d]{24}$"
206
+ },
207
+ "validationErrors": {
208
+ "type": "array",
209
+ "items": {
210
+ "type": "object",
211
+ "properties": {
212
+ "type": {
213
+ "type": "string"
214
+ },
215
+ "name": {
216
+ "type": "string"
217
+ },
218
+ "id": {
219
+ "type": "string"
220
+ },
221
+ "message": {
222
+ "type": "string"
223
+ }
224
+ }
225
+ }
226
+ },
227
+ "skippedDeviceNotFound": {
228
+ "type": "number"
229
+ },
230
+ "skippedDateTooOld": {
231
+ "type": "number"
232
+ },
233
+ "skippedDateInFuture": {
234
+ "type": "number"
235
+ },
236
+ "skippedInvalidDate": {
237
+ "type": "number"
238
+ },
239
+ "skippedNoValidAttributes": {
240
+ "type": "number"
241
+ },
242
+ "written": {
243
+ "type": "number"
244
+ },
245
+ "eeaBundleVersion": {
246
+ "type": "string"
247
+ }
248
+ }
249
+ }
250
+ }
@@ -0,0 +1,292 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "type": "object",
4
+ "properties": {
5
+ "items": {
6
+ "type": "array",
7
+ "items": {
8
+ "title": "Application Job Log",
9
+ "description": "Schema for a single Application Job Log",
10
+ "type": "object",
11
+ "properties": {
12
+ "id": {
13
+ "type": "string",
14
+ "pattern": "^[A-Fa-f\\d]{24}$"
15
+ },
16
+ "jobId": {
17
+ "type": "string",
18
+ "pattern": "^[A-Fa-f\\d]{24}$"
19
+ },
20
+ "jobExecutionId": {
21
+ "type": "string",
22
+ "pattern": "^[A-Fa-f\\d]{24}$"
23
+ },
24
+ "name": {
25
+ "type": "string"
26
+ },
27
+ "applicationId": {
28
+ "type": "string",
29
+ "pattern": "^[A-Fa-f\\d]{24}$"
30
+ },
31
+ "runQueuedAt": {
32
+ "type": "string",
33
+ "format": "date-time"
34
+ },
35
+ "runStartedAt": {
36
+ "type": "string",
37
+ "format": "date-time"
38
+ },
39
+ "runCompletedAt": {
40
+ "type": "string",
41
+ "format": "date-time"
42
+ },
43
+ "status": {
44
+ "type": "string",
45
+ "enum": [
46
+ "queued",
47
+ "inProgress",
48
+ "completed",
49
+ "errored",
50
+ "failed"
51
+ ]
52
+ },
53
+ "requestedById": {
54
+ "type": "string",
55
+ "pattern": "^[A-Fa-f\\d]{24}$"
56
+ },
57
+ "requestedByType": {
58
+ "type": "string",
59
+ "enum": [
60
+ "user",
61
+ "apiToken",
62
+ "flow",
63
+ "device",
64
+ "system"
65
+ ]
66
+ },
67
+ "ownerType": {
68
+ "type": "string",
69
+ "enum": [
70
+ "application",
71
+ "user",
72
+ "organization"
73
+ ]
74
+ },
75
+ "ownerId": {
76
+ "type": "string",
77
+ "pattern": "^[A-Fa-f\\d]{24}$"
78
+ },
79
+ "resourceType": {
80
+ "type": "string",
81
+ "enum": [
82
+ "application",
83
+ "dashboard",
84
+ "datatable",
85
+ "event",
86
+ "device",
87
+ "notebook",
88
+ "deviceRecipe"
89
+ ]
90
+ },
91
+ "resourceId": {
92
+ "type": "string",
93
+ "pattern": "^[A-Fa-f\\d]{24}$"
94
+ },
95
+ "progress": {
96
+ "type": "object",
97
+ "properties": {
98
+ "completed": {
99
+ "type": "number"
100
+ },
101
+ "total": {
102
+ "type": "number"
103
+ },
104
+ "status": {
105
+ "type": "string"
106
+ }
107
+ }
108
+ },
109
+ "error": {
110
+ "type": "object",
111
+ "properties": {
112
+ "name": {
113
+ "type": "string"
114
+ },
115
+ "message": {
116
+ "type": "string"
117
+ }
118
+ }
119
+ },
120
+ "input": {
121
+ "callbackUrl": {
122
+ "type": "string",
123
+ "format": "uri",
124
+ "maxLength": 1024
125
+ },
126
+ "emails": {
127
+ "type": "array",
128
+ "items": {
129
+ "type": "string",
130
+ "format": "email",
131
+ "maxLength": 1024
132
+ }
133
+ },
134
+ "start": {
135
+ "type": "number"
136
+ },
137
+ "end": {
138
+ "type": "number"
139
+ },
140
+ "gatewayId": {
141
+ "type": "string",
142
+ "pattern": "^[A-Fa-f\\d]{24}$"
143
+ },
144
+ "parentId": {
145
+ "type": "string",
146
+ "pattern": "^[A-Fa-f\\d]{24}$"
147
+ },
148
+ "query": {
149
+ "type": "string"
150
+ },
151
+ "ownerId": {
152
+ "type": "string",
153
+ "pattern": "^[A-Fa-f\\d]{24}$"
154
+ },
155
+ "ownerType": {
156
+ "type": "string",
157
+ "enum": [
158
+ "user",
159
+ "organization"
160
+ ]
161
+ },
162
+ "fileUrl": {
163
+ "type": "string",
164
+ "format": "uri",
165
+ "maxLength": 1024
166
+ },
167
+ "templateContext": {
168
+ "type": "string"
169
+ }
170
+ },
171
+ "output": {
172
+ "downloadUrls": {
173
+ "type": "array",
174
+ "items": {
175
+ "type": "string",
176
+ "format": "uri",
177
+ "maxLength": 1024
178
+ }
179
+ },
180
+ "devicesDirectory": {
181
+ "type": "string"
182
+ },
183
+ "eventsDirectory": {
184
+ "type": "string"
185
+ },
186
+ "dataTablesDirectory": {
187
+ "type": "string"
188
+ },
189
+ "created": {
190
+ "type": "number"
191
+ },
192
+ "failed": {
193
+ "type": "number"
194
+ },
195
+ "removed": {
196
+ "type": "number"
197
+ },
198
+ "restored": {
199
+ "type": "number"
200
+ },
201
+ "repoUrl": {
202
+ "type": "string"
203
+ },
204
+ "commit": {
205
+ "type": "string"
206
+ },
207
+ "noChanges": {
208
+ "type": "boolean"
209
+ },
210
+ "applicationId": {
211
+ "type": "string",
212
+ "pattern": "^[A-Fa-f\\d]{24}$"
213
+ },
214
+ "validationErrors": {
215
+ "type": "array",
216
+ "items": {
217
+ "type": "object",
218
+ "properties": {
219
+ "type": {
220
+ "type": "string"
221
+ },
222
+ "name": {
223
+ "type": "string"
224
+ },
225
+ "id": {
226
+ "type": "string"
227
+ },
228
+ "message": {
229
+ "type": "string"
230
+ }
231
+ }
232
+ }
233
+ },
234
+ "skippedDeviceNotFound": {
235
+ "type": "number"
236
+ },
237
+ "skippedDateTooOld": {
238
+ "type": "number"
239
+ },
240
+ "skippedDateInFuture": {
241
+ "type": "number"
242
+ },
243
+ "skippedInvalidDate": {
244
+ "type": "number"
245
+ },
246
+ "skippedNoValidAttributes": {
247
+ "type": "number"
248
+ },
249
+ "written": {
250
+ "type": "number"
251
+ },
252
+ "eeaBundleVersion": {
253
+ "type": "string"
254
+ }
255
+ }
256
+ }
257
+ }
258
+ },
259
+ "count": {
260
+ "type": "integer"
261
+ },
262
+ "totalCount": {
263
+ "type": "integer"
264
+ },
265
+ "query": {
266
+ "type": "object"
267
+ },
268
+ "perPage": {
269
+ "type": "integer"
270
+ },
271
+ "page": {
272
+ "type": "integer"
273
+ },
274
+ "sortField": {
275
+ "type": "string"
276
+ },
277
+ "sortDirection": {
278
+ "type": "string",
279
+ "enum": [
280
+ "asc",
281
+ "desc",
282
+ "ASC",
283
+ "DESC",
284
+ ""
285
+ ]
286
+ },
287
+ "applicationId": {
288
+ "type": "string",
289
+ "pattern": "^[A-Fa-f\\d]{24}$"
290
+ }
291
+ }
292
+ }
@@ -154,6 +154,10 @@
154
154
  },
155
155
  "maxItems": 1000
156
156
  },
157
+ "delayDays": {
158
+ "type": "integer",
159
+ "minimum": 1
160
+ },
157
161
  "s3": {
158
162
  "type": "object",
159
163
  "properties": {
@@ -141,6 +141,10 @@
141
141
  },
142
142
  "maxItems": 1000
143
143
  },
144
+ "delayDays": {
145
+ "type": "integer",
146
+ "minimum": 1
147
+ },
144
148
  "s3": {
145
149
  "type": "object",
146
150
  "properties": {
@@ -468,6 +468,10 @@
468
468
  },
469
469
  "maxItems": 1000
470
470
  },
471
+ "delayDays": {
472
+ "type": "integer",
473
+ "minimum": 1
474
+ },
471
475
  "s3": {
472
476
  "type": "object",
473
477
  "properties": {
@@ -0,0 +1,48 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "type": "object",
4
+ "properties": {
5
+ "email": {
6
+ "type": "string",
7
+ "format": "email",
8
+ "maxLength": 1024
9
+ },
10
+ "callbackUrl": {
11
+ "type": "string",
12
+ "format": "uri",
13
+ "maxLength": 1024
14
+ },
15
+ "attributes": {
16
+ "type": "array",
17
+ "maxItems": 256,
18
+ "items": {
19
+ "type": "string",
20
+ "pattern": "^[0-9a-zA-Z_-]{1,255}$"
21
+ }
22
+ },
23
+ "start": {
24
+ "type": "number"
25
+ },
26
+ "end": {
27
+ "type": "number"
28
+ },
29
+ "options": {
30
+ "type": "object",
31
+ "properties": {
32
+ "includeDate": {
33
+ "type": "boolean",
34
+ "default": true
35
+ },
36
+ "includeID": {
37
+ "type": "boolean",
38
+ "default": true
39
+ },
40
+ "includeBlobData": {
41
+ "type": "boolean",
42
+ "default": false
43
+ }
44
+ }
45
+ }
46
+ },
47
+ "additionalProperties": false
48
+ }