@lessly/sdk-app 52.2.0 → 53.0.0

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.
package/dist/index.cjs CHANGED
@@ -209,6 +209,110 @@ var bindings = {
209
209
  "readOnly": true
210
210
  }
211
211
  },
212
+ "dashboard": {
213
+ "create": {
214
+ "method": "POST",
215
+ "params": [
216
+ {
217
+ "in": "body",
218
+ "name": "slug"
219
+ },
220
+ {
221
+ "in": "body",
222
+ "name": "name"
223
+ },
224
+ {
225
+ "in": "body",
226
+ "name": "tiles"
227
+ },
228
+ {
229
+ "in": "body",
230
+ "name": "tags"
231
+ }
232
+ ],
233
+ "path": "/analytics/dashboards",
234
+ "readOnly": false
235
+ },
236
+ "delete": {
237
+ "method": "DELETE",
238
+ "params": [
239
+ {
240
+ "in": "path",
241
+ "name": "id"
242
+ }
243
+ ],
244
+ "path": "/analytics/dashboards/:id",
245
+ "readOnly": false
246
+ },
247
+ "get": {
248
+ "method": "GET",
249
+ "params": [
250
+ {
251
+ "in": "path",
252
+ "name": "idOrSlug"
253
+ }
254
+ ],
255
+ "path": "/analytics/dashboards/:idOrSlug",
256
+ "readOnly": true
257
+ },
258
+ "list": {
259
+ "method": "GET",
260
+ "params": [
261
+ {
262
+ "in": "query",
263
+ "name": "tag"
264
+ },
265
+ {
266
+ "in": "query",
267
+ "name": "q"
268
+ }
269
+ ],
270
+ "path": "/analytics/dashboards",
271
+ "readOnly": true
272
+ },
273
+ "run": {
274
+ "method": "POST",
275
+ "params": [
276
+ {
277
+ "in": "body",
278
+ "name": "from"
279
+ },
280
+ {
281
+ "in": "body",
282
+ "name": "to"
283
+ },
284
+ {
285
+ "in": "path",
286
+ "name": "idOrSlug"
287
+ }
288
+ ],
289
+ "path": "/analytics/dashboards/:idOrSlug/run",
290
+ "readOnly": true
291
+ },
292
+ "update": {
293
+ "method": "PATCH",
294
+ "params": [
295
+ {
296
+ "in": "body",
297
+ "name": "name"
298
+ },
299
+ {
300
+ "in": "body",
301
+ "name": "tiles"
302
+ },
303
+ {
304
+ "in": "body",
305
+ "name": "tags"
306
+ },
307
+ {
308
+ "in": "path",
309
+ "name": "id"
310
+ }
311
+ ],
312
+ "path": "/analytics/dashboards/:id",
313
+ "readOnly": false
314
+ }
315
+ },
212
316
  "funnel": {
213
317
  "run": {
214
318
  "method": "POST",