losant_rest 1.19.7 → 1.19.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -5960,6 +5960,13 @@
5960
5960
  },
5961
5961
  "maxItems": 100
5962
5962
  },
5963
+ "query": {
5964
+ "type": [
5965
+ "string",
5966
+ "null"
5967
+ ],
5968
+ "maxLength": 8192
5969
+ },
5963
5970
  "includeFullDevice": {
5964
5971
  "type": "boolean"
5965
5972
  }
@@ -66,7 +66,8 @@
66
66
  "loggly",
67
67
  "jwt",
68
68
  "whatsapp",
69
- "sql"
69
+ "sql",
70
+ "mongodb"
70
71
  ]
71
72
  },
72
73
  "awsConfig": {
@@ -256,6 +257,11 @@
256
257
  "host",
257
258
  "username"
258
259
  ]
260
+ },
261
+ "mongodbConfig": {
262
+ "type": "object",
263
+ "properties": {},
264
+ "additionalProperties": false
259
265
  }
260
266
  },
261
267
  "additionalProperties": false,
@@ -227,6 +227,17 @@
227
227
  }
228
228
  },
229
229
  "additionalProperties": false
230
+ },
231
+ "mongodbConfig": {
232
+ "type": "object",
233
+ "properties": {
234
+ "connectionUri": {
235
+ "type": "string",
236
+ "minLength": 1,
237
+ "maxLength": 2048
238
+ }
239
+ },
240
+ "additionalProperties": false
230
241
  }
231
242
  },
232
243
  "additionalProperties": false
@@ -26,7 +26,8 @@
26
26
  "loggly",
27
27
  "jwt",
28
28
  "whatsapp",
29
- "sql"
29
+ "sql",
30
+ "mongodb"
30
31
  ]
31
32
  },
32
33
  "awsConfig": {
@@ -283,6 +284,20 @@
283
284
  "username",
284
285
  "password"
285
286
  ]
287
+ },
288
+ "mongodbConfig": {
289
+ "type": "object",
290
+ "properties": {
291
+ "connectionUri": {
292
+ "type": "string",
293
+ "minLength": 1,
294
+ "maxLength": 2048
295
+ },
296
+ "required": [
297
+ "connectionUri"
298
+ ]
299
+ },
300
+ "additionalProperties": false
286
301
  }
287
302
  },
288
303
  "additionalProperties": false,
@@ -73,7 +73,8 @@
73
73
  "loggly",
74
74
  "jwt",
75
75
  "whatsapp",
76
- "sql"
76
+ "sql",
77
+ "mongodb"
77
78
  ]
78
79
  },
79
80
  "awsConfig": {
@@ -263,6 +264,11 @@
263
264
  "host",
264
265
  "username"
265
266
  ]
267
+ },
268
+ "mongodbConfig": {
269
+ "type": "object",
270
+ "properties": {},
271
+ "additionalProperties": false
266
272
  }
267
273
  },
268
274
  "additionalProperties": false,
@@ -6026,6 +6026,13 @@
6026
6026
  },
6027
6027
  "maxItems": 100
6028
6028
  },
6029
+ "query": {
6030
+ "type": [
6031
+ "string",
6032
+ "null"
6033
+ ],
6034
+ "maxLength": 8192
6035
+ },
6029
6036
  "includeFullDevice": {
6030
6037
  "type": "boolean"
6031
6038
  }
@@ -5967,6 +5967,13 @@
5967
5967
  },
5968
5968
  "maxItems": 100
5969
5969
  },
5970
+ "query": {
5971
+ "type": [
5972
+ "string",
5973
+ "null"
5974
+ ],
5975
+ "maxLength": 8192
5976
+ },
5970
5977
  "includeFullDevice": {
5971
5978
  "type": "boolean"
5972
5979
  }
@@ -5975,6 +5975,13 @@
5975
5975
  },
5976
5976
  "maxItems": 100
5977
5977
  },
5978
+ "query": {
5979
+ "type": [
5980
+ "string",
5981
+ "null"
5982
+ ],
5983
+ "maxLength": 8192
5984
+ },
5978
5985
  "includeFullDevice": {
5979
5986
  "type": "boolean"
5980
5987
  }
@@ -6033,6 +6033,13 @@
6033
6033
  },
6034
6034
  "maxItems": 100
6035
6035
  },
6036
+ "query": {
6037
+ "type": [
6038
+ "string",
6039
+ "null"
6040
+ ],
6041
+ "maxLength": 8192
6042
+ },
6036
6043
  "includeFullDevice": {
6037
6044
  "type": "boolean"
6038
6045
  }
@@ -1603,6 +1603,14 @@
1603
1603
  }
1604
1604
  },
1605
1605
  "additionalProperties": false
1606
+ },
1607
+ "format": {
1608
+ "type": "string",
1609
+ "enum": [
1610
+ "csv",
1611
+ "json"
1612
+ ],
1613
+ "default": "csv"
1606
1614
  }
1607
1615
  },
1608
1616
  "additionalProperties": false
@@ -1620,6 +1620,16 @@
1620
1620
  },
1621
1621
  "keepCommandHistory": {
1622
1622
  "type": "boolean"
1623
+ },
1624
+ "email": {
1625
+ "type": "string",
1626
+ "format": "email",
1627
+ "maxLength": 1024
1628
+ },
1629
+ "callbackUrl": {
1630
+ "type": "string",
1631
+ "format": "uri",
1632
+ "maxLength": 1024
1623
1633
  }
1624
1634
  },
1625
1635
  "additionalProperties": false,
@@ -101,6 +101,17 @@
101
101
  }
102
102
  },
103
103
  "additionalProperties": false
104
+ },
105
+ "headers": {
106
+ "type": "object",
107
+ "properties": {
108
+ "content-type": {
109
+ "type": "string",
110
+ "minLength": 1,
111
+ "maxLength": 255
112
+ }
113
+ },
114
+ "additionalProperties": false
104
115
  }
105
116
  }
106
117
  }
@@ -89,6 +89,17 @@
89
89
  }
90
90
  },
91
91
  "additionalProperties": false
92
+ },
93
+ "headers": {
94
+ "type": "object",
95
+ "properties": {
96
+ "content-type": {
97
+ "type": "string",
98
+ "minLength": 1,
99
+ "maxLength": 255
100
+ }
101
+ },
102
+ "additionalProperties": false
92
103
  }
93
104
  }
94
105
  }
@@ -32,6 +32,17 @@
32
32
  }
33
33
  },
34
34
  "additionalProperties": false
35
+ },
36
+ "headers": {
37
+ "type": "object",
38
+ "properties": {
39
+ "content-type": {
40
+ "type": "string",
41
+ "minLength": 1,
42
+ "maxLength": 255
43
+ }
44
+ },
45
+ "additionalProperties": false
35
46
  }
36
47
  },
37
48
  "additionalProperties": false
@@ -40,6 +40,17 @@
40
40
  }
41
41
  },
42
42
  "additionalProperties": false
43
+ },
44
+ "headers": {
45
+ "type": "object",
46
+ "properties": {
47
+ "content-type": {
48
+ "type": "string",
49
+ "minLength": 1,
50
+ "maxLength": 255
51
+ }
52
+ },
53
+ "additionalProperties": false
43
54
  }
44
55
  },
45
56
  "additionalProperties": false,
@@ -96,6 +96,17 @@
96
96
  }
97
97
  },
98
98
  "additionalProperties": false
99
+ },
100
+ "headers": {
101
+ "type": "object",
102
+ "properties": {
103
+ "content-type": {
104
+ "type": "string",
105
+ "minLength": 1,
106
+ "maxLength": 255
107
+ }
108
+ },
109
+ "additionalProperties": false
99
110
  }
100
111
  }
101
112
  }
@@ -311,6 +311,14 @@
311
311
  "queryJson": {
312
312
  "type": "string",
313
313
  "maxLength": 8192
314
+ },
315
+ "format": {
316
+ "type": "string",
317
+ "enum": [
318
+ "csv",
319
+ "json"
320
+ ],
321
+ "default": "csv"
314
322
  }
315
323
  },
316
324
  "required": [
@@ -275,6 +275,14 @@
275
275
  "queryJson": {
276
276
  "type": "string",
277
277
  "maxLength": 8192
278
+ },
279
+ "format": {
280
+ "type": "string",
281
+ "enum": [
282
+ "csv",
283
+ "json"
284
+ ],
285
+ "default": "csv"
278
286
  }
279
287
  },
280
288
  "required": [
@@ -283,6 +283,14 @@
283
283
  "queryJson": {
284
284
  "type": "string",
285
285
  "maxLength": 8192
286
+ },
287
+ "format": {
288
+ "type": "string",
289
+ "enum": [
290
+ "csv",
291
+ "json"
292
+ ],
293
+ "default": "csv"
286
294
  }
287
295
  },
288
296
  "required": [
@@ -318,6 +318,14 @@
318
318
  "queryJson": {
319
319
  "type": "string",
320
320
  "maxLength": 8192
321
+ },
322
+ "format": {
323
+ "type": "string",
324
+ "enum": [
325
+ "csv",
326
+ "json"
327
+ ],
328
+ "default": "csv"
321
329
  }
322
330
  },
323
331
  "required": [
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.19.7
4
+ version: 1.19.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Kuehl
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-15 00:00:00.000000000 Z
11
+ date: 2024-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -73,10 +73,10 @@ executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
+ - ".github/workflows/test.yml"
76
77
  - ".gitignore"
77
78
  - ".markdownlint.json"
78
79
  - ".ruby-version"
79
- - ".travis.yml"
80
80
  - Gemfile
81
81
  - LICENSE
82
82
  - README.md
@@ -276,6 +276,7 @@ files:
276
276
  - schemas/advancedFlowByVersionQuery.json
277
277
  - schemas/advancedFlowQuery.json
278
278
  - schemas/advancedFlowVersionQuery.json
279
+ - schemas/advancedInstanceOrgQuery.json
279
280
  - schemas/advancedQuery.json
280
281
  - schemas/apiToken.json
281
282
  - schemas/apiTokenPatch.json
data/.travis.yml DELETED
@@ -1,7 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.5
4
- - 2.4
5
- - 2.3
6
- - 2.2
7
- - 2.1