@looker/sdk 23.20.1 → 24.2.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/CHANGELOG.md +133 -188
- package/README.md +11 -8
- package/lib/4.0/funcs.d.ts +435 -435
- package/lib/4.0/funcs.js +609 -1041
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +9 -9
- package/lib/4.0/methods.js +8 -7
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +9 -9
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +17 -55
- package/lib/4.0/models.js +23 -44
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +9 -9
- package/lib/4.0/streams.js +8 -7
- package/lib/4.0/streams.js.map +1 -1
- package/lib/browserSdk.js.map +1 -1
- package/lib/constants.d.ts +1 -1
- package/lib/constants.js +2 -4
- package/lib/constants.js.map +1 -1
- package/lib/esm/4.0/funcs.js +176 -175
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +8 -7
- package/lib/esm/4.0/methods.js.map +1 -1
- package/lib/esm/4.0/methodsInterface.js.map +1 -1
- package/lib/esm/4.0/models.js +1 -0
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js +8 -7
- package/lib/esm/4.0/streams.js.map +1 -1
- package/lib/esm/browserSdk.js +1 -1
- package/lib/esm/browserSdk.js.map +1 -1
- package/lib/esm/constants.js +1 -1
- package/lib/esm/constants.js.map +1 -1
- package/lib/esm/extensionSdk.js.map +1 -1
- package/lib/esm/index.js.map +1 -1
- package/lib/extensionSdk.d.ts +1 -1
- package/lib/extensionSdk.js.map +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +5 -5
package/lib/4.0/funcs.js
CHANGED
|
@@ -16,7 +16,7 @@ var functionalSdk40 = authSession => {
|
|
|
16
16
|
return (0, _sdkRtl.functionalSdk)(authSession, '4.0', _constants.sdkVersion);
|
|
17
17
|
};
|
|
18
18
|
exports.functionalSdk40 = functionalSdk40;
|
|
19
|
-
var follow_alert = function () {
|
|
19
|
+
var follow_alert = exports.follow_alert = function () {
|
|
20
20
|
var _ref = _asyncToGenerator(function* (sdk, alert_id, options) {
|
|
21
21
|
alert_id = (0, _sdkRtl.encodeParam)(alert_id);
|
|
22
22
|
return sdk.post("/alerts/".concat(alert_id, "/follow"), null, null, options);
|
|
@@ -25,8 +25,7 @@ var follow_alert = function () {
|
|
|
25
25
|
return _ref.apply(this, arguments);
|
|
26
26
|
};
|
|
27
27
|
}();
|
|
28
|
-
exports.
|
|
29
|
-
var unfollow_alert = function () {
|
|
28
|
+
var unfollow_alert = exports.unfollow_alert = function () {
|
|
30
29
|
var _ref2 = _asyncToGenerator(function* (sdk, alert_id, options) {
|
|
31
30
|
alert_id = (0, _sdkRtl.encodeParam)(alert_id);
|
|
32
31
|
return sdk.delete("/alerts/".concat(alert_id, "/follow"), null, null, options);
|
|
@@ -35,8 +34,7 @@ var unfollow_alert = function () {
|
|
|
35
34
|
return _ref2.apply(this, arguments);
|
|
36
35
|
};
|
|
37
36
|
}();
|
|
38
|
-
exports.
|
|
39
|
-
var search_alerts = function () {
|
|
37
|
+
var search_alerts = exports.search_alerts = function () {
|
|
40
38
|
var _ref3 = _asyncToGenerator(function* (sdk, request, options) {
|
|
41
39
|
return sdk.get('/alerts/search', {
|
|
42
40
|
limit: request.limit,
|
|
@@ -55,8 +53,7 @@ var search_alerts = function () {
|
|
|
55
53
|
return _ref3.apply(this, arguments);
|
|
56
54
|
};
|
|
57
55
|
}();
|
|
58
|
-
exports.
|
|
59
|
-
var get_alert = function () {
|
|
56
|
+
var get_alert = exports.get_alert = function () {
|
|
60
57
|
var _ref4 = _asyncToGenerator(function* (sdk, alert_id, options) {
|
|
61
58
|
alert_id = (0, _sdkRtl.encodeParam)(alert_id);
|
|
62
59
|
return sdk.get("/alerts/".concat(alert_id), null, null, options);
|
|
@@ -65,8 +62,7 @@ var get_alert = function () {
|
|
|
65
62
|
return _ref4.apply(this, arguments);
|
|
66
63
|
};
|
|
67
64
|
}();
|
|
68
|
-
exports.
|
|
69
|
-
var update_alert = function () {
|
|
65
|
+
var update_alert = exports.update_alert = function () {
|
|
70
66
|
var _ref5 = _asyncToGenerator(function* (sdk, alert_id, body, options) {
|
|
71
67
|
alert_id = (0, _sdkRtl.encodeParam)(alert_id);
|
|
72
68
|
return sdk.put("/alerts/".concat(alert_id), null, body, options);
|
|
@@ -75,8 +71,7 @@ var update_alert = function () {
|
|
|
75
71
|
return _ref5.apply(this, arguments);
|
|
76
72
|
};
|
|
77
73
|
}();
|
|
78
|
-
exports.
|
|
79
|
-
var update_alert_field = function () {
|
|
74
|
+
var update_alert_field = exports.update_alert_field = function () {
|
|
80
75
|
var _ref6 = _asyncToGenerator(function* (sdk, alert_id, body, options) {
|
|
81
76
|
alert_id = (0, _sdkRtl.encodeParam)(alert_id);
|
|
82
77
|
return sdk.patch("/alerts/".concat(alert_id), null, body, options);
|
|
@@ -85,8 +80,7 @@ var update_alert_field = function () {
|
|
|
85
80
|
return _ref6.apply(this, arguments);
|
|
86
81
|
};
|
|
87
82
|
}();
|
|
88
|
-
exports.
|
|
89
|
-
var delete_alert = function () {
|
|
83
|
+
var delete_alert = exports.delete_alert = function () {
|
|
90
84
|
var _ref7 = _asyncToGenerator(function* (sdk, alert_id, options) {
|
|
91
85
|
alert_id = (0, _sdkRtl.encodeParam)(alert_id);
|
|
92
86
|
return sdk.delete("/alerts/".concat(alert_id), null, null, options);
|
|
@@ -95,8 +89,7 @@ var delete_alert = function () {
|
|
|
95
89
|
return _ref7.apply(this, arguments);
|
|
96
90
|
};
|
|
97
91
|
}();
|
|
98
|
-
exports.
|
|
99
|
-
var create_alert = function () {
|
|
92
|
+
var create_alert = exports.create_alert = function () {
|
|
100
93
|
var _ref8 = _asyncToGenerator(function* (sdk, body, options) {
|
|
101
94
|
return sdk.post('/alerts', null, body, options);
|
|
102
95
|
});
|
|
@@ -104,8 +97,7 @@ var create_alert = function () {
|
|
|
104
97
|
return _ref8.apply(this, arguments);
|
|
105
98
|
};
|
|
106
99
|
}();
|
|
107
|
-
exports.
|
|
108
|
-
var enqueue_alert = function () {
|
|
100
|
+
var enqueue_alert = exports.enqueue_alert = function () {
|
|
109
101
|
var _ref9 = _asyncToGenerator(function* (sdk, alert_id, force, options) {
|
|
110
102
|
alert_id = (0, _sdkRtl.encodeParam)(alert_id);
|
|
111
103
|
return sdk.post("/alerts/".concat(alert_id, "/enqueue"), {
|
|
@@ -116,8 +108,7 @@ var enqueue_alert = function () {
|
|
|
116
108
|
return _ref9.apply(this, arguments);
|
|
117
109
|
};
|
|
118
110
|
}();
|
|
119
|
-
exports.
|
|
120
|
-
var alert_notifications = function () {
|
|
111
|
+
var alert_notifications = exports.alert_notifications = function () {
|
|
121
112
|
var _ref10 = _asyncToGenerator(function* (sdk, request, options) {
|
|
122
113
|
return sdk.get('/alert_notifications', {
|
|
123
114
|
limit: request.limit,
|
|
@@ -128,8 +119,7 @@ var alert_notifications = function () {
|
|
|
128
119
|
return _ref10.apply(this, arguments);
|
|
129
120
|
};
|
|
130
121
|
}();
|
|
131
|
-
exports.
|
|
132
|
-
var read_alert_notification = function () {
|
|
122
|
+
var read_alert_notification = exports.read_alert_notification = function () {
|
|
133
123
|
var _ref11 = _asyncToGenerator(function* (sdk, alert_notification_id, options) {
|
|
134
124
|
alert_notification_id = (0, _sdkRtl.encodeParam)(alert_notification_id);
|
|
135
125
|
return sdk.patch("/alert_notifications/".concat(alert_notification_id), null, null, options);
|
|
@@ -138,8 +128,7 @@ var read_alert_notification = function () {
|
|
|
138
128
|
return _ref11.apply(this, arguments);
|
|
139
129
|
};
|
|
140
130
|
}();
|
|
141
|
-
exports.
|
|
142
|
-
var login = function () {
|
|
131
|
+
var login = exports.login = function () {
|
|
143
132
|
var _ref12 = _asyncToGenerator(function* (sdk, request, options) {
|
|
144
133
|
return sdk.post('/login', {
|
|
145
134
|
client_id: request.client_id,
|
|
@@ -150,8 +139,7 @@ var login = function () {
|
|
|
150
139
|
return _ref12.apply(this, arguments);
|
|
151
140
|
};
|
|
152
141
|
}();
|
|
153
|
-
exports.
|
|
154
|
-
var login_user = function () {
|
|
142
|
+
var login_user = exports.login_user = function () {
|
|
155
143
|
var _ref13 = _asyncToGenerator(function* (sdk, user_id, associative, options) {
|
|
156
144
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
157
145
|
return sdk.post("/login/".concat(user_id), {
|
|
@@ -162,8 +150,7 @@ var login_user = function () {
|
|
|
162
150
|
return _ref13.apply(this, arguments);
|
|
163
151
|
};
|
|
164
152
|
}();
|
|
165
|
-
exports.
|
|
166
|
-
var logout = function () {
|
|
153
|
+
var logout = exports.logout = function () {
|
|
167
154
|
var _ref14 = _asyncToGenerator(function* (sdk, options) {
|
|
168
155
|
return sdk.delete('/logout', null, null, options);
|
|
169
156
|
});
|
|
@@ -171,8 +158,7 @@ var logout = function () {
|
|
|
171
158
|
return _ref14.apply(this, arguments);
|
|
172
159
|
};
|
|
173
160
|
}();
|
|
174
|
-
exports.
|
|
175
|
-
var artifact_usage = function () {
|
|
161
|
+
var artifact_usage = exports.artifact_usage = function () {
|
|
176
162
|
var _ref15 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
177
163
|
return sdk.get('/artifact/usage', {
|
|
178
164
|
fields
|
|
@@ -182,8 +168,7 @@ var artifact_usage = function () {
|
|
|
182
168
|
return _ref15.apply(this, arguments);
|
|
183
169
|
};
|
|
184
170
|
}();
|
|
185
|
-
exports.
|
|
186
|
-
var artifact_namespaces = function () {
|
|
171
|
+
var artifact_namespaces = exports.artifact_namespaces = function () {
|
|
187
172
|
var _ref16 = _asyncToGenerator(function* (sdk, request, options) {
|
|
188
173
|
return sdk.get('/artifact/namespaces', {
|
|
189
174
|
fields: request.fields,
|
|
@@ -195,8 +180,7 @@ var artifact_namespaces = function () {
|
|
|
195
180
|
return _ref16.apply(this, arguments);
|
|
196
181
|
};
|
|
197
182
|
}();
|
|
198
|
-
exports.
|
|
199
|
-
var artifact_value = function () {
|
|
183
|
+
var artifact_value = exports.artifact_value = function () {
|
|
200
184
|
var _ref17 = _asyncToGenerator(function* (sdk, namespace, key, options) {
|
|
201
185
|
namespace = (0, _sdkRtl.encodeParam)(namespace);
|
|
202
186
|
return sdk.get("/artifact/".concat(namespace, "/value"), {
|
|
@@ -207,8 +191,7 @@ var artifact_value = function () {
|
|
|
207
191
|
return _ref17.apply(this, arguments);
|
|
208
192
|
};
|
|
209
193
|
}();
|
|
210
|
-
exports.
|
|
211
|
-
var purge_artifacts = function () {
|
|
194
|
+
var purge_artifacts = exports.purge_artifacts = function () {
|
|
212
195
|
var _ref18 = _asyncToGenerator(function* (sdk, namespace, options) {
|
|
213
196
|
namespace = (0, _sdkRtl.encodeParam)(namespace);
|
|
214
197
|
return sdk.delete("/artifact/".concat(namespace, "/purge"), null, null, options);
|
|
@@ -217,8 +200,7 @@ var purge_artifacts = function () {
|
|
|
217
200
|
return _ref18.apply(this, arguments);
|
|
218
201
|
};
|
|
219
202
|
}();
|
|
220
|
-
exports.
|
|
221
|
-
var search_artifacts = function () {
|
|
203
|
+
var search_artifacts = exports.search_artifacts = function () {
|
|
222
204
|
var _ref19 = _asyncToGenerator(function* (sdk, request, options) {
|
|
223
205
|
request.namespace = (0, _sdkRtl.encodeParam)(request.namespace);
|
|
224
206
|
return sdk.get("/artifact/".concat(request.namespace, "/search"), {
|
|
@@ -235,8 +217,7 @@ var search_artifacts = function () {
|
|
|
235
217
|
return _ref19.apply(this, arguments);
|
|
236
218
|
};
|
|
237
219
|
}();
|
|
238
|
-
exports.
|
|
239
|
-
var artifact = function () {
|
|
220
|
+
var artifact = exports.artifact = function () {
|
|
240
221
|
var _ref20 = _asyncToGenerator(function* (sdk, request, options) {
|
|
241
222
|
request.namespace = (0, _sdkRtl.encodeParam)(request.namespace);
|
|
242
223
|
return sdk.get("/artifact/".concat(request.namespace), {
|
|
@@ -250,8 +231,7 @@ var artifact = function () {
|
|
|
250
231
|
return _ref20.apply(this, arguments);
|
|
251
232
|
};
|
|
252
233
|
}();
|
|
253
|
-
exports.
|
|
254
|
-
var delete_artifact = function () {
|
|
234
|
+
var delete_artifact = exports.delete_artifact = function () {
|
|
255
235
|
var _ref21 = _asyncToGenerator(function* (sdk, namespace, key, options) {
|
|
256
236
|
namespace = (0, _sdkRtl.encodeParam)(namespace);
|
|
257
237
|
return sdk.delete("/artifact/".concat(namespace), {
|
|
@@ -262,8 +242,7 @@ var delete_artifact = function () {
|
|
|
262
242
|
return _ref21.apply(this, arguments);
|
|
263
243
|
};
|
|
264
244
|
}();
|
|
265
|
-
exports.
|
|
266
|
-
var update_artifacts = function () {
|
|
245
|
+
var update_artifacts = exports.update_artifacts = function () {
|
|
267
246
|
var _ref22 = _asyncToGenerator(function* (sdk, namespace, body, fields, options) {
|
|
268
247
|
namespace = (0, _sdkRtl.encodeParam)(namespace);
|
|
269
248
|
return sdk.put("/artifacts/".concat(namespace), {
|
|
@@ -274,8 +253,7 @@ var update_artifacts = function () {
|
|
|
274
253
|
return _ref22.apply(this, arguments);
|
|
275
254
|
};
|
|
276
255
|
}();
|
|
277
|
-
exports.
|
|
278
|
-
var create_embed_secret = function () {
|
|
256
|
+
var create_embed_secret = exports.create_embed_secret = function () {
|
|
279
257
|
var _ref23 = _asyncToGenerator(function* (sdk, body, options) {
|
|
280
258
|
return sdk.post('/embed_config/secrets', null, body, options);
|
|
281
259
|
});
|
|
@@ -283,8 +261,7 @@ var create_embed_secret = function () {
|
|
|
283
261
|
return _ref23.apply(this, arguments);
|
|
284
262
|
};
|
|
285
263
|
}();
|
|
286
|
-
exports.
|
|
287
|
-
var delete_embed_secret = function () {
|
|
264
|
+
var delete_embed_secret = exports.delete_embed_secret = function () {
|
|
288
265
|
var _ref24 = _asyncToGenerator(function* (sdk, embed_secret_id, options) {
|
|
289
266
|
embed_secret_id = (0, _sdkRtl.encodeParam)(embed_secret_id);
|
|
290
267
|
return sdk.delete("/embed_config/secrets/".concat(embed_secret_id), null, null, options);
|
|
@@ -293,8 +270,7 @@ var delete_embed_secret = function () {
|
|
|
293
270
|
return _ref24.apply(this, arguments);
|
|
294
271
|
};
|
|
295
272
|
}();
|
|
296
|
-
exports.
|
|
297
|
-
var create_sso_embed_url = function () {
|
|
273
|
+
var create_sso_embed_url = exports.create_sso_embed_url = function () {
|
|
298
274
|
var _ref25 = _asyncToGenerator(function* (sdk, body, options) {
|
|
299
275
|
return sdk.post('/embed/sso_url', null, body, options);
|
|
300
276
|
});
|
|
@@ -302,8 +278,7 @@ var create_sso_embed_url = function () {
|
|
|
302
278
|
return _ref25.apply(this, arguments);
|
|
303
279
|
};
|
|
304
280
|
}();
|
|
305
|
-
exports.
|
|
306
|
-
var create_embed_url_as_me = function () {
|
|
281
|
+
var create_embed_url_as_me = exports.create_embed_url_as_me = function () {
|
|
307
282
|
var _ref26 = _asyncToGenerator(function* (sdk, body, options) {
|
|
308
283
|
return sdk.post('/embed/token_url/me', null, body, options);
|
|
309
284
|
});
|
|
@@ -311,8 +286,7 @@ var create_embed_url_as_me = function () {
|
|
|
311
286
|
return _ref26.apply(this, arguments);
|
|
312
287
|
};
|
|
313
288
|
}();
|
|
314
|
-
exports.
|
|
315
|
-
var validate_embed_url = function () {
|
|
289
|
+
var validate_embed_url = exports.validate_embed_url = function () {
|
|
316
290
|
var _ref27 = _asyncToGenerator(function* (sdk, url, options) {
|
|
317
291
|
return sdk.get('/embed/sso/validate', {
|
|
318
292
|
url
|
|
@@ -322,8 +296,7 @@ var validate_embed_url = function () {
|
|
|
322
296
|
return _ref27.apply(this, arguments);
|
|
323
297
|
};
|
|
324
298
|
}();
|
|
325
|
-
exports.
|
|
326
|
-
var acquire_embed_cookieless_session = function () {
|
|
299
|
+
var acquire_embed_cookieless_session = exports.acquire_embed_cookieless_session = function () {
|
|
327
300
|
var _ref28 = _asyncToGenerator(function* (sdk, body, options) {
|
|
328
301
|
return sdk.post('/embed/cookieless_session/acquire', null, body, options);
|
|
329
302
|
});
|
|
@@ -331,8 +304,7 @@ var acquire_embed_cookieless_session = function () {
|
|
|
331
304
|
return _ref28.apply(this, arguments);
|
|
332
305
|
};
|
|
333
306
|
}();
|
|
334
|
-
exports.
|
|
335
|
-
var delete_embed_cookieless_session = function () {
|
|
307
|
+
var delete_embed_cookieless_session = exports.delete_embed_cookieless_session = function () {
|
|
336
308
|
var _ref29 = _asyncToGenerator(function* (sdk, session_reference_token, options) {
|
|
337
309
|
session_reference_token = (0, _sdkRtl.encodeParam)(session_reference_token);
|
|
338
310
|
return sdk.delete("/embed/cookieless_session/".concat(session_reference_token), null, null, options);
|
|
@@ -341,8 +313,7 @@ var delete_embed_cookieless_session = function () {
|
|
|
341
313
|
return _ref29.apply(this, arguments);
|
|
342
314
|
};
|
|
343
315
|
}();
|
|
344
|
-
exports.
|
|
345
|
-
var generate_tokens_for_cookieless_session = function () {
|
|
316
|
+
var generate_tokens_for_cookieless_session = exports.generate_tokens_for_cookieless_session = function () {
|
|
346
317
|
var _ref30 = _asyncToGenerator(function* (sdk, body, options) {
|
|
347
318
|
return sdk.put('/embed/cookieless_session/generate_tokens', null, body, options);
|
|
348
319
|
});
|
|
@@ -350,8 +321,7 @@ var generate_tokens_for_cookieless_session = function () {
|
|
|
350
321
|
return _ref30.apply(this, arguments);
|
|
351
322
|
};
|
|
352
323
|
}();
|
|
353
|
-
exports.
|
|
354
|
-
var ldap_config = function () {
|
|
324
|
+
var ldap_config = exports.ldap_config = function () {
|
|
355
325
|
var _ref31 = _asyncToGenerator(function* (sdk, options) {
|
|
356
326
|
return sdk.get('/ldap_config', null, null, options);
|
|
357
327
|
});
|
|
@@ -359,8 +329,7 @@ var ldap_config = function () {
|
|
|
359
329
|
return _ref31.apply(this, arguments);
|
|
360
330
|
};
|
|
361
331
|
}();
|
|
362
|
-
exports.
|
|
363
|
-
var update_ldap_config = function () {
|
|
332
|
+
var update_ldap_config = exports.update_ldap_config = function () {
|
|
364
333
|
var _ref32 = _asyncToGenerator(function* (sdk, body, options) {
|
|
365
334
|
return sdk.patch('/ldap_config', null, body, options);
|
|
366
335
|
});
|
|
@@ -368,8 +337,7 @@ var update_ldap_config = function () {
|
|
|
368
337
|
return _ref32.apply(this, arguments);
|
|
369
338
|
};
|
|
370
339
|
}();
|
|
371
|
-
exports.
|
|
372
|
-
var test_ldap_config_connection = function () {
|
|
340
|
+
var test_ldap_config_connection = exports.test_ldap_config_connection = function () {
|
|
373
341
|
var _ref33 = _asyncToGenerator(function* (sdk, body, options) {
|
|
374
342
|
return sdk.put('/ldap_config/test_connection', null, body, options);
|
|
375
343
|
});
|
|
@@ -377,8 +345,7 @@ var test_ldap_config_connection = function () {
|
|
|
377
345
|
return _ref33.apply(this, arguments);
|
|
378
346
|
};
|
|
379
347
|
}();
|
|
380
|
-
exports.
|
|
381
|
-
var test_ldap_config_auth = function () {
|
|
348
|
+
var test_ldap_config_auth = exports.test_ldap_config_auth = function () {
|
|
382
349
|
var _ref34 = _asyncToGenerator(function* (sdk, body, options) {
|
|
383
350
|
return sdk.put('/ldap_config/test_auth', null, body, options);
|
|
384
351
|
});
|
|
@@ -386,8 +353,7 @@ var test_ldap_config_auth = function () {
|
|
|
386
353
|
return _ref34.apply(this, arguments);
|
|
387
354
|
};
|
|
388
355
|
}();
|
|
389
|
-
exports.
|
|
390
|
-
var test_ldap_config_user_info = function () {
|
|
356
|
+
var test_ldap_config_user_info = exports.test_ldap_config_user_info = function () {
|
|
391
357
|
var _ref35 = _asyncToGenerator(function* (sdk, body, options) {
|
|
392
358
|
return sdk.put('/ldap_config/test_user_info', null, body, options);
|
|
393
359
|
});
|
|
@@ -395,8 +361,7 @@ var test_ldap_config_user_info = function () {
|
|
|
395
361
|
return _ref35.apply(this, arguments);
|
|
396
362
|
};
|
|
397
363
|
}();
|
|
398
|
-
exports.
|
|
399
|
-
var test_ldap_config_user_auth = function () {
|
|
364
|
+
var test_ldap_config_user_auth = exports.test_ldap_config_user_auth = function () {
|
|
400
365
|
var _ref36 = _asyncToGenerator(function* (sdk, body, options) {
|
|
401
366
|
return sdk.put('/ldap_config/test_user_auth', null, body, options);
|
|
402
367
|
});
|
|
@@ -404,8 +369,7 @@ var test_ldap_config_user_auth = function () {
|
|
|
404
369
|
return _ref36.apply(this, arguments);
|
|
405
370
|
};
|
|
406
371
|
}();
|
|
407
|
-
exports.
|
|
408
|
-
var register_mobile_device = function () {
|
|
372
|
+
var register_mobile_device = exports.register_mobile_device = function () {
|
|
409
373
|
var _ref37 = _asyncToGenerator(function* (sdk, body, options) {
|
|
410
374
|
return sdk.post('/mobile/device', null, body, options);
|
|
411
375
|
});
|
|
@@ -413,8 +377,7 @@ var register_mobile_device = function () {
|
|
|
413
377
|
return _ref37.apply(this, arguments);
|
|
414
378
|
};
|
|
415
379
|
}();
|
|
416
|
-
exports.
|
|
417
|
-
var update_mobile_device_registration = function () {
|
|
380
|
+
var update_mobile_device_registration = exports.update_mobile_device_registration = function () {
|
|
418
381
|
var _ref38 = _asyncToGenerator(function* (sdk, device_id, options) {
|
|
419
382
|
device_id = (0, _sdkRtl.encodeParam)(device_id);
|
|
420
383
|
return sdk.patch("/mobile/device/".concat(device_id), null, null, options);
|
|
@@ -423,8 +386,7 @@ var update_mobile_device_registration = function () {
|
|
|
423
386
|
return _ref38.apply(this, arguments);
|
|
424
387
|
};
|
|
425
388
|
}();
|
|
426
|
-
exports.
|
|
427
|
-
var deregister_mobile_device = function () {
|
|
389
|
+
var deregister_mobile_device = exports.deregister_mobile_device = function () {
|
|
428
390
|
var _ref39 = _asyncToGenerator(function* (sdk, device_id, options) {
|
|
429
391
|
device_id = (0, _sdkRtl.encodeParam)(device_id);
|
|
430
392
|
return sdk.delete("/mobile/device/".concat(device_id), null, null, options);
|
|
@@ -433,8 +395,7 @@ var deregister_mobile_device = function () {
|
|
|
433
395
|
return _ref39.apply(this, arguments);
|
|
434
396
|
};
|
|
435
397
|
}();
|
|
436
|
-
exports.
|
|
437
|
-
var all_oauth_client_apps = function () {
|
|
398
|
+
var all_oauth_client_apps = exports.all_oauth_client_apps = function () {
|
|
438
399
|
var _ref40 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
439
400
|
return sdk.get('/oauth_client_apps', {
|
|
440
401
|
fields
|
|
@@ -444,8 +405,7 @@ var all_oauth_client_apps = function () {
|
|
|
444
405
|
return _ref40.apply(this, arguments);
|
|
445
406
|
};
|
|
446
407
|
}();
|
|
447
|
-
exports.
|
|
448
|
-
var oauth_client_app = function () {
|
|
408
|
+
var oauth_client_app = exports.oauth_client_app = function () {
|
|
449
409
|
var _ref41 = _asyncToGenerator(function* (sdk, client_guid, fields, options) {
|
|
450
410
|
client_guid = (0, _sdkRtl.encodeParam)(client_guid);
|
|
451
411
|
return sdk.get("/oauth_client_apps/".concat(client_guid), {
|
|
@@ -456,8 +416,7 @@ var oauth_client_app = function () {
|
|
|
456
416
|
return _ref41.apply(this, arguments);
|
|
457
417
|
};
|
|
458
418
|
}();
|
|
459
|
-
exports.
|
|
460
|
-
var register_oauth_client_app = function () {
|
|
419
|
+
var register_oauth_client_app = exports.register_oauth_client_app = function () {
|
|
461
420
|
var _ref42 = _asyncToGenerator(function* (sdk, client_guid, body, fields, options) {
|
|
462
421
|
client_guid = (0, _sdkRtl.encodeParam)(client_guid);
|
|
463
422
|
return sdk.post("/oauth_client_apps/".concat(client_guid), {
|
|
@@ -468,8 +427,7 @@ var register_oauth_client_app = function () {
|
|
|
468
427
|
return _ref42.apply(this, arguments);
|
|
469
428
|
};
|
|
470
429
|
}();
|
|
471
|
-
exports.
|
|
472
|
-
var update_oauth_client_app = function () {
|
|
430
|
+
var update_oauth_client_app = exports.update_oauth_client_app = function () {
|
|
473
431
|
var _ref43 = _asyncToGenerator(function* (sdk, client_guid, body, fields, options) {
|
|
474
432
|
client_guid = (0, _sdkRtl.encodeParam)(client_guid);
|
|
475
433
|
return sdk.patch("/oauth_client_apps/".concat(client_guid), {
|
|
@@ -480,8 +438,7 @@ var update_oauth_client_app = function () {
|
|
|
480
438
|
return _ref43.apply(this, arguments);
|
|
481
439
|
};
|
|
482
440
|
}();
|
|
483
|
-
exports.
|
|
484
|
-
var delete_oauth_client_app = function () {
|
|
441
|
+
var delete_oauth_client_app = exports.delete_oauth_client_app = function () {
|
|
485
442
|
var _ref44 = _asyncToGenerator(function* (sdk, client_guid, options) {
|
|
486
443
|
client_guid = (0, _sdkRtl.encodeParam)(client_guid);
|
|
487
444
|
return sdk.delete("/oauth_client_apps/".concat(client_guid), null, null, options);
|
|
@@ -490,8 +447,7 @@ var delete_oauth_client_app = function () {
|
|
|
490
447
|
return _ref44.apply(this, arguments);
|
|
491
448
|
};
|
|
492
449
|
}();
|
|
493
|
-
exports.
|
|
494
|
-
var invalidate_tokens = function () {
|
|
450
|
+
var invalidate_tokens = exports.invalidate_tokens = function () {
|
|
495
451
|
var _ref45 = _asyncToGenerator(function* (sdk, client_guid, options) {
|
|
496
452
|
client_guid = (0, _sdkRtl.encodeParam)(client_guid);
|
|
497
453
|
return sdk.delete("/oauth_client_apps/".concat(client_guid, "/tokens"), null, null, options);
|
|
@@ -500,8 +456,7 @@ var invalidate_tokens = function () {
|
|
|
500
456
|
return _ref45.apply(this, arguments);
|
|
501
457
|
};
|
|
502
458
|
}();
|
|
503
|
-
exports.
|
|
504
|
-
var activate_app_user = function () {
|
|
459
|
+
var activate_app_user = exports.activate_app_user = function () {
|
|
505
460
|
var _ref46 = _asyncToGenerator(function* (sdk, client_guid, user_id, fields, options) {
|
|
506
461
|
client_guid = (0, _sdkRtl.encodeParam)(client_guid);
|
|
507
462
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
@@ -513,8 +468,7 @@ var activate_app_user = function () {
|
|
|
513
468
|
return _ref46.apply(this, arguments);
|
|
514
469
|
};
|
|
515
470
|
}();
|
|
516
|
-
exports.
|
|
517
|
-
var deactivate_app_user = function () {
|
|
471
|
+
var deactivate_app_user = exports.deactivate_app_user = function () {
|
|
518
472
|
var _ref47 = _asyncToGenerator(function* (sdk, client_guid, user_id, fields, options) {
|
|
519
473
|
client_guid = (0, _sdkRtl.encodeParam)(client_guid);
|
|
520
474
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
@@ -526,8 +480,7 @@ var deactivate_app_user = function () {
|
|
|
526
480
|
return _ref47.apply(this, arguments);
|
|
527
481
|
};
|
|
528
482
|
}();
|
|
529
|
-
exports.
|
|
530
|
-
var oidc_config = function () {
|
|
483
|
+
var oidc_config = exports.oidc_config = function () {
|
|
531
484
|
var _ref48 = _asyncToGenerator(function* (sdk, options) {
|
|
532
485
|
return sdk.get('/oidc_config', null, null, options);
|
|
533
486
|
});
|
|
@@ -535,8 +488,7 @@ var oidc_config = function () {
|
|
|
535
488
|
return _ref48.apply(this, arguments);
|
|
536
489
|
};
|
|
537
490
|
}();
|
|
538
|
-
exports.
|
|
539
|
-
var update_oidc_config = function () {
|
|
491
|
+
var update_oidc_config = exports.update_oidc_config = function () {
|
|
540
492
|
var _ref49 = _asyncToGenerator(function* (sdk, body, options) {
|
|
541
493
|
return sdk.patch('/oidc_config', null, body, options);
|
|
542
494
|
});
|
|
@@ -544,8 +496,7 @@ var update_oidc_config = function () {
|
|
|
544
496
|
return _ref49.apply(this, arguments);
|
|
545
497
|
};
|
|
546
498
|
}();
|
|
547
|
-
exports.
|
|
548
|
-
var oidc_test_config = function () {
|
|
499
|
+
var oidc_test_config = exports.oidc_test_config = function () {
|
|
549
500
|
var _ref50 = _asyncToGenerator(function* (sdk, test_slug, options) {
|
|
550
501
|
test_slug = (0, _sdkRtl.encodeParam)(test_slug);
|
|
551
502
|
return sdk.get("/oidc_test_configs/".concat(test_slug), null, null, options);
|
|
@@ -554,8 +505,7 @@ var oidc_test_config = function () {
|
|
|
554
505
|
return _ref50.apply(this, arguments);
|
|
555
506
|
};
|
|
556
507
|
}();
|
|
557
|
-
exports.
|
|
558
|
-
var delete_oidc_test_config = function () {
|
|
508
|
+
var delete_oidc_test_config = exports.delete_oidc_test_config = function () {
|
|
559
509
|
var _ref51 = _asyncToGenerator(function* (sdk, test_slug, options) {
|
|
560
510
|
test_slug = (0, _sdkRtl.encodeParam)(test_slug);
|
|
561
511
|
return sdk.delete("/oidc_test_configs/".concat(test_slug), null, null, options);
|
|
@@ -564,8 +514,7 @@ var delete_oidc_test_config = function () {
|
|
|
564
514
|
return _ref51.apply(this, arguments);
|
|
565
515
|
};
|
|
566
516
|
}();
|
|
567
|
-
exports.
|
|
568
|
-
var create_oidc_test_config = function () {
|
|
517
|
+
var create_oidc_test_config = exports.create_oidc_test_config = function () {
|
|
569
518
|
var _ref52 = _asyncToGenerator(function* (sdk, body, options) {
|
|
570
519
|
return sdk.post('/oidc_test_configs', null, body, options);
|
|
571
520
|
});
|
|
@@ -573,8 +522,7 @@ var create_oidc_test_config = function () {
|
|
|
573
522
|
return _ref52.apply(this, arguments);
|
|
574
523
|
};
|
|
575
524
|
}();
|
|
576
|
-
exports.
|
|
577
|
-
var password_config = function () {
|
|
525
|
+
var password_config = exports.password_config = function () {
|
|
578
526
|
var _ref53 = _asyncToGenerator(function* (sdk, options) {
|
|
579
527
|
return sdk.get('/password_config', null, null, options);
|
|
580
528
|
});
|
|
@@ -582,8 +530,7 @@ var password_config = function () {
|
|
|
582
530
|
return _ref53.apply(this, arguments);
|
|
583
531
|
};
|
|
584
532
|
}();
|
|
585
|
-
exports.
|
|
586
|
-
var update_password_config = function () {
|
|
533
|
+
var update_password_config = exports.update_password_config = function () {
|
|
587
534
|
var _ref54 = _asyncToGenerator(function* (sdk, body, options) {
|
|
588
535
|
return sdk.patch('/password_config', null, body, options);
|
|
589
536
|
});
|
|
@@ -591,8 +538,7 @@ var update_password_config = function () {
|
|
|
591
538
|
return _ref54.apply(this, arguments);
|
|
592
539
|
};
|
|
593
540
|
}();
|
|
594
|
-
exports.
|
|
595
|
-
var force_password_reset_at_next_login_for_all_users = function () {
|
|
541
|
+
var force_password_reset_at_next_login_for_all_users = exports.force_password_reset_at_next_login_for_all_users = function () {
|
|
596
542
|
var _ref55 = _asyncToGenerator(function* (sdk, options) {
|
|
597
543
|
return sdk.put('/password_config/force_password_reset_at_next_login_for_all_users', null, null, options);
|
|
598
544
|
});
|
|
@@ -600,8 +546,7 @@ var force_password_reset_at_next_login_for_all_users = function () {
|
|
|
600
546
|
return _ref55.apply(this, arguments);
|
|
601
547
|
};
|
|
602
548
|
}();
|
|
603
|
-
exports.
|
|
604
|
-
var saml_config = function () {
|
|
549
|
+
var saml_config = exports.saml_config = function () {
|
|
605
550
|
var _ref56 = _asyncToGenerator(function* (sdk, options) {
|
|
606
551
|
return sdk.get('/saml_config', null, null, options);
|
|
607
552
|
});
|
|
@@ -609,8 +554,7 @@ var saml_config = function () {
|
|
|
609
554
|
return _ref56.apply(this, arguments);
|
|
610
555
|
};
|
|
611
556
|
}();
|
|
612
|
-
exports.
|
|
613
|
-
var update_saml_config = function () {
|
|
557
|
+
var update_saml_config = exports.update_saml_config = function () {
|
|
614
558
|
var _ref57 = _asyncToGenerator(function* (sdk, body, options) {
|
|
615
559
|
return sdk.patch('/saml_config', null, body, options);
|
|
616
560
|
});
|
|
@@ -618,8 +562,7 @@ var update_saml_config = function () {
|
|
|
618
562
|
return _ref57.apply(this, arguments);
|
|
619
563
|
};
|
|
620
564
|
}();
|
|
621
|
-
exports.
|
|
622
|
-
var saml_test_config = function () {
|
|
565
|
+
var saml_test_config = exports.saml_test_config = function () {
|
|
623
566
|
var _ref58 = _asyncToGenerator(function* (sdk, test_slug, options) {
|
|
624
567
|
test_slug = (0, _sdkRtl.encodeParam)(test_slug);
|
|
625
568
|
return sdk.get("/saml_test_configs/".concat(test_slug), null, null, options);
|
|
@@ -628,8 +571,7 @@ var saml_test_config = function () {
|
|
|
628
571
|
return _ref58.apply(this, arguments);
|
|
629
572
|
};
|
|
630
573
|
}();
|
|
631
|
-
exports.
|
|
632
|
-
var delete_saml_test_config = function () {
|
|
574
|
+
var delete_saml_test_config = exports.delete_saml_test_config = function () {
|
|
633
575
|
var _ref59 = _asyncToGenerator(function* (sdk, test_slug, options) {
|
|
634
576
|
test_slug = (0, _sdkRtl.encodeParam)(test_slug);
|
|
635
577
|
return sdk.delete("/saml_test_configs/".concat(test_slug), null, null, options);
|
|
@@ -638,8 +580,7 @@ var delete_saml_test_config = function () {
|
|
|
638
580
|
return _ref59.apply(this, arguments);
|
|
639
581
|
};
|
|
640
582
|
}();
|
|
641
|
-
exports.
|
|
642
|
-
var create_saml_test_config = function () {
|
|
583
|
+
var create_saml_test_config = exports.create_saml_test_config = function () {
|
|
643
584
|
var _ref60 = _asyncToGenerator(function* (sdk, body, options) {
|
|
644
585
|
return sdk.post('/saml_test_configs', null, body, options);
|
|
645
586
|
});
|
|
@@ -647,8 +588,7 @@ var create_saml_test_config = function () {
|
|
|
647
588
|
return _ref60.apply(this, arguments);
|
|
648
589
|
};
|
|
649
590
|
}();
|
|
650
|
-
exports.
|
|
651
|
-
var parse_saml_idp_metadata = function () {
|
|
591
|
+
var parse_saml_idp_metadata = exports.parse_saml_idp_metadata = function () {
|
|
652
592
|
var _ref61 = _asyncToGenerator(function* (sdk, body, options) {
|
|
653
593
|
return sdk.post('/parse_saml_idp_metadata', null, body, options);
|
|
654
594
|
});
|
|
@@ -656,8 +596,7 @@ var parse_saml_idp_metadata = function () {
|
|
|
656
596
|
return _ref61.apply(this, arguments);
|
|
657
597
|
};
|
|
658
598
|
}();
|
|
659
|
-
exports.
|
|
660
|
-
var fetch_and_parse_saml_idp_metadata = function () {
|
|
599
|
+
var fetch_and_parse_saml_idp_metadata = exports.fetch_and_parse_saml_idp_metadata = function () {
|
|
661
600
|
var _ref62 = _asyncToGenerator(function* (sdk, body, options) {
|
|
662
601
|
return sdk.post('/fetch_and_parse_saml_idp_metadata', null, body, options);
|
|
663
602
|
});
|
|
@@ -665,8 +604,7 @@ var fetch_and_parse_saml_idp_metadata = function () {
|
|
|
665
604
|
return _ref62.apply(this, arguments);
|
|
666
605
|
};
|
|
667
606
|
}();
|
|
668
|
-
exports.
|
|
669
|
-
var session_config = function () {
|
|
607
|
+
var session_config = exports.session_config = function () {
|
|
670
608
|
var _ref63 = _asyncToGenerator(function* (sdk, options) {
|
|
671
609
|
return sdk.get('/session_config', null, null, options);
|
|
672
610
|
});
|
|
@@ -674,8 +612,7 @@ var session_config = function () {
|
|
|
674
612
|
return _ref63.apply(this, arguments);
|
|
675
613
|
};
|
|
676
614
|
}();
|
|
677
|
-
exports.
|
|
678
|
-
var update_session_config = function () {
|
|
615
|
+
var update_session_config = exports.update_session_config = function () {
|
|
679
616
|
var _ref64 = _asyncToGenerator(function* (sdk, body, options) {
|
|
680
617
|
return sdk.patch('/session_config', null, body, options);
|
|
681
618
|
});
|
|
@@ -683,8 +620,7 @@ var update_session_config = function () {
|
|
|
683
620
|
return _ref64.apply(this, arguments);
|
|
684
621
|
};
|
|
685
622
|
}();
|
|
686
|
-
exports.
|
|
687
|
-
var get_support_access_allowlist_entries = function () {
|
|
623
|
+
var get_support_access_allowlist_entries = exports.get_support_access_allowlist_entries = function () {
|
|
688
624
|
var _ref65 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
689
625
|
return sdk.get('/support_access/allowlist', {
|
|
690
626
|
fields
|
|
@@ -694,8 +630,7 @@ var get_support_access_allowlist_entries = function () {
|
|
|
694
630
|
return _ref65.apply(this, arguments);
|
|
695
631
|
};
|
|
696
632
|
}();
|
|
697
|
-
exports.
|
|
698
|
-
var add_support_access_allowlist_entries = function () {
|
|
633
|
+
var add_support_access_allowlist_entries = exports.add_support_access_allowlist_entries = function () {
|
|
699
634
|
var _ref66 = _asyncToGenerator(function* (sdk, body, options) {
|
|
700
635
|
return sdk.post('/support_access/allowlist', null, body, options);
|
|
701
636
|
});
|
|
@@ -703,8 +638,7 @@ var add_support_access_allowlist_entries = function () {
|
|
|
703
638
|
return _ref66.apply(this, arguments);
|
|
704
639
|
};
|
|
705
640
|
}();
|
|
706
|
-
exports.
|
|
707
|
-
var delete_support_access_allowlist_entry = function () {
|
|
641
|
+
var delete_support_access_allowlist_entry = exports.delete_support_access_allowlist_entry = function () {
|
|
708
642
|
var _ref67 = _asyncToGenerator(function* (sdk, entry_id, options) {
|
|
709
643
|
entry_id = (0, _sdkRtl.encodeParam)(entry_id);
|
|
710
644
|
return sdk.delete("/support_access/allowlist/".concat(entry_id), null, null, options);
|
|
@@ -713,8 +647,7 @@ var delete_support_access_allowlist_entry = function () {
|
|
|
713
647
|
return _ref67.apply(this, arguments);
|
|
714
648
|
};
|
|
715
649
|
}();
|
|
716
|
-
exports.
|
|
717
|
-
var enable_support_access = function () {
|
|
650
|
+
var enable_support_access = exports.enable_support_access = function () {
|
|
718
651
|
var _ref68 = _asyncToGenerator(function* (sdk, body, options) {
|
|
719
652
|
return sdk.put('/support_access/enable', null, body, options);
|
|
720
653
|
});
|
|
@@ -722,8 +655,7 @@ var enable_support_access = function () {
|
|
|
722
655
|
return _ref68.apply(this, arguments);
|
|
723
656
|
};
|
|
724
657
|
}();
|
|
725
|
-
exports.
|
|
726
|
-
var disable_support_access = function () {
|
|
658
|
+
var disable_support_access = exports.disable_support_access = function () {
|
|
727
659
|
var _ref69 = _asyncToGenerator(function* (sdk, options) {
|
|
728
660
|
return sdk.put('/support_access/disable', null, null, options);
|
|
729
661
|
});
|
|
@@ -731,8 +663,7 @@ var disable_support_access = function () {
|
|
|
731
663
|
return _ref69.apply(this, arguments);
|
|
732
664
|
};
|
|
733
665
|
}();
|
|
734
|
-
exports.
|
|
735
|
-
var support_access_status = function () {
|
|
666
|
+
var support_access_status = exports.support_access_status = function () {
|
|
736
667
|
var _ref70 = _asyncToGenerator(function* (sdk, options) {
|
|
737
668
|
return sdk.get('/support_access/status', null, null, options);
|
|
738
669
|
});
|
|
@@ -740,8 +671,7 @@ var support_access_status = function () {
|
|
|
740
671
|
return _ref70.apply(this, arguments);
|
|
741
672
|
};
|
|
742
673
|
}();
|
|
743
|
-
exports.
|
|
744
|
-
var all_user_login_lockouts = function () {
|
|
674
|
+
var all_user_login_lockouts = exports.all_user_login_lockouts = function () {
|
|
745
675
|
var _ref71 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
746
676
|
return sdk.get('/user_login_lockouts', {
|
|
747
677
|
fields
|
|
@@ -751,8 +681,7 @@ var all_user_login_lockouts = function () {
|
|
|
751
681
|
return _ref71.apply(this, arguments);
|
|
752
682
|
};
|
|
753
683
|
}();
|
|
754
|
-
exports.
|
|
755
|
-
var search_user_login_lockouts = function () {
|
|
684
|
+
var search_user_login_lockouts = exports.search_user_login_lockouts = function () {
|
|
756
685
|
var _ref72 = _asyncToGenerator(function* (sdk, request, options) {
|
|
757
686
|
return sdk.get('/user_login_lockouts/search', {
|
|
758
687
|
fields: request.fields,
|
|
@@ -772,8 +701,7 @@ var search_user_login_lockouts = function () {
|
|
|
772
701
|
return _ref72.apply(this, arguments);
|
|
773
702
|
};
|
|
774
703
|
}();
|
|
775
|
-
exports.
|
|
776
|
-
var delete_user_login_lockout = function () {
|
|
704
|
+
var delete_user_login_lockout = exports.delete_user_login_lockout = function () {
|
|
777
705
|
var _ref73 = _asyncToGenerator(function* (sdk, key, options) {
|
|
778
706
|
key = (0, _sdkRtl.encodeParam)(key);
|
|
779
707
|
return sdk.delete("/user_login_lockout/".concat(key), null, null, options);
|
|
@@ -782,8 +710,7 @@ var delete_user_login_lockout = function () {
|
|
|
782
710
|
return _ref73.apply(this, arguments);
|
|
783
711
|
};
|
|
784
712
|
}();
|
|
785
|
-
exports.
|
|
786
|
-
var all_boards = function () {
|
|
713
|
+
var all_boards = exports.all_boards = function () {
|
|
787
714
|
var _ref74 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
788
715
|
return sdk.get('/boards', {
|
|
789
716
|
fields
|
|
@@ -793,8 +720,7 @@ var all_boards = function () {
|
|
|
793
720
|
return _ref74.apply(this, arguments);
|
|
794
721
|
};
|
|
795
722
|
}();
|
|
796
|
-
exports.
|
|
797
|
-
var create_board = function () {
|
|
723
|
+
var create_board = exports.create_board = function () {
|
|
798
724
|
var _ref75 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
799
725
|
return sdk.post('/boards', {
|
|
800
726
|
fields
|
|
@@ -804,8 +730,7 @@ var create_board = function () {
|
|
|
804
730
|
return _ref75.apply(this, arguments);
|
|
805
731
|
};
|
|
806
732
|
}();
|
|
807
|
-
exports.
|
|
808
|
-
var search_boards = function () {
|
|
733
|
+
var search_boards = exports.search_boards = function () {
|
|
809
734
|
var _ref76 = _asyncToGenerator(function* (sdk, request, options) {
|
|
810
735
|
return sdk.get('/boards/search', {
|
|
811
736
|
title: request.title,
|
|
@@ -828,8 +753,7 @@ var search_boards = function () {
|
|
|
828
753
|
return _ref76.apply(this, arguments);
|
|
829
754
|
};
|
|
830
755
|
}();
|
|
831
|
-
exports.
|
|
832
|
-
var board = function () {
|
|
756
|
+
var board = exports.board = function () {
|
|
833
757
|
var _ref77 = _asyncToGenerator(function* (sdk, board_id, fields, options) {
|
|
834
758
|
board_id = (0, _sdkRtl.encodeParam)(board_id);
|
|
835
759
|
return sdk.get("/boards/".concat(board_id), {
|
|
@@ -840,8 +764,7 @@ var board = function () {
|
|
|
840
764
|
return _ref77.apply(this, arguments);
|
|
841
765
|
};
|
|
842
766
|
}();
|
|
843
|
-
exports.
|
|
844
|
-
var update_board = function () {
|
|
767
|
+
var update_board = exports.update_board = function () {
|
|
845
768
|
var _ref78 = _asyncToGenerator(function* (sdk, board_id, body, fields, options) {
|
|
846
769
|
board_id = (0, _sdkRtl.encodeParam)(board_id);
|
|
847
770
|
return sdk.patch("/boards/".concat(board_id), {
|
|
@@ -852,8 +775,7 @@ var update_board = function () {
|
|
|
852
775
|
return _ref78.apply(this, arguments);
|
|
853
776
|
};
|
|
854
777
|
}();
|
|
855
|
-
exports.
|
|
856
|
-
var delete_board = function () {
|
|
778
|
+
var delete_board = exports.delete_board = function () {
|
|
857
779
|
var _ref79 = _asyncToGenerator(function* (sdk, board_id, options) {
|
|
858
780
|
board_id = (0, _sdkRtl.encodeParam)(board_id);
|
|
859
781
|
return sdk.delete("/boards/".concat(board_id), null, null, options);
|
|
@@ -862,8 +784,7 @@ var delete_board = function () {
|
|
|
862
784
|
return _ref79.apply(this, arguments);
|
|
863
785
|
};
|
|
864
786
|
}();
|
|
865
|
-
exports.
|
|
866
|
-
var all_board_items = function () {
|
|
787
|
+
var all_board_items = exports.all_board_items = function () {
|
|
867
788
|
var _ref80 = _asyncToGenerator(function* (sdk, request, options) {
|
|
868
789
|
return sdk.get('/board_items', {
|
|
869
790
|
fields: request.fields,
|
|
@@ -875,8 +796,7 @@ var all_board_items = function () {
|
|
|
875
796
|
return _ref80.apply(this, arguments);
|
|
876
797
|
};
|
|
877
798
|
}();
|
|
878
|
-
exports.
|
|
879
|
-
var create_board_item = function () {
|
|
799
|
+
var create_board_item = exports.create_board_item = function () {
|
|
880
800
|
var _ref81 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
881
801
|
return sdk.post('/board_items', {
|
|
882
802
|
fields
|
|
@@ -886,8 +806,7 @@ var create_board_item = function () {
|
|
|
886
806
|
return _ref81.apply(this, arguments);
|
|
887
807
|
};
|
|
888
808
|
}();
|
|
889
|
-
exports.
|
|
890
|
-
var board_item = function () {
|
|
809
|
+
var board_item = exports.board_item = function () {
|
|
891
810
|
var _ref82 = _asyncToGenerator(function* (sdk, board_item_id, fields, options) {
|
|
892
811
|
board_item_id = (0, _sdkRtl.encodeParam)(board_item_id);
|
|
893
812
|
return sdk.get("/board_items/".concat(board_item_id), {
|
|
@@ -898,8 +817,7 @@ var board_item = function () {
|
|
|
898
817
|
return _ref82.apply(this, arguments);
|
|
899
818
|
};
|
|
900
819
|
}();
|
|
901
|
-
exports.
|
|
902
|
-
var update_board_item = function () {
|
|
820
|
+
var update_board_item = exports.update_board_item = function () {
|
|
903
821
|
var _ref83 = _asyncToGenerator(function* (sdk, board_item_id, body, fields, options) {
|
|
904
822
|
board_item_id = (0, _sdkRtl.encodeParam)(board_item_id);
|
|
905
823
|
return sdk.patch("/board_items/".concat(board_item_id), {
|
|
@@ -910,8 +828,7 @@ var update_board_item = function () {
|
|
|
910
828
|
return _ref83.apply(this, arguments);
|
|
911
829
|
};
|
|
912
830
|
}();
|
|
913
|
-
exports.
|
|
914
|
-
var delete_board_item = function () {
|
|
831
|
+
var delete_board_item = exports.delete_board_item = function () {
|
|
915
832
|
var _ref84 = _asyncToGenerator(function* (sdk, board_item_id, options) {
|
|
916
833
|
board_item_id = (0, _sdkRtl.encodeParam)(board_item_id);
|
|
917
834
|
return sdk.delete("/board_items/".concat(board_item_id), null, null, options);
|
|
@@ -920,8 +837,7 @@ var delete_board_item = function () {
|
|
|
920
837
|
return _ref84.apply(this, arguments);
|
|
921
838
|
};
|
|
922
839
|
}();
|
|
923
|
-
exports.
|
|
924
|
-
var all_board_sections = function () {
|
|
840
|
+
var all_board_sections = exports.all_board_sections = function () {
|
|
925
841
|
var _ref85 = _asyncToGenerator(function* (sdk, request, options) {
|
|
926
842
|
return sdk.get('/board_sections', {
|
|
927
843
|
fields: request.fields,
|
|
@@ -932,8 +848,7 @@ var all_board_sections = function () {
|
|
|
932
848
|
return _ref85.apply(this, arguments);
|
|
933
849
|
};
|
|
934
850
|
}();
|
|
935
|
-
exports.
|
|
936
|
-
var create_board_section = function () {
|
|
851
|
+
var create_board_section = exports.create_board_section = function () {
|
|
937
852
|
var _ref86 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
938
853
|
return sdk.post('/board_sections', {
|
|
939
854
|
fields
|
|
@@ -943,8 +858,7 @@ var create_board_section = function () {
|
|
|
943
858
|
return _ref86.apply(this, arguments);
|
|
944
859
|
};
|
|
945
860
|
}();
|
|
946
|
-
exports.
|
|
947
|
-
var board_section = function () {
|
|
861
|
+
var board_section = exports.board_section = function () {
|
|
948
862
|
var _ref87 = _asyncToGenerator(function* (sdk, board_section_id, fields, options) {
|
|
949
863
|
board_section_id = (0, _sdkRtl.encodeParam)(board_section_id);
|
|
950
864
|
return sdk.get("/board_sections/".concat(board_section_id), {
|
|
@@ -955,8 +869,7 @@ var board_section = function () {
|
|
|
955
869
|
return _ref87.apply(this, arguments);
|
|
956
870
|
};
|
|
957
871
|
}();
|
|
958
|
-
exports.
|
|
959
|
-
var update_board_section = function () {
|
|
872
|
+
var update_board_section = exports.update_board_section = function () {
|
|
960
873
|
var _ref88 = _asyncToGenerator(function* (sdk, board_section_id, body, fields, options) {
|
|
961
874
|
board_section_id = (0, _sdkRtl.encodeParam)(board_section_id);
|
|
962
875
|
return sdk.patch("/board_sections/".concat(board_section_id), {
|
|
@@ -967,8 +880,7 @@ var update_board_section = function () {
|
|
|
967
880
|
return _ref88.apply(this, arguments);
|
|
968
881
|
};
|
|
969
882
|
}();
|
|
970
|
-
exports.
|
|
971
|
-
var delete_board_section = function () {
|
|
883
|
+
var delete_board_section = exports.delete_board_section = function () {
|
|
972
884
|
var _ref89 = _asyncToGenerator(function* (sdk, board_section_id, options) {
|
|
973
885
|
board_section_id = (0, _sdkRtl.encodeParam)(board_section_id);
|
|
974
886
|
return sdk.delete("/board_sections/".concat(board_section_id), null, null, options);
|
|
@@ -977,8 +889,7 @@ var delete_board_section = function () {
|
|
|
977
889
|
return _ref89.apply(this, arguments);
|
|
978
890
|
};
|
|
979
891
|
}();
|
|
980
|
-
exports.
|
|
981
|
-
var all_color_collections = function () {
|
|
892
|
+
var all_color_collections = exports.all_color_collections = function () {
|
|
982
893
|
var _ref90 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
983
894
|
return sdk.get('/color_collections', {
|
|
984
895
|
fields
|
|
@@ -988,8 +899,7 @@ var all_color_collections = function () {
|
|
|
988
899
|
return _ref90.apply(this, arguments);
|
|
989
900
|
};
|
|
990
901
|
}();
|
|
991
|
-
exports.
|
|
992
|
-
var create_color_collection = function () {
|
|
902
|
+
var create_color_collection = exports.create_color_collection = function () {
|
|
993
903
|
var _ref91 = _asyncToGenerator(function* (sdk, body, options) {
|
|
994
904
|
return sdk.post('/color_collections', null, body, options);
|
|
995
905
|
});
|
|
@@ -997,8 +907,7 @@ var create_color_collection = function () {
|
|
|
997
907
|
return _ref91.apply(this, arguments);
|
|
998
908
|
};
|
|
999
909
|
}();
|
|
1000
|
-
exports.
|
|
1001
|
-
var color_collections_custom = function () {
|
|
910
|
+
var color_collections_custom = exports.color_collections_custom = function () {
|
|
1002
911
|
var _ref92 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1003
912
|
return sdk.get('/color_collections/custom', {
|
|
1004
913
|
fields
|
|
@@ -1008,8 +917,7 @@ var color_collections_custom = function () {
|
|
|
1008
917
|
return _ref92.apply(this, arguments);
|
|
1009
918
|
};
|
|
1010
919
|
}();
|
|
1011
|
-
exports.
|
|
1012
|
-
var color_collections_standard = function () {
|
|
920
|
+
var color_collections_standard = exports.color_collections_standard = function () {
|
|
1013
921
|
var _ref93 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1014
922
|
return sdk.get('/color_collections/standard', {
|
|
1015
923
|
fields
|
|
@@ -1019,8 +927,7 @@ var color_collections_standard = function () {
|
|
|
1019
927
|
return _ref93.apply(this, arguments);
|
|
1020
928
|
};
|
|
1021
929
|
}();
|
|
1022
|
-
exports.
|
|
1023
|
-
var default_color_collection = function () {
|
|
930
|
+
var default_color_collection = exports.default_color_collection = function () {
|
|
1024
931
|
var _ref94 = _asyncToGenerator(function* (sdk, options) {
|
|
1025
932
|
return sdk.get('/color_collections/default', null, null, options);
|
|
1026
933
|
});
|
|
@@ -1028,8 +935,7 @@ var default_color_collection = function () {
|
|
|
1028
935
|
return _ref94.apply(this, arguments);
|
|
1029
936
|
};
|
|
1030
937
|
}();
|
|
1031
|
-
exports.
|
|
1032
|
-
var set_default_color_collection = function () {
|
|
938
|
+
var set_default_color_collection = exports.set_default_color_collection = function () {
|
|
1033
939
|
var _ref95 = _asyncToGenerator(function* (sdk, collection_id, options) {
|
|
1034
940
|
return sdk.put('/color_collections/default', {
|
|
1035
941
|
collection_id
|
|
@@ -1039,8 +945,7 @@ var set_default_color_collection = function () {
|
|
|
1039
945
|
return _ref95.apply(this, arguments);
|
|
1040
946
|
};
|
|
1041
947
|
}();
|
|
1042
|
-
exports.
|
|
1043
|
-
var color_collection = function () {
|
|
948
|
+
var color_collection = exports.color_collection = function () {
|
|
1044
949
|
var _ref96 = _asyncToGenerator(function* (sdk, collection_id, fields, options) {
|
|
1045
950
|
collection_id = (0, _sdkRtl.encodeParam)(collection_id);
|
|
1046
951
|
return sdk.get("/color_collections/".concat(collection_id), {
|
|
@@ -1051,8 +956,7 @@ var color_collection = function () {
|
|
|
1051
956
|
return _ref96.apply(this, arguments);
|
|
1052
957
|
};
|
|
1053
958
|
}();
|
|
1054
|
-
exports.
|
|
1055
|
-
var update_color_collection = function () {
|
|
959
|
+
var update_color_collection = exports.update_color_collection = function () {
|
|
1056
960
|
var _ref97 = _asyncToGenerator(function* (sdk, collection_id, body, options) {
|
|
1057
961
|
collection_id = (0, _sdkRtl.encodeParam)(collection_id);
|
|
1058
962
|
return sdk.patch("/color_collections/".concat(collection_id), null, body, options);
|
|
@@ -1061,8 +965,7 @@ var update_color_collection = function () {
|
|
|
1061
965
|
return _ref97.apply(this, arguments);
|
|
1062
966
|
};
|
|
1063
967
|
}();
|
|
1064
|
-
exports.
|
|
1065
|
-
var delete_color_collection = function () {
|
|
968
|
+
var delete_color_collection = exports.delete_color_collection = function () {
|
|
1066
969
|
var _ref98 = _asyncToGenerator(function* (sdk, collection_id, options) {
|
|
1067
970
|
collection_id = (0, _sdkRtl.encodeParam)(collection_id);
|
|
1068
971
|
return sdk.delete("/color_collections/".concat(collection_id), null, null, options);
|
|
@@ -1071,8 +974,7 @@ var delete_color_collection = function () {
|
|
|
1071
974
|
return _ref98.apply(this, arguments);
|
|
1072
975
|
};
|
|
1073
976
|
}();
|
|
1074
|
-
exports.
|
|
1075
|
-
var cloud_storage_configuration = function () {
|
|
977
|
+
var cloud_storage_configuration = exports.cloud_storage_configuration = function () {
|
|
1076
978
|
var _ref99 = _asyncToGenerator(function* (sdk, options) {
|
|
1077
979
|
return sdk.get('/cloud_storage', null, null, options);
|
|
1078
980
|
});
|
|
@@ -1080,8 +982,7 @@ var cloud_storage_configuration = function () {
|
|
|
1080
982
|
return _ref99.apply(this, arguments);
|
|
1081
983
|
};
|
|
1082
984
|
}();
|
|
1083
|
-
exports.
|
|
1084
|
-
var update_cloud_storage_configuration = function () {
|
|
985
|
+
var update_cloud_storage_configuration = exports.update_cloud_storage_configuration = function () {
|
|
1085
986
|
var _ref100 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1086
987
|
return sdk.patch('/cloud_storage', null, body, options);
|
|
1087
988
|
});
|
|
@@ -1089,8 +990,7 @@ var update_cloud_storage_configuration = function () {
|
|
|
1089
990
|
return _ref100.apply(this, arguments);
|
|
1090
991
|
};
|
|
1091
992
|
}();
|
|
1092
|
-
exports.
|
|
1093
|
-
var custom_welcome_email = function () {
|
|
993
|
+
var custom_welcome_email = exports.custom_welcome_email = function () {
|
|
1094
994
|
var _ref101 = _asyncToGenerator(function* (sdk, options) {
|
|
1095
995
|
return sdk.get('/custom_welcome_email', null, null, options);
|
|
1096
996
|
});
|
|
@@ -1098,8 +998,7 @@ var custom_welcome_email = function () {
|
|
|
1098
998
|
return _ref101.apply(this, arguments);
|
|
1099
999
|
};
|
|
1100
1000
|
}();
|
|
1101
|
-
exports.
|
|
1102
|
-
var update_custom_welcome_email = function () {
|
|
1001
|
+
var update_custom_welcome_email = exports.update_custom_welcome_email = function () {
|
|
1103
1002
|
var _ref102 = _asyncToGenerator(function* (sdk, body, send_test_welcome_email, options) {
|
|
1104
1003
|
return sdk.patch('/custom_welcome_email', {
|
|
1105
1004
|
send_test_welcome_email
|
|
@@ -1109,8 +1008,7 @@ var update_custom_welcome_email = function () {
|
|
|
1109
1008
|
return _ref102.apply(this, arguments);
|
|
1110
1009
|
};
|
|
1111
1010
|
}();
|
|
1112
|
-
exports.
|
|
1113
|
-
var update_custom_welcome_email_test = function () {
|
|
1011
|
+
var update_custom_welcome_email_test = exports.update_custom_welcome_email_test = function () {
|
|
1114
1012
|
var _ref103 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1115
1013
|
return sdk.put('/custom_welcome_email_test', null, body, options);
|
|
1116
1014
|
});
|
|
@@ -1118,8 +1016,7 @@ var update_custom_welcome_email_test = function () {
|
|
|
1118
1016
|
return _ref103.apply(this, arguments);
|
|
1119
1017
|
};
|
|
1120
1018
|
}();
|
|
1121
|
-
exports.
|
|
1122
|
-
var digest_emails_enabled = function () {
|
|
1019
|
+
var digest_emails_enabled = exports.digest_emails_enabled = function () {
|
|
1123
1020
|
var _ref104 = _asyncToGenerator(function* (sdk, options) {
|
|
1124
1021
|
return sdk.get('/digest_emails_enabled', null, null, options);
|
|
1125
1022
|
});
|
|
@@ -1127,8 +1024,7 @@ var digest_emails_enabled = function () {
|
|
|
1127
1024
|
return _ref104.apply(this, arguments);
|
|
1128
1025
|
};
|
|
1129
1026
|
}();
|
|
1130
|
-
exports.
|
|
1131
|
-
var update_digest_emails_enabled = function () {
|
|
1027
|
+
var update_digest_emails_enabled = exports.update_digest_emails_enabled = function () {
|
|
1132
1028
|
var _ref105 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1133
1029
|
return sdk.patch('/digest_emails_enabled', null, body, options);
|
|
1134
1030
|
});
|
|
@@ -1136,8 +1032,7 @@ var update_digest_emails_enabled = function () {
|
|
|
1136
1032
|
return _ref105.apply(this, arguments);
|
|
1137
1033
|
};
|
|
1138
1034
|
}();
|
|
1139
|
-
exports.
|
|
1140
|
-
var create_digest_email_send = function () {
|
|
1035
|
+
var create_digest_email_send = exports.create_digest_email_send = function () {
|
|
1141
1036
|
var _ref106 = _asyncToGenerator(function* (sdk, options) {
|
|
1142
1037
|
return sdk.post('/digest_email_send', null, null, options);
|
|
1143
1038
|
});
|
|
@@ -1145,8 +1040,7 @@ var create_digest_email_send = function () {
|
|
|
1145
1040
|
return _ref106.apply(this, arguments);
|
|
1146
1041
|
};
|
|
1147
1042
|
}();
|
|
1148
|
-
exports.
|
|
1149
|
-
var public_egress_ip_addresses = function () {
|
|
1043
|
+
var public_egress_ip_addresses = exports.public_egress_ip_addresses = function () {
|
|
1150
1044
|
var _ref107 = _asyncToGenerator(function* (sdk, options) {
|
|
1151
1045
|
return sdk.get('/public_egress_ip_addresses', null, null, options);
|
|
1152
1046
|
});
|
|
@@ -1154,8 +1048,7 @@ var public_egress_ip_addresses = function () {
|
|
|
1154
1048
|
return _ref107.apply(this, arguments);
|
|
1155
1049
|
};
|
|
1156
1050
|
}();
|
|
1157
|
-
exports.
|
|
1158
|
-
var internal_help_resources_content = function () {
|
|
1051
|
+
var internal_help_resources_content = exports.internal_help_resources_content = function () {
|
|
1159
1052
|
var _ref108 = _asyncToGenerator(function* (sdk, options) {
|
|
1160
1053
|
return sdk.get('/internal_help_resources_content', null, null, options);
|
|
1161
1054
|
});
|
|
@@ -1163,8 +1056,7 @@ var internal_help_resources_content = function () {
|
|
|
1163
1056
|
return _ref108.apply(this, arguments);
|
|
1164
1057
|
};
|
|
1165
1058
|
}();
|
|
1166
|
-
exports.
|
|
1167
|
-
var update_internal_help_resources_content = function () {
|
|
1059
|
+
var update_internal_help_resources_content = exports.update_internal_help_resources_content = function () {
|
|
1168
1060
|
var _ref109 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1169
1061
|
return sdk.patch('/internal_help_resources_content', null, body, options);
|
|
1170
1062
|
});
|
|
@@ -1172,8 +1064,7 @@ var update_internal_help_resources_content = function () {
|
|
|
1172
1064
|
return _ref109.apply(this, arguments);
|
|
1173
1065
|
};
|
|
1174
1066
|
}();
|
|
1175
|
-
exports.
|
|
1176
|
-
var internal_help_resources = function () {
|
|
1067
|
+
var internal_help_resources = exports.internal_help_resources = function () {
|
|
1177
1068
|
var _ref110 = _asyncToGenerator(function* (sdk, options) {
|
|
1178
1069
|
return sdk.get('/internal_help_resources_enabled', null, null, options);
|
|
1179
1070
|
});
|
|
@@ -1181,8 +1072,7 @@ var internal_help_resources = function () {
|
|
|
1181
1072
|
return _ref110.apply(this, arguments);
|
|
1182
1073
|
};
|
|
1183
1074
|
}();
|
|
1184
|
-
exports.
|
|
1185
|
-
var update_internal_help_resources = function () {
|
|
1075
|
+
var update_internal_help_resources = exports.update_internal_help_resources = function () {
|
|
1186
1076
|
var _ref111 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1187
1077
|
return sdk.patch('/internal_help_resources', null, body, options);
|
|
1188
1078
|
});
|
|
@@ -1190,8 +1080,7 @@ var update_internal_help_resources = function () {
|
|
|
1190
1080
|
return _ref111.apply(this, arguments);
|
|
1191
1081
|
};
|
|
1192
1082
|
}();
|
|
1193
|
-
exports.
|
|
1194
|
-
var all_legacy_features = function () {
|
|
1083
|
+
var all_legacy_features = exports.all_legacy_features = function () {
|
|
1195
1084
|
var _ref112 = _asyncToGenerator(function* (sdk, options) {
|
|
1196
1085
|
return sdk.get('/legacy_features', null, null, options);
|
|
1197
1086
|
});
|
|
@@ -1199,8 +1088,7 @@ var all_legacy_features = function () {
|
|
|
1199
1088
|
return _ref112.apply(this, arguments);
|
|
1200
1089
|
};
|
|
1201
1090
|
}();
|
|
1202
|
-
exports.
|
|
1203
|
-
var legacy_feature = function () {
|
|
1091
|
+
var legacy_feature = exports.legacy_feature = function () {
|
|
1204
1092
|
var _ref113 = _asyncToGenerator(function* (sdk, legacy_feature_id, options) {
|
|
1205
1093
|
legacy_feature_id = (0, _sdkRtl.encodeParam)(legacy_feature_id);
|
|
1206
1094
|
return sdk.get("/legacy_features/".concat(legacy_feature_id), null, null, options);
|
|
@@ -1209,8 +1097,7 @@ var legacy_feature = function () {
|
|
|
1209
1097
|
return _ref113.apply(this, arguments);
|
|
1210
1098
|
};
|
|
1211
1099
|
}();
|
|
1212
|
-
exports.
|
|
1213
|
-
var update_legacy_feature = function () {
|
|
1100
|
+
var update_legacy_feature = exports.update_legacy_feature = function () {
|
|
1214
1101
|
var _ref114 = _asyncToGenerator(function* (sdk, legacy_feature_id, body, options) {
|
|
1215
1102
|
legacy_feature_id = (0, _sdkRtl.encodeParam)(legacy_feature_id);
|
|
1216
1103
|
return sdk.patch("/legacy_features/".concat(legacy_feature_id), null, body, options);
|
|
@@ -1219,8 +1106,7 @@ var update_legacy_feature = function () {
|
|
|
1219
1106
|
return _ref114.apply(this, arguments);
|
|
1220
1107
|
};
|
|
1221
1108
|
}();
|
|
1222
|
-
exports.
|
|
1223
|
-
var all_locales = function () {
|
|
1109
|
+
var all_locales = exports.all_locales = function () {
|
|
1224
1110
|
var _ref115 = _asyncToGenerator(function* (sdk, options) {
|
|
1225
1111
|
return sdk.get('/locales', null, null, options);
|
|
1226
1112
|
});
|
|
@@ -1228,8 +1114,7 @@ var all_locales = function () {
|
|
|
1228
1114
|
return _ref115.apply(this, arguments);
|
|
1229
1115
|
};
|
|
1230
1116
|
}();
|
|
1231
|
-
exports.
|
|
1232
|
-
var mobile_settings = function () {
|
|
1117
|
+
var mobile_settings = exports.mobile_settings = function () {
|
|
1233
1118
|
var _ref116 = _asyncToGenerator(function* (sdk, options) {
|
|
1234
1119
|
return sdk.get('/mobile/settings', null, null, options);
|
|
1235
1120
|
});
|
|
@@ -1237,8 +1122,7 @@ var mobile_settings = function () {
|
|
|
1237
1122
|
return _ref116.apply(this, arguments);
|
|
1238
1123
|
};
|
|
1239
1124
|
}();
|
|
1240
|
-
exports.
|
|
1241
|
-
var get_setting = function () {
|
|
1125
|
+
var get_setting = exports.get_setting = function () {
|
|
1242
1126
|
var _ref117 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1243
1127
|
return sdk.get('/setting', {
|
|
1244
1128
|
fields
|
|
@@ -1248,8 +1132,7 @@ var get_setting = function () {
|
|
|
1248
1132
|
return _ref117.apply(this, arguments);
|
|
1249
1133
|
};
|
|
1250
1134
|
}();
|
|
1251
|
-
exports.
|
|
1252
|
-
var set_setting = function () {
|
|
1135
|
+
var set_setting = exports.set_setting = function () {
|
|
1253
1136
|
var _ref118 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
1254
1137
|
return sdk.patch('/setting', {
|
|
1255
1138
|
fields
|
|
@@ -1259,8 +1142,7 @@ var set_setting = function () {
|
|
|
1259
1142
|
return _ref118.apply(this, arguments);
|
|
1260
1143
|
};
|
|
1261
1144
|
}();
|
|
1262
|
-
exports.
|
|
1263
|
-
var set_smtp_settings = function () {
|
|
1145
|
+
var set_smtp_settings = exports.set_smtp_settings = function () {
|
|
1264
1146
|
var _ref119 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1265
1147
|
return sdk.post('/smtp_settings', null, body, options);
|
|
1266
1148
|
});
|
|
@@ -1268,8 +1150,7 @@ var set_smtp_settings = function () {
|
|
|
1268
1150
|
return _ref119.apply(this, arguments);
|
|
1269
1151
|
};
|
|
1270
1152
|
}();
|
|
1271
|
-
exports.
|
|
1272
|
-
var smtp_status = function () {
|
|
1153
|
+
var smtp_status = exports.smtp_status = function () {
|
|
1273
1154
|
var _ref120 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1274
1155
|
return sdk.get('/smtp_status', {
|
|
1275
1156
|
fields
|
|
@@ -1279,8 +1160,7 @@ var smtp_status = function () {
|
|
|
1279
1160
|
return _ref120.apply(this, arguments);
|
|
1280
1161
|
};
|
|
1281
1162
|
}();
|
|
1282
|
-
exports.
|
|
1283
|
-
var all_timezones = function () {
|
|
1163
|
+
var all_timezones = exports.all_timezones = function () {
|
|
1284
1164
|
var _ref121 = _asyncToGenerator(function* (sdk, options) {
|
|
1285
1165
|
return sdk.get('/timezones', null, null, options);
|
|
1286
1166
|
});
|
|
@@ -1288,8 +1168,7 @@ var all_timezones = function () {
|
|
|
1288
1168
|
return _ref121.apply(this, arguments);
|
|
1289
1169
|
};
|
|
1290
1170
|
}();
|
|
1291
|
-
exports.
|
|
1292
|
-
var versions = function () {
|
|
1171
|
+
var versions = exports.versions = function () {
|
|
1293
1172
|
var _ref122 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1294
1173
|
return sdk.get('/versions', {
|
|
1295
1174
|
fields
|
|
@@ -1299,8 +1178,7 @@ var versions = function () {
|
|
|
1299
1178
|
return _ref122.apply(this, arguments);
|
|
1300
1179
|
};
|
|
1301
1180
|
}();
|
|
1302
|
-
exports.
|
|
1303
|
-
var api_spec = function () {
|
|
1181
|
+
var api_spec = exports.api_spec = function () {
|
|
1304
1182
|
var _ref123 = _asyncToGenerator(function* (sdk, api_version, specification, options) {
|
|
1305
1183
|
api_version = (0, _sdkRtl.encodeParam)(api_version);
|
|
1306
1184
|
specification = (0, _sdkRtl.encodeParam)(specification);
|
|
@@ -1310,8 +1188,7 @@ var api_spec = function () {
|
|
|
1310
1188
|
return _ref123.apply(this, arguments);
|
|
1311
1189
|
};
|
|
1312
1190
|
}();
|
|
1313
|
-
exports.
|
|
1314
|
-
var whitelabel_configuration = function () {
|
|
1191
|
+
var whitelabel_configuration = exports.whitelabel_configuration = function () {
|
|
1315
1192
|
var _ref124 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1316
1193
|
return sdk.get('/whitelabel_configuration', {
|
|
1317
1194
|
fields
|
|
@@ -1321,8 +1198,7 @@ var whitelabel_configuration = function () {
|
|
|
1321
1198
|
return _ref124.apply(this, arguments);
|
|
1322
1199
|
};
|
|
1323
1200
|
}();
|
|
1324
|
-
exports.
|
|
1325
|
-
var update_whitelabel_configuration = function () {
|
|
1201
|
+
var update_whitelabel_configuration = exports.update_whitelabel_configuration = function () {
|
|
1326
1202
|
var _ref125 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1327
1203
|
return sdk.put('/whitelabel_configuration', null, body, options);
|
|
1328
1204
|
});
|
|
@@ -1330,8 +1206,7 @@ var update_whitelabel_configuration = function () {
|
|
|
1330
1206
|
return _ref125.apply(this, arguments);
|
|
1331
1207
|
};
|
|
1332
1208
|
}();
|
|
1333
|
-
exports.
|
|
1334
|
-
var all_connections = function () {
|
|
1209
|
+
var all_connections = exports.all_connections = function () {
|
|
1335
1210
|
var _ref126 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1336
1211
|
return sdk.get('/connections', {
|
|
1337
1212
|
fields
|
|
@@ -1341,8 +1216,7 @@ var all_connections = function () {
|
|
|
1341
1216
|
return _ref126.apply(this, arguments);
|
|
1342
1217
|
};
|
|
1343
1218
|
}();
|
|
1344
|
-
exports.
|
|
1345
|
-
var create_connection = function () {
|
|
1219
|
+
var create_connection = exports.create_connection = function () {
|
|
1346
1220
|
var _ref127 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1347
1221
|
return sdk.post('/connections', null, body, options);
|
|
1348
1222
|
});
|
|
@@ -1350,8 +1224,7 @@ var create_connection = function () {
|
|
|
1350
1224
|
return _ref127.apply(this, arguments);
|
|
1351
1225
|
};
|
|
1352
1226
|
}();
|
|
1353
|
-
exports.
|
|
1354
|
-
var connection = function () {
|
|
1227
|
+
var connection = exports.connection = function () {
|
|
1355
1228
|
var _ref128 = _asyncToGenerator(function* (sdk, connection_name, fields, options) {
|
|
1356
1229
|
connection_name = (0, _sdkRtl.encodeParam)(connection_name);
|
|
1357
1230
|
return sdk.get("/connections/".concat(connection_name), {
|
|
@@ -1362,8 +1235,7 @@ var connection = function () {
|
|
|
1362
1235
|
return _ref128.apply(this, arguments);
|
|
1363
1236
|
};
|
|
1364
1237
|
}();
|
|
1365
|
-
exports.
|
|
1366
|
-
var update_connection = function () {
|
|
1238
|
+
var update_connection = exports.update_connection = function () {
|
|
1367
1239
|
var _ref129 = _asyncToGenerator(function* (sdk, connection_name, body, options) {
|
|
1368
1240
|
connection_name = (0, _sdkRtl.encodeParam)(connection_name);
|
|
1369
1241
|
return sdk.patch("/connections/".concat(connection_name), null, body, options);
|
|
@@ -1372,8 +1244,7 @@ var update_connection = function () {
|
|
|
1372
1244
|
return _ref129.apply(this, arguments);
|
|
1373
1245
|
};
|
|
1374
1246
|
}();
|
|
1375
|
-
exports.
|
|
1376
|
-
var delete_connection = function () {
|
|
1247
|
+
var delete_connection = exports.delete_connection = function () {
|
|
1377
1248
|
var _ref130 = _asyncToGenerator(function* (sdk, connection_name, options) {
|
|
1378
1249
|
connection_name = (0, _sdkRtl.encodeParam)(connection_name);
|
|
1379
1250
|
return sdk.delete("/connections/".concat(connection_name), null, null, options);
|
|
@@ -1382,8 +1253,7 @@ var delete_connection = function () {
|
|
|
1382
1253
|
return _ref130.apply(this, arguments);
|
|
1383
1254
|
};
|
|
1384
1255
|
}();
|
|
1385
|
-
exports.
|
|
1386
|
-
var delete_connection_override = function () {
|
|
1256
|
+
var delete_connection_override = exports.delete_connection_override = function () {
|
|
1387
1257
|
var _ref131 = _asyncToGenerator(function* (sdk, connection_name, override_context, options) {
|
|
1388
1258
|
connection_name = (0, _sdkRtl.encodeParam)(connection_name);
|
|
1389
1259
|
override_context = (0, _sdkRtl.encodeParam)(override_context);
|
|
@@ -1393,8 +1263,7 @@ var delete_connection_override = function () {
|
|
|
1393
1263
|
return _ref131.apply(this, arguments);
|
|
1394
1264
|
};
|
|
1395
1265
|
}();
|
|
1396
|
-
exports.
|
|
1397
|
-
var test_connection = function () {
|
|
1266
|
+
var test_connection = exports.test_connection = function () {
|
|
1398
1267
|
var _ref132 = _asyncToGenerator(function* (sdk, connection_name, tests, options) {
|
|
1399
1268
|
connection_name = (0, _sdkRtl.encodeParam)(connection_name);
|
|
1400
1269
|
return sdk.put("/connections/".concat(connection_name, "/test"), {
|
|
@@ -1405,8 +1274,7 @@ var test_connection = function () {
|
|
|
1405
1274
|
return _ref132.apply(this, arguments);
|
|
1406
1275
|
};
|
|
1407
1276
|
}();
|
|
1408
|
-
exports.
|
|
1409
|
-
var test_connection_config = function () {
|
|
1277
|
+
var test_connection_config = exports.test_connection_config = function () {
|
|
1410
1278
|
var _ref133 = _asyncToGenerator(function* (sdk, body, tests, options) {
|
|
1411
1279
|
return sdk.put('/connections/test', {
|
|
1412
1280
|
tests
|
|
@@ -1416,8 +1284,7 @@ var test_connection_config = function () {
|
|
|
1416
1284
|
return _ref133.apply(this, arguments);
|
|
1417
1285
|
};
|
|
1418
1286
|
}();
|
|
1419
|
-
exports.
|
|
1420
|
-
var all_dialect_infos = function () {
|
|
1287
|
+
var all_dialect_infos = exports.all_dialect_infos = function () {
|
|
1421
1288
|
var _ref134 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1422
1289
|
return sdk.get('/dialect_info', {
|
|
1423
1290
|
fields
|
|
@@ -1427,8 +1294,7 @@ var all_dialect_infos = function () {
|
|
|
1427
1294
|
return _ref134.apply(this, arguments);
|
|
1428
1295
|
};
|
|
1429
1296
|
}();
|
|
1430
|
-
exports.
|
|
1431
|
-
var all_external_oauth_applications = function () {
|
|
1297
|
+
var all_external_oauth_applications = exports.all_external_oauth_applications = function () {
|
|
1432
1298
|
var _ref135 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1433
1299
|
return sdk.get('/external_oauth_applications', {
|
|
1434
1300
|
name: request.name,
|
|
@@ -1439,8 +1305,7 @@ var all_external_oauth_applications = function () {
|
|
|
1439
1305
|
return _ref135.apply(this, arguments);
|
|
1440
1306
|
};
|
|
1441
1307
|
}();
|
|
1442
|
-
exports.
|
|
1443
|
-
var create_external_oauth_application = function () {
|
|
1308
|
+
var create_external_oauth_application = exports.create_external_oauth_application = function () {
|
|
1444
1309
|
var _ref136 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1445
1310
|
return sdk.post('/external_oauth_applications', null, body, options);
|
|
1446
1311
|
});
|
|
@@ -1448,8 +1313,7 @@ var create_external_oauth_application = function () {
|
|
|
1448
1313
|
return _ref136.apply(this, arguments);
|
|
1449
1314
|
};
|
|
1450
1315
|
}();
|
|
1451
|
-
exports.
|
|
1452
|
-
var create_oauth_application_user_state = function () {
|
|
1316
|
+
var create_oauth_application_user_state = exports.create_oauth_application_user_state = function () {
|
|
1453
1317
|
var _ref137 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1454
1318
|
return sdk.post('/external_oauth_applications/user_state', null, body, options);
|
|
1455
1319
|
});
|
|
@@ -1457,8 +1321,7 @@ var create_oauth_application_user_state = function () {
|
|
|
1457
1321
|
return _ref137.apply(this, arguments);
|
|
1458
1322
|
};
|
|
1459
1323
|
}();
|
|
1460
|
-
exports.
|
|
1461
|
-
var all_ssh_servers = function () {
|
|
1324
|
+
var all_ssh_servers = exports.all_ssh_servers = function () {
|
|
1462
1325
|
var _ref138 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1463
1326
|
return sdk.get('/ssh_servers', {
|
|
1464
1327
|
fields
|
|
@@ -1468,8 +1331,7 @@ var all_ssh_servers = function () {
|
|
|
1468
1331
|
return _ref138.apply(this, arguments);
|
|
1469
1332
|
};
|
|
1470
1333
|
}();
|
|
1471
|
-
exports.
|
|
1472
|
-
var create_ssh_server = function () {
|
|
1334
|
+
var create_ssh_server = exports.create_ssh_server = function () {
|
|
1473
1335
|
var _ref139 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1474
1336
|
return sdk.post('/ssh_servers', null, body, options);
|
|
1475
1337
|
});
|
|
@@ -1477,8 +1339,7 @@ var create_ssh_server = function () {
|
|
|
1477
1339
|
return _ref139.apply(this, arguments);
|
|
1478
1340
|
};
|
|
1479
1341
|
}();
|
|
1480
|
-
exports.
|
|
1481
|
-
var ssh_server = function () {
|
|
1342
|
+
var ssh_server = exports.ssh_server = function () {
|
|
1482
1343
|
var _ref140 = _asyncToGenerator(function* (sdk, ssh_server_id, options) {
|
|
1483
1344
|
ssh_server_id = (0, _sdkRtl.encodeParam)(ssh_server_id);
|
|
1484
1345
|
return sdk.get("/ssh_server/".concat(ssh_server_id), null, null, options);
|
|
@@ -1487,8 +1348,7 @@ var ssh_server = function () {
|
|
|
1487
1348
|
return _ref140.apply(this, arguments);
|
|
1488
1349
|
};
|
|
1489
1350
|
}();
|
|
1490
|
-
exports.
|
|
1491
|
-
var update_ssh_server = function () {
|
|
1351
|
+
var update_ssh_server = exports.update_ssh_server = function () {
|
|
1492
1352
|
var _ref141 = _asyncToGenerator(function* (sdk, ssh_server_id, body, options) {
|
|
1493
1353
|
ssh_server_id = (0, _sdkRtl.encodeParam)(ssh_server_id);
|
|
1494
1354
|
return sdk.patch("/ssh_server/".concat(ssh_server_id), null, body, options);
|
|
@@ -1497,8 +1357,7 @@ var update_ssh_server = function () {
|
|
|
1497
1357
|
return _ref141.apply(this, arguments);
|
|
1498
1358
|
};
|
|
1499
1359
|
}();
|
|
1500
|
-
exports.
|
|
1501
|
-
var delete_ssh_server = function () {
|
|
1360
|
+
var delete_ssh_server = exports.delete_ssh_server = function () {
|
|
1502
1361
|
var _ref142 = _asyncToGenerator(function* (sdk, ssh_server_id, options) {
|
|
1503
1362
|
ssh_server_id = (0, _sdkRtl.encodeParam)(ssh_server_id);
|
|
1504
1363
|
return sdk.delete("/ssh_server/".concat(ssh_server_id), null, null, options);
|
|
@@ -1507,8 +1366,7 @@ var delete_ssh_server = function () {
|
|
|
1507
1366
|
return _ref142.apply(this, arguments);
|
|
1508
1367
|
};
|
|
1509
1368
|
}();
|
|
1510
|
-
exports.
|
|
1511
|
-
var test_ssh_server = function () {
|
|
1369
|
+
var test_ssh_server = exports.test_ssh_server = function () {
|
|
1512
1370
|
var _ref143 = _asyncToGenerator(function* (sdk, ssh_server_id, options) {
|
|
1513
1371
|
ssh_server_id = (0, _sdkRtl.encodeParam)(ssh_server_id);
|
|
1514
1372
|
return sdk.get("/ssh_server/".concat(ssh_server_id, "/test"), null, null, options);
|
|
@@ -1517,8 +1375,7 @@ var test_ssh_server = function () {
|
|
|
1517
1375
|
return _ref143.apply(this, arguments);
|
|
1518
1376
|
};
|
|
1519
1377
|
}();
|
|
1520
|
-
exports.
|
|
1521
|
-
var all_ssh_tunnels = function () {
|
|
1378
|
+
var all_ssh_tunnels = exports.all_ssh_tunnels = function () {
|
|
1522
1379
|
var _ref144 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1523
1380
|
return sdk.get('/ssh_tunnels', {
|
|
1524
1381
|
fields
|
|
@@ -1528,8 +1385,7 @@ var all_ssh_tunnels = function () {
|
|
|
1528
1385
|
return _ref144.apply(this, arguments);
|
|
1529
1386
|
};
|
|
1530
1387
|
}();
|
|
1531
|
-
exports.
|
|
1532
|
-
var create_ssh_tunnel = function () {
|
|
1388
|
+
var create_ssh_tunnel = exports.create_ssh_tunnel = function () {
|
|
1533
1389
|
var _ref145 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1534
1390
|
return sdk.post('/ssh_tunnels', null, body, options);
|
|
1535
1391
|
});
|
|
@@ -1537,8 +1393,7 @@ var create_ssh_tunnel = function () {
|
|
|
1537
1393
|
return _ref145.apply(this, arguments);
|
|
1538
1394
|
};
|
|
1539
1395
|
}();
|
|
1540
|
-
exports.
|
|
1541
|
-
var ssh_tunnel = function () {
|
|
1396
|
+
var ssh_tunnel = exports.ssh_tunnel = function () {
|
|
1542
1397
|
var _ref146 = _asyncToGenerator(function* (sdk, ssh_tunnel_id, options) {
|
|
1543
1398
|
ssh_tunnel_id = (0, _sdkRtl.encodeParam)(ssh_tunnel_id);
|
|
1544
1399
|
return sdk.get("/ssh_tunnel/".concat(ssh_tunnel_id), null, null, options);
|
|
@@ -1547,8 +1402,7 @@ var ssh_tunnel = function () {
|
|
|
1547
1402
|
return _ref146.apply(this, arguments);
|
|
1548
1403
|
};
|
|
1549
1404
|
}();
|
|
1550
|
-
exports.
|
|
1551
|
-
var update_ssh_tunnel = function () {
|
|
1405
|
+
var update_ssh_tunnel = exports.update_ssh_tunnel = function () {
|
|
1552
1406
|
var _ref147 = _asyncToGenerator(function* (sdk, ssh_tunnel_id, body, options) {
|
|
1553
1407
|
ssh_tunnel_id = (0, _sdkRtl.encodeParam)(ssh_tunnel_id);
|
|
1554
1408
|
return sdk.patch("/ssh_tunnel/".concat(ssh_tunnel_id), null, body, options);
|
|
@@ -1557,8 +1411,7 @@ var update_ssh_tunnel = function () {
|
|
|
1557
1411
|
return _ref147.apply(this, arguments);
|
|
1558
1412
|
};
|
|
1559
1413
|
}();
|
|
1560
|
-
exports.
|
|
1561
|
-
var delete_ssh_tunnel = function () {
|
|
1414
|
+
var delete_ssh_tunnel = exports.delete_ssh_tunnel = function () {
|
|
1562
1415
|
var _ref148 = _asyncToGenerator(function* (sdk, ssh_tunnel_id, options) {
|
|
1563
1416
|
ssh_tunnel_id = (0, _sdkRtl.encodeParam)(ssh_tunnel_id);
|
|
1564
1417
|
return sdk.delete("/ssh_tunnel/".concat(ssh_tunnel_id), null, null, options);
|
|
@@ -1567,8 +1420,7 @@ var delete_ssh_tunnel = function () {
|
|
|
1567
1420
|
return _ref148.apply(this, arguments);
|
|
1568
1421
|
};
|
|
1569
1422
|
}();
|
|
1570
|
-
exports.
|
|
1571
|
-
var test_ssh_tunnel = function () {
|
|
1423
|
+
var test_ssh_tunnel = exports.test_ssh_tunnel = function () {
|
|
1572
1424
|
var _ref149 = _asyncToGenerator(function* (sdk, ssh_tunnel_id, options) {
|
|
1573
1425
|
ssh_tunnel_id = (0, _sdkRtl.encodeParam)(ssh_tunnel_id);
|
|
1574
1426
|
return sdk.get("/ssh_tunnel/".concat(ssh_tunnel_id, "/test"), null, null, options);
|
|
@@ -1577,8 +1429,7 @@ var test_ssh_tunnel = function () {
|
|
|
1577
1429
|
return _ref149.apply(this, arguments);
|
|
1578
1430
|
};
|
|
1579
1431
|
}();
|
|
1580
|
-
exports.
|
|
1581
|
-
var ssh_public_key = function () {
|
|
1432
|
+
var ssh_public_key = exports.ssh_public_key = function () {
|
|
1582
1433
|
var _ref150 = _asyncToGenerator(function* (sdk, options) {
|
|
1583
1434
|
return sdk.get('/ssh_public_key', null, null, options);
|
|
1584
1435
|
});
|
|
@@ -1586,8 +1437,7 @@ var ssh_public_key = function () {
|
|
|
1586
1437
|
return _ref150.apply(this, arguments);
|
|
1587
1438
|
};
|
|
1588
1439
|
}();
|
|
1589
|
-
exports.
|
|
1590
|
-
var search_content_favorites = function () {
|
|
1440
|
+
var search_content_favorites = exports.search_content_favorites = function () {
|
|
1591
1441
|
var _ref151 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1592
1442
|
return sdk.get('/content_favorite/search', {
|
|
1593
1443
|
id: request.id,
|
|
@@ -1607,8 +1457,7 @@ var search_content_favorites = function () {
|
|
|
1607
1457
|
return _ref151.apply(this, arguments);
|
|
1608
1458
|
};
|
|
1609
1459
|
}();
|
|
1610
|
-
exports.
|
|
1611
|
-
var content_favorite = function () {
|
|
1460
|
+
var content_favorite = exports.content_favorite = function () {
|
|
1612
1461
|
var _ref152 = _asyncToGenerator(function* (sdk, content_favorite_id, fields, options) {
|
|
1613
1462
|
content_favorite_id = (0, _sdkRtl.encodeParam)(content_favorite_id);
|
|
1614
1463
|
return sdk.get("/content_favorite/".concat(content_favorite_id), {
|
|
@@ -1619,8 +1468,7 @@ var content_favorite = function () {
|
|
|
1619
1468
|
return _ref152.apply(this, arguments);
|
|
1620
1469
|
};
|
|
1621
1470
|
}();
|
|
1622
|
-
exports.
|
|
1623
|
-
var delete_content_favorite = function () {
|
|
1471
|
+
var delete_content_favorite = exports.delete_content_favorite = function () {
|
|
1624
1472
|
var _ref153 = _asyncToGenerator(function* (sdk, content_favorite_id, options) {
|
|
1625
1473
|
content_favorite_id = (0, _sdkRtl.encodeParam)(content_favorite_id);
|
|
1626
1474
|
return sdk.delete("/content_favorite/".concat(content_favorite_id), null, null, options);
|
|
@@ -1629,8 +1477,7 @@ var delete_content_favorite = function () {
|
|
|
1629
1477
|
return _ref153.apply(this, arguments);
|
|
1630
1478
|
};
|
|
1631
1479
|
}();
|
|
1632
|
-
exports.
|
|
1633
|
-
var create_content_favorite = function () {
|
|
1480
|
+
var create_content_favorite = exports.create_content_favorite = function () {
|
|
1634
1481
|
var _ref154 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1635
1482
|
return sdk.post('/content_favorite', null, body, options);
|
|
1636
1483
|
});
|
|
@@ -1638,8 +1485,7 @@ var create_content_favorite = function () {
|
|
|
1638
1485
|
return _ref154.apply(this, arguments);
|
|
1639
1486
|
};
|
|
1640
1487
|
}();
|
|
1641
|
-
exports.
|
|
1642
|
-
var all_content_metadatas = function () {
|
|
1488
|
+
var all_content_metadatas = exports.all_content_metadatas = function () {
|
|
1643
1489
|
var _ref155 = _asyncToGenerator(function* (sdk, parent_id, fields, options) {
|
|
1644
1490
|
return sdk.get('/content_metadata', {
|
|
1645
1491
|
parent_id,
|
|
@@ -1650,8 +1496,7 @@ var all_content_metadatas = function () {
|
|
|
1650
1496
|
return _ref155.apply(this, arguments);
|
|
1651
1497
|
};
|
|
1652
1498
|
}();
|
|
1653
|
-
exports.
|
|
1654
|
-
var content_metadata = function () {
|
|
1499
|
+
var content_metadata = exports.content_metadata = function () {
|
|
1655
1500
|
var _ref156 = _asyncToGenerator(function* (sdk, content_metadata_id, fields, options) {
|
|
1656
1501
|
content_metadata_id = (0, _sdkRtl.encodeParam)(content_metadata_id);
|
|
1657
1502
|
return sdk.get("/content_metadata/".concat(content_metadata_id), {
|
|
@@ -1662,8 +1507,7 @@ var content_metadata = function () {
|
|
|
1662
1507
|
return _ref156.apply(this, arguments);
|
|
1663
1508
|
};
|
|
1664
1509
|
}();
|
|
1665
|
-
exports.
|
|
1666
|
-
var update_content_metadata = function () {
|
|
1510
|
+
var update_content_metadata = exports.update_content_metadata = function () {
|
|
1667
1511
|
var _ref157 = _asyncToGenerator(function* (sdk, content_metadata_id, body, options) {
|
|
1668
1512
|
content_metadata_id = (0, _sdkRtl.encodeParam)(content_metadata_id);
|
|
1669
1513
|
return sdk.patch("/content_metadata/".concat(content_metadata_id), null, body, options);
|
|
@@ -1672,8 +1516,7 @@ var update_content_metadata = function () {
|
|
|
1672
1516
|
return _ref157.apply(this, arguments);
|
|
1673
1517
|
};
|
|
1674
1518
|
}();
|
|
1675
|
-
exports.
|
|
1676
|
-
var all_content_metadata_accesses = function () {
|
|
1519
|
+
var all_content_metadata_accesses = exports.all_content_metadata_accesses = function () {
|
|
1677
1520
|
var _ref158 = _asyncToGenerator(function* (sdk, content_metadata_id, fields, options) {
|
|
1678
1521
|
return sdk.get('/content_metadata_access', {
|
|
1679
1522
|
content_metadata_id,
|
|
@@ -1684,8 +1527,7 @@ var all_content_metadata_accesses = function () {
|
|
|
1684
1527
|
return _ref158.apply(this, arguments);
|
|
1685
1528
|
};
|
|
1686
1529
|
}();
|
|
1687
|
-
exports.
|
|
1688
|
-
var create_content_metadata_access = function () {
|
|
1530
|
+
var create_content_metadata_access = exports.create_content_metadata_access = function () {
|
|
1689
1531
|
var _ref159 = _asyncToGenerator(function* (sdk, body, send_boards_notification_email, options) {
|
|
1690
1532
|
return sdk.post('/content_metadata_access', {
|
|
1691
1533
|
send_boards_notification_email
|
|
@@ -1695,8 +1537,7 @@ var create_content_metadata_access = function () {
|
|
|
1695
1537
|
return _ref159.apply(this, arguments);
|
|
1696
1538
|
};
|
|
1697
1539
|
}();
|
|
1698
|
-
exports.
|
|
1699
|
-
var update_content_metadata_access = function () {
|
|
1540
|
+
var update_content_metadata_access = exports.update_content_metadata_access = function () {
|
|
1700
1541
|
var _ref160 = _asyncToGenerator(function* (sdk, content_metadata_access_id, body, options) {
|
|
1701
1542
|
content_metadata_access_id = (0, _sdkRtl.encodeParam)(content_metadata_access_id);
|
|
1702
1543
|
return sdk.put("/content_metadata_access/".concat(content_metadata_access_id), null, body, options);
|
|
@@ -1705,8 +1546,7 @@ var update_content_metadata_access = function () {
|
|
|
1705
1546
|
return _ref160.apply(this, arguments);
|
|
1706
1547
|
};
|
|
1707
1548
|
}();
|
|
1708
|
-
exports.
|
|
1709
|
-
var delete_content_metadata_access = function () {
|
|
1549
|
+
var delete_content_metadata_access = exports.delete_content_metadata_access = function () {
|
|
1710
1550
|
var _ref161 = _asyncToGenerator(function* (sdk, content_metadata_access_id, options) {
|
|
1711
1551
|
content_metadata_access_id = (0, _sdkRtl.encodeParam)(content_metadata_access_id);
|
|
1712
1552
|
return sdk.delete("/content_metadata_access/".concat(content_metadata_access_id), null, null, options);
|
|
@@ -1715,8 +1555,7 @@ var delete_content_metadata_access = function () {
|
|
|
1715
1555
|
return _ref161.apply(this, arguments);
|
|
1716
1556
|
};
|
|
1717
1557
|
}();
|
|
1718
|
-
exports.
|
|
1719
|
-
var search_content = function () {
|
|
1558
|
+
var search_content = exports.search_content = function () {
|
|
1720
1559
|
var _ref162 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1721
1560
|
request.terms = (0, _sdkRtl.encodeParam)(request.terms);
|
|
1722
1561
|
return sdk.get("/content/".concat(request.terms), {
|
|
@@ -1732,8 +1571,7 @@ var search_content = function () {
|
|
|
1732
1571
|
return _ref162.apply(this, arguments);
|
|
1733
1572
|
};
|
|
1734
1573
|
}();
|
|
1735
|
-
exports.
|
|
1736
|
-
var content_thumbnail = function () {
|
|
1574
|
+
var content_thumbnail = exports.content_thumbnail = function () {
|
|
1737
1575
|
var _ref163 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1738
1576
|
request.type = (0, _sdkRtl.encodeParam)(request.type);
|
|
1739
1577
|
request.resource_id = (0, _sdkRtl.encodeParam)(request.resource_id);
|
|
@@ -1749,8 +1587,7 @@ var content_thumbnail = function () {
|
|
|
1749
1587
|
return _ref163.apply(this, arguments);
|
|
1750
1588
|
};
|
|
1751
1589
|
}();
|
|
1752
|
-
exports.
|
|
1753
|
-
var content_validation = function () {
|
|
1590
|
+
var content_validation = exports.content_validation = function () {
|
|
1754
1591
|
var _ref164 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1755
1592
|
return sdk.get('/content_validation', {
|
|
1756
1593
|
fields
|
|
@@ -1760,8 +1597,7 @@ var content_validation = function () {
|
|
|
1760
1597
|
return _ref164.apply(this, arguments);
|
|
1761
1598
|
};
|
|
1762
1599
|
}();
|
|
1763
|
-
exports.
|
|
1764
|
-
var search_content_views = function () {
|
|
1600
|
+
var search_content_views = exports.search_content_views = function () {
|
|
1765
1601
|
var _ref165 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1766
1602
|
return sdk.get('/content_view/search', {
|
|
1767
1603
|
view_count: request.view_count,
|
|
@@ -1783,8 +1619,7 @@ var search_content_views = function () {
|
|
|
1783
1619
|
return _ref165.apply(this, arguments);
|
|
1784
1620
|
};
|
|
1785
1621
|
}();
|
|
1786
|
-
exports.
|
|
1787
|
-
var vector_thumbnail = function () {
|
|
1622
|
+
var vector_thumbnail = exports.vector_thumbnail = function () {
|
|
1788
1623
|
var _ref166 = _asyncToGenerator(function* (sdk, type, resource_id, reload, options) {
|
|
1789
1624
|
type = (0, _sdkRtl.encodeParam)(type);
|
|
1790
1625
|
resource_id = (0, _sdkRtl.encodeParam)(resource_id);
|
|
@@ -1796,8 +1631,7 @@ var vector_thumbnail = function () {
|
|
|
1796
1631
|
return _ref166.apply(this, arguments);
|
|
1797
1632
|
};
|
|
1798
1633
|
}();
|
|
1799
|
-
exports.
|
|
1800
|
-
var all_dashboards = function () {
|
|
1634
|
+
var all_dashboards = exports.all_dashboards = function () {
|
|
1801
1635
|
var _ref167 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1802
1636
|
return sdk.get('/dashboards', {
|
|
1803
1637
|
fields
|
|
@@ -1807,8 +1641,7 @@ var all_dashboards = function () {
|
|
|
1807
1641
|
return _ref167.apply(this, arguments);
|
|
1808
1642
|
};
|
|
1809
1643
|
}();
|
|
1810
|
-
exports.
|
|
1811
|
-
var create_dashboard = function () {
|
|
1644
|
+
var create_dashboard = exports.create_dashboard = function () {
|
|
1812
1645
|
var _ref168 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1813
1646
|
return sdk.post('/dashboards', null, body, options);
|
|
1814
1647
|
});
|
|
@@ -1816,8 +1649,7 @@ var create_dashboard = function () {
|
|
|
1816
1649
|
return _ref168.apply(this, arguments);
|
|
1817
1650
|
};
|
|
1818
1651
|
}();
|
|
1819
|
-
exports.
|
|
1820
|
-
var search_dashboards = function () {
|
|
1652
|
+
var search_dashboards = exports.search_dashboards = function () {
|
|
1821
1653
|
var _ref169 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1822
1654
|
return sdk.get('/dashboards/search', {
|
|
1823
1655
|
id: request.id,
|
|
@@ -1846,8 +1678,7 @@ var search_dashboards = function () {
|
|
|
1846
1678
|
return _ref169.apply(this, arguments);
|
|
1847
1679
|
};
|
|
1848
1680
|
}();
|
|
1849
|
-
exports.
|
|
1850
|
-
var import_lookml_dashboard = function () {
|
|
1681
|
+
var import_lookml_dashboard = exports.import_lookml_dashboard = function () {
|
|
1851
1682
|
var _ref170 = _asyncToGenerator(function* (sdk, lookml_dashboard_id, space_id, body, raw_locale, options) {
|
|
1852
1683
|
lookml_dashboard_id = (0, _sdkRtl.encodeParam)(lookml_dashboard_id);
|
|
1853
1684
|
space_id = (0, _sdkRtl.encodeParam)(space_id);
|
|
@@ -1859,8 +1690,7 @@ var import_lookml_dashboard = function () {
|
|
|
1859
1690
|
return _ref170.apply(this, arguments);
|
|
1860
1691
|
};
|
|
1861
1692
|
}();
|
|
1862
|
-
exports.
|
|
1863
|
-
var sync_lookml_dashboard = function () {
|
|
1693
|
+
var sync_lookml_dashboard = exports.sync_lookml_dashboard = function () {
|
|
1864
1694
|
var _ref171 = _asyncToGenerator(function* (sdk, lookml_dashboard_id, body, raw_locale, options) {
|
|
1865
1695
|
lookml_dashboard_id = (0, _sdkRtl.encodeParam)(lookml_dashboard_id);
|
|
1866
1696
|
return sdk.patch("/dashboards/".concat(lookml_dashboard_id, "/sync"), {
|
|
@@ -1871,8 +1701,7 @@ var sync_lookml_dashboard = function () {
|
|
|
1871
1701
|
return _ref171.apply(this, arguments);
|
|
1872
1702
|
};
|
|
1873
1703
|
}();
|
|
1874
|
-
exports.
|
|
1875
|
-
var dashboard = function () {
|
|
1704
|
+
var dashboard = exports.dashboard = function () {
|
|
1876
1705
|
var _ref172 = _asyncToGenerator(function* (sdk, dashboard_id, fields, options) {
|
|
1877
1706
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1878
1707
|
return sdk.get("/dashboards/".concat(dashboard_id), {
|
|
@@ -1883,8 +1712,7 @@ var dashboard = function () {
|
|
|
1883
1712
|
return _ref172.apply(this, arguments);
|
|
1884
1713
|
};
|
|
1885
1714
|
}();
|
|
1886
|
-
exports.
|
|
1887
|
-
var update_dashboard = function () {
|
|
1715
|
+
var update_dashboard = exports.update_dashboard = function () {
|
|
1888
1716
|
var _ref173 = _asyncToGenerator(function* (sdk, dashboard_id, body, options) {
|
|
1889
1717
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1890
1718
|
return sdk.patch("/dashboards/".concat(dashboard_id), null, body, options);
|
|
@@ -1893,8 +1721,7 @@ var update_dashboard = function () {
|
|
|
1893
1721
|
return _ref173.apply(this, arguments);
|
|
1894
1722
|
};
|
|
1895
1723
|
}();
|
|
1896
|
-
exports.
|
|
1897
|
-
var delete_dashboard = function () {
|
|
1724
|
+
var delete_dashboard = exports.delete_dashboard = function () {
|
|
1898
1725
|
var _ref174 = _asyncToGenerator(function* (sdk, dashboard_id, options) {
|
|
1899
1726
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1900
1727
|
return sdk.delete("/dashboards/".concat(dashboard_id), null, null, options);
|
|
@@ -1903,8 +1730,7 @@ var delete_dashboard = function () {
|
|
|
1903
1730
|
return _ref174.apply(this, arguments);
|
|
1904
1731
|
};
|
|
1905
1732
|
}();
|
|
1906
|
-
exports.
|
|
1907
|
-
var dashboard_aggregate_table_lookml = function () {
|
|
1733
|
+
var dashboard_aggregate_table_lookml = exports.dashboard_aggregate_table_lookml = function () {
|
|
1908
1734
|
var _ref175 = _asyncToGenerator(function* (sdk, dashboard_id, options) {
|
|
1909
1735
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1910
1736
|
return sdk.get("/dashboards/aggregate_table_lookml/".concat(dashboard_id), null, null, options);
|
|
@@ -1913,8 +1739,7 @@ var dashboard_aggregate_table_lookml = function () {
|
|
|
1913
1739
|
return _ref175.apply(this, arguments);
|
|
1914
1740
|
};
|
|
1915
1741
|
}();
|
|
1916
|
-
exports.
|
|
1917
|
-
var dashboard_lookml = function () {
|
|
1742
|
+
var dashboard_lookml = exports.dashboard_lookml = function () {
|
|
1918
1743
|
var _ref176 = _asyncToGenerator(function* (sdk, dashboard_id, options) {
|
|
1919
1744
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1920
1745
|
return sdk.get("/dashboards/lookml/".concat(dashboard_id), null, null, options);
|
|
@@ -1923,8 +1748,7 @@ var dashboard_lookml = function () {
|
|
|
1923
1748
|
return _ref176.apply(this, arguments);
|
|
1924
1749
|
};
|
|
1925
1750
|
}();
|
|
1926
|
-
exports.
|
|
1927
|
-
var move_dashboard = function () {
|
|
1751
|
+
var move_dashboard = exports.move_dashboard = function () {
|
|
1928
1752
|
var _ref177 = _asyncToGenerator(function* (sdk, dashboard_id, folder_id, options) {
|
|
1929
1753
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1930
1754
|
return sdk.patch("/dashboards/".concat(dashboard_id, "/move"), {
|
|
@@ -1935,8 +1759,7 @@ var move_dashboard = function () {
|
|
|
1935
1759
|
return _ref177.apply(this, arguments);
|
|
1936
1760
|
};
|
|
1937
1761
|
}();
|
|
1938
|
-
exports.
|
|
1939
|
-
var import_dashboard_from_lookml = function () {
|
|
1762
|
+
var import_dashboard_from_lookml = exports.import_dashboard_from_lookml = function () {
|
|
1940
1763
|
var _ref178 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1941
1764
|
return sdk.post('/dashboards/lookml', null, body, options);
|
|
1942
1765
|
});
|
|
@@ -1944,8 +1767,7 @@ var import_dashboard_from_lookml = function () {
|
|
|
1944
1767
|
return _ref178.apply(this, arguments);
|
|
1945
1768
|
};
|
|
1946
1769
|
}();
|
|
1947
|
-
exports.
|
|
1948
|
-
var create_dashboard_from_lookml = function () {
|
|
1770
|
+
var create_dashboard_from_lookml = exports.create_dashboard_from_lookml = function () {
|
|
1949
1771
|
var _ref179 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1950
1772
|
return sdk.post('/dashboards/from_lookml', null, body, options);
|
|
1951
1773
|
});
|
|
@@ -1953,8 +1775,7 @@ var create_dashboard_from_lookml = function () {
|
|
|
1953
1775
|
return _ref179.apply(this, arguments);
|
|
1954
1776
|
};
|
|
1955
1777
|
}();
|
|
1956
|
-
exports.
|
|
1957
|
-
var copy_dashboard = function () {
|
|
1778
|
+
var copy_dashboard = exports.copy_dashboard = function () {
|
|
1958
1779
|
var _ref180 = _asyncToGenerator(function* (sdk, dashboard_id, folder_id, options) {
|
|
1959
1780
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1960
1781
|
return sdk.post("/dashboards/".concat(dashboard_id, "/copy"), {
|
|
@@ -1965,8 +1786,7 @@ var copy_dashboard = function () {
|
|
|
1965
1786
|
return _ref180.apply(this, arguments);
|
|
1966
1787
|
};
|
|
1967
1788
|
}();
|
|
1968
|
-
exports.
|
|
1969
|
-
var search_dashboard_elements = function () {
|
|
1789
|
+
var search_dashboard_elements = exports.search_dashboard_elements = function () {
|
|
1970
1790
|
var _ref181 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1971
1791
|
return sdk.get('/dashboard_elements/search', {
|
|
1972
1792
|
dashboard_id: request.dashboard_id,
|
|
@@ -1982,8 +1802,7 @@ var search_dashboard_elements = function () {
|
|
|
1982
1802
|
return _ref181.apply(this, arguments);
|
|
1983
1803
|
};
|
|
1984
1804
|
}();
|
|
1985
|
-
exports.
|
|
1986
|
-
var dashboard_element = function () {
|
|
1805
|
+
var dashboard_element = exports.dashboard_element = function () {
|
|
1987
1806
|
var _ref182 = _asyncToGenerator(function* (sdk, dashboard_element_id, fields, options) {
|
|
1988
1807
|
dashboard_element_id = (0, _sdkRtl.encodeParam)(dashboard_element_id);
|
|
1989
1808
|
return sdk.get("/dashboard_elements/".concat(dashboard_element_id), {
|
|
@@ -1994,8 +1813,7 @@ var dashboard_element = function () {
|
|
|
1994
1813
|
return _ref182.apply(this, arguments);
|
|
1995
1814
|
};
|
|
1996
1815
|
}();
|
|
1997
|
-
exports.
|
|
1998
|
-
var update_dashboard_element = function () {
|
|
1816
|
+
var update_dashboard_element = exports.update_dashboard_element = function () {
|
|
1999
1817
|
var _ref183 = _asyncToGenerator(function* (sdk, dashboard_element_id, body, fields, options) {
|
|
2000
1818
|
dashboard_element_id = (0, _sdkRtl.encodeParam)(dashboard_element_id);
|
|
2001
1819
|
return sdk.patch("/dashboard_elements/".concat(dashboard_element_id), {
|
|
@@ -2006,8 +1824,7 @@ var update_dashboard_element = function () {
|
|
|
2006
1824
|
return _ref183.apply(this, arguments);
|
|
2007
1825
|
};
|
|
2008
1826
|
}();
|
|
2009
|
-
exports.
|
|
2010
|
-
var delete_dashboard_element = function () {
|
|
1827
|
+
var delete_dashboard_element = exports.delete_dashboard_element = function () {
|
|
2011
1828
|
var _ref184 = _asyncToGenerator(function* (sdk, dashboard_element_id, options) {
|
|
2012
1829
|
dashboard_element_id = (0, _sdkRtl.encodeParam)(dashboard_element_id);
|
|
2013
1830
|
return sdk.delete("/dashboard_elements/".concat(dashboard_element_id), null, null, options);
|
|
@@ -2016,8 +1833,7 @@ var delete_dashboard_element = function () {
|
|
|
2016
1833
|
return _ref184.apply(this, arguments);
|
|
2017
1834
|
};
|
|
2018
1835
|
}();
|
|
2019
|
-
exports.
|
|
2020
|
-
var dashboard_dashboard_elements = function () {
|
|
1836
|
+
var dashboard_dashboard_elements = exports.dashboard_dashboard_elements = function () {
|
|
2021
1837
|
var _ref185 = _asyncToGenerator(function* (sdk, dashboard_id, fields, options) {
|
|
2022
1838
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
2023
1839
|
return sdk.get("/dashboards/".concat(dashboard_id, "/dashboard_elements"), {
|
|
@@ -2028,8 +1844,7 @@ var dashboard_dashboard_elements = function () {
|
|
|
2028
1844
|
return _ref185.apply(this, arguments);
|
|
2029
1845
|
};
|
|
2030
1846
|
}();
|
|
2031
|
-
exports.
|
|
2032
|
-
var create_dashboard_element = function () {
|
|
1847
|
+
var create_dashboard_element = exports.create_dashboard_element = function () {
|
|
2033
1848
|
var _ref186 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2034
1849
|
return sdk.post('/dashboard_elements', {
|
|
2035
1850
|
fields: request.fields,
|
|
@@ -2040,8 +1855,7 @@ var create_dashboard_element = function () {
|
|
|
2040
1855
|
return _ref186.apply(this, arguments);
|
|
2041
1856
|
};
|
|
2042
1857
|
}();
|
|
2043
|
-
exports.
|
|
2044
|
-
var dashboard_filter = function () {
|
|
1858
|
+
var dashboard_filter = exports.dashboard_filter = function () {
|
|
2045
1859
|
var _ref187 = _asyncToGenerator(function* (sdk, dashboard_filter_id, fields, options) {
|
|
2046
1860
|
dashboard_filter_id = (0, _sdkRtl.encodeParam)(dashboard_filter_id);
|
|
2047
1861
|
return sdk.get("/dashboard_filters/".concat(dashboard_filter_id), {
|
|
@@ -2052,8 +1866,7 @@ var dashboard_filter = function () {
|
|
|
2052
1866
|
return _ref187.apply(this, arguments);
|
|
2053
1867
|
};
|
|
2054
1868
|
}();
|
|
2055
|
-
exports.
|
|
2056
|
-
var update_dashboard_filter = function () {
|
|
1869
|
+
var update_dashboard_filter = exports.update_dashboard_filter = function () {
|
|
2057
1870
|
var _ref188 = _asyncToGenerator(function* (sdk, dashboard_filter_id, body, fields, options) {
|
|
2058
1871
|
dashboard_filter_id = (0, _sdkRtl.encodeParam)(dashboard_filter_id);
|
|
2059
1872
|
return sdk.patch("/dashboard_filters/".concat(dashboard_filter_id), {
|
|
@@ -2064,8 +1877,7 @@ var update_dashboard_filter = function () {
|
|
|
2064
1877
|
return _ref188.apply(this, arguments);
|
|
2065
1878
|
};
|
|
2066
1879
|
}();
|
|
2067
|
-
exports.
|
|
2068
|
-
var delete_dashboard_filter = function () {
|
|
1880
|
+
var delete_dashboard_filter = exports.delete_dashboard_filter = function () {
|
|
2069
1881
|
var _ref189 = _asyncToGenerator(function* (sdk, dashboard_filter_id, options) {
|
|
2070
1882
|
dashboard_filter_id = (0, _sdkRtl.encodeParam)(dashboard_filter_id);
|
|
2071
1883
|
return sdk.delete("/dashboard_filters/".concat(dashboard_filter_id), null, null, options);
|
|
@@ -2074,8 +1886,7 @@ var delete_dashboard_filter = function () {
|
|
|
2074
1886
|
return _ref189.apply(this, arguments);
|
|
2075
1887
|
};
|
|
2076
1888
|
}();
|
|
2077
|
-
exports.
|
|
2078
|
-
var dashboard_dashboard_filters = function () {
|
|
1889
|
+
var dashboard_dashboard_filters = exports.dashboard_dashboard_filters = function () {
|
|
2079
1890
|
var _ref190 = _asyncToGenerator(function* (sdk, dashboard_id, fields, options) {
|
|
2080
1891
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
2081
1892
|
return sdk.get("/dashboards/".concat(dashboard_id, "/dashboard_filters"), {
|
|
@@ -2086,8 +1897,7 @@ var dashboard_dashboard_filters = function () {
|
|
|
2086
1897
|
return _ref190.apply(this, arguments);
|
|
2087
1898
|
};
|
|
2088
1899
|
}();
|
|
2089
|
-
exports.
|
|
2090
|
-
var create_dashboard_filter = function () {
|
|
1900
|
+
var create_dashboard_filter = exports.create_dashboard_filter = function () {
|
|
2091
1901
|
var _ref191 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
2092
1902
|
return sdk.post('/dashboard_filters', {
|
|
2093
1903
|
fields
|
|
@@ -2097,8 +1907,7 @@ var create_dashboard_filter = function () {
|
|
|
2097
1907
|
return _ref191.apply(this, arguments);
|
|
2098
1908
|
};
|
|
2099
1909
|
}();
|
|
2100
|
-
exports.
|
|
2101
|
-
var dashboard_layout_component = function () {
|
|
1910
|
+
var dashboard_layout_component = exports.dashboard_layout_component = function () {
|
|
2102
1911
|
var _ref192 = _asyncToGenerator(function* (sdk, dashboard_layout_component_id, fields, options) {
|
|
2103
1912
|
dashboard_layout_component_id = (0, _sdkRtl.encodeParam)(dashboard_layout_component_id);
|
|
2104
1913
|
return sdk.get("/dashboard_layout_components/".concat(dashboard_layout_component_id), {
|
|
@@ -2109,8 +1918,7 @@ var dashboard_layout_component = function () {
|
|
|
2109
1918
|
return _ref192.apply(this, arguments);
|
|
2110
1919
|
};
|
|
2111
1920
|
}();
|
|
2112
|
-
exports.
|
|
2113
|
-
var update_dashboard_layout_component = function () {
|
|
1921
|
+
var update_dashboard_layout_component = exports.update_dashboard_layout_component = function () {
|
|
2114
1922
|
var _ref193 = _asyncToGenerator(function* (sdk, dashboard_layout_component_id, body, fields, options) {
|
|
2115
1923
|
dashboard_layout_component_id = (0, _sdkRtl.encodeParam)(dashboard_layout_component_id);
|
|
2116
1924
|
return sdk.patch("/dashboard_layout_components/".concat(dashboard_layout_component_id), {
|
|
@@ -2121,8 +1929,7 @@ var update_dashboard_layout_component = function () {
|
|
|
2121
1929
|
return _ref193.apply(this, arguments);
|
|
2122
1930
|
};
|
|
2123
1931
|
}();
|
|
2124
|
-
exports.
|
|
2125
|
-
var dashboard_layout_dashboard_layout_components = function () {
|
|
1932
|
+
var dashboard_layout_dashboard_layout_components = exports.dashboard_layout_dashboard_layout_components = function () {
|
|
2126
1933
|
var _ref194 = _asyncToGenerator(function* (sdk, dashboard_layout_id, fields, options) {
|
|
2127
1934
|
dashboard_layout_id = (0, _sdkRtl.encodeParam)(dashboard_layout_id);
|
|
2128
1935
|
return sdk.get("/dashboard_layouts/".concat(dashboard_layout_id, "/dashboard_layout_components"), {
|
|
@@ -2133,8 +1940,7 @@ var dashboard_layout_dashboard_layout_components = function () {
|
|
|
2133
1940
|
return _ref194.apply(this, arguments);
|
|
2134
1941
|
};
|
|
2135
1942
|
}();
|
|
2136
|
-
exports.
|
|
2137
|
-
var dashboard_layout = function () {
|
|
1943
|
+
var dashboard_layout = exports.dashboard_layout = function () {
|
|
2138
1944
|
var _ref195 = _asyncToGenerator(function* (sdk, dashboard_layout_id, fields, options) {
|
|
2139
1945
|
dashboard_layout_id = (0, _sdkRtl.encodeParam)(dashboard_layout_id);
|
|
2140
1946
|
return sdk.get("/dashboard_layouts/".concat(dashboard_layout_id), {
|
|
@@ -2145,8 +1951,7 @@ var dashboard_layout = function () {
|
|
|
2145
1951
|
return _ref195.apply(this, arguments);
|
|
2146
1952
|
};
|
|
2147
1953
|
}();
|
|
2148
|
-
exports.
|
|
2149
|
-
var update_dashboard_layout = function () {
|
|
1954
|
+
var update_dashboard_layout = exports.update_dashboard_layout = function () {
|
|
2150
1955
|
var _ref196 = _asyncToGenerator(function* (sdk, dashboard_layout_id, body, fields, options) {
|
|
2151
1956
|
dashboard_layout_id = (0, _sdkRtl.encodeParam)(dashboard_layout_id);
|
|
2152
1957
|
return sdk.patch("/dashboard_layouts/".concat(dashboard_layout_id), {
|
|
@@ -2157,8 +1962,7 @@ var update_dashboard_layout = function () {
|
|
|
2157
1962
|
return _ref196.apply(this, arguments);
|
|
2158
1963
|
};
|
|
2159
1964
|
}();
|
|
2160
|
-
exports.
|
|
2161
|
-
var delete_dashboard_layout = function () {
|
|
1965
|
+
var delete_dashboard_layout = exports.delete_dashboard_layout = function () {
|
|
2162
1966
|
var _ref197 = _asyncToGenerator(function* (sdk, dashboard_layout_id, options) {
|
|
2163
1967
|
dashboard_layout_id = (0, _sdkRtl.encodeParam)(dashboard_layout_id);
|
|
2164
1968
|
return sdk.delete("/dashboard_layouts/".concat(dashboard_layout_id), null, null, options);
|
|
@@ -2167,8 +1971,7 @@ var delete_dashboard_layout = function () {
|
|
|
2167
1971
|
return _ref197.apply(this, arguments);
|
|
2168
1972
|
};
|
|
2169
1973
|
}();
|
|
2170
|
-
exports.
|
|
2171
|
-
var dashboard_dashboard_layouts = function () {
|
|
1974
|
+
var dashboard_dashboard_layouts = exports.dashboard_dashboard_layouts = function () {
|
|
2172
1975
|
var _ref198 = _asyncToGenerator(function* (sdk, dashboard_id, fields, options) {
|
|
2173
1976
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
2174
1977
|
return sdk.get("/dashboards/".concat(dashboard_id, "/dashboard_layouts"), {
|
|
@@ -2179,8 +1982,7 @@ var dashboard_dashboard_layouts = function () {
|
|
|
2179
1982
|
return _ref198.apply(this, arguments);
|
|
2180
1983
|
};
|
|
2181
1984
|
}();
|
|
2182
|
-
exports.
|
|
2183
|
-
var create_dashboard_layout = function () {
|
|
1985
|
+
var create_dashboard_layout = exports.create_dashboard_layout = function () {
|
|
2184
1986
|
var _ref199 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
2185
1987
|
return sdk.post('/dashboard_layouts', {
|
|
2186
1988
|
fields
|
|
@@ -2190,8 +1992,7 @@ var create_dashboard_layout = function () {
|
|
|
2190
1992
|
return _ref199.apply(this, arguments);
|
|
2191
1993
|
};
|
|
2192
1994
|
}();
|
|
2193
|
-
exports.
|
|
2194
|
-
var perform_data_action = function () {
|
|
1995
|
+
var perform_data_action = exports.perform_data_action = function () {
|
|
2195
1996
|
var _ref200 = _asyncToGenerator(function* (sdk, body, options) {
|
|
2196
1997
|
return sdk.post('/data_actions', null, body, options);
|
|
2197
1998
|
});
|
|
@@ -2199,8 +2000,7 @@ var perform_data_action = function () {
|
|
|
2199
2000
|
return _ref200.apply(this, arguments);
|
|
2200
2001
|
};
|
|
2201
2002
|
}();
|
|
2202
|
-
exports.
|
|
2203
|
-
var fetch_remote_data_action_form = function () {
|
|
2003
|
+
var fetch_remote_data_action_form = exports.fetch_remote_data_action_form = function () {
|
|
2204
2004
|
var _ref201 = _asyncToGenerator(function* (sdk, body, options) {
|
|
2205
2005
|
return sdk.post('/data_actions/form', null, body, options);
|
|
2206
2006
|
});
|
|
@@ -2208,8 +2008,7 @@ var fetch_remote_data_action_form = function () {
|
|
|
2208
2008
|
return _ref201.apply(this, arguments);
|
|
2209
2009
|
};
|
|
2210
2010
|
}();
|
|
2211
|
-
exports.
|
|
2212
|
-
var all_datagroups = function () {
|
|
2011
|
+
var all_datagroups = exports.all_datagroups = function () {
|
|
2213
2012
|
var _ref202 = _asyncToGenerator(function* (sdk, options) {
|
|
2214
2013
|
return sdk.get('/datagroups', null, null, options);
|
|
2215
2014
|
});
|
|
@@ -2217,8 +2016,7 @@ var all_datagroups = function () {
|
|
|
2217
2016
|
return _ref202.apply(this, arguments);
|
|
2218
2017
|
};
|
|
2219
2018
|
}();
|
|
2220
|
-
exports.
|
|
2221
|
-
var datagroup = function () {
|
|
2019
|
+
var datagroup = exports.datagroup = function () {
|
|
2222
2020
|
var _ref203 = _asyncToGenerator(function* (sdk, datagroup_id, options) {
|
|
2223
2021
|
datagroup_id = (0, _sdkRtl.encodeParam)(datagroup_id);
|
|
2224
2022
|
return sdk.get("/datagroups/".concat(datagroup_id), null, null, options);
|
|
@@ -2227,8 +2025,7 @@ var datagroup = function () {
|
|
|
2227
2025
|
return _ref203.apply(this, arguments);
|
|
2228
2026
|
};
|
|
2229
2027
|
}();
|
|
2230
|
-
exports.
|
|
2231
|
-
var update_datagroup = function () {
|
|
2028
|
+
var update_datagroup = exports.update_datagroup = function () {
|
|
2232
2029
|
var _ref204 = _asyncToGenerator(function* (sdk, datagroup_id, body, options) {
|
|
2233
2030
|
datagroup_id = (0, _sdkRtl.encodeParam)(datagroup_id);
|
|
2234
2031
|
return sdk.patch("/datagroups/".concat(datagroup_id), null, body, options);
|
|
@@ -2237,8 +2034,7 @@ var update_datagroup = function () {
|
|
|
2237
2034
|
return _ref204.apply(this, arguments);
|
|
2238
2035
|
};
|
|
2239
2036
|
}();
|
|
2240
|
-
exports.
|
|
2241
|
-
var graph_derived_tables_for_model = function () {
|
|
2037
|
+
var graph_derived_tables_for_model = exports.graph_derived_tables_for_model = function () {
|
|
2242
2038
|
var _ref205 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2243
2039
|
request.model = (0, _sdkRtl.encodeParam)(request.model);
|
|
2244
2040
|
return sdk.get("/derived_table/graph/model/".concat(request.model), {
|
|
@@ -2250,8 +2046,7 @@ var graph_derived_tables_for_model = function () {
|
|
|
2250
2046
|
return _ref205.apply(this, arguments);
|
|
2251
2047
|
};
|
|
2252
2048
|
}();
|
|
2253
|
-
exports.
|
|
2254
|
-
var graph_derived_tables_for_view = function () {
|
|
2049
|
+
var graph_derived_tables_for_view = exports.graph_derived_tables_for_view = function () {
|
|
2255
2050
|
var _ref206 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2256
2051
|
request.view = (0, _sdkRtl.encodeParam)(request.view);
|
|
2257
2052
|
return sdk.get("/derived_table/graph/view/".concat(request.view), {
|
|
@@ -2263,8 +2058,7 @@ var graph_derived_tables_for_view = function () {
|
|
|
2263
2058
|
return _ref206.apply(this, arguments);
|
|
2264
2059
|
};
|
|
2265
2060
|
}();
|
|
2266
|
-
exports.
|
|
2267
|
-
var start_pdt_build = function () {
|
|
2061
|
+
var start_pdt_build = exports.start_pdt_build = function () {
|
|
2268
2062
|
var _ref207 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2269
2063
|
request.model_name = (0, _sdkRtl.encodeParam)(request.model_name);
|
|
2270
2064
|
request.view_name = (0, _sdkRtl.encodeParam)(request.view_name);
|
|
@@ -2279,8 +2073,7 @@ var start_pdt_build = function () {
|
|
|
2279
2073
|
return _ref207.apply(this, arguments);
|
|
2280
2074
|
};
|
|
2281
2075
|
}();
|
|
2282
|
-
exports.
|
|
2283
|
-
var check_pdt_build = function () {
|
|
2076
|
+
var check_pdt_build = exports.check_pdt_build = function () {
|
|
2284
2077
|
var _ref208 = _asyncToGenerator(function* (sdk, materialization_id, options) {
|
|
2285
2078
|
materialization_id = (0, _sdkRtl.encodeParam)(materialization_id);
|
|
2286
2079
|
return sdk.get("/derived_table/".concat(materialization_id, "/status"), null, null, options);
|
|
@@ -2289,8 +2082,7 @@ var check_pdt_build = function () {
|
|
|
2289
2082
|
return _ref208.apply(this, arguments);
|
|
2290
2083
|
};
|
|
2291
2084
|
}();
|
|
2292
|
-
exports.
|
|
2293
|
-
var stop_pdt_build = function () {
|
|
2085
|
+
var stop_pdt_build = exports.stop_pdt_build = function () {
|
|
2294
2086
|
var _ref209 = _asyncToGenerator(function* (sdk, materialization_id, source, options) {
|
|
2295
2087
|
materialization_id = (0, _sdkRtl.encodeParam)(materialization_id);
|
|
2296
2088
|
return sdk.get("/derived_table/".concat(materialization_id, "/stop"), {
|
|
@@ -2301,8 +2093,7 @@ var stop_pdt_build = function () {
|
|
|
2301
2093
|
return _ref209.apply(this, arguments);
|
|
2302
2094
|
};
|
|
2303
2095
|
}();
|
|
2304
|
-
exports.
|
|
2305
|
-
var search_folders = function () {
|
|
2096
|
+
var search_folders = exports.search_folders = function () {
|
|
2306
2097
|
var _ref210 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2307
2098
|
return sdk.get('/folders/search', {
|
|
2308
2099
|
fields: request.fields,
|
|
@@ -2324,8 +2115,7 @@ var search_folders = function () {
|
|
|
2324
2115
|
return _ref210.apply(this, arguments);
|
|
2325
2116
|
};
|
|
2326
2117
|
}();
|
|
2327
|
-
exports.
|
|
2328
|
-
var folder = function () {
|
|
2118
|
+
var folder = exports.folder = function () {
|
|
2329
2119
|
var _ref211 = _asyncToGenerator(function* (sdk, folder_id, fields, options) {
|
|
2330
2120
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
2331
2121
|
return sdk.get("/folders/".concat(folder_id), {
|
|
@@ -2336,8 +2126,7 @@ var folder = function () {
|
|
|
2336
2126
|
return _ref211.apply(this, arguments);
|
|
2337
2127
|
};
|
|
2338
2128
|
}();
|
|
2339
|
-
exports.
|
|
2340
|
-
var update_folder = function () {
|
|
2129
|
+
var update_folder = exports.update_folder = function () {
|
|
2341
2130
|
var _ref212 = _asyncToGenerator(function* (sdk, folder_id, body, options) {
|
|
2342
2131
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
2343
2132
|
return sdk.patch("/folders/".concat(folder_id), null, body, options);
|
|
@@ -2346,8 +2135,7 @@ var update_folder = function () {
|
|
|
2346
2135
|
return _ref212.apply(this, arguments);
|
|
2347
2136
|
};
|
|
2348
2137
|
}();
|
|
2349
|
-
exports.
|
|
2350
|
-
var delete_folder = function () {
|
|
2138
|
+
var delete_folder = exports.delete_folder = function () {
|
|
2351
2139
|
var _ref213 = _asyncToGenerator(function* (sdk, folder_id, options) {
|
|
2352
2140
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
2353
2141
|
return sdk.delete("/folders/".concat(folder_id), null, null, options);
|
|
@@ -2356,8 +2144,7 @@ var delete_folder = function () {
|
|
|
2356
2144
|
return _ref213.apply(this, arguments);
|
|
2357
2145
|
};
|
|
2358
2146
|
}();
|
|
2359
|
-
exports.
|
|
2360
|
-
var all_folders = function () {
|
|
2147
|
+
var all_folders = exports.all_folders = function () {
|
|
2361
2148
|
var _ref214 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
2362
2149
|
return sdk.get('/folders', {
|
|
2363
2150
|
fields
|
|
@@ -2367,8 +2154,7 @@ var all_folders = function () {
|
|
|
2367
2154
|
return _ref214.apply(this, arguments);
|
|
2368
2155
|
};
|
|
2369
2156
|
}();
|
|
2370
|
-
exports.
|
|
2371
|
-
var create_folder = function () {
|
|
2157
|
+
var create_folder = exports.create_folder = function () {
|
|
2372
2158
|
var _ref215 = _asyncToGenerator(function* (sdk, body, options) {
|
|
2373
2159
|
return sdk.post('/folders', null, body, options);
|
|
2374
2160
|
});
|
|
@@ -2376,8 +2162,7 @@ var create_folder = function () {
|
|
|
2376
2162
|
return _ref215.apply(this, arguments);
|
|
2377
2163
|
};
|
|
2378
2164
|
}();
|
|
2379
|
-
exports.
|
|
2380
|
-
var folder_children = function () {
|
|
2165
|
+
var folder_children = exports.folder_children = function () {
|
|
2381
2166
|
var _ref216 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2382
2167
|
request.folder_id = (0, _sdkRtl.encodeParam)(request.folder_id);
|
|
2383
2168
|
return sdk.get("/folders/".concat(request.folder_id, "/children"), {
|
|
@@ -2393,8 +2178,7 @@ var folder_children = function () {
|
|
|
2393
2178
|
return _ref216.apply(this, arguments);
|
|
2394
2179
|
};
|
|
2395
2180
|
}();
|
|
2396
|
-
exports.
|
|
2397
|
-
var folder_children_search = function () {
|
|
2181
|
+
var folder_children_search = exports.folder_children_search = function () {
|
|
2398
2182
|
var _ref217 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2399
2183
|
request.folder_id = (0, _sdkRtl.encodeParam)(request.folder_id);
|
|
2400
2184
|
return sdk.get("/folders/".concat(request.folder_id, "/children/search"), {
|
|
@@ -2407,8 +2191,7 @@ var folder_children_search = function () {
|
|
|
2407
2191
|
return _ref217.apply(this, arguments);
|
|
2408
2192
|
};
|
|
2409
2193
|
}();
|
|
2410
|
-
exports.
|
|
2411
|
-
var folder_parent = function () {
|
|
2194
|
+
var folder_parent = exports.folder_parent = function () {
|
|
2412
2195
|
var _ref218 = _asyncToGenerator(function* (sdk, folder_id, fields, options) {
|
|
2413
2196
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
2414
2197
|
return sdk.get("/folders/".concat(folder_id, "/parent"), {
|
|
@@ -2419,8 +2202,7 @@ var folder_parent = function () {
|
|
|
2419
2202
|
return _ref218.apply(this, arguments);
|
|
2420
2203
|
};
|
|
2421
2204
|
}();
|
|
2422
|
-
exports.
|
|
2423
|
-
var folder_ancestors = function () {
|
|
2205
|
+
var folder_ancestors = exports.folder_ancestors = function () {
|
|
2424
2206
|
var _ref219 = _asyncToGenerator(function* (sdk, folder_id, fields, options) {
|
|
2425
2207
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
2426
2208
|
return sdk.get("/folders/".concat(folder_id, "/ancestors"), {
|
|
@@ -2431,8 +2213,7 @@ var folder_ancestors = function () {
|
|
|
2431
2213
|
return _ref219.apply(this, arguments);
|
|
2432
2214
|
};
|
|
2433
2215
|
}();
|
|
2434
|
-
exports.
|
|
2435
|
-
var folder_looks = function () {
|
|
2216
|
+
var folder_looks = exports.folder_looks = function () {
|
|
2436
2217
|
var _ref220 = _asyncToGenerator(function* (sdk, folder_id, fields, options) {
|
|
2437
2218
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
2438
2219
|
return sdk.get("/folders/".concat(folder_id, "/looks"), {
|
|
@@ -2443,8 +2224,7 @@ var folder_looks = function () {
|
|
|
2443
2224
|
return _ref220.apply(this, arguments);
|
|
2444
2225
|
};
|
|
2445
2226
|
}();
|
|
2446
|
-
exports.
|
|
2447
|
-
var folder_dashboards = function () {
|
|
2227
|
+
var folder_dashboards = exports.folder_dashboards = function () {
|
|
2448
2228
|
var _ref221 = _asyncToGenerator(function* (sdk, folder_id, fields, options) {
|
|
2449
2229
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
2450
2230
|
return sdk.get("/folders/".concat(folder_id, "/dashboards"), {
|
|
@@ -2455,8 +2235,7 @@ var folder_dashboards = function () {
|
|
|
2455
2235
|
return _ref221.apply(this, arguments);
|
|
2456
2236
|
};
|
|
2457
2237
|
}();
|
|
2458
|
-
exports.
|
|
2459
|
-
var all_groups = function () {
|
|
2238
|
+
var all_groups = exports.all_groups = function () {
|
|
2460
2239
|
var _ref222 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2461
2240
|
return sdk.get('/groups', {
|
|
2462
2241
|
fields: request.fields,
|
|
@@ -2474,8 +2253,7 @@ var all_groups = function () {
|
|
|
2474
2253
|
return _ref222.apply(this, arguments);
|
|
2475
2254
|
};
|
|
2476
2255
|
}();
|
|
2477
|
-
exports.
|
|
2478
|
-
var create_group = function () {
|
|
2256
|
+
var create_group = exports.create_group = function () {
|
|
2479
2257
|
var _ref223 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
2480
2258
|
return sdk.post('/groups', {
|
|
2481
2259
|
fields
|
|
@@ -2485,8 +2263,7 @@ var create_group = function () {
|
|
|
2485
2263
|
return _ref223.apply(this, arguments);
|
|
2486
2264
|
};
|
|
2487
2265
|
}();
|
|
2488
|
-
exports.
|
|
2489
|
-
var search_groups = function () {
|
|
2266
|
+
var search_groups = exports.search_groups = function () {
|
|
2490
2267
|
var _ref224 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2491
2268
|
return sdk.get('/groups/search', {
|
|
2492
2269
|
fields: request.fields,
|
|
@@ -2505,8 +2282,7 @@ var search_groups = function () {
|
|
|
2505
2282
|
return _ref224.apply(this, arguments);
|
|
2506
2283
|
};
|
|
2507
2284
|
}();
|
|
2508
|
-
exports.
|
|
2509
|
-
var search_groups_with_roles = function () {
|
|
2285
|
+
var search_groups_with_roles = exports.search_groups_with_roles = function () {
|
|
2510
2286
|
var _ref225 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2511
2287
|
return sdk.get('/groups/search/with_roles', {
|
|
2512
2288
|
fields: request.fields,
|
|
@@ -2525,8 +2301,7 @@ var search_groups_with_roles = function () {
|
|
|
2525
2301
|
return _ref225.apply(this, arguments);
|
|
2526
2302
|
};
|
|
2527
2303
|
}();
|
|
2528
|
-
exports.
|
|
2529
|
-
var search_groups_with_hierarchy = function () {
|
|
2304
|
+
var search_groups_with_hierarchy = exports.search_groups_with_hierarchy = function () {
|
|
2530
2305
|
var _ref226 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2531
2306
|
return sdk.get('/groups/search/with_hierarchy', {
|
|
2532
2307
|
fields: request.fields,
|
|
@@ -2545,8 +2320,7 @@ var search_groups_with_hierarchy = function () {
|
|
|
2545
2320
|
return _ref226.apply(this, arguments);
|
|
2546
2321
|
};
|
|
2547
2322
|
}();
|
|
2548
|
-
exports.
|
|
2549
|
-
var group = function () {
|
|
2323
|
+
var group = exports.group = function () {
|
|
2550
2324
|
var _ref227 = _asyncToGenerator(function* (sdk, group_id, fields, options) {
|
|
2551
2325
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2552
2326
|
return sdk.get("/groups/".concat(group_id), {
|
|
@@ -2557,8 +2331,7 @@ var group = function () {
|
|
|
2557
2331
|
return _ref227.apply(this, arguments);
|
|
2558
2332
|
};
|
|
2559
2333
|
}();
|
|
2560
|
-
exports.
|
|
2561
|
-
var update_group = function () {
|
|
2334
|
+
var update_group = exports.update_group = function () {
|
|
2562
2335
|
var _ref228 = _asyncToGenerator(function* (sdk, group_id, body, fields, options) {
|
|
2563
2336
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2564
2337
|
return sdk.patch("/groups/".concat(group_id), {
|
|
@@ -2569,8 +2342,7 @@ var update_group = function () {
|
|
|
2569
2342
|
return _ref228.apply(this, arguments);
|
|
2570
2343
|
};
|
|
2571
2344
|
}();
|
|
2572
|
-
exports.
|
|
2573
|
-
var delete_group = function () {
|
|
2345
|
+
var delete_group = exports.delete_group = function () {
|
|
2574
2346
|
var _ref229 = _asyncToGenerator(function* (sdk, group_id, options) {
|
|
2575
2347
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2576
2348
|
return sdk.delete("/groups/".concat(group_id), null, null, options);
|
|
@@ -2579,8 +2351,7 @@ var delete_group = function () {
|
|
|
2579
2351
|
return _ref229.apply(this, arguments);
|
|
2580
2352
|
};
|
|
2581
2353
|
}();
|
|
2582
|
-
exports.
|
|
2583
|
-
var all_group_groups = function () {
|
|
2354
|
+
var all_group_groups = exports.all_group_groups = function () {
|
|
2584
2355
|
var _ref230 = _asyncToGenerator(function* (sdk, group_id, fields, options) {
|
|
2585
2356
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2586
2357
|
return sdk.get("/groups/".concat(group_id, "/groups"), {
|
|
@@ -2591,8 +2362,7 @@ var all_group_groups = function () {
|
|
|
2591
2362
|
return _ref230.apply(this, arguments);
|
|
2592
2363
|
};
|
|
2593
2364
|
}();
|
|
2594
|
-
exports.
|
|
2595
|
-
var add_group_group = function () {
|
|
2365
|
+
var add_group_group = exports.add_group_group = function () {
|
|
2596
2366
|
var _ref231 = _asyncToGenerator(function* (sdk, group_id, body, options) {
|
|
2597
2367
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2598
2368
|
return sdk.post("/groups/".concat(group_id, "/groups"), null, body, options);
|
|
@@ -2601,8 +2371,7 @@ var add_group_group = function () {
|
|
|
2601
2371
|
return _ref231.apply(this, arguments);
|
|
2602
2372
|
};
|
|
2603
2373
|
}();
|
|
2604
|
-
exports.
|
|
2605
|
-
var all_group_users = function () {
|
|
2374
|
+
var all_group_users = exports.all_group_users = function () {
|
|
2606
2375
|
var _ref232 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2607
2376
|
request.group_id = (0, _sdkRtl.encodeParam)(request.group_id);
|
|
2608
2377
|
return sdk.get("/groups/".concat(request.group_id, "/users"), {
|
|
@@ -2618,8 +2387,7 @@ var all_group_users = function () {
|
|
|
2618
2387
|
return _ref232.apply(this, arguments);
|
|
2619
2388
|
};
|
|
2620
2389
|
}();
|
|
2621
|
-
exports.
|
|
2622
|
-
var add_group_user = function () {
|
|
2390
|
+
var add_group_user = exports.add_group_user = function () {
|
|
2623
2391
|
var _ref233 = _asyncToGenerator(function* (sdk, group_id, body, options) {
|
|
2624
2392
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2625
2393
|
return sdk.post("/groups/".concat(group_id, "/users"), null, body, options);
|
|
@@ -2628,8 +2396,7 @@ var add_group_user = function () {
|
|
|
2628
2396
|
return _ref233.apply(this, arguments);
|
|
2629
2397
|
};
|
|
2630
2398
|
}();
|
|
2631
|
-
exports.
|
|
2632
|
-
var delete_group_user = function () {
|
|
2399
|
+
var delete_group_user = exports.delete_group_user = function () {
|
|
2633
2400
|
var _ref234 = _asyncToGenerator(function* (sdk, group_id, user_id, options) {
|
|
2634
2401
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2635
2402
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
@@ -2639,8 +2406,7 @@ var delete_group_user = function () {
|
|
|
2639
2406
|
return _ref234.apply(this, arguments);
|
|
2640
2407
|
};
|
|
2641
2408
|
}();
|
|
2642
|
-
exports.
|
|
2643
|
-
var delete_group_from_group = function () {
|
|
2409
|
+
var delete_group_from_group = exports.delete_group_from_group = function () {
|
|
2644
2410
|
var _ref235 = _asyncToGenerator(function* (sdk, group_id, deleting_group_id, options) {
|
|
2645
2411
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2646
2412
|
deleting_group_id = (0, _sdkRtl.encodeParam)(deleting_group_id);
|
|
@@ -2650,8 +2416,7 @@ var delete_group_from_group = function () {
|
|
|
2650
2416
|
return _ref235.apply(this, arguments);
|
|
2651
2417
|
};
|
|
2652
2418
|
}();
|
|
2653
|
-
exports.
|
|
2654
|
-
var update_user_attribute_group_value = function () {
|
|
2419
|
+
var update_user_attribute_group_value = exports.update_user_attribute_group_value = function () {
|
|
2655
2420
|
var _ref236 = _asyncToGenerator(function* (sdk, group_id, user_attribute_id, body, options) {
|
|
2656
2421
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2657
2422
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
@@ -2661,8 +2426,7 @@ var update_user_attribute_group_value = function () {
|
|
|
2661
2426
|
return _ref236.apply(this, arguments);
|
|
2662
2427
|
};
|
|
2663
2428
|
}();
|
|
2664
|
-
exports.
|
|
2665
|
-
var delete_user_attribute_group_value = function () {
|
|
2429
|
+
var delete_user_attribute_group_value = exports.delete_user_attribute_group_value = function () {
|
|
2666
2430
|
var _ref237 = _asyncToGenerator(function* (sdk, group_id, user_attribute_id, options) {
|
|
2667
2431
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2668
2432
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
@@ -2672,8 +2436,7 @@ var delete_user_attribute_group_value = function () {
|
|
|
2672
2436
|
return _ref237.apply(this, arguments);
|
|
2673
2437
|
};
|
|
2674
2438
|
}();
|
|
2675
|
-
exports.
|
|
2676
|
-
var all_primary_homepage_sections = function () {
|
|
2439
|
+
var all_primary_homepage_sections = exports.all_primary_homepage_sections = function () {
|
|
2677
2440
|
var _ref238 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
2678
2441
|
return sdk.get('/primary_homepage_sections', {
|
|
2679
2442
|
fields
|
|
@@ -2683,8 +2446,7 @@ var all_primary_homepage_sections = function () {
|
|
|
2683
2446
|
return _ref238.apply(this, arguments);
|
|
2684
2447
|
};
|
|
2685
2448
|
}();
|
|
2686
|
-
exports.
|
|
2687
|
-
var all_integration_hubs = function () {
|
|
2449
|
+
var all_integration_hubs = exports.all_integration_hubs = function () {
|
|
2688
2450
|
var _ref239 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
2689
2451
|
return sdk.get('/integration_hubs', {
|
|
2690
2452
|
fields
|
|
@@ -2694,8 +2456,7 @@ var all_integration_hubs = function () {
|
|
|
2694
2456
|
return _ref239.apply(this, arguments);
|
|
2695
2457
|
};
|
|
2696
2458
|
}();
|
|
2697
|
-
exports.
|
|
2698
|
-
var create_integration_hub = function () {
|
|
2459
|
+
var create_integration_hub = exports.create_integration_hub = function () {
|
|
2699
2460
|
var _ref240 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
2700
2461
|
return sdk.post('/integration_hubs', {
|
|
2701
2462
|
fields
|
|
@@ -2705,8 +2466,7 @@ var create_integration_hub = function () {
|
|
|
2705
2466
|
return _ref240.apply(this, arguments);
|
|
2706
2467
|
};
|
|
2707
2468
|
}();
|
|
2708
|
-
exports.
|
|
2709
|
-
var integration_hub = function () {
|
|
2469
|
+
var integration_hub = exports.integration_hub = function () {
|
|
2710
2470
|
var _ref241 = _asyncToGenerator(function* (sdk, integration_hub_id, fields, options) {
|
|
2711
2471
|
integration_hub_id = (0, _sdkRtl.encodeParam)(integration_hub_id);
|
|
2712
2472
|
return sdk.get("/integration_hubs/".concat(integration_hub_id), {
|
|
@@ -2717,8 +2477,7 @@ var integration_hub = function () {
|
|
|
2717
2477
|
return _ref241.apply(this, arguments);
|
|
2718
2478
|
};
|
|
2719
2479
|
}();
|
|
2720
|
-
exports.
|
|
2721
|
-
var update_integration_hub = function () {
|
|
2480
|
+
var update_integration_hub = exports.update_integration_hub = function () {
|
|
2722
2481
|
var _ref242 = _asyncToGenerator(function* (sdk, integration_hub_id, body, fields, options) {
|
|
2723
2482
|
integration_hub_id = (0, _sdkRtl.encodeParam)(integration_hub_id);
|
|
2724
2483
|
return sdk.patch("/integration_hubs/".concat(integration_hub_id), {
|
|
@@ -2729,8 +2488,7 @@ var update_integration_hub = function () {
|
|
|
2729
2488
|
return _ref242.apply(this, arguments);
|
|
2730
2489
|
};
|
|
2731
2490
|
}();
|
|
2732
|
-
exports.
|
|
2733
|
-
var delete_integration_hub = function () {
|
|
2491
|
+
var delete_integration_hub = exports.delete_integration_hub = function () {
|
|
2734
2492
|
var _ref243 = _asyncToGenerator(function* (sdk, integration_hub_id, options) {
|
|
2735
2493
|
integration_hub_id = (0, _sdkRtl.encodeParam)(integration_hub_id);
|
|
2736
2494
|
return sdk.delete("/integration_hubs/".concat(integration_hub_id), null, null, options);
|
|
@@ -2739,8 +2497,7 @@ var delete_integration_hub = function () {
|
|
|
2739
2497
|
return _ref243.apply(this, arguments);
|
|
2740
2498
|
};
|
|
2741
2499
|
}();
|
|
2742
|
-
exports.
|
|
2743
|
-
var accept_integration_hub_legal_agreement = function () {
|
|
2500
|
+
var accept_integration_hub_legal_agreement = exports.accept_integration_hub_legal_agreement = function () {
|
|
2744
2501
|
var _ref244 = _asyncToGenerator(function* (sdk, integration_hub_id, options) {
|
|
2745
2502
|
integration_hub_id = (0, _sdkRtl.encodeParam)(integration_hub_id);
|
|
2746
2503
|
return sdk.post("/integration_hubs/".concat(integration_hub_id, "/accept_legal_agreement"), null, null, options);
|
|
@@ -2749,8 +2506,7 @@ var accept_integration_hub_legal_agreement = function () {
|
|
|
2749
2506
|
return _ref244.apply(this, arguments);
|
|
2750
2507
|
};
|
|
2751
2508
|
}();
|
|
2752
|
-
exports.
|
|
2753
|
-
var all_integrations = function () {
|
|
2509
|
+
var all_integrations = exports.all_integrations = function () {
|
|
2754
2510
|
var _ref245 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2755
2511
|
return sdk.get('/integrations', {
|
|
2756
2512
|
fields: request.fields,
|
|
@@ -2761,8 +2517,7 @@ var all_integrations = function () {
|
|
|
2761
2517
|
return _ref245.apply(this, arguments);
|
|
2762
2518
|
};
|
|
2763
2519
|
}();
|
|
2764
|
-
exports.
|
|
2765
|
-
var integration = function () {
|
|
2520
|
+
var integration = exports.integration = function () {
|
|
2766
2521
|
var _ref246 = _asyncToGenerator(function* (sdk, integration_id, fields, options) {
|
|
2767
2522
|
integration_id = (0, _sdkRtl.encodeParam)(integration_id);
|
|
2768
2523
|
return sdk.get("/integrations/".concat(integration_id), {
|
|
@@ -2773,8 +2528,7 @@ var integration = function () {
|
|
|
2773
2528
|
return _ref246.apply(this, arguments);
|
|
2774
2529
|
};
|
|
2775
2530
|
}();
|
|
2776
|
-
exports.
|
|
2777
|
-
var update_integration = function () {
|
|
2531
|
+
var update_integration = exports.update_integration = function () {
|
|
2778
2532
|
var _ref247 = _asyncToGenerator(function* (sdk, integration_id, body, fields, options) {
|
|
2779
2533
|
integration_id = (0, _sdkRtl.encodeParam)(integration_id);
|
|
2780
2534
|
return sdk.patch("/integrations/".concat(integration_id), {
|
|
@@ -2785,8 +2539,7 @@ var update_integration = function () {
|
|
|
2785
2539
|
return _ref247.apply(this, arguments);
|
|
2786
2540
|
};
|
|
2787
2541
|
}();
|
|
2788
|
-
exports.
|
|
2789
|
-
var fetch_integration_form = function () {
|
|
2542
|
+
var fetch_integration_form = exports.fetch_integration_form = function () {
|
|
2790
2543
|
var _ref248 = _asyncToGenerator(function* (sdk, integration_id, body, options) {
|
|
2791
2544
|
integration_id = (0, _sdkRtl.encodeParam)(integration_id);
|
|
2792
2545
|
return sdk.post("/integrations/".concat(integration_id, "/form"), null, body, options);
|
|
@@ -2795,8 +2548,7 @@ var fetch_integration_form = function () {
|
|
|
2795
2548
|
return _ref248.apply(this, arguments);
|
|
2796
2549
|
};
|
|
2797
2550
|
}();
|
|
2798
|
-
exports.
|
|
2799
|
-
var test_integration = function () {
|
|
2551
|
+
var test_integration = exports.test_integration = function () {
|
|
2800
2552
|
var _ref249 = _asyncToGenerator(function* (sdk, integration_id, options) {
|
|
2801
2553
|
integration_id = (0, _sdkRtl.encodeParam)(integration_id);
|
|
2802
2554
|
return sdk.post("/integrations/".concat(integration_id, "/test"), null, null, options);
|
|
@@ -2805,8 +2557,7 @@ var test_integration = function () {
|
|
|
2805
2557
|
return _ref249.apply(this, arguments);
|
|
2806
2558
|
};
|
|
2807
2559
|
}();
|
|
2808
|
-
exports.
|
|
2809
|
-
var all_looks = function () {
|
|
2560
|
+
var all_looks = exports.all_looks = function () {
|
|
2810
2561
|
var _ref250 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
2811
2562
|
return sdk.get('/looks', {
|
|
2812
2563
|
fields
|
|
@@ -2816,8 +2567,7 @@ var all_looks = function () {
|
|
|
2816
2567
|
return _ref250.apply(this, arguments);
|
|
2817
2568
|
};
|
|
2818
2569
|
}();
|
|
2819
|
-
exports.
|
|
2820
|
-
var create_look = function () {
|
|
2570
|
+
var create_look = exports.create_look = function () {
|
|
2821
2571
|
var _ref251 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
2822
2572
|
return sdk.post('/looks', {
|
|
2823
2573
|
fields
|
|
@@ -2827,8 +2577,7 @@ var create_look = function () {
|
|
|
2827
2577
|
return _ref251.apply(this, arguments);
|
|
2828
2578
|
};
|
|
2829
2579
|
}();
|
|
2830
|
-
exports.
|
|
2831
|
-
var search_looks = function () {
|
|
2580
|
+
var search_looks = exports.search_looks = function () {
|
|
2832
2581
|
var _ref252 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2833
2582
|
return sdk.get('/looks/search', {
|
|
2834
2583
|
id: request.id,
|
|
@@ -2855,8 +2604,7 @@ var search_looks = function () {
|
|
|
2855
2604
|
return _ref252.apply(this, arguments);
|
|
2856
2605
|
};
|
|
2857
2606
|
}();
|
|
2858
|
-
exports.
|
|
2859
|
-
var look = function () {
|
|
2607
|
+
var look = exports.look = function () {
|
|
2860
2608
|
var _ref253 = _asyncToGenerator(function* (sdk, look_id, fields, options) {
|
|
2861
2609
|
look_id = (0, _sdkRtl.encodeParam)(look_id);
|
|
2862
2610
|
return sdk.get("/looks/".concat(look_id), {
|
|
@@ -2867,8 +2615,7 @@ var look = function () {
|
|
|
2867
2615
|
return _ref253.apply(this, arguments);
|
|
2868
2616
|
};
|
|
2869
2617
|
}();
|
|
2870
|
-
exports.
|
|
2871
|
-
var update_look = function () {
|
|
2618
|
+
var update_look = exports.update_look = function () {
|
|
2872
2619
|
var _ref254 = _asyncToGenerator(function* (sdk, look_id, body, fields, options) {
|
|
2873
2620
|
look_id = (0, _sdkRtl.encodeParam)(look_id);
|
|
2874
2621
|
return sdk.patch("/looks/".concat(look_id), {
|
|
@@ -2879,8 +2626,7 @@ var update_look = function () {
|
|
|
2879
2626
|
return _ref254.apply(this, arguments);
|
|
2880
2627
|
};
|
|
2881
2628
|
}();
|
|
2882
|
-
exports.
|
|
2883
|
-
var delete_look = function () {
|
|
2629
|
+
var delete_look = exports.delete_look = function () {
|
|
2884
2630
|
var _ref255 = _asyncToGenerator(function* (sdk, look_id, options) {
|
|
2885
2631
|
look_id = (0, _sdkRtl.encodeParam)(look_id);
|
|
2886
2632
|
return sdk.delete("/looks/".concat(look_id), null, null, options);
|
|
@@ -2889,8 +2635,7 @@ var delete_look = function () {
|
|
|
2889
2635
|
return _ref255.apply(this, arguments);
|
|
2890
2636
|
};
|
|
2891
2637
|
}();
|
|
2892
|
-
exports.
|
|
2893
|
-
var run_look = function () {
|
|
2638
|
+
var run_look = exports.run_look = function () {
|
|
2894
2639
|
var _ref256 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2895
2640
|
request.look_id = (0, _sdkRtl.encodeParam)(request.look_id);
|
|
2896
2641
|
request.result_format = (0, _sdkRtl.encodeParam)(request.result_format);
|
|
@@ -2913,8 +2658,7 @@ var run_look = function () {
|
|
|
2913
2658
|
return _ref256.apply(this, arguments);
|
|
2914
2659
|
};
|
|
2915
2660
|
}();
|
|
2916
|
-
exports.
|
|
2917
|
-
var copy_look = function () {
|
|
2661
|
+
var copy_look = exports.copy_look = function () {
|
|
2918
2662
|
var _ref257 = _asyncToGenerator(function* (sdk, look_id, folder_id, options) {
|
|
2919
2663
|
look_id = (0, _sdkRtl.encodeParam)(look_id);
|
|
2920
2664
|
return sdk.post("/looks/".concat(look_id, "/copy"), {
|
|
@@ -2925,8 +2669,7 @@ var copy_look = function () {
|
|
|
2925
2669
|
return _ref257.apply(this, arguments);
|
|
2926
2670
|
};
|
|
2927
2671
|
}();
|
|
2928
|
-
exports.
|
|
2929
|
-
var move_look = function () {
|
|
2672
|
+
var move_look = exports.move_look = function () {
|
|
2930
2673
|
var _ref258 = _asyncToGenerator(function* (sdk, look_id, folder_id, options) {
|
|
2931
2674
|
look_id = (0, _sdkRtl.encodeParam)(look_id);
|
|
2932
2675
|
return sdk.patch("/looks/".concat(look_id, "/move"), {
|
|
@@ -2937,8 +2680,7 @@ var move_look = function () {
|
|
|
2937
2680
|
return _ref258.apply(this, arguments);
|
|
2938
2681
|
};
|
|
2939
2682
|
}();
|
|
2940
|
-
exports.
|
|
2941
|
-
var all_lookml_models = function () {
|
|
2683
|
+
var all_lookml_models = exports.all_lookml_models = function () {
|
|
2942
2684
|
var _ref259 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2943
2685
|
return sdk.get('/lookml_models', {
|
|
2944
2686
|
fields: request.fields,
|
|
@@ -2950,8 +2692,7 @@ var all_lookml_models = function () {
|
|
|
2950
2692
|
return _ref259.apply(this, arguments);
|
|
2951
2693
|
};
|
|
2952
2694
|
}();
|
|
2953
|
-
exports.
|
|
2954
|
-
var create_lookml_model = function () {
|
|
2695
|
+
var create_lookml_model = exports.create_lookml_model = function () {
|
|
2955
2696
|
var _ref260 = _asyncToGenerator(function* (sdk, body, options) {
|
|
2956
2697
|
return sdk.post('/lookml_models', null, body, options);
|
|
2957
2698
|
});
|
|
@@ -2959,8 +2700,7 @@ var create_lookml_model = function () {
|
|
|
2959
2700
|
return _ref260.apply(this, arguments);
|
|
2960
2701
|
};
|
|
2961
2702
|
}();
|
|
2962
|
-
exports.
|
|
2963
|
-
var lookml_model = function () {
|
|
2703
|
+
var lookml_model = exports.lookml_model = function () {
|
|
2964
2704
|
var _ref261 = _asyncToGenerator(function* (sdk, lookml_model_name, fields, options) {
|
|
2965
2705
|
lookml_model_name = (0, _sdkRtl.encodeParam)(lookml_model_name);
|
|
2966
2706
|
return sdk.get("/lookml_models/".concat(lookml_model_name), {
|
|
@@ -2971,8 +2711,7 @@ var lookml_model = function () {
|
|
|
2971
2711
|
return _ref261.apply(this, arguments);
|
|
2972
2712
|
};
|
|
2973
2713
|
}();
|
|
2974
|
-
exports.
|
|
2975
|
-
var update_lookml_model = function () {
|
|
2714
|
+
var update_lookml_model = exports.update_lookml_model = function () {
|
|
2976
2715
|
var _ref262 = _asyncToGenerator(function* (sdk, lookml_model_name, body, options) {
|
|
2977
2716
|
lookml_model_name = (0, _sdkRtl.encodeParam)(lookml_model_name);
|
|
2978
2717
|
return sdk.patch("/lookml_models/".concat(lookml_model_name), null, body, options);
|
|
@@ -2981,8 +2720,7 @@ var update_lookml_model = function () {
|
|
|
2981
2720
|
return _ref262.apply(this, arguments);
|
|
2982
2721
|
};
|
|
2983
2722
|
}();
|
|
2984
|
-
exports.
|
|
2985
|
-
var delete_lookml_model = function () {
|
|
2723
|
+
var delete_lookml_model = exports.delete_lookml_model = function () {
|
|
2986
2724
|
var _ref263 = _asyncToGenerator(function* (sdk, lookml_model_name, options) {
|
|
2987
2725
|
lookml_model_name = (0, _sdkRtl.encodeParam)(lookml_model_name);
|
|
2988
2726
|
return sdk.delete("/lookml_models/".concat(lookml_model_name), null, null, options);
|
|
@@ -2991,21 +2729,20 @@ var delete_lookml_model = function () {
|
|
|
2991
2729
|
return _ref263.apply(this, arguments);
|
|
2992
2730
|
};
|
|
2993
2731
|
}();
|
|
2994
|
-
exports.
|
|
2995
|
-
var
|
|
2996
|
-
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
|
|
3000
|
-
|
|
2732
|
+
var lookml_model_explore = exports.lookml_model_explore = function () {
|
|
2733
|
+
var _ref264 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2734
|
+
request.lookml_model_name = (0, _sdkRtl.encodeParam)(request.lookml_model_name);
|
|
2735
|
+
request.explore_name = (0, _sdkRtl.encodeParam)(request.explore_name);
|
|
2736
|
+
return sdk.get("/lookml_models/".concat(request.lookml_model_name, "/explores/").concat(request.explore_name), {
|
|
2737
|
+
fields: request.fields,
|
|
2738
|
+
add_drills_metadata: request.add_drills_metadata
|
|
3001
2739
|
}, null, options);
|
|
3002
2740
|
});
|
|
3003
|
-
return function lookml_model_explore(_x881, _x882, _x883
|
|
2741
|
+
return function lookml_model_explore(_x881, _x882, _x883) {
|
|
3004
2742
|
return _ref264.apply(this, arguments);
|
|
3005
2743
|
};
|
|
3006
2744
|
}();
|
|
3007
|
-
exports.
|
|
3008
|
-
var model_fieldname_suggestions = function () {
|
|
2745
|
+
var model_fieldname_suggestions = exports.model_fieldname_suggestions = function () {
|
|
3009
2746
|
var _ref265 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3010
2747
|
request.model_name = (0, _sdkRtl.encodeParam)(request.model_name);
|
|
3011
2748
|
request.view_name = (0, _sdkRtl.encodeParam)(request.view_name);
|
|
@@ -3015,44 +2752,40 @@ var model_fieldname_suggestions = function () {
|
|
|
3015
2752
|
filters: request.filters
|
|
3016
2753
|
}, null, options);
|
|
3017
2754
|
});
|
|
3018
|
-
return function model_fieldname_suggestions(
|
|
2755
|
+
return function model_fieldname_suggestions(_x884, _x885, _x886) {
|
|
3019
2756
|
return _ref265.apply(this, arguments);
|
|
3020
2757
|
};
|
|
3021
2758
|
}();
|
|
3022
|
-
exports.
|
|
3023
|
-
var get_model = function () {
|
|
2759
|
+
var get_model = exports.get_model = function () {
|
|
3024
2760
|
var _ref266 = _asyncToGenerator(function* (sdk, model_name, options) {
|
|
3025
2761
|
model_name = (0, _sdkRtl.encodeParam)(model_name);
|
|
3026
2762
|
return sdk.get("/models/".concat(model_name), null, null, options);
|
|
3027
2763
|
});
|
|
3028
|
-
return function get_model(
|
|
2764
|
+
return function get_model(_x887, _x888, _x889) {
|
|
3029
2765
|
return _ref266.apply(this, arguments);
|
|
3030
2766
|
};
|
|
3031
2767
|
}();
|
|
3032
|
-
exports.
|
|
3033
|
-
var connection_databases = function () {
|
|
2768
|
+
var connection_databases = exports.connection_databases = function () {
|
|
3034
2769
|
var _ref267 = _asyncToGenerator(function* (sdk, connection_name, options) {
|
|
3035
2770
|
connection_name = (0, _sdkRtl.encodeParam)(connection_name);
|
|
3036
2771
|
return sdk.get("/connections/".concat(connection_name, "/databases"), null, null, options);
|
|
3037
2772
|
});
|
|
3038
|
-
return function connection_databases(
|
|
2773
|
+
return function connection_databases(_x890, _x891, _x892) {
|
|
3039
2774
|
return _ref267.apply(this, arguments);
|
|
3040
2775
|
};
|
|
3041
2776
|
}();
|
|
3042
|
-
exports.
|
|
3043
|
-
var connection_features = function () {
|
|
2777
|
+
var connection_features = exports.connection_features = function () {
|
|
3044
2778
|
var _ref268 = _asyncToGenerator(function* (sdk, connection_name, fields, options) {
|
|
3045
2779
|
connection_name = (0, _sdkRtl.encodeParam)(connection_name);
|
|
3046
2780
|
return sdk.get("/connections/".concat(connection_name, "/features"), {
|
|
3047
2781
|
fields
|
|
3048
2782
|
}, null, options);
|
|
3049
2783
|
});
|
|
3050
|
-
return function connection_features(
|
|
2784
|
+
return function connection_features(_x893, _x894, _x895, _x896) {
|
|
3051
2785
|
return _ref268.apply(this, arguments);
|
|
3052
2786
|
};
|
|
3053
2787
|
}();
|
|
3054
|
-
exports.
|
|
3055
|
-
var connection_schemas = function () {
|
|
2788
|
+
var connection_schemas = exports.connection_schemas = function () {
|
|
3056
2789
|
var _ref269 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3057
2790
|
request.connection_name = (0, _sdkRtl.encodeParam)(request.connection_name);
|
|
3058
2791
|
return sdk.get("/connections/".concat(request.connection_name, "/schemas"), {
|
|
@@ -3061,12 +2794,11 @@ var connection_schemas = function () {
|
|
|
3061
2794
|
fields: request.fields
|
|
3062
2795
|
}, null, options);
|
|
3063
2796
|
});
|
|
3064
|
-
return function connection_schemas(
|
|
2797
|
+
return function connection_schemas(_x897, _x898, _x899) {
|
|
3065
2798
|
return _ref269.apply(this, arguments);
|
|
3066
2799
|
};
|
|
3067
2800
|
}();
|
|
3068
|
-
exports.
|
|
3069
|
-
var connection_tables = function () {
|
|
2801
|
+
var connection_tables = exports.connection_tables = function () {
|
|
3070
2802
|
var _ref270 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3071
2803
|
request.connection_name = (0, _sdkRtl.encodeParam)(request.connection_name);
|
|
3072
2804
|
return sdk.get("/connections/".concat(request.connection_name, "/tables"), {
|
|
@@ -3078,12 +2810,11 @@ var connection_tables = function () {
|
|
|
3078
2810
|
table_limit: request.table_limit
|
|
3079
2811
|
}, null, options);
|
|
3080
2812
|
});
|
|
3081
|
-
return function connection_tables(
|
|
2813
|
+
return function connection_tables(_x900, _x901, _x902) {
|
|
3082
2814
|
return _ref270.apply(this, arguments);
|
|
3083
2815
|
};
|
|
3084
2816
|
}();
|
|
3085
|
-
exports.
|
|
3086
|
-
var connection_columns = function () {
|
|
2817
|
+
var connection_columns = exports.connection_columns = function () {
|
|
3087
2818
|
var _ref271 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3088
2819
|
request.connection_name = (0, _sdkRtl.encodeParam)(request.connection_name);
|
|
3089
2820
|
return sdk.get("/connections/".concat(request.connection_name, "/columns"), {
|
|
@@ -3095,12 +2826,11 @@ var connection_columns = function () {
|
|
|
3095
2826
|
fields: request.fields
|
|
3096
2827
|
}, null, options);
|
|
3097
2828
|
});
|
|
3098
|
-
return function connection_columns(
|
|
2829
|
+
return function connection_columns(_x903, _x904, _x905) {
|
|
3099
2830
|
return _ref271.apply(this, arguments);
|
|
3100
2831
|
};
|
|
3101
2832
|
}();
|
|
3102
|
-
exports.
|
|
3103
|
-
var connection_search_columns = function () {
|
|
2833
|
+
var connection_search_columns = exports.connection_search_columns = function () {
|
|
3104
2834
|
var _ref272 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3105
2835
|
request.connection_name = (0, _sdkRtl.encodeParam)(request.connection_name);
|
|
3106
2836
|
return sdk.get("/connections/".concat(request.connection_name, "/search_columns"), {
|
|
@@ -3108,98 +2838,89 @@ var connection_search_columns = function () {
|
|
|
3108
2838
|
fields: request.fields
|
|
3109
2839
|
}, null, options);
|
|
3110
2840
|
});
|
|
3111
|
-
return function connection_search_columns(
|
|
2841
|
+
return function connection_search_columns(_x906, _x907, _x908) {
|
|
3112
2842
|
return _ref272.apply(this, arguments);
|
|
3113
2843
|
};
|
|
3114
2844
|
}();
|
|
3115
|
-
exports.
|
|
3116
|
-
var connection_cost_estimate = function () {
|
|
2845
|
+
var connection_cost_estimate = exports.connection_cost_estimate = function () {
|
|
3117
2846
|
var _ref273 = _asyncToGenerator(function* (sdk, connection_name, body, fields, options) {
|
|
3118
2847
|
connection_name = (0, _sdkRtl.encodeParam)(connection_name);
|
|
3119
2848
|
return sdk.post("/connections/".concat(connection_name, "/cost_estimate"), {
|
|
3120
2849
|
fields
|
|
3121
2850
|
}, body, options);
|
|
3122
2851
|
});
|
|
3123
|
-
return function connection_cost_estimate(
|
|
2852
|
+
return function connection_cost_estimate(_x909, _x910, _x911, _x912, _x913) {
|
|
3124
2853
|
return _ref273.apply(this, arguments);
|
|
3125
2854
|
};
|
|
3126
2855
|
}();
|
|
3127
|
-
exports.
|
|
3128
|
-
var lock_all = function () {
|
|
2856
|
+
var lock_all = exports.lock_all = function () {
|
|
3129
2857
|
var _ref274 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3130
2858
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3131
2859
|
return sdk.post("/projects/".concat(project_id, "/manifest/lock_all"), {
|
|
3132
2860
|
fields
|
|
3133
2861
|
}, null, options);
|
|
3134
2862
|
});
|
|
3135
|
-
return function lock_all(
|
|
2863
|
+
return function lock_all(_x914, _x915, _x916, _x917) {
|
|
3136
2864
|
return _ref274.apply(this, arguments);
|
|
3137
2865
|
};
|
|
3138
2866
|
}();
|
|
3139
|
-
exports.
|
|
3140
|
-
var all_git_branches = function () {
|
|
2867
|
+
var all_git_branches = exports.all_git_branches = function () {
|
|
3141
2868
|
var _ref275 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
3142
2869
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3143
2870
|
return sdk.get("/projects/".concat(project_id, "/git_branches"), null, null, options);
|
|
3144
2871
|
});
|
|
3145
|
-
return function all_git_branches(
|
|
2872
|
+
return function all_git_branches(_x918, _x919, _x920) {
|
|
3146
2873
|
return _ref275.apply(this, arguments);
|
|
3147
2874
|
};
|
|
3148
2875
|
}();
|
|
3149
|
-
exports.
|
|
3150
|
-
var git_branch = function () {
|
|
2876
|
+
var git_branch = exports.git_branch = function () {
|
|
3151
2877
|
var _ref276 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
3152
2878
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3153
2879
|
return sdk.get("/projects/".concat(project_id, "/git_branch"), null, null, options);
|
|
3154
2880
|
});
|
|
3155
|
-
return function git_branch(
|
|
2881
|
+
return function git_branch(_x921, _x922, _x923) {
|
|
3156
2882
|
return _ref276.apply(this, arguments);
|
|
3157
2883
|
};
|
|
3158
2884
|
}();
|
|
3159
|
-
exports.
|
|
3160
|
-
var update_git_branch = function () {
|
|
2885
|
+
var update_git_branch = exports.update_git_branch = function () {
|
|
3161
2886
|
var _ref277 = _asyncToGenerator(function* (sdk, project_id, body, options) {
|
|
3162
2887
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3163
2888
|
return sdk.put("/projects/".concat(project_id, "/git_branch"), null, body, options);
|
|
3164
2889
|
});
|
|
3165
|
-
return function update_git_branch(
|
|
2890
|
+
return function update_git_branch(_x924, _x925, _x926, _x927) {
|
|
3166
2891
|
return _ref277.apply(this, arguments);
|
|
3167
2892
|
};
|
|
3168
2893
|
}();
|
|
3169
|
-
exports.
|
|
3170
|
-
var create_git_branch = function () {
|
|
2894
|
+
var create_git_branch = exports.create_git_branch = function () {
|
|
3171
2895
|
var _ref278 = _asyncToGenerator(function* (sdk, project_id, body, options) {
|
|
3172
2896
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3173
2897
|
return sdk.post("/projects/".concat(project_id, "/git_branch"), null, body, options);
|
|
3174
2898
|
});
|
|
3175
|
-
return function create_git_branch(
|
|
2899
|
+
return function create_git_branch(_x928, _x929, _x930, _x931) {
|
|
3176
2900
|
return _ref278.apply(this, arguments);
|
|
3177
2901
|
};
|
|
3178
2902
|
}();
|
|
3179
|
-
exports.
|
|
3180
|
-
var find_git_branch = function () {
|
|
2903
|
+
var find_git_branch = exports.find_git_branch = function () {
|
|
3181
2904
|
var _ref279 = _asyncToGenerator(function* (sdk, project_id, branch_name, options) {
|
|
3182
2905
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3183
2906
|
branch_name = (0, _sdkRtl.encodeParam)(branch_name);
|
|
3184
2907
|
return sdk.get("/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
|
|
3185
2908
|
});
|
|
3186
|
-
return function find_git_branch(
|
|
2909
|
+
return function find_git_branch(_x932, _x933, _x934, _x935) {
|
|
3187
2910
|
return _ref279.apply(this, arguments);
|
|
3188
2911
|
};
|
|
3189
2912
|
}();
|
|
3190
|
-
exports.
|
|
3191
|
-
var delete_git_branch = function () {
|
|
2913
|
+
var delete_git_branch = exports.delete_git_branch = function () {
|
|
3192
2914
|
var _ref280 = _asyncToGenerator(function* (sdk, project_id, branch_name, options) {
|
|
3193
2915
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3194
2916
|
branch_name = (0, _sdkRtl.encodeParam)(branch_name);
|
|
3195
2917
|
return sdk.delete("/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
|
|
3196
2918
|
});
|
|
3197
|
-
return function delete_git_branch(
|
|
2919
|
+
return function delete_git_branch(_x936, _x937, _x938, _x939) {
|
|
3198
2920
|
return _ref280.apply(this, arguments);
|
|
3199
2921
|
};
|
|
3200
2922
|
}();
|
|
3201
|
-
exports.
|
|
3202
|
-
var deploy_ref_to_production = function () {
|
|
2923
|
+
var deploy_ref_to_production = exports.deploy_ref_to_production = function () {
|
|
3203
2924
|
var _ref281 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3204
2925
|
request.project_id = (0, _sdkRtl.encodeParam)(request.project_id);
|
|
3205
2926
|
return sdk.post("/projects/".concat(request.project_id, "/deploy_ref_to_production"), {
|
|
@@ -3207,164 +2928,149 @@ var deploy_ref_to_production = function () {
|
|
|
3207
2928
|
ref: request.ref
|
|
3208
2929
|
}, null, options);
|
|
3209
2930
|
});
|
|
3210
|
-
return function deploy_ref_to_production(
|
|
2931
|
+
return function deploy_ref_to_production(_x940, _x941, _x942) {
|
|
3211
2932
|
return _ref281.apply(this, arguments);
|
|
3212
2933
|
};
|
|
3213
2934
|
}();
|
|
3214
|
-
exports.
|
|
3215
|
-
var deploy_to_production = function () {
|
|
2935
|
+
var deploy_to_production = exports.deploy_to_production = function () {
|
|
3216
2936
|
var _ref282 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
3217
2937
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3218
2938
|
return sdk.post("/projects/".concat(project_id, "/deploy_to_production"), null, null, options);
|
|
3219
2939
|
});
|
|
3220
|
-
return function deploy_to_production(
|
|
2940
|
+
return function deploy_to_production(_x943, _x944, _x945) {
|
|
3221
2941
|
return _ref282.apply(this, arguments);
|
|
3222
2942
|
};
|
|
3223
2943
|
}();
|
|
3224
|
-
exports.
|
|
3225
|
-
var reset_project_to_production = function () {
|
|
2944
|
+
var reset_project_to_production = exports.reset_project_to_production = function () {
|
|
3226
2945
|
var _ref283 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
3227
2946
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3228
2947
|
return sdk.post("/projects/".concat(project_id, "/reset_to_production"), null, null, options);
|
|
3229
2948
|
});
|
|
3230
|
-
return function reset_project_to_production(
|
|
2949
|
+
return function reset_project_to_production(_x946, _x947, _x948) {
|
|
3231
2950
|
return _ref283.apply(this, arguments);
|
|
3232
2951
|
};
|
|
3233
2952
|
}();
|
|
3234
|
-
exports.
|
|
3235
|
-
var reset_project_to_remote = function () {
|
|
2953
|
+
var reset_project_to_remote = exports.reset_project_to_remote = function () {
|
|
3236
2954
|
var _ref284 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
3237
2955
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3238
2956
|
return sdk.post("/projects/".concat(project_id, "/reset_to_remote"), null, null, options);
|
|
3239
2957
|
});
|
|
3240
|
-
return function reset_project_to_remote(
|
|
2958
|
+
return function reset_project_to_remote(_x949, _x950, _x951) {
|
|
3241
2959
|
return _ref284.apply(this, arguments);
|
|
3242
2960
|
};
|
|
3243
2961
|
}();
|
|
3244
|
-
exports.
|
|
3245
|
-
var all_projects = function () {
|
|
2962
|
+
var all_projects = exports.all_projects = function () {
|
|
3246
2963
|
var _ref285 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3247
2964
|
return sdk.get('/projects', {
|
|
3248
2965
|
fields
|
|
3249
2966
|
}, null, options);
|
|
3250
2967
|
});
|
|
3251
|
-
return function all_projects(
|
|
2968
|
+
return function all_projects(_x952, _x953, _x954) {
|
|
3252
2969
|
return _ref285.apply(this, arguments);
|
|
3253
2970
|
};
|
|
3254
2971
|
}();
|
|
3255
|
-
exports.
|
|
3256
|
-
var create_project = function () {
|
|
2972
|
+
var create_project = exports.create_project = function () {
|
|
3257
2973
|
var _ref286 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3258
2974
|
return sdk.post('/projects', null, body, options);
|
|
3259
2975
|
});
|
|
3260
|
-
return function create_project(
|
|
2976
|
+
return function create_project(_x955, _x956, _x957) {
|
|
3261
2977
|
return _ref286.apply(this, arguments);
|
|
3262
2978
|
};
|
|
3263
2979
|
}();
|
|
3264
|
-
exports.
|
|
3265
|
-
var project = function () {
|
|
2980
|
+
var project = exports.project = function () {
|
|
3266
2981
|
var _ref287 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3267
2982
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3268
2983
|
return sdk.get("/projects/".concat(project_id), {
|
|
3269
2984
|
fields
|
|
3270
2985
|
}, null, options);
|
|
3271
2986
|
});
|
|
3272
|
-
return function project(
|
|
2987
|
+
return function project(_x958, _x959, _x960, _x961) {
|
|
3273
2988
|
return _ref287.apply(this, arguments);
|
|
3274
2989
|
};
|
|
3275
2990
|
}();
|
|
3276
|
-
exports.
|
|
3277
|
-
var update_project = function () {
|
|
2991
|
+
var update_project = exports.update_project = function () {
|
|
3278
2992
|
var _ref288 = _asyncToGenerator(function* (sdk, project_id, body, fields, options) {
|
|
3279
2993
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3280
2994
|
return sdk.patch("/projects/".concat(project_id), {
|
|
3281
2995
|
fields
|
|
3282
2996
|
}, body, options);
|
|
3283
2997
|
});
|
|
3284
|
-
return function update_project(
|
|
2998
|
+
return function update_project(_x962, _x963, _x964, _x965, _x966) {
|
|
3285
2999
|
return _ref288.apply(this, arguments);
|
|
3286
3000
|
};
|
|
3287
3001
|
}();
|
|
3288
|
-
exports.
|
|
3289
|
-
var manifest = function () {
|
|
3002
|
+
var manifest = exports.manifest = function () {
|
|
3290
3003
|
var _ref289 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
3291
3004
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3292
3005
|
return sdk.get("/projects/".concat(project_id, "/manifest"), null, null, options);
|
|
3293
3006
|
});
|
|
3294
|
-
return function manifest(
|
|
3007
|
+
return function manifest(_x967, _x968, _x969) {
|
|
3295
3008
|
return _ref289.apply(this, arguments);
|
|
3296
3009
|
};
|
|
3297
3010
|
}();
|
|
3298
|
-
exports.
|
|
3299
|
-
var git_deploy_key = function () {
|
|
3011
|
+
var git_deploy_key = exports.git_deploy_key = function () {
|
|
3300
3012
|
var _ref290 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
3301
3013
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3302
3014
|
return sdk.get("/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
|
|
3303
3015
|
});
|
|
3304
|
-
return function git_deploy_key(
|
|
3016
|
+
return function git_deploy_key(_x970, _x971, _x972) {
|
|
3305
3017
|
return _ref290.apply(this, arguments);
|
|
3306
3018
|
};
|
|
3307
3019
|
}();
|
|
3308
|
-
exports.
|
|
3309
|
-
var create_git_deploy_key = function () {
|
|
3020
|
+
var create_git_deploy_key = exports.create_git_deploy_key = function () {
|
|
3310
3021
|
var _ref291 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
3311
3022
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3312
3023
|
return sdk.post("/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
|
|
3313
3024
|
});
|
|
3314
|
-
return function create_git_deploy_key(
|
|
3025
|
+
return function create_git_deploy_key(_x973, _x974, _x975) {
|
|
3315
3026
|
return _ref291.apply(this, arguments);
|
|
3316
3027
|
};
|
|
3317
3028
|
}();
|
|
3318
|
-
exports.
|
|
3319
|
-
var project_validation_results = function () {
|
|
3029
|
+
var project_validation_results = exports.project_validation_results = function () {
|
|
3320
3030
|
var _ref292 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3321
3031
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3322
3032
|
return sdk.get("/projects/".concat(project_id, "/validate"), {
|
|
3323
3033
|
fields
|
|
3324
3034
|
}, null, options);
|
|
3325
3035
|
});
|
|
3326
|
-
return function project_validation_results(
|
|
3036
|
+
return function project_validation_results(_x976, _x977, _x978, _x979) {
|
|
3327
3037
|
return _ref292.apply(this, arguments);
|
|
3328
3038
|
};
|
|
3329
3039
|
}();
|
|
3330
|
-
exports.
|
|
3331
|
-
var validate_project = function () {
|
|
3040
|
+
var validate_project = exports.validate_project = function () {
|
|
3332
3041
|
var _ref293 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3333
3042
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3334
3043
|
return sdk.post("/projects/".concat(project_id, "/validate"), {
|
|
3335
3044
|
fields
|
|
3336
3045
|
}, null, options);
|
|
3337
3046
|
});
|
|
3338
|
-
return function validate_project(
|
|
3047
|
+
return function validate_project(_x980, _x981, _x982, _x983) {
|
|
3339
3048
|
return _ref293.apply(this, arguments);
|
|
3340
3049
|
};
|
|
3341
3050
|
}();
|
|
3342
|
-
exports.
|
|
3343
|
-
var project_workspace = function () {
|
|
3051
|
+
var project_workspace = exports.project_workspace = function () {
|
|
3344
3052
|
var _ref294 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3345
3053
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3346
3054
|
return sdk.get("/projects/".concat(project_id, "/current_workspace"), {
|
|
3347
3055
|
fields
|
|
3348
3056
|
}, null, options);
|
|
3349
3057
|
});
|
|
3350
|
-
return function project_workspace(
|
|
3058
|
+
return function project_workspace(_x984, _x985, _x986, _x987) {
|
|
3351
3059
|
return _ref294.apply(this, arguments);
|
|
3352
3060
|
};
|
|
3353
3061
|
}();
|
|
3354
|
-
exports.
|
|
3355
|
-
var all_project_files = function () {
|
|
3062
|
+
var all_project_files = exports.all_project_files = function () {
|
|
3356
3063
|
var _ref295 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3357
3064
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3358
3065
|
return sdk.get("/projects/".concat(project_id, "/files"), {
|
|
3359
3066
|
fields
|
|
3360
3067
|
}, null, options);
|
|
3361
3068
|
});
|
|
3362
|
-
return function all_project_files(
|
|
3069
|
+
return function all_project_files(_x988, _x989, _x990, _x991) {
|
|
3363
3070
|
return _ref295.apply(this, arguments);
|
|
3364
3071
|
};
|
|
3365
3072
|
}();
|
|
3366
|
-
exports.
|
|
3367
|
-
var project_file = function () {
|
|
3073
|
+
var project_file = exports.project_file = function () {
|
|
3368
3074
|
var _ref296 = _asyncToGenerator(function* (sdk, project_id, file_id, fields, options) {
|
|
3369
3075
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3370
3076
|
return sdk.get("/projects/".concat(project_id, "/files/file"), {
|
|
@@ -3372,24 +3078,22 @@ var project_file = function () {
|
|
|
3372
3078
|
fields
|
|
3373
3079
|
}, null, options);
|
|
3374
3080
|
});
|
|
3375
|
-
return function project_file(
|
|
3081
|
+
return function project_file(_x992, _x993, _x994, _x995, _x996) {
|
|
3376
3082
|
return _ref296.apply(this, arguments);
|
|
3377
3083
|
};
|
|
3378
3084
|
}();
|
|
3379
|
-
exports.
|
|
3380
|
-
var all_git_connection_tests = function () {
|
|
3085
|
+
var all_git_connection_tests = exports.all_git_connection_tests = function () {
|
|
3381
3086
|
var _ref297 = _asyncToGenerator(function* (sdk, project_id, remote_url, options) {
|
|
3382
3087
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3383
3088
|
return sdk.get("/projects/".concat(project_id, "/git_connection_tests"), {
|
|
3384
3089
|
remote_url
|
|
3385
3090
|
}, null, options);
|
|
3386
3091
|
});
|
|
3387
|
-
return function all_git_connection_tests(
|
|
3092
|
+
return function all_git_connection_tests(_x997, _x998, _x999, _x1000) {
|
|
3388
3093
|
return _ref297.apply(this, arguments);
|
|
3389
3094
|
};
|
|
3390
3095
|
}();
|
|
3391
|
-
exports.
|
|
3392
|
-
var run_git_connection_test = function () {
|
|
3096
|
+
var run_git_connection_test = exports.run_git_connection_test = function () {
|
|
3393
3097
|
var _ref298 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3394
3098
|
request.project_id = (0, _sdkRtl.encodeParam)(request.project_id);
|
|
3395
3099
|
request.test_id = (0, _sdkRtl.encodeParam)(request.test_id);
|
|
@@ -3398,24 +3102,22 @@ var run_git_connection_test = function () {
|
|
|
3398
3102
|
use_production: request.use_production
|
|
3399
3103
|
}, null, options);
|
|
3400
3104
|
});
|
|
3401
|
-
return function run_git_connection_test(
|
|
3105
|
+
return function run_git_connection_test(_x1001, _x1002, _x1003) {
|
|
3402
3106
|
return _ref298.apply(this, arguments);
|
|
3403
3107
|
};
|
|
3404
3108
|
}();
|
|
3405
|
-
exports.
|
|
3406
|
-
var all_lookml_tests = function () {
|
|
3109
|
+
var all_lookml_tests = exports.all_lookml_tests = function () {
|
|
3407
3110
|
var _ref299 = _asyncToGenerator(function* (sdk, project_id, file_id, options) {
|
|
3408
3111
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3409
3112
|
return sdk.get("/projects/".concat(project_id, "/lookml_tests"), {
|
|
3410
3113
|
file_id
|
|
3411
3114
|
}, null, options);
|
|
3412
3115
|
});
|
|
3413
|
-
return function all_lookml_tests(
|
|
3116
|
+
return function all_lookml_tests(_x1004, _x1005, _x1006, _x1007) {
|
|
3414
3117
|
return _ref299.apply(this, arguments);
|
|
3415
3118
|
};
|
|
3416
3119
|
}();
|
|
3417
|
-
exports.
|
|
3418
|
-
var run_lookml_test = function () {
|
|
3120
|
+
var run_lookml_test = exports.run_lookml_test = function () {
|
|
3419
3121
|
var _ref300 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3420
3122
|
request.project_id = (0, _sdkRtl.encodeParam)(request.project_id);
|
|
3421
3123
|
return sdk.get("/projects/".concat(request.project_id, "/lookml_tests/run"), {
|
|
@@ -3424,12 +3126,11 @@ var run_lookml_test = function () {
|
|
|
3424
3126
|
model: request.model
|
|
3425
3127
|
}, null, options);
|
|
3426
3128
|
});
|
|
3427
|
-
return function run_lookml_test(
|
|
3129
|
+
return function run_lookml_test(_x1008, _x1009, _x1010) {
|
|
3428
3130
|
return _ref300.apply(this, arguments);
|
|
3429
3131
|
};
|
|
3430
3132
|
}();
|
|
3431
|
-
exports.
|
|
3432
|
-
var tag_ref = function () {
|
|
3133
|
+
var tag_ref = exports.tag_ref = function () {
|
|
3433
3134
|
var _ref301 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3434
3135
|
request.project_id = (0, _sdkRtl.encodeParam)(request.project_id);
|
|
3435
3136
|
return sdk.post("/projects/".concat(request.project_id, "/tag"), {
|
|
@@ -3438,44 +3139,40 @@ var tag_ref = function () {
|
|
|
3438
3139
|
tag_message: request.tag_message
|
|
3439
3140
|
}, request.body, options);
|
|
3440
3141
|
});
|
|
3441
|
-
return function tag_ref(
|
|
3142
|
+
return function tag_ref(_x1011, _x1012, _x1013) {
|
|
3442
3143
|
return _ref301.apply(this, arguments);
|
|
3443
3144
|
};
|
|
3444
3145
|
}();
|
|
3445
|
-
exports.
|
|
3446
|
-
var update_repository_credential = function () {
|
|
3146
|
+
var update_repository_credential = exports.update_repository_credential = function () {
|
|
3447
3147
|
var _ref302 = _asyncToGenerator(function* (sdk, root_project_id, credential_id, body, options) {
|
|
3448
3148
|
root_project_id = (0, _sdkRtl.encodeParam)(root_project_id);
|
|
3449
3149
|
credential_id = (0, _sdkRtl.encodeParam)(credential_id);
|
|
3450
3150
|
return sdk.put("/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, body, options);
|
|
3451
3151
|
});
|
|
3452
|
-
return function update_repository_credential(
|
|
3152
|
+
return function update_repository_credential(_x1014, _x1015, _x1016, _x1017, _x1018) {
|
|
3453
3153
|
return _ref302.apply(this, arguments);
|
|
3454
3154
|
};
|
|
3455
3155
|
}();
|
|
3456
|
-
exports.
|
|
3457
|
-
var delete_repository_credential = function () {
|
|
3156
|
+
var delete_repository_credential = exports.delete_repository_credential = function () {
|
|
3458
3157
|
var _ref303 = _asyncToGenerator(function* (sdk, root_project_id, credential_id, options) {
|
|
3459
3158
|
root_project_id = (0, _sdkRtl.encodeParam)(root_project_id);
|
|
3460
3159
|
credential_id = (0, _sdkRtl.encodeParam)(credential_id);
|
|
3461
3160
|
return sdk.delete("/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, null, options);
|
|
3462
3161
|
});
|
|
3463
|
-
return function delete_repository_credential(
|
|
3162
|
+
return function delete_repository_credential(_x1019, _x1020, _x1021, _x1022) {
|
|
3464
3163
|
return _ref303.apply(this, arguments);
|
|
3465
3164
|
};
|
|
3466
3165
|
}();
|
|
3467
|
-
exports.
|
|
3468
|
-
var get_all_repository_credentials = function () {
|
|
3166
|
+
var get_all_repository_credentials = exports.get_all_repository_credentials = function () {
|
|
3469
3167
|
var _ref304 = _asyncToGenerator(function* (sdk, root_project_id, options) {
|
|
3470
3168
|
root_project_id = (0, _sdkRtl.encodeParam)(root_project_id);
|
|
3471
3169
|
return sdk.get("/projects/".concat(root_project_id, "/credentials"), null, null, options);
|
|
3472
3170
|
});
|
|
3473
|
-
return function get_all_repository_credentials(
|
|
3171
|
+
return function get_all_repository_credentials(_x1023, _x1024, _x1025) {
|
|
3474
3172
|
return _ref304.apply(this, arguments);
|
|
3475
3173
|
};
|
|
3476
3174
|
}();
|
|
3477
|
-
exports.
|
|
3478
|
-
var create_query_task = function () {
|
|
3175
|
+
var create_query_task = exports.create_query_task = function () {
|
|
3479
3176
|
var _ref305 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3480
3177
|
return sdk.post('/query_tasks', {
|
|
3481
3178
|
limit: request.limit,
|
|
@@ -3491,80 +3188,73 @@ var create_query_task = function () {
|
|
|
3491
3188
|
fields: request.fields
|
|
3492
3189
|
}, request.body, options);
|
|
3493
3190
|
});
|
|
3494
|
-
return function create_query_task(
|
|
3191
|
+
return function create_query_task(_x1026, _x1027, _x1028) {
|
|
3495
3192
|
return _ref305.apply(this, arguments);
|
|
3496
3193
|
};
|
|
3497
3194
|
}();
|
|
3498
|
-
exports.
|
|
3499
|
-
var query_task_multi_results = function () {
|
|
3195
|
+
var query_task_multi_results = exports.query_task_multi_results = function () {
|
|
3500
3196
|
var _ref306 = _asyncToGenerator(function* (sdk, query_task_ids, options) {
|
|
3501
3197
|
return sdk.get('/query_tasks/multi_results', {
|
|
3502
3198
|
query_task_ids
|
|
3503
3199
|
}, null, options);
|
|
3504
3200
|
});
|
|
3505
|
-
return function query_task_multi_results(
|
|
3201
|
+
return function query_task_multi_results(_x1029, _x1030, _x1031) {
|
|
3506
3202
|
return _ref306.apply(this, arguments);
|
|
3507
3203
|
};
|
|
3508
3204
|
}();
|
|
3509
|
-
exports.
|
|
3510
|
-
var query_task = function () {
|
|
3205
|
+
var query_task = exports.query_task = function () {
|
|
3511
3206
|
var _ref307 = _asyncToGenerator(function* (sdk, query_task_id, fields, options) {
|
|
3512
3207
|
query_task_id = (0, _sdkRtl.encodeParam)(query_task_id);
|
|
3513
3208
|
return sdk.get("/query_tasks/".concat(query_task_id), {
|
|
3514
3209
|
fields
|
|
3515
3210
|
}, null, options);
|
|
3516
3211
|
});
|
|
3517
|
-
return function query_task(
|
|
3212
|
+
return function query_task(_x1032, _x1033, _x1034, _x1035) {
|
|
3518
3213
|
return _ref307.apply(this, arguments);
|
|
3519
3214
|
};
|
|
3520
3215
|
}();
|
|
3521
|
-
exports.
|
|
3522
|
-
var query_task_results = function () {
|
|
3216
|
+
var query_task_results = exports.query_task_results = function () {
|
|
3523
3217
|
var _ref308 = _asyncToGenerator(function* (sdk, query_task_id, options) {
|
|
3524
3218
|
query_task_id = (0, _sdkRtl.encodeParam)(query_task_id);
|
|
3525
3219
|
return sdk.get("/query_tasks/".concat(query_task_id, "/results"), null, null, options);
|
|
3526
3220
|
});
|
|
3527
|
-
return function query_task_results(
|
|
3221
|
+
return function query_task_results(_x1036, _x1037, _x1038) {
|
|
3528
3222
|
return _ref308.apply(this, arguments);
|
|
3529
3223
|
};
|
|
3530
3224
|
}();
|
|
3531
|
-
exports.
|
|
3532
|
-
var query = function () {
|
|
3225
|
+
var query = exports.query = function () {
|
|
3533
3226
|
var _ref309 = _asyncToGenerator(function* (sdk, query_id, fields, options) {
|
|
3534
3227
|
query_id = (0, _sdkRtl.encodeParam)(query_id);
|
|
3535
3228
|
return sdk.get("/queries/".concat(query_id), {
|
|
3536
3229
|
fields
|
|
3537
3230
|
}, null, options);
|
|
3538
3231
|
});
|
|
3539
|
-
return function query(
|
|
3232
|
+
return function query(_x1039, _x1040, _x1041, _x1042) {
|
|
3540
3233
|
return _ref309.apply(this, arguments);
|
|
3541
3234
|
};
|
|
3542
3235
|
}();
|
|
3543
|
-
exports.
|
|
3544
|
-
var query_for_slug = function () {
|
|
3236
|
+
var query_for_slug = exports.query_for_slug = function () {
|
|
3545
3237
|
var _ref310 = _asyncToGenerator(function* (sdk, slug, fields, options) {
|
|
3546
3238
|
slug = (0, _sdkRtl.encodeParam)(slug);
|
|
3547
3239
|
return sdk.get("/queries/slug/".concat(slug), {
|
|
3548
3240
|
fields
|
|
3549
3241
|
}, null, options);
|
|
3550
3242
|
});
|
|
3551
|
-
return function query_for_slug(
|
|
3243
|
+
return function query_for_slug(_x1043, _x1044, _x1045, _x1046) {
|
|
3552
3244
|
return _ref310.apply(this, arguments);
|
|
3553
3245
|
};
|
|
3554
3246
|
}();
|
|
3555
|
-
exports.
|
|
3556
|
-
var create_query = function () {
|
|
3247
|
+
var create_query = exports.create_query = function () {
|
|
3557
3248
|
var _ref311 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
3558
3249
|
return sdk.post('/queries', {
|
|
3559
3250
|
fields
|
|
3560
3251
|
}, body, options);
|
|
3561
3252
|
});
|
|
3562
|
-
return function create_query(
|
|
3253
|
+
return function create_query(_x1047, _x1048, _x1049, _x1050) {
|
|
3563
3254
|
return _ref311.apply(this, arguments);
|
|
3564
3255
|
};
|
|
3565
3256
|
}();
|
|
3566
|
-
exports.
|
|
3567
|
-
var run_query = function () {
|
|
3257
|
+
var run_query = exports.run_query = function () {
|
|
3568
3258
|
var _ref312 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3569
3259
|
request.query_id = (0, _sdkRtl.encodeParam)(request.query_id);
|
|
3570
3260
|
request.result_format = (0, _sdkRtl.encodeParam)(request.result_format);
|
|
@@ -3584,12 +3274,11 @@ var run_query = function () {
|
|
|
3584
3274
|
source: request.source
|
|
3585
3275
|
}, null, options);
|
|
3586
3276
|
});
|
|
3587
|
-
return function run_query(
|
|
3277
|
+
return function run_query(_x1051, _x1052, _x1053) {
|
|
3588
3278
|
return _ref312.apply(this, arguments);
|
|
3589
3279
|
};
|
|
3590
3280
|
}();
|
|
3591
|
-
exports.
|
|
3592
|
-
var run_inline_query = function () {
|
|
3281
|
+
var run_inline_query = exports.run_inline_query = function () {
|
|
3593
3282
|
var _ref313 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3594
3283
|
request.result_format = (0, _sdkRtl.encodeParam)(request.result_format);
|
|
3595
3284
|
return sdk.post("/queries/run/".concat(request.result_format), {
|
|
@@ -3607,85 +3296,77 @@ var run_inline_query = function () {
|
|
|
3607
3296
|
server_table_calcs: request.server_table_calcs
|
|
3608
3297
|
}, request.body, options);
|
|
3609
3298
|
});
|
|
3610
|
-
return function run_inline_query(
|
|
3299
|
+
return function run_inline_query(_x1054, _x1055, _x1056) {
|
|
3611
3300
|
return _ref313.apply(this, arguments);
|
|
3612
3301
|
};
|
|
3613
3302
|
}();
|
|
3614
|
-
exports.
|
|
3615
|
-
var run_url_encoded_query = function () {
|
|
3303
|
+
var run_url_encoded_query = exports.run_url_encoded_query = function () {
|
|
3616
3304
|
var _ref314 = _asyncToGenerator(function* (sdk, model_name, view_name, result_format, options) {
|
|
3617
3305
|
model_name = (0, _sdkRtl.encodeParam)(model_name);
|
|
3618
3306
|
view_name = (0, _sdkRtl.encodeParam)(view_name);
|
|
3619
3307
|
result_format = (0, _sdkRtl.encodeParam)(result_format);
|
|
3620
3308
|
return sdk.get("/queries/models/".concat(model_name, "/views/").concat(view_name, "/run/").concat(result_format), null, null, options);
|
|
3621
3309
|
});
|
|
3622
|
-
return function run_url_encoded_query(
|
|
3310
|
+
return function run_url_encoded_query(_x1057, _x1058, _x1059, _x1060, _x1061) {
|
|
3623
3311
|
return _ref314.apply(this, arguments);
|
|
3624
3312
|
};
|
|
3625
3313
|
}();
|
|
3626
|
-
exports.
|
|
3627
|
-
var merge_query = function () {
|
|
3314
|
+
var merge_query = exports.merge_query = function () {
|
|
3628
3315
|
var _ref315 = _asyncToGenerator(function* (sdk, merge_query_id, fields, options) {
|
|
3629
3316
|
merge_query_id = (0, _sdkRtl.encodeParam)(merge_query_id);
|
|
3630
3317
|
return sdk.get("/merge_queries/".concat(merge_query_id), {
|
|
3631
3318
|
fields
|
|
3632
3319
|
}, null, options);
|
|
3633
3320
|
});
|
|
3634
|
-
return function merge_query(
|
|
3321
|
+
return function merge_query(_x1062, _x1063, _x1064, _x1065) {
|
|
3635
3322
|
return _ref315.apply(this, arguments);
|
|
3636
3323
|
};
|
|
3637
3324
|
}();
|
|
3638
|
-
exports.
|
|
3639
|
-
var create_merge_query = function () {
|
|
3325
|
+
var create_merge_query = exports.create_merge_query = function () {
|
|
3640
3326
|
var _ref316 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
3641
3327
|
return sdk.post('/merge_queries', {
|
|
3642
3328
|
fields
|
|
3643
3329
|
}, body, options);
|
|
3644
3330
|
});
|
|
3645
|
-
return function create_merge_query(
|
|
3331
|
+
return function create_merge_query(_x1066, _x1067, _x1068, _x1069) {
|
|
3646
3332
|
return _ref316.apply(this, arguments);
|
|
3647
3333
|
};
|
|
3648
3334
|
}();
|
|
3649
|
-
exports.
|
|
3650
|
-
var all_running_queries = function () {
|
|
3335
|
+
var all_running_queries = exports.all_running_queries = function () {
|
|
3651
3336
|
var _ref317 = _asyncToGenerator(function* (sdk, options) {
|
|
3652
3337
|
return sdk.get('/running_queries', null, null, options);
|
|
3653
3338
|
});
|
|
3654
|
-
return function all_running_queries(
|
|
3339
|
+
return function all_running_queries(_x1070, _x1071) {
|
|
3655
3340
|
return _ref317.apply(this, arguments);
|
|
3656
3341
|
};
|
|
3657
3342
|
}();
|
|
3658
|
-
exports.
|
|
3659
|
-
var kill_query = function () {
|
|
3343
|
+
var kill_query = exports.kill_query = function () {
|
|
3660
3344
|
var _ref318 = _asyncToGenerator(function* (sdk, query_task_id, options) {
|
|
3661
3345
|
query_task_id = (0, _sdkRtl.encodeParam)(query_task_id);
|
|
3662
3346
|
return sdk.delete("/running_queries/".concat(query_task_id), null, null, options);
|
|
3663
3347
|
});
|
|
3664
|
-
return function kill_query(
|
|
3348
|
+
return function kill_query(_x1072, _x1073, _x1074) {
|
|
3665
3349
|
return _ref318.apply(this, arguments);
|
|
3666
3350
|
};
|
|
3667
3351
|
}();
|
|
3668
|
-
exports.
|
|
3669
|
-
var create_sql_query = function () {
|
|
3352
|
+
var create_sql_query = exports.create_sql_query = function () {
|
|
3670
3353
|
var _ref319 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3671
3354
|
return sdk.post('/sql_queries', null, body, options);
|
|
3672
3355
|
});
|
|
3673
|
-
return function create_sql_query(
|
|
3356
|
+
return function create_sql_query(_x1075, _x1076, _x1077) {
|
|
3674
3357
|
return _ref319.apply(this, arguments);
|
|
3675
3358
|
};
|
|
3676
3359
|
}();
|
|
3677
|
-
exports.
|
|
3678
|
-
var sql_query = function () {
|
|
3360
|
+
var sql_query = exports.sql_query = function () {
|
|
3679
3361
|
var _ref320 = _asyncToGenerator(function* (sdk, slug, options) {
|
|
3680
3362
|
slug = (0, _sdkRtl.encodeParam)(slug);
|
|
3681
3363
|
return sdk.get("/sql_queries/".concat(slug), null, null, options);
|
|
3682
3364
|
});
|
|
3683
|
-
return function sql_query(
|
|
3365
|
+
return function sql_query(_x1078, _x1079, _x1080) {
|
|
3684
3366
|
return _ref320.apply(this, arguments);
|
|
3685
3367
|
};
|
|
3686
3368
|
}();
|
|
3687
|
-
exports.
|
|
3688
|
-
var run_sql_query = function () {
|
|
3369
|
+
var run_sql_query = exports.run_sql_query = function () {
|
|
3689
3370
|
var _ref321 = _asyncToGenerator(function* (sdk, slug, result_format, download, options) {
|
|
3690
3371
|
slug = (0, _sdkRtl.encodeParam)(slug);
|
|
3691
3372
|
result_format = (0, _sdkRtl.encodeParam)(result_format);
|
|
@@ -3693,12 +3374,11 @@ var run_sql_query = function () {
|
|
|
3693
3374
|
download
|
|
3694
3375
|
}, null, options);
|
|
3695
3376
|
});
|
|
3696
|
-
return function run_sql_query(
|
|
3377
|
+
return function run_sql_query(_x1081, _x1082, _x1083, _x1084, _x1085) {
|
|
3697
3378
|
return _ref321.apply(this, arguments);
|
|
3698
3379
|
};
|
|
3699
3380
|
}();
|
|
3700
|
-
exports.
|
|
3701
|
-
var create_look_render_task = function () {
|
|
3381
|
+
var create_look_render_task = exports.create_look_render_task = function () {
|
|
3702
3382
|
var _ref322 = _asyncToGenerator(function* (sdk, look_id, result_format, width, height, fields, options) {
|
|
3703
3383
|
look_id = (0, _sdkRtl.encodeParam)(look_id);
|
|
3704
3384
|
result_format = (0, _sdkRtl.encodeParam)(result_format);
|
|
@@ -3708,12 +3388,11 @@ var create_look_render_task = function () {
|
|
|
3708
3388
|
fields
|
|
3709
3389
|
}, null, options);
|
|
3710
3390
|
});
|
|
3711
|
-
return function create_look_render_task(_x1088, _x1089, _x1090, _x1091, _x1092
|
|
3391
|
+
return function create_look_render_task(_x1086, _x1087, _x1088, _x1089, _x1090, _x1091, _x1092) {
|
|
3712
3392
|
return _ref322.apply(this, arguments);
|
|
3713
3393
|
};
|
|
3714
3394
|
}();
|
|
3715
|
-
exports.
|
|
3716
|
-
var create_query_render_task = function () {
|
|
3395
|
+
var create_query_render_task = exports.create_query_render_task = function () {
|
|
3717
3396
|
var _ref323 = _asyncToGenerator(function* (sdk, query_id, result_format, width, height, fields, options) {
|
|
3718
3397
|
query_id = (0, _sdkRtl.encodeParam)(query_id);
|
|
3719
3398
|
result_format = (0, _sdkRtl.encodeParam)(result_format);
|
|
@@ -3723,12 +3402,11 @@ var create_query_render_task = function () {
|
|
|
3723
3402
|
fields
|
|
3724
3403
|
}, null, options);
|
|
3725
3404
|
});
|
|
3726
|
-
return function create_query_render_task(_x1095, _x1096, _x1097, _x1098, _x1099
|
|
3405
|
+
return function create_query_render_task(_x1093, _x1094, _x1095, _x1096, _x1097, _x1098, _x1099) {
|
|
3727
3406
|
return _ref323.apply(this, arguments);
|
|
3728
3407
|
};
|
|
3729
3408
|
}();
|
|
3730
|
-
exports.
|
|
3731
|
-
var create_dashboard_render_task = function () {
|
|
3409
|
+
var create_dashboard_render_task = exports.create_dashboard_render_task = function () {
|
|
3732
3410
|
var _ref324 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3733
3411
|
request.dashboard_id = (0, _sdkRtl.encodeParam)(request.dashboard_id);
|
|
3734
3412
|
request.result_format = (0, _sdkRtl.encodeParam)(request.result_format);
|
|
@@ -3742,34 +3420,31 @@ var create_dashboard_render_task = function () {
|
|
|
3742
3420
|
theme: request.theme
|
|
3743
3421
|
}, request.body, options);
|
|
3744
3422
|
});
|
|
3745
|
-
return function create_dashboard_render_task(
|
|
3423
|
+
return function create_dashboard_render_task(_x1100, _x1101, _x1102) {
|
|
3746
3424
|
return _ref324.apply(this, arguments);
|
|
3747
3425
|
};
|
|
3748
3426
|
}();
|
|
3749
|
-
exports.
|
|
3750
|
-
var render_task = function () {
|
|
3427
|
+
var render_task = exports.render_task = function () {
|
|
3751
3428
|
var _ref325 = _asyncToGenerator(function* (sdk, render_task_id, fields, options) {
|
|
3752
3429
|
render_task_id = (0, _sdkRtl.encodeParam)(render_task_id);
|
|
3753
3430
|
return sdk.get("/render_tasks/".concat(render_task_id), {
|
|
3754
3431
|
fields
|
|
3755
3432
|
}, null, options);
|
|
3756
3433
|
});
|
|
3757
|
-
return function render_task(
|
|
3434
|
+
return function render_task(_x1103, _x1104, _x1105, _x1106) {
|
|
3758
3435
|
return _ref325.apply(this, arguments);
|
|
3759
3436
|
};
|
|
3760
3437
|
}();
|
|
3761
|
-
exports.
|
|
3762
|
-
var render_task_results = function () {
|
|
3438
|
+
var render_task_results = exports.render_task_results = function () {
|
|
3763
3439
|
var _ref326 = _asyncToGenerator(function* (sdk, render_task_id, options) {
|
|
3764
3440
|
render_task_id = (0, _sdkRtl.encodeParam)(render_task_id);
|
|
3765
3441
|
return sdk.get("/render_tasks/".concat(render_task_id, "/results"), null, null, options);
|
|
3766
3442
|
});
|
|
3767
|
-
return function render_task_results(
|
|
3443
|
+
return function render_task_results(_x1107, _x1108, _x1109) {
|
|
3768
3444
|
return _ref326.apply(this, arguments);
|
|
3769
3445
|
};
|
|
3770
3446
|
}();
|
|
3771
|
-
exports.
|
|
3772
|
-
var create_dashboard_element_render_task = function () {
|
|
3447
|
+
var create_dashboard_element_render_task = exports.create_dashboard_element_render_task = function () {
|
|
3773
3448
|
var _ref327 = _asyncToGenerator(function* (sdk, dashboard_element_id, result_format, width, height, fields, options) {
|
|
3774
3449
|
dashboard_element_id = (0, _sdkRtl.encodeParam)(dashboard_element_id);
|
|
3775
3450
|
result_format = (0, _sdkRtl.encodeParam)(result_format);
|
|
@@ -3779,12 +3454,11 @@ var create_dashboard_element_render_task = function () {
|
|
|
3779
3454
|
fields
|
|
3780
3455
|
}, null, options);
|
|
3781
3456
|
});
|
|
3782
|
-
return function create_dashboard_element_render_task(_x1112, _x1113, _x1114, _x1115, _x1116
|
|
3457
|
+
return function create_dashboard_element_render_task(_x1110, _x1111, _x1112, _x1113, _x1114, _x1115, _x1116) {
|
|
3783
3458
|
return _ref327.apply(this, arguments);
|
|
3784
3459
|
};
|
|
3785
3460
|
}();
|
|
3786
|
-
exports.
|
|
3787
|
-
var search_model_sets = function () {
|
|
3461
|
+
var search_model_sets = exports.search_model_sets = function () {
|
|
3788
3462
|
var _ref328 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3789
3463
|
return sdk.get('/model_sets/search', {
|
|
3790
3464
|
fields: request.fields,
|
|
@@ -3798,73 +3472,66 @@ var search_model_sets = function () {
|
|
|
3798
3472
|
filter_or: request.filter_or
|
|
3799
3473
|
}, null, options);
|
|
3800
3474
|
});
|
|
3801
|
-
return function search_model_sets(
|
|
3475
|
+
return function search_model_sets(_x1117, _x1118, _x1119) {
|
|
3802
3476
|
return _ref328.apply(this, arguments);
|
|
3803
3477
|
};
|
|
3804
3478
|
}();
|
|
3805
|
-
exports.
|
|
3806
|
-
var model_set = function () {
|
|
3479
|
+
var model_set = exports.model_set = function () {
|
|
3807
3480
|
var _ref329 = _asyncToGenerator(function* (sdk, model_set_id, fields, options) {
|
|
3808
3481
|
model_set_id = (0, _sdkRtl.encodeParam)(model_set_id);
|
|
3809
3482
|
return sdk.get("/model_sets/".concat(model_set_id), {
|
|
3810
3483
|
fields
|
|
3811
3484
|
}, null, options);
|
|
3812
3485
|
});
|
|
3813
|
-
return function model_set(
|
|
3486
|
+
return function model_set(_x1120, _x1121, _x1122, _x1123) {
|
|
3814
3487
|
return _ref329.apply(this, arguments);
|
|
3815
3488
|
};
|
|
3816
3489
|
}();
|
|
3817
|
-
exports.
|
|
3818
|
-
var update_model_set = function () {
|
|
3490
|
+
var update_model_set = exports.update_model_set = function () {
|
|
3819
3491
|
var _ref330 = _asyncToGenerator(function* (sdk, model_set_id, body, options) {
|
|
3820
3492
|
model_set_id = (0, _sdkRtl.encodeParam)(model_set_id);
|
|
3821
3493
|
return sdk.patch("/model_sets/".concat(model_set_id), null, body, options);
|
|
3822
3494
|
});
|
|
3823
|
-
return function update_model_set(
|
|
3495
|
+
return function update_model_set(_x1124, _x1125, _x1126, _x1127) {
|
|
3824
3496
|
return _ref330.apply(this, arguments);
|
|
3825
3497
|
};
|
|
3826
3498
|
}();
|
|
3827
|
-
exports.
|
|
3828
|
-
var delete_model_set = function () {
|
|
3499
|
+
var delete_model_set = exports.delete_model_set = function () {
|
|
3829
3500
|
var _ref331 = _asyncToGenerator(function* (sdk, model_set_id, options) {
|
|
3830
3501
|
model_set_id = (0, _sdkRtl.encodeParam)(model_set_id);
|
|
3831
3502
|
return sdk.delete("/model_sets/".concat(model_set_id), null, null, options);
|
|
3832
3503
|
});
|
|
3833
|
-
return function delete_model_set(
|
|
3504
|
+
return function delete_model_set(_x1128, _x1129, _x1130) {
|
|
3834
3505
|
return _ref331.apply(this, arguments);
|
|
3835
3506
|
};
|
|
3836
3507
|
}();
|
|
3837
|
-
exports.
|
|
3838
|
-
var all_model_sets = function () {
|
|
3508
|
+
var all_model_sets = exports.all_model_sets = function () {
|
|
3839
3509
|
var _ref332 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3840
3510
|
return sdk.get('/model_sets', {
|
|
3841
3511
|
fields
|
|
3842
3512
|
}, null, options);
|
|
3843
3513
|
});
|
|
3844
|
-
return function all_model_sets(
|
|
3514
|
+
return function all_model_sets(_x1131, _x1132, _x1133) {
|
|
3845
3515
|
return _ref332.apply(this, arguments);
|
|
3846
3516
|
};
|
|
3847
3517
|
}();
|
|
3848
|
-
exports.
|
|
3849
|
-
var create_model_set = function () {
|
|
3518
|
+
var create_model_set = exports.create_model_set = function () {
|
|
3850
3519
|
var _ref333 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3851
3520
|
return sdk.post('/model_sets', null, body, options);
|
|
3852
3521
|
});
|
|
3853
|
-
return function create_model_set(
|
|
3522
|
+
return function create_model_set(_x1134, _x1135, _x1136) {
|
|
3854
3523
|
return _ref333.apply(this, arguments);
|
|
3855
3524
|
};
|
|
3856
3525
|
}();
|
|
3857
|
-
exports.
|
|
3858
|
-
var all_permissions = function () {
|
|
3526
|
+
var all_permissions = exports.all_permissions = function () {
|
|
3859
3527
|
var _ref334 = _asyncToGenerator(function* (sdk, options) {
|
|
3860
3528
|
return sdk.get('/permissions', null, null, options);
|
|
3861
3529
|
});
|
|
3862
|
-
return function all_permissions(
|
|
3530
|
+
return function all_permissions(_x1137, _x1138) {
|
|
3863
3531
|
return _ref334.apply(this, arguments);
|
|
3864
3532
|
};
|
|
3865
3533
|
}();
|
|
3866
|
-
exports.
|
|
3867
|
-
var search_permission_sets = function () {
|
|
3534
|
+
var search_permission_sets = exports.search_permission_sets = function () {
|
|
3868
3535
|
var _ref335 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3869
3536
|
return sdk.get('/permission_sets/search', {
|
|
3870
3537
|
fields: request.fields,
|
|
@@ -3878,85 +3545,77 @@ var search_permission_sets = function () {
|
|
|
3878
3545
|
filter_or: request.filter_or
|
|
3879
3546
|
}, null, options);
|
|
3880
3547
|
});
|
|
3881
|
-
return function search_permission_sets(
|
|
3548
|
+
return function search_permission_sets(_x1139, _x1140, _x1141) {
|
|
3882
3549
|
return _ref335.apply(this, arguments);
|
|
3883
3550
|
};
|
|
3884
3551
|
}();
|
|
3885
|
-
exports.
|
|
3886
|
-
var permission_set = function () {
|
|
3552
|
+
var permission_set = exports.permission_set = function () {
|
|
3887
3553
|
var _ref336 = _asyncToGenerator(function* (sdk, permission_set_id, fields, options) {
|
|
3888
3554
|
permission_set_id = (0, _sdkRtl.encodeParam)(permission_set_id);
|
|
3889
3555
|
return sdk.get("/permission_sets/".concat(permission_set_id), {
|
|
3890
3556
|
fields
|
|
3891
3557
|
}, null, options);
|
|
3892
3558
|
});
|
|
3893
|
-
return function permission_set(
|
|
3559
|
+
return function permission_set(_x1142, _x1143, _x1144, _x1145) {
|
|
3894
3560
|
return _ref336.apply(this, arguments);
|
|
3895
3561
|
};
|
|
3896
3562
|
}();
|
|
3897
|
-
exports.
|
|
3898
|
-
var update_permission_set = function () {
|
|
3563
|
+
var update_permission_set = exports.update_permission_set = function () {
|
|
3899
3564
|
var _ref337 = _asyncToGenerator(function* (sdk, permission_set_id, body, options) {
|
|
3900
3565
|
permission_set_id = (0, _sdkRtl.encodeParam)(permission_set_id);
|
|
3901
3566
|
return sdk.patch("/permission_sets/".concat(permission_set_id), null, body, options);
|
|
3902
3567
|
});
|
|
3903
|
-
return function update_permission_set(
|
|
3568
|
+
return function update_permission_set(_x1146, _x1147, _x1148, _x1149) {
|
|
3904
3569
|
return _ref337.apply(this, arguments);
|
|
3905
3570
|
};
|
|
3906
3571
|
}();
|
|
3907
|
-
exports.
|
|
3908
|
-
var delete_permission_set = function () {
|
|
3572
|
+
var delete_permission_set = exports.delete_permission_set = function () {
|
|
3909
3573
|
var _ref338 = _asyncToGenerator(function* (sdk, permission_set_id, options) {
|
|
3910
3574
|
permission_set_id = (0, _sdkRtl.encodeParam)(permission_set_id);
|
|
3911
3575
|
return sdk.delete("/permission_sets/".concat(permission_set_id), null, null, options);
|
|
3912
3576
|
});
|
|
3913
|
-
return function delete_permission_set(
|
|
3577
|
+
return function delete_permission_set(_x1150, _x1151, _x1152) {
|
|
3914
3578
|
return _ref338.apply(this, arguments);
|
|
3915
3579
|
};
|
|
3916
3580
|
}();
|
|
3917
|
-
exports.
|
|
3918
|
-
var all_permission_sets = function () {
|
|
3581
|
+
var all_permission_sets = exports.all_permission_sets = function () {
|
|
3919
3582
|
var _ref339 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3920
3583
|
return sdk.get('/permission_sets', {
|
|
3921
3584
|
fields
|
|
3922
3585
|
}, null, options);
|
|
3923
3586
|
});
|
|
3924
|
-
return function all_permission_sets(
|
|
3587
|
+
return function all_permission_sets(_x1153, _x1154, _x1155) {
|
|
3925
3588
|
return _ref339.apply(this, arguments);
|
|
3926
3589
|
};
|
|
3927
3590
|
}();
|
|
3928
|
-
exports.
|
|
3929
|
-
var create_permission_set = function () {
|
|
3591
|
+
var create_permission_set = exports.create_permission_set = function () {
|
|
3930
3592
|
var _ref340 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3931
3593
|
return sdk.post('/permission_sets', null, body, options);
|
|
3932
3594
|
});
|
|
3933
|
-
return function create_permission_set(
|
|
3595
|
+
return function create_permission_set(_x1156, _x1157, _x1158) {
|
|
3934
3596
|
return _ref340.apply(this, arguments);
|
|
3935
3597
|
};
|
|
3936
3598
|
}();
|
|
3937
|
-
exports.
|
|
3938
|
-
var all_roles = function () {
|
|
3599
|
+
var all_roles = exports.all_roles = function () {
|
|
3939
3600
|
var _ref341 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3940
3601
|
return sdk.get('/roles', {
|
|
3941
3602
|
fields: request.fields,
|
|
3942
3603
|
ids: request.ids
|
|
3943
3604
|
}, null, options);
|
|
3944
3605
|
});
|
|
3945
|
-
return function all_roles(
|
|
3606
|
+
return function all_roles(_x1159, _x1160, _x1161) {
|
|
3946
3607
|
return _ref341.apply(this, arguments);
|
|
3947
3608
|
};
|
|
3948
3609
|
}();
|
|
3949
|
-
exports.
|
|
3950
|
-
var create_role = function () {
|
|
3610
|
+
var create_role = exports.create_role = function () {
|
|
3951
3611
|
var _ref342 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3952
3612
|
return sdk.post('/roles', null, body, options);
|
|
3953
3613
|
});
|
|
3954
|
-
return function create_role(
|
|
3614
|
+
return function create_role(_x1162, _x1163, _x1164) {
|
|
3955
3615
|
return _ref342.apply(this, arguments);
|
|
3956
3616
|
};
|
|
3957
3617
|
}();
|
|
3958
|
-
exports.
|
|
3959
|
-
var search_roles = function () {
|
|
3618
|
+
var search_roles = exports.search_roles = function () {
|
|
3960
3619
|
var _ref343 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3961
3620
|
return sdk.get('/roles/search', {
|
|
3962
3621
|
fields: request.fields,
|
|
@@ -3969,12 +3628,11 @@ var search_roles = function () {
|
|
|
3969
3628
|
filter_or: request.filter_or
|
|
3970
3629
|
}, null, options);
|
|
3971
3630
|
});
|
|
3972
|
-
return function search_roles(
|
|
3631
|
+
return function search_roles(_x1165, _x1166, _x1167) {
|
|
3973
3632
|
return _ref343.apply(this, arguments);
|
|
3974
3633
|
};
|
|
3975
3634
|
}();
|
|
3976
|
-
exports.
|
|
3977
|
-
var search_roles_with_user_count = function () {
|
|
3635
|
+
var search_roles_with_user_count = exports.search_roles_with_user_count = function () {
|
|
3978
3636
|
var _ref344 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3979
3637
|
return sdk.get('/roles/search/with_user_count', {
|
|
3980
3638
|
fields: request.fields,
|
|
@@ -3987,64 +3645,58 @@ var search_roles_with_user_count = function () {
|
|
|
3987
3645
|
filter_or: request.filter_or
|
|
3988
3646
|
}, null, options);
|
|
3989
3647
|
});
|
|
3990
|
-
return function search_roles_with_user_count(
|
|
3648
|
+
return function search_roles_with_user_count(_x1168, _x1169, _x1170) {
|
|
3991
3649
|
return _ref344.apply(this, arguments);
|
|
3992
3650
|
};
|
|
3993
3651
|
}();
|
|
3994
|
-
exports.
|
|
3995
|
-
var role = function () {
|
|
3652
|
+
var role = exports.role = function () {
|
|
3996
3653
|
var _ref345 = _asyncToGenerator(function* (sdk, role_id, options) {
|
|
3997
3654
|
role_id = (0, _sdkRtl.encodeParam)(role_id);
|
|
3998
3655
|
return sdk.get("/roles/".concat(role_id), null, null, options);
|
|
3999
3656
|
});
|
|
4000
|
-
return function role(
|
|
3657
|
+
return function role(_x1171, _x1172, _x1173) {
|
|
4001
3658
|
return _ref345.apply(this, arguments);
|
|
4002
3659
|
};
|
|
4003
3660
|
}();
|
|
4004
|
-
exports.
|
|
4005
|
-
var update_role = function () {
|
|
3661
|
+
var update_role = exports.update_role = function () {
|
|
4006
3662
|
var _ref346 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
4007
3663
|
role_id = (0, _sdkRtl.encodeParam)(role_id);
|
|
4008
3664
|
return sdk.patch("/roles/".concat(role_id), null, body, options);
|
|
4009
3665
|
});
|
|
4010
|
-
return function update_role(
|
|
3666
|
+
return function update_role(_x1174, _x1175, _x1176, _x1177) {
|
|
4011
3667
|
return _ref346.apply(this, arguments);
|
|
4012
3668
|
};
|
|
4013
3669
|
}();
|
|
4014
|
-
exports.
|
|
4015
|
-
var delete_role = function () {
|
|
3670
|
+
var delete_role = exports.delete_role = function () {
|
|
4016
3671
|
var _ref347 = _asyncToGenerator(function* (sdk, role_id, options) {
|
|
4017
3672
|
role_id = (0, _sdkRtl.encodeParam)(role_id);
|
|
4018
3673
|
return sdk.delete("/roles/".concat(role_id), null, null, options);
|
|
4019
3674
|
});
|
|
4020
|
-
return function delete_role(
|
|
3675
|
+
return function delete_role(_x1178, _x1179, _x1180) {
|
|
4021
3676
|
return _ref347.apply(this, arguments);
|
|
4022
3677
|
};
|
|
4023
3678
|
}();
|
|
4024
|
-
exports.
|
|
4025
|
-
var role_groups = function () {
|
|
3679
|
+
var role_groups = exports.role_groups = function () {
|
|
4026
3680
|
var _ref348 = _asyncToGenerator(function* (sdk, role_id, fields, options) {
|
|
4027
3681
|
role_id = (0, _sdkRtl.encodeParam)(role_id);
|
|
4028
3682
|
return sdk.get("/roles/".concat(role_id, "/groups"), {
|
|
4029
3683
|
fields
|
|
4030
3684
|
}, null, options);
|
|
4031
3685
|
});
|
|
4032
|
-
return function role_groups(
|
|
3686
|
+
return function role_groups(_x1181, _x1182, _x1183, _x1184) {
|
|
4033
3687
|
return _ref348.apply(this, arguments);
|
|
4034
3688
|
};
|
|
4035
3689
|
}();
|
|
4036
|
-
exports.
|
|
4037
|
-
var set_role_groups = function () {
|
|
3690
|
+
var set_role_groups = exports.set_role_groups = function () {
|
|
4038
3691
|
var _ref349 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
4039
3692
|
role_id = (0, _sdkRtl.encodeParam)(role_id);
|
|
4040
3693
|
return sdk.put("/roles/".concat(role_id, "/groups"), null, body, options);
|
|
4041
3694
|
});
|
|
4042
|
-
return function set_role_groups(
|
|
3695
|
+
return function set_role_groups(_x1185, _x1186, _x1187, _x1188) {
|
|
4043
3696
|
return _ref349.apply(this, arguments);
|
|
4044
3697
|
};
|
|
4045
3698
|
}();
|
|
4046
|
-
exports.
|
|
4047
|
-
var role_users = function () {
|
|
3699
|
+
var role_users = exports.role_users = function () {
|
|
4048
3700
|
var _ref350 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4049
3701
|
request.role_id = (0, _sdkRtl.encodeParam)(request.role_id);
|
|
4050
3702
|
return sdk.get("/roles/".concat(request.role_id, "/users"), {
|
|
@@ -4052,66 +3704,60 @@ var role_users = function () {
|
|
|
4052
3704
|
direct_association_only: request.direct_association_only
|
|
4053
3705
|
}, null, options);
|
|
4054
3706
|
});
|
|
4055
|
-
return function role_users(
|
|
3707
|
+
return function role_users(_x1189, _x1190, _x1191) {
|
|
4056
3708
|
return _ref350.apply(this, arguments);
|
|
4057
3709
|
};
|
|
4058
3710
|
}();
|
|
4059
|
-
exports.
|
|
4060
|
-
var set_role_users = function () {
|
|
3711
|
+
var set_role_users = exports.set_role_users = function () {
|
|
4061
3712
|
var _ref351 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
4062
3713
|
role_id = (0, _sdkRtl.encodeParam)(role_id);
|
|
4063
3714
|
return sdk.put("/roles/".concat(role_id, "/users"), null, body, options);
|
|
4064
3715
|
});
|
|
4065
|
-
return function set_role_users(
|
|
3716
|
+
return function set_role_users(_x1192, _x1193, _x1194, _x1195) {
|
|
4066
3717
|
return _ref351.apply(this, arguments);
|
|
4067
3718
|
};
|
|
4068
3719
|
}();
|
|
4069
|
-
exports.
|
|
4070
|
-
var scheduled_plans_for_space = function () {
|
|
3720
|
+
var scheduled_plans_for_space = exports.scheduled_plans_for_space = function () {
|
|
4071
3721
|
var _ref352 = _asyncToGenerator(function* (sdk, space_id, fields, options) {
|
|
4072
3722
|
space_id = (0, _sdkRtl.encodeParam)(space_id);
|
|
4073
3723
|
return sdk.get("/scheduled_plans/space/".concat(space_id), {
|
|
4074
3724
|
fields
|
|
4075
3725
|
}, null, options);
|
|
4076
3726
|
});
|
|
4077
|
-
return function scheduled_plans_for_space(
|
|
3727
|
+
return function scheduled_plans_for_space(_x1196, _x1197, _x1198, _x1199) {
|
|
4078
3728
|
return _ref352.apply(this, arguments);
|
|
4079
3729
|
};
|
|
4080
3730
|
}();
|
|
4081
|
-
exports.
|
|
4082
|
-
var scheduled_plan = function () {
|
|
3731
|
+
var scheduled_plan = exports.scheduled_plan = function () {
|
|
4083
3732
|
var _ref353 = _asyncToGenerator(function* (sdk, scheduled_plan_id, fields, options) {
|
|
4084
3733
|
scheduled_plan_id = (0, _sdkRtl.encodeParam)(scheduled_plan_id);
|
|
4085
3734
|
return sdk.get("/scheduled_plans/".concat(scheduled_plan_id), {
|
|
4086
3735
|
fields
|
|
4087
3736
|
}, null, options);
|
|
4088
3737
|
});
|
|
4089
|
-
return function scheduled_plan(
|
|
3738
|
+
return function scheduled_plan(_x1200, _x1201, _x1202, _x1203) {
|
|
4090
3739
|
return _ref353.apply(this, arguments);
|
|
4091
3740
|
};
|
|
4092
3741
|
}();
|
|
4093
|
-
exports.
|
|
4094
|
-
var update_scheduled_plan = function () {
|
|
3742
|
+
var update_scheduled_plan = exports.update_scheduled_plan = function () {
|
|
4095
3743
|
var _ref354 = _asyncToGenerator(function* (sdk, scheduled_plan_id, body, options) {
|
|
4096
3744
|
scheduled_plan_id = (0, _sdkRtl.encodeParam)(scheduled_plan_id);
|
|
4097
3745
|
return sdk.patch("/scheduled_plans/".concat(scheduled_plan_id), null, body, options);
|
|
4098
3746
|
});
|
|
4099
|
-
return function update_scheduled_plan(
|
|
3747
|
+
return function update_scheduled_plan(_x1204, _x1205, _x1206, _x1207) {
|
|
4100
3748
|
return _ref354.apply(this, arguments);
|
|
4101
3749
|
};
|
|
4102
3750
|
}();
|
|
4103
|
-
exports.
|
|
4104
|
-
var delete_scheduled_plan = function () {
|
|
3751
|
+
var delete_scheduled_plan = exports.delete_scheduled_plan = function () {
|
|
4105
3752
|
var _ref355 = _asyncToGenerator(function* (sdk, scheduled_plan_id, options) {
|
|
4106
3753
|
scheduled_plan_id = (0, _sdkRtl.encodeParam)(scheduled_plan_id);
|
|
4107
3754
|
return sdk.delete("/scheduled_plans/".concat(scheduled_plan_id), null, null, options);
|
|
4108
3755
|
});
|
|
4109
|
-
return function delete_scheduled_plan(
|
|
3756
|
+
return function delete_scheduled_plan(_x1208, _x1209, _x1210) {
|
|
4110
3757
|
return _ref355.apply(this, arguments);
|
|
4111
3758
|
};
|
|
4112
3759
|
}();
|
|
4113
|
-
exports.
|
|
4114
|
-
var all_scheduled_plans = function () {
|
|
3760
|
+
var all_scheduled_plans = exports.all_scheduled_plans = function () {
|
|
4115
3761
|
var _ref356 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4116
3762
|
return sdk.get('/scheduled_plans', {
|
|
4117
3763
|
user_id: request.user_id,
|
|
@@ -4119,30 +3765,27 @@ var all_scheduled_plans = function () {
|
|
|
4119
3765
|
all_users: request.all_users
|
|
4120
3766
|
}, null, options);
|
|
4121
3767
|
});
|
|
4122
|
-
return function all_scheduled_plans(
|
|
3768
|
+
return function all_scheduled_plans(_x1211, _x1212, _x1213) {
|
|
4123
3769
|
return _ref356.apply(this, arguments);
|
|
4124
3770
|
};
|
|
4125
3771
|
}();
|
|
4126
|
-
exports.
|
|
4127
|
-
var create_scheduled_plan = function () {
|
|
3772
|
+
var create_scheduled_plan = exports.create_scheduled_plan = function () {
|
|
4128
3773
|
var _ref357 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4129
3774
|
return sdk.post('/scheduled_plans', null, body, options);
|
|
4130
3775
|
});
|
|
4131
|
-
return function create_scheduled_plan(
|
|
3776
|
+
return function create_scheduled_plan(_x1214, _x1215, _x1216) {
|
|
4132
3777
|
return _ref357.apply(this, arguments);
|
|
4133
3778
|
};
|
|
4134
3779
|
}();
|
|
4135
|
-
exports.
|
|
4136
|
-
var scheduled_plan_run_once = function () {
|
|
3780
|
+
var scheduled_plan_run_once = exports.scheduled_plan_run_once = function () {
|
|
4137
3781
|
var _ref358 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4138
3782
|
return sdk.post('/scheduled_plans/run_once', null, body, options);
|
|
4139
3783
|
});
|
|
4140
|
-
return function scheduled_plan_run_once(
|
|
3784
|
+
return function scheduled_plan_run_once(_x1217, _x1218, _x1219) {
|
|
4141
3785
|
return _ref358.apply(this, arguments);
|
|
4142
3786
|
};
|
|
4143
3787
|
}();
|
|
4144
|
-
exports.
|
|
4145
|
-
var scheduled_plans_for_look = function () {
|
|
3788
|
+
var scheduled_plans_for_look = exports.scheduled_plans_for_look = function () {
|
|
4146
3789
|
var _ref359 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4147
3790
|
request.look_id = (0, _sdkRtl.encodeParam)(request.look_id);
|
|
4148
3791
|
return sdk.get("/scheduled_plans/look/".concat(request.look_id), {
|
|
@@ -4151,12 +3794,11 @@ var scheduled_plans_for_look = function () {
|
|
|
4151
3794
|
all_users: request.all_users
|
|
4152
3795
|
}, null, options);
|
|
4153
3796
|
});
|
|
4154
|
-
return function scheduled_plans_for_look(
|
|
3797
|
+
return function scheduled_plans_for_look(_x1220, _x1221, _x1222) {
|
|
4155
3798
|
return _ref359.apply(this, arguments);
|
|
4156
3799
|
};
|
|
4157
3800
|
}();
|
|
4158
|
-
exports.
|
|
4159
|
-
var scheduled_plans_for_dashboard = function () {
|
|
3801
|
+
var scheduled_plans_for_dashboard = exports.scheduled_plans_for_dashboard = function () {
|
|
4160
3802
|
var _ref360 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4161
3803
|
request.dashboard_id = (0, _sdkRtl.encodeParam)(request.dashboard_id);
|
|
4162
3804
|
return sdk.get("/scheduled_plans/dashboard/".concat(request.dashboard_id), {
|
|
@@ -4165,12 +3807,11 @@ var scheduled_plans_for_dashboard = function () {
|
|
|
4165
3807
|
fields: request.fields
|
|
4166
3808
|
}, null, options);
|
|
4167
3809
|
});
|
|
4168
|
-
return function scheduled_plans_for_dashboard(
|
|
3810
|
+
return function scheduled_plans_for_dashboard(_x1223, _x1224, _x1225) {
|
|
4169
3811
|
return _ref360.apply(this, arguments);
|
|
4170
3812
|
};
|
|
4171
3813
|
}();
|
|
4172
|
-
exports.
|
|
4173
|
-
var scheduled_plans_for_lookml_dashboard = function () {
|
|
3814
|
+
var scheduled_plans_for_lookml_dashboard = exports.scheduled_plans_for_lookml_dashboard = function () {
|
|
4174
3815
|
var _ref361 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4175
3816
|
request.lookml_dashboard_id = (0, _sdkRtl.encodeParam)(request.lookml_dashboard_id);
|
|
4176
3817
|
return sdk.get("/scheduled_plans/lookml_dashboard/".concat(request.lookml_dashboard_id), {
|
|
@@ -4179,90 +3820,81 @@ var scheduled_plans_for_lookml_dashboard = function () {
|
|
|
4179
3820
|
all_users: request.all_users
|
|
4180
3821
|
}, null, options);
|
|
4181
3822
|
});
|
|
4182
|
-
return function scheduled_plans_for_lookml_dashboard(
|
|
3823
|
+
return function scheduled_plans_for_lookml_dashboard(_x1226, _x1227, _x1228) {
|
|
4183
3824
|
return _ref361.apply(this, arguments);
|
|
4184
3825
|
};
|
|
4185
3826
|
}();
|
|
4186
|
-
exports.
|
|
4187
|
-
var scheduled_plan_run_once_by_id = function () {
|
|
3827
|
+
var scheduled_plan_run_once_by_id = exports.scheduled_plan_run_once_by_id = function () {
|
|
4188
3828
|
var _ref362 = _asyncToGenerator(function* (sdk, scheduled_plan_id, body, options) {
|
|
4189
3829
|
scheduled_plan_id = (0, _sdkRtl.encodeParam)(scheduled_plan_id);
|
|
4190
3830
|
return sdk.post("/scheduled_plans/".concat(scheduled_plan_id, "/run_once"), null, body, options);
|
|
4191
3831
|
});
|
|
4192
|
-
return function scheduled_plan_run_once_by_id(
|
|
3832
|
+
return function scheduled_plan_run_once_by_id(_x1229, _x1230, _x1231, _x1232) {
|
|
4193
3833
|
return _ref362.apply(this, arguments);
|
|
4194
3834
|
};
|
|
4195
3835
|
}();
|
|
4196
|
-
exports.
|
|
4197
|
-
var session = function () {
|
|
3836
|
+
var session = exports.session = function () {
|
|
4198
3837
|
var _ref363 = _asyncToGenerator(function* (sdk, options) {
|
|
4199
3838
|
return sdk.get('/session', null, null, options);
|
|
4200
3839
|
});
|
|
4201
|
-
return function session(
|
|
3840
|
+
return function session(_x1233, _x1234) {
|
|
4202
3841
|
return _ref363.apply(this, arguments);
|
|
4203
3842
|
};
|
|
4204
3843
|
}();
|
|
4205
|
-
exports.
|
|
4206
|
-
var update_session = function () {
|
|
3844
|
+
var update_session = exports.update_session = function () {
|
|
4207
3845
|
var _ref364 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4208
3846
|
return sdk.patch('/session', null, body, options);
|
|
4209
3847
|
});
|
|
4210
|
-
return function update_session(
|
|
3848
|
+
return function update_session(_x1235, _x1236, _x1237) {
|
|
4211
3849
|
return _ref364.apply(this, arguments);
|
|
4212
3850
|
};
|
|
4213
3851
|
}();
|
|
4214
|
-
exports.
|
|
4215
|
-
var sql_interface_metadata = function () {
|
|
3852
|
+
var sql_interface_metadata = exports.sql_interface_metadata = function () {
|
|
4216
3853
|
var _ref365 = _asyncToGenerator(function* (sdk, avatica_request, options) {
|
|
4217
3854
|
return sdk.get('/sql_interface_queries/metadata', {
|
|
4218
3855
|
avatica_request
|
|
4219
3856
|
}, null, options);
|
|
4220
3857
|
});
|
|
4221
|
-
return function sql_interface_metadata(
|
|
3858
|
+
return function sql_interface_metadata(_x1238, _x1239, _x1240) {
|
|
4222
3859
|
return _ref365.apply(this, arguments);
|
|
4223
3860
|
};
|
|
4224
3861
|
}();
|
|
4225
|
-
exports.
|
|
4226
|
-
var run_sql_interface_query = function () {
|
|
3862
|
+
var run_sql_interface_query = exports.run_sql_interface_query = function () {
|
|
4227
3863
|
var _ref366 = _asyncToGenerator(function* (sdk, query_id, result_format, options) {
|
|
4228
3864
|
result_format = (0, _sdkRtl.encodeParam)(result_format);
|
|
4229
3865
|
return sdk.get("/sql_interface_queries/".concat(query_id, "/run/").concat(result_format), null, null, options);
|
|
4230
3866
|
});
|
|
4231
|
-
return function run_sql_interface_query(
|
|
3867
|
+
return function run_sql_interface_query(_x1241, _x1242, _x1243, _x1244) {
|
|
4232
3868
|
return _ref366.apply(this, arguments);
|
|
4233
3869
|
};
|
|
4234
3870
|
}();
|
|
4235
|
-
exports.
|
|
4236
|
-
var create_sql_interface_query = function () {
|
|
3871
|
+
var create_sql_interface_query = exports.create_sql_interface_query = function () {
|
|
4237
3872
|
var _ref367 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4238
3873
|
return sdk.post('/sql_interface_queries', null, body, options);
|
|
4239
3874
|
});
|
|
4240
|
-
return function create_sql_interface_query(
|
|
3875
|
+
return function create_sql_interface_query(_x1245, _x1246, _x1247) {
|
|
4241
3876
|
return _ref367.apply(this, arguments);
|
|
4242
3877
|
};
|
|
4243
3878
|
}();
|
|
4244
|
-
exports.
|
|
4245
|
-
var all_themes = function () {
|
|
3879
|
+
var all_themes = exports.all_themes = function () {
|
|
4246
3880
|
var _ref368 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
4247
3881
|
return sdk.get('/themes', {
|
|
4248
3882
|
fields
|
|
4249
3883
|
}, null, options);
|
|
4250
3884
|
});
|
|
4251
|
-
return function all_themes(
|
|
3885
|
+
return function all_themes(_x1248, _x1249, _x1250) {
|
|
4252
3886
|
return _ref368.apply(this, arguments);
|
|
4253
3887
|
};
|
|
4254
3888
|
}();
|
|
4255
|
-
exports.
|
|
4256
|
-
var create_theme = function () {
|
|
3889
|
+
var create_theme = exports.create_theme = function () {
|
|
4257
3890
|
var _ref369 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4258
3891
|
return sdk.post('/themes', null, body, options);
|
|
4259
3892
|
});
|
|
4260
|
-
return function create_theme(
|
|
3893
|
+
return function create_theme(_x1251, _x1252, _x1253) {
|
|
4261
3894
|
return _ref369.apply(this, arguments);
|
|
4262
3895
|
};
|
|
4263
3896
|
}();
|
|
4264
|
-
exports.
|
|
4265
|
-
var search_themes = function () {
|
|
3897
|
+
var search_themes = exports.search_themes = function () {
|
|
4266
3898
|
var _ref370 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4267
3899
|
return sdk.get('/themes/search', {
|
|
4268
3900
|
id: request.id,
|
|
@@ -4276,34 +3908,31 @@ var search_themes = function () {
|
|
|
4276
3908
|
filter_or: request.filter_or
|
|
4277
3909
|
}, null, options);
|
|
4278
3910
|
});
|
|
4279
|
-
return function search_themes(
|
|
3911
|
+
return function search_themes(_x1254, _x1255, _x1256) {
|
|
4280
3912
|
return _ref370.apply(this, arguments);
|
|
4281
3913
|
};
|
|
4282
3914
|
}();
|
|
4283
|
-
exports.
|
|
4284
|
-
var default_theme = function () {
|
|
3915
|
+
var default_theme = exports.default_theme = function () {
|
|
4285
3916
|
var _ref371 = _asyncToGenerator(function* (sdk, ts, options) {
|
|
4286
3917
|
return sdk.get('/themes/default', {
|
|
4287
3918
|
ts
|
|
4288
3919
|
}, null, options);
|
|
4289
3920
|
});
|
|
4290
|
-
return function default_theme(
|
|
3921
|
+
return function default_theme(_x1257, _x1258, _x1259) {
|
|
4291
3922
|
return _ref371.apply(this, arguments);
|
|
4292
3923
|
};
|
|
4293
3924
|
}();
|
|
4294
|
-
exports.
|
|
4295
|
-
var set_default_theme = function () {
|
|
3925
|
+
var set_default_theme = exports.set_default_theme = function () {
|
|
4296
3926
|
var _ref372 = _asyncToGenerator(function* (sdk, name, options) {
|
|
4297
3927
|
return sdk.put('/themes/default', {
|
|
4298
3928
|
name
|
|
4299
3929
|
}, null, options);
|
|
4300
3930
|
});
|
|
4301
|
-
return function set_default_theme(
|
|
3931
|
+
return function set_default_theme(_x1260, _x1261, _x1262) {
|
|
4302
3932
|
return _ref372.apply(this, arguments);
|
|
4303
3933
|
};
|
|
4304
3934
|
}();
|
|
4305
|
-
exports.
|
|
4306
|
-
var active_themes = function () {
|
|
3935
|
+
var active_themes = exports.active_themes = function () {
|
|
4307
3936
|
var _ref373 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4308
3937
|
return sdk.get('/themes/active', {
|
|
4309
3938
|
name: request.name,
|
|
@@ -4311,65 +3940,59 @@ var active_themes = function () {
|
|
|
4311
3940
|
fields: request.fields
|
|
4312
3941
|
}, null, options);
|
|
4313
3942
|
});
|
|
4314
|
-
return function active_themes(
|
|
3943
|
+
return function active_themes(_x1263, _x1264, _x1265) {
|
|
4315
3944
|
return _ref373.apply(this, arguments);
|
|
4316
3945
|
};
|
|
4317
3946
|
}();
|
|
4318
|
-
exports.
|
|
4319
|
-
var theme_or_default = function () {
|
|
3947
|
+
var theme_or_default = exports.theme_or_default = function () {
|
|
4320
3948
|
var _ref374 = _asyncToGenerator(function* (sdk, name, ts, options) {
|
|
4321
3949
|
return sdk.get('/themes/theme_or_default', {
|
|
4322
3950
|
name,
|
|
4323
3951
|
ts
|
|
4324
3952
|
}, null, options);
|
|
4325
3953
|
});
|
|
4326
|
-
return function theme_or_default(
|
|
3954
|
+
return function theme_or_default(_x1266, _x1267, _x1268, _x1269) {
|
|
4327
3955
|
return _ref374.apply(this, arguments);
|
|
4328
3956
|
};
|
|
4329
3957
|
}();
|
|
4330
|
-
exports.
|
|
4331
|
-
var validate_theme = function () {
|
|
3958
|
+
var validate_theme = exports.validate_theme = function () {
|
|
4332
3959
|
var _ref375 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4333
3960
|
return sdk.post('/themes/validate', null, body, options);
|
|
4334
3961
|
});
|
|
4335
|
-
return function validate_theme(
|
|
3962
|
+
return function validate_theme(_x1270, _x1271, _x1272) {
|
|
4336
3963
|
return _ref375.apply(this, arguments);
|
|
4337
3964
|
};
|
|
4338
3965
|
}();
|
|
4339
|
-
exports.
|
|
4340
|
-
var theme = function () {
|
|
3966
|
+
var theme = exports.theme = function () {
|
|
4341
3967
|
var _ref376 = _asyncToGenerator(function* (sdk, theme_id, fields, options) {
|
|
4342
3968
|
theme_id = (0, _sdkRtl.encodeParam)(theme_id);
|
|
4343
3969
|
return sdk.get("/themes/".concat(theme_id), {
|
|
4344
3970
|
fields
|
|
4345
3971
|
}, null, options);
|
|
4346
3972
|
});
|
|
4347
|
-
return function theme(
|
|
3973
|
+
return function theme(_x1273, _x1274, _x1275, _x1276) {
|
|
4348
3974
|
return _ref376.apply(this, arguments);
|
|
4349
3975
|
};
|
|
4350
3976
|
}();
|
|
4351
|
-
exports.
|
|
4352
|
-
var update_theme = function () {
|
|
3977
|
+
var update_theme = exports.update_theme = function () {
|
|
4353
3978
|
var _ref377 = _asyncToGenerator(function* (sdk, theme_id, body, options) {
|
|
4354
3979
|
theme_id = (0, _sdkRtl.encodeParam)(theme_id);
|
|
4355
3980
|
return sdk.patch("/themes/".concat(theme_id), null, body, options);
|
|
4356
3981
|
});
|
|
4357
|
-
return function update_theme(
|
|
3982
|
+
return function update_theme(_x1277, _x1278, _x1279, _x1280) {
|
|
4358
3983
|
return _ref377.apply(this, arguments);
|
|
4359
3984
|
};
|
|
4360
3985
|
}();
|
|
4361
|
-
exports.
|
|
4362
|
-
var delete_theme = function () {
|
|
3986
|
+
var delete_theme = exports.delete_theme = function () {
|
|
4363
3987
|
var _ref378 = _asyncToGenerator(function* (sdk, theme_id, options) {
|
|
4364
3988
|
theme_id = (0, _sdkRtl.encodeParam)(theme_id);
|
|
4365
3989
|
return sdk.delete("/themes/".concat(theme_id), null, null, options);
|
|
4366
3990
|
});
|
|
4367
|
-
return function delete_theme(
|
|
3991
|
+
return function delete_theme(_x1281, _x1282, _x1283) {
|
|
4368
3992
|
return _ref378.apply(this, arguments);
|
|
4369
3993
|
};
|
|
4370
3994
|
}();
|
|
4371
|
-
exports.
|
|
4372
|
-
var search_credentials_email = function () {
|
|
3995
|
+
var search_credentials_email = exports.search_credentials_email = function () {
|
|
4373
3996
|
var _ref379 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4374
3997
|
return sdk.get('/credentials_email/search', {
|
|
4375
3998
|
fields: request.fields,
|
|
@@ -4382,23 +4005,21 @@ var search_credentials_email = function () {
|
|
|
4382
4005
|
filter_or: request.filter_or
|
|
4383
4006
|
}, null, options);
|
|
4384
4007
|
});
|
|
4385
|
-
return function search_credentials_email(
|
|
4008
|
+
return function search_credentials_email(_x1284, _x1285, _x1286) {
|
|
4386
4009
|
return _ref379.apply(this, arguments);
|
|
4387
4010
|
};
|
|
4388
4011
|
}();
|
|
4389
|
-
exports.
|
|
4390
|
-
var me = function () {
|
|
4012
|
+
var me = exports.me = function () {
|
|
4391
4013
|
var _ref380 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
4392
4014
|
return sdk.get('/user', {
|
|
4393
4015
|
fields
|
|
4394
4016
|
}, null, options);
|
|
4395
4017
|
});
|
|
4396
|
-
return function me(
|
|
4018
|
+
return function me(_x1287, _x1288, _x1289) {
|
|
4397
4019
|
return _ref380.apply(this, arguments);
|
|
4398
4020
|
};
|
|
4399
4021
|
}();
|
|
4400
|
-
exports.
|
|
4401
|
-
var all_users = function () {
|
|
4022
|
+
var all_users = exports.all_users = function () {
|
|
4402
4023
|
var _ref381 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4403
4024
|
return sdk.get('/users', {
|
|
4404
4025
|
fields: request.fields,
|
|
@@ -4410,23 +4031,21 @@ var all_users = function () {
|
|
|
4410
4031
|
ids: request.ids
|
|
4411
4032
|
}, null, options);
|
|
4412
4033
|
});
|
|
4413
|
-
return function all_users(
|
|
4034
|
+
return function all_users(_x1290, _x1291, _x1292) {
|
|
4414
4035
|
return _ref381.apply(this, arguments);
|
|
4415
4036
|
};
|
|
4416
4037
|
}();
|
|
4417
|
-
exports.
|
|
4418
|
-
var create_user = function () {
|
|
4038
|
+
var create_user = exports.create_user = function () {
|
|
4419
4039
|
var _ref382 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
4420
4040
|
return sdk.post('/users', {
|
|
4421
4041
|
fields
|
|
4422
4042
|
}, body, options);
|
|
4423
4043
|
});
|
|
4424
|
-
return function create_user(
|
|
4044
|
+
return function create_user(_x1293, _x1294, _x1295, _x1296) {
|
|
4425
4045
|
return _ref382.apply(this, arguments);
|
|
4426
4046
|
};
|
|
4427
4047
|
}();
|
|
4428
|
-
exports.
|
|
4429
|
-
var search_users = function () {
|
|
4048
|
+
var search_users = exports.search_users = function () {
|
|
4430
4049
|
var _ref383 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4431
4050
|
return sdk.get('/users/search', {
|
|
4432
4051
|
fields: request.fields,
|
|
@@ -4447,12 +4066,11 @@ var search_users = function () {
|
|
|
4447
4066
|
group_id: request.group_id
|
|
4448
4067
|
}, null, options);
|
|
4449
4068
|
});
|
|
4450
|
-
return function search_users(
|
|
4069
|
+
return function search_users(_x1297, _x1298, _x1299) {
|
|
4451
4070
|
return _ref383.apply(this, arguments);
|
|
4452
4071
|
};
|
|
4453
4072
|
}();
|
|
4454
|
-
exports.
|
|
4455
|
-
var search_users_names = function () {
|
|
4073
|
+
var search_users_names = exports.search_users_names = function () {
|
|
4456
4074
|
var _ref384 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4457
4075
|
request.pattern = (0, _sdkRtl.encodeParam)(request.pattern);
|
|
4458
4076
|
return sdk.get("/users/search/names/".concat(request.pattern), {
|
|
@@ -4470,46 +4088,42 @@ var search_users_names = function () {
|
|
|
4470
4088
|
is_disabled: request.is_disabled
|
|
4471
4089
|
}, null, options);
|
|
4472
4090
|
});
|
|
4473
|
-
return function search_users_names(
|
|
4091
|
+
return function search_users_names(_x1300, _x1301, _x1302) {
|
|
4474
4092
|
return _ref384.apply(this, arguments);
|
|
4475
4093
|
};
|
|
4476
4094
|
}();
|
|
4477
|
-
exports.
|
|
4478
|
-
var user = function () {
|
|
4095
|
+
var user = exports.user = function () {
|
|
4479
4096
|
var _ref385 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4480
4097
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4481
4098
|
return sdk.get("/users/".concat(user_id), {
|
|
4482
4099
|
fields
|
|
4483
4100
|
}, null, options);
|
|
4484
4101
|
});
|
|
4485
|
-
return function user(
|
|
4102
|
+
return function user(_x1303, _x1304, _x1305, _x1306) {
|
|
4486
4103
|
return _ref385.apply(this, arguments);
|
|
4487
4104
|
};
|
|
4488
4105
|
}();
|
|
4489
|
-
exports.
|
|
4490
|
-
var update_user = function () {
|
|
4106
|
+
var update_user = exports.update_user = function () {
|
|
4491
4107
|
var _ref386 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4492
4108
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4493
4109
|
return sdk.patch("/users/".concat(user_id), {
|
|
4494
4110
|
fields
|
|
4495
4111
|
}, body, options);
|
|
4496
4112
|
});
|
|
4497
|
-
return function update_user(
|
|
4113
|
+
return function update_user(_x1307, _x1308, _x1309, _x1310, _x1311) {
|
|
4498
4114
|
return _ref386.apply(this, arguments);
|
|
4499
4115
|
};
|
|
4500
4116
|
}();
|
|
4501
|
-
exports.
|
|
4502
|
-
var delete_user = function () {
|
|
4117
|
+
var delete_user = exports.delete_user = function () {
|
|
4503
4118
|
var _ref387 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4504
4119
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4505
4120
|
return sdk.delete("/users/".concat(user_id), null, null, options);
|
|
4506
4121
|
});
|
|
4507
|
-
return function delete_user(
|
|
4122
|
+
return function delete_user(_x1312, _x1313, _x1314) {
|
|
4508
4123
|
return _ref387.apply(this, arguments);
|
|
4509
4124
|
};
|
|
4510
4125
|
}();
|
|
4511
|
-
exports.
|
|
4512
|
-
var user_for_credential = function () {
|
|
4126
|
+
var user_for_credential = exports.user_for_credential = function () {
|
|
4513
4127
|
var _ref388 = _asyncToGenerator(function* (sdk, credential_type, credential_id, fields, options) {
|
|
4514
4128
|
credential_type = (0, _sdkRtl.encodeParam)(credential_type);
|
|
4515
4129
|
credential_id = (0, _sdkRtl.encodeParam)(credential_id);
|
|
@@ -4517,180 +4131,164 @@ var user_for_credential = function () {
|
|
|
4517
4131
|
fields
|
|
4518
4132
|
}, null, options);
|
|
4519
4133
|
});
|
|
4520
|
-
return function user_for_credential(
|
|
4134
|
+
return function user_for_credential(_x1315, _x1316, _x1317, _x1318, _x1319) {
|
|
4521
4135
|
return _ref388.apply(this, arguments);
|
|
4522
4136
|
};
|
|
4523
4137
|
}();
|
|
4524
|
-
exports.
|
|
4525
|
-
var user_credentials_email = function () {
|
|
4138
|
+
var user_credentials_email = exports.user_credentials_email = function () {
|
|
4526
4139
|
var _ref389 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4527
4140
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4528
4141
|
return sdk.get("/users/".concat(user_id, "/credentials_email"), {
|
|
4529
4142
|
fields
|
|
4530
4143
|
}, null, options);
|
|
4531
4144
|
});
|
|
4532
|
-
return function user_credentials_email(
|
|
4145
|
+
return function user_credentials_email(_x1320, _x1321, _x1322, _x1323) {
|
|
4533
4146
|
return _ref389.apply(this, arguments);
|
|
4534
4147
|
};
|
|
4535
4148
|
}();
|
|
4536
|
-
exports.
|
|
4537
|
-
var create_user_credentials_email = function () {
|
|
4149
|
+
var create_user_credentials_email = exports.create_user_credentials_email = function () {
|
|
4538
4150
|
var _ref390 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4539
4151
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4540
4152
|
return sdk.post("/users/".concat(user_id, "/credentials_email"), {
|
|
4541
4153
|
fields
|
|
4542
4154
|
}, body, options);
|
|
4543
4155
|
});
|
|
4544
|
-
return function create_user_credentials_email(
|
|
4156
|
+
return function create_user_credentials_email(_x1324, _x1325, _x1326, _x1327, _x1328) {
|
|
4545
4157
|
return _ref390.apply(this, arguments);
|
|
4546
4158
|
};
|
|
4547
4159
|
}();
|
|
4548
|
-
exports.
|
|
4549
|
-
var update_user_credentials_email = function () {
|
|
4160
|
+
var update_user_credentials_email = exports.update_user_credentials_email = function () {
|
|
4550
4161
|
var _ref391 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4551
4162
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4552
4163
|
return sdk.patch("/users/".concat(user_id, "/credentials_email"), {
|
|
4553
4164
|
fields
|
|
4554
4165
|
}, body, options);
|
|
4555
4166
|
});
|
|
4556
|
-
return function update_user_credentials_email(
|
|
4167
|
+
return function update_user_credentials_email(_x1329, _x1330, _x1331, _x1332, _x1333) {
|
|
4557
4168
|
return _ref391.apply(this, arguments);
|
|
4558
4169
|
};
|
|
4559
4170
|
}();
|
|
4560
|
-
exports.
|
|
4561
|
-
var delete_user_credentials_email = function () {
|
|
4171
|
+
var delete_user_credentials_email = exports.delete_user_credentials_email = function () {
|
|
4562
4172
|
var _ref392 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4563
4173
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4564
4174
|
return sdk.delete("/users/".concat(user_id, "/credentials_email"), null, null, options);
|
|
4565
4175
|
});
|
|
4566
|
-
return function delete_user_credentials_email(
|
|
4176
|
+
return function delete_user_credentials_email(_x1334, _x1335, _x1336) {
|
|
4567
4177
|
return _ref392.apply(this, arguments);
|
|
4568
4178
|
};
|
|
4569
4179
|
}();
|
|
4570
|
-
exports.
|
|
4571
|
-
var user_credentials_totp = function () {
|
|
4180
|
+
var user_credentials_totp = exports.user_credentials_totp = function () {
|
|
4572
4181
|
var _ref393 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4573
4182
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4574
4183
|
return sdk.get("/users/".concat(user_id, "/credentials_totp"), {
|
|
4575
4184
|
fields
|
|
4576
4185
|
}, null, options);
|
|
4577
4186
|
});
|
|
4578
|
-
return function user_credentials_totp(
|
|
4187
|
+
return function user_credentials_totp(_x1337, _x1338, _x1339, _x1340) {
|
|
4579
4188
|
return _ref393.apply(this, arguments);
|
|
4580
4189
|
};
|
|
4581
4190
|
}();
|
|
4582
|
-
exports.
|
|
4583
|
-
var create_user_credentials_totp = function () {
|
|
4191
|
+
var create_user_credentials_totp = exports.create_user_credentials_totp = function () {
|
|
4584
4192
|
var _ref394 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4585
4193
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4586
4194
|
return sdk.post("/users/".concat(user_id, "/credentials_totp"), {
|
|
4587
4195
|
fields
|
|
4588
4196
|
}, body, options);
|
|
4589
4197
|
});
|
|
4590
|
-
return function create_user_credentials_totp(
|
|
4198
|
+
return function create_user_credentials_totp(_x1341, _x1342, _x1343, _x1344, _x1345) {
|
|
4591
4199
|
return _ref394.apply(this, arguments);
|
|
4592
4200
|
};
|
|
4593
4201
|
}();
|
|
4594
|
-
exports.
|
|
4595
|
-
var delete_user_credentials_totp = function () {
|
|
4202
|
+
var delete_user_credentials_totp = exports.delete_user_credentials_totp = function () {
|
|
4596
4203
|
var _ref395 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4597
4204
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4598
4205
|
return sdk.delete("/users/".concat(user_id, "/credentials_totp"), null, null, options);
|
|
4599
4206
|
});
|
|
4600
|
-
return function delete_user_credentials_totp(
|
|
4207
|
+
return function delete_user_credentials_totp(_x1346, _x1347, _x1348) {
|
|
4601
4208
|
return _ref395.apply(this, arguments);
|
|
4602
4209
|
};
|
|
4603
4210
|
}();
|
|
4604
|
-
exports.
|
|
4605
|
-
var user_credentials_ldap = function () {
|
|
4211
|
+
var user_credentials_ldap = exports.user_credentials_ldap = function () {
|
|
4606
4212
|
var _ref396 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4607
4213
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4608
4214
|
return sdk.get("/users/".concat(user_id, "/credentials_ldap"), {
|
|
4609
4215
|
fields
|
|
4610
4216
|
}, null, options);
|
|
4611
4217
|
});
|
|
4612
|
-
return function user_credentials_ldap(
|
|
4218
|
+
return function user_credentials_ldap(_x1349, _x1350, _x1351, _x1352) {
|
|
4613
4219
|
return _ref396.apply(this, arguments);
|
|
4614
4220
|
};
|
|
4615
4221
|
}();
|
|
4616
|
-
exports.
|
|
4617
|
-
var delete_user_credentials_ldap = function () {
|
|
4222
|
+
var delete_user_credentials_ldap = exports.delete_user_credentials_ldap = function () {
|
|
4618
4223
|
var _ref397 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4619
4224
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4620
4225
|
return sdk.delete("/users/".concat(user_id, "/credentials_ldap"), null, null, options);
|
|
4621
4226
|
});
|
|
4622
|
-
return function delete_user_credentials_ldap(
|
|
4227
|
+
return function delete_user_credentials_ldap(_x1353, _x1354, _x1355) {
|
|
4623
4228
|
return _ref397.apply(this, arguments);
|
|
4624
4229
|
};
|
|
4625
4230
|
}();
|
|
4626
|
-
exports.
|
|
4627
|
-
var user_credentials_google = function () {
|
|
4231
|
+
var user_credentials_google = exports.user_credentials_google = function () {
|
|
4628
4232
|
var _ref398 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4629
4233
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4630
4234
|
return sdk.get("/users/".concat(user_id, "/credentials_google"), {
|
|
4631
4235
|
fields
|
|
4632
4236
|
}, null, options);
|
|
4633
4237
|
});
|
|
4634
|
-
return function user_credentials_google(
|
|
4238
|
+
return function user_credentials_google(_x1356, _x1357, _x1358, _x1359) {
|
|
4635
4239
|
return _ref398.apply(this, arguments);
|
|
4636
4240
|
};
|
|
4637
4241
|
}();
|
|
4638
|
-
exports.
|
|
4639
|
-
var delete_user_credentials_google = function () {
|
|
4242
|
+
var delete_user_credentials_google = exports.delete_user_credentials_google = function () {
|
|
4640
4243
|
var _ref399 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4641
4244
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4642
4245
|
return sdk.delete("/users/".concat(user_id, "/credentials_google"), null, null, options);
|
|
4643
4246
|
});
|
|
4644
|
-
return function delete_user_credentials_google(
|
|
4247
|
+
return function delete_user_credentials_google(_x1360, _x1361, _x1362) {
|
|
4645
4248
|
return _ref399.apply(this, arguments);
|
|
4646
4249
|
};
|
|
4647
4250
|
}();
|
|
4648
|
-
exports.
|
|
4649
|
-
var user_credentials_saml = function () {
|
|
4251
|
+
var user_credentials_saml = exports.user_credentials_saml = function () {
|
|
4650
4252
|
var _ref400 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4651
4253
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4652
4254
|
return sdk.get("/users/".concat(user_id, "/credentials_saml"), {
|
|
4653
4255
|
fields
|
|
4654
4256
|
}, null, options);
|
|
4655
4257
|
});
|
|
4656
|
-
return function user_credentials_saml(
|
|
4258
|
+
return function user_credentials_saml(_x1363, _x1364, _x1365, _x1366) {
|
|
4657
4259
|
return _ref400.apply(this, arguments);
|
|
4658
4260
|
};
|
|
4659
4261
|
}();
|
|
4660
|
-
exports.
|
|
4661
|
-
var delete_user_credentials_saml = function () {
|
|
4262
|
+
var delete_user_credentials_saml = exports.delete_user_credentials_saml = function () {
|
|
4662
4263
|
var _ref401 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4663
4264
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4664
4265
|
return sdk.delete("/users/".concat(user_id, "/credentials_saml"), null, null, options);
|
|
4665
4266
|
});
|
|
4666
|
-
return function delete_user_credentials_saml(
|
|
4267
|
+
return function delete_user_credentials_saml(_x1367, _x1368, _x1369) {
|
|
4667
4268
|
return _ref401.apply(this, arguments);
|
|
4668
4269
|
};
|
|
4669
4270
|
}();
|
|
4670
|
-
exports.
|
|
4671
|
-
var user_credentials_oidc = function () {
|
|
4271
|
+
var user_credentials_oidc = exports.user_credentials_oidc = function () {
|
|
4672
4272
|
var _ref402 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4673
4273
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4674
4274
|
return sdk.get("/users/".concat(user_id, "/credentials_oidc"), {
|
|
4675
4275
|
fields
|
|
4676
4276
|
}, null, options);
|
|
4677
4277
|
});
|
|
4678
|
-
return function user_credentials_oidc(
|
|
4278
|
+
return function user_credentials_oidc(_x1370, _x1371, _x1372, _x1373) {
|
|
4679
4279
|
return _ref402.apply(this, arguments);
|
|
4680
4280
|
};
|
|
4681
4281
|
}();
|
|
4682
|
-
exports.
|
|
4683
|
-
var delete_user_credentials_oidc = function () {
|
|
4282
|
+
var delete_user_credentials_oidc = exports.delete_user_credentials_oidc = function () {
|
|
4684
4283
|
var _ref403 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4685
4284
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4686
4285
|
return sdk.delete("/users/".concat(user_id, "/credentials_oidc"), null, null, options);
|
|
4687
4286
|
});
|
|
4688
|
-
return function delete_user_credentials_oidc(
|
|
4287
|
+
return function delete_user_credentials_oidc(_x1374, _x1375, _x1376) {
|
|
4689
4288
|
return _ref403.apply(this, arguments);
|
|
4690
4289
|
};
|
|
4691
4290
|
}();
|
|
4692
|
-
exports.
|
|
4693
|
-
var user_credentials_api3 = function () {
|
|
4291
|
+
var user_credentials_api3 = exports.user_credentials_api3 = function () {
|
|
4694
4292
|
var _ref404 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, fields, options) {
|
|
4695
4293
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4696
4294
|
credentials_api3_id = (0, _sdkRtl.encodeParam)(credentials_api3_id);
|
|
@@ -4698,47 +4296,43 @@ var user_credentials_api3 = function () {
|
|
|
4698
4296
|
fields
|
|
4699
4297
|
}, null, options);
|
|
4700
4298
|
});
|
|
4701
|
-
return function user_credentials_api3(
|
|
4299
|
+
return function user_credentials_api3(_x1377, _x1378, _x1379, _x1380, _x1381) {
|
|
4702
4300
|
return _ref404.apply(this, arguments);
|
|
4703
4301
|
};
|
|
4704
4302
|
}();
|
|
4705
|
-
exports.
|
|
4706
|
-
var delete_user_credentials_api3 = function () {
|
|
4303
|
+
var delete_user_credentials_api3 = exports.delete_user_credentials_api3 = function () {
|
|
4707
4304
|
var _ref405 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, options) {
|
|
4708
4305
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4709
4306
|
credentials_api3_id = (0, _sdkRtl.encodeParam)(credentials_api3_id);
|
|
4710
4307
|
return sdk.delete("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), null, null, options);
|
|
4711
4308
|
});
|
|
4712
|
-
return function delete_user_credentials_api3(
|
|
4309
|
+
return function delete_user_credentials_api3(_x1382, _x1383, _x1384, _x1385) {
|
|
4713
4310
|
return _ref405.apply(this, arguments);
|
|
4714
4311
|
};
|
|
4715
4312
|
}();
|
|
4716
|
-
exports.
|
|
4717
|
-
var all_user_credentials_api3s = function () {
|
|
4313
|
+
var all_user_credentials_api3s = exports.all_user_credentials_api3s = function () {
|
|
4718
4314
|
var _ref406 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4719
4315
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4720
4316
|
return sdk.get("/users/".concat(user_id, "/credentials_api3"), {
|
|
4721
4317
|
fields
|
|
4722
4318
|
}, null, options);
|
|
4723
4319
|
});
|
|
4724
|
-
return function all_user_credentials_api3s(
|
|
4320
|
+
return function all_user_credentials_api3s(_x1386, _x1387, _x1388, _x1389) {
|
|
4725
4321
|
return _ref406.apply(this, arguments);
|
|
4726
4322
|
};
|
|
4727
4323
|
}();
|
|
4728
|
-
exports.
|
|
4729
|
-
var create_user_credentials_api3 = function () {
|
|
4324
|
+
var create_user_credentials_api3 = exports.create_user_credentials_api3 = function () {
|
|
4730
4325
|
var _ref407 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4731
4326
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4732
4327
|
return sdk.post("/users/".concat(user_id, "/credentials_api3"), {
|
|
4733
4328
|
fields
|
|
4734
4329
|
}, null, options);
|
|
4735
4330
|
});
|
|
4736
|
-
return function create_user_credentials_api3(
|
|
4331
|
+
return function create_user_credentials_api3(_x1390, _x1391, _x1392, _x1393) {
|
|
4737
4332
|
return _ref407.apply(this, arguments);
|
|
4738
4333
|
};
|
|
4739
4334
|
}();
|
|
4740
|
-
exports.
|
|
4741
|
-
var user_credentials_embed = function () {
|
|
4335
|
+
var user_credentials_embed = exports.user_credentials_embed = function () {
|
|
4742
4336
|
var _ref408 = _asyncToGenerator(function* (sdk, user_id, credentials_embed_id, fields, options) {
|
|
4743
4337
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4744
4338
|
credentials_embed_id = (0, _sdkRtl.encodeParam)(credentials_embed_id);
|
|
@@ -4746,57 +4340,52 @@ var user_credentials_embed = function () {
|
|
|
4746
4340
|
fields
|
|
4747
4341
|
}, null, options);
|
|
4748
4342
|
});
|
|
4749
|
-
return function user_credentials_embed(
|
|
4343
|
+
return function user_credentials_embed(_x1394, _x1395, _x1396, _x1397, _x1398) {
|
|
4750
4344
|
return _ref408.apply(this, arguments);
|
|
4751
4345
|
};
|
|
4752
4346
|
}();
|
|
4753
|
-
exports.
|
|
4754
|
-
var delete_user_credentials_embed = function () {
|
|
4347
|
+
var delete_user_credentials_embed = exports.delete_user_credentials_embed = function () {
|
|
4755
4348
|
var _ref409 = _asyncToGenerator(function* (sdk, user_id, credentials_embed_id, options) {
|
|
4756
4349
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4757
4350
|
credentials_embed_id = (0, _sdkRtl.encodeParam)(credentials_embed_id);
|
|
4758
4351
|
return sdk.delete("/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), null, null, options);
|
|
4759
4352
|
});
|
|
4760
|
-
return function delete_user_credentials_embed(
|
|
4353
|
+
return function delete_user_credentials_embed(_x1399, _x1400, _x1401, _x1402) {
|
|
4761
4354
|
return _ref409.apply(this, arguments);
|
|
4762
4355
|
};
|
|
4763
4356
|
}();
|
|
4764
|
-
exports.
|
|
4765
|
-
var all_user_credentials_embeds = function () {
|
|
4357
|
+
var all_user_credentials_embeds = exports.all_user_credentials_embeds = function () {
|
|
4766
4358
|
var _ref410 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4767
4359
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4768
4360
|
return sdk.get("/users/".concat(user_id, "/credentials_embed"), {
|
|
4769
4361
|
fields
|
|
4770
4362
|
}, null, options);
|
|
4771
4363
|
});
|
|
4772
|
-
return function all_user_credentials_embeds(
|
|
4364
|
+
return function all_user_credentials_embeds(_x1403, _x1404, _x1405, _x1406) {
|
|
4773
4365
|
return _ref410.apply(this, arguments);
|
|
4774
4366
|
};
|
|
4775
4367
|
}();
|
|
4776
|
-
exports.
|
|
4777
|
-
var user_credentials_looker_openid = function () {
|
|
4368
|
+
var user_credentials_looker_openid = exports.user_credentials_looker_openid = function () {
|
|
4778
4369
|
var _ref411 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4779
4370
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4780
4371
|
return sdk.get("/users/".concat(user_id, "/credentials_looker_openid"), {
|
|
4781
4372
|
fields
|
|
4782
4373
|
}, null, options);
|
|
4783
4374
|
});
|
|
4784
|
-
return function user_credentials_looker_openid(
|
|
4375
|
+
return function user_credentials_looker_openid(_x1407, _x1408, _x1409, _x1410) {
|
|
4785
4376
|
return _ref411.apply(this, arguments);
|
|
4786
4377
|
};
|
|
4787
4378
|
}();
|
|
4788
|
-
exports.
|
|
4789
|
-
var delete_user_credentials_looker_openid = function () {
|
|
4379
|
+
var delete_user_credentials_looker_openid = exports.delete_user_credentials_looker_openid = function () {
|
|
4790
4380
|
var _ref412 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4791
4381
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4792
4382
|
return sdk.delete("/users/".concat(user_id, "/credentials_looker_openid"), null, null, options);
|
|
4793
4383
|
});
|
|
4794
|
-
return function delete_user_credentials_looker_openid(
|
|
4384
|
+
return function delete_user_credentials_looker_openid(_x1411, _x1412, _x1413) {
|
|
4795
4385
|
return _ref412.apply(this, arguments);
|
|
4796
4386
|
};
|
|
4797
4387
|
}();
|
|
4798
|
-
exports.
|
|
4799
|
-
var user_session = function () {
|
|
4388
|
+
var user_session = exports.user_session = function () {
|
|
4800
4389
|
var _ref413 = _asyncToGenerator(function* (sdk, user_id, session_id, fields, options) {
|
|
4801
4390
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4802
4391
|
session_id = (0, _sdkRtl.encodeParam)(session_id);
|
|
@@ -4804,35 +4393,32 @@ var user_session = function () {
|
|
|
4804
4393
|
fields
|
|
4805
4394
|
}, null, options);
|
|
4806
4395
|
});
|
|
4807
|
-
return function user_session(
|
|
4396
|
+
return function user_session(_x1414, _x1415, _x1416, _x1417, _x1418) {
|
|
4808
4397
|
return _ref413.apply(this, arguments);
|
|
4809
4398
|
};
|
|
4810
4399
|
}();
|
|
4811
|
-
exports.
|
|
4812
|
-
var delete_user_session = function () {
|
|
4400
|
+
var delete_user_session = exports.delete_user_session = function () {
|
|
4813
4401
|
var _ref414 = _asyncToGenerator(function* (sdk, user_id, session_id, options) {
|
|
4814
4402
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4815
4403
|
session_id = (0, _sdkRtl.encodeParam)(session_id);
|
|
4816
4404
|
return sdk.delete("/users/".concat(user_id, "/sessions/").concat(session_id), null, null, options);
|
|
4817
4405
|
});
|
|
4818
|
-
return function delete_user_session(
|
|
4406
|
+
return function delete_user_session(_x1419, _x1420, _x1421, _x1422) {
|
|
4819
4407
|
return _ref414.apply(this, arguments);
|
|
4820
4408
|
};
|
|
4821
4409
|
}();
|
|
4822
|
-
exports.
|
|
4823
|
-
var all_user_sessions = function () {
|
|
4410
|
+
var all_user_sessions = exports.all_user_sessions = function () {
|
|
4824
4411
|
var _ref415 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4825
4412
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4826
4413
|
return sdk.get("/users/".concat(user_id, "/sessions"), {
|
|
4827
4414
|
fields
|
|
4828
4415
|
}, null, options);
|
|
4829
4416
|
});
|
|
4830
|
-
return function all_user_sessions(
|
|
4417
|
+
return function all_user_sessions(_x1423, _x1424, _x1425, _x1426) {
|
|
4831
4418
|
return _ref415.apply(this, arguments);
|
|
4832
4419
|
};
|
|
4833
4420
|
}();
|
|
4834
|
-
exports.
|
|
4835
|
-
var create_user_credentials_email_password_reset = function () {
|
|
4421
|
+
var create_user_credentials_email_password_reset = exports.create_user_credentials_email_password_reset = function () {
|
|
4836
4422
|
var _ref416 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4837
4423
|
request.user_id = (0, _sdkRtl.encodeParam)(request.user_id);
|
|
4838
4424
|
return sdk.post("/users/".concat(request.user_id, "/credentials_email/password_reset"), {
|
|
@@ -4840,12 +4426,11 @@ var create_user_credentials_email_password_reset = function () {
|
|
|
4840
4426
|
fields: request.fields
|
|
4841
4427
|
}, null, options);
|
|
4842
4428
|
});
|
|
4843
|
-
return function create_user_credentials_email_password_reset(
|
|
4429
|
+
return function create_user_credentials_email_password_reset(_x1427, _x1428, _x1429) {
|
|
4844
4430
|
return _ref416.apply(this, arguments);
|
|
4845
4431
|
};
|
|
4846
4432
|
}();
|
|
4847
|
-
exports.
|
|
4848
|
-
var user_roles = function () {
|
|
4433
|
+
var user_roles = exports.user_roles = function () {
|
|
4849
4434
|
var _ref417 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4850
4435
|
request.user_id = (0, _sdkRtl.encodeParam)(request.user_id);
|
|
4851
4436
|
return sdk.get("/users/".concat(request.user_id, "/roles"), {
|
|
@@ -4853,24 +4438,22 @@ var user_roles = function () {
|
|
|
4853
4438
|
direct_association_only: request.direct_association_only
|
|
4854
4439
|
}, null, options);
|
|
4855
4440
|
});
|
|
4856
|
-
return function user_roles(
|
|
4441
|
+
return function user_roles(_x1430, _x1431, _x1432) {
|
|
4857
4442
|
return _ref417.apply(this, arguments);
|
|
4858
4443
|
};
|
|
4859
4444
|
}();
|
|
4860
|
-
exports.
|
|
4861
|
-
var set_user_roles = function () {
|
|
4445
|
+
var set_user_roles = exports.set_user_roles = function () {
|
|
4862
4446
|
var _ref418 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4863
4447
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4864
4448
|
return sdk.put("/users/".concat(user_id, "/roles"), {
|
|
4865
4449
|
fields
|
|
4866
4450
|
}, body, options);
|
|
4867
4451
|
});
|
|
4868
|
-
return function set_user_roles(
|
|
4452
|
+
return function set_user_roles(_x1433, _x1434, _x1435, _x1436, _x1437) {
|
|
4869
4453
|
return _ref418.apply(this, arguments);
|
|
4870
4454
|
};
|
|
4871
4455
|
}();
|
|
4872
|
-
exports.
|
|
4873
|
-
var user_attribute_user_values = function () {
|
|
4456
|
+
var user_attribute_user_values = exports.user_attribute_user_values = function () {
|
|
4874
4457
|
var _ref419 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4875
4458
|
request.user_id = (0, _sdkRtl.encodeParam)(request.user_id);
|
|
4876
4459
|
return sdk.get("/users/".concat(request.user_id, "/attribute_values"), {
|
|
@@ -4880,162 +4463,147 @@ var user_attribute_user_values = function () {
|
|
|
4880
4463
|
include_unset: request.include_unset
|
|
4881
4464
|
}, null, options);
|
|
4882
4465
|
});
|
|
4883
|
-
return function user_attribute_user_values(
|
|
4466
|
+
return function user_attribute_user_values(_x1438, _x1439, _x1440) {
|
|
4884
4467
|
return _ref419.apply(this, arguments);
|
|
4885
4468
|
};
|
|
4886
4469
|
}();
|
|
4887
|
-
exports.
|
|
4888
|
-
var set_user_attribute_user_value = function () {
|
|
4470
|
+
var set_user_attribute_user_value = exports.set_user_attribute_user_value = function () {
|
|
4889
4471
|
var _ref420 = _asyncToGenerator(function* (sdk, user_id, user_attribute_id, body, options) {
|
|
4890
4472
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4891
4473
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
4892
4474
|
return sdk.patch("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
|
|
4893
4475
|
});
|
|
4894
|
-
return function set_user_attribute_user_value(
|
|
4476
|
+
return function set_user_attribute_user_value(_x1441, _x1442, _x1443, _x1444, _x1445) {
|
|
4895
4477
|
return _ref420.apply(this, arguments);
|
|
4896
4478
|
};
|
|
4897
4479
|
}();
|
|
4898
|
-
exports.
|
|
4899
|
-
var delete_user_attribute_user_value = function () {
|
|
4480
|
+
var delete_user_attribute_user_value = exports.delete_user_attribute_user_value = function () {
|
|
4900
4481
|
var _ref421 = _asyncToGenerator(function* (sdk, user_id, user_attribute_id, options) {
|
|
4901
4482
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4902
4483
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
4903
4484
|
return sdk.delete("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
|
|
4904
4485
|
});
|
|
4905
|
-
return function delete_user_attribute_user_value(
|
|
4486
|
+
return function delete_user_attribute_user_value(_x1446, _x1447, _x1448, _x1449) {
|
|
4906
4487
|
return _ref421.apply(this, arguments);
|
|
4907
4488
|
};
|
|
4908
4489
|
}();
|
|
4909
|
-
exports.
|
|
4910
|
-
var send_user_credentials_email_password_reset = function () {
|
|
4490
|
+
var send_user_credentials_email_password_reset = exports.send_user_credentials_email_password_reset = function () {
|
|
4911
4491
|
var _ref422 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4912
4492
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4913
4493
|
return sdk.post("/users/".concat(user_id, "/credentials_email/send_password_reset"), {
|
|
4914
4494
|
fields
|
|
4915
4495
|
}, null, options);
|
|
4916
4496
|
});
|
|
4917
|
-
return function send_user_credentials_email_password_reset(
|
|
4497
|
+
return function send_user_credentials_email_password_reset(_x1450, _x1451, _x1452, _x1453) {
|
|
4918
4498
|
return _ref422.apply(this, arguments);
|
|
4919
4499
|
};
|
|
4920
4500
|
}();
|
|
4921
|
-
exports.
|
|
4922
|
-
var wipeout_user_emails = function () {
|
|
4501
|
+
var wipeout_user_emails = exports.wipeout_user_emails = function () {
|
|
4923
4502
|
var _ref423 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4924
4503
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4925
4504
|
return sdk.post("/users/".concat(user_id, "/update_emails"), {
|
|
4926
4505
|
fields
|
|
4927
4506
|
}, body, options);
|
|
4928
4507
|
});
|
|
4929
|
-
return function wipeout_user_emails(
|
|
4508
|
+
return function wipeout_user_emails(_x1454, _x1455, _x1456, _x1457, _x1458) {
|
|
4930
4509
|
return _ref423.apply(this, arguments);
|
|
4931
4510
|
};
|
|
4932
4511
|
}();
|
|
4933
|
-
exports.
|
|
4934
|
-
var create_embed_user = function () {
|
|
4512
|
+
var create_embed_user = exports.create_embed_user = function () {
|
|
4935
4513
|
var _ref424 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4936
4514
|
return sdk.post('/users/embed_user', null, body, options);
|
|
4937
4515
|
});
|
|
4938
|
-
return function create_embed_user(
|
|
4516
|
+
return function create_embed_user(_x1459, _x1460, _x1461) {
|
|
4939
4517
|
return _ref424.apply(this, arguments);
|
|
4940
4518
|
};
|
|
4941
4519
|
}();
|
|
4942
|
-
exports.
|
|
4943
|
-
var all_user_attributes = function () {
|
|
4520
|
+
var all_user_attributes = exports.all_user_attributes = function () {
|
|
4944
4521
|
var _ref425 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4945
4522
|
return sdk.get('/user_attributes', {
|
|
4946
4523
|
fields: request.fields,
|
|
4947
4524
|
sorts: request.sorts
|
|
4948
4525
|
}, null, options);
|
|
4949
4526
|
});
|
|
4950
|
-
return function all_user_attributes(
|
|
4527
|
+
return function all_user_attributes(_x1462, _x1463, _x1464) {
|
|
4951
4528
|
return _ref425.apply(this, arguments);
|
|
4952
4529
|
};
|
|
4953
4530
|
}();
|
|
4954
|
-
exports.
|
|
4955
|
-
var create_user_attribute = function () {
|
|
4531
|
+
var create_user_attribute = exports.create_user_attribute = function () {
|
|
4956
4532
|
var _ref426 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
4957
4533
|
return sdk.post('/user_attributes', {
|
|
4958
4534
|
fields
|
|
4959
4535
|
}, body, options);
|
|
4960
4536
|
});
|
|
4961
|
-
return function create_user_attribute(
|
|
4537
|
+
return function create_user_attribute(_x1465, _x1466, _x1467, _x1468) {
|
|
4962
4538
|
return _ref426.apply(this, arguments);
|
|
4963
4539
|
};
|
|
4964
4540
|
}();
|
|
4965
|
-
exports.
|
|
4966
|
-
var user_attribute = function () {
|
|
4541
|
+
var user_attribute = exports.user_attribute = function () {
|
|
4967
4542
|
var _ref427 = _asyncToGenerator(function* (sdk, user_attribute_id, fields, options) {
|
|
4968
4543
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
4969
4544
|
return sdk.get("/user_attributes/".concat(user_attribute_id), {
|
|
4970
4545
|
fields
|
|
4971
4546
|
}, null, options);
|
|
4972
4547
|
});
|
|
4973
|
-
return function user_attribute(
|
|
4548
|
+
return function user_attribute(_x1469, _x1470, _x1471, _x1472) {
|
|
4974
4549
|
return _ref427.apply(this, arguments);
|
|
4975
4550
|
};
|
|
4976
4551
|
}();
|
|
4977
|
-
exports.
|
|
4978
|
-
var update_user_attribute = function () {
|
|
4552
|
+
var update_user_attribute = exports.update_user_attribute = function () {
|
|
4979
4553
|
var _ref428 = _asyncToGenerator(function* (sdk, user_attribute_id, body, fields, options) {
|
|
4980
4554
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
4981
4555
|
return sdk.patch("/user_attributes/".concat(user_attribute_id), {
|
|
4982
4556
|
fields
|
|
4983
4557
|
}, body, options);
|
|
4984
4558
|
});
|
|
4985
|
-
return function update_user_attribute(
|
|
4559
|
+
return function update_user_attribute(_x1473, _x1474, _x1475, _x1476, _x1477) {
|
|
4986
4560
|
return _ref428.apply(this, arguments);
|
|
4987
4561
|
};
|
|
4988
4562
|
}();
|
|
4989
|
-
exports.
|
|
4990
|
-
var delete_user_attribute = function () {
|
|
4563
|
+
var delete_user_attribute = exports.delete_user_attribute = function () {
|
|
4991
4564
|
var _ref429 = _asyncToGenerator(function* (sdk, user_attribute_id, options) {
|
|
4992
4565
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
4993
4566
|
return sdk.delete("/user_attributes/".concat(user_attribute_id), null, null, options);
|
|
4994
4567
|
});
|
|
4995
|
-
return function delete_user_attribute(
|
|
4568
|
+
return function delete_user_attribute(_x1478, _x1479, _x1480) {
|
|
4996
4569
|
return _ref429.apply(this, arguments);
|
|
4997
4570
|
};
|
|
4998
4571
|
}();
|
|
4999
|
-
exports.
|
|
5000
|
-
var all_user_attribute_group_values = function () {
|
|
4572
|
+
var all_user_attribute_group_values = exports.all_user_attribute_group_values = function () {
|
|
5001
4573
|
var _ref430 = _asyncToGenerator(function* (sdk, user_attribute_id, fields, options) {
|
|
5002
4574
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
5003
4575
|
return sdk.get("/user_attributes/".concat(user_attribute_id, "/group_values"), {
|
|
5004
4576
|
fields
|
|
5005
4577
|
}, null, options);
|
|
5006
4578
|
});
|
|
5007
|
-
return function all_user_attribute_group_values(
|
|
4579
|
+
return function all_user_attribute_group_values(_x1481, _x1482, _x1483, _x1484) {
|
|
5008
4580
|
return _ref430.apply(this, arguments);
|
|
5009
4581
|
};
|
|
5010
4582
|
}();
|
|
5011
|
-
exports.
|
|
5012
|
-
var set_user_attribute_group_values = function () {
|
|
4583
|
+
var set_user_attribute_group_values = exports.set_user_attribute_group_values = function () {
|
|
5013
4584
|
var _ref431 = _asyncToGenerator(function* (sdk, user_attribute_id, body, options) {
|
|
5014
4585
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
5015
4586
|
return sdk.post("/user_attributes/".concat(user_attribute_id, "/group_values"), null, body, options);
|
|
5016
4587
|
});
|
|
5017
|
-
return function set_user_attribute_group_values(
|
|
4588
|
+
return function set_user_attribute_group_values(_x1485, _x1486, _x1487, _x1488) {
|
|
5018
4589
|
return _ref431.apply(this, arguments);
|
|
5019
4590
|
};
|
|
5020
4591
|
}();
|
|
5021
|
-
exports.
|
|
5022
|
-
var all_workspaces = function () {
|
|
4592
|
+
var all_workspaces = exports.all_workspaces = function () {
|
|
5023
4593
|
var _ref432 = _asyncToGenerator(function* (sdk, options) {
|
|
5024
4594
|
return sdk.get('/workspaces', null, null, options);
|
|
5025
4595
|
});
|
|
5026
|
-
return function all_workspaces(
|
|
4596
|
+
return function all_workspaces(_x1489, _x1490) {
|
|
5027
4597
|
return _ref432.apply(this, arguments);
|
|
5028
4598
|
};
|
|
5029
4599
|
}();
|
|
5030
|
-
exports.
|
|
5031
|
-
var workspace = function () {
|
|
4600
|
+
var workspace = exports.workspace = function () {
|
|
5032
4601
|
var _ref433 = _asyncToGenerator(function* (sdk, workspace_id, options) {
|
|
5033
4602
|
workspace_id = (0, _sdkRtl.encodeParam)(workspace_id);
|
|
5034
4603
|
return sdk.get("/workspaces/".concat(workspace_id), null, null, options);
|
|
5035
4604
|
});
|
|
5036
|
-
return function workspace(
|
|
4605
|
+
return function workspace(_x1491, _x1492, _x1493) {
|
|
5037
4606
|
return _ref433.apply(this, arguments);
|
|
5038
4607
|
};
|
|
5039
4608
|
}();
|
|
5040
|
-
exports.workspace = workspace;
|
|
5041
4609
|
//# sourceMappingURL=funcs.js.map
|