@looker/sdk 25.2.0 → 25.6.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 +21 -0
- package/lib/4.0/funcs.d.ts +4 -1
- package/lib/4.0/funcs.js +449 -406
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +4 -1
- package/lib/4.0/methods.js +305 -268
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +4 -1
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +123 -4
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +4 -1
- package/lib/4.0/streams.js +305 -268
- package/lib/4.0/streams.js.map +1 -1
- package/lib/constants.d.ts +1 -1
- package/lib/constants.js +1 -1
- package/lib/constants.js.map +1 -1
- package/lib/esm/4.0/funcs.js +444 -401
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +305 -268
- 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.map +1 -1
- package/lib/esm/4.0/streams.js +305 -268
- package/lib/esm/4.0/streams.js.map +1 -1
- package/lib/esm/constants.js +1 -1
- package/lib/esm/constants.js.map +1 -1
- package/package.json +3 -3
package/lib/esm/4.0/funcs.js
CHANGED
|
@@ -199,7 +199,8 @@ export var search_artifacts = function () {
|
|
|
199
199
|
min_size: request.min_size,
|
|
200
200
|
max_size: request.max_size,
|
|
201
201
|
limit: request.limit,
|
|
202
|
-
offset: request.offset
|
|
202
|
+
offset: request.offset,
|
|
203
|
+
tally: request.tally
|
|
203
204
|
}, null, options);
|
|
204
205
|
});
|
|
205
206
|
return function search_artifacts(_x59, _x60, _x61) {
|
|
@@ -213,7 +214,8 @@ export var artifact = function () {
|
|
|
213
214
|
key: request.key,
|
|
214
215
|
fields: request.fields,
|
|
215
216
|
limit: request.limit,
|
|
216
|
-
offset: request.offset
|
|
217
|
+
offset: request.offset,
|
|
218
|
+
tally: request.tally
|
|
217
219
|
}, null, options);
|
|
218
220
|
});
|
|
219
221
|
return function artifact(_x62, _x63, _x64) {
|
|
@@ -3162,37 +3164,60 @@ export var tag_ref = function () {
|
|
|
3162
3164
|
return _ref303.apply(this, arguments);
|
|
3163
3165
|
};
|
|
3164
3166
|
}();
|
|
3167
|
+
export var get_ci_run = function () {
|
|
3168
|
+
var _ref304 = _asyncToGenerator(function* (sdk, project_id, run_id, fields, options) {
|
|
3169
|
+
project_id = encodeParam(project_id);
|
|
3170
|
+
run_id = encodeParam(run_id);
|
|
3171
|
+
return sdk.get("/projects/".concat(project_id, "/ci/runs/").concat(run_id), {
|
|
3172
|
+
fields
|
|
3173
|
+
}, null, options);
|
|
3174
|
+
});
|
|
3175
|
+
return function get_ci_run(_x1021, _x1022, _x1023, _x1024, _x1025) {
|
|
3176
|
+
return _ref304.apply(this, arguments);
|
|
3177
|
+
};
|
|
3178
|
+
}();
|
|
3179
|
+
export var create_ci_run = function () {
|
|
3180
|
+
var _ref305 = _asyncToGenerator(function* (sdk, project_id, body, fields, options) {
|
|
3181
|
+
project_id = encodeParam(project_id);
|
|
3182
|
+
return sdk.post("/projects/".concat(project_id, "/ci/run"), {
|
|
3183
|
+
fields
|
|
3184
|
+
}, body, options);
|
|
3185
|
+
});
|
|
3186
|
+
return function create_ci_run(_x1026, _x1027, _x1028, _x1029, _x1030) {
|
|
3187
|
+
return _ref305.apply(this, arguments);
|
|
3188
|
+
};
|
|
3189
|
+
}();
|
|
3165
3190
|
export var update_repository_credential = function () {
|
|
3166
|
-
var
|
|
3191
|
+
var _ref306 = _asyncToGenerator(function* (sdk, root_project_id, credential_id, body, options) {
|
|
3167
3192
|
root_project_id = encodeParam(root_project_id);
|
|
3168
3193
|
credential_id = encodeParam(credential_id);
|
|
3169
3194
|
return sdk.put("/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, body, options);
|
|
3170
3195
|
});
|
|
3171
|
-
return function update_repository_credential(
|
|
3172
|
-
return
|
|
3196
|
+
return function update_repository_credential(_x1031, _x1032, _x1033, _x1034, _x1035) {
|
|
3197
|
+
return _ref306.apply(this, arguments);
|
|
3173
3198
|
};
|
|
3174
3199
|
}();
|
|
3175
3200
|
export var delete_repository_credential = function () {
|
|
3176
|
-
var
|
|
3201
|
+
var _ref307 = _asyncToGenerator(function* (sdk, root_project_id, credential_id, options) {
|
|
3177
3202
|
root_project_id = encodeParam(root_project_id);
|
|
3178
3203
|
credential_id = encodeParam(credential_id);
|
|
3179
3204
|
return sdk.delete("/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, null, options);
|
|
3180
3205
|
});
|
|
3181
|
-
return function delete_repository_credential(
|
|
3182
|
-
return
|
|
3206
|
+
return function delete_repository_credential(_x1036, _x1037, _x1038, _x1039) {
|
|
3207
|
+
return _ref307.apply(this, arguments);
|
|
3183
3208
|
};
|
|
3184
3209
|
}();
|
|
3185
3210
|
export var get_all_repository_credentials = function () {
|
|
3186
|
-
var
|
|
3211
|
+
var _ref308 = _asyncToGenerator(function* (sdk, root_project_id, options) {
|
|
3187
3212
|
root_project_id = encodeParam(root_project_id);
|
|
3188
3213
|
return sdk.get("/projects/".concat(root_project_id, "/credentials"), null, null, options);
|
|
3189
3214
|
});
|
|
3190
|
-
return function get_all_repository_credentials(
|
|
3191
|
-
return
|
|
3215
|
+
return function get_all_repository_credentials(_x1040, _x1041, _x1042) {
|
|
3216
|
+
return _ref308.apply(this, arguments);
|
|
3192
3217
|
};
|
|
3193
3218
|
}();
|
|
3194
3219
|
export var create_query_task = function () {
|
|
3195
|
-
var
|
|
3220
|
+
var _ref309 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3196
3221
|
return sdk.post('/query_tasks', {
|
|
3197
3222
|
limit: request.limit,
|
|
3198
3223
|
apply_formatting: request.apply_formatting,
|
|
@@ -3207,74 +3232,74 @@ export var create_query_task = function () {
|
|
|
3207
3232
|
fields: request.fields
|
|
3208
3233
|
}, request.body, options);
|
|
3209
3234
|
});
|
|
3210
|
-
return function create_query_task(
|
|
3211
|
-
return
|
|
3235
|
+
return function create_query_task(_x1043, _x1044, _x1045) {
|
|
3236
|
+
return _ref309.apply(this, arguments);
|
|
3212
3237
|
};
|
|
3213
3238
|
}();
|
|
3214
3239
|
export var query_task_multi_results = function () {
|
|
3215
|
-
var
|
|
3240
|
+
var _ref310 = _asyncToGenerator(function* (sdk, query_task_ids, options) {
|
|
3216
3241
|
return sdk.get('/query_tasks/multi_results', {
|
|
3217
3242
|
query_task_ids
|
|
3218
3243
|
}, null, options);
|
|
3219
3244
|
});
|
|
3220
|
-
return function query_task_multi_results(
|
|
3221
|
-
return
|
|
3245
|
+
return function query_task_multi_results(_x1046, _x1047, _x1048) {
|
|
3246
|
+
return _ref310.apply(this, arguments);
|
|
3222
3247
|
};
|
|
3223
3248
|
}();
|
|
3224
3249
|
export var query_task = function () {
|
|
3225
|
-
var
|
|
3250
|
+
var _ref311 = _asyncToGenerator(function* (sdk, query_task_id, fields, options) {
|
|
3226
3251
|
query_task_id = encodeParam(query_task_id);
|
|
3227
3252
|
return sdk.get("/query_tasks/".concat(query_task_id), {
|
|
3228
3253
|
fields
|
|
3229
3254
|
}, null, options);
|
|
3230
3255
|
});
|
|
3231
|
-
return function query_task(
|
|
3232
|
-
return
|
|
3256
|
+
return function query_task(_x1049, _x1050, _x1051, _x1052) {
|
|
3257
|
+
return _ref311.apply(this, arguments);
|
|
3233
3258
|
};
|
|
3234
3259
|
}();
|
|
3235
3260
|
export var query_task_results = function () {
|
|
3236
|
-
var
|
|
3261
|
+
var _ref312 = _asyncToGenerator(function* (sdk, query_task_id, options) {
|
|
3237
3262
|
query_task_id = encodeParam(query_task_id);
|
|
3238
3263
|
return sdk.get("/query_tasks/".concat(query_task_id, "/results"), null, null, options);
|
|
3239
3264
|
});
|
|
3240
|
-
return function query_task_results(
|
|
3241
|
-
return
|
|
3265
|
+
return function query_task_results(_x1053, _x1054, _x1055) {
|
|
3266
|
+
return _ref312.apply(this, arguments);
|
|
3242
3267
|
};
|
|
3243
3268
|
}();
|
|
3244
3269
|
export var query = function () {
|
|
3245
|
-
var
|
|
3270
|
+
var _ref313 = _asyncToGenerator(function* (sdk, query_id, fields, options) {
|
|
3246
3271
|
query_id = encodeParam(query_id);
|
|
3247
3272
|
return sdk.get("/queries/".concat(query_id), {
|
|
3248
3273
|
fields
|
|
3249
3274
|
}, null, options);
|
|
3250
3275
|
});
|
|
3251
|
-
return function query(
|
|
3252
|
-
return
|
|
3276
|
+
return function query(_x1056, _x1057, _x1058, _x1059) {
|
|
3277
|
+
return _ref313.apply(this, arguments);
|
|
3253
3278
|
};
|
|
3254
3279
|
}();
|
|
3255
3280
|
export var query_for_slug = function () {
|
|
3256
|
-
var
|
|
3281
|
+
var _ref314 = _asyncToGenerator(function* (sdk, slug, fields, options) {
|
|
3257
3282
|
slug = encodeParam(slug);
|
|
3258
3283
|
return sdk.get("/queries/slug/".concat(slug), {
|
|
3259
3284
|
fields
|
|
3260
3285
|
}, null, options);
|
|
3261
3286
|
});
|
|
3262
|
-
return function query_for_slug(
|
|
3263
|
-
return
|
|
3287
|
+
return function query_for_slug(_x1060, _x1061, _x1062, _x1063) {
|
|
3288
|
+
return _ref314.apply(this, arguments);
|
|
3264
3289
|
};
|
|
3265
3290
|
}();
|
|
3266
3291
|
export var create_query = function () {
|
|
3267
|
-
var
|
|
3292
|
+
var _ref315 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
3268
3293
|
return sdk.post('/queries', {
|
|
3269
3294
|
fields
|
|
3270
3295
|
}, body, options);
|
|
3271
3296
|
});
|
|
3272
|
-
return function create_query(
|
|
3273
|
-
return
|
|
3297
|
+
return function create_query(_x1064, _x1065, _x1066, _x1067) {
|
|
3298
|
+
return _ref315.apply(this, arguments);
|
|
3274
3299
|
};
|
|
3275
3300
|
}();
|
|
3276
3301
|
export var run_query = function () {
|
|
3277
|
-
var
|
|
3302
|
+
var _ref316 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3278
3303
|
request.query_id = encodeParam(request.query_id);
|
|
3279
3304
|
request.result_format = encodeParam(request.result_format);
|
|
3280
3305
|
return sdk.get("/queries/".concat(request.query_id, "/run/").concat(request.result_format), {
|
|
@@ -3294,12 +3319,12 @@ export var run_query = function () {
|
|
|
3294
3319
|
enable_oauth_error_response: request.enable_oauth_error_response
|
|
3295
3320
|
}, null, options);
|
|
3296
3321
|
});
|
|
3297
|
-
return function run_query(
|
|
3298
|
-
return
|
|
3322
|
+
return function run_query(_x1068, _x1069, _x1070) {
|
|
3323
|
+
return _ref316.apply(this, arguments);
|
|
3299
3324
|
};
|
|
3300
3325
|
}();
|
|
3301
3326
|
export var run_inline_query = function () {
|
|
3302
|
-
var
|
|
3327
|
+
var _ref317 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3303
3328
|
request.result_format = encodeParam(request.result_format);
|
|
3304
3329
|
return sdk.post("/queries/run/".concat(request.result_format), {
|
|
3305
3330
|
limit: request.limit,
|
|
@@ -3317,90 +3342,90 @@ export var run_inline_query = function () {
|
|
|
3317
3342
|
enable_oauth_error_response: request.enable_oauth_error_response
|
|
3318
3343
|
}, request.body, options);
|
|
3319
3344
|
});
|
|
3320
|
-
return function run_inline_query(
|
|
3321
|
-
return
|
|
3345
|
+
return function run_inline_query(_x1071, _x1072, _x1073) {
|
|
3346
|
+
return _ref317.apply(this, arguments);
|
|
3322
3347
|
};
|
|
3323
3348
|
}();
|
|
3324
3349
|
export var run_url_encoded_query = function () {
|
|
3325
|
-
var
|
|
3350
|
+
var _ref318 = _asyncToGenerator(function* (sdk, model_name, view_name, result_format, options) {
|
|
3326
3351
|
model_name = encodeParam(model_name);
|
|
3327
3352
|
view_name = encodeParam(view_name);
|
|
3328
3353
|
result_format = encodeParam(result_format);
|
|
3329
3354
|
return sdk.get("/queries/models/".concat(model_name, "/views/").concat(view_name, "/run/").concat(result_format), null, null, options);
|
|
3330
3355
|
});
|
|
3331
|
-
return function run_url_encoded_query(
|
|
3332
|
-
return
|
|
3356
|
+
return function run_url_encoded_query(_x1074, _x1075, _x1076, _x1077, _x1078) {
|
|
3357
|
+
return _ref318.apply(this, arguments);
|
|
3333
3358
|
};
|
|
3334
3359
|
}();
|
|
3335
3360
|
export var merge_query = function () {
|
|
3336
|
-
var
|
|
3361
|
+
var _ref319 = _asyncToGenerator(function* (sdk, merge_query_id, fields, options) {
|
|
3337
3362
|
merge_query_id = encodeParam(merge_query_id);
|
|
3338
3363
|
return sdk.get("/merge_queries/".concat(merge_query_id), {
|
|
3339
3364
|
fields
|
|
3340
3365
|
}, null, options);
|
|
3341
3366
|
});
|
|
3342
|
-
return function merge_query(
|
|
3343
|
-
return
|
|
3367
|
+
return function merge_query(_x1079, _x1080, _x1081, _x1082) {
|
|
3368
|
+
return _ref319.apply(this, arguments);
|
|
3344
3369
|
};
|
|
3345
3370
|
}();
|
|
3346
3371
|
export var create_merge_query = function () {
|
|
3347
|
-
var
|
|
3372
|
+
var _ref320 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
3348
3373
|
return sdk.post('/merge_queries', {
|
|
3349
3374
|
fields
|
|
3350
3375
|
}, body, options);
|
|
3351
3376
|
});
|
|
3352
|
-
return function create_merge_query(
|
|
3353
|
-
return
|
|
3377
|
+
return function create_merge_query(_x1083, _x1084, _x1085, _x1086) {
|
|
3378
|
+
return _ref320.apply(this, arguments);
|
|
3354
3379
|
};
|
|
3355
3380
|
}();
|
|
3356
3381
|
export var all_running_queries = function () {
|
|
3357
|
-
var
|
|
3382
|
+
var _ref321 = _asyncToGenerator(function* (sdk, options) {
|
|
3358
3383
|
return sdk.get('/running_queries', null, null, options);
|
|
3359
3384
|
});
|
|
3360
|
-
return function all_running_queries(
|
|
3361
|
-
return
|
|
3385
|
+
return function all_running_queries(_x1087, _x1088) {
|
|
3386
|
+
return _ref321.apply(this, arguments);
|
|
3362
3387
|
};
|
|
3363
3388
|
}();
|
|
3364
3389
|
export var kill_query = function () {
|
|
3365
|
-
var
|
|
3390
|
+
var _ref322 = _asyncToGenerator(function* (sdk, query_task_id, options) {
|
|
3366
3391
|
query_task_id = encodeParam(query_task_id);
|
|
3367
3392
|
return sdk.delete("/running_queries/".concat(query_task_id), null, null, options);
|
|
3368
3393
|
});
|
|
3369
|
-
return function kill_query(
|
|
3370
|
-
return
|
|
3394
|
+
return function kill_query(_x1089, _x1090, _x1091) {
|
|
3395
|
+
return _ref322.apply(this, arguments);
|
|
3371
3396
|
};
|
|
3372
3397
|
}();
|
|
3373
3398
|
export var create_sql_query = function () {
|
|
3374
|
-
var
|
|
3399
|
+
var _ref323 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3375
3400
|
return sdk.post('/sql_queries', null, body, options);
|
|
3376
3401
|
});
|
|
3377
|
-
return function create_sql_query(
|
|
3378
|
-
return
|
|
3402
|
+
return function create_sql_query(_x1092, _x1093, _x1094) {
|
|
3403
|
+
return _ref323.apply(this, arguments);
|
|
3379
3404
|
};
|
|
3380
3405
|
}();
|
|
3381
3406
|
export var sql_query = function () {
|
|
3382
|
-
var
|
|
3407
|
+
var _ref324 = _asyncToGenerator(function* (sdk, slug, options) {
|
|
3383
3408
|
slug = encodeParam(slug);
|
|
3384
3409
|
return sdk.get("/sql_queries/".concat(slug), null, null, options);
|
|
3385
3410
|
});
|
|
3386
|
-
return function sql_query(
|
|
3387
|
-
return
|
|
3411
|
+
return function sql_query(_x1095, _x1096, _x1097) {
|
|
3412
|
+
return _ref324.apply(this, arguments);
|
|
3388
3413
|
};
|
|
3389
3414
|
}();
|
|
3390
3415
|
export var run_sql_query = function () {
|
|
3391
|
-
var
|
|
3416
|
+
var _ref325 = _asyncToGenerator(function* (sdk, slug, result_format, download, options) {
|
|
3392
3417
|
slug = encodeParam(slug);
|
|
3393
3418
|
result_format = encodeParam(result_format);
|
|
3394
3419
|
return sdk.post("/sql_queries/".concat(slug, "/run/").concat(result_format), {
|
|
3395
3420
|
download
|
|
3396
3421
|
}, null, options);
|
|
3397
3422
|
});
|
|
3398
|
-
return function run_sql_query(
|
|
3399
|
-
return
|
|
3423
|
+
return function run_sql_query(_x1098, _x1099, _x1100, _x1101, _x1102) {
|
|
3424
|
+
return _ref325.apply(this, arguments);
|
|
3400
3425
|
};
|
|
3401
3426
|
}();
|
|
3402
3427
|
export var create_look_render_task = function () {
|
|
3403
|
-
var
|
|
3428
|
+
var _ref326 = _asyncToGenerator(function* (sdk, look_id, result_format, width, height, fields, options) {
|
|
3404
3429
|
look_id = encodeParam(look_id);
|
|
3405
3430
|
result_format = encodeParam(result_format);
|
|
3406
3431
|
return sdk.post("/render_tasks/looks/".concat(look_id, "/").concat(result_format), {
|
|
@@ -3409,12 +3434,12 @@ export var create_look_render_task = function () {
|
|
|
3409
3434
|
fields
|
|
3410
3435
|
}, null, options);
|
|
3411
3436
|
});
|
|
3412
|
-
return function create_look_render_task(
|
|
3413
|
-
return
|
|
3437
|
+
return function create_look_render_task(_x1103, _x1104, _x1105, _x1106, _x1107, _x1108, _x1109) {
|
|
3438
|
+
return _ref326.apply(this, arguments);
|
|
3414
3439
|
};
|
|
3415
3440
|
}();
|
|
3416
3441
|
export var create_query_render_task = function () {
|
|
3417
|
-
var
|
|
3442
|
+
var _ref327 = _asyncToGenerator(function* (sdk, query_id, result_format, width, height, fields, options) {
|
|
3418
3443
|
query_id = encodeParam(query_id);
|
|
3419
3444
|
result_format = encodeParam(result_format);
|
|
3420
3445
|
return sdk.post("/render_tasks/queries/".concat(query_id, "/").concat(result_format), {
|
|
@@ -3423,12 +3448,12 @@ export var create_query_render_task = function () {
|
|
|
3423
3448
|
fields
|
|
3424
3449
|
}, null, options);
|
|
3425
3450
|
});
|
|
3426
|
-
return function create_query_render_task(
|
|
3427
|
-
return
|
|
3451
|
+
return function create_query_render_task(_x1110, _x1111, _x1112, _x1113, _x1114, _x1115, _x1116) {
|
|
3452
|
+
return _ref327.apply(this, arguments);
|
|
3428
3453
|
};
|
|
3429
3454
|
}();
|
|
3430
3455
|
export var create_dashboard_render_task = function () {
|
|
3431
|
-
var
|
|
3456
|
+
var _ref328 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3432
3457
|
request.dashboard_id = encodeParam(request.dashboard_id);
|
|
3433
3458
|
request.result_format = encodeParam(request.result_format);
|
|
3434
3459
|
return sdk.post("/render_tasks/dashboards/".concat(request.dashboard_id, "/").concat(request.result_format), {
|
|
@@ -3441,32 +3466,32 @@ export var create_dashboard_render_task = function () {
|
|
|
3441
3466
|
theme: request.theme
|
|
3442
3467
|
}, request.body, options);
|
|
3443
3468
|
});
|
|
3444
|
-
return function create_dashboard_render_task(
|
|
3445
|
-
return
|
|
3469
|
+
return function create_dashboard_render_task(_x1117, _x1118, _x1119) {
|
|
3470
|
+
return _ref328.apply(this, arguments);
|
|
3446
3471
|
};
|
|
3447
3472
|
}();
|
|
3448
3473
|
export var render_task = function () {
|
|
3449
|
-
var
|
|
3474
|
+
var _ref329 = _asyncToGenerator(function* (sdk, render_task_id, fields, options) {
|
|
3450
3475
|
render_task_id = encodeParam(render_task_id);
|
|
3451
3476
|
return sdk.get("/render_tasks/".concat(render_task_id), {
|
|
3452
3477
|
fields
|
|
3453
3478
|
}, null, options);
|
|
3454
3479
|
});
|
|
3455
|
-
return function render_task(
|
|
3456
|
-
return
|
|
3480
|
+
return function render_task(_x1120, _x1121, _x1122, _x1123) {
|
|
3481
|
+
return _ref329.apply(this, arguments);
|
|
3457
3482
|
};
|
|
3458
3483
|
}();
|
|
3459
3484
|
export var render_task_results = function () {
|
|
3460
|
-
var
|
|
3485
|
+
var _ref330 = _asyncToGenerator(function* (sdk, render_task_id, options) {
|
|
3461
3486
|
render_task_id = encodeParam(render_task_id);
|
|
3462
3487
|
return sdk.get("/render_tasks/".concat(render_task_id, "/results"), null, null, options);
|
|
3463
3488
|
});
|
|
3464
|
-
return function render_task_results(
|
|
3465
|
-
return
|
|
3489
|
+
return function render_task_results(_x1124, _x1125, _x1126) {
|
|
3490
|
+
return _ref330.apply(this, arguments);
|
|
3466
3491
|
};
|
|
3467
3492
|
}();
|
|
3468
3493
|
export var create_dashboard_element_render_task = function () {
|
|
3469
|
-
var
|
|
3494
|
+
var _ref331 = _asyncToGenerator(function* (sdk, dashboard_element_id, result_format, width, height, fields, options) {
|
|
3470
3495
|
dashboard_element_id = encodeParam(dashboard_element_id);
|
|
3471
3496
|
result_format = encodeParam(result_format);
|
|
3472
3497
|
return sdk.post("/render_tasks/dashboard_elements/".concat(dashboard_element_id, "/").concat(result_format), {
|
|
@@ -3475,12 +3500,30 @@ export var create_dashboard_element_render_task = function () {
|
|
|
3475
3500
|
fields
|
|
3476
3501
|
}, null, options);
|
|
3477
3502
|
});
|
|
3478
|
-
return function create_dashboard_element_render_task(
|
|
3479
|
-
return
|
|
3503
|
+
return function create_dashboard_element_render_task(_x1127, _x1128, _x1129, _x1130, _x1131, _x1132, _x1133) {
|
|
3504
|
+
return _ref331.apply(this, arguments);
|
|
3505
|
+
};
|
|
3506
|
+
}();
|
|
3507
|
+
export var search_reports = function () {
|
|
3508
|
+
var _ref332 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3509
|
+
return sdk.get('/reports/search', {
|
|
3510
|
+
folder_id: request.folder_id,
|
|
3511
|
+
favorite: request.favorite,
|
|
3512
|
+
recent: request.recent,
|
|
3513
|
+
id: request.id,
|
|
3514
|
+
title: request.title,
|
|
3515
|
+
sorts: request.sorts,
|
|
3516
|
+
limit: request.limit,
|
|
3517
|
+
fields: request.fields,
|
|
3518
|
+
next_page_token: request.next_page_token
|
|
3519
|
+
}, null, options);
|
|
3520
|
+
});
|
|
3521
|
+
return function search_reports(_x1134, _x1135, _x1136) {
|
|
3522
|
+
return _ref332.apply(this, arguments);
|
|
3480
3523
|
};
|
|
3481
3524
|
}();
|
|
3482
3525
|
export var search_model_sets = function () {
|
|
3483
|
-
var
|
|
3526
|
+
var _ref333 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3484
3527
|
return sdk.get('/model_sets/search', {
|
|
3485
3528
|
fields: request.fields,
|
|
3486
3529
|
limit: request.limit,
|
|
@@ -3493,67 +3536,67 @@ export var search_model_sets = function () {
|
|
|
3493
3536
|
filter_or: request.filter_or
|
|
3494
3537
|
}, null, options);
|
|
3495
3538
|
});
|
|
3496
|
-
return function search_model_sets(
|
|
3497
|
-
return
|
|
3539
|
+
return function search_model_sets(_x1137, _x1138, _x1139) {
|
|
3540
|
+
return _ref333.apply(this, arguments);
|
|
3498
3541
|
};
|
|
3499
3542
|
}();
|
|
3500
3543
|
export var model_set = function () {
|
|
3501
|
-
var
|
|
3544
|
+
var _ref334 = _asyncToGenerator(function* (sdk, model_set_id, fields, options) {
|
|
3502
3545
|
model_set_id = encodeParam(model_set_id);
|
|
3503
3546
|
return sdk.get("/model_sets/".concat(model_set_id), {
|
|
3504
3547
|
fields
|
|
3505
3548
|
}, null, options);
|
|
3506
3549
|
});
|
|
3507
|
-
return function model_set(
|
|
3508
|
-
return
|
|
3550
|
+
return function model_set(_x1140, _x1141, _x1142, _x1143) {
|
|
3551
|
+
return _ref334.apply(this, arguments);
|
|
3509
3552
|
};
|
|
3510
3553
|
}();
|
|
3511
3554
|
export var update_model_set = function () {
|
|
3512
|
-
var
|
|
3555
|
+
var _ref335 = _asyncToGenerator(function* (sdk, model_set_id, body, options) {
|
|
3513
3556
|
model_set_id = encodeParam(model_set_id);
|
|
3514
3557
|
return sdk.patch("/model_sets/".concat(model_set_id), null, body, options);
|
|
3515
3558
|
});
|
|
3516
|
-
return function update_model_set(
|
|
3517
|
-
return
|
|
3559
|
+
return function update_model_set(_x1144, _x1145, _x1146, _x1147) {
|
|
3560
|
+
return _ref335.apply(this, arguments);
|
|
3518
3561
|
};
|
|
3519
3562
|
}();
|
|
3520
3563
|
export var delete_model_set = function () {
|
|
3521
|
-
var
|
|
3564
|
+
var _ref336 = _asyncToGenerator(function* (sdk, model_set_id, options) {
|
|
3522
3565
|
model_set_id = encodeParam(model_set_id);
|
|
3523
3566
|
return sdk.delete("/model_sets/".concat(model_set_id), null, null, options);
|
|
3524
3567
|
});
|
|
3525
|
-
return function delete_model_set(
|
|
3526
|
-
return
|
|
3568
|
+
return function delete_model_set(_x1148, _x1149, _x1150) {
|
|
3569
|
+
return _ref336.apply(this, arguments);
|
|
3527
3570
|
};
|
|
3528
3571
|
}();
|
|
3529
3572
|
export var all_model_sets = function () {
|
|
3530
|
-
var
|
|
3573
|
+
var _ref337 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3531
3574
|
return sdk.get('/model_sets', {
|
|
3532
3575
|
fields
|
|
3533
3576
|
}, null, options);
|
|
3534
3577
|
});
|
|
3535
|
-
return function all_model_sets(
|
|
3536
|
-
return
|
|
3578
|
+
return function all_model_sets(_x1151, _x1152, _x1153) {
|
|
3579
|
+
return _ref337.apply(this, arguments);
|
|
3537
3580
|
};
|
|
3538
3581
|
}();
|
|
3539
3582
|
export var create_model_set = function () {
|
|
3540
|
-
var
|
|
3583
|
+
var _ref338 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3541
3584
|
return sdk.post('/model_sets', null, body, options);
|
|
3542
3585
|
});
|
|
3543
|
-
return function create_model_set(
|
|
3544
|
-
return
|
|
3586
|
+
return function create_model_set(_x1154, _x1155, _x1156) {
|
|
3587
|
+
return _ref338.apply(this, arguments);
|
|
3545
3588
|
};
|
|
3546
3589
|
}();
|
|
3547
3590
|
export var all_permissions = function () {
|
|
3548
|
-
var
|
|
3591
|
+
var _ref339 = _asyncToGenerator(function* (sdk, options) {
|
|
3549
3592
|
return sdk.get('/permissions', null, null, options);
|
|
3550
3593
|
});
|
|
3551
|
-
return function all_permissions(
|
|
3552
|
-
return
|
|
3594
|
+
return function all_permissions(_x1157, _x1158) {
|
|
3595
|
+
return _ref339.apply(this, arguments);
|
|
3553
3596
|
};
|
|
3554
3597
|
}();
|
|
3555
3598
|
export var search_permission_sets = function () {
|
|
3556
|
-
var
|
|
3599
|
+
var _ref340 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3557
3600
|
return sdk.get('/permission_sets/search', {
|
|
3558
3601
|
fields: request.fields,
|
|
3559
3602
|
limit: request.limit,
|
|
@@ -3566,78 +3609,78 @@ export var search_permission_sets = function () {
|
|
|
3566
3609
|
filter_or: request.filter_or
|
|
3567
3610
|
}, null, options);
|
|
3568
3611
|
});
|
|
3569
|
-
return function search_permission_sets(
|
|
3570
|
-
return
|
|
3612
|
+
return function search_permission_sets(_x1159, _x1160, _x1161) {
|
|
3613
|
+
return _ref340.apply(this, arguments);
|
|
3571
3614
|
};
|
|
3572
3615
|
}();
|
|
3573
3616
|
export var permission_set = function () {
|
|
3574
|
-
var
|
|
3617
|
+
var _ref341 = _asyncToGenerator(function* (sdk, permission_set_id, fields, options) {
|
|
3575
3618
|
permission_set_id = encodeParam(permission_set_id);
|
|
3576
3619
|
return sdk.get("/permission_sets/".concat(permission_set_id), {
|
|
3577
3620
|
fields
|
|
3578
3621
|
}, null, options);
|
|
3579
3622
|
});
|
|
3580
|
-
return function permission_set(
|
|
3581
|
-
return
|
|
3623
|
+
return function permission_set(_x1162, _x1163, _x1164, _x1165) {
|
|
3624
|
+
return _ref341.apply(this, arguments);
|
|
3582
3625
|
};
|
|
3583
3626
|
}();
|
|
3584
3627
|
export var update_permission_set = function () {
|
|
3585
|
-
var
|
|
3628
|
+
var _ref342 = _asyncToGenerator(function* (sdk, permission_set_id, body, options) {
|
|
3586
3629
|
permission_set_id = encodeParam(permission_set_id);
|
|
3587
3630
|
return sdk.patch("/permission_sets/".concat(permission_set_id), null, body, options);
|
|
3588
3631
|
});
|
|
3589
|
-
return function update_permission_set(
|
|
3590
|
-
return
|
|
3632
|
+
return function update_permission_set(_x1166, _x1167, _x1168, _x1169) {
|
|
3633
|
+
return _ref342.apply(this, arguments);
|
|
3591
3634
|
};
|
|
3592
3635
|
}();
|
|
3593
3636
|
export var delete_permission_set = function () {
|
|
3594
|
-
var
|
|
3637
|
+
var _ref343 = _asyncToGenerator(function* (sdk, permission_set_id, options) {
|
|
3595
3638
|
permission_set_id = encodeParam(permission_set_id);
|
|
3596
3639
|
return sdk.delete("/permission_sets/".concat(permission_set_id), null, null, options);
|
|
3597
3640
|
});
|
|
3598
|
-
return function delete_permission_set(
|
|
3599
|
-
return
|
|
3641
|
+
return function delete_permission_set(_x1170, _x1171, _x1172) {
|
|
3642
|
+
return _ref343.apply(this, arguments);
|
|
3600
3643
|
};
|
|
3601
3644
|
}();
|
|
3602
3645
|
export var all_permission_sets = function () {
|
|
3603
|
-
var
|
|
3646
|
+
var _ref344 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3604
3647
|
return sdk.get('/permission_sets', {
|
|
3605
3648
|
fields
|
|
3606
3649
|
}, null, options);
|
|
3607
3650
|
});
|
|
3608
|
-
return function all_permission_sets(
|
|
3609
|
-
return
|
|
3651
|
+
return function all_permission_sets(_x1173, _x1174, _x1175) {
|
|
3652
|
+
return _ref344.apply(this, arguments);
|
|
3610
3653
|
};
|
|
3611
3654
|
}();
|
|
3612
3655
|
export var create_permission_set = function () {
|
|
3613
|
-
var
|
|
3656
|
+
var _ref345 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3614
3657
|
return sdk.post('/permission_sets', null, body, options);
|
|
3615
3658
|
});
|
|
3616
|
-
return function create_permission_set(
|
|
3617
|
-
return
|
|
3659
|
+
return function create_permission_set(_x1176, _x1177, _x1178) {
|
|
3660
|
+
return _ref345.apply(this, arguments);
|
|
3618
3661
|
};
|
|
3619
3662
|
}();
|
|
3620
3663
|
export var all_roles = function () {
|
|
3621
|
-
var
|
|
3664
|
+
var _ref346 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3622
3665
|
return sdk.get('/roles', {
|
|
3623
3666
|
fields: request.fields,
|
|
3624
3667
|
ids: request.ids
|
|
3625
3668
|
}, null, options);
|
|
3626
3669
|
});
|
|
3627
|
-
return function all_roles(
|
|
3628
|
-
return
|
|
3670
|
+
return function all_roles(_x1179, _x1180, _x1181) {
|
|
3671
|
+
return _ref346.apply(this, arguments);
|
|
3629
3672
|
};
|
|
3630
3673
|
}();
|
|
3631
3674
|
export var create_role = function () {
|
|
3632
|
-
var
|
|
3675
|
+
var _ref347 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3633
3676
|
return sdk.post('/roles', null, body, options);
|
|
3634
3677
|
});
|
|
3635
|
-
return function create_role(
|
|
3636
|
-
return
|
|
3678
|
+
return function create_role(_x1182, _x1183, _x1184) {
|
|
3679
|
+
return _ref347.apply(this, arguments);
|
|
3637
3680
|
};
|
|
3638
3681
|
}();
|
|
3639
3682
|
export var search_roles = function () {
|
|
3640
|
-
var
|
|
3683
|
+
var _ref348 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3641
3684
|
return sdk.get('/roles/search', {
|
|
3642
3685
|
fields: request.fields,
|
|
3643
3686
|
limit: request.limit,
|
|
@@ -3650,12 +3693,12 @@ export var search_roles = function () {
|
|
|
3650
3693
|
is_support_role: request.is_support_role
|
|
3651
3694
|
}, null, options);
|
|
3652
3695
|
});
|
|
3653
|
-
return function search_roles(
|
|
3654
|
-
return
|
|
3696
|
+
return function search_roles(_x1185, _x1186, _x1187) {
|
|
3697
|
+
return _ref348.apply(this, arguments);
|
|
3655
3698
|
};
|
|
3656
3699
|
}();
|
|
3657
3700
|
export var search_roles_with_user_count = function () {
|
|
3658
|
-
var
|
|
3701
|
+
var _ref349 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3659
3702
|
return sdk.get('/roles/search/with_user_count', {
|
|
3660
3703
|
fields: request.fields,
|
|
3661
3704
|
limit: request.limit,
|
|
@@ -3667,148 +3710,148 @@ export var search_roles_with_user_count = function () {
|
|
|
3667
3710
|
filter_or: request.filter_or
|
|
3668
3711
|
}, null, options);
|
|
3669
3712
|
});
|
|
3670
|
-
return function search_roles_with_user_count(
|
|
3671
|
-
return
|
|
3713
|
+
return function search_roles_with_user_count(_x1188, _x1189, _x1190) {
|
|
3714
|
+
return _ref349.apply(this, arguments);
|
|
3672
3715
|
};
|
|
3673
3716
|
}();
|
|
3674
3717
|
export var role = function () {
|
|
3675
|
-
var
|
|
3718
|
+
var _ref350 = _asyncToGenerator(function* (sdk, role_id, options) {
|
|
3676
3719
|
role_id = encodeParam(role_id);
|
|
3677
3720
|
return sdk.get("/roles/".concat(role_id), null, null, options);
|
|
3678
3721
|
});
|
|
3679
|
-
return function role(
|
|
3680
|
-
return
|
|
3722
|
+
return function role(_x1191, _x1192, _x1193) {
|
|
3723
|
+
return _ref350.apply(this, arguments);
|
|
3681
3724
|
};
|
|
3682
3725
|
}();
|
|
3683
3726
|
export var update_role = function () {
|
|
3684
|
-
var
|
|
3727
|
+
var _ref351 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
3685
3728
|
role_id = encodeParam(role_id);
|
|
3686
3729
|
return sdk.patch("/roles/".concat(role_id), null, body, options);
|
|
3687
3730
|
});
|
|
3688
|
-
return function update_role(
|
|
3689
|
-
return
|
|
3731
|
+
return function update_role(_x1194, _x1195, _x1196, _x1197) {
|
|
3732
|
+
return _ref351.apply(this, arguments);
|
|
3690
3733
|
};
|
|
3691
3734
|
}();
|
|
3692
3735
|
export var delete_role = function () {
|
|
3693
|
-
var
|
|
3736
|
+
var _ref352 = _asyncToGenerator(function* (sdk, role_id, options) {
|
|
3694
3737
|
role_id = encodeParam(role_id);
|
|
3695
3738
|
return sdk.delete("/roles/".concat(role_id), null, null, options);
|
|
3696
3739
|
});
|
|
3697
|
-
return function delete_role(
|
|
3698
|
-
return
|
|
3740
|
+
return function delete_role(_x1198, _x1199, _x1200) {
|
|
3741
|
+
return _ref352.apply(this, arguments);
|
|
3699
3742
|
};
|
|
3700
3743
|
}();
|
|
3701
3744
|
export var role_groups = function () {
|
|
3702
|
-
var
|
|
3745
|
+
var _ref353 = _asyncToGenerator(function* (sdk, role_id, fields, options) {
|
|
3703
3746
|
role_id = encodeParam(role_id);
|
|
3704
3747
|
return sdk.get("/roles/".concat(role_id, "/groups"), {
|
|
3705
3748
|
fields
|
|
3706
3749
|
}, null, options);
|
|
3707
3750
|
});
|
|
3708
|
-
return function role_groups(
|
|
3709
|
-
return
|
|
3751
|
+
return function role_groups(_x1201, _x1202, _x1203, _x1204) {
|
|
3752
|
+
return _ref353.apply(this, arguments);
|
|
3710
3753
|
};
|
|
3711
3754
|
}();
|
|
3712
3755
|
export var set_role_groups = function () {
|
|
3713
|
-
var
|
|
3756
|
+
var _ref354 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
3714
3757
|
role_id = encodeParam(role_id);
|
|
3715
3758
|
return sdk.put("/roles/".concat(role_id, "/groups"), null, body, options);
|
|
3716
3759
|
});
|
|
3717
|
-
return function set_role_groups(
|
|
3718
|
-
return
|
|
3760
|
+
return function set_role_groups(_x1205, _x1206, _x1207, _x1208) {
|
|
3761
|
+
return _ref354.apply(this, arguments);
|
|
3719
3762
|
};
|
|
3720
3763
|
}();
|
|
3721
3764
|
export var role_users = function () {
|
|
3722
|
-
var
|
|
3765
|
+
var _ref355 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3723
3766
|
request.role_id = encodeParam(request.role_id);
|
|
3724
3767
|
return sdk.get("/roles/".concat(request.role_id, "/users"), {
|
|
3725
3768
|
fields: request.fields,
|
|
3726
3769
|
direct_association_only: request.direct_association_only
|
|
3727
3770
|
}, null, options);
|
|
3728
3771
|
});
|
|
3729
|
-
return function role_users(
|
|
3730
|
-
return
|
|
3772
|
+
return function role_users(_x1209, _x1210, _x1211) {
|
|
3773
|
+
return _ref355.apply(this, arguments);
|
|
3731
3774
|
};
|
|
3732
3775
|
}();
|
|
3733
3776
|
export var set_role_users = function () {
|
|
3734
|
-
var
|
|
3777
|
+
var _ref356 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
3735
3778
|
role_id = encodeParam(role_id);
|
|
3736
3779
|
return sdk.put("/roles/".concat(role_id, "/users"), null, body, options);
|
|
3737
3780
|
});
|
|
3738
|
-
return function set_role_users(
|
|
3739
|
-
return
|
|
3781
|
+
return function set_role_users(_x1212, _x1213, _x1214, _x1215) {
|
|
3782
|
+
return _ref356.apply(this, arguments);
|
|
3740
3783
|
};
|
|
3741
3784
|
}();
|
|
3742
3785
|
export var scheduled_plans_for_space = function () {
|
|
3743
|
-
var
|
|
3786
|
+
var _ref357 = _asyncToGenerator(function* (sdk, space_id, fields, options) {
|
|
3744
3787
|
space_id = encodeParam(space_id);
|
|
3745
3788
|
return sdk.get("/scheduled_plans/space/".concat(space_id), {
|
|
3746
3789
|
fields
|
|
3747
3790
|
}, null, options);
|
|
3748
3791
|
});
|
|
3749
|
-
return function scheduled_plans_for_space(
|
|
3750
|
-
return
|
|
3792
|
+
return function scheduled_plans_for_space(_x1216, _x1217, _x1218, _x1219) {
|
|
3793
|
+
return _ref357.apply(this, arguments);
|
|
3751
3794
|
};
|
|
3752
3795
|
}();
|
|
3753
3796
|
export var scheduled_plan = function () {
|
|
3754
|
-
var
|
|
3797
|
+
var _ref358 = _asyncToGenerator(function* (sdk, scheduled_plan_id, fields, options) {
|
|
3755
3798
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
3756
3799
|
return sdk.get("/scheduled_plans/".concat(scheduled_plan_id), {
|
|
3757
3800
|
fields
|
|
3758
3801
|
}, null, options);
|
|
3759
3802
|
});
|
|
3760
|
-
return function scheduled_plan(
|
|
3761
|
-
return
|
|
3803
|
+
return function scheduled_plan(_x1220, _x1221, _x1222, _x1223) {
|
|
3804
|
+
return _ref358.apply(this, arguments);
|
|
3762
3805
|
};
|
|
3763
3806
|
}();
|
|
3764
3807
|
export var update_scheduled_plan = function () {
|
|
3765
|
-
var
|
|
3808
|
+
var _ref359 = _asyncToGenerator(function* (sdk, scheduled_plan_id, body, options) {
|
|
3766
3809
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
3767
3810
|
return sdk.patch("/scheduled_plans/".concat(scheduled_plan_id), null, body, options);
|
|
3768
3811
|
});
|
|
3769
|
-
return function update_scheduled_plan(
|
|
3770
|
-
return
|
|
3812
|
+
return function update_scheduled_plan(_x1224, _x1225, _x1226, _x1227) {
|
|
3813
|
+
return _ref359.apply(this, arguments);
|
|
3771
3814
|
};
|
|
3772
3815
|
}();
|
|
3773
3816
|
export var delete_scheduled_plan = function () {
|
|
3774
|
-
var
|
|
3817
|
+
var _ref360 = _asyncToGenerator(function* (sdk, scheduled_plan_id, options) {
|
|
3775
3818
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
3776
3819
|
return sdk.delete("/scheduled_plans/".concat(scheduled_plan_id), null, null, options);
|
|
3777
3820
|
});
|
|
3778
|
-
return function delete_scheduled_plan(
|
|
3779
|
-
return
|
|
3821
|
+
return function delete_scheduled_plan(_x1228, _x1229, _x1230) {
|
|
3822
|
+
return _ref360.apply(this, arguments);
|
|
3780
3823
|
};
|
|
3781
3824
|
}();
|
|
3782
3825
|
export var all_scheduled_plans = function () {
|
|
3783
|
-
var
|
|
3826
|
+
var _ref361 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3784
3827
|
return sdk.get('/scheduled_plans', {
|
|
3785
3828
|
user_id: request.user_id,
|
|
3786
3829
|
fields: request.fields,
|
|
3787
3830
|
all_users: request.all_users
|
|
3788
3831
|
}, null, options);
|
|
3789
3832
|
});
|
|
3790
|
-
return function all_scheduled_plans(
|
|
3791
|
-
return
|
|
3833
|
+
return function all_scheduled_plans(_x1231, _x1232, _x1233) {
|
|
3834
|
+
return _ref361.apply(this, arguments);
|
|
3792
3835
|
};
|
|
3793
3836
|
}();
|
|
3794
3837
|
export var create_scheduled_plan = function () {
|
|
3795
|
-
var
|
|
3838
|
+
var _ref362 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3796
3839
|
return sdk.post('/scheduled_plans', null, body, options);
|
|
3797
3840
|
});
|
|
3798
|
-
return function create_scheduled_plan(
|
|
3799
|
-
return
|
|
3841
|
+
return function create_scheduled_plan(_x1234, _x1235, _x1236) {
|
|
3842
|
+
return _ref362.apply(this, arguments);
|
|
3800
3843
|
};
|
|
3801
3844
|
}();
|
|
3802
3845
|
export var scheduled_plan_run_once = function () {
|
|
3803
|
-
var
|
|
3846
|
+
var _ref363 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3804
3847
|
return sdk.post('/scheduled_plans/run_once', null, body, options);
|
|
3805
3848
|
});
|
|
3806
|
-
return function scheduled_plan_run_once(
|
|
3807
|
-
return
|
|
3849
|
+
return function scheduled_plan_run_once(_x1237, _x1238, _x1239) {
|
|
3850
|
+
return _ref363.apply(this, arguments);
|
|
3808
3851
|
};
|
|
3809
3852
|
}();
|
|
3810
3853
|
export var search_scheduled_plans = function () {
|
|
3811
|
-
var
|
|
3854
|
+
var _ref364 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3812
3855
|
return sdk.get('/scheduled_plans/search', {
|
|
3813
3856
|
user_id: request.user_id,
|
|
3814
3857
|
fields: request.fields,
|
|
@@ -3828,12 +3871,12 @@ export var search_scheduled_plans = function () {
|
|
|
3828
3871
|
filter_or: request.filter_or
|
|
3829
3872
|
}, null, options);
|
|
3830
3873
|
});
|
|
3831
|
-
return function search_scheduled_plans(
|
|
3832
|
-
return
|
|
3874
|
+
return function search_scheduled_plans(_x1240, _x1241, _x1242) {
|
|
3875
|
+
return _ref364.apply(this, arguments);
|
|
3833
3876
|
};
|
|
3834
3877
|
}();
|
|
3835
3878
|
export var scheduled_plans_for_look = function () {
|
|
3836
|
-
var
|
|
3879
|
+
var _ref365 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3837
3880
|
request.look_id = encodeParam(request.look_id);
|
|
3838
3881
|
return sdk.get("/scheduled_plans/look/".concat(request.look_id), {
|
|
3839
3882
|
user_id: request.user_id,
|
|
@@ -3841,12 +3884,12 @@ export var scheduled_plans_for_look = function () {
|
|
|
3841
3884
|
all_users: request.all_users
|
|
3842
3885
|
}, null, options);
|
|
3843
3886
|
});
|
|
3844
|
-
return function scheduled_plans_for_look(
|
|
3845
|
-
return
|
|
3887
|
+
return function scheduled_plans_for_look(_x1243, _x1244, _x1245) {
|
|
3888
|
+
return _ref365.apply(this, arguments);
|
|
3846
3889
|
};
|
|
3847
3890
|
}();
|
|
3848
3891
|
export var scheduled_plans_for_dashboard = function () {
|
|
3849
|
-
var
|
|
3892
|
+
var _ref366 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3850
3893
|
request.dashboard_id = encodeParam(request.dashboard_id);
|
|
3851
3894
|
return sdk.get("/scheduled_plans/dashboard/".concat(request.dashboard_id), {
|
|
3852
3895
|
user_id: request.user_id,
|
|
@@ -3854,12 +3897,12 @@ export var scheduled_plans_for_dashboard = function () {
|
|
|
3854
3897
|
fields: request.fields
|
|
3855
3898
|
}, null, options);
|
|
3856
3899
|
});
|
|
3857
|
-
return function scheduled_plans_for_dashboard(
|
|
3858
|
-
return
|
|
3900
|
+
return function scheduled_plans_for_dashboard(_x1246, _x1247, _x1248) {
|
|
3901
|
+
return _ref366.apply(this, arguments);
|
|
3859
3902
|
};
|
|
3860
3903
|
}();
|
|
3861
3904
|
export var scheduled_plans_for_lookml_dashboard = function () {
|
|
3862
|
-
var
|
|
3905
|
+
var _ref367 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3863
3906
|
request.lookml_dashboard_id = encodeParam(request.lookml_dashboard_id);
|
|
3864
3907
|
return sdk.get("/scheduled_plans/lookml_dashboard/".concat(request.lookml_dashboard_id), {
|
|
3865
3908
|
user_id: request.user_id,
|
|
@@ -3867,82 +3910,82 @@ export var scheduled_plans_for_lookml_dashboard = function () {
|
|
|
3867
3910
|
all_users: request.all_users
|
|
3868
3911
|
}, null, options);
|
|
3869
3912
|
});
|
|
3870
|
-
return function scheduled_plans_for_lookml_dashboard(
|
|
3871
|
-
return
|
|
3913
|
+
return function scheduled_plans_for_lookml_dashboard(_x1249, _x1250, _x1251) {
|
|
3914
|
+
return _ref367.apply(this, arguments);
|
|
3872
3915
|
};
|
|
3873
3916
|
}();
|
|
3874
3917
|
export var scheduled_plan_run_once_by_id = function () {
|
|
3875
|
-
var
|
|
3918
|
+
var _ref368 = _asyncToGenerator(function* (sdk, scheduled_plan_id, body, options) {
|
|
3876
3919
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
3877
3920
|
return sdk.post("/scheduled_plans/".concat(scheduled_plan_id, "/run_once"), null, body, options);
|
|
3878
3921
|
});
|
|
3879
|
-
return function scheduled_plan_run_once_by_id(
|
|
3880
|
-
return
|
|
3922
|
+
return function scheduled_plan_run_once_by_id(_x1252, _x1253, _x1254, _x1255) {
|
|
3923
|
+
return _ref368.apply(this, arguments);
|
|
3881
3924
|
};
|
|
3882
3925
|
}();
|
|
3883
3926
|
export var session = function () {
|
|
3884
|
-
var
|
|
3927
|
+
var _ref369 = _asyncToGenerator(function* (sdk, options) {
|
|
3885
3928
|
return sdk.get('/session', null, null, options);
|
|
3886
3929
|
});
|
|
3887
|
-
return function session(
|
|
3888
|
-
return
|
|
3930
|
+
return function session(_x1256, _x1257) {
|
|
3931
|
+
return _ref369.apply(this, arguments);
|
|
3889
3932
|
};
|
|
3890
3933
|
}();
|
|
3891
3934
|
export var update_session = function () {
|
|
3892
|
-
var
|
|
3935
|
+
var _ref370 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3893
3936
|
return sdk.patch('/session', null, body, options);
|
|
3894
3937
|
});
|
|
3895
|
-
return function update_session(
|
|
3896
|
-
return
|
|
3938
|
+
return function update_session(_x1258, _x1259, _x1260) {
|
|
3939
|
+
return _ref370.apply(this, arguments);
|
|
3897
3940
|
};
|
|
3898
3941
|
}();
|
|
3899
3942
|
export var sql_interface_metadata = function () {
|
|
3900
|
-
var
|
|
3943
|
+
var _ref371 = _asyncToGenerator(function* (sdk, avatica_request, options) {
|
|
3901
3944
|
return sdk.get('/sql_interface_queries/metadata', {
|
|
3902
3945
|
avatica_request
|
|
3903
3946
|
}, null, options);
|
|
3904
3947
|
});
|
|
3905
|
-
return function sql_interface_metadata(
|
|
3906
|
-
return
|
|
3948
|
+
return function sql_interface_metadata(_x1261, _x1262, _x1263) {
|
|
3949
|
+
return _ref371.apply(this, arguments);
|
|
3907
3950
|
};
|
|
3908
3951
|
}();
|
|
3909
3952
|
export var run_sql_interface_query = function () {
|
|
3910
|
-
var
|
|
3953
|
+
var _ref372 = _asyncToGenerator(function* (sdk, query_id, result_format, options) {
|
|
3911
3954
|
result_format = encodeParam(result_format);
|
|
3912
3955
|
return sdk.get("/sql_interface_queries/".concat(query_id, "/run/").concat(result_format), null, null, options);
|
|
3913
3956
|
});
|
|
3914
|
-
return function run_sql_interface_query(
|
|
3915
|
-
return
|
|
3957
|
+
return function run_sql_interface_query(_x1264, _x1265, _x1266, _x1267) {
|
|
3958
|
+
return _ref372.apply(this, arguments);
|
|
3916
3959
|
};
|
|
3917
3960
|
}();
|
|
3918
3961
|
export var create_sql_interface_query = function () {
|
|
3919
|
-
var
|
|
3962
|
+
var _ref373 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3920
3963
|
return sdk.post('/sql_interface_queries', null, body, options);
|
|
3921
3964
|
});
|
|
3922
|
-
return function create_sql_interface_query(
|
|
3923
|
-
return
|
|
3965
|
+
return function create_sql_interface_query(_x1268, _x1269, _x1270) {
|
|
3966
|
+
return _ref373.apply(this, arguments);
|
|
3924
3967
|
};
|
|
3925
3968
|
}();
|
|
3926
3969
|
export var all_themes = function () {
|
|
3927
|
-
var
|
|
3970
|
+
var _ref374 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3928
3971
|
return sdk.get('/themes', {
|
|
3929
3972
|
fields
|
|
3930
3973
|
}, null, options);
|
|
3931
3974
|
});
|
|
3932
|
-
return function all_themes(
|
|
3933
|
-
return
|
|
3975
|
+
return function all_themes(_x1271, _x1272, _x1273) {
|
|
3976
|
+
return _ref374.apply(this, arguments);
|
|
3934
3977
|
};
|
|
3935
3978
|
}();
|
|
3936
3979
|
export var create_theme = function () {
|
|
3937
|
-
var
|
|
3980
|
+
var _ref375 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3938
3981
|
return sdk.post('/themes', null, body, options);
|
|
3939
3982
|
});
|
|
3940
|
-
return function create_theme(
|
|
3941
|
-
return
|
|
3983
|
+
return function create_theme(_x1274, _x1275, _x1276) {
|
|
3984
|
+
return _ref375.apply(this, arguments);
|
|
3942
3985
|
};
|
|
3943
3986
|
}();
|
|
3944
3987
|
export var search_themes = function () {
|
|
3945
|
-
var
|
|
3988
|
+
var _ref376 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3946
3989
|
return sdk.get('/themes/search', {
|
|
3947
3990
|
id: request.id,
|
|
3948
3991
|
name: request.name,
|
|
@@ -3955,92 +3998,92 @@ export var search_themes = function () {
|
|
|
3955
3998
|
filter_or: request.filter_or
|
|
3956
3999
|
}, null, options);
|
|
3957
4000
|
});
|
|
3958
|
-
return function search_themes(
|
|
3959
|
-
return
|
|
4001
|
+
return function search_themes(_x1277, _x1278, _x1279) {
|
|
4002
|
+
return _ref376.apply(this, arguments);
|
|
3960
4003
|
};
|
|
3961
4004
|
}();
|
|
3962
4005
|
export var default_theme = function () {
|
|
3963
|
-
var
|
|
4006
|
+
var _ref377 = _asyncToGenerator(function* (sdk, ts, options) {
|
|
3964
4007
|
return sdk.get('/themes/default', {
|
|
3965
4008
|
ts
|
|
3966
4009
|
}, null, options);
|
|
3967
4010
|
});
|
|
3968
|
-
return function default_theme(
|
|
3969
|
-
return
|
|
4011
|
+
return function default_theme(_x1280, _x1281, _x1282) {
|
|
4012
|
+
return _ref377.apply(this, arguments);
|
|
3970
4013
|
};
|
|
3971
4014
|
}();
|
|
3972
4015
|
export var set_default_theme = function () {
|
|
3973
|
-
var
|
|
4016
|
+
var _ref378 = _asyncToGenerator(function* (sdk, name, options) {
|
|
3974
4017
|
return sdk.put('/themes/default', {
|
|
3975
4018
|
name
|
|
3976
4019
|
}, null, options);
|
|
3977
4020
|
});
|
|
3978
|
-
return function set_default_theme(
|
|
3979
|
-
return
|
|
4021
|
+
return function set_default_theme(_x1283, _x1284, _x1285) {
|
|
4022
|
+
return _ref378.apply(this, arguments);
|
|
3980
4023
|
};
|
|
3981
4024
|
}();
|
|
3982
4025
|
export var active_themes = function () {
|
|
3983
|
-
var
|
|
4026
|
+
var _ref379 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3984
4027
|
return sdk.get('/themes/active', {
|
|
3985
4028
|
name: request.name,
|
|
3986
4029
|
ts: request.ts,
|
|
3987
4030
|
fields: request.fields
|
|
3988
4031
|
}, null, options);
|
|
3989
4032
|
});
|
|
3990
|
-
return function active_themes(
|
|
3991
|
-
return
|
|
4033
|
+
return function active_themes(_x1286, _x1287, _x1288) {
|
|
4034
|
+
return _ref379.apply(this, arguments);
|
|
3992
4035
|
};
|
|
3993
4036
|
}();
|
|
3994
4037
|
export var theme_or_default = function () {
|
|
3995
|
-
var
|
|
4038
|
+
var _ref380 = _asyncToGenerator(function* (sdk, name, ts, options) {
|
|
3996
4039
|
return sdk.get('/themes/theme_or_default', {
|
|
3997
4040
|
name,
|
|
3998
4041
|
ts
|
|
3999
4042
|
}, null, options);
|
|
4000
4043
|
});
|
|
4001
|
-
return function theme_or_default(
|
|
4002
|
-
return
|
|
4044
|
+
return function theme_or_default(_x1289, _x1290, _x1291, _x1292) {
|
|
4045
|
+
return _ref380.apply(this, arguments);
|
|
4003
4046
|
};
|
|
4004
4047
|
}();
|
|
4005
4048
|
export var validate_theme = function () {
|
|
4006
|
-
var
|
|
4049
|
+
var _ref381 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4007
4050
|
return sdk.post('/themes/validate', null, body, options);
|
|
4008
4051
|
});
|
|
4009
|
-
return function validate_theme(
|
|
4010
|
-
return
|
|
4052
|
+
return function validate_theme(_x1293, _x1294, _x1295) {
|
|
4053
|
+
return _ref381.apply(this, arguments);
|
|
4011
4054
|
};
|
|
4012
4055
|
}();
|
|
4013
4056
|
export var theme = function () {
|
|
4014
|
-
var
|
|
4057
|
+
var _ref382 = _asyncToGenerator(function* (sdk, theme_id, fields, options) {
|
|
4015
4058
|
theme_id = encodeParam(theme_id);
|
|
4016
4059
|
return sdk.get("/themes/".concat(theme_id), {
|
|
4017
4060
|
fields
|
|
4018
4061
|
}, null, options);
|
|
4019
4062
|
});
|
|
4020
|
-
return function theme(
|
|
4021
|
-
return
|
|
4063
|
+
return function theme(_x1296, _x1297, _x1298, _x1299) {
|
|
4064
|
+
return _ref382.apply(this, arguments);
|
|
4022
4065
|
};
|
|
4023
4066
|
}();
|
|
4024
4067
|
export var update_theme = function () {
|
|
4025
|
-
var
|
|
4068
|
+
var _ref383 = _asyncToGenerator(function* (sdk, theme_id, body, options) {
|
|
4026
4069
|
theme_id = encodeParam(theme_id);
|
|
4027
4070
|
return sdk.patch("/themes/".concat(theme_id), null, body, options);
|
|
4028
4071
|
});
|
|
4029
|
-
return function update_theme(
|
|
4030
|
-
return
|
|
4072
|
+
return function update_theme(_x1300, _x1301, _x1302, _x1303) {
|
|
4073
|
+
return _ref383.apply(this, arguments);
|
|
4031
4074
|
};
|
|
4032
4075
|
}();
|
|
4033
4076
|
export var delete_theme = function () {
|
|
4034
|
-
var
|
|
4077
|
+
var _ref384 = _asyncToGenerator(function* (sdk, theme_id, options) {
|
|
4035
4078
|
theme_id = encodeParam(theme_id);
|
|
4036
4079
|
return sdk.delete("/themes/".concat(theme_id), null, null, options);
|
|
4037
4080
|
});
|
|
4038
|
-
return function delete_theme(
|
|
4039
|
-
return
|
|
4081
|
+
return function delete_theme(_x1304, _x1305, _x1306) {
|
|
4082
|
+
return _ref384.apply(this, arguments);
|
|
4040
4083
|
};
|
|
4041
4084
|
}();
|
|
4042
4085
|
export var search_credentials_email = function () {
|
|
4043
|
-
var
|
|
4086
|
+
var _ref385 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4044
4087
|
return sdk.get('/credentials_email/search', {
|
|
4045
4088
|
fields: request.fields,
|
|
4046
4089
|
limit: request.limit,
|
|
@@ -4052,22 +4095,22 @@ export var search_credentials_email = function () {
|
|
|
4052
4095
|
filter_or: request.filter_or
|
|
4053
4096
|
}, null, options);
|
|
4054
4097
|
});
|
|
4055
|
-
return function search_credentials_email(
|
|
4056
|
-
return
|
|
4098
|
+
return function search_credentials_email(_x1307, _x1308, _x1309) {
|
|
4099
|
+
return _ref385.apply(this, arguments);
|
|
4057
4100
|
};
|
|
4058
4101
|
}();
|
|
4059
4102
|
export var me = function () {
|
|
4060
|
-
var
|
|
4103
|
+
var _ref386 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
4061
4104
|
return sdk.get('/user', {
|
|
4062
4105
|
fields
|
|
4063
4106
|
}, null, options);
|
|
4064
4107
|
});
|
|
4065
|
-
return function me(
|
|
4066
|
-
return
|
|
4108
|
+
return function me(_x1310, _x1311, _x1312) {
|
|
4109
|
+
return _ref386.apply(this, arguments);
|
|
4067
4110
|
};
|
|
4068
4111
|
}();
|
|
4069
4112
|
export var all_users = function () {
|
|
4070
|
-
var
|
|
4113
|
+
var _ref387 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4071
4114
|
return sdk.get('/users', {
|
|
4072
4115
|
fields: request.fields,
|
|
4073
4116
|
page: request.page,
|
|
@@ -4078,22 +4121,22 @@ export var all_users = function () {
|
|
|
4078
4121
|
ids: request.ids
|
|
4079
4122
|
}, null, options);
|
|
4080
4123
|
});
|
|
4081
|
-
return function all_users(
|
|
4082
|
-
return
|
|
4124
|
+
return function all_users(_x1313, _x1314, _x1315) {
|
|
4125
|
+
return _ref387.apply(this, arguments);
|
|
4083
4126
|
};
|
|
4084
4127
|
}();
|
|
4085
4128
|
export var create_user = function () {
|
|
4086
|
-
var
|
|
4129
|
+
var _ref388 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
4087
4130
|
return sdk.post('/users', {
|
|
4088
4131
|
fields
|
|
4089
4132
|
}, body, options);
|
|
4090
4133
|
});
|
|
4091
|
-
return function create_user(
|
|
4092
|
-
return
|
|
4134
|
+
return function create_user(_x1316, _x1317, _x1318, _x1319) {
|
|
4135
|
+
return _ref388.apply(this, arguments);
|
|
4093
4136
|
};
|
|
4094
4137
|
}();
|
|
4095
4138
|
export var search_users = function () {
|
|
4096
|
-
var
|
|
4139
|
+
var _ref389 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4097
4140
|
return sdk.get('/users/search', {
|
|
4098
4141
|
fields: request.fields,
|
|
4099
4142
|
page: request.page,
|
|
@@ -4113,12 +4156,12 @@ export var search_users = function () {
|
|
|
4113
4156
|
group_id: request.group_id
|
|
4114
4157
|
}, null, options);
|
|
4115
4158
|
});
|
|
4116
|
-
return function search_users(
|
|
4117
|
-
return
|
|
4159
|
+
return function search_users(_x1320, _x1321, _x1322) {
|
|
4160
|
+
return _ref389.apply(this, arguments);
|
|
4118
4161
|
};
|
|
4119
4162
|
}();
|
|
4120
4163
|
export var search_users_names = function () {
|
|
4121
|
-
var
|
|
4164
|
+
var _ref390 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4122
4165
|
request.pattern = encodeParam(request.pattern);
|
|
4123
4166
|
return sdk.get("/users/search/names/".concat(request.pattern), {
|
|
4124
4167
|
fields: request.fields,
|
|
@@ -4135,373 +4178,373 @@ export var search_users_names = function () {
|
|
|
4135
4178
|
is_disabled: request.is_disabled
|
|
4136
4179
|
}, null, options);
|
|
4137
4180
|
});
|
|
4138
|
-
return function search_users_names(
|
|
4139
|
-
return
|
|
4181
|
+
return function search_users_names(_x1323, _x1324, _x1325) {
|
|
4182
|
+
return _ref390.apply(this, arguments);
|
|
4140
4183
|
};
|
|
4141
4184
|
}();
|
|
4142
4185
|
export var user = function () {
|
|
4143
|
-
var
|
|
4186
|
+
var _ref391 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4144
4187
|
user_id = encodeParam(user_id);
|
|
4145
4188
|
return sdk.get("/users/".concat(user_id), {
|
|
4146
4189
|
fields
|
|
4147
4190
|
}, null, options);
|
|
4148
4191
|
});
|
|
4149
|
-
return function user(
|
|
4150
|
-
return
|
|
4192
|
+
return function user(_x1326, _x1327, _x1328, _x1329) {
|
|
4193
|
+
return _ref391.apply(this, arguments);
|
|
4151
4194
|
};
|
|
4152
4195
|
}();
|
|
4153
4196
|
export var update_user = function () {
|
|
4154
|
-
var
|
|
4197
|
+
var _ref392 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4155
4198
|
user_id = encodeParam(user_id);
|
|
4156
4199
|
return sdk.patch("/users/".concat(user_id), {
|
|
4157
4200
|
fields
|
|
4158
4201
|
}, body, options);
|
|
4159
4202
|
});
|
|
4160
|
-
return function update_user(
|
|
4161
|
-
return
|
|
4203
|
+
return function update_user(_x1330, _x1331, _x1332, _x1333, _x1334) {
|
|
4204
|
+
return _ref392.apply(this, arguments);
|
|
4162
4205
|
};
|
|
4163
4206
|
}();
|
|
4164
4207
|
export var delete_user = function () {
|
|
4165
|
-
var
|
|
4208
|
+
var _ref393 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4166
4209
|
user_id = encodeParam(user_id);
|
|
4167
4210
|
return sdk.delete("/users/".concat(user_id), null, null, options);
|
|
4168
4211
|
});
|
|
4169
|
-
return function delete_user(
|
|
4170
|
-
return
|
|
4212
|
+
return function delete_user(_x1335, _x1336, _x1337) {
|
|
4213
|
+
return _ref393.apply(this, arguments);
|
|
4171
4214
|
};
|
|
4172
4215
|
}();
|
|
4173
4216
|
export var user_for_credential = function () {
|
|
4174
|
-
var
|
|
4217
|
+
var _ref394 = _asyncToGenerator(function* (sdk, credential_type, credential_id, fields, options) {
|
|
4175
4218
|
credential_type = encodeParam(credential_type);
|
|
4176
4219
|
credential_id = encodeParam(credential_id);
|
|
4177
4220
|
return sdk.get("/users/credential/".concat(credential_type, "/").concat(credential_id), {
|
|
4178
4221
|
fields
|
|
4179
4222
|
}, null, options);
|
|
4180
4223
|
});
|
|
4181
|
-
return function user_for_credential(
|
|
4182
|
-
return
|
|
4224
|
+
return function user_for_credential(_x1338, _x1339, _x1340, _x1341, _x1342) {
|
|
4225
|
+
return _ref394.apply(this, arguments);
|
|
4183
4226
|
};
|
|
4184
4227
|
}();
|
|
4185
4228
|
export var user_credentials_email = function () {
|
|
4186
|
-
var
|
|
4229
|
+
var _ref395 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4187
4230
|
user_id = encodeParam(user_id);
|
|
4188
4231
|
return sdk.get("/users/".concat(user_id, "/credentials_email"), {
|
|
4189
4232
|
fields
|
|
4190
4233
|
}, null, options);
|
|
4191
4234
|
});
|
|
4192
|
-
return function user_credentials_email(
|
|
4193
|
-
return
|
|
4235
|
+
return function user_credentials_email(_x1343, _x1344, _x1345, _x1346) {
|
|
4236
|
+
return _ref395.apply(this, arguments);
|
|
4194
4237
|
};
|
|
4195
4238
|
}();
|
|
4196
4239
|
export var create_user_credentials_email = function () {
|
|
4197
|
-
var
|
|
4240
|
+
var _ref396 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4198
4241
|
user_id = encodeParam(user_id);
|
|
4199
4242
|
return sdk.post("/users/".concat(user_id, "/credentials_email"), {
|
|
4200
4243
|
fields
|
|
4201
4244
|
}, body, options);
|
|
4202
4245
|
});
|
|
4203
|
-
return function create_user_credentials_email(
|
|
4204
|
-
return
|
|
4246
|
+
return function create_user_credentials_email(_x1347, _x1348, _x1349, _x1350, _x1351) {
|
|
4247
|
+
return _ref396.apply(this, arguments);
|
|
4205
4248
|
};
|
|
4206
4249
|
}();
|
|
4207
4250
|
export var update_user_credentials_email = function () {
|
|
4208
|
-
var
|
|
4251
|
+
var _ref397 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4209
4252
|
user_id = encodeParam(user_id);
|
|
4210
4253
|
return sdk.patch("/users/".concat(user_id, "/credentials_email"), {
|
|
4211
4254
|
fields
|
|
4212
4255
|
}, body, options);
|
|
4213
4256
|
});
|
|
4214
|
-
return function update_user_credentials_email(
|
|
4215
|
-
return
|
|
4257
|
+
return function update_user_credentials_email(_x1352, _x1353, _x1354, _x1355, _x1356) {
|
|
4258
|
+
return _ref397.apply(this, arguments);
|
|
4216
4259
|
};
|
|
4217
4260
|
}();
|
|
4218
4261
|
export var delete_user_credentials_email = function () {
|
|
4219
|
-
var
|
|
4262
|
+
var _ref398 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4220
4263
|
user_id = encodeParam(user_id);
|
|
4221
4264
|
return sdk.delete("/users/".concat(user_id, "/credentials_email"), null, null, options);
|
|
4222
4265
|
});
|
|
4223
|
-
return function delete_user_credentials_email(
|
|
4224
|
-
return
|
|
4266
|
+
return function delete_user_credentials_email(_x1357, _x1358, _x1359) {
|
|
4267
|
+
return _ref398.apply(this, arguments);
|
|
4225
4268
|
};
|
|
4226
4269
|
}();
|
|
4227
4270
|
export var user_credentials_totp = function () {
|
|
4228
|
-
var
|
|
4271
|
+
var _ref399 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4229
4272
|
user_id = encodeParam(user_id);
|
|
4230
4273
|
return sdk.get("/users/".concat(user_id, "/credentials_totp"), {
|
|
4231
4274
|
fields
|
|
4232
4275
|
}, null, options);
|
|
4233
4276
|
});
|
|
4234
|
-
return function user_credentials_totp(
|
|
4235
|
-
return
|
|
4277
|
+
return function user_credentials_totp(_x1360, _x1361, _x1362, _x1363) {
|
|
4278
|
+
return _ref399.apply(this, arguments);
|
|
4236
4279
|
};
|
|
4237
4280
|
}();
|
|
4238
4281
|
export var create_user_credentials_totp = function () {
|
|
4239
|
-
var
|
|
4282
|
+
var _ref400 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4240
4283
|
user_id = encodeParam(user_id);
|
|
4241
4284
|
return sdk.post("/users/".concat(user_id, "/credentials_totp"), {
|
|
4242
4285
|
fields
|
|
4243
4286
|
}, body, options);
|
|
4244
4287
|
});
|
|
4245
|
-
return function create_user_credentials_totp(
|
|
4246
|
-
return
|
|
4288
|
+
return function create_user_credentials_totp(_x1364, _x1365, _x1366, _x1367, _x1368) {
|
|
4289
|
+
return _ref400.apply(this, arguments);
|
|
4247
4290
|
};
|
|
4248
4291
|
}();
|
|
4249
4292
|
export var delete_user_credentials_totp = function () {
|
|
4250
|
-
var
|
|
4293
|
+
var _ref401 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4251
4294
|
user_id = encodeParam(user_id);
|
|
4252
4295
|
return sdk.delete("/users/".concat(user_id, "/credentials_totp"), null, null, options);
|
|
4253
4296
|
});
|
|
4254
|
-
return function delete_user_credentials_totp(
|
|
4255
|
-
return
|
|
4297
|
+
return function delete_user_credentials_totp(_x1369, _x1370, _x1371) {
|
|
4298
|
+
return _ref401.apply(this, arguments);
|
|
4256
4299
|
};
|
|
4257
4300
|
}();
|
|
4258
4301
|
export var user_credentials_ldap = function () {
|
|
4259
|
-
var
|
|
4302
|
+
var _ref402 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4260
4303
|
user_id = encodeParam(user_id);
|
|
4261
4304
|
return sdk.get("/users/".concat(user_id, "/credentials_ldap"), {
|
|
4262
4305
|
fields
|
|
4263
4306
|
}, null, options);
|
|
4264
4307
|
});
|
|
4265
|
-
return function user_credentials_ldap(
|
|
4266
|
-
return
|
|
4308
|
+
return function user_credentials_ldap(_x1372, _x1373, _x1374, _x1375) {
|
|
4309
|
+
return _ref402.apply(this, arguments);
|
|
4267
4310
|
};
|
|
4268
4311
|
}();
|
|
4269
4312
|
export var delete_user_credentials_ldap = function () {
|
|
4270
|
-
var
|
|
4313
|
+
var _ref403 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4271
4314
|
user_id = encodeParam(user_id);
|
|
4272
4315
|
return sdk.delete("/users/".concat(user_id, "/credentials_ldap"), null, null, options);
|
|
4273
4316
|
});
|
|
4274
|
-
return function delete_user_credentials_ldap(
|
|
4275
|
-
return
|
|
4317
|
+
return function delete_user_credentials_ldap(_x1376, _x1377, _x1378) {
|
|
4318
|
+
return _ref403.apply(this, arguments);
|
|
4276
4319
|
};
|
|
4277
4320
|
}();
|
|
4278
4321
|
export var user_credentials_google = function () {
|
|
4279
|
-
var
|
|
4322
|
+
var _ref404 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4280
4323
|
user_id = encodeParam(user_id);
|
|
4281
4324
|
return sdk.get("/users/".concat(user_id, "/credentials_google"), {
|
|
4282
4325
|
fields
|
|
4283
4326
|
}, null, options);
|
|
4284
4327
|
});
|
|
4285
|
-
return function user_credentials_google(
|
|
4286
|
-
return
|
|
4328
|
+
return function user_credentials_google(_x1379, _x1380, _x1381, _x1382) {
|
|
4329
|
+
return _ref404.apply(this, arguments);
|
|
4287
4330
|
};
|
|
4288
4331
|
}();
|
|
4289
4332
|
export var delete_user_credentials_google = function () {
|
|
4290
|
-
var
|
|
4333
|
+
var _ref405 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4291
4334
|
user_id = encodeParam(user_id);
|
|
4292
4335
|
return sdk.delete("/users/".concat(user_id, "/credentials_google"), null, null, options);
|
|
4293
4336
|
});
|
|
4294
|
-
return function delete_user_credentials_google(
|
|
4295
|
-
return
|
|
4337
|
+
return function delete_user_credentials_google(_x1383, _x1384, _x1385) {
|
|
4338
|
+
return _ref405.apply(this, arguments);
|
|
4296
4339
|
};
|
|
4297
4340
|
}();
|
|
4298
4341
|
export var user_credentials_saml = function () {
|
|
4299
|
-
var
|
|
4342
|
+
var _ref406 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4300
4343
|
user_id = encodeParam(user_id);
|
|
4301
4344
|
return sdk.get("/users/".concat(user_id, "/credentials_saml"), {
|
|
4302
4345
|
fields
|
|
4303
4346
|
}, null, options);
|
|
4304
4347
|
});
|
|
4305
|
-
return function user_credentials_saml(
|
|
4306
|
-
return
|
|
4348
|
+
return function user_credentials_saml(_x1386, _x1387, _x1388, _x1389) {
|
|
4349
|
+
return _ref406.apply(this, arguments);
|
|
4307
4350
|
};
|
|
4308
4351
|
}();
|
|
4309
4352
|
export var delete_user_credentials_saml = function () {
|
|
4310
|
-
var
|
|
4353
|
+
var _ref407 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4311
4354
|
user_id = encodeParam(user_id);
|
|
4312
4355
|
return sdk.delete("/users/".concat(user_id, "/credentials_saml"), null, null, options);
|
|
4313
4356
|
});
|
|
4314
|
-
return function delete_user_credentials_saml(
|
|
4315
|
-
return
|
|
4357
|
+
return function delete_user_credentials_saml(_x1390, _x1391, _x1392) {
|
|
4358
|
+
return _ref407.apply(this, arguments);
|
|
4316
4359
|
};
|
|
4317
4360
|
}();
|
|
4318
4361
|
export var user_credentials_oidc = function () {
|
|
4319
|
-
var
|
|
4362
|
+
var _ref408 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4320
4363
|
user_id = encodeParam(user_id);
|
|
4321
4364
|
return sdk.get("/users/".concat(user_id, "/credentials_oidc"), {
|
|
4322
4365
|
fields
|
|
4323
4366
|
}, null, options);
|
|
4324
4367
|
});
|
|
4325
|
-
return function user_credentials_oidc(
|
|
4326
|
-
return
|
|
4368
|
+
return function user_credentials_oidc(_x1393, _x1394, _x1395, _x1396) {
|
|
4369
|
+
return _ref408.apply(this, arguments);
|
|
4327
4370
|
};
|
|
4328
4371
|
}();
|
|
4329
4372
|
export var delete_user_credentials_oidc = function () {
|
|
4330
|
-
var
|
|
4373
|
+
var _ref409 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4331
4374
|
user_id = encodeParam(user_id);
|
|
4332
4375
|
return sdk.delete("/users/".concat(user_id, "/credentials_oidc"), null, null, options);
|
|
4333
4376
|
});
|
|
4334
|
-
return function delete_user_credentials_oidc(
|
|
4335
|
-
return
|
|
4377
|
+
return function delete_user_credentials_oidc(_x1397, _x1398, _x1399) {
|
|
4378
|
+
return _ref409.apply(this, arguments);
|
|
4336
4379
|
};
|
|
4337
4380
|
}();
|
|
4338
4381
|
export var user_credentials_api3 = function () {
|
|
4339
|
-
var
|
|
4382
|
+
var _ref410 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, fields, options) {
|
|
4340
4383
|
user_id = encodeParam(user_id);
|
|
4341
4384
|
credentials_api3_id = encodeParam(credentials_api3_id);
|
|
4342
4385
|
return sdk.get("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), {
|
|
4343
4386
|
fields
|
|
4344
4387
|
}, null, options);
|
|
4345
4388
|
});
|
|
4346
|
-
return function user_credentials_api3(
|
|
4347
|
-
return
|
|
4389
|
+
return function user_credentials_api3(_x1400, _x1401, _x1402, _x1403, _x1404) {
|
|
4390
|
+
return _ref410.apply(this, arguments);
|
|
4348
4391
|
};
|
|
4349
4392
|
}();
|
|
4350
4393
|
export var delete_user_credentials_api3 = function () {
|
|
4351
|
-
var
|
|
4394
|
+
var _ref411 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, options) {
|
|
4352
4395
|
user_id = encodeParam(user_id);
|
|
4353
4396
|
credentials_api3_id = encodeParam(credentials_api3_id);
|
|
4354
4397
|
return sdk.delete("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), null, null, options);
|
|
4355
4398
|
});
|
|
4356
|
-
return function delete_user_credentials_api3(
|
|
4357
|
-
return
|
|
4399
|
+
return function delete_user_credentials_api3(_x1405, _x1406, _x1407, _x1408) {
|
|
4400
|
+
return _ref411.apply(this, arguments);
|
|
4358
4401
|
};
|
|
4359
4402
|
}();
|
|
4360
4403
|
export var all_user_credentials_api3s = function () {
|
|
4361
|
-
var
|
|
4404
|
+
var _ref412 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4362
4405
|
user_id = encodeParam(user_id);
|
|
4363
4406
|
return sdk.get("/users/".concat(user_id, "/credentials_api3"), {
|
|
4364
4407
|
fields
|
|
4365
4408
|
}, null, options);
|
|
4366
4409
|
});
|
|
4367
|
-
return function all_user_credentials_api3s(
|
|
4368
|
-
return
|
|
4410
|
+
return function all_user_credentials_api3s(_x1409, _x1410, _x1411, _x1412) {
|
|
4411
|
+
return _ref412.apply(this, arguments);
|
|
4369
4412
|
};
|
|
4370
4413
|
}();
|
|
4371
4414
|
export var create_user_credentials_api3 = function () {
|
|
4372
|
-
var
|
|
4415
|
+
var _ref413 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4373
4416
|
user_id = encodeParam(user_id);
|
|
4374
4417
|
return sdk.post("/users/".concat(user_id, "/credentials_api3"), {
|
|
4375
4418
|
fields
|
|
4376
4419
|
}, null, options);
|
|
4377
4420
|
});
|
|
4378
|
-
return function create_user_credentials_api3(
|
|
4379
|
-
return
|
|
4421
|
+
return function create_user_credentials_api3(_x1413, _x1414, _x1415, _x1416) {
|
|
4422
|
+
return _ref413.apply(this, arguments);
|
|
4380
4423
|
};
|
|
4381
4424
|
}();
|
|
4382
4425
|
export var user_credentials_embed = function () {
|
|
4383
|
-
var
|
|
4426
|
+
var _ref414 = _asyncToGenerator(function* (sdk, user_id, credentials_embed_id, fields, options) {
|
|
4384
4427
|
user_id = encodeParam(user_id);
|
|
4385
4428
|
credentials_embed_id = encodeParam(credentials_embed_id);
|
|
4386
4429
|
return sdk.get("/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), {
|
|
4387
4430
|
fields
|
|
4388
4431
|
}, null, options);
|
|
4389
4432
|
});
|
|
4390
|
-
return function user_credentials_embed(
|
|
4391
|
-
return
|
|
4433
|
+
return function user_credentials_embed(_x1417, _x1418, _x1419, _x1420, _x1421) {
|
|
4434
|
+
return _ref414.apply(this, arguments);
|
|
4392
4435
|
};
|
|
4393
4436
|
}();
|
|
4394
4437
|
export var delete_user_credentials_embed = function () {
|
|
4395
|
-
var
|
|
4438
|
+
var _ref415 = _asyncToGenerator(function* (sdk, user_id, credentials_embed_id, options) {
|
|
4396
4439
|
user_id = encodeParam(user_id);
|
|
4397
4440
|
credentials_embed_id = encodeParam(credentials_embed_id);
|
|
4398
4441
|
return sdk.delete("/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), null, null, options);
|
|
4399
4442
|
});
|
|
4400
|
-
return function delete_user_credentials_embed(
|
|
4401
|
-
return
|
|
4443
|
+
return function delete_user_credentials_embed(_x1422, _x1423, _x1424, _x1425) {
|
|
4444
|
+
return _ref415.apply(this, arguments);
|
|
4402
4445
|
};
|
|
4403
4446
|
}();
|
|
4404
4447
|
export var all_user_credentials_embeds = function () {
|
|
4405
|
-
var
|
|
4448
|
+
var _ref416 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4406
4449
|
user_id = encodeParam(user_id);
|
|
4407
4450
|
return sdk.get("/users/".concat(user_id, "/credentials_embed"), {
|
|
4408
4451
|
fields
|
|
4409
4452
|
}, null, options);
|
|
4410
4453
|
});
|
|
4411
|
-
return function all_user_credentials_embeds(
|
|
4412
|
-
return
|
|
4454
|
+
return function all_user_credentials_embeds(_x1426, _x1427, _x1428, _x1429) {
|
|
4455
|
+
return _ref416.apply(this, arguments);
|
|
4413
4456
|
};
|
|
4414
4457
|
}();
|
|
4415
4458
|
export var user_credentials_looker_openid = function () {
|
|
4416
|
-
var
|
|
4459
|
+
var _ref417 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4417
4460
|
user_id = encodeParam(user_id);
|
|
4418
4461
|
return sdk.get("/users/".concat(user_id, "/credentials_looker_openid"), {
|
|
4419
4462
|
fields
|
|
4420
4463
|
}, null, options);
|
|
4421
4464
|
});
|
|
4422
|
-
return function user_credentials_looker_openid(
|
|
4423
|
-
return
|
|
4465
|
+
return function user_credentials_looker_openid(_x1430, _x1431, _x1432, _x1433) {
|
|
4466
|
+
return _ref417.apply(this, arguments);
|
|
4424
4467
|
};
|
|
4425
4468
|
}();
|
|
4426
4469
|
export var delete_user_credentials_looker_openid = function () {
|
|
4427
|
-
var
|
|
4470
|
+
var _ref418 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4428
4471
|
user_id = encodeParam(user_id);
|
|
4429
4472
|
return sdk.delete("/users/".concat(user_id, "/credentials_looker_openid"), null, null, options);
|
|
4430
4473
|
});
|
|
4431
|
-
return function delete_user_credentials_looker_openid(
|
|
4432
|
-
return
|
|
4474
|
+
return function delete_user_credentials_looker_openid(_x1434, _x1435, _x1436) {
|
|
4475
|
+
return _ref418.apply(this, arguments);
|
|
4433
4476
|
};
|
|
4434
4477
|
}();
|
|
4435
4478
|
export var user_session = function () {
|
|
4436
|
-
var
|
|
4479
|
+
var _ref419 = _asyncToGenerator(function* (sdk, user_id, session_id, fields, options) {
|
|
4437
4480
|
user_id = encodeParam(user_id);
|
|
4438
4481
|
session_id = encodeParam(session_id);
|
|
4439
4482
|
return sdk.get("/users/".concat(user_id, "/sessions/").concat(session_id), {
|
|
4440
4483
|
fields
|
|
4441
4484
|
}, null, options);
|
|
4442
4485
|
});
|
|
4443
|
-
return function user_session(
|
|
4444
|
-
return
|
|
4486
|
+
return function user_session(_x1437, _x1438, _x1439, _x1440, _x1441) {
|
|
4487
|
+
return _ref419.apply(this, arguments);
|
|
4445
4488
|
};
|
|
4446
4489
|
}();
|
|
4447
4490
|
export var delete_user_session = function () {
|
|
4448
|
-
var
|
|
4491
|
+
var _ref420 = _asyncToGenerator(function* (sdk, user_id, session_id, options) {
|
|
4449
4492
|
user_id = encodeParam(user_id);
|
|
4450
4493
|
session_id = encodeParam(session_id);
|
|
4451
4494
|
return sdk.delete("/users/".concat(user_id, "/sessions/").concat(session_id), null, null, options);
|
|
4452
4495
|
});
|
|
4453
|
-
return function delete_user_session(
|
|
4454
|
-
return
|
|
4496
|
+
return function delete_user_session(_x1442, _x1443, _x1444, _x1445) {
|
|
4497
|
+
return _ref420.apply(this, arguments);
|
|
4455
4498
|
};
|
|
4456
4499
|
}();
|
|
4457
4500
|
export var all_user_sessions = function () {
|
|
4458
|
-
var
|
|
4501
|
+
var _ref421 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4459
4502
|
user_id = encodeParam(user_id);
|
|
4460
4503
|
return sdk.get("/users/".concat(user_id, "/sessions"), {
|
|
4461
4504
|
fields
|
|
4462
4505
|
}, null, options);
|
|
4463
4506
|
});
|
|
4464
|
-
return function all_user_sessions(
|
|
4465
|
-
return
|
|
4507
|
+
return function all_user_sessions(_x1446, _x1447, _x1448, _x1449) {
|
|
4508
|
+
return _ref421.apply(this, arguments);
|
|
4466
4509
|
};
|
|
4467
4510
|
}();
|
|
4468
4511
|
export var create_user_credentials_email_password_reset = function () {
|
|
4469
|
-
var
|
|
4512
|
+
var _ref422 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4470
4513
|
request.user_id = encodeParam(request.user_id);
|
|
4471
4514
|
return sdk.post("/users/".concat(request.user_id, "/credentials_email/password_reset"), {
|
|
4472
4515
|
expires: request.expires,
|
|
4473
4516
|
fields: request.fields
|
|
4474
4517
|
}, null, options);
|
|
4475
4518
|
});
|
|
4476
|
-
return function create_user_credentials_email_password_reset(
|
|
4477
|
-
return
|
|
4519
|
+
return function create_user_credentials_email_password_reset(_x1450, _x1451, _x1452) {
|
|
4520
|
+
return _ref422.apply(this, arguments);
|
|
4478
4521
|
};
|
|
4479
4522
|
}();
|
|
4480
4523
|
export var user_roles = function () {
|
|
4481
|
-
var
|
|
4524
|
+
var _ref423 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4482
4525
|
request.user_id = encodeParam(request.user_id);
|
|
4483
4526
|
return sdk.get("/users/".concat(request.user_id, "/roles"), {
|
|
4484
4527
|
fields: request.fields,
|
|
4485
4528
|
direct_association_only: request.direct_association_only
|
|
4486
4529
|
}, null, options);
|
|
4487
4530
|
});
|
|
4488
|
-
return function user_roles(
|
|
4489
|
-
return
|
|
4531
|
+
return function user_roles(_x1453, _x1454, _x1455) {
|
|
4532
|
+
return _ref423.apply(this, arguments);
|
|
4490
4533
|
};
|
|
4491
4534
|
}();
|
|
4492
4535
|
export var set_user_roles = function () {
|
|
4493
|
-
var
|
|
4536
|
+
var _ref424 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4494
4537
|
user_id = encodeParam(user_id);
|
|
4495
4538
|
return sdk.put("/users/".concat(user_id, "/roles"), {
|
|
4496
4539
|
fields
|
|
4497
4540
|
}, body, options);
|
|
4498
4541
|
});
|
|
4499
|
-
return function set_user_roles(
|
|
4500
|
-
return
|
|
4542
|
+
return function set_user_roles(_x1456, _x1457, _x1458, _x1459, _x1460) {
|
|
4543
|
+
return _ref424.apply(this, arguments);
|
|
4501
4544
|
};
|
|
4502
4545
|
}();
|
|
4503
4546
|
export var user_attribute_user_values = function () {
|
|
4504
|
-
var
|
|
4547
|
+
var _ref425 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4505
4548
|
request.user_id = encodeParam(request.user_id);
|
|
4506
4549
|
return sdk.get("/users/".concat(request.user_id, "/attribute_values"), {
|
|
4507
4550
|
fields: request.fields,
|
|
@@ -4510,147 +4553,147 @@ export var user_attribute_user_values = function () {
|
|
|
4510
4553
|
include_unset: request.include_unset
|
|
4511
4554
|
}, null, options);
|
|
4512
4555
|
});
|
|
4513
|
-
return function user_attribute_user_values(
|
|
4514
|
-
return
|
|
4556
|
+
return function user_attribute_user_values(_x1461, _x1462, _x1463) {
|
|
4557
|
+
return _ref425.apply(this, arguments);
|
|
4515
4558
|
};
|
|
4516
4559
|
}();
|
|
4517
4560
|
export var set_user_attribute_user_value = function () {
|
|
4518
|
-
var
|
|
4561
|
+
var _ref426 = _asyncToGenerator(function* (sdk, user_id, user_attribute_id, body, options) {
|
|
4519
4562
|
user_id = encodeParam(user_id);
|
|
4520
4563
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4521
4564
|
return sdk.patch("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
|
|
4522
4565
|
});
|
|
4523
|
-
return function set_user_attribute_user_value(
|
|
4524
|
-
return
|
|
4566
|
+
return function set_user_attribute_user_value(_x1464, _x1465, _x1466, _x1467, _x1468) {
|
|
4567
|
+
return _ref426.apply(this, arguments);
|
|
4525
4568
|
};
|
|
4526
4569
|
}();
|
|
4527
4570
|
export var delete_user_attribute_user_value = function () {
|
|
4528
|
-
var
|
|
4571
|
+
var _ref427 = _asyncToGenerator(function* (sdk, user_id, user_attribute_id, options) {
|
|
4529
4572
|
user_id = encodeParam(user_id);
|
|
4530
4573
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4531
4574
|
return sdk.delete("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
|
|
4532
4575
|
});
|
|
4533
|
-
return function delete_user_attribute_user_value(
|
|
4534
|
-
return
|
|
4576
|
+
return function delete_user_attribute_user_value(_x1469, _x1470, _x1471, _x1472) {
|
|
4577
|
+
return _ref427.apply(this, arguments);
|
|
4535
4578
|
};
|
|
4536
4579
|
}();
|
|
4537
4580
|
export var send_user_credentials_email_password_reset = function () {
|
|
4538
|
-
var
|
|
4581
|
+
var _ref428 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4539
4582
|
user_id = encodeParam(user_id);
|
|
4540
4583
|
return sdk.post("/users/".concat(user_id, "/credentials_email/send_password_reset"), {
|
|
4541
4584
|
fields
|
|
4542
4585
|
}, null, options);
|
|
4543
4586
|
});
|
|
4544
|
-
return function send_user_credentials_email_password_reset(
|
|
4545
|
-
return
|
|
4587
|
+
return function send_user_credentials_email_password_reset(_x1473, _x1474, _x1475, _x1476) {
|
|
4588
|
+
return _ref428.apply(this, arguments);
|
|
4546
4589
|
};
|
|
4547
4590
|
}();
|
|
4548
4591
|
export var wipeout_user_emails = function () {
|
|
4549
|
-
var
|
|
4592
|
+
var _ref429 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4550
4593
|
user_id = encodeParam(user_id);
|
|
4551
4594
|
return sdk.post("/users/".concat(user_id, "/update_emails"), {
|
|
4552
4595
|
fields
|
|
4553
4596
|
}, body, options);
|
|
4554
4597
|
});
|
|
4555
|
-
return function wipeout_user_emails(
|
|
4556
|
-
return
|
|
4598
|
+
return function wipeout_user_emails(_x1477, _x1478, _x1479, _x1480, _x1481) {
|
|
4599
|
+
return _ref429.apply(this, arguments);
|
|
4557
4600
|
};
|
|
4558
4601
|
}();
|
|
4559
4602
|
export var create_embed_user = function () {
|
|
4560
|
-
var
|
|
4603
|
+
var _ref430 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4561
4604
|
return sdk.post('/users/embed_user', null, body, options);
|
|
4562
4605
|
});
|
|
4563
|
-
return function create_embed_user(
|
|
4564
|
-
return
|
|
4606
|
+
return function create_embed_user(_x1482, _x1483, _x1484) {
|
|
4607
|
+
return _ref430.apply(this, arguments);
|
|
4565
4608
|
};
|
|
4566
4609
|
}();
|
|
4567
4610
|
export var all_user_attributes = function () {
|
|
4568
|
-
var
|
|
4611
|
+
var _ref431 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4569
4612
|
return sdk.get('/user_attributes', {
|
|
4570
4613
|
fields: request.fields,
|
|
4571
4614
|
sorts: request.sorts
|
|
4572
4615
|
}, null, options);
|
|
4573
4616
|
});
|
|
4574
|
-
return function all_user_attributes(
|
|
4575
|
-
return
|
|
4617
|
+
return function all_user_attributes(_x1485, _x1486, _x1487) {
|
|
4618
|
+
return _ref431.apply(this, arguments);
|
|
4576
4619
|
};
|
|
4577
4620
|
}();
|
|
4578
4621
|
export var create_user_attribute = function () {
|
|
4579
|
-
var
|
|
4622
|
+
var _ref432 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
4580
4623
|
return sdk.post('/user_attributes', {
|
|
4581
4624
|
fields
|
|
4582
4625
|
}, body, options);
|
|
4583
4626
|
});
|
|
4584
|
-
return function create_user_attribute(
|
|
4585
|
-
return
|
|
4627
|
+
return function create_user_attribute(_x1488, _x1489, _x1490, _x1491) {
|
|
4628
|
+
return _ref432.apply(this, arguments);
|
|
4586
4629
|
};
|
|
4587
4630
|
}();
|
|
4588
4631
|
export var user_attribute = function () {
|
|
4589
|
-
var
|
|
4632
|
+
var _ref433 = _asyncToGenerator(function* (sdk, user_attribute_id, fields, options) {
|
|
4590
4633
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4591
4634
|
return sdk.get("/user_attributes/".concat(user_attribute_id), {
|
|
4592
4635
|
fields
|
|
4593
4636
|
}, null, options);
|
|
4594
4637
|
});
|
|
4595
|
-
return function user_attribute(
|
|
4596
|
-
return
|
|
4638
|
+
return function user_attribute(_x1492, _x1493, _x1494, _x1495) {
|
|
4639
|
+
return _ref433.apply(this, arguments);
|
|
4597
4640
|
};
|
|
4598
4641
|
}();
|
|
4599
4642
|
export var update_user_attribute = function () {
|
|
4600
|
-
var
|
|
4643
|
+
var _ref434 = _asyncToGenerator(function* (sdk, user_attribute_id, body, fields, options) {
|
|
4601
4644
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4602
4645
|
return sdk.patch("/user_attributes/".concat(user_attribute_id), {
|
|
4603
4646
|
fields
|
|
4604
4647
|
}, body, options);
|
|
4605
4648
|
});
|
|
4606
|
-
return function update_user_attribute(
|
|
4607
|
-
return
|
|
4649
|
+
return function update_user_attribute(_x1496, _x1497, _x1498, _x1499, _x1500) {
|
|
4650
|
+
return _ref434.apply(this, arguments);
|
|
4608
4651
|
};
|
|
4609
4652
|
}();
|
|
4610
4653
|
export var delete_user_attribute = function () {
|
|
4611
|
-
var
|
|
4654
|
+
var _ref435 = _asyncToGenerator(function* (sdk, user_attribute_id, options) {
|
|
4612
4655
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4613
4656
|
return sdk.delete("/user_attributes/".concat(user_attribute_id), null, null, options);
|
|
4614
4657
|
});
|
|
4615
|
-
return function delete_user_attribute(
|
|
4616
|
-
return
|
|
4658
|
+
return function delete_user_attribute(_x1501, _x1502, _x1503) {
|
|
4659
|
+
return _ref435.apply(this, arguments);
|
|
4617
4660
|
};
|
|
4618
4661
|
}();
|
|
4619
4662
|
export var all_user_attribute_group_values = function () {
|
|
4620
|
-
var
|
|
4663
|
+
var _ref436 = _asyncToGenerator(function* (sdk, user_attribute_id, fields, options) {
|
|
4621
4664
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4622
4665
|
return sdk.get("/user_attributes/".concat(user_attribute_id, "/group_values"), {
|
|
4623
4666
|
fields
|
|
4624
4667
|
}, null, options);
|
|
4625
4668
|
});
|
|
4626
|
-
return function all_user_attribute_group_values(
|
|
4627
|
-
return
|
|
4669
|
+
return function all_user_attribute_group_values(_x1504, _x1505, _x1506, _x1507) {
|
|
4670
|
+
return _ref436.apply(this, arguments);
|
|
4628
4671
|
};
|
|
4629
4672
|
}();
|
|
4630
4673
|
export var set_user_attribute_group_values = function () {
|
|
4631
|
-
var
|
|
4674
|
+
var _ref437 = _asyncToGenerator(function* (sdk, user_attribute_id, body, options) {
|
|
4632
4675
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4633
4676
|
return sdk.post("/user_attributes/".concat(user_attribute_id, "/group_values"), null, body, options);
|
|
4634
4677
|
});
|
|
4635
|
-
return function set_user_attribute_group_values(
|
|
4636
|
-
return
|
|
4678
|
+
return function set_user_attribute_group_values(_x1508, _x1509, _x1510, _x1511) {
|
|
4679
|
+
return _ref437.apply(this, arguments);
|
|
4637
4680
|
};
|
|
4638
4681
|
}();
|
|
4639
4682
|
export var all_workspaces = function () {
|
|
4640
|
-
var
|
|
4683
|
+
var _ref438 = _asyncToGenerator(function* (sdk, options) {
|
|
4641
4684
|
return sdk.get('/workspaces', null, null, options);
|
|
4642
4685
|
});
|
|
4643
|
-
return function all_workspaces(
|
|
4644
|
-
return
|
|
4686
|
+
return function all_workspaces(_x1512, _x1513) {
|
|
4687
|
+
return _ref438.apply(this, arguments);
|
|
4645
4688
|
};
|
|
4646
4689
|
}();
|
|
4647
4690
|
export var workspace = function () {
|
|
4648
|
-
var
|
|
4691
|
+
var _ref439 = _asyncToGenerator(function* (sdk, workspace_id, options) {
|
|
4649
4692
|
workspace_id = encodeParam(workspace_id);
|
|
4650
4693
|
return sdk.get("/workspaces/".concat(workspace_id), null, null, options);
|
|
4651
4694
|
});
|
|
4652
|
-
return function workspace(
|
|
4653
|
-
return
|
|
4695
|
+
return function workspace(_x1514, _x1515, _x1516) {
|
|
4696
|
+
return _ref439.apply(this, arguments);
|
|
4654
4697
|
};
|
|
4655
4698
|
}();
|
|
4656
4699
|
//# sourceMappingURL=funcs.js.map
|