losant_rest 1.15.0 → 1.15.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d21c436c17266550a70b6f406823cf0273feab80b31688cba4a2131d4c1feb97
4
- data.tar.gz: fba3d1236952d2700215bd1e7ef9a9dae83f8c445d9c5860115643801daed5b6
3
+ metadata.gz: 41b30e2b30ce941e74f44275ba9ded733044443fcf6775c9791fcfe2c573dddc
4
+ data.tar.gz: 87a5be62df7dae9aeea565a1586692cebfd41cbcecfa83ff4b38f3a974323c04
5
5
  SHA512:
6
- metadata.gz: c682e40c730461d1d49f9946527d1438e8116346635d7e5347ee07fe5f40094b4f2e591023a5483e961e3677678e3cb1a6e7525d528fe21471a09da6e26879c6
7
- data.tar.gz: 8f2e77601e28b76755f8421a8630da28dc7d9ef82e87d2f521b8427b05cc4783337feb0ddf3489a919c0f8d27818752fa3388336c2b4f86ad412c24d79196986
6
+ metadata.gz: e867e643598282d312d639a7d5f40ddd884ca26cd57892473b1b2d61d189f84c2f7f03603025f45ceafc847d6023e49f8c85d124c4e4693d0ca8879c5b1900ba
7
+ data.tar.gz: ef65a27171813e96fca6c4fadf2d091f7b7c67aecaee107d04842ec6a49cc6180ce536a361b932b41960b76b03d662757a72457e26fc4112dc1c3bf525c0011a
data/docs/_schemas.md CHANGED
@@ -56268,6 +56268,10 @@ Export options for events
56268
56268
  "format": "email",
56269
56269
  "maxLength": 1024
56270
56270
  },
56271
+ "callbackUrl": {
56272
+ "type": "string",
56273
+ "maxLength": 1024
56274
+ },
56271
56275
  "query": {
56272
56276
  "title": "Advanced Event Query",
56273
56277
  "description": "Schema for advanced event queries",
@@ -106776,7 +106780,7 @@ Schema for instance patch request
106776
106780
  "periods": 3
106777
106781
  },
106778
106782
  {
106779
- "email": [
106783
+ "emails": [
106780
106784
  "email@example.com",
106781
106785
  "anotheremail@example.com"
106782
106786
  ],
@@ -110259,7 +110263,8 @@ Schema for a single Notebook
110259
110263
  "type": "string",
110260
110264
  "enum": [
110261
110265
  "v1",
110262
- "v2"
110266
+ "v2",
110267
+ "v3"
110263
110268
  ]
110264
110269
  },
110265
110270
  "inputs": {
@@ -111092,7 +111097,8 @@ Schema for a set of Notebook execution logs
111092
111097
  "type": "string",
111093
111098
  "enum": [
111094
111099
  "v1",
111095
- "v2"
111100
+ "v2",
111101
+ "v3"
111096
111102
  ]
111097
111103
  },
111098
111104
  "applicationId": {
@@ -111902,7 +111908,8 @@ Schema for the body of a Notebook modification request
111902
111908
  "type": "string",
111903
111909
  "enum": [
111904
111910
  "v1",
111905
- "v2"
111911
+ "v2",
111912
+ "v3"
111906
111913
  ]
111907
111914
  }
111908
111915
  },
@@ -111943,7 +111950,8 @@ Schema for the body of an Notebook creation request
111943
111950
  "type": "string",
111944
111951
  "enum": [
111945
111952
  "v1",
111946
- "v2"
111953
+ "v2",
111954
+ "v3"
111947
111955
  ]
111948
111956
  },
111949
111957
  "inputs": {
@@ -112618,7 +112626,8 @@ Schema for a collection of Notebooks
112618
112626
  "type": "string",
112619
112627
  "enum": [
112620
112628
  "v1",
112621
- "v2"
112629
+ "v2",
112630
+ "v3"
112622
112631
  ]
112623
112632
  },
112624
112633
  "inputs": {
@@ -27,7 +27,7 @@ module LosantRest
27
27
  #
28
28
  # User API for accessing Losant data
29
29
  #
30
- # Built For Version 1.22.0
30
+ # Built For Version 1.22.1
31
31
  class Client
32
32
  attr_accessor :auth_token, :url
33
33
 
@@ -358,7 +358,7 @@ module LosantRest
358
358
 
359
359
  headers["Accept"] = "application/json"
360
360
  headers["Content-Type"] = "application/json"
361
- headers["Accept-Version"] = "^1.22.0"
361
+ headers["Accept-Version"] = "^1.22.1"
362
362
  headers["Authorization"] = "Bearer #{self.auth_token}" if self.auth_token
363
363
  path = self.url + options.fetch(:path, "")
364
364
 
@@ -21,5 +21,5 @@
21
21
  # SOFTWARE.
22
22
 
23
23
  module LosantRest
24
- VERSION = "1.15.0"
24
+ VERSION = "1.15.1"
25
25
  end
@@ -7,6 +7,10 @@
7
7
  "format": "email",
8
8
  "maxLength": 1024
9
9
  },
10
+ "callbackUrl": {
11
+ "type": "string",
12
+ "maxLength": 1024
13
+ },
10
14
  "query": {
11
15
  "title": "Advanced Event Query",
12
16
  "description": "Schema for advanced event queries",
@@ -43,7 +43,8 @@
43
43
  "type": "string",
44
44
  "enum": [
45
45
  "v1",
46
- "v2"
46
+ "v2",
47
+ "v3"
47
48
  ]
48
49
  },
49
50
  "inputs": {
@@ -20,7 +20,8 @@
20
20
  "type": "string",
21
21
  "enum": [
22
22
  "v1",
23
- "v2"
23
+ "v2",
24
+ "v3"
24
25
  ]
25
26
  },
26
27
  "applicationId": {
@@ -611,7 +611,8 @@
611
611
  "type": "string",
612
612
  "enum": [
613
613
  "v1",
614
- "v2"
614
+ "v2",
615
+ "v3"
615
616
  ]
616
617
  }
617
618
  },
@@ -15,7 +15,8 @@
15
15
  "type": "string",
16
16
  "enum": [
17
17
  "v1",
18
- "v2"
18
+ "v2",
19
+ "v3"
19
20
  ]
20
21
  },
21
22
  "inputs": {
@@ -50,7 +50,8 @@
50
50
  "type": "string",
51
51
  "enum": [
52
52
  "v1",
53
- "v2"
53
+ "v2",
54
+ "v3"
54
55
  ]
55
56
  },
56
57
  "inputs": {
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.15.0
4
+ version: 1.15.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: 2021-10-29 00:00:00.000000000 Z
11
+ date: 2021-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty