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.
- checksums.yaml +4 -4
- data/docs/_schemas.md +484 -139
- data/docs/experienceEndpoints.md +1 -1
- data/docs/me.md +11 -1
- data/lib/platform_rest/client.rb +2 -2
- data/lib/platform_rest/me.rb +21 -1
- data/lib/platform_rest/version.rb +2 -2
- data/schemas/application.json +54 -0
- data/schemas/applicationCreationByTemplateResult.json +54 -0
- data/schemas/applicationPatch.json +195 -134
- data/schemas/applicationPost.json +54 -0
- data/schemas/applications.json +54 -0
- data/schemas/experienceVersion.json +12 -0
- data/schemas/experienceVersionPatch.json +12 -0
- data/schemas/experienceVersionPost.json +12 -0
- data/schemas/experienceVersions.json +12 -0
- data/schemas/me.json +5 -0
- data/schemas/suggestFunctionPost.json +2 -1
- data/schemas/webhook.json +3 -0
- data/schemas/webhookPatch.json +3 -0
- data/schemas/webhookPost.json +3 -0
- data/schemas/webhooks.json +3 -0
- metadata +2 -2
@@ -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
|
data/schemas/applications.json
CHANGED
@@ -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
data/schemas/webhook.json
CHANGED
data/schemas/webhookPatch.json
CHANGED
data/schemas/webhookPost.json
CHANGED
data/schemas/webhooks.json
CHANGED
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.
|
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-
|
11
|
+
date: 2025-09-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|