losant_rest 1.14.1 → 1.15.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (77) hide show
  1. checksums.yaml +4 -4
  2. data/docs/_schemas.md +4268 -1402
  3. data/docs/embeddedDeployment.md +49 -0
  4. data/docs/embeddedDeployments.md +215 -0
  5. data/docs/flow.md +2 -2
  6. data/docs/flows.md +2 -2
  7. data/lib/losant_rest/client.rb +10 -2
  8. data/lib/losant_rest/embedded_deployment.rb +81 -0
  9. data/lib/losant_rest/embedded_deployments.rb +280 -0
  10. data/lib/losant_rest/flow.rb +2 -2
  11. data/lib/losant_rest/flows.rb +2 -2
  12. data/lib/losant_rest/version.rb +1 -1
  13. data/lib/losant_rest.rb +2 -0
  14. data/schemas/apiTokenPost.json +8 -0
  15. data/schemas/application.json +32 -32
  16. data/schemas/applicationCreationByTemplateResult.json +32 -32
  17. data/schemas/applicationDashboardPost.json +8 -5
  18. data/schemas/applicationPatch.json +13 -13
  19. data/schemas/applicationPost.json +13 -13
  20. data/schemas/applicationTemplate.json +16 -16
  21. data/schemas/applicationTemplates.json +16 -16
  22. data/schemas/applications.json +32 -32
  23. data/schemas/authedDevice.json +2 -1
  24. data/schemas/dashboard.json +8 -5
  25. data/schemas/dashboardPatch.json +8 -5
  26. data/schemas/dashboardPost.json +8 -5
  27. data/schemas/dashboardSendReport.json +6 -6
  28. data/schemas/dashboards.json +8 -5
  29. data/schemas/device.json +2 -1
  30. data/schemas/deviceClassFilter.json +4 -2
  31. data/schemas/devicePatch.json +2 -1
  32. data/schemas/devicePost.json +2 -1
  33. data/schemas/deviceRecipe.json +2 -1
  34. data/schemas/deviceRecipePatch.json +2 -1
  35. data/schemas/deviceRecipePost.json +2 -1
  36. data/schemas/deviceRecipes.json +2 -1
  37. data/schemas/devices.json +4 -2
  38. data/schemas/devicesPatch.json +4 -2
  39. data/schemas/edgeDeployment.json +4 -0
  40. data/schemas/edgeDeployments.json +4 -0
  41. data/schemas/embeddedDeployment.json +179 -0
  42. data/schemas/embeddedDeploymentExport.json +44 -0
  43. data/schemas/embeddedDeploymentRelease.json +58 -0
  44. data/schemas/embeddedDeploymentRemove.json +25 -0
  45. data/schemas/embeddedDeploymentReplace.json +29 -0
  46. data/schemas/embeddedDeployments.json +212 -0
  47. data/schemas/experienceEndpoint.json +6 -8
  48. data/schemas/experienceEndpointPatch.json +6 -8
  49. data/schemas/experienceEndpointPost.json +6 -8
  50. data/schemas/experienceEndpoints.json +6 -8
  51. data/schemas/experienceLinkedResources.json +387 -57
  52. data/schemas/flow.json +127 -16
  53. data/schemas/flowPatch.json +126 -16
  54. data/schemas/flowPost.json +127 -16
  55. data/schemas/flowVersion.json +253 -33
  56. data/schemas/flowVersionPost.json +126 -16
  57. data/schemas/flowVersions.json +253 -33
  58. data/schemas/flows.json +128 -16
  59. data/schemas/flowsImportPost.json +253 -32
  60. data/schemas/flowsImportResult.json +380 -49
  61. data/schemas/githubLogin.json +8 -0
  62. data/schemas/historicalSummary.json +87 -74
  63. data/schemas/instance.json +92 -79
  64. data/schemas/instanceMember.json +6 -0
  65. data/schemas/instanceMembers.json +6 -0
  66. data/schemas/instanceOrg.json +87 -74
  67. data/schemas/instanceOrgMember.json +6 -0
  68. data/schemas/instanceOrgPatch.json +64 -26
  69. data/schemas/instanceOrgPost.json +65 -27
  70. data/schemas/instanceOrgs.json +87 -74
  71. data/schemas/instancePatch.json +2 -2
  72. data/schemas/me.json +104 -91
  73. data/schemas/org.json +115 -96
  74. data/schemas/orgs.json +115 -96
  75. data/schemas/userCredentials.json +8 -0
  76. data/schemas/userPost.json +8 -0
  77. metadata +16 -6
@@ -0,0 +1,280 @@
1
+ # The MIT License (MIT)
2
+ #
3
+ # Copyright (c) 2021 Losant IoT, Inc.
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in all
13
+ # copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ # SOFTWARE.
22
+
23
+ require "json"
24
+
25
+ module LosantRest
26
+
27
+ # Class containing all the actions for the Embedded Deployments Resource
28
+ class EmbeddedDeployments
29
+
30
+ def initialize(client)
31
+ @client = client
32
+ end
33
+
34
+ # Request an export of the compiled WASM files for a current deployment
35
+ #
36
+ # Authentication:
37
+ # The client must be configured with a valid api
38
+ # access token to call this action. The token
39
+ # must include at least one of the following scopes:
40
+ # all.Application, all.Application.read, all.Organization, all.Organization.read, all.User, all.User.read, embeddedDeployments.*, or embeddedDeployments.export.
41
+ #
42
+ # Parameters:
43
+ # * {string} applicationId - ID associated with the application
44
+ # * {hash} options - Export options for embedded deployment (https://api.losant.com/#/definitions/embeddedDeploymentExport)
45
+ # * {string} losantdomain - Domain scope of request (rarely needed)
46
+ # * {boolean} _actions - Return resource actions in response
47
+ # * {boolean} _links - Return resource link in response
48
+ # * {boolean} _embedded - Return embedded resources in response
49
+ #
50
+ # Responses:
51
+ # * 200 - If generation of export was successfully started (https://api.losant.com/#/definitions/success)
52
+ #
53
+ # Errors:
54
+ # * 400 - Error if malformed request (https://api.losant.com/#/definitions/error)
55
+ # * 404 - Error if deployment was not found (https://api.losant.com/#/definitions/error)
56
+ def export(params = {})
57
+ params = Utils.symbolize_hash_keys(params)
58
+ query_params = { _actions: false, _links: true, _embedded: true }
59
+ headers = {}
60
+ body = nil
61
+
62
+ raise ArgumentError.new("applicationId is required") unless params.has_key?(:applicationId)
63
+
64
+ body = params[:options] if params.has_key?(:options)
65
+ headers[:losantdomain] = params[:losantdomain] if params.has_key?(:losantdomain)
66
+ query_params[:_actions] = params[:_actions] if params.has_key?(:_actions)
67
+ query_params[:_links] = params[:_links] if params.has_key?(:_links)
68
+ query_params[:_embedded] = params[:_embedded] if params.has_key?(:_embedded)
69
+
70
+ path = "/applications/#{params[:applicationId]}/embedded/deployments/export"
71
+
72
+ @client.request(
73
+ method: :post,
74
+ path: path,
75
+ query: query_params,
76
+ headers: headers,
77
+ body: body)
78
+ end
79
+
80
+ # Returns the embedded deployments for an application
81
+ #
82
+ # Authentication:
83
+ # The client must be configured with a valid api
84
+ # access token to call this action. The token
85
+ # must include at least one of the following scopes:
86
+ # all.Application, all.Application.read, all.Organization, all.Organization.read, all.User, all.User.read, embeddedDeployments.*, or embeddedDeployments.get.
87
+ #
88
+ # Parameters:
89
+ # * {string} applicationId - ID associated with the application
90
+ # * {string} sortField - Field to sort the results by. Accepted values are: id, creationDate, lastUpdated
91
+ # * {string} sortDirection - Direction to sort the results by. Accepted values are: asc, desc
92
+ # * {string} page - Which page of results to return
93
+ # * {string} perPage - How many items to return per page
94
+ # * {string} deviceId - Filter deployments to the given Device ID
95
+ # * {string} version - Filter deployments to the given Workflow Version (matches against both current and desired)
96
+ # * {string} flowId - Filter deployments to the given Workflow ID
97
+ # * {string} losantdomain - Domain scope of request (rarely needed)
98
+ # * {boolean} _actions - Return resource actions in response
99
+ # * {boolean} _links - Return resource link in response
100
+ # * {boolean} _embedded - Return embedded resources in response
101
+ #
102
+ # Responses:
103
+ # * 200 - Collection of embedded deployments (https://api.losant.com/#/definitions/embeddedDeployments)
104
+ #
105
+ # Errors:
106
+ # * 400 - Error if malformed request (https://api.losant.com/#/definitions/error)
107
+ # * 404 - Error if application or device was not found (https://api.losant.com/#/definitions/error)
108
+ def get(params = {})
109
+ params = Utils.symbolize_hash_keys(params)
110
+ query_params = { _actions: false, _links: true, _embedded: true }
111
+ headers = {}
112
+ body = nil
113
+
114
+ raise ArgumentError.new("applicationId is required") unless params.has_key?(:applicationId)
115
+
116
+ query_params[:sortField] = params[:sortField] if params.has_key?(:sortField)
117
+ query_params[:sortDirection] = params[:sortDirection] if params.has_key?(:sortDirection)
118
+ query_params[:page] = params[:page] if params.has_key?(:page)
119
+ query_params[:perPage] = params[:perPage] if params.has_key?(:perPage)
120
+ query_params[:deviceId] = params[:deviceId] if params.has_key?(:deviceId)
121
+ query_params[:version] = params[:version] if params.has_key?(:version)
122
+ query_params[:flowId] = params[:flowId] if params.has_key?(:flowId)
123
+ headers[:losantdomain] = params[:losantdomain] if params.has_key?(:losantdomain)
124
+ query_params[:_actions] = params[:_actions] if params.has_key?(:_actions)
125
+ query_params[:_links] = params[:_links] if params.has_key?(:_links)
126
+ query_params[:_embedded] = params[:_embedded] if params.has_key?(:_embedded)
127
+
128
+ path = "/applications/#{params[:applicationId]}/embedded/deployments"
129
+
130
+ @client.request(
131
+ method: :get,
132
+ path: path,
133
+ query: query_params,
134
+ headers: headers,
135
+ body: body)
136
+ end
137
+
138
+ # Deploy an embedded workflow version to one or more embedded devices. Version can be blank, if removal is desired.
139
+ #
140
+ # Authentication:
141
+ # The client must be configured with a valid api
142
+ # access token to call this action. The token
143
+ # must include at least one of the following scopes:
144
+ # all.Application, all.Organization, all.User, embeddedDeployments.*, or embeddedDeployments.release.
145
+ #
146
+ # Parameters:
147
+ # * {string} applicationId - ID associated with the application
148
+ # * {hash} deployment - Deployment release information (https://api.losant.com/#/definitions/embeddedDeploymentRelease)
149
+ # * {string} losantdomain - Domain scope of request (rarely needed)
150
+ # * {boolean} _actions - Return resource actions in response
151
+ # * {boolean} _links - Return resource link in response
152
+ # * {boolean} _embedded - Return embedded resources in response
153
+ #
154
+ # Responses:
155
+ # * 201 - If deployment release has been initiated successfully (https://api.losant.com/#/definitions/success)
156
+ #
157
+ # Errors:
158
+ # * 400 - Error if malformed request (https://api.losant.com/#/definitions/error)
159
+ # * 404 - Error if application was not found (https://api.losant.com/#/definitions/error)
160
+ def release(params = {})
161
+ params = Utils.symbolize_hash_keys(params)
162
+ query_params = { _actions: false, _links: true, _embedded: true }
163
+ headers = {}
164
+ body = nil
165
+
166
+ raise ArgumentError.new("applicationId is required") unless params.has_key?(:applicationId)
167
+ raise ArgumentError.new("deployment is required") unless params.has_key?(:deployment)
168
+
169
+ body = params[:deployment] if params.has_key?(:deployment)
170
+ headers[:losantdomain] = params[:losantdomain] if params.has_key?(:losantdomain)
171
+ query_params[:_actions] = params[:_actions] if params.has_key?(:_actions)
172
+ query_params[:_links] = params[:_links] if params.has_key?(:_links)
173
+ query_params[:_embedded] = params[:_embedded] if params.has_key?(:_embedded)
174
+
175
+ path = "/applications/#{params[:applicationId]}/embedded/deployments/release"
176
+
177
+ @client.request(
178
+ method: :post,
179
+ path: path,
180
+ query: query_params,
181
+ headers: headers,
182
+ body: body)
183
+ end
184
+
185
+ # Remove all embedded deployments from a device, remove all embedded deployments of a workflow, or remove a specific workflow from a specific device
186
+ #
187
+ # Authentication:
188
+ # The client must be configured with a valid api
189
+ # access token to call this action. The token
190
+ # must include at least one of the following scopes:
191
+ # all.Application, all.Organization, all.User, embeddedDeployments.*, or embeddedDeployments.remove.
192
+ #
193
+ # Parameters:
194
+ # * {string} applicationId - ID associated with the application
195
+ # * {hash} deployment - Deployment removal information (https://api.losant.com/#/definitions/embeddedDeploymentRemove)
196
+ # * {string} losantdomain - Domain scope of request (rarely needed)
197
+ # * {boolean} _actions - Return resource actions in response
198
+ # * {boolean} _links - Return resource link in response
199
+ # * {boolean} _embedded - Return embedded resources in response
200
+ #
201
+ # Responses:
202
+ # * 201 - If deployment removal has been initiated successfully (https://api.losant.com/#/definitions/success)
203
+ #
204
+ # Errors:
205
+ # * 400 - Error if malformed request (https://api.losant.com/#/definitions/error)
206
+ # * 404 - Error if application was not found (https://api.losant.com/#/definitions/error)
207
+ def remove(params = {})
208
+ params = Utils.symbolize_hash_keys(params)
209
+ query_params = { _actions: false, _links: true, _embedded: true }
210
+ headers = {}
211
+ body = nil
212
+
213
+ raise ArgumentError.new("applicationId is required") unless params.has_key?(:applicationId)
214
+ raise ArgumentError.new("deployment is required") unless params.has_key?(:deployment)
215
+
216
+ body = params[:deployment] if params.has_key?(:deployment)
217
+ headers[:losantdomain] = params[:losantdomain] if params.has_key?(:losantdomain)
218
+ query_params[:_actions] = params[:_actions] if params.has_key?(:_actions)
219
+ query_params[:_links] = params[:_links] if params.has_key?(:_links)
220
+ query_params[:_embedded] = params[:_embedded] if params.has_key?(:_embedded)
221
+
222
+ path = "/applications/#{params[:applicationId]}/embedded/deployments/remove"
223
+
224
+ @client.request(
225
+ method: :post,
226
+ path: path,
227
+ query: query_params,
228
+ headers: headers,
229
+ body: body)
230
+ end
231
+
232
+ # Replace deployments of an embedded workflow version with a new version. New version can be blank, if removal is desired.
233
+ #
234
+ # Authentication:
235
+ # The client must be configured with a valid api
236
+ # access token to call this action. The token
237
+ # must include at least one of the following scopes:
238
+ # all.Application, all.Organization, all.User, embeddedDeployments.*, or embeddedDeployments.replace.
239
+ #
240
+ # Parameters:
241
+ # * {string} applicationId - ID associated with the application
242
+ # * {hash} deployment - Deployment replacement information (https://api.losant.com/#/definitions/embeddedDeploymentReplace)
243
+ # * {string} losantdomain - Domain scope of request (rarely needed)
244
+ # * {boolean} _actions - Return resource actions in response
245
+ # * {boolean} _links - Return resource link in response
246
+ # * {boolean} _embedded - Return embedded resources in response
247
+ #
248
+ # Responses:
249
+ # * 201 - If deployment replacement has been initiated successfully (https://api.losant.com/#/definitions/success)
250
+ #
251
+ # Errors:
252
+ # * 400 - Error if malformed request (https://api.losant.com/#/definitions/error)
253
+ # * 404 - Error if application was not found (https://api.losant.com/#/definitions/error)
254
+ def replace(params = {})
255
+ params = Utils.symbolize_hash_keys(params)
256
+ query_params = { _actions: false, _links: true, _embedded: true }
257
+ headers = {}
258
+ body = nil
259
+
260
+ raise ArgumentError.new("applicationId is required") unless params.has_key?(:applicationId)
261
+ raise ArgumentError.new("deployment is required") unless params.has_key?(:deployment)
262
+
263
+ body = params[:deployment] if params.has_key?(:deployment)
264
+ headers[:losantdomain] = params[:losantdomain] if params.has_key?(:losantdomain)
265
+ query_params[:_actions] = params[:_actions] if params.has_key?(:_actions)
266
+ query_params[:_links] = params[:_links] if params.has_key?(:_links)
267
+ query_params[:_embedded] = params[:_embedded] if params.has_key?(:_embedded)
268
+
269
+ path = "/applications/#{params[:applicationId]}/embedded/deployments/replace"
270
+
271
+ @client.request(
272
+ method: :post,
273
+ path: path,
274
+ query: query_params,
275
+ headers: headers,
276
+ body: body)
277
+ end
278
+
279
+ end
280
+ end
@@ -139,7 +139,7 @@ module LosantRest
139
139
  # * {string} limit - Maximum number of errors to return
140
140
  # * {string} sortDirection - Direction to sort the results by. Accepted values are: asc, desc
141
141
  # * {string} flowVersion - Flow version name or ID. When not included, will be errors for all versions. Pass develop for just the develop version.
142
- # * {string} deviceId - For edge workflows, the Device ID to return workflow errors for. When not included, will be errors for all device IDs.
142
+ # * {string} deviceId - For edge or embedded workflows, the Device ID to return workflow errors for. When not included, will be errors for all device IDs.
143
143
  # * {string} losantdomain - Domain scope of request (rarely needed)
144
144
  # * {boolean} _actions - Return resource actions in response
145
145
  # * {boolean} _links - Return resource link in response
@@ -535,7 +535,7 @@ module LosantRest
535
535
  # * {string} end - End of time range in milliseconds since epoch
536
536
  # * {string} resolution - Resolution in milliseconds
537
537
  # * {string} flowVersion - Flow version name or ID. When not included, will be aggregate for all versions. Pass develop for just the develop version.
538
- # * {string} deviceId - For edge workflows, the device ID to return workflow stats for. When not included, will be aggregate for all device IDs.
538
+ # * {string} deviceId - For edge or embedded workflows, the device ID to return workflow stats for. When not included, will be aggregate for all device IDs.
539
539
  # * {string} losantdomain - Domain scope of request (rarely needed)
540
540
  # * {boolean} _actions - Return resource actions in response
541
541
  # * {boolean} _links - Return resource link in response
@@ -47,7 +47,7 @@ module LosantRest
47
47
  # * {string} perPage - How many items to return per page
48
48
  # * {string} filterField - Field to filter the results by. Blank or not provided means no filtering. Accepted values are: name
49
49
  # * {string} filter - Filter to apply against the filtered field. Supports globbing. Blank or not provided means no filtering.
50
- # * {string} flowClass - Filter the workflows by the given flow class. Accepted values are: edge, cloud, customNode, experience
50
+ # * {string} flowClass - Filter the workflows by the given flow class. Accepted values are: edge, embedded, cloud, customNode, experience
51
51
  # * {hash} triggerFilter - Array of triggers to filter by - always filters against default flow version. (https://api.losant.com/#/definitions/flowTriggerFilter)
52
52
  # * {string} includeCustomNodes - If the result of the request should also include the details of any custom nodes referenced by the returned workflows
53
53
  # * {hash} query - Workflow filter JSON object which overrides the filterField, filter, triggerFilter, and flowClass parameters. (https://api.losant.com/#/definitions/advancedFlowQuery)
@@ -114,7 +114,7 @@ module LosantRest
114
114
  # * {string} perPage - How many items to return per page
115
115
  # * {string} filterField - Field to filter the results by. Blank or not provided means no filtering. Accepted values are: name
116
116
  # * {string} filter - Filter to apply against the filtered field. Supports globbing. Blank or not provided means no filtering.
117
- # * {string} flowClass - Filter the workflows by the given flow class. Accepted values are: edge, cloud, customNode, experience
117
+ # * {string} flowClass - Filter the workflows by the given flow class. Accepted values are: edge, embedded, cloud, customNode, experience
118
118
  # * {string} version - Return the workflow versions for the given version.
119
119
  # * {hash} triggerFilter - Array of triggers to filter by - always filters against default flow version. (https://api.losant.com/#/definitions/flowTriggerFilter)
120
120
  # * {string} includeCustomNodes - If the result of the request should also include the details of any custom nodes referenced by the returned workflows
@@ -21,5 +21,5 @@
21
21
  # SOFTWARE.
22
22
 
23
23
  module LosantRest
24
- VERSION = "1.14.1"
24
+ VERSION = "1.15.0"
25
25
  end
data/lib/losant_rest.rb CHANGED
@@ -53,6 +53,8 @@ require_relative "losant_rest/device_recipes"
53
53
  require_relative "losant_rest/devices"
54
54
  require_relative "losant_rest/edge_deployment"
55
55
  require_relative "losant_rest/edge_deployments"
56
+ require_relative "losant_rest/embedded_deployment"
57
+ require_relative "losant_rest/embedded_deployments"
56
58
  require_relative "losant_rest/event"
57
59
  require_relative "losant_rest/events"
58
60
  require_relative "losant_rest/experience"
@@ -52,6 +52,8 @@
52
52
  "devices.*",
53
53
  "edgeDeployment.*",
54
54
  "edgeDeployments.*",
55
+ "embeddedDeployment.*",
56
+ "embeddedDeployments.*",
55
57
  "event.*",
56
58
  "events.*",
57
59
  "experience.*",
@@ -180,6 +182,12 @@
180
182
  "edgeDeployments.release",
181
183
  "edgeDeployments.remove",
182
184
  "edgeDeployments.replace",
185
+ "embeddedDeployment.get",
186
+ "embeddedDeployments.get",
187
+ "embeddedDeployments.release",
188
+ "embeddedDeployments.remove",
189
+ "embeddedDeployments.replace",
190
+ "embeddedDeployments.export",
183
191
  "event.delete",
184
192
  "event.get",
185
193
  "event.patch",
@@ -108,66 +108,66 @@
108
108
  "type": "object",
109
109
  "properties": {
110
110
  "apiTokenCount": {
111
- "type": "number"
111
+ "type": "integer"
112
112
  },
113
113
  "dataTableCount": {
114
- "type": "number"
114
+ "type": "integer"
115
115
  },
116
116
  "deviceCount": {
117
- "type": "number"
117
+ "type": "integer"
118
118
  },
119
119
  "deviceRecipeCount": {
120
- "type": "number"
120
+ "type": "integer"
121
121
  },
122
122
  "eventCount": {
123
- "type": "number"
123
+ "type": "integer"
124
124
  },
125
125
  "experienceDomainCount": {
126
- "type": "number"
126
+ "type": "integer"
127
127
  },
128
128
  "experienceEndpointCount": {
129
- "type": "number"
129
+ "type": "integer"
130
130
  },
131
131
  "experienceGroupCount": {
132
- "type": "number"
132
+ "type": "integer"
133
133
  },
134
134
  "experienceSlugCount": {
135
- "type": "number"
135
+ "type": "integer"
136
136
  },
137
137
  "experienceUserCount": {
138
- "type": "number"
138
+ "type": "integer"
139
139
  },
140
140
  "experienceVersionCount": {
141
- "type": "number"
141
+ "type": "integer"
142
142
  },
143
143
  "experienceViewCount": {
144
- "type": "number"
144
+ "type": "integer"
145
145
  },
146
146
  "fileCount": {
147
- "type": "number"
147
+ "type": "integer"
148
148
  },
149
149
  "flowCount": {
150
- "type": "number"
150
+ "type": "integer"
151
151
  },
152
152
  "integrationCount": {
153
- "type": "number"
153
+ "type": "integer"
154
154
  },
155
155
  "keyCount": {
156
- "type": "number"
156
+ "type": "integer"
157
157
  },
158
158
  "storageStats": {
159
159
  "type": "object",
160
160
  "properties": {
161
161
  "count": {
162
- "type": "number"
162
+ "type": "integer"
163
163
  },
164
164
  "size": {
165
- "type": "number"
165
+ "type": "integer"
166
166
  }
167
167
  }
168
168
  },
169
169
  "webhookCount": {
170
- "type": "number"
170
+ "type": "integer"
171
171
  }
172
172
  }
173
173
  },
@@ -205,7 +205,7 @@
205
205
  "properties": {
206
206
  "directory": {
207
207
  "type": "string",
208
- "max": 255
208
+ "maxLength": 255
209
209
  },
210
210
  "mode": {
211
211
  "type": "string",
@@ -275,21 +275,21 @@
275
275
  "properties": {
276
276
  "bucket": {
277
277
  "type": "string",
278
- "max": 255
278
+ "maxLength": 255
279
279
  },
280
280
  "accessKeyId": {
281
281
  "type": "string",
282
- "min": 4,
283
- "max": 128
282
+ "minLength": 4,
283
+ "maxLength": 128
284
284
  },
285
285
  "secretAccessKey": {
286
286
  "type": "string",
287
- "min": 4,
288
- "max": 128
287
+ "minLength": 4,
288
+ "maxLength": 128
289
289
  },
290
290
  "region": {
291
291
  "type": "string",
292
- "max": 128
292
+ "maxLength": 128
293
293
  }
294
294
  },
295
295
  "required": [
@@ -315,7 +315,7 @@
315
315
  },
316
316
  "bucket": {
317
317
  "type": "string",
318
- "max": 255
318
+ "maxLength": 255
319
319
  }
320
320
  },
321
321
  "required": [
@@ -330,17 +330,17 @@
330
330
  "properties": {
331
331
  "account": {
332
332
  "type": "string",
333
- "min": 3,
334
- "max": 24
333
+ "minLength": 3,
334
+ "maxLength": 24
335
335
  },
336
336
  "accountKey": {
337
337
  "type": "string",
338
- "max": 255
338
+ "maxLength": 255
339
339
  },
340
340
  "bucket": {
341
341
  "type": "string",
342
- "min": 3,
343
- "max": 63
342
+ "minLength": 3,
343
+ "maxLength": 63
344
344
  }
345
345
  },
346
346
  "required": [
@@ -113,66 +113,66 @@
113
113
  "type": "object",
114
114
  "properties": {
115
115
  "apiTokenCount": {
116
- "type": "number"
116
+ "type": "integer"
117
117
  },
118
118
  "dataTableCount": {
119
- "type": "number"
119
+ "type": "integer"
120
120
  },
121
121
  "deviceCount": {
122
- "type": "number"
122
+ "type": "integer"
123
123
  },
124
124
  "deviceRecipeCount": {
125
- "type": "number"
125
+ "type": "integer"
126
126
  },
127
127
  "eventCount": {
128
- "type": "number"
128
+ "type": "integer"
129
129
  },
130
130
  "experienceDomainCount": {
131
- "type": "number"
131
+ "type": "integer"
132
132
  },
133
133
  "experienceEndpointCount": {
134
- "type": "number"
134
+ "type": "integer"
135
135
  },
136
136
  "experienceGroupCount": {
137
- "type": "number"
137
+ "type": "integer"
138
138
  },
139
139
  "experienceSlugCount": {
140
- "type": "number"
140
+ "type": "integer"
141
141
  },
142
142
  "experienceUserCount": {
143
- "type": "number"
143
+ "type": "integer"
144
144
  },
145
145
  "experienceVersionCount": {
146
- "type": "number"
146
+ "type": "integer"
147
147
  },
148
148
  "experienceViewCount": {
149
- "type": "number"
149
+ "type": "integer"
150
150
  },
151
151
  "fileCount": {
152
- "type": "number"
152
+ "type": "integer"
153
153
  },
154
154
  "flowCount": {
155
- "type": "number"
155
+ "type": "integer"
156
156
  },
157
157
  "integrationCount": {
158
- "type": "number"
158
+ "type": "integer"
159
159
  },
160
160
  "keyCount": {
161
- "type": "number"
161
+ "type": "integer"
162
162
  },
163
163
  "storageStats": {
164
164
  "type": "object",
165
165
  "properties": {
166
166
  "count": {
167
- "type": "number"
167
+ "type": "integer"
168
168
  },
169
169
  "size": {
170
- "type": "number"
170
+ "type": "integer"
171
171
  }
172
172
  }
173
173
  },
174
174
  "webhookCount": {
175
- "type": "number"
175
+ "type": "integer"
176
176
  }
177
177
  }
178
178
  },
@@ -210,7 +210,7 @@
210
210
  "properties": {
211
211
  "directory": {
212
212
  "type": "string",
213
- "max": 255
213
+ "maxLength": 255
214
214
  },
215
215
  "mode": {
216
216
  "type": "string",
@@ -280,21 +280,21 @@
280
280
  "properties": {
281
281
  "bucket": {
282
282
  "type": "string",
283
- "max": 255
283
+ "maxLength": 255
284
284
  },
285
285
  "accessKeyId": {
286
286
  "type": "string",
287
- "min": 4,
288
- "max": 128
287
+ "minLength": 4,
288
+ "maxLength": 128
289
289
  },
290
290
  "secretAccessKey": {
291
291
  "type": "string",
292
- "min": 4,
293
- "max": 128
292
+ "minLength": 4,
293
+ "maxLength": 128
294
294
  },
295
295
  "region": {
296
296
  "type": "string",
297
- "max": 128
297
+ "maxLength": 128
298
298
  }
299
299
  },
300
300
  "required": [
@@ -320,7 +320,7 @@
320
320
  },
321
321
  "bucket": {
322
322
  "type": "string",
323
- "max": 255
323
+ "maxLength": 255
324
324
  }
325
325
  },
326
326
  "required": [
@@ -335,17 +335,17 @@
335
335
  "properties": {
336
336
  "account": {
337
337
  "type": "string",
338
- "min": 3,
339
- "max": 24
338
+ "minLength": 3,
339
+ "maxLength": 24
340
340
  },
341
341
  "accountKey": {
342
342
  "type": "string",
343
- "max": 255
343
+ "maxLength": 255
344
344
  },
345
345
  "bucket": {
346
346
  "type": "string",
347
- "min": 3,
348
- "max": 63
347
+ "minLength": 3,
348
+ "maxLength": 63
349
349
  }
350
350
  },
351
351
  "required": [