@looker/sdk 26.10.0 → 26.12.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 +7 -0
- package/lib/4.0/funcs.d.ts +8 -2
- package/lib/4.0/funcs.js +485 -424
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +8 -2
- package/lib/4.0/methods.js +329 -280
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +8 -2
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +41 -0
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +7 -1
- package/lib/4.0/streams.js +329 -280
- 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 +481 -420
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +329 -280
- 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 +329 -280
- 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 +2 -2
package/lib/esm/4.0/funcs.js
CHANGED
|
@@ -3538,37 +3538,66 @@ export var tag_ref = function () {
|
|
|
3538
3538
|
return _ref335.apply(this, arguments);
|
|
3539
3539
|
};
|
|
3540
3540
|
}();
|
|
3541
|
+
export var create_git_diagnostic_report = function () {
|
|
3542
|
+
var _ref336 = _asyncToGenerator(function* (sdk, project_id, body, options) {
|
|
3543
|
+
project_id = encodeParam(project_id);
|
|
3544
|
+
return sdk.post("/projects/".concat(project_id, "/git_diagnostic_report"), null, body, options);
|
|
3545
|
+
});
|
|
3546
|
+
return function create_git_diagnostic_report(_x1152, _x1153, _x1154, _x1155) {
|
|
3547
|
+
return _ref336.apply(this, arguments);
|
|
3548
|
+
};
|
|
3549
|
+
}();
|
|
3550
|
+
export var get_git_diagnostic_report = function () {
|
|
3551
|
+
var _ref337 = _asyncToGenerator(function* (sdk, project_id, report_id, options) {
|
|
3552
|
+
project_id = encodeParam(project_id);
|
|
3553
|
+
report_id = encodeParam(report_id);
|
|
3554
|
+
return sdk.get("/projects/".concat(project_id, "/git_diagnostic_report/").concat(report_id), null, null, options);
|
|
3555
|
+
});
|
|
3556
|
+
return function get_git_diagnostic_report(_x1156, _x1157, _x1158, _x1159) {
|
|
3557
|
+
return _ref337.apply(this, arguments);
|
|
3558
|
+
};
|
|
3559
|
+
}();
|
|
3560
|
+
export var repair_git_diagnostic_report = function () {
|
|
3561
|
+
var _ref338 = _asyncToGenerator(function* (sdk, project_id, report_id, body, options) {
|
|
3562
|
+
project_id = encodeParam(project_id);
|
|
3563
|
+
report_id = encodeParam(report_id);
|
|
3564
|
+
return sdk.post("/projects/".concat(project_id, "/git_diagnostic_report/").concat(report_id, "/repair"), null, body, options);
|
|
3565
|
+
});
|
|
3566
|
+
return function repair_git_diagnostic_report(_x1160, _x1161, _x1162, _x1163, _x1164) {
|
|
3567
|
+
return _ref338.apply(this, arguments);
|
|
3568
|
+
};
|
|
3569
|
+
}();
|
|
3541
3570
|
export var update_repository_credential = function () {
|
|
3542
|
-
var
|
|
3571
|
+
var _ref339 = _asyncToGenerator(function* (sdk, root_project_id, credential_id, body, options) {
|
|
3543
3572
|
root_project_id = encodeParam(root_project_id);
|
|
3544
3573
|
credential_id = encodeParam(credential_id);
|
|
3545
3574
|
return sdk.put("/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, body, options);
|
|
3546
3575
|
});
|
|
3547
|
-
return function update_repository_credential(
|
|
3548
|
-
return
|
|
3576
|
+
return function update_repository_credential(_x1165, _x1166, _x1167, _x1168, _x1169) {
|
|
3577
|
+
return _ref339.apply(this, arguments);
|
|
3549
3578
|
};
|
|
3550
3579
|
}();
|
|
3551
3580
|
export var delete_repository_credential = function () {
|
|
3552
|
-
var
|
|
3581
|
+
var _ref340 = _asyncToGenerator(function* (sdk, root_project_id, credential_id, options) {
|
|
3553
3582
|
root_project_id = encodeParam(root_project_id);
|
|
3554
3583
|
credential_id = encodeParam(credential_id);
|
|
3555
3584
|
return sdk.delete("/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, null, options);
|
|
3556
3585
|
});
|
|
3557
|
-
return function delete_repository_credential(
|
|
3558
|
-
return
|
|
3586
|
+
return function delete_repository_credential(_x1170, _x1171, _x1172, _x1173) {
|
|
3587
|
+
return _ref340.apply(this, arguments);
|
|
3559
3588
|
};
|
|
3560
3589
|
}();
|
|
3561
3590
|
export var get_all_repository_credentials = function () {
|
|
3562
|
-
var
|
|
3591
|
+
var _ref341 = _asyncToGenerator(function* (sdk, root_project_id, options) {
|
|
3563
3592
|
root_project_id = encodeParam(root_project_id);
|
|
3564
3593
|
return sdk.get("/projects/".concat(root_project_id, "/credentials"), null, null, options);
|
|
3565
3594
|
});
|
|
3566
|
-
return function get_all_repository_credentials(
|
|
3567
|
-
return
|
|
3595
|
+
return function get_all_repository_credentials(_x1174, _x1175, _x1176) {
|
|
3596
|
+
return _ref341.apply(this, arguments);
|
|
3568
3597
|
};
|
|
3569
3598
|
}();
|
|
3570
3599
|
export var create_query_task = function () {
|
|
3571
|
-
var
|
|
3600
|
+
var _ref342 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3572
3601
|
return sdk.post('/query_tasks', {
|
|
3573
3602
|
limit: request.limit,
|
|
3574
3603
|
apply_formatting: request.apply_formatting,
|
|
@@ -3583,74 +3612,74 @@ export var create_query_task = function () {
|
|
|
3583
3612
|
fields: request.fields
|
|
3584
3613
|
}, request.body, options);
|
|
3585
3614
|
});
|
|
3586
|
-
return function create_query_task(
|
|
3587
|
-
return
|
|
3615
|
+
return function create_query_task(_x1177, _x1178, _x1179) {
|
|
3616
|
+
return _ref342.apply(this, arguments);
|
|
3588
3617
|
};
|
|
3589
3618
|
}();
|
|
3590
3619
|
export var query_task_multi_results = function () {
|
|
3591
|
-
var
|
|
3620
|
+
var _ref343 = _asyncToGenerator(function* (sdk, query_task_ids, options) {
|
|
3592
3621
|
return sdk.get('/query_tasks/multi_results', {
|
|
3593
3622
|
query_task_ids
|
|
3594
3623
|
}, null, options);
|
|
3595
3624
|
});
|
|
3596
|
-
return function query_task_multi_results(
|
|
3597
|
-
return
|
|
3625
|
+
return function query_task_multi_results(_x1180, _x1181, _x1182) {
|
|
3626
|
+
return _ref343.apply(this, arguments);
|
|
3598
3627
|
};
|
|
3599
3628
|
}();
|
|
3600
3629
|
export var query_task = function () {
|
|
3601
|
-
var
|
|
3630
|
+
var _ref344 = _asyncToGenerator(function* (sdk, query_task_id, fields, options) {
|
|
3602
3631
|
query_task_id = encodeParam(query_task_id);
|
|
3603
3632
|
return sdk.get("/query_tasks/".concat(query_task_id), {
|
|
3604
3633
|
fields
|
|
3605
3634
|
}, null, options);
|
|
3606
3635
|
});
|
|
3607
|
-
return function query_task(
|
|
3608
|
-
return
|
|
3636
|
+
return function query_task(_x1183, _x1184, _x1185, _x1186) {
|
|
3637
|
+
return _ref344.apply(this, arguments);
|
|
3609
3638
|
};
|
|
3610
3639
|
}();
|
|
3611
3640
|
export var query_task_results = function () {
|
|
3612
|
-
var
|
|
3641
|
+
var _ref345 = _asyncToGenerator(function* (sdk, query_task_id, options) {
|
|
3613
3642
|
query_task_id = encodeParam(query_task_id);
|
|
3614
3643
|
return sdk.get("/query_tasks/".concat(query_task_id, "/results"), null, null, options);
|
|
3615
3644
|
});
|
|
3616
|
-
return function query_task_results(
|
|
3617
|
-
return
|
|
3645
|
+
return function query_task_results(_x1187, _x1188, _x1189) {
|
|
3646
|
+
return _ref345.apply(this, arguments);
|
|
3618
3647
|
};
|
|
3619
3648
|
}();
|
|
3620
3649
|
export var query = function () {
|
|
3621
|
-
var
|
|
3650
|
+
var _ref346 = _asyncToGenerator(function* (sdk, query_id, fields, options) {
|
|
3622
3651
|
query_id = encodeParam(query_id);
|
|
3623
3652
|
return sdk.get("/queries/".concat(query_id), {
|
|
3624
3653
|
fields
|
|
3625
3654
|
}, null, options);
|
|
3626
3655
|
});
|
|
3627
|
-
return function query(
|
|
3628
|
-
return
|
|
3656
|
+
return function query(_x1190, _x1191, _x1192, _x1193) {
|
|
3657
|
+
return _ref346.apply(this, arguments);
|
|
3629
3658
|
};
|
|
3630
3659
|
}();
|
|
3631
3660
|
export var query_for_slug = function () {
|
|
3632
|
-
var
|
|
3661
|
+
var _ref347 = _asyncToGenerator(function* (sdk, slug, fields, options) {
|
|
3633
3662
|
slug = encodeParam(slug);
|
|
3634
3663
|
return sdk.get("/queries/slug/".concat(slug), {
|
|
3635
3664
|
fields
|
|
3636
3665
|
}, null, options);
|
|
3637
3666
|
});
|
|
3638
|
-
return function query_for_slug(
|
|
3639
|
-
return
|
|
3667
|
+
return function query_for_slug(_x1194, _x1195, _x1196, _x1197) {
|
|
3668
|
+
return _ref347.apply(this, arguments);
|
|
3640
3669
|
};
|
|
3641
3670
|
}();
|
|
3642
3671
|
export var create_query = function () {
|
|
3643
|
-
var
|
|
3672
|
+
var _ref348 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
3644
3673
|
return sdk.post('/queries', {
|
|
3645
3674
|
fields
|
|
3646
3675
|
}, body, options);
|
|
3647
3676
|
});
|
|
3648
|
-
return function create_query(
|
|
3649
|
-
return
|
|
3677
|
+
return function create_query(_x1198, _x1199, _x1200, _x1201) {
|
|
3678
|
+
return _ref348.apply(this, arguments);
|
|
3650
3679
|
};
|
|
3651
3680
|
}();
|
|
3652
3681
|
export var run_query = function () {
|
|
3653
|
-
var
|
|
3682
|
+
var _ref349 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3654
3683
|
request.query_id = encodeParam(request.query_id);
|
|
3655
3684
|
request.result_format = encodeParam(request.result_format);
|
|
3656
3685
|
return sdk.get("/queries/".concat(request.query_id, "/run/").concat(request.result_format), {
|
|
@@ -3668,12 +3697,12 @@ export var run_query = function () {
|
|
|
3668
3697
|
server_table_calcs: request.server_table_calcs
|
|
3669
3698
|
}, null, options);
|
|
3670
3699
|
});
|
|
3671
|
-
return function run_query(
|
|
3672
|
-
return
|
|
3700
|
+
return function run_query(_x1202, _x1203, _x1204) {
|
|
3701
|
+
return _ref349.apply(this, arguments);
|
|
3673
3702
|
};
|
|
3674
3703
|
}();
|
|
3675
3704
|
export var run_inline_query = function () {
|
|
3676
|
-
var
|
|
3705
|
+
var _ref350 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3677
3706
|
request.result_format = encodeParam(request.result_format);
|
|
3678
3707
|
return sdk.post("/queries/run/".concat(request.result_format), {
|
|
3679
3708
|
limit: request.limit,
|
|
@@ -3690,90 +3719,90 @@ export var run_inline_query = function () {
|
|
|
3690
3719
|
server_table_calcs: request.server_table_calcs
|
|
3691
3720
|
}, request.body, options);
|
|
3692
3721
|
});
|
|
3693
|
-
return function run_inline_query(
|
|
3694
|
-
return
|
|
3722
|
+
return function run_inline_query(_x1205, _x1206, _x1207) {
|
|
3723
|
+
return _ref350.apply(this, arguments);
|
|
3695
3724
|
};
|
|
3696
3725
|
}();
|
|
3697
3726
|
export var run_url_encoded_query = function () {
|
|
3698
|
-
var
|
|
3727
|
+
var _ref351 = _asyncToGenerator(function* (sdk, model_name, view_name, result_format, options) {
|
|
3699
3728
|
model_name = encodeParam(model_name);
|
|
3700
3729
|
view_name = encodeParam(view_name);
|
|
3701
3730
|
result_format = encodeParam(result_format);
|
|
3702
3731
|
return sdk.get("/queries/models/".concat(model_name, "/views/").concat(view_name, "/run/").concat(result_format), null, null, options);
|
|
3703
3732
|
});
|
|
3704
|
-
return function run_url_encoded_query(
|
|
3705
|
-
return
|
|
3733
|
+
return function run_url_encoded_query(_x1208, _x1209, _x1210, _x1211, _x1212) {
|
|
3734
|
+
return _ref351.apply(this, arguments);
|
|
3706
3735
|
};
|
|
3707
3736
|
}();
|
|
3708
3737
|
export var merge_query = function () {
|
|
3709
|
-
var
|
|
3738
|
+
var _ref352 = _asyncToGenerator(function* (sdk, merge_query_id, fields, options) {
|
|
3710
3739
|
merge_query_id = encodeParam(merge_query_id);
|
|
3711
3740
|
return sdk.get("/merge_queries/".concat(merge_query_id), {
|
|
3712
3741
|
fields
|
|
3713
3742
|
}, null, options);
|
|
3714
3743
|
});
|
|
3715
|
-
return function merge_query(
|
|
3716
|
-
return
|
|
3744
|
+
return function merge_query(_x1213, _x1214, _x1215, _x1216) {
|
|
3745
|
+
return _ref352.apply(this, arguments);
|
|
3717
3746
|
};
|
|
3718
3747
|
}();
|
|
3719
3748
|
export var create_merge_query = function () {
|
|
3720
|
-
var
|
|
3749
|
+
var _ref353 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
3721
3750
|
return sdk.post('/merge_queries', {
|
|
3722
3751
|
fields
|
|
3723
3752
|
}, body, options);
|
|
3724
3753
|
});
|
|
3725
|
-
return function create_merge_query(
|
|
3726
|
-
return
|
|
3754
|
+
return function create_merge_query(_x1217, _x1218, _x1219, _x1220) {
|
|
3755
|
+
return _ref353.apply(this, arguments);
|
|
3727
3756
|
};
|
|
3728
3757
|
}();
|
|
3729
3758
|
export var all_running_queries = function () {
|
|
3730
|
-
var
|
|
3759
|
+
var _ref354 = _asyncToGenerator(function* (sdk, options) {
|
|
3731
3760
|
return sdk.get('/running_queries', null, null, options);
|
|
3732
3761
|
});
|
|
3733
|
-
return function all_running_queries(
|
|
3734
|
-
return
|
|
3762
|
+
return function all_running_queries(_x1221, _x1222) {
|
|
3763
|
+
return _ref354.apply(this, arguments);
|
|
3735
3764
|
};
|
|
3736
3765
|
}();
|
|
3737
3766
|
export var kill_query = function () {
|
|
3738
|
-
var
|
|
3767
|
+
var _ref355 = _asyncToGenerator(function* (sdk, query_task_id, options) {
|
|
3739
3768
|
query_task_id = encodeParam(query_task_id);
|
|
3740
3769
|
return sdk.delete("/running_queries/".concat(query_task_id), null, null, options);
|
|
3741
3770
|
});
|
|
3742
|
-
return function kill_query(
|
|
3743
|
-
return
|
|
3771
|
+
return function kill_query(_x1223, _x1224, _x1225) {
|
|
3772
|
+
return _ref355.apply(this, arguments);
|
|
3744
3773
|
};
|
|
3745
3774
|
}();
|
|
3746
3775
|
export var create_sql_query = function () {
|
|
3747
|
-
var
|
|
3776
|
+
var _ref356 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3748
3777
|
return sdk.post('/sql_queries', null, body, options);
|
|
3749
3778
|
});
|
|
3750
|
-
return function create_sql_query(
|
|
3751
|
-
return
|
|
3779
|
+
return function create_sql_query(_x1226, _x1227, _x1228) {
|
|
3780
|
+
return _ref356.apply(this, arguments);
|
|
3752
3781
|
};
|
|
3753
3782
|
}();
|
|
3754
3783
|
export var sql_query = function () {
|
|
3755
|
-
var
|
|
3784
|
+
var _ref357 = _asyncToGenerator(function* (sdk, slug, options) {
|
|
3756
3785
|
slug = encodeParam(slug);
|
|
3757
3786
|
return sdk.get("/sql_queries/".concat(slug), null, null, options);
|
|
3758
3787
|
});
|
|
3759
|
-
return function sql_query(
|
|
3760
|
-
return
|
|
3788
|
+
return function sql_query(_x1229, _x1230, _x1231) {
|
|
3789
|
+
return _ref357.apply(this, arguments);
|
|
3761
3790
|
};
|
|
3762
3791
|
}();
|
|
3763
3792
|
export var run_sql_query = function () {
|
|
3764
|
-
var
|
|
3793
|
+
var _ref358 = _asyncToGenerator(function* (sdk, slug, result_format, download, options) {
|
|
3765
3794
|
slug = encodeParam(slug);
|
|
3766
3795
|
result_format = encodeParam(result_format);
|
|
3767
3796
|
return sdk.post("/sql_queries/".concat(slug, "/run/").concat(result_format), {
|
|
3768
3797
|
download
|
|
3769
3798
|
}, null, options);
|
|
3770
3799
|
});
|
|
3771
|
-
return function run_sql_query(
|
|
3772
|
-
return
|
|
3800
|
+
return function run_sql_query(_x1232, _x1233, _x1234, _x1235, _x1236) {
|
|
3801
|
+
return _ref358.apply(this, arguments);
|
|
3773
3802
|
};
|
|
3774
3803
|
}();
|
|
3775
3804
|
export var create_look_render_task = function () {
|
|
3776
|
-
var
|
|
3805
|
+
var _ref359 = _asyncToGenerator(function* (sdk, look_id, result_format, width, height, fields, options) {
|
|
3777
3806
|
look_id = encodeParam(look_id);
|
|
3778
3807
|
result_format = encodeParam(result_format);
|
|
3779
3808
|
return sdk.post("/render_tasks/looks/".concat(look_id, "/").concat(result_format), {
|
|
@@ -3782,12 +3811,12 @@ export var create_look_render_task = function () {
|
|
|
3782
3811
|
fields
|
|
3783
3812
|
}, null, options);
|
|
3784
3813
|
});
|
|
3785
|
-
return function create_look_render_task(
|
|
3786
|
-
return
|
|
3814
|
+
return function create_look_render_task(_x1237, _x1238, _x1239, _x1240, _x1241, _x1242, _x1243) {
|
|
3815
|
+
return _ref359.apply(this, arguments);
|
|
3787
3816
|
};
|
|
3788
3817
|
}();
|
|
3789
3818
|
export var create_query_render_task = function () {
|
|
3790
|
-
var
|
|
3819
|
+
var _ref360 = _asyncToGenerator(function* (sdk, query_id, result_format, width, height, fields, options) {
|
|
3791
3820
|
query_id = encodeParam(query_id);
|
|
3792
3821
|
result_format = encodeParam(result_format);
|
|
3793
3822
|
return sdk.post("/render_tasks/queries/".concat(query_id, "/").concat(result_format), {
|
|
@@ -3796,12 +3825,12 @@ export var create_query_render_task = function () {
|
|
|
3796
3825
|
fields
|
|
3797
3826
|
}, null, options);
|
|
3798
3827
|
});
|
|
3799
|
-
return function create_query_render_task(
|
|
3800
|
-
return
|
|
3828
|
+
return function create_query_render_task(_x1244, _x1245, _x1246, _x1247, _x1248, _x1249, _x1250) {
|
|
3829
|
+
return _ref360.apply(this, arguments);
|
|
3801
3830
|
};
|
|
3802
3831
|
}();
|
|
3803
3832
|
export var create_dashboard_render_task = function () {
|
|
3804
|
-
var
|
|
3833
|
+
var _ref361 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3805
3834
|
request.dashboard_id = encodeParam(request.dashboard_id);
|
|
3806
3835
|
request.result_format = encodeParam(request.result_format);
|
|
3807
3836
|
return sdk.post("/render_tasks/dashboards/".concat(request.dashboard_id, "/").concat(request.result_format), {
|
|
@@ -3814,32 +3843,32 @@ export var create_dashboard_render_task = function () {
|
|
|
3814
3843
|
theme: request.theme
|
|
3815
3844
|
}, request.body, options);
|
|
3816
3845
|
});
|
|
3817
|
-
return function create_dashboard_render_task(
|
|
3818
|
-
return
|
|
3846
|
+
return function create_dashboard_render_task(_x1251, _x1252, _x1253) {
|
|
3847
|
+
return _ref361.apply(this, arguments);
|
|
3819
3848
|
};
|
|
3820
3849
|
}();
|
|
3821
3850
|
export var render_task = function () {
|
|
3822
|
-
var
|
|
3851
|
+
var _ref362 = _asyncToGenerator(function* (sdk, render_task_id, fields, options) {
|
|
3823
3852
|
render_task_id = encodeParam(render_task_id);
|
|
3824
3853
|
return sdk.get("/render_tasks/".concat(render_task_id), {
|
|
3825
3854
|
fields
|
|
3826
3855
|
}, null, options);
|
|
3827
3856
|
});
|
|
3828
|
-
return function render_task(
|
|
3829
|
-
return
|
|
3857
|
+
return function render_task(_x1254, _x1255, _x1256, _x1257) {
|
|
3858
|
+
return _ref362.apply(this, arguments);
|
|
3830
3859
|
};
|
|
3831
3860
|
}();
|
|
3832
3861
|
export var render_task_results = function () {
|
|
3833
|
-
var
|
|
3862
|
+
var _ref363 = _asyncToGenerator(function* (sdk, render_task_id, options) {
|
|
3834
3863
|
render_task_id = encodeParam(render_task_id);
|
|
3835
3864
|
return sdk.get("/render_tasks/".concat(render_task_id, "/results"), null, null, options);
|
|
3836
3865
|
});
|
|
3837
|
-
return function render_task_results(
|
|
3838
|
-
return
|
|
3866
|
+
return function render_task_results(_x1258, _x1259, _x1260) {
|
|
3867
|
+
return _ref363.apply(this, arguments);
|
|
3839
3868
|
};
|
|
3840
3869
|
}();
|
|
3841
3870
|
export var create_dashboard_element_render_task = function () {
|
|
3842
|
-
var
|
|
3871
|
+
var _ref364 = _asyncToGenerator(function* (sdk, dashboard_element_id, result_format, width, height, fields, options) {
|
|
3843
3872
|
dashboard_element_id = encodeParam(dashboard_element_id);
|
|
3844
3873
|
result_format = encodeParam(result_format);
|
|
3845
3874
|
return sdk.post("/render_tasks/dashboard_elements/".concat(dashboard_element_id, "/").concat(result_format), {
|
|
@@ -3848,12 +3877,12 @@ export var create_dashboard_element_render_task = function () {
|
|
|
3848
3877
|
fields
|
|
3849
3878
|
}, null, options);
|
|
3850
3879
|
});
|
|
3851
|
-
return function create_dashboard_element_render_task(
|
|
3852
|
-
return
|
|
3880
|
+
return function create_dashboard_element_render_task(_x1261, _x1262, _x1263, _x1264, _x1265, _x1266, _x1267) {
|
|
3881
|
+
return _ref364.apply(this, arguments);
|
|
3853
3882
|
};
|
|
3854
3883
|
}();
|
|
3855
3884
|
export var search_reports = function () {
|
|
3856
|
-
var
|
|
3885
|
+
var _ref365 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3857
3886
|
return sdk.get('/reports/search', {
|
|
3858
3887
|
folder_id: request.folder_id,
|
|
3859
3888
|
favorite: request.favorite,
|
|
@@ -3866,12 +3895,12 @@ export var search_reports = function () {
|
|
|
3866
3895
|
next_page_token: request.next_page_token
|
|
3867
3896
|
}, null, options);
|
|
3868
3897
|
});
|
|
3869
|
-
return function search_reports(
|
|
3870
|
-
return
|
|
3898
|
+
return function search_reports(_x1268, _x1269, _x1270) {
|
|
3899
|
+
return _ref365.apply(this, arguments);
|
|
3871
3900
|
};
|
|
3872
3901
|
}();
|
|
3873
3902
|
export var search_model_sets = function () {
|
|
3874
|
-
var
|
|
3903
|
+
var _ref366 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3875
3904
|
return sdk.get('/model_sets/search', {
|
|
3876
3905
|
fields: request.fields,
|
|
3877
3906
|
limit: request.limit,
|
|
@@ -3885,67 +3914,67 @@ export var search_model_sets = function () {
|
|
|
3885
3914
|
models: request.models
|
|
3886
3915
|
}, null, options);
|
|
3887
3916
|
});
|
|
3888
|
-
return function search_model_sets(
|
|
3889
|
-
return
|
|
3917
|
+
return function search_model_sets(_x1271, _x1272, _x1273) {
|
|
3918
|
+
return _ref366.apply(this, arguments);
|
|
3890
3919
|
};
|
|
3891
3920
|
}();
|
|
3892
3921
|
export var model_set = function () {
|
|
3893
|
-
var
|
|
3922
|
+
var _ref367 = _asyncToGenerator(function* (sdk, model_set_id, fields, options) {
|
|
3894
3923
|
model_set_id = encodeParam(model_set_id);
|
|
3895
3924
|
return sdk.get("/model_sets/".concat(model_set_id), {
|
|
3896
3925
|
fields
|
|
3897
3926
|
}, null, options);
|
|
3898
3927
|
});
|
|
3899
|
-
return function model_set(
|
|
3900
|
-
return
|
|
3928
|
+
return function model_set(_x1274, _x1275, _x1276, _x1277) {
|
|
3929
|
+
return _ref367.apply(this, arguments);
|
|
3901
3930
|
};
|
|
3902
3931
|
}();
|
|
3903
3932
|
export var update_model_set = function () {
|
|
3904
|
-
var
|
|
3933
|
+
var _ref368 = _asyncToGenerator(function* (sdk, model_set_id, body, options) {
|
|
3905
3934
|
model_set_id = encodeParam(model_set_id);
|
|
3906
3935
|
return sdk.patch("/model_sets/".concat(model_set_id), null, body, options);
|
|
3907
3936
|
});
|
|
3908
|
-
return function update_model_set(
|
|
3909
|
-
return
|
|
3937
|
+
return function update_model_set(_x1278, _x1279, _x1280, _x1281) {
|
|
3938
|
+
return _ref368.apply(this, arguments);
|
|
3910
3939
|
};
|
|
3911
3940
|
}();
|
|
3912
3941
|
export var delete_model_set = function () {
|
|
3913
|
-
var
|
|
3942
|
+
var _ref369 = _asyncToGenerator(function* (sdk, model_set_id, options) {
|
|
3914
3943
|
model_set_id = encodeParam(model_set_id);
|
|
3915
3944
|
return sdk.delete("/model_sets/".concat(model_set_id), null, null, options);
|
|
3916
3945
|
});
|
|
3917
|
-
return function delete_model_set(
|
|
3918
|
-
return
|
|
3946
|
+
return function delete_model_set(_x1282, _x1283, _x1284) {
|
|
3947
|
+
return _ref369.apply(this, arguments);
|
|
3919
3948
|
};
|
|
3920
3949
|
}();
|
|
3921
3950
|
export var all_model_sets = function () {
|
|
3922
|
-
var
|
|
3951
|
+
var _ref370 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3923
3952
|
return sdk.get('/model_sets', {
|
|
3924
3953
|
fields
|
|
3925
3954
|
}, null, options);
|
|
3926
3955
|
});
|
|
3927
|
-
return function all_model_sets(
|
|
3928
|
-
return
|
|
3956
|
+
return function all_model_sets(_x1285, _x1286, _x1287) {
|
|
3957
|
+
return _ref370.apply(this, arguments);
|
|
3929
3958
|
};
|
|
3930
3959
|
}();
|
|
3931
3960
|
export var create_model_set = function () {
|
|
3932
|
-
var
|
|
3961
|
+
var _ref371 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3933
3962
|
return sdk.post('/model_sets', null, body, options);
|
|
3934
3963
|
});
|
|
3935
|
-
return function create_model_set(
|
|
3936
|
-
return
|
|
3964
|
+
return function create_model_set(_x1288, _x1289, _x1290) {
|
|
3965
|
+
return _ref371.apply(this, arguments);
|
|
3937
3966
|
};
|
|
3938
3967
|
}();
|
|
3939
3968
|
export var all_permissions = function () {
|
|
3940
|
-
var
|
|
3969
|
+
var _ref372 = _asyncToGenerator(function* (sdk, options) {
|
|
3941
3970
|
return sdk.get('/permissions', null, null, options);
|
|
3942
3971
|
});
|
|
3943
|
-
return function all_permissions(
|
|
3944
|
-
return
|
|
3972
|
+
return function all_permissions(_x1291, _x1292) {
|
|
3973
|
+
return _ref372.apply(this, arguments);
|
|
3945
3974
|
};
|
|
3946
3975
|
}();
|
|
3947
3976
|
export var search_permission_sets = function () {
|
|
3948
|
-
var
|
|
3977
|
+
var _ref373 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3949
3978
|
return sdk.get('/permission_sets/search', {
|
|
3950
3979
|
fields: request.fields,
|
|
3951
3980
|
limit: request.limit,
|
|
@@ -3959,79 +3988,79 @@ export var search_permission_sets = function () {
|
|
|
3959
3988
|
permissions: request.permissions
|
|
3960
3989
|
}, null, options);
|
|
3961
3990
|
});
|
|
3962
|
-
return function search_permission_sets(
|
|
3963
|
-
return
|
|
3991
|
+
return function search_permission_sets(_x1293, _x1294, _x1295) {
|
|
3992
|
+
return _ref373.apply(this, arguments);
|
|
3964
3993
|
};
|
|
3965
3994
|
}();
|
|
3966
3995
|
export var permission_set = function () {
|
|
3967
|
-
var
|
|
3996
|
+
var _ref374 = _asyncToGenerator(function* (sdk, permission_set_id, fields, options) {
|
|
3968
3997
|
permission_set_id = encodeParam(permission_set_id);
|
|
3969
3998
|
return sdk.get("/permission_sets/".concat(permission_set_id), {
|
|
3970
3999
|
fields
|
|
3971
4000
|
}, null, options);
|
|
3972
4001
|
});
|
|
3973
|
-
return function permission_set(
|
|
3974
|
-
return
|
|
4002
|
+
return function permission_set(_x1296, _x1297, _x1298, _x1299) {
|
|
4003
|
+
return _ref374.apply(this, arguments);
|
|
3975
4004
|
};
|
|
3976
4005
|
}();
|
|
3977
4006
|
export var update_permission_set = function () {
|
|
3978
|
-
var
|
|
4007
|
+
var _ref375 = _asyncToGenerator(function* (sdk, permission_set_id, body, options) {
|
|
3979
4008
|
permission_set_id = encodeParam(permission_set_id);
|
|
3980
4009
|
return sdk.patch("/permission_sets/".concat(permission_set_id), null, body, options);
|
|
3981
4010
|
});
|
|
3982
|
-
return function update_permission_set(
|
|
3983
|
-
return
|
|
4011
|
+
return function update_permission_set(_x1300, _x1301, _x1302, _x1303) {
|
|
4012
|
+
return _ref375.apply(this, arguments);
|
|
3984
4013
|
};
|
|
3985
4014
|
}();
|
|
3986
4015
|
export var delete_permission_set = function () {
|
|
3987
|
-
var
|
|
4016
|
+
var _ref376 = _asyncToGenerator(function* (sdk, permission_set_id, options) {
|
|
3988
4017
|
permission_set_id = encodeParam(permission_set_id);
|
|
3989
4018
|
return sdk.delete("/permission_sets/".concat(permission_set_id), null, null, options);
|
|
3990
4019
|
});
|
|
3991
|
-
return function delete_permission_set(
|
|
3992
|
-
return
|
|
4020
|
+
return function delete_permission_set(_x1304, _x1305, _x1306) {
|
|
4021
|
+
return _ref376.apply(this, arguments);
|
|
3993
4022
|
};
|
|
3994
4023
|
}();
|
|
3995
4024
|
export var all_permission_sets = function () {
|
|
3996
|
-
var
|
|
4025
|
+
var _ref377 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3997
4026
|
return sdk.get('/permission_sets', {
|
|
3998
4027
|
fields
|
|
3999
4028
|
}, null, options);
|
|
4000
4029
|
});
|
|
4001
|
-
return function all_permission_sets(
|
|
4002
|
-
return
|
|
4030
|
+
return function all_permission_sets(_x1307, _x1308, _x1309) {
|
|
4031
|
+
return _ref377.apply(this, arguments);
|
|
4003
4032
|
};
|
|
4004
4033
|
}();
|
|
4005
4034
|
export var create_permission_set = function () {
|
|
4006
|
-
var
|
|
4035
|
+
var _ref378 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4007
4036
|
return sdk.post('/permission_sets', null, body, options);
|
|
4008
4037
|
});
|
|
4009
|
-
return function create_permission_set(
|
|
4010
|
-
return
|
|
4038
|
+
return function create_permission_set(_x1310, _x1311, _x1312) {
|
|
4039
|
+
return _ref378.apply(this, arguments);
|
|
4011
4040
|
};
|
|
4012
4041
|
}();
|
|
4013
4042
|
export var all_roles = function () {
|
|
4014
|
-
var
|
|
4043
|
+
var _ref379 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4015
4044
|
return sdk.get('/roles', {
|
|
4016
4045
|
fields: request.fields,
|
|
4017
4046
|
ids: request.ids,
|
|
4018
4047
|
get_all_support_roles: request.get_all_support_roles
|
|
4019
4048
|
}, null, options);
|
|
4020
4049
|
});
|
|
4021
|
-
return function all_roles(
|
|
4022
|
-
return
|
|
4050
|
+
return function all_roles(_x1313, _x1314, _x1315) {
|
|
4051
|
+
return _ref379.apply(this, arguments);
|
|
4023
4052
|
};
|
|
4024
4053
|
}();
|
|
4025
4054
|
export var create_role = function () {
|
|
4026
|
-
var
|
|
4055
|
+
var _ref380 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4027
4056
|
return sdk.post('/roles', null, body, options);
|
|
4028
4057
|
});
|
|
4029
|
-
return function create_role(
|
|
4030
|
-
return
|
|
4058
|
+
return function create_role(_x1316, _x1317, _x1318) {
|
|
4059
|
+
return _ref380.apply(this, arguments);
|
|
4031
4060
|
};
|
|
4032
4061
|
}();
|
|
4033
4062
|
export var search_roles = function () {
|
|
4034
|
-
var
|
|
4063
|
+
var _ref381 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4035
4064
|
return sdk.get('/roles/search', {
|
|
4036
4065
|
fields: request.fields,
|
|
4037
4066
|
limit: request.limit,
|
|
@@ -4045,12 +4074,12 @@ export var search_roles = function () {
|
|
|
4045
4074
|
filter_or: request.filter_or
|
|
4046
4075
|
}, null, options);
|
|
4047
4076
|
});
|
|
4048
|
-
return function search_roles(
|
|
4049
|
-
return
|
|
4077
|
+
return function search_roles(_x1319, _x1320, _x1321) {
|
|
4078
|
+
return _ref381.apply(this, arguments);
|
|
4050
4079
|
};
|
|
4051
4080
|
}();
|
|
4052
4081
|
export var search_roles_with_user_count = function () {
|
|
4053
|
-
var
|
|
4082
|
+
var _ref382 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4054
4083
|
return sdk.get('/roles/search/with_user_count', {
|
|
4055
4084
|
fields: request.fields,
|
|
4056
4085
|
limit: request.limit,
|
|
@@ -4062,148 +4091,148 @@ export var search_roles_with_user_count = function () {
|
|
|
4062
4091
|
filter_or: request.filter_or
|
|
4063
4092
|
}, null, options);
|
|
4064
4093
|
});
|
|
4065
|
-
return function search_roles_with_user_count(
|
|
4066
|
-
return
|
|
4094
|
+
return function search_roles_with_user_count(_x1322, _x1323, _x1324) {
|
|
4095
|
+
return _ref382.apply(this, arguments);
|
|
4067
4096
|
};
|
|
4068
4097
|
}();
|
|
4069
4098
|
export var role = function () {
|
|
4070
|
-
var
|
|
4099
|
+
var _ref383 = _asyncToGenerator(function* (sdk, role_id, options) {
|
|
4071
4100
|
role_id = encodeParam(role_id);
|
|
4072
4101
|
return sdk.get("/roles/".concat(role_id), null, null, options);
|
|
4073
4102
|
});
|
|
4074
|
-
return function role(
|
|
4075
|
-
return
|
|
4103
|
+
return function role(_x1325, _x1326, _x1327) {
|
|
4104
|
+
return _ref383.apply(this, arguments);
|
|
4076
4105
|
};
|
|
4077
4106
|
}();
|
|
4078
4107
|
export var update_role = function () {
|
|
4079
|
-
var
|
|
4108
|
+
var _ref384 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
4080
4109
|
role_id = encodeParam(role_id);
|
|
4081
4110
|
return sdk.patch("/roles/".concat(role_id), null, body, options);
|
|
4082
4111
|
});
|
|
4083
|
-
return function update_role(
|
|
4084
|
-
return
|
|
4112
|
+
return function update_role(_x1328, _x1329, _x1330, _x1331) {
|
|
4113
|
+
return _ref384.apply(this, arguments);
|
|
4085
4114
|
};
|
|
4086
4115
|
}();
|
|
4087
4116
|
export var delete_role = function () {
|
|
4088
|
-
var
|
|
4117
|
+
var _ref385 = _asyncToGenerator(function* (sdk, role_id, options) {
|
|
4089
4118
|
role_id = encodeParam(role_id);
|
|
4090
4119
|
return sdk.delete("/roles/".concat(role_id), null, null, options);
|
|
4091
4120
|
});
|
|
4092
|
-
return function delete_role(
|
|
4093
|
-
return
|
|
4121
|
+
return function delete_role(_x1332, _x1333, _x1334) {
|
|
4122
|
+
return _ref385.apply(this, arguments);
|
|
4094
4123
|
};
|
|
4095
4124
|
}();
|
|
4096
4125
|
export var role_groups = function () {
|
|
4097
|
-
var
|
|
4126
|
+
var _ref386 = _asyncToGenerator(function* (sdk, role_id, fields, options) {
|
|
4098
4127
|
role_id = encodeParam(role_id);
|
|
4099
4128
|
return sdk.get("/roles/".concat(role_id, "/groups"), {
|
|
4100
4129
|
fields
|
|
4101
4130
|
}, null, options);
|
|
4102
4131
|
});
|
|
4103
|
-
return function role_groups(
|
|
4104
|
-
return
|
|
4132
|
+
return function role_groups(_x1335, _x1336, _x1337, _x1338) {
|
|
4133
|
+
return _ref386.apply(this, arguments);
|
|
4105
4134
|
};
|
|
4106
4135
|
}();
|
|
4107
4136
|
export var set_role_groups = function () {
|
|
4108
|
-
var
|
|
4137
|
+
var _ref387 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
4109
4138
|
role_id = encodeParam(role_id);
|
|
4110
4139
|
return sdk.put("/roles/".concat(role_id, "/groups"), null, body, options);
|
|
4111
4140
|
});
|
|
4112
|
-
return function set_role_groups(
|
|
4113
|
-
return
|
|
4141
|
+
return function set_role_groups(_x1339, _x1340, _x1341, _x1342) {
|
|
4142
|
+
return _ref387.apply(this, arguments);
|
|
4114
4143
|
};
|
|
4115
4144
|
}();
|
|
4116
4145
|
export var role_users = function () {
|
|
4117
|
-
var
|
|
4146
|
+
var _ref388 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4118
4147
|
request.role_id = encodeParam(request.role_id);
|
|
4119
4148
|
return sdk.get("/roles/".concat(request.role_id, "/users"), {
|
|
4120
4149
|
fields: request.fields,
|
|
4121
4150
|
direct_association_only: request.direct_association_only
|
|
4122
4151
|
}, null, options);
|
|
4123
4152
|
});
|
|
4124
|
-
return function role_users(
|
|
4125
|
-
return
|
|
4153
|
+
return function role_users(_x1343, _x1344, _x1345) {
|
|
4154
|
+
return _ref388.apply(this, arguments);
|
|
4126
4155
|
};
|
|
4127
4156
|
}();
|
|
4128
4157
|
export var set_role_users = function () {
|
|
4129
|
-
var
|
|
4158
|
+
var _ref389 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
4130
4159
|
role_id = encodeParam(role_id);
|
|
4131
4160
|
return sdk.put("/roles/".concat(role_id, "/users"), null, body, options);
|
|
4132
4161
|
});
|
|
4133
|
-
return function set_role_users(
|
|
4134
|
-
return
|
|
4162
|
+
return function set_role_users(_x1346, _x1347, _x1348, _x1349) {
|
|
4163
|
+
return _ref389.apply(this, arguments);
|
|
4135
4164
|
};
|
|
4136
4165
|
}();
|
|
4137
4166
|
export var scheduled_plans_for_space = function () {
|
|
4138
|
-
var
|
|
4167
|
+
var _ref390 = _asyncToGenerator(function* (sdk, space_id, fields, options) {
|
|
4139
4168
|
space_id = encodeParam(space_id);
|
|
4140
4169
|
return sdk.get("/scheduled_plans/space/".concat(space_id), {
|
|
4141
4170
|
fields
|
|
4142
4171
|
}, null, options);
|
|
4143
4172
|
});
|
|
4144
|
-
return function scheduled_plans_for_space(
|
|
4145
|
-
return
|
|
4173
|
+
return function scheduled_plans_for_space(_x1350, _x1351, _x1352, _x1353) {
|
|
4174
|
+
return _ref390.apply(this, arguments);
|
|
4146
4175
|
};
|
|
4147
4176
|
}();
|
|
4148
4177
|
export var scheduled_plan = function () {
|
|
4149
|
-
var
|
|
4178
|
+
var _ref391 = _asyncToGenerator(function* (sdk, scheduled_plan_id, fields, options) {
|
|
4150
4179
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
4151
4180
|
return sdk.get("/scheduled_plans/".concat(scheduled_plan_id), {
|
|
4152
4181
|
fields
|
|
4153
4182
|
}, null, options);
|
|
4154
4183
|
});
|
|
4155
|
-
return function scheduled_plan(
|
|
4156
|
-
return
|
|
4184
|
+
return function scheduled_plan(_x1354, _x1355, _x1356, _x1357) {
|
|
4185
|
+
return _ref391.apply(this, arguments);
|
|
4157
4186
|
};
|
|
4158
4187
|
}();
|
|
4159
4188
|
export var update_scheduled_plan = function () {
|
|
4160
|
-
var
|
|
4189
|
+
var _ref392 = _asyncToGenerator(function* (sdk, scheduled_plan_id, body, options) {
|
|
4161
4190
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
4162
4191
|
return sdk.patch("/scheduled_plans/".concat(scheduled_plan_id), null, body, options);
|
|
4163
4192
|
});
|
|
4164
|
-
return function update_scheduled_plan(
|
|
4165
|
-
return
|
|
4193
|
+
return function update_scheduled_plan(_x1358, _x1359, _x1360, _x1361) {
|
|
4194
|
+
return _ref392.apply(this, arguments);
|
|
4166
4195
|
};
|
|
4167
4196
|
}();
|
|
4168
4197
|
export var delete_scheduled_plan = function () {
|
|
4169
|
-
var
|
|
4198
|
+
var _ref393 = _asyncToGenerator(function* (sdk, scheduled_plan_id, options) {
|
|
4170
4199
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
4171
4200
|
return sdk.delete("/scheduled_plans/".concat(scheduled_plan_id), null, null, options);
|
|
4172
4201
|
});
|
|
4173
|
-
return function delete_scheduled_plan(
|
|
4174
|
-
return
|
|
4202
|
+
return function delete_scheduled_plan(_x1362, _x1363, _x1364) {
|
|
4203
|
+
return _ref393.apply(this, arguments);
|
|
4175
4204
|
};
|
|
4176
4205
|
}();
|
|
4177
4206
|
export var all_scheduled_plans = function () {
|
|
4178
|
-
var
|
|
4207
|
+
var _ref394 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4179
4208
|
return sdk.get('/scheduled_plans', {
|
|
4180
4209
|
user_id: request.user_id,
|
|
4181
4210
|
fields: request.fields,
|
|
4182
4211
|
all_users: request.all_users
|
|
4183
4212
|
}, null, options);
|
|
4184
4213
|
});
|
|
4185
|
-
return function all_scheduled_plans(
|
|
4186
|
-
return
|
|
4214
|
+
return function all_scheduled_plans(_x1365, _x1366, _x1367) {
|
|
4215
|
+
return _ref394.apply(this, arguments);
|
|
4187
4216
|
};
|
|
4188
4217
|
}();
|
|
4189
4218
|
export var create_scheduled_plan = function () {
|
|
4190
|
-
var
|
|
4219
|
+
var _ref395 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4191
4220
|
return sdk.post('/scheduled_plans', null, body, options);
|
|
4192
4221
|
});
|
|
4193
|
-
return function create_scheduled_plan(
|
|
4194
|
-
return
|
|
4222
|
+
return function create_scheduled_plan(_x1368, _x1369, _x1370) {
|
|
4223
|
+
return _ref395.apply(this, arguments);
|
|
4195
4224
|
};
|
|
4196
4225
|
}();
|
|
4197
4226
|
export var scheduled_plan_run_once = function () {
|
|
4198
|
-
var
|
|
4227
|
+
var _ref396 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4199
4228
|
return sdk.post('/scheduled_plans/run_once', null, body, options);
|
|
4200
4229
|
});
|
|
4201
|
-
return function scheduled_plan_run_once(
|
|
4202
|
-
return
|
|
4230
|
+
return function scheduled_plan_run_once(_x1371, _x1372, _x1373) {
|
|
4231
|
+
return _ref396.apply(this, arguments);
|
|
4203
4232
|
};
|
|
4204
4233
|
}();
|
|
4205
4234
|
export var search_scheduled_plans = function () {
|
|
4206
|
-
var
|
|
4235
|
+
var _ref397 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4207
4236
|
return sdk.get('/scheduled_plans/search', {
|
|
4208
4237
|
user_id: request.user_id,
|
|
4209
4238
|
fields: request.fields,
|
|
@@ -4223,12 +4252,12 @@ export var search_scheduled_plans = function () {
|
|
|
4223
4252
|
filter_or: request.filter_or
|
|
4224
4253
|
}, null, options);
|
|
4225
4254
|
});
|
|
4226
|
-
return function search_scheduled_plans(
|
|
4227
|
-
return
|
|
4255
|
+
return function search_scheduled_plans(_x1374, _x1375, _x1376) {
|
|
4256
|
+
return _ref397.apply(this, arguments);
|
|
4228
4257
|
};
|
|
4229
4258
|
}();
|
|
4230
4259
|
export var scheduled_plans_for_look = function () {
|
|
4231
|
-
var
|
|
4260
|
+
var _ref398 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4232
4261
|
request.look_id = encodeParam(request.look_id);
|
|
4233
4262
|
return sdk.get("/scheduled_plans/look/".concat(request.look_id), {
|
|
4234
4263
|
user_id: request.user_id,
|
|
@@ -4236,12 +4265,12 @@ export var scheduled_plans_for_look = function () {
|
|
|
4236
4265
|
all_users: request.all_users
|
|
4237
4266
|
}, null, options);
|
|
4238
4267
|
});
|
|
4239
|
-
return function scheduled_plans_for_look(
|
|
4240
|
-
return
|
|
4268
|
+
return function scheduled_plans_for_look(_x1377, _x1378, _x1379) {
|
|
4269
|
+
return _ref398.apply(this, arguments);
|
|
4241
4270
|
};
|
|
4242
4271
|
}();
|
|
4243
4272
|
export var scheduled_plans_for_dashboard = function () {
|
|
4244
|
-
var
|
|
4273
|
+
var _ref399 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4245
4274
|
request.dashboard_id = encodeParam(request.dashboard_id);
|
|
4246
4275
|
return sdk.get("/scheduled_plans/dashboard/".concat(request.dashboard_id), {
|
|
4247
4276
|
user_id: request.user_id,
|
|
@@ -4249,12 +4278,12 @@ export var scheduled_plans_for_dashboard = function () {
|
|
|
4249
4278
|
fields: request.fields
|
|
4250
4279
|
}, null, options);
|
|
4251
4280
|
});
|
|
4252
|
-
return function scheduled_plans_for_dashboard(
|
|
4253
|
-
return
|
|
4281
|
+
return function scheduled_plans_for_dashboard(_x1380, _x1381, _x1382) {
|
|
4282
|
+
return _ref399.apply(this, arguments);
|
|
4254
4283
|
};
|
|
4255
4284
|
}();
|
|
4256
4285
|
export var scheduled_plans_for_lookml_dashboard = function () {
|
|
4257
|
-
var
|
|
4286
|
+
var _ref400 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4258
4287
|
request.lookml_dashboard_id = encodeParam(request.lookml_dashboard_id);
|
|
4259
4288
|
return sdk.get("/scheduled_plans/lookml_dashboard/".concat(request.lookml_dashboard_id), {
|
|
4260
4289
|
user_id: request.user_id,
|
|
@@ -4262,101 +4291,110 @@ export var scheduled_plans_for_lookml_dashboard = function () {
|
|
|
4262
4291
|
all_users: request.all_users
|
|
4263
4292
|
}, null, options);
|
|
4264
4293
|
});
|
|
4265
|
-
return function scheduled_plans_for_lookml_dashboard(
|
|
4266
|
-
return
|
|
4294
|
+
return function scheduled_plans_for_lookml_dashboard(_x1383, _x1384, _x1385) {
|
|
4295
|
+
return _ref400.apply(this, arguments);
|
|
4267
4296
|
};
|
|
4268
4297
|
}();
|
|
4269
4298
|
export var scheduled_plan_run_once_by_id = function () {
|
|
4270
|
-
var
|
|
4299
|
+
var _ref401 = _asyncToGenerator(function* (sdk, scheduled_plan_id, body, options) {
|
|
4271
4300
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
4272
4301
|
return sdk.post("/scheduled_plans/".concat(scheduled_plan_id, "/run_once"), null, body, options);
|
|
4273
4302
|
});
|
|
4274
|
-
return function scheduled_plan_run_once_by_id(
|
|
4275
|
-
return
|
|
4303
|
+
return function scheduled_plan_run_once_by_id(_x1386, _x1387, _x1388, _x1389) {
|
|
4304
|
+
return _ref401.apply(this, arguments);
|
|
4276
4305
|
};
|
|
4277
4306
|
}();
|
|
4278
4307
|
export var get_self_service_model_allowed_connections = function () {
|
|
4279
|
-
var
|
|
4308
|
+
var _ref402 = _asyncToGenerator(function* (sdk, google_sheets, options) {
|
|
4280
4309
|
return sdk.get('/self_service_models/allowed_connections', {
|
|
4281
4310
|
google_sheets
|
|
4282
4311
|
}, null, options);
|
|
4283
4312
|
});
|
|
4284
|
-
return function get_self_service_model_allowed_connections(
|
|
4285
|
-
return
|
|
4313
|
+
return function get_self_service_model_allowed_connections(_x1390, _x1391, _x1392) {
|
|
4314
|
+
return _ref402.apply(this, arguments);
|
|
4315
|
+
};
|
|
4316
|
+
}();
|
|
4317
|
+
export var get_self_service_model_lookml = function () {
|
|
4318
|
+
var _ref403 = _asyncToGenerator(function* (sdk, model_name, options) {
|
|
4319
|
+
model_name = encodeParam(model_name);
|
|
4320
|
+
return sdk.get("/self_service_models/".concat(model_name, "/lookml"), null, null, options);
|
|
4321
|
+
});
|
|
4322
|
+
return function get_self_service_model_lookml(_x1393, _x1394, _x1395) {
|
|
4323
|
+
return _ref403.apply(this, arguments);
|
|
4286
4324
|
};
|
|
4287
4325
|
}();
|
|
4288
4326
|
export var update_self_service_explore_certification = function () {
|
|
4289
|
-
var
|
|
4327
|
+
var _ref404 = _asyncToGenerator(function* (sdk, model_name, body, options) {
|
|
4290
4328
|
model_name = encodeParam(model_name);
|
|
4291
4329
|
return sdk.patch("/self_service_models/".concat(model_name, "/certification"), null, body, options);
|
|
4292
4330
|
});
|
|
4293
|
-
return function update_self_service_explore_certification(
|
|
4294
|
-
return
|
|
4331
|
+
return function update_self_service_explore_certification(_x1396, _x1397, _x1398, _x1399) {
|
|
4332
|
+
return _ref404.apply(this, arguments);
|
|
4295
4333
|
};
|
|
4296
4334
|
}();
|
|
4297
4335
|
export var session = function () {
|
|
4298
|
-
var
|
|
4336
|
+
var _ref405 = _asyncToGenerator(function* (sdk, options) {
|
|
4299
4337
|
return sdk.get('/session', null, null, options);
|
|
4300
4338
|
});
|
|
4301
|
-
return function session(
|
|
4302
|
-
return
|
|
4339
|
+
return function session(_x1400, _x1401) {
|
|
4340
|
+
return _ref405.apply(this, arguments);
|
|
4303
4341
|
};
|
|
4304
4342
|
}();
|
|
4305
4343
|
export var update_session = function () {
|
|
4306
|
-
var
|
|
4344
|
+
var _ref406 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4307
4345
|
return sdk.patch('/session', null, body, options);
|
|
4308
4346
|
});
|
|
4309
|
-
return function update_session(
|
|
4310
|
-
return
|
|
4347
|
+
return function update_session(_x1402, _x1403, _x1404) {
|
|
4348
|
+
return _ref406.apply(this, arguments);
|
|
4311
4349
|
};
|
|
4312
4350
|
}();
|
|
4313
4351
|
export var sql_interface_metadata = function () {
|
|
4314
|
-
var
|
|
4352
|
+
var _ref407 = _asyncToGenerator(function* (sdk, avatica_request, options) {
|
|
4315
4353
|
return sdk.get('/sql_interface_queries/metadata', {
|
|
4316
4354
|
avatica_request
|
|
4317
4355
|
}, null, options);
|
|
4318
4356
|
});
|
|
4319
|
-
return function sql_interface_metadata(
|
|
4320
|
-
return
|
|
4357
|
+
return function sql_interface_metadata(_x1405, _x1406, _x1407) {
|
|
4358
|
+
return _ref407.apply(this, arguments);
|
|
4321
4359
|
};
|
|
4322
4360
|
}();
|
|
4323
4361
|
export var run_sql_interface_query = function () {
|
|
4324
|
-
var
|
|
4362
|
+
var _ref408 = _asyncToGenerator(function* (sdk, query_id, result_format, options) {
|
|
4325
4363
|
result_format = encodeParam(result_format);
|
|
4326
4364
|
return sdk.get("/sql_interface_queries/".concat(query_id, "/run/").concat(result_format), null, null, options);
|
|
4327
4365
|
});
|
|
4328
|
-
return function run_sql_interface_query(
|
|
4329
|
-
return
|
|
4366
|
+
return function run_sql_interface_query(_x1408, _x1409, _x1410, _x1411) {
|
|
4367
|
+
return _ref408.apply(this, arguments);
|
|
4330
4368
|
};
|
|
4331
4369
|
}();
|
|
4332
4370
|
export var create_sql_interface_query = function () {
|
|
4333
|
-
var
|
|
4371
|
+
var _ref409 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4334
4372
|
return sdk.post('/sql_interface_queries', null, body, options);
|
|
4335
4373
|
});
|
|
4336
|
-
return function create_sql_interface_query(
|
|
4337
|
-
return
|
|
4374
|
+
return function create_sql_interface_query(_x1412, _x1413, _x1414) {
|
|
4375
|
+
return _ref409.apply(this, arguments);
|
|
4338
4376
|
};
|
|
4339
4377
|
}();
|
|
4340
4378
|
export var all_themes = function () {
|
|
4341
|
-
var
|
|
4379
|
+
var _ref410 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
4342
4380
|
return sdk.get('/themes', {
|
|
4343
4381
|
fields
|
|
4344
4382
|
}, null, options);
|
|
4345
4383
|
});
|
|
4346
|
-
return function all_themes(
|
|
4347
|
-
return
|
|
4384
|
+
return function all_themes(_x1415, _x1416, _x1417) {
|
|
4385
|
+
return _ref410.apply(this, arguments);
|
|
4348
4386
|
};
|
|
4349
4387
|
}();
|
|
4350
4388
|
export var create_theme = function () {
|
|
4351
|
-
var
|
|
4389
|
+
var _ref411 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4352
4390
|
return sdk.post('/themes', null, body, options);
|
|
4353
4391
|
});
|
|
4354
|
-
return function create_theme(
|
|
4355
|
-
return
|
|
4392
|
+
return function create_theme(_x1418, _x1419, _x1420) {
|
|
4393
|
+
return _ref411.apply(this, arguments);
|
|
4356
4394
|
};
|
|
4357
4395
|
}();
|
|
4358
4396
|
export var search_themes = function () {
|
|
4359
|
-
var
|
|
4397
|
+
var _ref412 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4360
4398
|
return sdk.get('/themes/search', {
|
|
4361
4399
|
id: request.id,
|
|
4362
4400
|
name: request.name,
|
|
@@ -4370,92 +4408,115 @@ export var search_themes = function () {
|
|
|
4370
4408
|
theme_type: request.theme_type
|
|
4371
4409
|
}, null, options);
|
|
4372
4410
|
});
|
|
4373
|
-
return function search_themes(
|
|
4374
|
-
return
|
|
4411
|
+
return function search_themes(_x1421, _x1422, _x1423) {
|
|
4412
|
+
return _ref412.apply(this, arguments);
|
|
4375
4413
|
};
|
|
4376
4414
|
}();
|
|
4377
4415
|
export var default_theme = function () {
|
|
4378
|
-
var
|
|
4416
|
+
var _ref413 = _asyncToGenerator(function* (sdk, ts, options) {
|
|
4379
4417
|
return sdk.get('/themes/default', {
|
|
4380
4418
|
ts
|
|
4381
4419
|
}, null, options);
|
|
4382
4420
|
});
|
|
4383
|
-
return function default_theme(
|
|
4384
|
-
return
|
|
4421
|
+
return function default_theme(_x1424, _x1425, _x1426) {
|
|
4422
|
+
return _ref413.apply(this, arguments);
|
|
4385
4423
|
};
|
|
4386
4424
|
}();
|
|
4387
4425
|
export var set_default_theme = function () {
|
|
4388
|
-
var
|
|
4426
|
+
var _ref414 = _asyncToGenerator(function* (sdk, name, options) {
|
|
4389
4427
|
return sdk.put('/themes/default', {
|
|
4390
4428
|
name
|
|
4391
4429
|
}, null, options);
|
|
4392
4430
|
});
|
|
4393
|
-
return function set_default_theme(
|
|
4394
|
-
return
|
|
4431
|
+
return function set_default_theme(_x1427, _x1428, _x1429) {
|
|
4432
|
+
return _ref414.apply(this, arguments);
|
|
4433
|
+
};
|
|
4434
|
+
}();
|
|
4435
|
+
export var default_theme_by_type = function () {
|
|
4436
|
+
var _ref415 = _asyncToGenerator(function* (sdk, theme_type, ts, options) {
|
|
4437
|
+
return sdk.get('/themes/default_theme', {
|
|
4438
|
+
ts,
|
|
4439
|
+
theme_type
|
|
4440
|
+
}, null, options);
|
|
4441
|
+
});
|
|
4442
|
+
return function default_theme_by_type(_x1430, _x1431, _x1432, _x1433) {
|
|
4443
|
+
return _ref415.apply(this, arguments);
|
|
4444
|
+
};
|
|
4445
|
+
}();
|
|
4446
|
+
export var set_default_theme_by_type = function () {
|
|
4447
|
+
var _ref416 = _asyncToGenerator(function* (sdk, name, theme_type, options) {
|
|
4448
|
+
return sdk.put('/themes/default_theme', {
|
|
4449
|
+
name,
|
|
4450
|
+
theme_type
|
|
4451
|
+
}, null, options);
|
|
4452
|
+
});
|
|
4453
|
+
return function set_default_theme_by_type(_x1434, _x1435, _x1436, _x1437) {
|
|
4454
|
+
return _ref416.apply(this, arguments);
|
|
4395
4455
|
};
|
|
4396
4456
|
}();
|
|
4397
4457
|
export var active_themes = function () {
|
|
4398
|
-
var
|
|
4458
|
+
var _ref417 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4399
4459
|
return sdk.get('/themes/active', {
|
|
4400
4460
|
name: request.name,
|
|
4401
4461
|
ts: request.ts,
|
|
4462
|
+
theme_type: request.theme_type,
|
|
4402
4463
|
fields: request.fields
|
|
4403
4464
|
}, null, options);
|
|
4404
4465
|
});
|
|
4405
|
-
return function active_themes(
|
|
4406
|
-
return
|
|
4466
|
+
return function active_themes(_x1438, _x1439, _x1440) {
|
|
4467
|
+
return _ref417.apply(this, arguments);
|
|
4407
4468
|
};
|
|
4408
4469
|
}();
|
|
4409
4470
|
export var theme_or_default = function () {
|
|
4410
|
-
var
|
|
4471
|
+
var _ref418 = _asyncToGenerator(function* (sdk, name, ts, options) {
|
|
4411
4472
|
return sdk.get('/themes/theme_or_default', {
|
|
4412
4473
|
name,
|
|
4413
4474
|
ts
|
|
4414
4475
|
}, null, options);
|
|
4415
4476
|
});
|
|
4416
|
-
return function theme_or_default(
|
|
4417
|
-
return
|
|
4477
|
+
return function theme_or_default(_x1441, _x1442, _x1443, _x1444) {
|
|
4478
|
+
return _ref418.apply(this, arguments);
|
|
4418
4479
|
};
|
|
4419
4480
|
}();
|
|
4420
4481
|
export var validate_theme = function () {
|
|
4421
|
-
var
|
|
4482
|
+
var _ref419 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4422
4483
|
return sdk.post('/themes/validate', null, body, options);
|
|
4423
4484
|
});
|
|
4424
|
-
return function validate_theme(
|
|
4425
|
-
return
|
|
4485
|
+
return function validate_theme(_x1445, _x1446, _x1447) {
|
|
4486
|
+
return _ref419.apply(this, arguments);
|
|
4426
4487
|
};
|
|
4427
4488
|
}();
|
|
4428
4489
|
export var theme = function () {
|
|
4429
|
-
var
|
|
4490
|
+
var _ref420 = _asyncToGenerator(function* (sdk, theme_id, fields, options) {
|
|
4430
4491
|
theme_id = encodeParam(theme_id);
|
|
4431
4492
|
return sdk.get("/themes/".concat(theme_id), {
|
|
4432
4493
|
fields
|
|
4433
4494
|
}, null, options);
|
|
4434
4495
|
});
|
|
4435
|
-
return function theme(
|
|
4436
|
-
return
|
|
4496
|
+
return function theme(_x1448, _x1449, _x1450, _x1451) {
|
|
4497
|
+
return _ref420.apply(this, arguments);
|
|
4437
4498
|
};
|
|
4438
4499
|
}();
|
|
4439
4500
|
export var update_theme = function () {
|
|
4440
|
-
var
|
|
4501
|
+
var _ref421 = _asyncToGenerator(function* (sdk, theme_id, body, options) {
|
|
4441
4502
|
theme_id = encodeParam(theme_id);
|
|
4442
4503
|
return sdk.patch("/themes/".concat(theme_id), null, body, options);
|
|
4443
4504
|
});
|
|
4444
|
-
return function update_theme(
|
|
4445
|
-
return
|
|
4505
|
+
return function update_theme(_x1452, _x1453, _x1454, _x1455) {
|
|
4506
|
+
return _ref421.apply(this, arguments);
|
|
4446
4507
|
};
|
|
4447
4508
|
}();
|
|
4448
4509
|
export var delete_theme = function () {
|
|
4449
|
-
var
|
|
4510
|
+
var _ref422 = _asyncToGenerator(function* (sdk, theme_id, options) {
|
|
4450
4511
|
theme_id = encodeParam(theme_id);
|
|
4451
4512
|
return sdk.delete("/themes/".concat(theme_id), null, null, options);
|
|
4452
4513
|
});
|
|
4453
|
-
return function delete_theme(
|
|
4454
|
-
return
|
|
4514
|
+
return function delete_theme(_x1456, _x1457, _x1458) {
|
|
4515
|
+
return _ref422.apply(this, arguments);
|
|
4455
4516
|
};
|
|
4456
4517
|
}();
|
|
4457
4518
|
export var search_credentials_email = function () {
|
|
4458
|
-
var
|
|
4519
|
+
var _ref423 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4459
4520
|
return sdk.get('/credentials_email/search', {
|
|
4460
4521
|
fields: request.fields,
|
|
4461
4522
|
limit: request.limit,
|
|
@@ -4467,22 +4528,22 @@ export var search_credentials_email = function () {
|
|
|
4467
4528
|
filter_or: request.filter_or
|
|
4468
4529
|
}, null, options);
|
|
4469
4530
|
});
|
|
4470
|
-
return function search_credentials_email(
|
|
4471
|
-
return
|
|
4531
|
+
return function search_credentials_email(_x1459, _x1460, _x1461) {
|
|
4532
|
+
return _ref423.apply(this, arguments);
|
|
4472
4533
|
};
|
|
4473
4534
|
}();
|
|
4474
4535
|
export var me = function () {
|
|
4475
|
-
var
|
|
4536
|
+
var _ref424 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
4476
4537
|
return sdk.get('/user', {
|
|
4477
4538
|
fields
|
|
4478
4539
|
}, null, options);
|
|
4479
4540
|
});
|
|
4480
|
-
return function me(
|
|
4481
|
-
return
|
|
4541
|
+
return function me(_x1462, _x1463, _x1464) {
|
|
4542
|
+
return _ref424.apply(this, arguments);
|
|
4482
4543
|
};
|
|
4483
4544
|
}();
|
|
4484
4545
|
export var all_users = function () {
|
|
4485
|
-
var
|
|
4546
|
+
var _ref425 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4486
4547
|
return sdk.get('/users', {
|
|
4487
4548
|
fields: request.fields,
|
|
4488
4549
|
page: request.page,
|
|
@@ -4493,22 +4554,22 @@ export var all_users = function () {
|
|
|
4493
4554
|
ids: request.ids
|
|
4494
4555
|
}, null, options);
|
|
4495
4556
|
});
|
|
4496
|
-
return function all_users(
|
|
4497
|
-
return
|
|
4557
|
+
return function all_users(_x1465, _x1466, _x1467) {
|
|
4558
|
+
return _ref425.apply(this, arguments);
|
|
4498
4559
|
};
|
|
4499
4560
|
}();
|
|
4500
4561
|
export var create_user = function () {
|
|
4501
|
-
var
|
|
4562
|
+
var _ref426 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
4502
4563
|
return sdk.post('/users', {
|
|
4503
4564
|
fields
|
|
4504
4565
|
}, body, options);
|
|
4505
4566
|
});
|
|
4506
|
-
return function create_user(
|
|
4507
|
-
return
|
|
4567
|
+
return function create_user(_x1468, _x1469, _x1470, _x1471) {
|
|
4568
|
+
return _ref426.apply(this, arguments);
|
|
4508
4569
|
};
|
|
4509
4570
|
}();
|
|
4510
4571
|
export var search_users = function () {
|
|
4511
|
-
var
|
|
4572
|
+
var _ref427 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4512
4573
|
return sdk.get('/users/search', {
|
|
4513
4574
|
fields: request.fields,
|
|
4514
4575
|
page: request.page,
|
|
@@ -4531,12 +4592,12 @@ export var search_users = function () {
|
|
|
4531
4592
|
is_service_account: request.is_service_account
|
|
4532
4593
|
}, null, options);
|
|
4533
4594
|
});
|
|
4534
|
-
return function search_users(
|
|
4535
|
-
return
|
|
4595
|
+
return function search_users(_x1472, _x1473, _x1474) {
|
|
4596
|
+
return _ref427.apply(this, arguments);
|
|
4536
4597
|
};
|
|
4537
4598
|
}();
|
|
4538
4599
|
export var search_users_names = function () {
|
|
4539
|
-
var
|
|
4600
|
+
var _ref428 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4540
4601
|
request.pattern = encodeParam(request.pattern);
|
|
4541
4602
|
return sdk.get("/users/search/names/".concat(request.pattern), {
|
|
4542
4603
|
fields: request.fields,
|
|
@@ -4553,405 +4614,405 @@ export var search_users_names = function () {
|
|
|
4553
4614
|
is_disabled: request.is_disabled
|
|
4554
4615
|
}, null, options);
|
|
4555
4616
|
});
|
|
4556
|
-
return function search_users_names(
|
|
4557
|
-
return
|
|
4617
|
+
return function search_users_names(_x1475, _x1476, _x1477) {
|
|
4618
|
+
return _ref428.apply(this, arguments);
|
|
4558
4619
|
};
|
|
4559
4620
|
}();
|
|
4560
4621
|
export var user = function () {
|
|
4561
|
-
var
|
|
4622
|
+
var _ref429 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4562
4623
|
user_id = encodeParam(user_id);
|
|
4563
4624
|
return sdk.get("/users/".concat(user_id), {
|
|
4564
4625
|
fields
|
|
4565
4626
|
}, null, options);
|
|
4566
4627
|
});
|
|
4567
|
-
return function user(
|
|
4568
|
-
return
|
|
4628
|
+
return function user(_x1478, _x1479, _x1480, _x1481) {
|
|
4629
|
+
return _ref429.apply(this, arguments);
|
|
4569
4630
|
};
|
|
4570
4631
|
}();
|
|
4571
4632
|
export var update_user = function () {
|
|
4572
|
-
var
|
|
4633
|
+
var _ref430 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4573
4634
|
user_id = encodeParam(user_id);
|
|
4574
4635
|
return sdk.patch("/users/".concat(user_id), {
|
|
4575
4636
|
fields
|
|
4576
4637
|
}, body, options);
|
|
4577
4638
|
});
|
|
4578
|
-
return function update_user(
|
|
4579
|
-
return
|
|
4639
|
+
return function update_user(_x1482, _x1483, _x1484, _x1485, _x1486) {
|
|
4640
|
+
return _ref430.apply(this, arguments);
|
|
4580
4641
|
};
|
|
4581
4642
|
}();
|
|
4582
4643
|
export var delete_user = function () {
|
|
4583
|
-
var
|
|
4644
|
+
var _ref431 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4584
4645
|
user_id = encodeParam(user_id);
|
|
4585
4646
|
return sdk.delete("/users/".concat(user_id), null, null, options);
|
|
4586
4647
|
});
|
|
4587
|
-
return function delete_user(
|
|
4588
|
-
return
|
|
4648
|
+
return function delete_user(_x1487, _x1488, _x1489) {
|
|
4649
|
+
return _ref431.apply(this, arguments);
|
|
4589
4650
|
};
|
|
4590
4651
|
}();
|
|
4591
4652
|
export var user_for_credential = function () {
|
|
4592
|
-
var
|
|
4653
|
+
var _ref432 = _asyncToGenerator(function* (sdk, credential_type, credential_id, fields, options) {
|
|
4593
4654
|
credential_type = encodeParam(credential_type);
|
|
4594
4655
|
credential_id = encodeParam(credential_id);
|
|
4595
4656
|
return sdk.get("/users/credential/".concat(credential_type, "/").concat(credential_id), {
|
|
4596
4657
|
fields
|
|
4597
4658
|
}, null, options);
|
|
4598
4659
|
});
|
|
4599
|
-
return function user_for_credential(
|
|
4600
|
-
return
|
|
4660
|
+
return function user_for_credential(_x1490, _x1491, _x1492, _x1493, _x1494) {
|
|
4661
|
+
return _ref432.apply(this, arguments);
|
|
4601
4662
|
};
|
|
4602
4663
|
}();
|
|
4603
4664
|
export var update_service_account = function () {
|
|
4604
|
-
var
|
|
4665
|
+
var _ref433 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4605
4666
|
user_id = encodeParam(user_id);
|
|
4606
4667
|
return sdk.patch("/users/service_accounts/".concat(user_id), {
|
|
4607
4668
|
fields
|
|
4608
4669
|
}, body, options);
|
|
4609
4670
|
});
|
|
4610
|
-
return function update_service_account(
|
|
4611
|
-
return
|
|
4671
|
+
return function update_service_account(_x1495, _x1496, _x1497, _x1498, _x1499) {
|
|
4672
|
+
return _ref433.apply(this, arguments);
|
|
4612
4673
|
};
|
|
4613
4674
|
}();
|
|
4614
4675
|
export var delete_service_account = function () {
|
|
4615
|
-
var
|
|
4676
|
+
var _ref434 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4616
4677
|
user_id = encodeParam(user_id);
|
|
4617
4678
|
return sdk.delete("/users/service_accounts/".concat(user_id), null, null, options);
|
|
4618
4679
|
});
|
|
4619
|
-
return function delete_service_account(
|
|
4620
|
-
return
|
|
4680
|
+
return function delete_service_account(_x1500, _x1501, _x1502) {
|
|
4681
|
+
return _ref434.apply(this, arguments);
|
|
4621
4682
|
};
|
|
4622
4683
|
}();
|
|
4623
4684
|
export var user_credentials_email = function () {
|
|
4624
|
-
var
|
|
4685
|
+
var _ref435 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4625
4686
|
user_id = encodeParam(user_id);
|
|
4626
4687
|
return sdk.get("/users/".concat(user_id, "/credentials_email"), {
|
|
4627
4688
|
fields
|
|
4628
4689
|
}, null, options);
|
|
4629
4690
|
});
|
|
4630
|
-
return function user_credentials_email(
|
|
4631
|
-
return
|
|
4691
|
+
return function user_credentials_email(_x1503, _x1504, _x1505, _x1506) {
|
|
4692
|
+
return _ref435.apply(this, arguments);
|
|
4632
4693
|
};
|
|
4633
4694
|
}();
|
|
4634
4695
|
export var create_user_credentials_email = function () {
|
|
4635
|
-
var
|
|
4696
|
+
var _ref436 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4636
4697
|
user_id = encodeParam(user_id);
|
|
4637
4698
|
return sdk.post("/users/".concat(user_id, "/credentials_email"), {
|
|
4638
4699
|
fields
|
|
4639
4700
|
}, body, options);
|
|
4640
4701
|
});
|
|
4641
|
-
return function create_user_credentials_email(
|
|
4642
|
-
return
|
|
4702
|
+
return function create_user_credentials_email(_x1507, _x1508, _x1509, _x1510, _x1511) {
|
|
4703
|
+
return _ref436.apply(this, arguments);
|
|
4643
4704
|
};
|
|
4644
4705
|
}();
|
|
4645
4706
|
export var update_user_credentials_email = function () {
|
|
4646
|
-
var
|
|
4707
|
+
var _ref437 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4647
4708
|
user_id = encodeParam(user_id);
|
|
4648
4709
|
return sdk.patch("/users/".concat(user_id, "/credentials_email"), {
|
|
4649
4710
|
fields
|
|
4650
4711
|
}, body, options);
|
|
4651
4712
|
});
|
|
4652
|
-
return function update_user_credentials_email(
|
|
4653
|
-
return
|
|
4713
|
+
return function update_user_credentials_email(_x1512, _x1513, _x1514, _x1515, _x1516) {
|
|
4714
|
+
return _ref437.apply(this, arguments);
|
|
4654
4715
|
};
|
|
4655
4716
|
}();
|
|
4656
4717
|
export var delete_user_credentials_email = function () {
|
|
4657
|
-
var
|
|
4718
|
+
var _ref438 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4658
4719
|
user_id = encodeParam(user_id);
|
|
4659
4720
|
return sdk.delete("/users/".concat(user_id, "/credentials_email"), null, null, options);
|
|
4660
4721
|
});
|
|
4661
|
-
return function delete_user_credentials_email(
|
|
4662
|
-
return
|
|
4722
|
+
return function delete_user_credentials_email(_x1517, _x1518, _x1519) {
|
|
4723
|
+
return _ref438.apply(this, arguments);
|
|
4663
4724
|
};
|
|
4664
4725
|
}();
|
|
4665
4726
|
export var user_credentials_totp = function () {
|
|
4666
|
-
var
|
|
4727
|
+
var _ref439 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4667
4728
|
user_id = encodeParam(user_id);
|
|
4668
4729
|
return sdk.get("/users/".concat(user_id, "/credentials_totp"), {
|
|
4669
4730
|
fields
|
|
4670
4731
|
}, null, options);
|
|
4671
4732
|
});
|
|
4672
|
-
return function user_credentials_totp(
|
|
4673
|
-
return
|
|
4733
|
+
return function user_credentials_totp(_x1520, _x1521, _x1522, _x1523) {
|
|
4734
|
+
return _ref439.apply(this, arguments);
|
|
4674
4735
|
};
|
|
4675
4736
|
}();
|
|
4676
4737
|
export var create_user_credentials_totp = function () {
|
|
4677
|
-
var
|
|
4738
|
+
var _ref440 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4678
4739
|
user_id = encodeParam(user_id);
|
|
4679
4740
|
return sdk.post("/users/".concat(user_id, "/credentials_totp"), {
|
|
4680
4741
|
fields
|
|
4681
4742
|
}, body, options);
|
|
4682
4743
|
});
|
|
4683
|
-
return function create_user_credentials_totp(
|
|
4684
|
-
return
|
|
4744
|
+
return function create_user_credentials_totp(_x1524, _x1525, _x1526, _x1527, _x1528) {
|
|
4745
|
+
return _ref440.apply(this, arguments);
|
|
4685
4746
|
};
|
|
4686
4747
|
}();
|
|
4687
4748
|
export var delete_user_credentials_totp = function () {
|
|
4688
|
-
var
|
|
4749
|
+
var _ref441 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4689
4750
|
user_id = encodeParam(user_id);
|
|
4690
4751
|
return sdk.delete("/users/".concat(user_id, "/credentials_totp"), null, null, options);
|
|
4691
4752
|
});
|
|
4692
|
-
return function delete_user_credentials_totp(
|
|
4693
|
-
return
|
|
4753
|
+
return function delete_user_credentials_totp(_x1529, _x1530, _x1531) {
|
|
4754
|
+
return _ref441.apply(this, arguments);
|
|
4694
4755
|
};
|
|
4695
4756
|
}();
|
|
4696
4757
|
export var user_credentials_ldap = function () {
|
|
4697
|
-
var
|
|
4758
|
+
var _ref442 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4698
4759
|
user_id = encodeParam(user_id);
|
|
4699
4760
|
return sdk.get("/users/".concat(user_id, "/credentials_ldap"), {
|
|
4700
4761
|
fields
|
|
4701
4762
|
}, null, options);
|
|
4702
4763
|
});
|
|
4703
|
-
return function user_credentials_ldap(
|
|
4704
|
-
return
|
|
4764
|
+
return function user_credentials_ldap(_x1532, _x1533, _x1534, _x1535) {
|
|
4765
|
+
return _ref442.apply(this, arguments);
|
|
4705
4766
|
};
|
|
4706
4767
|
}();
|
|
4707
4768
|
export var delete_user_credentials_ldap = function () {
|
|
4708
|
-
var
|
|
4769
|
+
var _ref443 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4709
4770
|
user_id = encodeParam(user_id);
|
|
4710
4771
|
return sdk.delete("/users/".concat(user_id, "/credentials_ldap"), null, null, options);
|
|
4711
4772
|
});
|
|
4712
|
-
return function delete_user_credentials_ldap(
|
|
4713
|
-
return
|
|
4773
|
+
return function delete_user_credentials_ldap(_x1536, _x1537, _x1538) {
|
|
4774
|
+
return _ref443.apply(this, arguments);
|
|
4714
4775
|
};
|
|
4715
4776
|
}();
|
|
4716
4777
|
export var user_credentials_google = function () {
|
|
4717
|
-
var
|
|
4778
|
+
var _ref444 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4718
4779
|
user_id = encodeParam(user_id);
|
|
4719
4780
|
return sdk.get("/users/".concat(user_id, "/credentials_google"), {
|
|
4720
4781
|
fields
|
|
4721
4782
|
}, null, options);
|
|
4722
4783
|
});
|
|
4723
|
-
return function user_credentials_google(
|
|
4724
|
-
return
|
|
4784
|
+
return function user_credentials_google(_x1539, _x1540, _x1541, _x1542) {
|
|
4785
|
+
return _ref444.apply(this, arguments);
|
|
4725
4786
|
};
|
|
4726
4787
|
}();
|
|
4727
4788
|
export var delete_user_credentials_google = function () {
|
|
4728
|
-
var
|
|
4789
|
+
var _ref445 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4729
4790
|
user_id = encodeParam(user_id);
|
|
4730
4791
|
return sdk.delete("/users/".concat(user_id, "/credentials_google"), null, null, options);
|
|
4731
4792
|
});
|
|
4732
|
-
return function delete_user_credentials_google(
|
|
4733
|
-
return
|
|
4793
|
+
return function delete_user_credentials_google(_x1543, _x1544, _x1545) {
|
|
4794
|
+
return _ref445.apply(this, arguments);
|
|
4734
4795
|
};
|
|
4735
4796
|
}();
|
|
4736
4797
|
export var user_credentials_saml = function () {
|
|
4737
|
-
var
|
|
4798
|
+
var _ref446 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4738
4799
|
user_id = encodeParam(user_id);
|
|
4739
4800
|
return sdk.get("/users/".concat(user_id, "/credentials_saml"), {
|
|
4740
4801
|
fields
|
|
4741
4802
|
}, null, options);
|
|
4742
4803
|
});
|
|
4743
|
-
return function user_credentials_saml(
|
|
4744
|
-
return
|
|
4804
|
+
return function user_credentials_saml(_x1546, _x1547, _x1548, _x1549) {
|
|
4805
|
+
return _ref446.apply(this, arguments);
|
|
4745
4806
|
};
|
|
4746
4807
|
}();
|
|
4747
4808
|
export var delete_user_credentials_saml = function () {
|
|
4748
|
-
var
|
|
4809
|
+
var _ref447 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4749
4810
|
user_id = encodeParam(user_id);
|
|
4750
4811
|
return sdk.delete("/users/".concat(user_id, "/credentials_saml"), null, null, options);
|
|
4751
4812
|
});
|
|
4752
|
-
return function delete_user_credentials_saml(
|
|
4753
|
-
return
|
|
4813
|
+
return function delete_user_credentials_saml(_x1550, _x1551, _x1552) {
|
|
4814
|
+
return _ref447.apply(this, arguments);
|
|
4754
4815
|
};
|
|
4755
4816
|
}();
|
|
4756
4817
|
export var user_credentials_oidc = function () {
|
|
4757
|
-
var
|
|
4818
|
+
var _ref448 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4758
4819
|
user_id = encodeParam(user_id);
|
|
4759
4820
|
return sdk.get("/users/".concat(user_id, "/credentials_oidc"), {
|
|
4760
4821
|
fields
|
|
4761
4822
|
}, null, options);
|
|
4762
4823
|
});
|
|
4763
|
-
return function user_credentials_oidc(
|
|
4764
|
-
return
|
|
4824
|
+
return function user_credentials_oidc(_x1553, _x1554, _x1555, _x1556) {
|
|
4825
|
+
return _ref448.apply(this, arguments);
|
|
4765
4826
|
};
|
|
4766
4827
|
}();
|
|
4767
4828
|
export var delete_user_credentials_oidc = function () {
|
|
4768
|
-
var
|
|
4829
|
+
var _ref449 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4769
4830
|
user_id = encodeParam(user_id);
|
|
4770
4831
|
return sdk.delete("/users/".concat(user_id, "/credentials_oidc"), null, null, options);
|
|
4771
4832
|
});
|
|
4772
|
-
return function delete_user_credentials_oidc(
|
|
4773
|
-
return
|
|
4833
|
+
return function delete_user_credentials_oidc(_x1557, _x1558, _x1559) {
|
|
4834
|
+
return _ref449.apply(this, arguments);
|
|
4774
4835
|
};
|
|
4775
4836
|
}();
|
|
4776
4837
|
export var user_credentials_api3 = function () {
|
|
4777
|
-
var
|
|
4838
|
+
var _ref450 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, fields, options) {
|
|
4778
4839
|
user_id = encodeParam(user_id);
|
|
4779
4840
|
credentials_api3_id = encodeParam(credentials_api3_id);
|
|
4780
4841
|
return sdk.get("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), {
|
|
4781
4842
|
fields
|
|
4782
4843
|
}, null, options);
|
|
4783
4844
|
});
|
|
4784
|
-
return function user_credentials_api3(
|
|
4785
|
-
return
|
|
4845
|
+
return function user_credentials_api3(_x1560, _x1561, _x1562, _x1563, _x1564) {
|
|
4846
|
+
return _ref450.apply(this, arguments);
|
|
4786
4847
|
};
|
|
4787
4848
|
}();
|
|
4788
4849
|
export var update_user_credentials_api3 = function () {
|
|
4789
|
-
var
|
|
4850
|
+
var _ref451 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, body, fields, options) {
|
|
4790
4851
|
user_id = encodeParam(user_id);
|
|
4791
4852
|
credentials_api3_id = encodeParam(credentials_api3_id);
|
|
4792
4853
|
return sdk.patch("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), {
|
|
4793
4854
|
fields
|
|
4794
4855
|
}, body, options);
|
|
4795
4856
|
});
|
|
4796
|
-
return function update_user_credentials_api3(
|
|
4797
|
-
return
|
|
4857
|
+
return function update_user_credentials_api3(_x1565, _x1566, _x1567, _x1568, _x1569, _x1570) {
|
|
4858
|
+
return _ref451.apply(this, arguments);
|
|
4798
4859
|
};
|
|
4799
4860
|
}();
|
|
4800
4861
|
export var delete_user_credentials_api3 = function () {
|
|
4801
|
-
var
|
|
4862
|
+
var _ref452 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, options) {
|
|
4802
4863
|
user_id = encodeParam(user_id);
|
|
4803
4864
|
credentials_api3_id = encodeParam(credentials_api3_id);
|
|
4804
4865
|
return sdk.delete("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), null, null, options);
|
|
4805
4866
|
});
|
|
4806
|
-
return function delete_user_credentials_api3(
|
|
4807
|
-
return
|
|
4867
|
+
return function delete_user_credentials_api3(_x1571, _x1572, _x1573, _x1574) {
|
|
4868
|
+
return _ref452.apply(this, arguments);
|
|
4808
4869
|
};
|
|
4809
4870
|
}();
|
|
4810
4871
|
export var all_user_credentials_api3s = function () {
|
|
4811
|
-
var
|
|
4872
|
+
var _ref453 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4812
4873
|
user_id = encodeParam(user_id);
|
|
4813
4874
|
return sdk.get("/users/".concat(user_id, "/credentials_api3"), {
|
|
4814
4875
|
fields
|
|
4815
4876
|
}, null, options);
|
|
4816
4877
|
});
|
|
4817
|
-
return function all_user_credentials_api3s(
|
|
4818
|
-
return
|
|
4878
|
+
return function all_user_credentials_api3s(_x1575, _x1576, _x1577, _x1578) {
|
|
4879
|
+
return _ref453.apply(this, arguments);
|
|
4819
4880
|
};
|
|
4820
4881
|
}();
|
|
4821
4882
|
export var create_user_credentials_api3 = function () {
|
|
4822
|
-
var
|
|
4883
|
+
var _ref454 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4823
4884
|
user_id = encodeParam(user_id);
|
|
4824
4885
|
return sdk.post("/users/".concat(user_id, "/credentials_api3"), {
|
|
4825
4886
|
fields
|
|
4826
4887
|
}, null, options);
|
|
4827
4888
|
});
|
|
4828
|
-
return function create_user_credentials_api3(
|
|
4829
|
-
return
|
|
4889
|
+
return function create_user_credentials_api3(_x1579, _x1580, _x1581, _x1582) {
|
|
4890
|
+
return _ref454.apply(this, arguments);
|
|
4830
4891
|
};
|
|
4831
4892
|
}();
|
|
4832
4893
|
export var user_credentials_embed = function () {
|
|
4833
|
-
var
|
|
4894
|
+
var _ref455 = _asyncToGenerator(function* (sdk, user_id, credentials_embed_id, fields, options) {
|
|
4834
4895
|
user_id = encodeParam(user_id);
|
|
4835
4896
|
credentials_embed_id = encodeParam(credentials_embed_id);
|
|
4836
4897
|
return sdk.get("/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), {
|
|
4837
4898
|
fields
|
|
4838
4899
|
}, null, options);
|
|
4839
4900
|
});
|
|
4840
|
-
return function user_credentials_embed(
|
|
4841
|
-
return
|
|
4901
|
+
return function user_credentials_embed(_x1583, _x1584, _x1585, _x1586, _x1587) {
|
|
4902
|
+
return _ref455.apply(this, arguments);
|
|
4842
4903
|
};
|
|
4843
4904
|
}();
|
|
4844
4905
|
export var delete_user_credentials_embed = function () {
|
|
4845
|
-
var
|
|
4906
|
+
var _ref456 = _asyncToGenerator(function* (sdk, user_id, credentials_embed_id, options) {
|
|
4846
4907
|
user_id = encodeParam(user_id);
|
|
4847
4908
|
credentials_embed_id = encodeParam(credentials_embed_id);
|
|
4848
4909
|
return sdk.delete("/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), null, null, options);
|
|
4849
4910
|
});
|
|
4850
|
-
return function delete_user_credentials_embed(
|
|
4851
|
-
return
|
|
4911
|
+
return function delete_user_credentials_embed(_x1588, _x1589, _x1590, _x1591) {
|
|
4912
|
+
return _ref456.apply(this, arguments);
|
|
4852
4913
|
};
|
|
4853
4914
|
}();
|
|
4854
4915
|
export var all_user_credentials_embeds = function () {
|
|
4855
|
-
var
|
|
4916
|
+
var _ref457 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4856
4917
|
user_id = encodeParam(user_id);
|
|
4857
4918
|
return sdk.get("/users/".concat(user_id, "/credentials_embed"), {
|
|
4858
4919
|
fields
|
|
4859
4920
|
}, null, options);
|
|
4860
4921
|
});
|
|
4861
|
-
return function all_user_credentials_embeds(
|
|
4862
|
-
return
|
|
4922
|
+
return function all_user_credentials_embeds(_x1592, _x1593, _x1594, _x1595) {
|
|
4923
|
+
return _ref457.apply(this, arguments);
|
|
4863
4924
|
};
|
|
4864
4925
|
}();
|
|
4865
4926
|
export var user_credentials_looker_openid = function () {
|
|
4866
|
-
var
|
|
4927
|
+
var _ref458 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4867
4928
|
user_id = encodeParam(user_id);
|
|
4868
4929
|
return sdk.get("/users/".concat(user_id, "/credentials_looker_openid"), {
|
|
4869
4930
|
fields
|
|
4870
4931
|
}, null, options);
|
|
4871
4932
|
});
|
|
4872
|
-
return function user_credentials_looker_openid(
|
|
4873
|
-
return
|
|
4933
|
+
return function user_credentials_looker_openid(_x1596, _x1597, _x1598, _x1599) {
|
|
4934
|
+
return _ref458.apply(this, arguments);
|
|
4874
4935
|
};
|
|
4875
4936
|
}();
|
|
4876
4937
|
export var delete_user_credentials_looker_openid = function () {
|
|
4877
|
-
var
|
|
4938
|
+
var _ref459 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4878
4939
|
user_id = encodeParam(user_id);
|
|
4879
4940
|
return sdk.delete("/users/".concat(user_id, "/credentials_looker_openid"), null, null, options);
|
|
4880
4941
|
});
|
|
4881
|
-
return function delete_user_credentials_looker_openid(
|
|
4882
|
-
return
|
|
4942
|
+
return function delete_user_credentials_looker_openid(_x1600, _x1601, _x1602) {
|
|
4943
|
+
return _ref459.apply(this, arguments);
|
|
4883
4944
|
};
|
|
4884
4945
|
}();
|
|
4885
4946
|
export var user_session = function () {
|
|
4886
|
-
var
|
|
4947
|
+
var _ref460 = _asyncToGenerator(function* (sdk, user_id, session_id, fields, options) {
|
|
4887
4948
|
user_id = encodeParam(user_id);
|
|
4888
4949
|
session_id = encodeParam(session_id);
|
|
4889
4950
|
return sdk.get("/users/".concat(user_id, "/sessions/").concat(session_id), {
|
|
4890
4951
|
fields
|
|
4891
4952
|
}, null, options);
|
|
4892
4953
|
});
|
|
4893
|
-
return function user_session(
|
|
4894
|
-
return
|
|
4954
|
+
return function user_session(_x1603, _x1604, _x1605, _x1606, _x1607) {
|
|
4955
|
+
return _ref460.apply(this, arguments);
|
|
4895
4956
|
};
|
|
4896
4957
|
}();
|
|
4897
4958
|
export var delete_user_session = function () {
|
|
4898
|
-
var
|
|
4959
|
+
var _ref461 = _asyncToGenerator(function* (sdk, user_id, session_id, options) {
|
|
4899
4960
|
user_id = encodeParam(user_id);
|
|
4900
4961
|
session_id = encodeParam(session_id);
|
|
4901
4962
|
return sdk.delete("/users/".concat(user_id, "/sessions/").concat(session_id), null, null, options);
|
|
4902
4963
|
});
|
|
4903
|
-
return function delete_user_session(
|
|
4904
|
-
return
|
|
4964
|
+
return function delete_user_session(_x1608, _x1609, _x1610, _x1611) {
|
|
4965
|
+
return _ref461.apply(this, arguments);
|
|
4905
4966
|
};
|
|
4906
4967
|
}();
|
|
4907
4968
|
export var all_user_sessions = function () {
|
|
4908
|
-
var
|
|
4969
|
+
var _ref462 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4909
4970
|
user_id = encodeParam(user_id);
|
|
4910
4971
|
return sdk.get("/users/".concat(user_id, "/sessions"), {
|
|
4911
4972
|
fields
|
|
4912
4973
|
}, null, options);
|
|
4913
4974
|
});
|
|
4914
|
-
return function all_user_sessions(
|
|
4915
|
-
return
|
|
4975
|
+
return function all_user_sessions(_x1612, _x1613, _x1614, _x1615) {
|
|
4976
|
+
return _ref462.apply(this, arguments);
|
|
4916
4977
|
};
|
|
4917
4978
|
}();
|
|
4918
4979
|
export var create_user_credentials_email_password_reset = function () {
|
|
4919
|
-
var
|
|
4980
|
+
var _ref463 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4920
4981
|
request.user_id = encodeParam(request.user_id);
|
|
4921
4982
|
return sdk.post("/users/".concat(request.user_id, "/credentials_email/password_reset"), {
|
|
4922
4983
|
expires: request.expires,
|
|
4923
4984
|
fields: request.fields
|
|
4924
4985
|
}, null, options);
|
|
4925
4986
|
});
|
|
4926
|
-
return function create_user_credentials_email_password_reset(
|
|
4927
|
-
return
|
|
4987
|
+
return function create_user_credentials_email_password_reset(_x1616, _x1617, _x1618) {
|
|
4988
|
+
return _ref463.apply(this, arguments);
|
|
4928
4989
|
};
|
|
4929
4990
|
}();
|
|
4930
4991
|
export var user_roles = function () {
|
|
4931
|
-
var
|
|
4992
|
+
var _ref464 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4932
4993
|
request.user_id = encodeParam(request.user_id);
|
|
4933
4994
|
return sdk.get("/users/".concat(request.user_id, "/roles"), {
|
|
4934
4995
|
fields: request.fields,
|
|
4935
4996
|
direct_association_only: request.direct_association_only
|
|
4936
4997
|
}, null, options);
|
|
4937
4998
|
});
|
|
4938
|
-
return function user_roles(
|
|
4939
|
-
return
|
|
4999
|
+
return function user_roles(_x1619, _x1620, _x1621) {
|
|
5000
|
+
return _ref464.apply(this, arguments);
|
|
4940
5001
|
};
|
|
4941
5002
|
}();
|
|
4942
5003
|
export var set_user_roles = function () {
|
|
4943
|
-
var
|
|
5004
|
+
var _ref465 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4944
5005
|
user_id = encodeParam(user_id);
|
|
4945
5006
|
return sdk.put("/users/".concat(user_id, "/roles"), {
|
|
4946
5007
|
fields
|
|
4947
5008
|
}, body, options);
|
|
4948
5009
|
});
|
|
4949
|
-
return function set_user_roles(
|
|
4950
|
-
return
|
|
5010
|
+
return function set_user_roles(_x1622, _x1623, _x1624, _x1625, _x1626) {
|
|
5011
|
+
return _ref465.apply(this, arguments);
|
|
4951
5012
|
};
|
|
4952
5013
|
}();
|
|
4953
5014
|
export var user_attribute_user_values = function () {
|
|
4954
|
-
var
|
|
5015
|
+
var _ref466 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4955
5016
|
request.user_id = encodeParam(request.user_id);
|
|
4956
5017
|
return sdk.get("/users/".concat(request.user_id, "/attribute_values"), {
|
|
4957
5018
|
fields: request.fields,
|
|
@@ -4960,157 +5021,157 @@ export var user_attribute_user_values = function () {
|
|
|
4960
5021
|
include_unset: request.include_unset
|
|
4961
5022
|
}, null, options);
|
|
4962
5023
|
});
|
|
4963
|
-
return function user_attribute_user_values(
|
|
4964
|
-
return
|
|
5024
|
+
return function user_attribute_user_values(_x1627, _x1628, _x1629) {
|
|
5025
|
+
return _ref466.apply(this, arguments);
|
|
4965
5026
|
};
|
|
4966
5027
|
}();
|
|
4967
5028
|
export var set_user_attribute_user_value = function () {
|
|
4968
|
-
var
|
|
5029
|
+
var _ref467 = _asyncToGenerator(function* (sdk, user_id, user_attribute_id, body, options) {
|
|
4969
5030
|
user_id = encodeParam(user_id);
|
|
4970
5031
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4971
5032
|
return sdk.patch("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
|
|
4972
5033
|
});
|
|
4973
|
-
return function set_user_attribute_user_value(
|
|
4974
|
-
return
|
|
5034
|
+
return function set_user_attribute_user_value(_x1630, _x1631, _x1632, _x1633, _x1634) {
|
|
5035
|
+
return _ref467.apply(this, arguments);
|
|
4975
5036
|
};
|
|
4976
5037
|
}();
|
|
4977
5038
|
export var delete_user_attribute_user_value = function () {
|
|
4978
|
-
var
|
|
5039
|
+
var _ref468 = _asyncToGenerator(function* (sdk, user_id, user_attribute_id, options) {
|
|
4979
5040
|
user_id = encodeParam(user_id);
|
|
4980
5041
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4981
5042
|
return sdk.delete("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
|
|
4982
5043
|
});
|
|
4983
|
-
return function delete_user_attribute_user_value(
|
|
4984
|
-
return
|
|
5044
|
+
return function delete_user_attribute_user_value(_x1635, _x1636, _x1637, _x1638) {
|
|
5045
|
+
return _ref468.apply(this, arguments);
|
|
4985
5046
|
};
|
|
4986
5047
|
}();
|
|
4987
5048
|
export var send_user_credentials_email_password_reset = function () {
|
|
4988
|
-
var
|
|
5049
|
+
var _ref469 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4989
5050
|
user_id = encodeParam(user_id);
|
|
4990
5051
|
return sdk.post("/users/".concat(user_id, "/credentials_email/send_password_reset"), {
|
|
4991
5052
|
fields
|
|
4992
5053
|
}, null, options);
|
|
4993
5054
|
});
|
|
4994
|
-
return function send_user_credentials_email_password_reset(
|
|
4995
|
-
return
|
|
5055
|
+
return function send_user_credentials_email_password_reset(_x1639, _x1640, _x1641, _x1642) {
|
|
5056
|
+
return _ref469.apply(this, arguments);
|
|
4996
5057
|
};
|
|
4997
5058
|
}();
|
|
4998
5059
|
export var wipeout_user_emails = function () {
|
|
4999
|
-
var
|
|
5060
|
+
var _ref470 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
5000
5061
|
user_id = encodeParam(user_id);
|
|
5001
5062
|
return sdk.post("/users/".concat(user_id, "/update_emails"), {
|
|
5002
5063
|
fields
|
|
5003
5064
|
}, body, options);
|
|
5004
5065
|
});
|
|
5005
|
-
return function wipeout_user_emails(
|
|
5006
|
-
return
|
|
5066
|
+
return function wipeout_user_emails(_x1643, _x1644, _x1645, _x1646, _x1647) {
|
|
5067
|
+
return _ref470.apply(this, arguments);
|
|
5007
5068
|
};
|
|
5008
5069
|
}();
|
|
5009
5070
|
export var create_embed_user = function () {
|
|
5010
|
-
var
|
|
5071
|
+
var _ref471 = _asyncToGenerator(function* (sdk, body, options) {
|
|
5011
5072
|
return sdk.post('/users/embed_user', null, body, options);
|
|
5012
5073
|
});
|
|
5013
|
-
return function create_embed_user(
|
|
5014
|
-
return
|
|
5074
|
+
return function create_embed_user(_x1648, _x1649, _x1650) {
|
|
5075
|
+
return _ref471.apply(this, arguments);
|
|
5015
5076
|
};
|
|
5016
5077
|
}();
|
|
5017
5078
|
export var create_service_account = function () {
|
|
5018
|
-
var
|
|
5079
|
+
var _ref472 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
5019
5080
|
return sdk.post('/users/service_accounts', {
|
|
5020
5081
|
fields
|
|
5021
5082
|
}, body, options);
|
|
5022
5083
|
});
|
|
5023
|
-
return function create_service_account(
|
|
5024
|
-
return
|
|
5084
|
+
return function create_service_account(_x1651, _x1652, _x1653, _x1654) {
|
|
5085
|
+
return _ref472.apply(this, arguments);
|
|
5025
5086
|
};
|
|
5026
5087
|
}();
|
|
5027
5088
|
export var all_user_attributes = function () {
|
|
5028
|
-
var
|
|
5089
|
+
var _ref473 = _asyncToGenerator(function* (sdk, request, options) {
|
|
5029
5090
|
return sdk.get('/user_attributes', {
|
|
5030
5091
|
fields: request.fields,
|
|
5031
5092
|
sorts: request.sorts
|
|
5032
5093
|
}, null, options);
|
|
5033
5094
|
});
|
|
5034
|
-
return function all_user_attributes(
|
|
5035
|
-
return
|
|
5095
|
+
return function all_user_attributes(_x1655, _x1656, _x1657) {
|
|
5096
|
+
return _ref473.apply(this, arguments);
|
|
5036
5097
|
};
|
|
5037
5098
|
}();
|
|
5038
5099
|
export var create_user_attribute = function () {
|
|
5039
|
-
var
|
|
5100
|
+
var _ref474 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
5040
5101
|
return sdk.post('/user_attributes', {
|
|
5041
5102
|
fields
|
|
5042
5103
|
}, body, options);
|
|
5043
5104
|
});
|
|
5044
|
-
return function create_user_attribute(
|
|
5045
|
-
return
|
|
5105
|
+
return function create_user_attribute(_x1658, _x1659, _x1660, _x1661) {
|
|
5106
|
+
return _ref474.apply(this, arguments);
|
|
5046
5107
|
};
|
|
5047
5108
|
}();
|
|
5048
5109
|
export var user_attribute = function () {
|
|
5049
|
-
var
|
|
5110
|
+
var _ref475 = _asyncToGenerator(function* (sdk, user_attribute_id, fields, options) {
|
|
5050
5111
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
5051
5112
|
return sdk.get("/user_attributes/".concat(user_attribute_id), {
|
|
5052
5113
|
fields
|
|
5053
5114
|
}, null, options);
|
|
5054
5115
|
});
|
|
5055
|
-
return function user_attribute(
|
|
5056
|
-
return
|
|
5116
|
+
return function user_attribute(_x1662, _x1663, _x1664, _x1665) {
|
|
5117
|
+
return _ref475.apply(this, arguments);
|
|
5057
5118
|
};
|
|
5058
5119
|
}();
|
|
5059
5120
|
export var update_user_attribute = function () {
|
|
5060
|
-
var
|
|
5121
|
+
var _ref476 = _asyncToGenerator(function* (sdk, user_attribute_id, body, fields, options) {
|
|
5061
5122
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
5062
5123
|
return sdk.patch("/user_attributes/".concat(user_attribute_id), {
|
|
5063
5124
|
fields
|
|
5064
5125
|
}, body, options);
|
|
5065
5126
|
});
|
|
5066
|
-
return function update_user_attribute(
|
|
5067
|
-
return
|
|
5127
|
+
return function update_user_attribute(_x1666, _x1667, _x1668, _x1669, _x1670) {
|
|
5128
|
+
return _ref476.apply(this, arguments);
|
|
5068
5129
|
};
|
|
5069
5130
|
}();
|
|
5070
5131
|
export var delete_user_attribute = function () {
|
|
5071
|
-
var
|
|
5132
|
+
var _ref477 = _asyncToGenerator(function* (sdk, user_attribute_id, options) {
|
|
5072
5133
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
5073
5134
|
return sdk.delete("/user_attributes/".concat(user_attribute_id), null, null, options);
|
|
5074
5135
|
});
|
|
5075
|
-
return function delete_user_attribute(
|
|
5076
|
-
return
|
|
5136
|
+
return function delete_user_attribute(_x1671, _x1672, _x1673) {
|
|
5137
|
+
return _ref477.apply(this, arguments);
|
|
5077
5138
|
};
|
|
5078
5139
|
}();
|
|
5079
5140
|
export var all_user_attribute_group_values = function () {
|
|
5080
|
-
var
|
|
5141
|
+
var _ref478 = _asyncToGenerator(function* (sdk, user_attribute_id, fields, options) {
|
|
5081
5142
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
5082
5143
|
return sdk.get("/user_attributes/".concat(user_attribute_id, "/group_values"), {
|
|
5083
5144
|
fields
|
|
5084
5145
|
}, null, options);
|
|
5085
5146
|
});
|
|
5086
|
-
return function all_user_attribute_group_values(
|
|
5087
|
-
return
|
|
5147
|
+
return function all_user_attribute_group_values(_x1674, _x1675, _x1676, _x1677) {
|
|
5148
|
+
return _ref478.apply(this, arguments);
|
|
5088
5149
|
};
|
|
5089
5150
|
}();
|
|
5090
5151
|
export var set_user_attribute_group_values = function () {
|
|
5091
|
-
var
|
|
5152
|
+
var _ref479 = _asyncToGenerator(function* (sdk, user_attribute_id, body, options) {
|
|
5092
5153
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
5093
5154
|
return sdk.post("/user_attributes/".concat(user_attribute_id, "/group_values"), null, body, options);
|
|
5094
5155
|
});
|
|
5095
|
-
return function set_user_attribute_group_values(
|
|
5096
|
-
return
|
|
5156
|
+
return function set_user_attribute_group_values(_x1678, _x1679, _x1680, _x1681) {
|
|
5157
|
+
return _ref479.apply(this, arguments);
|
|
5097
5158
|
};
|
|
5098
5159
|
}();
|
|
5099
5160
|
export var all_workspaces = function () {
|
|
5100
|
-
var
|
|
5161
|
+
var _ref480 = _asyncToGenerator(function* (sdk, options) {
|
|
5101
5162
|
return sdk.get('/workspaces', null, null, options);
|
|
5102
5163
|
});
|
|
5103
|
-
return function all_workspaces(
|
|
5104
|
-
return
|
|
5164
|
+
return function all_workspaces(_x1682, _x1683) {
|
|
5165
|
+
return _ref480.apply(this, arguments);
|
|
5105
5166
|
};
|
|
5106
5167
|
}();
|
|
5107
5168
|
export var workspace = function () {
|
|
5108
|
-
var
|
|
5169
|
+
var _ref481 = _asyncToGenerator(function* (sdk, workspace_id, options) {
|
|
5109
5170
|
workspace_id = encodeParam(workspace_id);
|
|
5110
5171
|
return sdk.get("/workspaces/".concat(workspace_id), null, null, options);
|
|
5111
5172
|
});
|
|
5112
|
-
return function workspace(
|
|
5113
|
-
return
|
|
5173
|
+
return function workspace(_x1684, _x1685, _x1686) {
|
|
5174
|
+
return _ref481.apply(this, arguments);
|
|
5114
5175
|
};
|
|
5115
5176
|
}();
|
|
5116
5177
|
//# sourceMappingURL=funcs.js.map
|