losant_rest 1.2.0 → 1.2.1
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/README.md +10 -0
- data/docs/_schemas.md +906 -89
- data/docs/flows.md +1 -1
- data/docs/integration.md +130 -0
- data/docs/integrations.md +91 -0
- data/lib/losant_rest.rb +2 -0
- data/lib/losant_rest/client.rb +10 -2
- data/lib/losant_rest/flows.rb +1 -1
- data/lib/losant_rest/integration.rb +174 -0
- data/lib/losant_rest/integrations.rb +136 -0
- data/lib/losant_rest/version.rb +1 -1
- data/schemas/application.json +3 -0
- data/schemas/applicationApiTokenPost.json +8 -1
- data/schemas/applications.json +3 -0
- data/schemas/auditLog.json +1 -0
- data/schemas/auditLogFilter.json +1 -0
- data/schemas/auditLogs.json +1 -0
- data/schemas/flow.json +8 -7
- data/schemas/flowPatch.json +8 -7
- data/schemas/flowPost.json +8 -7
- data/schemas/flows.json +8 -7
- data/schemas/integration.json +169 -0
- data/schemas/integrationPatch.json +113 -0
- data/schemas/integrationPost.json +117 -0
- data/schemas/integrations.json +211 -0
- data/schemas/me.json +18 -0
- data/schemas/mePatch.json +4 -0
- data/schemas/org.json +14 -0
- data/schemas/orgs.json +14 -0
- data/schemas/payloadCounts.json +8 -0
- metadata +10 -2
data/schemas/mePatch.json
CHANGED
data/schemas/org.json
CHANGED
@@ -103,6 +103,9 @@
|
|
103
103
|
"solution": {
|
104
104
|
"type": "number"
|
105
105
|
},
|
106
|
+
"integration": {
|
107
|
+
"type": "number"
|
108
|
+
},
|
106
109
|
"webhook": {
|
107
110
|
"type": "number"
|
108
111
|
},
|
@@ -247,12 +250,23 @@
|
|
247
250
|
"type": "number"
|
248
251
|
}
|
249
252
|
}
|
253
|
+
},
|
254
|
+
"integration": {
|
255
|
+
"type": "object",
|
256
|
+
"patternProperties": {
|
257
|
+
".*": {
|
258
|
+
"type": "number"
|
259
|
+
}
|
260
|
+
}
|
250
261
|
}
|
251
262
|
}
|
252
263
|
},
|
253
264
|
"solutionCount": {
|
254
265
|
"type": "number"
|
255
266
|
},
|
267
|
+
"integrationCount": {
|
268
|
+
"type": "number"
|
269
|
+
},
|
256
270
|
"webhookCount": {
|
257
271
|
"type": "number"
|
258
272
|
}
|
data/schemas/orgs.json
CHANGED
@@ -110,6 +110,9 @@
|
|
110
110
|
"solution": {
|
111
111
|
"type": "number"
|
112
112
|
},
|
113
|
+
"integration": {
|
114
|
+
"type": "number"
|
115
|
+
},
|
113
116
|
"webhook": {
|
114
117
|
"type": "number"
|
115
118
|
},
|
@@ -254,12 +257,23 @@
|
|
254
257
|
"type": "number"
|
255
258
|
}
|
256
259
|
}
|
260
|
+
},
|
261
|
+
"integration": {
|
262
|
+
"type": "object",
|
263
|
+
"patternProperties": {
|
264
|
+
".*": {
|
265
|
+
"type": "number"
|
266
|
+
}
|
267
|
+
}
|
257
268
|
}
|
258
269
|
}
|
259
270
|
},
|
260
271
|
"solutionCount": {
|
261
272
|
"type": "number"
|
262
273
|
},
|
274
|
+
"integrationCount": {
|
275
|
+
"type": "number"
|
276
|
+
},
|
263
277
|
"webhookCount": {
|
264
278
|
"type": "number"
|
265
279
|
}
|
data/schemas/payloadCounts.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.2.
|
4
|
+
version: 1.2.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: 2017-04-
|
11
|
+
date: 2017-04-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|
@@ -107,6 +107,8 @@ files:
|
|
107
107
|
- docs/experienceUsers.md
|
108
108
|
- docs/flow.md
|
109
109
|
- docs/flows.md
|
110
|
+
- docs/integration.md
|
111
|
+
- docs/integrations.md
|
110
112
|
- docs/me.md
|
111
113
|
- docs/org.md
|
112
114
|
- docs/orgInvites.md
|
@@ -148,6 +150,8 @@ files:
|
|
148
150
|
- lib/losant_rest/experience_users.rb
|
149
151
|
- lib/losant_rest/flow.rb
|
150
152
|
- lib/losant_rest/flows.rb
|
153
|
+
- lib/losant_rest/integration.rb
|
154
|
+
- lib/losant_rest/integrations.rb
|
151
155
|
- lib/losant_rest/me.rb
|
152
156
|
- lib/losant_rest/org.rb
|
153
157
|
- lib/losant_rest/org_invites.rb
|
@@ -230,6 +234,10 @@ files:
|
|
230
234
|
- schemas/flowTriggerFilter.json
|
231
235
|
- schemas/flows.json
|
232
236
|
- schemas/githubLogin.json
|
237
|
+
- schemas/integration.json
|
238
|
+
- schemas/integrationPatch.json
|
239
|
+
- schemas/integrationPost.json
|
240
|
+
- schemas/integrations.json
|
233
241
|
- schemas/lastValueData.json
|
234
242
|
- schemas/lastValueQuery.json
|
235
243
|
- schemas/me.json
|