losant_rest 1.22.2 → 1.22.4

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.
@@ -141,6 +141,60 @@
141
141
  },
142
142
  "maxItems": 1000
143
143
  },
144
+ "includeApplicationExport": {
145
+ "type": "boolean",
146
+ "default": false
147
+ },
148
+ "applicationExportOptions": {
149
+ "type": "object",
150
+ "properties": {
151
+ "includeFiles": {
152
+ "type": "boolean",
153
+ "default": false
154
+ },
155
+ "includeDataTableRows": {
156
+ "type": "boolean",
157
+ "default": false
158
+ },
159
+ "includeDevices": {
160
+ "type": "boolean",
161
+ "default": false
162
+ },
163
+ "exportType": {
164
+ "type": "string",
165
+ "enum": [
166
+ "repo"
167
+ ],
168
+ "default": "repo"
169
+ },
170
+ "credentialName": {
171
+ "type": "string",
172
+ "minLength": 1,
173
+ "maxLength": 255
174
+ },
175
+ "repo": {
176
+ "type": "object",
177
+ "properties": {
178
+ "branch": {
179
+ "type": "string",
180
+ "maxLength": 255
181
+ },
182
+ "directory": {
183
+ "type": "string",
184
+ "maxLength": 1024
185
+ },
186
+ "commitMessage": {
187
+ "type": "string",
188
+ "maxLength": 1024
189
+ }
190
+ }
191
+ }
192
+ },
193
+ "required": [
194
+ "credentialName"
195
+ ],
196
+ "additionalProperties": false
197
+ },
144
198
  "delayDays": {
145
199
  "type": "integer",
146
200
  "minimum": 1
@@ -468,6 +468,60 @@
468
468
  },
469
469
  "maxItems": 1000
470
470
  },
471
+ "includeApplicationExport": {
472
+ "type": "boolean",
473
+ "default": false
474
+ },
475
+ "applicationExportOptions": {
476
+ "type": "object",
477
+ "properties": {
478
+ "includeFiles": {
479
+ "type": "boolean",
480
+ "default": false
481
+ },
482
+ "includeDataTableRows": {
483
+ "type": "boolean",
484
+ "default": false
485
+ },
486
+ "includeDevices": {
487
+ "type": "boolean",
488
+ "default": false
489
+ },
490
+ "exportType": {
491
+ "type": "string",
492
+ "enum": [
493
+ "repo"
494
+ ],
495
+ "default": "repo"
496
+ },
497
+ "credentialName": {
498
+ "type": "string",
499
+ "minLength": 1,
500
+ "maxLength": 255
501
+ },
502
+ "repo": {
503
+ "type": "object",
504
+ "properties": {
505
+ "branch": {
506
+ "type": "string",
507
+ "maxLength": 255
508
+ },
509
+ "directory": {
510
+ "type": "string",
511
+ "maxLength": 1024
512
+ },
513
+ "commitMessage": {
514
+ "type": "string",
515
+ "maxLength": 1024
516
+ }
517
+ }
518
+ }
519
+ },
520
+ "required": [
521
+ "credentialName"
522
+ ],
523
+ "additionalProperties": false
524
+ },
471
525
  "delayDays": {
472
526
  "type": "integer",
473
527
  "minimum": 1
@@ -158,6 +158,18 @@
158
158
  }
159
159
  ]
160
160
  },
161
+ "responseHeaders": {
162
+ "type": "object",
163
+ "patternProperties": {
164
+ "^.{1,255}$": {
165
+ "type": "string",
166
+ "minLength": 1,
167
+ "maxLength": 1024
168
+ }
169
+ },
170
+ "maxProperties": 10,
171
+ "additionalProperties": false
172
+ },
161
173
  "attachedDomains": {
162
174
  "type": "array",
163
175
  "items": {
@@ -113,6 +113,18 @@
113
113
  "type": "string",
114
114
  "minLength": 1,
115
115
  "maxLength": 255
116
+ },
117
+ "responseHeaders": {
118
+ "type": "object",
119
+ "patternProperties": {
120
+ "^.{1,255}$": {
121
+ "type": "string",
122
+ "minLength": 1,
123
+ "maxLength": 1024
124
+ }
125
+ },
126
+ "maxProperties": 10,
127
+ "additionalProperties": false
116
128
  }
117
129
  },
118
130
  "additionalProperties": false
@@ -129,6 +129,18 @@
129
129
  "maxLength": 270
130
130
  },
131
131
  "maxItems": 100
132
+ },
133
+ "responseHeaders": {
134
+ "type": "object",
135
+ "patternProperties": {
136
+ "^.{1,255}$": {
137
+ "type": "string",
138
+ "minLength": 1,
139
+ "maxLength": 1024
140
+ }
141
+ },
142
+ "maxProperties": 10,
143
+ "additionalProperties": false
132
144
  }
133
145
  },
134
146
  "additionalProperties": false,
@@ -165,6 +165,18 @@
165
165
  }
166
166
  ]
167
167
  },
168
+ "responseHeaders": {
169
+ "type": "object",
170
+ "patternProperties": {
171
+ "^.{1,255}$": {
172
+ "type": "string",
173
+ "minLength": 1,
174
+ "maxLength": 1024
175
+ }
176
+ },
177
+ "maxProperties": 10,
178
+ "additionalProperties": false
179
+ },
168
180
  "attachedDomains": {
169
181
  "type": "array",
170
182
  "items": {
data/schemas/me.json CHANGED
@@ -27,6 +27,11 @@
27
27
  "format": "email",
28
28
  "maxLength": 1024
29
29
  },
30
+ "requestedEmail": {
31
+ "type": "string",
32
+ "format": "email",
33
+ "maxLength": 1024
34
+ },
30
35
  "firstName": {
31
36
  "type": "string",
32
37
  "minLength": 1,
@@ -6,7 +6,8 @@
6
6
  "type": "string",
7
7
  "minLength": 1,
8
8
  "maxLength": 8192
9
- }
9
+ },
10
+ "payload": {}
10
11
  },
11
12
  "required": [
12
13
  "text"
data/schemas/webhook.json CHANGED
@@ -80,6 +80,9 @@
80
80
  },
81
81
  "annotateMultipart": {
82
82
  "type": "boolean"
83
+ },
84
+ "enabled": {
85
+ "type": "boolean"
83
86
  }
84
87
  }
85
88
  }
@@ -56,6 +56,9 @@
56
56
  },
57
57
  "annotateMultipart": {
58
58
  "type": "boolean"
59
+ },
60
+ "enabled": {
61
+ "type": "boolean"
59
62
  }
60
63
  },
61
64
  "additionalProperties": false
@@ -56,6 +56,9 @@
56
56
  },
57
57
  "annotateMultipart": {
58
58
  "type": "boolean"
59
+ },
60
+ "enabled": {
61
+ "type": "boolean"
59
62
  }
60
63
  },
61
64
  "required": [
@@ -87,6 +87,9 @@
87
87
  },
88
88
  "annotateMultipart": {
89
89
  "type": "boolean"
90
+ },
91
+ "enabled": {
92
+ "type": "boolean"
90
93
  }
91
94
  }
92
95
  }
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.22.2
4
+ version: 1.22.4
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-07-16 00:00:00.000000000 Z
11
+ date: 2025-09-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty