@looker/sdk 22.0.0 → 22.4.2
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 +23 -0
- package/lib/3.1/funcs.d.ts +9 -5
- package/lib/3.1/funcs.js +948 -892
- package/lib/3.1/funcs.js.map +1 -1
- package/lib/3.1/methods.d.ts +9 -5
- package/lib/3.1/methods.js +635 -595
- package/lib/3.1/methods.js.map +1 -1
- package/lib/3.1/methodsInterface.d.ts +9 -5
- package/lib/3.1/models.d.ts +82 -49
- package/lib/3.1/models.js +11 -1
- package/lib/3.1/models.js.map +1 -1
- package/lib/3.1/streams.d.ts +9 -5
- package/lib/3.1/streams.js +635 -595
- package/lib/3.1/streams.js.map +1 -1
- package/lib/4.0/funcs.d.ts +111 -109
- package/lib/4.0/funcs.js +1190 -1031
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +111 -109
- package/lib/4.0/methods.js +840 -689
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +111 -109
- package/lib/4.0/models.d.ts +332 -261
- package/lib/4.0/models.js +11 -9
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +111 -109
- package/lib/4.0/streams.js +840 -689
- 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/3.1/funcs.js +932 -888
- package/lib/esm/3.1/funcs.js.map +1 -1
- package/lib/esm/3.1/methods.js +635 -595
- package/lib/esm/3.1/methods.js.map +1 -1
- package/lib/esm/3.1/models.js +9 -0
- package/lib/esm/3.1/models.js.map +1 -1
- package/lib/esm/3.1/streams.js +635 -595
- package/lib/esm/3.1/streams.js.map +1 -1
- package/lib/esm/4.0/funcs.js +1166 -1013
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +840 -689
- package/lib/esm/4.0/methods.js.map +1 -1
- package/lib/esm/4.0/models.js +9 -7
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js +840 -689
- package/lib/esm/4.0/streams.js.map +1 -1
- package/lib/esm/constants.js +1 -1
- package/lib/esm/constants.js.map +1 -1
- package/package.json +3 -3
package/lib/esm/4.0/funcs.js
CHANGED
|
@@ -29,6 +29,7 @@ export var search_alerts = function () {
|
|
|
29
29
|
}();
|
|
30
30
|
export var get_alert = function () {
|
|
31
31
|
var _ref2 = _asyncToGenerator(function* (sdk, alert_id, options) {
|
|
32
|
+
alert_id = encodeParam(alert_id);
|
|
32
33
|
return sdk.get("/alerts/".concat(alert_id), null, null, options);
|
|
33
34
|
});
|
|
34
35
|
|
|
@@ -38,6 +39,7 @@ export var get_alert = function () {
|
|
|
38
39
|
}();
|
|
39
40
|
export var update_alert = function () {
|
|
40
41
|
var _ref3 = _asyncToGenerator(function* (sdk, alert_id, body, options) {
|
|
42
|
+
alert_id = encodeParam(alert_id);
|
|
41
43
|
return sdk.put("/alerts/".concat(alert_id), null, body, options);
|
|
42
44
|
});
|
|
43
45
|
|
|
@@ -47,6 +49,7 @@ export var update_alert = function () {
|
|
|
47
49
|
}();
|
|
48
50
|
export var update_alert_field = function () {
|
|
49
51
|
var _ref4 = _asyncToGenerator(function* (sdk, alert_id, body, options) {
|
|
52
|
+
alert_id = encodeParam(alert_id);
|
|
50
53
|
return sdk.patch("/alerts/".concat(alert_id), null, body, options);
|
|
51
54
|
});
|
|
52
55
|
|
|
@@ -56,6 +59,7 @@ export var update_alert_field = function () {
|
|
|
56
59
|
}();
|
|
57
60
|
export var delete_alert = function () {
|
|
58
61
|
var _ref5 = _asyncToGenerator(function* (sdk, alert_id, options) {
|
|
62
|
+
alert_id = encodeParam(alert_id);
|
|
59
63
|
return sdk.delete("/alerts/".concat(alert_id), null, null, options);
|
|
60
64
|
});
|
|
61
65
|
|
|
@@ -74,6 +78,7 @@ export var create_alert = function () {
|
|
|
74
78
|
}();
|
|
75
79
|
export var enqueue_alert = function () {
|
|
76
80
|
var _ref7 = _asyncToGenerator(function* (sdk, alert_id, force, options) {
|
|
81
|
+
alert_id = encodeParam(alert_id);
|
|
77
82
|
return sdk.post("/alerts/".concat(alert_id, "/enqueue"), {
|
|
78
83
|
force
|
|
79
84
|
}, null, options);
|
|
@@ -97,6 +102,7 @@ export var login = function () {
|
|
|
97
102
|
}();
|
|
98
103
|
export var login_user = function () {
|
|
99
104
|
var _ref9 = _asyncToGenerator(function* (sdk, user_id, associative, options) {
|
|
105
|
+
user_id = encodeParam(user_id);
|
|
100
106
|
return sdk.post("/login/".concat(user_id), {
|
|
101
107
|
associative
|
|
102
108
|
}, null, options);
|
|
@@ -126,6 +132,7 @@ export var create_embed_secret = function () {
|
|
|
126
132
|
}();
|
|
127
133
|
export var delete_embed_secret = function () {
|
|
128
134
|
var _ref12 = _asyncToGenerator(function* (sdk, embed_secret_id, options) {
|
|
135
|
+
embed_secret_id = encodeParam(embed_secret_id);
|
|
129
136
|
return sdk.delete("/embed_config/secrets/".concat(embed_secret_id), null, null, options);
|
|
130
137
|
});
|
|
131
138
|
|
|
@@ -275,6 +282,7 @@ export var invalidate_tokens = function () {
|
|
|
275
282
|
export var activate_app_user = function () {
|
|
276
283
|
var _ref27 = _asyncToGenerator(function* (sdk, client_guid, user_id, fields, options) {
|
|
277
284
|
client_guid = encodeParam(client_guid);
|
|
285
|
+
user_id = encodeParam(user_id);
|
|
278
286
|
return sdk.post("/oauth_client_apps/".concat(client_guid, "/users/").concat(user_id), {
|
|
279
287
|
fields
|
|
280
288
|
}, null, options);
|
|
@@ -287,6 +295,7 @@ export var activate_app_user = function () {
|
|
|
287
295
|
export var deactivate_app_user = function () {
|
|
288
296
|
var _ref28 = _asyncToGenerator(function* (sdk, client_guid, user_id, fields, options) {
|
|
289
297
|
client_guid = encodeParam(client_guid);
|
|
298
|
+
user_id = encodeParam(user_id);
|
|
290
299
|
return sdk.delete("/oauth_client_apps/".concat(client_guid, "/users/").concat(user_id), {
|
|
291
300
|
fields
|
|
292
301
|
}, null, options);
|
|
@@ -527,6 +536,8 @@ export var search_user_login_lockouts = function () {
|
|
|
527
536
|
fields: request.fields,
|
|
528
537
|
page: request.page,
|
|
529
538
|
per_page: request.per_page,
|
|
539
|
+
limit: request.limit,
|
|
540
|
+
offset: request.offset,
|
|
530
541
|
sorts: request.sorts,
|
|
531
542
|
auth_type: request.auth_type,
|
|
532
543
|
full_name: request.full_name,
|
|
@@ -597,6 +608,7 @@ export var search_boards = function () {
|
|
|
597
608
|
}();
|
|
598
609
|
export var board = function () {
|
|
599
610
|
var _ref58 = _asyncToGenerator(function* (sdk, board_id, fields, options) {
|
|
611
|
+
board_id = encodeParam(board_id);
|
|
600
612
|
return sdk.get("/boards/".concat(board_id), {
|
|
601
613
|
fields
|
|
602
614
|
}, null, options);
|
|
@@ -608,6 +620,7 @@ export var board = function () {
|
|
|
608
620
|
}();
|
|
609
621
|
export var update_board = function () {
|
|
610
622
|
var _ref59 = _asyncToGenerator(function* (sdk, board_id, body, fields, options) {
|
|
623
|
+
board_id = encodeParam(board_id);
|
|
611
624
|
return sdk.patch("/boards/".concat(board_id), {
|
|
612
625
|
fields
|
|
613
626
|
}, body, options);
|
|
@@ -619,6 +632,7 @@ export var update_board = function () {
|
|
|
619
632
|
}();
|
|
620
633
|
export var delete_board = function () {
|
|
621
634
|
var _ref60 = _asyncToGenerator(function* (sdk, board_id, options) {
|
|
635
|
+
board_id = encodeParam(board_id);
|
|
622
636
|
return sdk.delete("/boards/".concat(board_id), null, null, options);
|
|
623
637
|
});
|
|
624
638
|
|
|
@@ -652,6 +666,7 @@ export var create_board_item = function () {
|
|
|
652
666
|
}();
|
|
653
667
|
export var board_item = function () {
|
|
654
668
|
var _ref63 = _asyncToGenerator(function* (sdk, board_item_id, fields, options) {
|
|
669
|
+
board_item_id = encodeParam(board_item_id);
|
|
655
670
|
return sdk.get("/board_items/".concat(board_item_id), {
|
|
656
671
|
fields
|
|
657
672
|
}, null, options);
|
|
@@ -663,6 +678,7 @@ export var board_item = function () {
|
|
|
663
678
|
}();
|
|
664
679
|
export var update_board_item = function () {
|
|
665
680
|
var _ref64 = _asyncToGenerator(function* (sdk, board_item_id, body, fields, options) {
|
|
681
|
+
board_item_id = encodeParam(board_item_id);
|
|
666
682
|
return sdk.patch("/board_items/".concat(board_item_id), {
|
|
667
683
|
fields
|
|
668
684
|
}, body, options);
|
|
@@ -674,6 +690,7 @@ export var update_board_item = function () {
|
|
|
674
690
|
}();
|
|
675
691
|
export var delete_board_item = function () {
|
|
676
692
|
var _ref65 = _asyncToGenerator(function* (sdk, board_item_id, options) {
|
|
693
|
+
board_item_id = encodeParam(board_item_id);
|
|
677
694
|
return sdk.delete("/board_items/".concat(board_item_id), null, null, options);
|
|
678
695
|
});
|
|
679
696
|
|
|
@@ -706,6 +723,7 @@ export var create_board_section = function () {
|
|
|
706
723
|
}();
|
|
707
724
|
export var board_section = function () {
|
|
708
725
|
var _ref68 = _asyncToGenerator(function* (sdk, board_section_id, fields, options) {
|
|
726
|
+
board_section_id = encodeParam(board_section_id);
|
|
709
727
|
return sdk.get("/board_sections/".concat(board_section_id), {
|
|
710
728
|
fields
|
|
711
729
|
}, null, options);
|
|
@@ -717,6 +735,7 @@ export var board_section = function () {
|
|
|
717
735
|
}();
|
|
718
736
|
export var update_board_section = function () {
|
|
719
737
|
var _ref69 = _asyncToGenerator(function* (sdk, board_section_id, body, fields, options) {
|
|
738
|
+
board_section_id = encodeParam(board_section_id);
|
|
720
739
|
return sdk.patch("/board_sections/".concat(board_section_id), {
|
|
721
740
|
fields
|
|
722
741
|
}, body, options);
|
|
@@ -728,6 +747,7 @@ export var update_board_section = function () {
|
|
|
728
747
|
}();
|
|
729
748
|
export var delete_board_section = function () {
|
|
730
749
|
var _ref70 = _asyncToGenerator(function* (sdk, board_section_id, options) {
|
|
750
|
+
board_section_id = encodeParam(board_section_id);
|
|
731
751
|
return sdk.delete("/board_sections/".concat(board_section_id), null, null, options);
|
|
732
752
|
});
|
|
733
753
|
|
|
@@ -829,545 +849,523 @@ export var delete_color_collection = function () {
|
|
|
829
849
|
return _ref79.apply(this, arguments);
|
|
830
850
|
};
|
|
831
851
|
}();
|
|
832
|
-
export var get_all_commands = function () {
|
|
833
|
-
var _ref80 = _asyncToGenerator(function* (sdk, request, options) {
|
|
834
|
-
return sdk.get('/commands', {
|
|
835
|
-
content_id: request.content_id,
|
|
836
|
-
content_type: request.content_type,
|
|
837
|
-
limit: request.limit
|
|
838
|
-
}, null, options);
|
|
839
|
-
});
|
|
840
|
-
|
|
841
|
-
return function get_all_commands(_x255, _x256, _x257) {
|
|
842
|
-
return _ref80.apply(this, arguments);
|
|
843
|
-
};
|
|
844
|
-
}();
|
|
845
|
-
export var create_command = function () {
|
|
846
|
-
var _ref81 = _asyncToGenerator(function* (sdk, body, options) {
|
|
847
|
-
return sdk.post('/commands', null, body, options);
|
|
848
|
-
});
|
|
849
|
-
|
|
850
|
-
return function create_command(_x258, _x259, _x260) {
|
|
851
|
-
return _ref81.apply(this, arguments);
|
|
852
|
-
};
|
|
853
|
-
}();
|
|
854
|
-
export var update_command = function () {
|
|
855
|
-
var _ref82 = _asyncToGenerator(function* (sdk, command_id, body, options) {
|
|
856
|
-
return sdk.patch("/commands/".concat(command_id), null, body, options);
|
|
857
|
-
});
|
|
858
|
-
|
|
859
|
-
return function update_command(_x261, _x262, _x263, _x264) {
|
|
860
|
-
return _ref82.apply(this, arguments);
|
|
861
|
-
};
|
|
862
|
-
}();
|
|
863
|
-
export var delete_command = function () {
|
|
864
|
-
var _ref83 = _asyncToGenerator(function* (sdk, command_id, options) {
|
|
865
|
-
return sdk.delete("/commands/".concat(command_id), null, null, options);
|
|
866
|
-
});
|
|
867
|
-
|
|
868
|
-
return function delete_command(_x265, _x266, _x267) {
|
|
869
|
-
return _ref83.apply(this, arguments);
|
|
870
|
-
};
|
|
871
|
-
}();
|
|
872
852
|
export var cloud_storage_configuration = function () {
|
|
873
|
-
var
|
|
853
|
+
var _ref80 = _asyncToGenerator(function* (sdk, options) {
|
|
874
854
|
return sdk.get('/cloud_storage', null, null, options);
|
|
875
855
|
});
|
|
876
856
|
|
|
877
|
-
return function cloud_storage_configuration(
|
|
878
|
-
return
|
|
857
|
+
return function cloud_storage_configuration(_x255, _x256) {
|
|
858
|
+
return _ref80.apply(this, arguments);
|
|
879
859
|
};
|
|
880
860
|
}();
|
|
881
861
|
export var update_cloud_storage_configuration = function () {
|
|
882
|
-
var
|
|
862
|
+
var _ref81 = _asyncToGenerator(function* (sdk, body, options) {
|
|
883
863
|
return sdk.patch('/cloud_storage', null, body, options);
|
|
884
864
|
});
|
|
885
865
|
|
|
886
|
-
return function update_cloud_storage_configuration(
|
|
887
|
-
return
|
|
866
|
+
return function update_cloud_storage_configuration(_x257, _x258, _x259) {
|
|
867
|
+
return _ref81.apply(this, arguments);
|
|
888
868
|
};
|
|
889
869
|
}();
|
|
890
870
|
export var custom_welcome_email = function () {
|
|
891
|
-
var
|
|
871
|
+
var _ref82 = _asyncToGenerator(function* (sdk, options) {
|
|
892
872
|
return sdk.get('/custom_welcome_email', null, null, options);
|
|
893
873
|
});
|
|
894
874
|
|
|
895
|
-
return function custom_welcome_email(
|
|
896
|
-
return
|
|
875
|
+
return function custom_welcome_email(_x260, _x261) {
|
|
876
|
+
return _ref82.apply(this, arguments);
|
|
897
877
|
};
|
|
898
878
|
}();
|
|
899
879
|
export var update_custom_welcome_email = function () {
|
|
900
|
-
var
|
|
880
|
+
var _ref83 = _asyncToGenerator(function* (sdk, body, send_test_welcome_email, options) {
|
|
901
881
|
return sdk.patch('/custom_welcome_email', {
|
|
902
882
|
send_test_welcome_email
|
|
903
883
|
}, body, options);
|
|
904
884
|
});
|
|
905
885
|
|
|
906
|
-
return function update_custom_welcome_email(
|
|
907
|
-
return
|
|
886
|
+
return function update_custom_welcome_email(_x262, _x263, _x264, _x265) {
|
|
887
|
+
return _ref83.apply(this, arguments);
|
|
908
888
|
};
|
|
909
889
|
}();
|
|
910
890
|
export var update_custom_welcome_email_test = function () {
|
|
911
|
-
var
|
|
891
|
+
var _ref84 = _asyncToGenerator(function* (sdk, body, options) {
|
|
912
892
|
return sdk.put('/custom_welcome_email_test', null, body, options);
|
|
913
893
|
});
|
|
914
894
|
|
|
915
|
-
return function update_custom_welcome_email_test(
|
|
916
|
-
return
|
|
895
|
+
return function update_custom_welcome_email_test(_x266, _x267, _x268) {
|
|
896
|
+
return _ref84.apply(this, arguments);
|
|
917
897
|
};
|
|
918
898
|
}();
|
|
919
899
|
export var digest_emails_enabled = function () {
|
|
920
|
-
var
|
|
900
|
+
var _ref85 = _asyncToGenerator(function* (sdk, options) {
|
|
921
901
|
return sdk.get('/digest_emails_enabled', null, null, options);
|
|
922
902
|
});
|
|
923
903
|
|
|
924
|
-
return function digest_emails_enabled(
|
|
925
|
-
return
|
|
904
|
+
return function digest_emails_enabled(_x269, _x270) {
|
|
905
|
+
return _ref85.apply(this, arguments);
|
|
926
906
|
};
|
|
927
907
|
}();
|
|
928
908
|
export var update_digest_emails_enabled = function () {
|
|
929
|
-
var
|
|
909
|
+
var _ref86 = _asyncToGenerator(function* (sdk, body, options) {
|
|
930
910
|
return sdk.patch('/digest_emails_enabled', null, body, options);
|
|
931
911
|
});
|
|
932
912
|
|
|
933
|
-
return function update_digest_emails_enabled(
|
|
934
|
-
return
|
|
913
|
+
return function update_digest_emails_enabled(_x271, _x272, _x273) {
|
|
914
|
+
return _ref86.apply(this, arguments);
|
|
935
915
|
};
|
|
936
916
|
}();
|
|
937
917
|
export var create_digest_email_send = function () {
|
|
938
|
-
var
|
|
918
|
+
var _ref87 = _asyncToGenerator(function* (sdk, options) {
|
|
939
919
|
return sdk.post('/digest_email_send', null, null, options);
|
|
940
920
|
});
|
|
941
921
|
|
|
942
|
-
return function create_digest_email_send(
|
|
943
|
-
return
|
|
922
|
+
return function create_digest_email_send(_x274, _x275) {
|
|
923
|
+
return _ref87.apply(this, arguments);
|
|
924
|
+
};
|
|
925
|
+
}();
|
|
926
|
+
export var public_egress_ip_addresses = function () {
|
|
927
|
+
var _ref88 = _asyncToGenerator(function* (sdk, options) {
|
|
928
|
+
return sdk.get('/public_egress_ip_addresses', null, null, options);
|
|
929
|
+
});
|
|
930
|
+
|
|
931
|
+
return function public_egress_ip_addresses(_x276, _x277) {
|
|
932
|
+
return _ref88.apply(this, arguments);
|
|
944
933
|
};
|
|
945
934
|
}();
|
|
946
935
|
export var internal_help_resources_content = function () {
|
|
947
|
-
var
|
|
936
|
+
var _ref89 = _asyncToGenerator(function* (sdk, options) {
|
|
948
937
|
return sdk.get('/internal_help_resources_content', null, null, options);
|
|
949
938
|
});
|
|
950
939
|
|
|
951
|
-
return function internal_help_resources_content(
|
|
952
|
-
return
|
|
940
|
+
return function internal_help_resources_content(_x278, _x279) {
|
|
941
|
+
return _ref89.apply(this, arguments);
|
|
953
942
|
};
|
|
954
943
|
}();
|
|
955
944
|
export var update_internal_help_resources_content = function () {
|
|
956
|
-
var
|
|
945
|
+
var _ref90 = _asyncToGenerator(function* (sdk, body, options) {
|
|
957
946
|
return sdk.patch('/internal_help_resources_content', null, body, options);
|
|
958
947
|
});
|
|
959
948
|
|
|
960
|
-
return function update_internal_help_resources_content(
|
|
961
|
-
return
|
|
949
|
+
return function update_internal_help_resources_content(_x280, _x281, _x282) {
|
|
950
|
+
return _ref90.apply(this, arguments);
|
|
962
951
|
};
|
|
963
952
|
}();
|
|
964
953
|
export var internal_help_resources = function () {
|
|
965
|
-
var
|
|
954
|
+
var _ref91 = _asyncToGenerator(function* (sdk, options) {
|
|
966
955
|
return sdk.get('/internal_help_resources_enabled', null, null, options);
|
|
967
956
|
});
|
|
968
957
|
|
|
969
|
-
return function internal_help_resources(
|
|
970
|
-
return
|
|
958
|
+
return function internal_help_resources(_x283, _x284) {
|
|
959
|
+
return _ref91.apply(this, arguments);
|
|
971
960
|
};
|
|
972
961
|
}();
|
|
973
962
|
export var update_internal_help_resources = function () {
|
|
974
|
-
var
|
|
963
|
+
var _ref92 = _asyncToGenerator(function* (sdk, body, options) {
|
|
975
964
|
return sdk.patch('/internal_help_resources', null, body, options);
|
|
976
965
|
});
|
|
977
966
|
|
|
978
|
-
return function update_internal_help_resources(
|
|
979
|
-
return
|
|
967
|
+
return function update_internal_help_resources(_x285, _x286, _x287) {
|
|
968
|
+
return _ref92.apply(this, arguments);
|
|
980
969
|
};
|
|
981
970
|
}();
|
|
982
971
|
export var all_legacy_features = function () {
|
|
983
|
-
var
|
|
972
|
+
var _ref93 = _asyncToGenerator(function* (sdk, options) {
|
|
984
973
|
return sdk.get('/legacy_features', null, null, options);
|
|
985
974
|
});
|
|
986
975
|
|
|
987
|
-
return function all_legacy_features(
|
|
988
|
-
return
|
|
976
|
+
return function all_legacy_features(_x288, _x289) {
|
|
977
|
+
return _ref93.apply(this, arguments);
|
|
989
978
|
};
|
|
990
979
|
}();
|
|
991
980
|
export var legacy_feature = function () {
|
|
992
|
-
var
|
|
981
|
+
var _ref94 = _asyncToGenerator(function* (sdk, legacy_feature_id, options) {
|
|
993
982
|
legacy_feature_id = encodeParam(legacy_feature_id);
|
|
994
983
|
return sdk.get("/legacy_features/".concat(legacy_feature_id), null, null, options);
|
|
995
984
|
});
|
|
996
985
|
|
|
997
|
-
return function legacy_feature(
|
|
998
|
-
return
|
|
986
|
+
return function legacy_feature(_x290, _x291, _x292) {
|
|
987
|
+
return _ref94.apply(this, arguments);
|
|
999
988
|
};
|
|
1000
989
|
}();
|
|
1001
990
|
export var update_legacy_feature = function () {
|
|
1002
|
-
var
|
|
991
|
+
var _ref95 = _asyncToGenerator(function* (sdk, legacy_feature_id, body, options) {
|
|
1003
992
|
legacy_feature_id = encodeParam(legacy_feature_id);
|
|
1004
993
|
return sdk.patch("/legacy_features/".concat(legacy_feature_id), null, body, options);
|
|
1005
994
|
});
|
|
1006
995
|
|
|
1007
|
-
return function update_legacy_feature(
|
|
1008
|
-
return
|
|
996
|
+
return function update_legacy_feature(_x293, _x294, _x295, _x296) {
|
|
997
|
+
return _ref95.apply(this, arguments);
|
|
1009
998
|
};
|
|
1010
999
|
}();
|
|
1011
1000
|
export var all_locales = function () {
|
|
1012
|
-
var
|
|
1001
|
+
var _ref96 = _asyncToGenerator(function* (sdk, options) {
|
|
1013
1002
|
return sdk.get('/locales', null, null, options);
|
|
1014
1003
|
});
|
|
1015
1004
|
|
|
1016
|
-
return function all_locales(
|
|
1017
|
-
return
|
|
1005
|
+
return function all_locales(_x297, _x298) {
|
|
1006
|
+
return _ref96.apply(this, arguments);
|
|
1018
1007
|
};
|
|
1019
1008
|
}();
|
|
1020
1009
|
export var mobile_settings = function () {
|
|
1021
|
-
var
|
|
1010
|
+
var _ref97 = _asyncToGenerator(function* (sdk, options) {
|
|
1022
1011
|
return sdk.get('/mobile/settings', null, null, options);
|
|
1023
1012
|
});
|
|
1024
1013
|
|
|
1025
|
-
return function mobile_settings(
|
|
1026
|
-
return
|
|
1014
|
+
return function mobile_settings(_x299, _x300) {
|
|
1015
|
+
return _ref97.apply(this, arguments);
|
|
1027
1016
|
};
|
|
1028
1017
|
}();
|
|
1029
1018
|
export var get_setting = function () {
|
|
1030
|
-
var
|
|
1019
|
+
var _ref98 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1031
1020
|
return sdk.get('/setting', {
|
|
1032
1021
|
fields
|
|
1033
1022
|
}, null, options);
|
|
1034
1023
|
});
|
|
1035
1024
|
|
|
1036
|
-
return function get_setting(
|
|
1037
|
-
return
|
|
1025
|
+
return function get_setting(_x301, _x302, _x303) {
|
|
1026
|
+
return _ref98.apply(this, arguments);
|
|
1038
1027
|
};
|
|
1039
1028
|
}();
|
|
1040
1029
|
export var set_setting = function () {
|
|
1041
|
-
var
|
|
1030
|
+
var _ref99 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
1042
1031
|
return sdk.patch('/setting', {
|
|
1043
1032
|
fields
|
|
1044
1033
|
}, body, options);
|
|
1045
1034
|
});
|
|
1046
1035
|
|
|
1047
|
-
return function set_setting(
|
|
1048
|
-
return
|
|
1036
|
+
return function set_setting(_x304, _x305, _x306, _x307) {
|
|
1037
|
+
return _ref99.apply(this, arguments);
|
|
1038
|
+
};
|
|
1039
|
+
}();
|
|
1040
|
+
export var set_smtp_settings = function () {
|
|
1041
|
+
var _ref100 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1042
|
+
return sdk.post('/smtp_settings', null, body, options);
|
|
1043
|
+
});
|
|
1044
|
+
|
|
1045
|
+
return function set_smtp_settings(_x308, _x309, _x310) {
|
|
1046
|
+
return _ref100.apply(this, arguments);
|
|
1049
1047
|
};
|
|
1050
1048
|
}();
|
|
1051
1049
|
export var smtp_status = function () {
|
|
1052
|
-
var
|
|
1050
|
+
var _ref101 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1053
1051
|
return sdk.get('/smtp_status', {
|
|
1054
1052
|
fields
|
|
1055
1053
|
}, null, options);
|
|
1056
1054
|
});
|
|
1057
1055
|
|
|
1058
|
-
return function smtp_status(
|
|
1059
|
-
return
|
|
1056
|
+
return function smtp_status(_x311, _x312, _x313) {
|
|
1057
|
+
return _ref101.apply(this, arguments);
|
|
1060
1058
|
};
|
|
1061
1059
|
}();
|
|
1062
1060
|
export var all_timezones = function () {
|
|
1063
|
-
var
|
|
1061
|
+
var _ref102 = _asyncToGenerator(function* (sdk, options) {
|
|
1064
1062
|
return sdk.get('/timezones', null, null, options);
|
|
1065
1063
|
});
|
|
1066
1064
|
|
|
1067
|
-
return function all_timezones(
|
|
1068
|
-
return
|
|
1065
|
+
return function all_timezones(_x314, _x315) {
|
|
1066
|
+
return _ref102.apply(this, arguments);
|
|
1069
1067
|
};
|
|
1070
1068
|
}();
|
|
1071
1069
|
export var versions = function () {
|
|
1072
|
-
var
|
|
1070
|
+
var _ref103 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1073
1071
|
return sdk.get('/versions', {
|
|
1074
1072
|
fields
|
|
1075
1073
|
}, null, options);
|
|
1076
1074
|
});
|
|
1077
1075
|
|
|
1078
|
-
return function versions(
|
|
1079
|
-
return
|
|
1076
|
+
return function versions(_x316, _x317, _x318) {
|
|
1077
|
+
return _ref103.apply(this, arguments);
|
|
1080
1078
|
};
|
|
1081
1079
|
}();
|
|
1082
1080
|
export var api_spec = function () {
|
|
1083
|
-
var
|
|
1081
|
+
var _ref104 = _asyncToGenerator(function* (sdk, api_version, specification, options) {
|
|
1084
1082
|
api_version = encodeParam(api_version);
|
|
1085
1083
|
specification = encodeParam(specification);
|
|
1086
1084
|
return sdk.get("/api_spec/".concat(api_version, "/").concat(specification), null, null, options);
|
|
1087
1085
|
});
|
|
1088
1086
|
|
|
1089
|
-
return function api_spec(
|
|
1090
|
-
return
|
|
1087
|
+
return function api_spec(_x319, _x320, _x321, _x322) {
|
|
1088
|
+
return _ref104.apply(this, arguments);
|
|
1091
1089
|
};
|
|
1092
1090
|
}();
|
|
1093
1091
|
export var whitelabel_configuration = function () {
|
|
1094
|
-
var
|
|
1092
|
+
var _ref105 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1095
1093
|
return sdk.get('/whitelabel_configuration', {
|
|
1096
1094
|
fields
|
|
1097
1095
|
}, null, options);
|
|
1098
1096
|
});
|
|
1099
1097
|
|
|
1100
|
-
return function whitelabel_configuration(
|
|
1101
|
-
return
|
|
1098
|
+
return function whitelabel_configuration(_x323, _x324, _x325) {
|
|
1099
|
+
return _ref105.apply(this, arguments);
|
|
1102
1100
|
};
|
|
1103
1101
|
}();
|
|
1104
1102
|
export var update_whitelabel_configuration = function () {
|
|
1105
|
-
var
|
|
1103
|
+
var _ref106 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1106
1104
|
return sdk.put('/whitelabel_configuration', null, body, options);
|
|
1107
1105
|
});
|
|
1108
1106
|
|
|
1109
|
-
return function update_whitelabel_configuration(
|
|
1110
|
-
return
|
|
1107
|
+
return function update_whitelabel_configuration(_x326, _x327, _x328) {
|
|
1108
|
+
return _ref106.apply(this, arguments);
|
|
1111
1109
|
};
|
|
1112
1110
|
}();
|
|
1113
1111
|
export var all_connections = function () {
|
|
1114
|
-
var
|
|
1112
|
+
var _ref107 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1115
1113
|
return sdk.get('/connections', {
|
|
1116
1114
|
fields
|
|
1117
1115
|
}, null, options);
|
|
1118
1116
|
});
|
|
1119
1117
|
|
|
1120
|
-
return function all_connections(
|
|
1121
|
-
return
|
|
1118
|
+
return function all_connections(_x329, _x330, _x331) {
|
|
1119
|
+
return _ref107.apply(this, arguments);
|
|
1122
1120
|
};
|
|
1123
1121
|
}();
|
|
1124
1122
|
export var create_connection = function () {
|
|
1125
|
-
var
|
|
1123
|
+
var _ref108 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1126
1124
|
return sdk.post('/connections', null, body, options);
|
|
1127
1125
|
});
|
|
1128
1126
|
|
|
1129
|
-
return function create_connection(
|
|
1130
|
-
return
|
|
1127
|
+
return function create_connection(_x332, _x333, _x334) {
|
|
1128
|
+
return _ref108.apply(this, arguments);
|
|
1131
1129
|
};
|
|
1132
1130
|
}();
|
|
1133
1131
|
export var connection = function () {
|
|
1134
|
-
var
|
|
1132
|
+
var _ref109 = _asyncToGenerator(function* (sdk, connection_name, fields, options) {
|
|
1135
1133
|
connection_name = encodeParam(connection_name);
|
|
1136
1134
|
return sdk.get("/connections/".concat(connection_name), {
|
|
1137
1135
|
fields
|
|
1138
1136
|
}, null, options);
|
|
1139
1137
|
});
|
|
1140
1138
|
|
|
1141
|
-
return function connection(
|
|
1142
|
-
return
|
|
1139
|
+
return function connection(_x335, _x336, _x337, _x338) {
|
|
1140
|
+
return _ref109.apply(this, arguments);
|
|
1143
1141
|
};
|
|
1144
1142
|
}();
|
|
1145
1143
|
export var update_connection = function () {
|
|
1146
|
-
var
|
|
1144
|
+
var _ref110 = _asyncToGenerator(function* (sdk, connection_name, body, options) {
|
|
1147
1145
|
connection_name = encodeParam(connection_name);
|
|
1148
1146
|
return sdk.patch("/connections/".concat(connection_name), null, body, options);
|
|
1149
1147
|
});
|
|
1150
1148
|
|
|
1151
|
-
return function update_connection(
|
|
1152
|
-
return
|
|
1149
|
+
return function update_connection(_x339, _x340, _x341, _x342) {
|
|
1150
|
+
return _ref110.apply(this, arguments);
|
|
1153
1151
|
};
|
|
1154
1152
|
}();
|
|
1155
1153
|
export var delete_connection = function () {
|
|
1156
|
-
var
|
|
1154
|
+
var _ref111 = _asyncToGenerator(function* (sdk, connection_name, options) {
|
|
1157
1155
|
connection_name = encodeParam(connection_name);
|
|
1158
1156
|
return sdk.delete("/connections/".concat(connection_name), null, null, options);
|
|
1159
1157
|
});
|
|
1160
1158
|
|
|
1161
|
-
return function delete_connection(
|
|
1162
|
-
return
|
|
1159
|
+
return function delete_connection(_x343, _x344, _x345) {
|
|
1160
|
+
return _ref111.apply(this, arguments);
|
|
1163
1161
|
};
|
|
1164
1162
|
}();
|
|
1165
1163
|
export var delete_connection_override = function () {
|
|
1166
|
-
var
|
|
1164
|
+
var _ref112 = _asyncToGenerator(function* (sdk, connection_name, override_context, options) {
|
|
1167
1165
|
connection_name = encodeParam(connection_name);
|
|
1168
1166
|
override_context = encodeParam(override_context);
|
|
1169
1167
|
return sdk.delete("/connections/".concat(connection_name, "/connection_override/").concat(override_context), null, null, options);
|
|
1170
1168
|
});
|
|
1171
1169
|
|
|
1172
|
-
return function delete_connection_override(
|
|
1173
|
-
return
|
|
1170
|
+
return function delete_connection_override(_x346, _x347, _x348, _x349) {
|
|
1171
|
+
return _ref112.apply(this, arguments);
|
|
1174
1172
|
};
|
|
1175
1173
|
}();
|
|
1176
1174
|
export var test_connection = function () {
|
|
1177
|
-
var
|
|
1175
|
+
var _ref113 = _asyncToGenerator(function* (sdk, connection_name, tests, options) {
|
|
1178
1176
|
connection_name = encodeParam(connection_name);
|
|
1179
1177
|
return sdk.put("/connections/".concat(connection_name, "/test"), {
|
|
1180
1178
|
tests
|
|
1181
1179
|
}, null, options);
|
|
1182
1180
|
});
|
|
1183
1181
|
|
|
1184
|
-
return function test_connection(
|
|
1185
|
-
return
|
|
1182
|
+
return function test_connection(_x350, _x351, _x352, _x353) {
|
|
1183
|
+
return _ref113.apply(this, arguments);
|
|
1186
1184
|
};
|
|
1187
1185
|
}();
|
|
1188
1186
|
export var test_connection_config = function () {
|
|
1189
|
-
var
|
|
1187
|
+
var _ref114 = _asyncToGenerator(function* (sdk, body, tests, options) {
|
|
1190
1188
|
return sdk.put('/connections/test', {
|
|
1191
1189
|
tests
|
|
1192
1190
|
}, body, options);
|
|
1193
1191
|
});
|
|
1194
1192
|
|
|
1195
|
-
return function test_connection_config(
|
|
1196
|
-
return
|
|
1193
|
+
return function test_connection_config(_x354, _x355, _x356, _x357) {
|
|
1194
|
+
return _ref114.apply(this, arguments);
|
|
1197
1195
|
};
|
|
1198
1196
|
}();
|
|
1199
1197
|
export var all_dialect_infos = function () {
|
|
1200
|
-
var
|
|
1198
|
+
var _ref115 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1201
1199
|
return sdk.get('/dialect_info', {
|
|
1202
1200
|
fields
|
|
1203
1201
|
}, null, options);
|
|
1204
1202
|
});
|
|
1205
1203
|
|
|
1206
|
-
return function all_dialect_infos(
|
|
1207
|
-
return
|
|
1204
|
+
return function all_dialect_infos(_x358, _x359, _x360) {
|
|
1205
|
+
return _ref115.apply(this, arguments);
|
|
1208
1206
|
};
|
|
1209
1207
|
}();
|
|
1210
1208
|
export var all_external_oauth_applications = function () {
|
|
1211
|
-
var
|
|
1209
|
+
var _ref116 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1212
1210
|
return sdk.get('/external_oauth_applications', {
|
|
1213
1211
|
name: request.name,
|
|
1214
1212
|
client_id: request.client_id
|
|
1215
1213
|
}, null, options);
|
|
1216
1214
|
});
|
|
1217
1215
|
|
|
1218
|
-
return function all_external_oauth_applications(
|
|
1219
|
-
return
|
|
1216
|
+
return function all_external_oauth_applications(_x361, _x362, _x363) {
|
|
1217
|
+
return _ref116.apply(this, arguments);
|
|
1220
1218
|
};
|
|
1221
1219
|
}();
|
|
1222
1220
|
export var create_external_oauth_application = function () {
|
|
1223
|
-
var
|
|
1221
|
+
var _ref117 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1224
1222
|
return sdk.post('/external_oauth_applications', null, body, options);
|
|
1225
1223
|
});
|
|
1226
1224
|
|
|
1227
|
-
return function create_external_oauth_application(
|
|
1228
|
-
return
|
|
1225
|
+
return function create_external_oauth_application(_x364, _x365, _x366) {
|
|
1226
|
+
return _ref117.apply(this, arguments);
|
|
1229
1227
|
};
|
|
1230
1228
|
}();
|
|
1231
1229
|
export var create_oauth_application_user_state = function () {
|
|
1232
|
-
var
|
|
1230
|
+
var _ref118 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1233
1231
|
return sdk.post('/external_oauth_applications/user_state', null, body, options);
|
|
1234
1232
|
});
|
|
1235
1233
|
|
|
1236
|
-
return function create_oauth_application_user_state(
|
|
1237
|
-
return
|
|
1234
|
+
return function create_oauth_application_user_state(_x367, _x368, _x369) {
|
|
1235
|
+
return _ref118.apply(this, arguments);
|
|
1238
1236
|
};
|
|
1239
1237
|
}();
|
|
1240
1238
|
export var all_ssh_servers = function () {
|
|
1241
|
-
var
|
|
1239
|
+
var _ref119 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1242
1240
|
return sdk.get('/ssh_servers', {
|
|
1243
1241
|
fields
|
|
1244
1242
|
}, null, options);
|
|
1245
1243
|
});
|
|
1246
1244
|
|
|
1247
|
-
return function all_ssh_servers(
|
|
1248
|
-
return
|
|
1245
|
+
return function all_ssh_servers(_x370, _x371, _x372) {
|
|
1246
|
+
return _ref119.apply(this, arguments);
|
|
1249
1247
|
};
|
|
1250
1248
|
}();
|
|
1251
1249
|
export var create_ssh_server = function () {
|
|
1252
|
-
var
|
|
1250
|
+
var _ref120 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1253
1251
|
return sdk.post('/ssh_servers', null, body, options);
|
|
1254
1252
|
});
|
|
1255
1253
|
|
|
1256
|
-
return function create_ssh_server(
|
|
1257
|
-
return
|
|
1254
|
+
return function create_ssh_server(_x373, _x374, _x375) {
|
|
1255
|
+
return _ref120.apply(this, arguments);
|
|
1258
1256
|
};
|
|
1259
1257
|
}();
|
|
1260
1258
|
export var ssh_server = function () {
|
|
1261
|
-
var
|
|
1259
|
+
var _ref121 = _asyncToGenerator(function* (sdk, ssh_server_id, options) {
|
|
1262
1260
|
ssh_server_id = encodeParam(ssh_server_id);
|
|
1263
1261
|
return sdk.get("/ssh_server/".concat(ssh_server_id), null, null, options);
|
|
1264
1262
|
});
|
|
1265
1263
|
|
|
1266
|
-
return function ssh_server(
|
|
1267
|
-
return
|
|
1264
|
+
return function ssh_server(_x376, _x377, _x378) {
|
|
1265
|
+
return _ref121.apply(this, arguments);
|
|
1268
1266
|
};
|
|
1269
1267
|
}();
|
|
1270
1268
|
export var update_ssh_server = function () {
|
|
1271
|
-
var
|
|
1269
|
+
var _ref122 = _asyncToGenerator(function* (sdk, ssh_server_id, body, options) {
|
|
1272
1270
|
ssh_server_id = encodeParam(ssh_server_id);
|
|
1273
1271
|
return sdk.patch("/ssh_server/".concat(ssh_server_id), null, body, options);
|
|
1274
1272
|
});
|
|
1275
1273
|
|
|
1276
|
-
return function update_ssh_server(
|
|
1277
|
-
return
|
|
1274
|
+
return function update_ssh_server(_x379, _x380, _x381, _x382) {
|
|
1275
|
+
return _ref122.apply(this, arguments);
|
|
1278
1276
|
};
|
|
1279
1277
|
}();
|
|
1280
1278
|
export var delete_ssh_server = function () {
|
|
1281
|
-
var
|
|
1279
|
+
var _ref123 = _asyncToGenerator(function* (sdk, ssh_server_id, options) {
|
|
1282
1280
|
ssh_server_id = encodeParam(ssh_server_id);
|
|
1283
1281
|
return sdk.delete("/ssh_server/".concat(ssh_server_id), null, null, options);
|
|
1284
1282
|
});
|
|
1285
1283
|
|
|
1286
|
-
return function delete_ssh_server(
|
|
1287
|
-
return
|
|
1284
|
+
return function delete_ssh_server(_x383, _x384, _x385) {
|
|
1285
|
+
return _ref123.apply(this, arguments);
|
|
1288
1286
|
};
|
|
1289
1287
|
}();
|
|
1290
1288
|
export var test_ssh_server = function () {
|
|
1291
|
-
var
|
|
1289
|
+
var _ref124 = _asyncToGenerator(function* (sdk, ssh_server_id, options) {
|
|
1292
1290
|
ssh_server_id = encodeParam(ssh_server_id);
|
|
1293
1291
|
return sdk.get("/ssh_server/".concat(ssh_server_id, "/test"), null, null, options);
|
|
1294
1292
|
});
|
|
1295
1293
|
|
|
1296
|
-
return function test_ssh_server(
|
|
1297
|
-
return
|
|
1294
|
+
return function test_ssh_server(_x386, _x387, _x388) {
|
|
1295
|
+
return _ref124.apply(this, arguments);
|
|
1298
1296
|
};
|
|
1299
1297
|
}();
|
|
1300
1298
|
export var all_ssh_tunnels = function () {
|
|
1301
|
-
var
|
|
1299
|
+
var _ref125 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1302
1300
|
return sdk.get('/ssh_tunnels', {
|
|
1303
1301
|
fields
|
|
1304
1302
|
}, null, options);
|
|
1305
1303
|
});
|
|
1306
1304
|
|
|
1307
|
-
return function all_ssh_tunnels(
|
|
1308
|
-
return
|
|
1305
|
+
return function all_ssh_tunnels(_x389, _x390, _x391) {
|
|
1306
|
+
return _ref125.apply(this, arguments);
|
|
1309
1307
|
};
|
|
1310
1308
|
}();
|
|
1311
1309
|
export var create_ssh_tunnel = function () {
|
|
1312
|
-
var
|
|
1310
|
+
var _ref126 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1313
1311
|
return sdk.post('/ssh_tunnels', null, body, options);
|
|
1314
1312
|
});
|
|
1315
1313
|
|
|
1316
|
-
return function create_ssh_tunnel(
|
|
1317
|
-
return
|
|
1314
|
+
return function create_ssh_tunnel(_x392, _x393, _x394) {
|
|
1315
|
+
return _ref126.apply(this, arguments);
|
|
1318
1316
|
};
|
|
1319
1317
|
}();
|
|
1320
1318
|
export var ssh_tunnel = function () {
|
|
1321
|
-
var
|
|
1319
|
+
var _ref127 = _asyncToGenerator(function* (sdk, ssh_tunnel_id, options) {
|
|
1322
1320
|
ssh_tunnel_id = encodeParam(ssh_tunnel_id);
|
|
1323
1321
|
return sdk.get("/ssh_tunnel/".concat(ssh_tunnel_id), null, null, options);
|
|
1324
1322
|
});
|
|
1325
1323
|
|
|
1326
|
-
return function ssh_tunnel(
|
|
1327
|
-
return
|
|
1324
|
+
return function ssh_tunnel(_x395, _x396, _x397) {
|
|
1325
|
+
return _ref127.apply(this, arguments);
|
|
1328
1326
|
};
|
|
1329
1327
|
}();
|
|
1330
1328
|
export var update_ssh_tunnel = function () {
|
|
1331
|
-
var
|
|
1329
|
+
var _ref128 = _asyncToGenerator(function* (sdk, ssh_tunnel_id, body, options) {
|
|
1332
1330
|
ssh_tunnel_id = encodeParam(ssh_tunnel_id);
|
|
1333
1331
|
return sdk.patch("/ssh_tunnel/".concat(ssh_tunnel_id), null, body, options);
|
|
1334
1332
|
});
|
|
1335
1333
|
|
|
1336
|
-
return function update_ssh_tunnel(
|
|
1337
|
-
return
|
|
1334
|
+
return function update_ssh_tunnel(_x398, _x399, _x400, _x401) {
|
|
1335
|
+
return _ref128.apply(this, arguments);
|
|
1338
1336
|
};
|
|
1339
1337
|
}();
|
|
1340
1338
|
export var delete_ssh_tunnel = function () {
|
|
1341
|
-
var
|
|
1339
|
+
var _ref129 = _asyncToGenerator(function* (sdk, ssh_tunnel_id, options) {
|
|
1342
1340
|
ssh_tunnel_id = encodeParam(ssh_tunnel_id);
|
|
1343
1341
|
return sdk.delete("/ssh_tunnel/".concat(ssh_tunnel_id), null, null, options);
|
|
1344
1342
|
});
|
|
1345
1343
|
|
|
1346
|
-
return function delete_ssh_tunnel(
|
|
1347
|
-
return
|
|
1344
|
+
return function delete_ssh_tunnel(_x402, _x403, _x404) {
|
|
1345
|
+
return _ref129.apply(this, arguments);
|
|
1348
1346
|
};
|
|
1349
1347
|
}();
|
|
1350
1348
|
export var test_ssh_tunnel = function () {
|
|
1351
|
-
var
|
|
1349
|
+
var _ref130 = _asyncToGenerator(function* (sdk, ssh_tunnel_id, options) {
|
|
1352
1350
|
ssh_tunnel_id = encodeParam(ssh_tunnel_id);
|
|
1353
1351
|
return sdk.get("/ssh_tunnel/".concat(ssh_tunnel_id, "/test"), null, null, options);
|
|
1354
1352
|
});
|
|
1355
1353
|
|
|
1356
|
-
return function test_ssh_tunnel(
|
|
1357
|
-
return
|
|
1354
|
+
return function test_ssh_tunnel(_x405, _x406, _x407) {
|
|
1355
|
+
return _ref130.apply(this, arguments);
|
|
1358
1356
|
};
|
|
1359
1357
|
}();
|
|
1360
1358
|
export var ssh_public_key = function () {
|
|
1361
|
-
var
|
|
1359
|
+
var _ref131 = _asyncToGenerator(function* (sdk, options) {
|
|
1362
1360
|
return sdk.get('/ssh_public_key', null, null, options);
|
|
1363
1361
|
});
|
|
1364
1362
|
|
|
1365
|
-
return function ssh_public_key(
|
|
1366
|
-
return
|
|
1363
|
+
return function ssh_public_key(_x408, _x409) {
|
|
1364
|
+
return _ref131.apply(this, arguments);
|
|
1367
1365
|
};
|
|
1368
1366
|
}();
|
|
1369
1367
|
export var search_content_favorites = function () {
|
|
1370
|
-
var
|
|
1368
|
+
var _ref132 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1371
1369
|
return sdk.get('/content_favorite/search', {
|
|
1372
1370
|
id: request.id,
|
|
1373
1371
|
user_id: request.user_id,
|
|
@@ -1383,115 +1381,120 @@ export var search_content_favorites = function () {
|
|
|
1383
1381
|
}, null, options);
|
|
1384
1382
|
});
|
|
1385
1383
|
|
|
1386
|
-
return function search_content_favorites(
|
|
1387
|
-
return
|
|
1384
|
+
return function search_content_favorites(_x410, _x411, _x412) {
|
|
1385
|
+
return _ref132.apply(this, arguments);
|
|
1388
1386
|
};
|
|
1389
1387
|
}();
|
|
1390
1388
|
export var content_favorite = function () {
|
|
1391
|
-
var
|
|
1389
|
+
var _ref133 = _asyncToGenerator(function* (sdk, content_favorite_id, fields, options) {
|
|
1390
|
+
content_favorite_id = encodeParam(content_favorite_id);
|
|
1392
1391
|
return sdk.get("/content_favorite/".concat(content_favorite_id), {
|
|
1393
1392
|
fields
|
|
1394
1393
|
}, null, options);
|
|
1395
1394
|
});
|
|
1396
1395
|
|
|
1397
|
-
return function content_favorite(
|
|
1398
|
-
return
|
|
1396
|
+
return function content_favorite(_x413, _x414, _x415, _x416) {
|
|
1397
|
+
return _ref133.apply(this, arguments);
|
|
1399
1398
|
};
|
|
1400
1399
|
}();
|
|
1401
1400
|
export var delete_content_favorite = function () {
|
|
1402
|
-
var
|
|
1401
|
+
var _ref134 = _asyncToGenerator(function* (sdk, content_favorite_id, options) {
|
|
1402
|
+
content_favorite_id = encodeParam(content_favorite_id);
|
|
1403
1403
|
return sdk.delete("/content_favorite/".concat(content_favorite_id), null, null, options);
|
|
1404
1404
|
});
|
|
1405
1405
|
|
|
1406
|
-
return function delete_content_favorite(
|
|
1407
|
-
return
|
|
1406
|
+
return function delete_content_favorite(_x417, _x418, _x419) {
|
|
1407
|
+
return _ref134.apply(this, arguments);
|
|
1408
1408
|
};
|
|
1409
1409
|
}();
|
|
1410
1410
|
export var create_content_favorite = function () {
|
|
1411
|
-
var
|
|
1411
|
+
var _ref135 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1412
1412
|
return sdk.post('/content_favorite', null, body, options);
|
|
1413
1413
|
});
|
|
1414
1414
|
|
|
1415
|
-
return function create_content_favorite(
|
|
1416
|
-
return
|
|
1415
|
+
return function create_content_favorite(_x420, _x421, _x422) {
|
|
1416
|
+
return _ref135.apply(this, arguments);
|
|
1417
1417
|
};
|
|
1418
1418
|
}();
|
|
1419
1419
|
export var all_content_metadatas = function () {
|
|
1420
|
-
var
|
|
1420
|
+
var _ref136 = _asyncToGenerator(function* (sdk, parent_id, fields, options) {
|
|
1421
1421
|
return sdk.get('/content_metadata', {
|
|
1422
1422
|
parent_id,
|
|
1423
1423
|
fields
|
|
1424
1424
|
}, null, options);
|
|
1425
1425
|
});
|
|
1426
1426
|
|
|
1427
|
-
return function all_content_metadatas(
|
|
1428
|
-
return
|
|
1427
|
+
return function all_content_metadatas(_x423, _x424, _x425, _x426) {
|
|
1428
|
+
return _ref136.apply(this, arguments);
|
|
1429
1429
|
};
|
|
1430
1430
|
}();
|
|
1431
1431
|
export var content_metadata = function () {
|
|
1432
|
-
var
|
|
1432
|
+
var _ref137 = _asyncToGenerator(function* (sdk, content_metadata_id, fields, options) {
|
|
1433
|
+
content_metadata_id = encodeParam(content_metadata_id);
|
|
1433
1434
|
return sdk.get("/content_metadata/".concat(content_metadata_id), {
|
|
1434
1435
|
fields
|
|
1435
1436
|
}, null, options);
|
|
1436
1437
|
});
|
|
1437
1438
|
|
|
1438
|
-
return function content_metadata(
|
|
1439
|
-
return
|
|
1439
|
+
return function content_metadata(_x427, _x428, _x429, _x430) {
|
|
1440
|
+
return _ref137.apply(this, arguments);
|
|
1440
1441
|
};
|
|
1441
1442
|
}();
|
|
1442
1443
|
export var update_content_metadata = function () {
|
|
1443
|
-
var
|
|
1444
|
+
var _ref138 = _asyncToGenerator(function* (sdk, content_metadata_id, body, options) {
|
|
1445
|
+
content_metadata_id = encodeParam(content_metadata_id);
|
|
1444
1446
|
return sdk.patch("/content_metadata/".concat(content_metadata_id), null, body, options);
|
|
1445
1447
|
});
|
|
1446
1448
|
|
|
1447
|
-
return function update_content_metadata(
|
|
1448
|
-
return
|
|
1449
|
+
return function update_content_metadata(_x431, _x432, _x433, _x434) {
|
|
1450
|
+
return _ref138.apply(this, arguments);
|
|
1449
1451
|
};
|
|
1450
1452
|
}();
|
|
1451
1453
|
export var all_content_metadata_accesses = function () {
|
|
1452
|
-
var
|
|
1454
|
+
var _ref139 = _asyncToGenerator(function* (sdk, content_metadata_id, fields, options) {
|
|
1453
1455
|
return sdk.get('/content_metadata_access', {
|
|
1454
1456
|
content_metadata_id,
|
|
1455
1457
|
fields
|
|
1456
1458
|
}, null, options);
|
|
1457
1459
|
});
|
|
1458
1460
|
|
|
1459
|
-
return function all_content_metadata_accesses(
|
|
1460
|
-
return
|
|
1461
|
+
return function all_content_metadata_accesses(_x435, _x436, _x437, _x438) {
|
|
1462
|
+
return _ref139.apply(this, arguments);
|
|
1461
1463
|
};
|
|
1462
1464
|
}();
|
|
1463
1465
|
export var create_content_metadata_access = function () {
|
|
1464
|
-
var
|
|
1466
|
+
var _ref140 = _asyncToGenerator(function* (sdk, body, send_boards_notification_email, options) {
|
|
1465
1467
|
return sdk.post('/content_metadata_access', {
|
|
1466
1468
|
send_boards_notification_email
|
|
1467
1469
|
}, body, options);
|
|
1468
1470
|
});
|
|
1469
1471
|
|
|
1470
|
-
return function create_content_metadata_access(
|
|
1471
|
-
return
|
|
1472
|
+
return function create_content_metadata_access(_x439, _x440, _x441, _x442) {
|
|
1473
|
+
return _ref140.apply(this, arguments);
|
|
1472
1474
|
};
|
|
1473
1475
|
}();
|
|
1474
1476
|
export var update_content_metadata_access = function () {
|
|
1475
|
-
var
|
|
1477
|
+
var _ref141 = _asyncToGenerator(function* (sdk, content_metadata_access_id, body, options) {
|
|
1476
1478
|
content_metadata_access_id = encodeParam(content_metadata_access_id);
|
|
1477
1479
|
return sdk.put("/content_metadata_access/".concat(content_metadata_access_id), null, body, options);
|
|
1478
1480
|
});
|
|
1479
1481
|
|
|
1480
|
-
return function update_content_metadata_access(
|
|
1481
|
-
return
|
|
1482
|
+
return function update_content_metadata_access(_x443, _x444, _x445, _x446) {
|
|
1483
|
+
return _ref141.apply(this, arguments);
|
|
1482
1484
|
};
|
|
1483
1485
|
}();
|
|
1484
1486
|
export var delete_content_metadata_access = function () {
|
|
1485
|
-
var
|
|
1487
|
+
var _ref142 = _asyncToGenerator(function* (sdk, content_metadata_access_id, options) {
|
|
1488
|
+
content_metadata_access_id = encodeParam(content_metadata_access_id);
|
|
1486
1489
|
return sdk.delete("/content_metadata_access/".concat(content_metadata_access_id), null, null, options);
|
|
1487
1490
|
});
|
|
1488
1491
|
|
|
1489
|
-
return function delete_content_metadata_access(
|
|
1490
|
-
return
|
|
1492
|
+
return function delete_content_metadata_access(_x447, _x448, _x449) {
|
|
1493
|
+
return _ref142.apply(this, arguments);
|
|
1491
1494
|
};
|
|
1492
1495
|
}();
|
|
1493
1496
|
export var content_thumbnail = function () {
|
|
1494
|
-
var
|
|
1497
|
+
var _ref143 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1495
1498
|
request.type = encodeParam(request.type);
|
|
1496
1499
|
request.resource_id = encodeParam(request.resource_id);
|
|
1497
1500
|
return sdk.get("/content_thumbnail/".concat(request.type, "/").concat(request.resource_id), {
|
|
@@ -1502,23 +1505,23 @@ export var content_thumbnail = function () {
|
|
|
1502
1505
|
}, null, options);
|
|
1503
1506
|
});
|
|
1504
1507
|
|
|
1505
|
-
return function content_thumbnail(
|
|
1506
|
-
return
|
|
1508
|
+
return function content_thumbnail(_x450, _x451, _x452) {
|
|
1509
|
+
return _ref143.apply(this, arguments);
|
|
1507
1510
|
};
|
|
1508
1511
|
}();
|
|
1509
1512
|
export var content_validation = function () {
|
|
1510
|
-
var
|
|
1513
|
+
var _ref144 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1511
1514
|
return sdk.get('/content_validation', {
|
|
1512
1515
|
fields
|
|
1513
1516
|
}, null, options);
|
|
1514
1517
|
});
|
|
1515
1518
|
|
|
1516
|
-
return function content_validation(
|
|
1517
|
-
return
|
|
1519
|
+
return function content_validation(_x453, _x454, _x455) {
|
|
1520
|
+
return _ref144.apply(this, arguments);
|
|
1518
1521
|
};
|
|
1519
1522
|
}();
|
|
1520
1523
|
export var search_content_views = function () {
|
|
1521
|
-
var
|
|
1524
|
+
var _ref145 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1522
1525
|
return sdk.get('/content_view/search', {
|
|
1523
1526
|
view_count: request.view_count,
|
|
1524
1527
|
group_id: request.group_id,
|
|
@@ -1536,12 +1539,12 @@ export var search_content_views = function () {
|
|
|
1536
1539
|
}, null, options);
|
|
1537
1540
|
});
|
|
1538
1541
|
|
|
1539
|
-
return function search_content_views(
|
|
1540
|
-
return
|
|
1542
|
+
return function search_content_views(_x456, _x457, _x458) {
|
|
1543
|
+
return _ref145.apply(this, arguments);
|
|
1541
1544
|
};
|
|
1542
1545
|
}();
|
|
1543
1546
|
export var vector_thumbnail = function () {
|
|
1544
|
-
var
|
|
1547
|
+
var _ref146 = _asyncToGenerator(function* (sdk, type, resource_id, reload, options) {
|
|
1545
1548
|
type = encodeParam(type);
|
|
1546
1549
|
resource_id = encodeParam(resource_id);
|
|
1547
1550
|
return sdk.get("/vector_thumbnail/".concat(type, "/").concat(resource_id), {
|
|
@@ -1549,32 +1552,32 @@ export var vector_thumbnail = function () {
|
|
|
1549
1552
|
}, null, options);
|
|
1550
1553
|
});
|
|
1551
1554
|
|
|
1552
|
-
return function vector_thumbnail(
|
|
1553
|
-
return
|
|
1555
|
+
return function vector_thumbnail(_x459, _x460, _x461, _x462, _x463) {
|
|
1556
|
+
return _ref146.apply(this, arguments);
|
|
1554
1557
|
};
|
|
1555
1558
|
}();
|
|
1556
1559
|
export var all_dashboards = function () {
|
|
1557
|
-
var
|
|
1560
|
+
var _ref147 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1558
1561
|
return sdk.get('/dashboards', {
|
|
1559
1562
|
fields
|
|
1560
1563
|
}, null, options);
|
|
1561
1564
|
});
|
|
1562
1565
|
|
|
1563
|
-
return function all_dashboards(
|
|
1564
|
-
return
|
|
1566
|
+
return function all_dashboards(_x464, _x465, _x466) {
|
|
1567
|
+
return _ref147.apply(this, arguments);
|
|
1565
1568
|
};
|
|
1566
1569
|
}();
|
|
1567
1570
|
export var create_dashboard = function () {
|
|
1568
|
-
var
|
|
1571
|
+
var _ref148 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1569
1572
|
return sdk.post('/dashboards', null, body, options);
|
|
1570
1573
|
});
|
|
1571
1574
|
|
|
1572
|
-
return function create_dashboard(
|
|
1573
|
-
return
|
|
1575
|
+
return function create_dashboard(_x467, _x468, _x469) {
|
|
1576
|
+
return _ref148.apply(this, arguments);
|
|
1574
1577
|
};
|
|
1575
1578
|
}();
|
|
1576
1579
|
export var search_dashboards = function () {
|
|
1577
|
-
var
|
|
1580
|
+
var _ref149 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1578
1581
|
return sdk.get('/dashboards/search', {
|
|
1579
1582
|
id: request.id,
|
|
1580
1583
|
slug: request.slug,
|
|
@@ -1598,12 +1601,12 @@ export var search_dashboards = function () {
|
|
|
1598
1601
|
}, null, options);
|
|
1599
1602
|
});
|
|
1600
1603
|
|
|
1601
|
-
return function search_dashboards(
|
|
1602
|
-
return
|
|
1604
|
+
return function search_dashboards(_x470, _x471, _x472) {
|
|
1605
|
+
return _ref149.apply(this, arguments);
|
|
1603
1606
|
};
|
|
1604
1607
|
}();
|
|
1605
1608
|
export var import_lookml_dashboard = function () {
|
|
1606
|
-
var
|
|
1609
|
+
var _ref150 = _asyncToGenerator(function* (sdk, lookml_dashboard_id, space_id, body, raw_locale, options) {
|
|
1607
1610
|
lookml_dashboard_id = encodeParam(lookml_dashboard_id);
|
|
1608
1611
|
space_id = encodeParam(space_id);
|
|
1609
1612
|
return sdk.post("/dashboards/".concat(lookml_dashboard_id, "/import/").concat(space_id), {
|
|
@@ -1611,100 +1614,109 @@ export var import_lookml_dashboard = function () {
|
|
|
1611
1614
|
}, body, options);
|
|
1612
1615
|
});
|
|
1613
1616
|
|
|
1614
|
-
return function import_lookml_dashboard(
|
|
1615
|
-
return
|
|
1617
|
+
return function import_lookml_dashboard(_x473, _x474, _x475, _x476, _x477, _x478) {
|
|
1618
|
+
return _ref150.apply(this, arguments);
|
|
1616
1619
|
};
|
|
1617
1620
|
}();
|
|
1618
1621
|
export var sync_lookml_dashboard = function () {
|
|
1619
|
-
var
|
|
1622
|
+
var _ref151 = _asyncToGenerator(function* (sdk, lookml_dashboard_id, body, raw_locale, options) {
|
|
1620
1623
|
lookml_dashboard_id = encodeParam(lookml_dashboard_id);
|
|
1621
1624
|
return sdk.patch("/dashboards/".concat(lookml_dashboard_id, "/sync"), {
|
|
1622
1625
|
raw_locale
|
|
1623
1626
|
}, body, options);
|
|
1624
1627
|
});
|
|
1625
1628
|
|
|
1626
|
-
return function sync_lookml_dashboard(
|
|
1627
|
-
return
|
|
1629
|
+
return function sync_lookml_dashboard(_x479, _x480, _x481, _x482, _x483) {
|
|
1630
|
+
return _ref151.apply(this, arguments);
|
|
1628
1631
|
};
|
|
1629
1632
|
}();
|
|
1630
1633
|
export var dashboard = function () {
|
|
1631
|
-
var
|
|
1634
|
+
var _ref152 = _asyncToGenerator(function* (sdk, dashboard_id, fields, options) {
|
|
1632
1635
|
dashboard_id = encodeParam(dashboard_id);
|
|
1633
1636
|
return sdk.get("/dashboards/".concat(dashboard_id), {
|
|
1634
1637
|
fields
|
|
1635
1638
|
}, null, options);
|
|
1636
1639
|
});
|
|
1637
1640
|
|
|
1638
|
-
return function dashboard(
|
|
1639
|
-
return
|
|
1641
|
+
return function dashboard(_x484, _x485, _x486, _x487) {
|
|
1642
|
+
return _ref152.apply(this, arguments);
|
|
1640
1643
|
};
|
|
1641
1644
|
}();
|
|
1642
1645
|
export var update_dashboard = function () {
|
|
1643
|
-
var
|
|
1646
|
+
var _ref153 = _asyncToGenerator(function* (sdk, dashboard_id, body, options) {
|
|
1644
1647
|
dashboard_id = encodeParam(dashboard_id);
|
|
1645
1648
|
return sdk.patch("/dashboards/".concat(dashboard_id), null, body, options);
|
|
1646
1649
|
});
|
|
1647
1650
|
|
|
1648
|
-
return function update_dashboard(
|
|
1649
|
-
return
|
|
1651
|
+
return function update_dashboard(_x488, _x489, _x490, _x491) {
|
|
1652
|
+
return _ref153.apply(this, arguments);
|
|
1650
1653
|
};
|
|
1651
1654
|
}();
|
|
1652
1655
|
export var delete_dashboard = function () {
|
|
1653
|
-
var
|
|
1656
|
+
var _ref154 = _asyncToGenerator(function* (sdk, dashboard_id, options) {
|
|
1654
1657
|
dashboard_id = encodeParam(dashboard_id);
|
|
1655
1658
|
return sdk.delete("/dashboards/".concat(dashboard_id), null, null, options);
|
|
1656
1659
|
});
|
|
1657
1660
|
|
|
1658
|
-
return function delete_dashboard(
|
|
1659
|
-
return
|
|
1661
|
+
return function delete_dashboard(_x492, _x493, _x494) {
|
|
1662
|
+
return _ref154.apply(this, arguments);
|
|
1660
1663
|
};
|
|
1661
1664
|
}();
|
|
1662
1665
|
export var dashboard_aggregate_table_lookml = function () {
|
|
1663
|
-
var
|
|
1666
|
+
var _ref155 = _asyncToGenerator(function* (sdk, dashboard_id, options) {
|
|
1664
1667
|
dashboard_id = encodeParam(dashboard_id);
|
|
1665
1668
|
return sdk.get("/dashboards/aggregate_table_lookml/".concat(dashboard_id), null, null, options);
|
|
1666
1669
|
});
|
|
1667
1670
|
|
|
1668
|
-
return function dashboard_aggregate_table_lookml(
|
|
1669
|
-
return
|
|
1671
|
+
return function dashboard_aggregate_table_lookml(_x495, _x496, _x497) {
|
|
1672
|
+
return _ref155.apply(this, arguments);
|
|
1670
1673
|
};
|
|
1671
1674
|
}();
|
|
1672
1675
|
export var dashboard_lookml = function () {
|
|
1673
|
-
var
|
|
1676
|
+
var _ref156 = _asyncToGenerator(function* (sdk, dashboard_id, options) {
|
|
1674
1677
|
dashboard_id = encodeParam(dashboard_id);
|
|
1675
1678
|
return sdk.get("/dashboards/lookml/".concat(dashboard_id), null, null, options);
|
|
1676
1679
|
});
|
|
1677
1680
|
|
|
1678
|
-
return function dashboard_lookml(
|
|
1679
|
-
return
|
|
1681
|
+
return function dashboard_lookml(_x498, _x499, _x500) {
|
|
1682
|
+
return _ref156.apply(this, arguments);
|
|
1680
1683
|
};
|
|
1681
1684
|
}();
|
|
1682
1685
|
export var move_dashboard = function () {
|
|
1683
|
-
var
|
|
1686
|
+
var _ref157 = _asyncToGenerator(function* (sdk, dashboard_id, folder_id, options) {
|
|
1684
1687
|
dashboard_id = encodeParam(dashboard_id);
|
|
1685
1688
|
return sdk.patch("/dashboards/".concat(dashboard_id, "/move"), {
|
|
1686
1689
|
folder_id
|
|
1687
1690
|
}, null, options);
|
|
1688
1691
|
});
|
|
1689
1692
|
|
|
1690
|
-
return function move_dashboard(
|
|
1691
|
-
return
|
|
1693
|
+
return function move_dashboard(_x501, _x502, _x503, _x504) {
|
|
1694
|
+
return _ref157.apply(this, arguments);
|
|
1695
|
+
};
|
|
1696
|
+
}();
|
|
1697
|
+
export var create_dashboard_from_lookml = function () {
|
|
1698
|
+
var _ref158 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1699
|
+
return sdk.post('/dashboards/from_lookml', null, body, options);
|
|
1700
|
+
});
|
|
1701
|
+
|
|
1702
|
+
return function create_dashboard_from_lookml(_x505, _x506, _x507) {
|
|
1703
|
+
return _ref158.apply(this, arguments);
|
|
1692
1704
|
};
|
|
1693
1705
|
}();
|
|
1694
1706
|
export var copy_dashboard = function () {
|
|
1695
|
-
var
|
|
1707
|
+
var _ref159 = _asyncToGenerator(function* (sdk, dashboard_id, folder_id, options) {
|
|
1696
1708
|
dashboard_id = encodeParam(dashboard_id);
|
|
1697
1709
|
return sdk.post("/dashboards/".concat(dashboard_id, "/copy"), {
|
|
1698
1710
|
folder_id
|
|
1699
1711
|
}, null, options);
|
|
1700
1712
|
});
|
|
1701
1713
|
|
|
1702
|
-
return function copy_dashboard(
|
|
1703
|
-
return
|
|
1714
|
+
return function copy_dashboard(_x508, _x509, _x510, _x511) {
|
|
1715
|
+
return _ref159.apply(this, arguments);
|
|
1704
1716
|
};
|
|
1705
1717
|
}();
|
|
1706
1718
|
export var search_dashboard_elements = function () {
|
|
1707
|
-
var
|
|
1719
|
+
var _ref160 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1708
1720
|
return sdk.get('/dashboard_elements/search', {
|
|
1709
1721
|
dashboard_id: request.dashboard_id,
|
|
1710
1722
|
look_id: request.look_id,
|
|
@@ -1716,264 +1728,267 @@ export var search_dashboard_elements = function () {
|
|
|
1716
1728
|
}, null, options);
|
|
1717
1729
|
});
|
|
1718
1730
|
|
|
1719
|
-
return function search_dashboard_elements(
|
|
1720
|
-
return
|
|
1731
|
+
return function search_dashboard_elements(_x512, _x513, _x514) {
|
|
1732
|
+
return _ref160.apply(this, arguments);
|
|
1721
1733
|
};
|
|
1722
1734
|
}();
|
|
1723
1735
|
export var dashboard_element = function () {
|
|
1724
|
-
var
|
|
1736
|
+
var _ref161 = _asyncToGenerator(function* (sdk, dashboard_element_id, fields, options) {
|
|
1725
1737
|
dashboard_element_id = encodeParam(dashboard_element_id);
|
|
1726
1738
|
return sdk.get("/dashboard_elements/".concat(dashboard_element_id), {
|
|
1727
1739
|
fields
|
|
1728
1740
|
}, null, options);
|
|
1729
1741
|
});
|
|
1730
1742
|
|
|
1731
|
-
return function dashboard_element(
|
|
1732
|
-
return
|
|
1743
|
+
return function dashboard_element(_x515, _x516, _x517, _x518) {
|
|
1744
|
+
return _ref161.apply(this, arguments);
|
|
1733
1745
|
};
|
|
1734
1746
|
}();
|
|
1735
1747
|
export var update_dashboard_element = function () {
|
|
1736
|
-
var
|
|
1748
|
+
var _ref162 = _asyncToGenerator(function* (sdk, dashboard_element_id, body, fields, options) {
|
|
1737
1749
|
dashboard_element_id = encodeParam(dashboard_element_id);
|
|
1738
1750
|
return sdk.patch("/dashboard_elements/".concat(dashboard_element_id), {
|
|
1739
1751
|
fields
|
|
1740
1752
|
}, body, options);
|
|
1741
1753
|
});
|
|
1742
1754
|
|
|
1743
|
-
return function update_dashboard_element(
|
|
1744
|
-
return
|
|
1755
|
+
return function update_dashboard_element(_x519, _x520, _x521, _x522, _x523) {
|
|
1756
|
+
return _ref162.apply(this, arguments);
|
|
1745
1757
|
};
|
|
1746
1758
|
}();
|
|
1747
1759
|
export var delete_dashboard_element = function () {
|
|
1748
|
-
var
|
|
1760
|
+
var _ref163 = _asyncToGenerator(function* (sdk, dashboard_element_id, options) {
|
|
1749
1761
|
dashboard_element_id = encodeParam(dashboard_element_id);
|
|
1750
1762
|
return sdk.delete("/dashboard_elements/".concat(dashboard_element_id), null, null, options);
|
|
1751
1763
|
});
|
|
1752
1764
|
|
|
1753
|
-
return function delete_dashboard_element(
|
|
1754
|
-
return
|
|
1765
|
+
return function delete_dashboard_element(_x524, _x525, _x526) {
|
|
1766
|
+
return _ref163.apply(this, arguments);
|
|
1755
1767
|
};
|
|
1756
1768
|
}();
|
|
1757
1769
|
export var dashboard_dashboard_elements = function () {
|
|
1758
|
-
var
|
|
1770
|
+
var _ref164 = _asyncToGenerator(function* (sdk, dashboard_id, fields, options) {
|
|
1759
1771
|
dashboard_id = encodeParam(dashboard_id);
|
|
1760
1772
|
return sdk.get("/dashboards/".concat(dashboard_id, "/dashboard_elements"), {
|
|
1761
1773
|
fields
|
|
1762
1774
|
}, null, options);
|
|
1763
1775
|
});
|
|
1764
1776
|
|
|
1765
|
-
return function dashboard_dashboard_elements(
|
|
1766
|
-
return
|
|
1777
|
+
return function dashboard_dashboard_elements(_x527, _x528, _x529, _x530) {
|
|
1778
|
+
return _ref164.apply(this, arguments);
|
|
1767
1779
|
};
|
|
1768
1780
|
}();
|
|
1769
1781
|
export var create_dashboard_element = function () {
|
|
1770
|
-
var
|
|
1782
|
+
var _ref165 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1771
1783
|
return sdk.post('/dashboard_elements', {
|
|
1772
|
-
fields
|
|
1773
|
-
|
|
1784
|
+
fields: request.fields,
|
|
1785
|
+
apply_filters: request.apply_filters
|
|
1786
|
+
}, request.body, options);
|
|
1774
1787
|
});
|
|
1775
1788
|
|
|
1776
|
-
return function create_dashboard_element(
|
|
1777
|
-
return
|
|
1789
|
+
return function create_dashboard_element(_x531, _x532, _x533) {
|
|
1790
|
+
return _ref165.apply(this, arguments);
|
|
1778
1791
|
};
|
|
1779
1792
|
}();
|
|
1780
1793
|
export var dashboard_filter = function () {
|
|
1781
|
-
var
|
|
1794
|
+
var _ref166 = _asyncToGenerator(function* (sdk, dashboard_filter_id, fields, options) {
|
|
1782
1795
|
dashboard_filter_id = encodeParam(dashboard_filter_id);
|
|
1783
1796
|
return sdk.get("/dashboard_filters/".concat(dashboard_filter_id), {
|
|
1784
1797
|
fields
|
|
1785
1798
|
}, null, options);
|
|
1786
1799
|
});
|
|
1787
1800
|
|
|
1788
|
-
return function dashboard_filter(
|
|
1789
|
-
return
|
|
1801
|
+
return function dashboard_filter(_x534, _x535, _x536, _x537) {
|
|
1802
|
+
return _ref166.apply(this, arguments);
|
|
1790
1803
|
};
|
|
1791
1804
|
}();
|
|
1792
1805
|
export var update_dashboard_filter = function () {
|
|
1793
|
-
var
|
|
1806
|
+
var _ref167 = _asyncToGenerator(function* (sdk, dashboard_filter_id, body, fields, options) {
|
|
1794
1807
|
dashboard_filter_id = encodeParam(dashboard_filter_id);
|
|
1795
1808
|
return sdk.patch("/dashboard_filters/".concat(dashboard_filter_id), {
|
|
1796
1809
|
fields
|
|
1797
1810
|
}, body, options);
|
|
1798
1811
|
});
|
|
1799
1812
|
|
|
1800
|
-
return function update_dashboard_filter(
|
|
1801
|
-
return
|
|
1813
|
+
return function update_dashboard_filter(_x538, _x539, _x540, _x541, _x542) {
|
|
1814
|
+
return _ref167.apply(this, arguments);
|
|
1802
1815
|
};
|
|
1803
1816
|
}();
|
|
1804
1817
|
export var delete_dashboard_filter = function () {
|
|
1805
|
-
var
|
|
1818
|
+
var _ref168 = _asyncToGenerator(function* (sdk, dashboard_filter_id, options) {
|
|
1806
1819
|
dashboard_filter_id = encodeParam(dashboard_filter_id);
|
|
1807
1820
|
return sdk.delete("/dashboard_filters/".concat(dashboard_filter_id), null, null, options);
|
|
1808
1821
|
});
|
|
1809
1822
|
|
|
1810
|
-
return function delete_dashboard_filter(
|
|
1811
|
-
return
|
|
1823
|
+
return function delete_dashboard_filter(_x543, _x544, _x545) {
|
|
1824
|
+
return _ref168.apply(this, arguments);
|
|
1812
1825
|
};
|
|
1813
1826
|
}();
|
|
1814
1827
|
export var dashboard_dashboard_filters = function () {
|
|
1815
|
-
var
|
|
1828
|
+
var _ref169 = _asyncToGenerator(function* (sdk, dashboard_id, fields, options) {
|
|
1816
1829
|
dashboard_id = encodeParam(dashboard_id);
|
|
1817
1830
|
return sdk.get("/dashboards/".concat(dashboard_id, "/dashboard_filters"), {
|
|
1818
1831
|
fields
|
|
1819
1832
|
}, null, options);
|
|
1820
1833
|
});
|
|
1821
1834
|
|
|
1822
|
-
return function dashboard_dashboard_filters(
|
|
1823
|
-
return
|
|
1835
|
+
return function dashboard_dashboard_filters(_x546, _x547, _x548, _x549) {
|
|
1836
|
+
return _ref169.apply(this, arguments);
|
|
1824
1837
|
};
|
|
1825
1838
|
}();
|
|
1826
1839
|
export var create_dashboard_filter = function () {
|
|
1827
|
-
var
|
|
1840
|
+
var _ref170 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
1828
1841
|
return sdk.post('/dashboard_filters', {
|
|
1829
1842
|
fields
|
|
1830
1843
|
}, body, options);
|
|
1831
1844
|
});
|
|
1832
1845
|
|
|
1833
|
-
return function create_dashboard_filter(
|
|
1834
|
-
return
|
|
1846
|
+
return function create_dashboard_filter(_x550, _x551, _x552, _x553) {
|
|
1847
|
+
return _ref170.apply(this, arguments);
|
|
1835
1848
|
};
|
|
1836
1849
|
}();
|
|
1837
1850
|
export var dashboard_layout_component = function () {
|
|
1838
|
-
var
|
|
1851
|
+
var _ref171 = _asyncToGenerator(function* (sdk, dashboard_layout_component_id, fields, options) {
|
|
1839
1852
|
dashboard_layout_component_id = encodeParam(dashboard_layout_component_id);
|
|
1840
1853
|
return sdk.get("/dashboard_layout_components/".concat(dashboard_layout_component_id), {
|
|
1841
1854
|
fields
|
|
1842
1855
|
}, null, options);
|
|
1843
1856
|
});
|
|
1844
1857
|
|
|
1845
|
-
return function dashboard_layout_component(
|
|
1846
|
-
return
|
|
1858
|
+
return function dashboard_layout_component(_x554, _x555, _x556, _x557) {
|
|
1859
|
+
return _ref171.apply(this, arguments);
|
|
1847
1860
|
};
|
|
1848
1861
|
}();
|
|
1849
1862
|
export var update_dashboard_layout_component = function () {
|
|
1850
|
-
var
|
|
1863
|
+
var _ref172 = _asyncToGenerator(function* (sdk, dashboard_layout_component_id, body, fields, options) {
|
|
1851
1864
|
dashboard_layout_component_id = encodeParam(dashboard_layout_component_id);
|
|
1852
1865
|
return sdk.patch("/dashboard_layout_components/".concat(dashboard_layout_component_id), {
|
|
1853
1866
|
fields
|
|
1854
1867
|
}, body, options);
|
|
1855
1868
|
});
|
|
1856
1869
|
|
|
1857
|
-
return function update_dashboard_layout_component(
|
|
1858
|
-
return
|
|
1870
|
+
return function update_dashboard_layout_component(_x558, _x559, _x560, _x561, _x562) {
|
|
1871
|
+
return _ref172.apply(this, arguments);
|
|
1859
1872
|
};
|
|
1860
1873
|
}();
|
|
1861
1874
|
export var dashboard_layout_dashboard_layout_components = function () {
|
|
1862
|
-
var
|
|
1875
|
+
var _ref173 = _asyncToGenerator(function* (sdk, dashboard_layout_id, fields, options) {
|
|
1863
1876
|
dashboard_layout_id = encodeParam(dashboard_layout_id);
|
|
1864
1877
|
return sdk.get("/dashboard_layouts/".concat(dashboard_layout_id, "/dashboard_layout_components"), {
|
|
1865
1878
|
fields
|
|
1866
1879
|
}, null, options);
|
|
1867
1880
|
});
|
|
1868
1881
|
|
|
1869
|
-
return function dashboard_layout_dashboard_layout_components(
|
|
1870
|
-
return
|
|
1882
|
+
return function dashboard_layout_dashboard_layout_components(_x563, _x564, _x565, _x566) {
|
|
1883
|
+
return _ref173.apply(this, arguments);
|
|
1871
1884
|
};
|
|
1872
1885
|
}();
|
|
1873
1886
|
export var dashboard_layout = function () {
|
|
1874
|
-
var
|
|
1887
|
+
var _ref174 = _asyncToGenerator(function* (sdk, dashboard_layout_id, fields, options) {
|
|
1875
1888
|
dashboard_layout_id = encodeParam(dashboard_layout_id);
|
|
1876
1889
|
return sdk.get("/dashboard_layouts/".concat(dashboard_layout_id), {
|
|
1877
1890
|
fields
|
|
1878
1891
|
}, null, options);
|
|
1879
1892
|
});
|
|
1880
1893
|
|
|
1881
|
-
return function dashboard_layout(
|
|
1882
|
-
return
|
|
1894
|
+
return function dashboard_layout(_x567, _x568, _x569, _x570) {
|
|
1895
|
+
return _ref174.apply(this, arguments);
|
|
1883
1896
|
};
|
|
1884
1897
|
}();
|
|
1885
1898
|
export var update_dashboard_layout = function () {
|
|
1886
|
-
var
|
|
1899
|
+
var _ref175 = _asyncToGenerator(function* (sdk, dashboard_layout_id, body, fields, options) {
|
|
1887
1900
|
dashboard_layout_id = encodeParam(dashboard_layout_id);
|
|
1888
1901
|
return sdk.patch("/dashboard_layouts/".concat(dashboard_layout_id), {
|
|
1889
1902
|
fields
|
|
1890
1903
|
}, body, options);
|
|
1891
1904
|
});
|
|
1892
1905
|
|
|
1893
|
-
return function update_dashboard_layout(
|
|
1894
|
-
return
|
|
1906
|
+
return function update_dashboard_layout(_x571, _x572, _x573, _x574, _x575) {
|
|
1907
|
+
return _ref175.apply(this, arguments);
|
|
1895
1908
|
};
|
|
1896
1909
|
}();
|
|
1897
1910
|
export var delete_dashboard_layout = function () {
|
|
1898
|
-
var
|
|
1911
|
+
var _ref176 = _asyncToGenerator(function* (sdk, dashboard_layout_id, options) {
|
|
1899
1912
|
dashboard_layout_id = encodeParam(dashboard_layout_id);
|
|
1900
1913
|
return sdk.delete("/dashboard_layouts/".concat(dashboard_layout_id), null, null, options);
|
|
1901
1914
|
});
|
|
1902
1915
|
|
|
1903
|
-
return function delete_dashboard_layout(
|
|
1904
|
-
return
|
|
1916
|
+
return function delete_dashboard_layout(_x576, _x577, _x578) {
|
|
1917
|
+
return _ref176.apply(this, arguments);
|
|
1905
1918
|
};
|
|
1906
1919
|
}();
|
|
1907
1920
|
export var dashboard_dashboard_layouts = function () {
|
|
1908
|
-
var
|
|
1921
|
+
var _ref177 = _asyncToGenerator(function* (sdk, dashboard_id, fields, options) {
|
|
1909
1922
|
dashboard_id = encodeParam(dashboard_id);
|
|
1910
1923
|
return sdk.get("/dashboards/".concat(dashboard_id, "/dashboard_layouts"), {
|
|
1911
1924
|
fields
|
|
1912
1925
|
}, null, options);
|
|
1913
1926
|
});
|
|
1914
1927
|
|
|
1915
|
-
return function dashboard_dashboard_layouts(
|
|
1916
|
-
return
|
|
1928
|
+
return function dashboard_dashboard_layouts(_x579, _x580, _x581, _x582) {
|
|
1929
|
+
return _ref177.apply(this, arguments);
|
|
1917
1930
|
};
|
|
1918
1931
|
}();
|
|
1919
1932
|
export var create_dashboard_layout = function () {
|
|
1920
|
-
var
|
|
1933
|
+
var _ref178 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
1921
1934
|
return sdk.post('/dashboard_layouts', {
|
|
1922
1935
|
fields
|
|
1923
1936
|
}, body, options);
|
|
1924
1937
|
});
|
|
1925
1938
|
|
|
1926
|
-
return function create_dashboard_layout(
|
|
1927
|
-
return
|
|
1939
|
+
return function create_dashboard_layout(_x583, _x584, _x585, _x586) {
|
|
1940
|
+
return _ref178.apply(this, arguments);
|
|
1928
1941
|
};
|
|
1929
1942
|
}();
|
|
1930
1943
|
export var perform_data_action = function () {
|
|
1931
|
-
var
|
|
1944
|
+
var _ref179 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1932
1945
|
return sdk.post('/data_actions', null, body, options);
|
|
1933
1946
|
});
|
|
1934
1947
|
|
|
1935
|
-
return function perform_data_action(
|
|
1936
|
-
return
|
|
1948
|
+
return function perform_data_action(_x587, _x588, _x589) {
|
|
1949
|
+
return _ref179.apply(this, arguments);
|
|
1937
1950
|
};
|
|
1938
1951
|
}();
|
|
1939
1952
|
export var fetch_remote_data_action_form = function () {
|
|
1940
|
-
var
|
|
1953
|
+
var _ref180 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1941
1954
|
return sdk.post('/data_actions/form', null, body, options);
|
|
1942
1955
|
});
|
|
1943
1956
|
|
|
1944
|
-
return function fetch_remote_data_action_form(
|
|
1945
|
-
return
|
|
1957
|
+
return function fetch_remote_data_action_form(_x590, _x591, _x592) {
|
|
1958
|
+
return _ref180.apply(this, arguments);
|
|
1946
1959
|
};
|
|
1947
1960
|
}();
|
|
1948
1961
|
export var all_datagroups = function () {
|
|
1949
|
-
var
|
|
1962
|
+
var _ref181 = _asyncToGenerator(function* (sdk, options) {
|
|
1950
1963
|
return sdk.get('/datagroups', null, null, options);
|
|
1951
1964
|
});
|
|
1952
1965
|
|
|
1953
|
-
return function all_datagroups(
|
|
1954
|
-
return
|
|
1966
|
+
return function all_datagroups(_x593, _x594) {
|
|
1967
|
+
return _ref181.apply(this, arguments);
|
|
1955
1968
|
};
|
|
1956
1969
|
}();
|
|
1957
1970
|
export var datagroup = function () {
|
|
1958
|
-
var
|
|
1971
|
+
var _ref182 = _asyncToGenerator(function* (sdk, datagroup_id, options) {
|
|
1972
|
+
datagroup_id = encodeParam(datagroup_id);
|
|
1959
1973
|
return sdk.get("/datagroups/".concat(datagroup_id), null, null, options);
|
|
1960
1974
|
});
|
|
1961
1975
|
|
|
1962
|
-
return function datagroup(
|
|
1963
|
-
return
|
|
1976
|
+
return function datagroup(_x595, _x596, _x597) {
|
|
1977
|
+
return _ref182.apply(this, arguments);
|
|
1964
1978
|
};
|
|
1965
1979
|
}();
|
|
1966
1980
|
export var update_datagroup = function () {
|
|
1967
|
-
var
|
|
1981
|
+
var _ref183 = _asyncToGenerator(function* (sdk, datagroup_id, body, options) {
|
|
1982
|
+
datagroup_id = encodeParam(datagroup_id);
|
|
1968
1983
|
return sdk.patch("/datagroups/".concat(datagroup_id), null, body, options);
|
|
1969
1984
|
});
|
|
1970
1985
|
|
|
1971
|
-
return function update_datagroup(
|
|
1972
|
-
return
|
|
1986
|
+
return function update_datagroup(_x598, _x599, _x600, _x601) {
|
|
1987
|
+
return _ref183.apply(this, arguments);
|
|
1973
1988
|
};
|
|
1974
1989
|
}();
|
|
1975
1990
|
export var graph_derived_tables_for_model = function () {
|
|
1976
|
-
var
|
|
1991
|
+
var _ref184 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1977
1992
|
request.model = encodeParam(request.model);
|
|
1978
1993
|
return sdk.get("/derived_table/graph/model/".concat(request.model), {
|
|
1979
1994
|
format: request.format,
|
|
@@ -1981,12 +1996,12 @@ export var graph_derived_tables_for_model = function () {
|
|
|
1981
1996
|
}, null, options);
|
|
1982
1997
|
});
|
|
1983
1998
|
|
|
1984
|
-
return function graph_derived_tables_for_model(
|
|
1985
|
-
return
|
|
1999
|
+
return function graph_derived_tables_for_model(_x602, _x603, _x604) {
|
|
2000
|
+
return _ref184.apply(this, arguments);
|
|
1986
2001
|
};
|
|
1987
2002
|
}();
|
|
1988
2003
|
export var graph_derived_tables_for_view = function () {
|
|
1989
|
-
var
|
|
2004
|
+
var _ref185 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1990
2005
|
request.view = encodeParam(request.view);
|
|
1991
2006
|
return sdk.get("/derived_table/graph/view/".concat(request.view), {
|
|
1992
2007
|
models: request.models,
|
|
@@ -1994,12 +2009,50 @@ export var graph_derived_tables_for_view = function () {
|
|
|
1994
2009
|
}, null, options);
|
|
1995
2010
|
});
|
|
1996
2011
|
|
|
1997
|
-
return function graph_derived_tables_for_view(
|
|
2012
|
+
return function graph_derived_tables_for_view(_x605, _x606, _x607) {
|
|
2013
|
+
return _ref185.apply(this, arguments);
|
|
2014
|
+
};
|
|
2015
|
+
}();
|
|
2016
|
+
export var start_pdt_build = function () {
|
|
2017
|
+
var _ref186 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2018
|
+
request.model_name = encodeParam(request.model_name);
|
|
2019
|
+
request.view_name = encodeParam(request.view_name);
|
|
2020
|
+
return sdk.get("/derived_table/".concat(request.model_name, "/").concat(request.view_name, "/start"), {
|
|
2021
|
+
force_rebuild: request.force_rebuild,
|
|
2022
|
+
force_full_incremental: request.force_full_incremental,
|
|
2023
|
+
workspace: request.workspace,
|
|
2024
|
+
source: request.source
|
|
2025
|
+
}, null, options);
|
|
2026
|
+
});
|
|
2027
|
+
|
|
2028
|
+
return function start_pdt_build(_x608, _x609, _x610) {
|
|
1998
2029
|
return _ref186.apply(this, arguments);
|
|
1999
2030
|
};
|
|
2000
2031
|
}();
|
|
2032
|
+
export var check_pdt_build = function () {
|
|
2033
|
+
var _ref187 = _asyncToGenerator(function* (sdk, materialization_id, options) {
|
|
2034
|
+
materialization_id = encodeParam(materialization_id);
|
|
2035
|
+
return sdk.get("/derived_table/".concat(materialization_id, "/status"), null, null, options);
|
|
2036
|
+
});
|
|
2037
|
+
|
|
2038
|
+
return function check_pdt_build(_x611, _x612, _x613) {
|
|
2039
|
+
return _ref187.apply(this, arguments);
|
|
2040
|
+
};
|
|
2041
|
+
}();
|
|
2042
|
+
export var stop_pdt_build = function () {
|
|
2043
|
+
var _ref188 = _asyncToGenerator(function* (sdk, materialization_id, source, options) {
|
|
2044
|
+
materialization_id = encodeParam(materialization_id);
|
|
2045
|
+
return sdk.get("/derived_table/".concat(materialization_id, "/stop"), {
|
|
2046
|
+
source
|
|
2047
|
+
}, null, options);
|
|
2048
|
+
});
|
|
2049
|
+
|
|
2050
|
+
return function stop_pdt_build(_x614, _x615, _x616, _x617) {
|
|
2051
|
+
return _ref188.apply(this, arguments);
|
|
2052
|
+
};
|
|
2053
|
+
}();
|
|
2001
2054
|
export var search_folders = function () {
|
|
2002
|
-
var
|
|
2055
|
+
var _ref189 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2003
2056
|
return sdk.get('/folders/search', {
|
|
2004
2057
|
fields: request.fields,
|
|
2005
2058
|
page: request.page,
|
|
@@ -2016,64 +2069,64 @@ export var search_folders = function () {
|
|
|
2016
2069
|
}, null, options);
|
|
2017
2070
|
});
|
|
2018
2071
|
|
|
2019
|
-
return function search_folders(
|
|
2020
|
-
return
|
|
2072
|
+
return function search_folders(_x618, _x619, _x620) {
|
|
2073
|
+
return _ref189.apply(this, arguments);
|
|
2021
2074
|
};
|
|
2022
2075
|
}();
|
|
2023
2076
|
export var folder = function () {
|
|
2024
|
-
var
|
|
2077
|
+
var _ref190 = _asyncToGenerator(function* (sdk, folder_id, fields, options) {
|
|
2025
2078
|
folder_id = encodeParam(folder_id);
|
|
2026
2079
|
return sdk.get("/folders/".concat(folder_id), {
|
|
2027
2080
|
fields
|
|
2028
2081
|
}, null, options);
|
|
2029
2082
|
});
|
|
2030
2083
|
|
|
2031
|
-
return function folder(
|
|
2032
|
-
return
|
|
2084
|
+
return function folder(_x621, _x622, _x623, _x624) {
|
|
2085
|
+
return _ref190.apply(this, arguments);
|
|
2033
2086
|
};
|
|
2034
2087
|
}();
|
|
2035
2088
|
export var update_folder = function () {
|
|
2036
|
-
var
|
|
2089
|
+
var _ref191 = _asyncToGenerator(function* (sdk, folder_id, body, options) {
|
|
2037
2090
|
folder_id = encodeParam(folder_id);
|
|
2038
2091
|
return sdk.patch("/folders/".concat(folder_id), null, body, options);
|
|
2039
2092
|
});
|
|
2040
2093
|
|
|
2041
|
-
return function update_folder(
|
|
2042
|
-
return
|
|
2094
|
+
return function update_folder(_x625, _x626, _x627, _x628) {
|
|
2095
|
+
return _ref191.apply(this, arguments);
|
|
2043
2096
|
};
|
|
2044
2097
|
}();
|
|
2045
2098
|
export var delete_folder = function () {
|
|
2046
|
-
var
|
|
2099
|
+
var _ref192 = _asyncToGenerator(function* (sdk, folder_id, options) {
|
|
2047
2100
|
folder_id = encodeParam(folder_id);
|
|
2048
2101
|
return sdk.delete("/folders/".concat(folder_id), null, null, options);
|
|
2049
2102
|
});
|
|
2050
2103
|
|
|
2051
|
-
return function delete_folder(
|
|
2052
|
-
return
|
|
2104
|
+
return function delete_folder(_x629, _x630, _x631) {
|
|
2105
|
+
return _ref192.apply(this, arguments);
|
|
2053
2106
|
};
|
|
2054
2107
|
}();
|
|
2055
2108
|
export var all_folders = function () {
|
|
2056
|
-
var
|
|
2109
|
+
var _ref193 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
2057
2110
|
return sdk.get('/folders', {
|
|
2058
2111
|
fields
|
|
2059
2112
|
}, null, options);
|
|
2060
2113
|
});
|
|
2061
2114
|
|
|
2062
|
-
return function all_folders(
|
|
2063
|
-
return
|
|
2115
|
+
return function all_folders(_x632, _x633, _x634) {
|
|
2116
|
+
return _ref193.apply(this, arguments);
|
|
2064
2117
|
};
|
|
2065
2118
|
}();
|
|
2066
2119
|
export var create_folder = function () {
|
|
2067
|
-
var
|
|
2120
|
+
var _ref194 = _asyncToGenerator(function* (sdk, body, options) {
|
|
2068
2121
|
return sdk.post('/folders', null, body, options);
|
|
2069
2122
|
});
|
|
2070
2123
|
|
|
2071
|
-
return function create_folder(
|
|
2072
|
-
return
|
|
2124
|
+
return function create_folder(_x635, _x636, _x637) {
|
|
2125
|
+
return _ref194.apply(this, arguments);
|
|
2073
2126
|
};
|
|
2074
2127
|
}();
|
|
2075
2128
|
export var folder_children = function () {
|
|
2076
|
-
var
|
|
2129
|
+
var _ref195 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2077
2130
|
request.folder_id = encodeParam(request.folder_id);
|
|
2078
2131
|
return sdk.get("/folders/".concat(request.folder_id, "/children"), {
|
|
2079
2132
|
fields: request.fields,
|
|
@@ -2083,12 +2136,12 @@ export var folder_children = function () {
|
|
|
2083
2136
|
}, null, options);
|
|
2084
2137
|
});
|
|
2085
2138
|
|
|
2086
|
-
return function folder_children(
|
|
2087
|
-
return
|
|
2139
|
+
return function folder_children(_x638, _x639, _x640) {
|
|
2140
|
+
return _ref195.apply(this, arguments);
|
|
2088
2141
|
};
|
|
2089
2142
|
}();
|
|
2090
2143
|
export var folder_children_search = function () {
|
|
2091
|
-
var
|
|
2144
|
+
var _ref196 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2092
2145
|
request.folder_id = encodeParam(request.folder_id);
|
|
2093
2146
|
return sdk.get("/folders/".concat(request.folder_id, "/children/search"), {
|
|
2094
2147
|
fields: request.fields,
|
|
@@ -2097,64 +2150,66 @@ export var folder_children_search = function () {
|
|
|
2097
2150
|
}, null, options);
|
|
2098
2151
|
});
|
|
2099
2152
|
|
|
2100
|
-
return function folder_children_search(
|
|
2101
|
-
return
|
|
2153
|
+
return function folder_children_search(_x641, _x642, _x643) {
|
|
2154
|
+
return _ref196.apply(this, arguments);
|
|
2102
2155
|
};
|
|
2103
2156
|
}();
|
|
2104
2157
|
export var folder_parent = function () {
|
|
2105
|
-
var
|
|
2158
|
+
var _ref197 = _asyncToGenerator(function* (sdk, folder_id, fields, options) {
|
|
2106
2159
|
folder_id = encodeParam(folder_id);
|
|
2107
2160
|
return sdk.get("/folders/".concat(folder_id, "/parent"), {
|
|
2108
2161
|
fields
|
|
2109
2162
|
}, null, options);
|
|
2110
2163
|
});
|
|
2111
2164
|
|
|
2112
|
-
return function folder_parent(
|
|
2113
|
-
return
|
|
2165
|
+
return function folder_parent(_x644, _x645, _x646, _x647) {
|
|
2166
|
+
return _ref197.apply(this, arguments);
|
|
2114
2167
|
};
|
|
2115
2168
|
}();
|
|
2116
2169
|
export var folder_ancestors = function () {
|
|
2117
|
-
var
|
|
2170
|
+
var _ref198 = _asyncToGenerator(function* (sdk, folder_id, fields, options) {
|
|
2118
2171
|
folder_id = encodeParam(folder_id);
|
|
2119
2172
|
return sdk.get("/folders/".concat(folder_id, "/ancestors"), {
|
|
2120
2173
|
fields
|
|
2121
2174
|
}, null, options);
|
|
2122
2175
|
});
|
|
2123
2176
|
|
|
2124
|
-
return function folder_ancestors(
|
|
2125
|
-
return
|
|
2177
|
+
return function folder_ancestors(_x648, _x649, _x650, _x651) {
|
|
2178
|
+
return _ref198.apply(this, arguments);
|
|
2126
2179
|
};
|
|
2127
2180
|
}();
|
|
2128
2181
|
export var folder_looks = function () {
|
|
2129
|
-
var
|
|
2182
|
+
var _ref199 = _asyncToGenerator(function* (sdk, folder_id, fields, options) {
|
|
2130
2183
|
folder_id = encodeParam(folder_id);
|
|
2131
2184
|
return sdk.get("/folders/".concat(folder_id, "/looks"), {
|
|
2132
2185
|
fields
|
|
2133
2186
|
}, null, options);
|
|
2134
2187
|
});
|
|
2135
2188
|
|
|
2136
|
-
return function folder_looks(
|
|
2137
|
-
return
|
|
2189
|
+
return function folder_looks(_x652, _x653, _x654, _x655) {
|
|
2190
|
+
return _ref199.apply(this, arguments);
|
|
2138
2191
|
};
|
|
2139
2192
|
}();
|
|
2140
2193
|
export var folder_dashboards = function () {
|
|
2141
|
-
var
|
|
2194
|
+
var _ref200 = _asyncToGenerator(function* (sdk, folder_id, fields, options) {
|
|
2142
2195
|
folder_id = encodeParam(folder_id);
|
|
2143
2196
|
return sdk.get("/folders/".concat(folder_id, "/dashboards"), {
|
|
2144
2197
|
fields
|
|
2145
2198
|
}, null, options);
|
|
2146
2199
|
});
|
|
2147
2200
|
|
|
2148
|
-
return function folder_dashboards(
|
|
2149
|
-
return
|
|
2201
|
+
return function folder_dashboards(_x656, _x657, _x658, _x659) {
|
|
2202
|
+
return _ref200.apply(this, arguments);
|
|
2150
2203
|
};
|
|
2151
2204
|
}();
|
|
2152
2205
|
export var all_groups = function () {
|
|
2153
|
-
var
|
|
2206
|
+
var _ref201 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2154
2207
|
return sdk.get('/groups', {
|
|
2155
2208
|
fields: request.fields,
|
|
2156
2209
|
page: request.page,
|
|
2157
2210
|
per_page: request.per_page,
|
|
2211
|
+
limit: request.limit,
|
|
2212
|
+
offset: request.offset,
|
|
2158
2213
|
sorts: request.sorts,
|
|
2159
2214
|
ids: request.ids,
|
|
2160
2215
|
content_metadata_id: request.content_metadata_id,
|
|
@@ -2162,23 +2217,23 @@ export var all_groups = function () {
|
|
|
2162
2217
|
}, null, options);
|
|
2163
2218
|
});
|
|
2164
2219
|
|
|
2165
|
-
return function all_groups(
|
|
2166
|
-
return
|
|
2220
|
+
return function all_groups(_x660, _x661, _x662) {
|
|
2221
|
+
return _ref201.apply(this, arguments);
|
|
2167
2222
|
};
|
|
2168
2223
|
}();
|
|
2169
2224
|
export var create_group = function () {
|
|
2170
|
-
var
|
|
2225
|
+
var _ref202 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
2171
2226
|
return sdk.post('/groups', {
|
|
2172
2227
|
fields
|
|
2173
2228
|
}, body, options);
|
|
2174
2229
|
});
|
|
2175
2230
|
|
|
2176
|
-
return function create_group(
|
|
2177
|
-
return
|
|
2231
|
+
return function create_group(_x663, _x664, _x665, _x666) {
|
|
2232
|
+
return _ref202.apply(this, arguments);
|
|
2178
2233
|
};
|
|
2179
2234
|
}();
|
|
2180
2235
|
export var search_groups = function () {
|
|
2181
|
-
var
|
|
2236
|
+
var _ref203 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2182
2237
|
return sdk.get('/groups/search', {
|
|
2183
2238
|
fields: request.fields,
|
|
2184
2239
|
limit: request.limit,
|
|
@@ -2193,12 +2248,12 @@ export var search_groups = function () {
|
|
|
2193
2248
|
}, null, options);
|
|
2194
2249
|
});
|
|
2195
2250
|
|
|
2196
|
-
return function search_groups(
|
|
2197
|
-
return
|
|
2251
|
+
return function search_groups(_x667, _x668, _x669) {
|
|
2252
|
+
return _ref203.apply(this, arguments);
|
|
2198
2253
|
};
|
|
2199
2254
|
}();
|
|
2200
2255
|
export var search_groups_with_roles = function () {
|
|
2201
|
-
var
|
|
2256
|
+
var _ref204 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2202
2257
|
return sdk.get('/groups/search/with_roles', {
|
|
2203
2258
|
fields: request.fields,
|
|
2204
2259
|
limit: request.limit,
|
|
@@ -2213,12 +2268,12 @@ export var search_groups_with_roles = function () {
|
|
|
2213
2268
|
}, null, options);
|
|
2214
2269
|
});
|
|
2215
2270
|
|
|
2216
|
-
return function search_groups_with_roles(
|
|
2217
|
-
return
|
|
2271
|
+
return function search_groups_with_roles(_x670, _x671, _x672) {
|
|
2272
|
+
return _ref204.apply(this, arguments);
|
|
2218
2273
|
};
|
|
2219
2274
|
}();
|
|
2220
2275
|
export var search_groups_with_hierarchy = function () {
|
|
2221
|
-
var
|
|
2276
|
+
var _ref205 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2222
2277
|
return sdk.get('/groups/search/with_hierarchy', {
|
|
2223
2278
|
fields: request.fields,
|
|
2224
2279
|
limit: request.limit,
|
|
@@ -2233,273 +2288,294 @@ export var search_groups_with_hierarchy = function () {
|
|
|
2233
2288
|
}, null, options);
|
|
2234
2289
|
});
|
|
2235
2290
|
|
|
2236
|
-
return function search_groups_with_hierarchy(
|
|
2237
|
-
return
|
|
2291
|
+
return function search_groups_with_hierarchy(_x673, _x674, _x675) {
|
|
2292
|
+
return _ref205.apply(this, arguments);
|
|
2238
2293
|
};
|
|
2239
2294
|
}();
|
|
2240
2295
|
export var group = function () {
|
|
2241
|
-
var
|
|
2296
|
+
var _ref206 = _asyncToGenerator(function* (sdk, group_id, fields, options) {
|
|
2297
|
+
group_id = encodeParam(group_id);
|
|
2242
2298
|
return sdk.get("/groups/".concat(group_id), {
|
|
2243
2299
|
fields
|
|
2244
2300
|
}, null, options);
|
|
2245
2301
|
});
|
|
2246
2302
|
|
|
2247
|
-
return function group(
|
|
2248
|
-
return
|
|
2303
|
+
return function group(_x676, _x677, _x678, _x679) {
|
|
2304
|
+
return _ref206.apply(this, arguments);
|
|
2249
2305
|
};
|
|
2250
2306
|
}();
|
|
2251
2307
|
export var update_group = function () {
|
|
2252
|
-
var
|
|
2308
|
+
var _ref207 = _asyncToGenerator(function* (sdk, group_id, body, fields, options) {
|
|
2309
|
+
group_id = encodeParam(group_id);
|
|
2253
2310
|
return sdk.patch("/groups/".concat(group_id), {
|
|
2254
2311
|
fields
|
|
2255
2312
|
}, body, options);
|
|
2256
2313
|
});
|
|
2257
2314
|
|
|
2258
|
-
return function update_group(
|
|
2259
|
-
return
|
|
2315
|
+
return function update_group(_x680, _x681, _x682, _x683, _x684) {
|
|
2316
|
+
return _ref207.apply(this, arguments);
|
|
2260
2317
|
};
|
|
2261
2318
|
}();
|
|
2262
2319
|
export var delete_group = function () {
|
|
2263
|
-
var
|
|
2320
|
+
var _ref208 = _asyncToGenerator(function* (sdk, group_id, options) {
|
|
2321
|
+
group_id = encodeParam(group_id);
|
|
2264
2322
|
return sdk.delete("/groups/".concat(group_id), null, null, options);
|
|
2265
2323
|
});
|
|
2266
2324
|
|
|
2267
|
-
return function delete_group(
|
|
2268
|
-
return
|
|
2325
|
+
return function delete_group(_x685, _x686, _x687) {
|
|
2326
|
+
return _ref208.apply(this, arguments);
|
|
2269
2327
|
};
|
|
2270
2328
|
}();
|
|
2271
2329
|
export var all_group_groups = function () {
|
|
2272
|
-
var
|
|
2330
|
+
var _ref209 = _asyncToGenerator(function* (sdk, group_id, fields, options) {
|
|
2331
|
+
group_id = encodeParam(group_id);
|
|
2273
2332
|
return sdk.get("/groups/".concat(group_id, "/groups"), {
|
|
2274
2333
|
fields
|
|
2275
2334
|
}, null, options);
|
|
2276
2335
|
});
|
|
2277
2336
|
|
|
2278
|
-
return function all_group_groups(
|
|
2279
|
-
return
|
|
2337
|
+
return function all_group_groups(_x688, _x689, _x690, _x691) {
|
|
2338
|
+
return _ref209.apply(this, arguments);
|
|
2280
2339
|
};
|
|
2281
2340
|
}();
|
|
2282
2341
|
export var add_group_group = function () {
|
|
2283
|
-
var
|
|
2342
|
+
var _ref210 = _asyncToGenerator(function* (sdk, group_id, body, options) {
|
|
2343
|
+
group_id = encodeParam(group_id);
|
|
2284
2344
|
return sdk.post("/groups/".concat(group_id, "/groups"), null, body, options);
|
|
2285
2345
|
});
|
|
2286
2346
|
|
|
2287
|
-
return function add_group_group(
|
|
2288
|
-
return
|
|
2347
|
+
return function add_group_group(_x692, _x693, _x694, _x695) {
|
|
2348
|
+
return _ref210.apply(this, arguments);
|
|
2289
2349
|
};
|
|
2290
2350
|
}();
|
|
2291
2351
|
export var all_group_users = function () {
|
|
2292
|
-
var
|
|
2352
|
+
var _ref211 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2353
|
+
request.group_id = encodeParam(request.group_id);
|
|
2293
2354
|
return sdk.get("/groups/".concat(request.group_id, "/users"), {
|
|
2294
2355
|
fields: request.fields,
|
|
2295
2356
|
page: request.page,
|
|
2296
2357
|
per_page: request.per_page,
|
|
2358
|
+
limit: request.limit,
|
|
2359
|
+
offset: request.offset,
|
|
2297
2360
|
sorts: request.sorts
|
|
2298
2361
|
}, null, options);
|
|
2299
2362
|
});
|
|
2300
2363
|
|
|
2301
|
-
return function all_group_users(
|
|
2302
|
-
return
|
|
2364
|
+
return function all_group_users(_x696, _x697, _x698) {
|
|
2365
|
+
return _ref211.apply(this, arguments);
|
|
2303
2366
|
};
|
|
2304
2367
|
}();
|
|
2305
2368
|
export var add_group_user = function () {
|
|
2306
|
-
var
|
|
2369
|
+
var _ref212 = _asyncToGenerator(function* (sdk, group_id, body, options) {
|
|
2370
|
+
group_id = encodeParam(group_id);
|
|
2307
2371
|
return sdk.post("/groups/".concat(group_id, "/users"), null, body, options);
|
|
2308
2372
|
});
|
|
2309
2373
|
|
|
2310
|
-
return function add_group_user(
|
|
2311
|
-
return
|
|
2374
|
+
return function add_group_user(_x699, _x700, _x701, _x702) {
|
|
2375
|
+
return _ref212.apply(this, arguments);
|
|
2312
2376
|
};
|
|
2313
2377
|
}();
|
|
2314
2378
|
export var delete_group_user = function () {
|
|
2315
|
-
var
|
|
2379
|
+
var _ref213 = _asyncToGenerator(function* (sdk, group_id, user_id, options) {
|
|
2380
|
+
group_id = encodeParam(group_id);
|
|
2381
|
+
user_id = encodeParam(user_id);
|
|
2316
2382
|
return sdk.delete("/groups/".concat(group_id, "/users/").concat(user_id), null, null, options);
|
|
2317
2383
|
});
|
|
2318
2384
|
|
|
2319
|
-
return function delete_group_user(
|
|
2320
|
-
return
|
|
2385
|
+
return function delete_group_user(_x703, _x704, _x705, _x706) {
|
|
2386
|
+
return _ref213.apply(this, arguments);
|
|
2321
2387
|
};
|
|
2322
2388
|
}();
|
|
2323
2389
|
export var delete_group_from_group = function () {
|
|
2324
|
-
var
|
|
2390
|
+
var _ref214 = _asyncToGenerator(function* (sdk, group_id, deleting_group_id, options) {
|
|
2391
|
+
group_id = encodeParam(group_id);
|
|
2392
|
+
deleting_group_id = encodeParam(deleting_group_id);
|
|
2325
2393
|
return sdk.delete("/groups/".concat(group_id, "/groups/").concat(deleting_group_id), null, null, options);
|
|
2326
2394
|
});
|
|
2327
2395
|
|
|
2328
|
-
return function delete_group_from_group(
|
|
2329
|
-
return
|
|
2396
|
+
return function delete_group_from_group(_x707, _x708, _x709, _x710) {
|
|
2397
|
+
return _ref214.apply(this, arguments);
|
|
2330
2398
|
};
|
|
2331
2399
|
}();
|
|
2332
2400
|
export var update_user_attribute_group_value = function () {
|
|
2333
|
-
var
|
|
2401
|
+
var _ref215 = _asyncToGenerator(function* (sdk, group_id, user_attribute_id, body, options) {
|
|
2402
|
+
group_id = encodeParam(group_id);
|
|
2403
|
+
user_attribute_id = encodeParam(user_attribute_id);
|
|
2334
2404
|
return sdk.patch("/groups/".concat(group_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
|
|
2335
2405
|
});
|
|
2336
2406
|
|
|
2337
|
-
return function update_user_attribute_group_value(
|
|
2338
|
-
return
|
|
2407
|
+
return function update_user_attribute_group_value(_x711, _x712, _x713, _x714, _x715) {
|
|
2408
|
+
return _ref215.apply(this, arguments);
|
|
2339
2409
|
};
|
|
2340
2410
|
}();
|
|
2341
2411
|
export var delete_user_attribute_group_value = function () {
|
|
2342
|
-
var
|
|
2412
|
+
var _ref216 = _asyncToGenerator(function* (sdk, group_id, user_attribute_id, options) {
|
|
2413
|
+
group_id = encodeParam(group_id);
|
|
2414
|
+
user_attribute_id = encodeParam(user_attribute_id);
|
|
2343
2415
|
return sdk.delete("/groups/".concat(group_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
|
|
2344
2416
|
});
|
|
2345
2417
|
|
|
2346
|
-
return function delete_user_attribute_group_value(
|
|
2347
|
-
return
|
|
2418
|
+
return function delete_user_attribute_group_value(_x716, _x717, _x718, _x719) {
|
|
2419
|
+
return _ref216.apply(this, arguments);
|
|
2348
2420
|
};
|
|
2349
2421
|
}();
|
|
2350
2422
|
export var all_primary_homepage_sections = function () {
|
|
2351
|
-
var
|
|
2423
|
+
var _ref217 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
2352
2424
|
return sdk.get('/primary_homepage_sections', {
|
|
2353
2425
|
fields
|
|
2354
2426
|
}, null, options);
|
|
2355
2427
|
});
|
|
2356
2428
|
|
|
2357
|
-
return function all_primary_homepage_sections(
|
|
2358
|
-
return
|
|
2429
|
+
return function all_primary_homepage_sections(_x720, _x721, _x722) {
|
|
2430
|
+
return _ref217.apply(this, arguments);
|
|
2359
2431
|
};
|
|
2360
2432
|
}();
|
|
2361
2433
|
export var all_integration_hubs = function () {
|
|
2362
|
-
var
|
|
2434
|
+
var _ref218 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
2363
2435
|
return sdk.get('/integration_hubs', {
|
|
2364
2436
|
fields
|
|
2365
2437
|
}, null, options);
|
|
2366
2438
|
});
|
|
2367
2439
|
|
|
2368
|
-
return function all_integration_hubs(
|
|
2369
|
-
return
|
|
2440
|
+
return function all_integration_hubs(_x723, _x724, _x725) {
|
|
2441
|
+
return _ref218.apply(this, arguments);
|
|
2370
2442
|
};
|
|
2371
2443
|
}();
|
|
2372
2444
|
export var create_integration_hub = function () {
|
|
2373
|
-
var
|
|
2445
|
+
var _ref219 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
2374
2446
|
return sdk.post('/integration_hubs', {
|
|
2375
2447
|
fields
|
|
2376
2448
|
}, body, options);
|
|
2377
2449
|
});
|
|
2378
2450
|
|
|
2379
|
-
return function create_integration_hub(
|
|
2380
|
-
return
|
|
2451
|
+
return function create_integration_hub(_x726, _x727, _x728, _x729) {
|
|
2452
|
+
return _ref219.apply(this, arguments);
|
|
2381
2453
|
};
|
|
2382
2454
|
}();
|
|
2383
2455
|
export var integration_hub = function () {
|
|
2384
|
-
var
|
|
2456
|
+
var _ref220 = _asyncToGenerator(function* (sdk, integration_hub_id, fields, options) {
|
|
2457
|
+
integration_hub_id = encodeParam(integration_hub_id);
|
|
2385
2458
|
return sdk.get("/integration_hubs/".concat(integration_hub_id), {
|
|
2386
2459
|
fields
|
|
2387
2460
|
}, null, options);
|
|
2388
2461
|
});
|
|
2389
2462
|
|
|
2390
|
-
return function integration_hub(
|
|
2391
|
-
return
|
|
2463
|
+
return function integration_hub(_x730, _x731, _x732, _x733) {
|
|
2464
|
+
return _ref220.apply(this, arguments);
|
|
2392
2465
|
};
|
|
2393
2466
|
}();
|
|
2394
2467
|
export var update_integration_hub = function () {
|
|
2395
|
-
var
|
|
2468
|
+
var _ref221 = _asyncToGenerator(function* (sdk, integration_hub_id, body, fields, options) {
|
|
2469
|
+
integration_hub_id = encodeParam(integration_hub_id);
|
|
2396
2470
|
return sdk.patch("/integration_hubs/".concat(integration_hub_id), {
|
|
2397
2471
|
fields
|
|
2398
2472
|
}, body, options);
|
|
2399
2473
|
});
|
|
2400
2474
|
|
|
2401
|
-
return function update_integration_hub(
|
|
2402
|
-
return
|
|
2475
|
+
return function update_integration_hub(_x734, _x735, _x736, _x737, _x738) {
|
|
2476
|
+
return _ref221.apply(this, arguments);
|
|
2403
2477
|
};
|
|
2404
2478
|
}();
|
|
2405
2479
|
export var delete_integration_hub = function () {
|
|
2406
|
-
var
|
|
2480
|
+
var _ref222 = _asyncToGenerator(function* (sdk, integration_hub_id, options) {
|
|
2481
|
+
integration_hub_id = encodeParam(integration_hub_id);
|
|
2407
2482
|
return sdk.delete("/integration_hubs/".concat(integration_hub_id), null, null, options);
|
|
2408
2483
|
});
|
|
2409
2484
|
|
|
2410
|
-
return function delete_integration_hub(
|
|
2411
|
-
return
|
|
2485
|
+
return function delete_integration_hub(_x739, _x740, _x741) {
|
|
2486
|
+
return _ref222.apply(this, arguments);
|
|
2412
2487
|
};
|
|
2413
2488
|
}();
|
|
2414
2489
|
export var accept_integration_hub_legal_agreement = function () {
|
|
2415
|
-
var
|
|
2490
|
+
var _ref223 = _asyncToGenerator(function* (sdk, integration_hub_id, options) {
|
|
2491
|
+
integration_hub_id = encodeParam(integration_hub_id);
|
|
2416
2492
|
return sdk.post("/integration_hubs/".concat(integration_hub_id, "/accept_legal_agreement"), null, null, options);
|
|
2417
2493
|
});
|
|
2418
2494
|
|
|
2419
|
-
return function accept_integration_hub_legal_agreement(
|
|
2420
|
-
return
|
|
2495
|
+
return function accept_integration_hub_legal_agreement(_x742, _x743, _x744) {
|
|
2496
|
+
return _ref223.apply(this, arguments);
|
|
2421
2497
|
};
|
|
2422
2498
|
}();
|
|
2423
2499
|
export var all_integrations = function () {
|
|
2424
|
-
var
|
|
2500
|
+
var _ref224 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2425
2501
|
return sdk.get('/integrations', {
|
|
2426
2502
|
fields: request.fields,
|
|
2427
2503
|
integration_hub_id: request.integration_hub_id
|
|
2428
2504
|
}, null, options);
|
|
2429
2505
|
});
|
|
2430
2506
|
|
|
2431
|
-
return function all_integrations(
|
|
2432
|
-
return
|
|
2507
|
+
return function all_integrations(_x745, _x746, _x747) {
|
|
2508
|
+
return _ref224.apply(this, arguments);
|
|
2433
2509
|
};
|
|
2434
2510
|
}();
|
|
2435
2511
|
export var integration = function () {
|
|
2436
|
-
var
|
|
2512
|
+
var _ref225 = _asyncToGenerator(function* (sdk, integration_id, fields, options) {
|
|
2437
2513
|
integration_id = encodeParam(integration_id);
|
|
2438
2514
|
return sdk.get("/integrations/".concat(integration_id), {
|
|
2439
2515
|
fields
|
|
2440
2516
|
}, null, options);
|
|
2441
2517
|
});
|
|
2442
2518
|
|
|
2443
|
-
return function integration(
|
|
2444
|
-
return
|
|
2519
|
+
return function integration(_x748, _x749, _x750, _x751) {
|
|
2520
|
+
return _ref225.apply(this, arguments);
|
|
2445
2521
|
};
|
|
2446
2522
|
}();
|
|
2447
2523
|
export var update_integration = function () {
|
|
2448
|
-
var
|
|
2524
|
+
var _ref226 = _asyncToGenerator(function* (sdk, integration_id, body, fields, options) {
|
|
2449
2525
|
integration_id = encodeParam(integration_id);
|
|
2450
2526
|
return sdk.patch("/integrations/".concat(integration_id), {
|
|
2451
2527
|
fields
|
|
2452
2528
|
}, body, options);
|
|
2453
2529
|
});
|
|
2454
2530
|
|
|
2455
|
-
return function update_integration(
|
|
2456
|
-
return
|
|
2531
|
+
return function update_integration(_x752, _x753, _x754, _x755, _x756) {
|
|
2532
|
+
return _ref226.apply(this, arguments);
|
|
2457
2533
|
};
|
|
2458
2534
|
}();
|
|
2459
2535
|
export var fetch_integration_form = function () {
|
|
2460
|
-
var
|
|
2536
|
+
var _ref227 = _asyncToGenerator(function* (sdk, integration_id, body, options) {
|
|
2461
2537
|
integration_id = encodeParam(integration_id);
|
|
2462
2538
|
return sdk.post("/integrations/".concat(integration_id, "/form"), null, body, options);
|
|
2463
2539
|
});
|
|
2464
2540
|
|
|
2465
|
-
return function fetch_integration_form(
|
|
2466
|
-
return
|
|
2541
|
+
return function fetch_integration_form(_x757, _x758, _x759, _x760) {
|
|
2542
|
+
return _ref227.apply(this, arguments);
|
|
2467
2543
|
};
|
|
2468
2544
|
}();
|
|
2469
2545
|
export var test_integration = function () {
|
|
2470
|
-
var
|
|
2546
|
+
var _ref228 = _asyncToGenerator(function* (sdk, integration_id, options) {
|
|
2471
2547
|
integration_id = encodeParam(integration_id);
|
|
2472
2548
|
return sdk.post("/integrations/".concat(integration_id, "/test"), null, null, options);
|
|
2473
2549
|
});
|
|
2474
2550
|
|
|
2475
|
-
return function test_integration(
|
|
2476
|
-
return
|
|
2551
|
+
return function test_integration(_x761, _x762, _x763) {
|
|
2552
|
+
return _ref228.apply(this, arguments);
|
|
2477
2553
|
};
|
|
2478
2554
|
}();
|
|
2479
2555
|
export var all_looks = function () {
|
|
2480
|
-
var
|
|
2556
|
+
var _ref229 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
2481
2557
|
return sdk.get('/looks', {
|
|
2482
2558
|
fields
|
|
2483
2559
|
}, null, options);
|
|
2484
2560
|
});
|
|
2485
2561
|
|
|
2486
|
-
return function all_looks(
|
|
2487
|
-
return
|
|
2562
|
+
return function all_looks(_x764, _x765, _x766) {
|
|
2563
|
+
return _ref229.apply(this, arguments);
|
|
2488
2564
|
};
|
|
2489
2565
|
}();
|
|
2490
2566
|
export var create_look = function () {
|
|
2491
|
-
var
|
|
2567
|
+
var _ref230 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
2492
2568
|
return sdk.post('/looks', {
|
|
2493
2569
|
fields
|
|
2494
2570
|
}, body, options);
|
|
2495
2571
|
});
|
|
2496
2572
|
|
|
2497
|
-
return function create_look(
|
|
2498
|
-
return
|
|
2573
|
+
return function create_look(_x767, _x768, _x769, _x770) {
|
|
2574
|
+
return _ref230.apply(this, arguments);
|
|
2499
2575
|
};
|
|
2500
2576
|
}();
|
|
2501
2577
|
export var search_looks = function () {
|
|
2502
|
-
var
|
|
2578
|
+
var _ref231 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2503
2579
|
return sdk.get('/looks/search', {
|
|
2504
2580
|
id: request.id,
|
|
2505
2581
|
title: request.title,
|
|
@@ -2522,46 +2598,46 @@ export var search_looks = function () {
|
|
|
2522
2598
|
}, null, options);
|
|
2523
2599
|
});
|
|
2524
2600
|
|
|
2525
|
-
return function search_looks(
|
|
2526
|
-
return
|
|
2601
|
+
return function search_looks(_x771, _x772, _x773) {
|
|
2602
|
+
return _ref231.apply(this, arguments);
|
|
2527
2603
|
};
|
|
2528
2604
|
}();
|
|
2529
2605
|
export var look = function () {
|
|
2530
|
-
var
|
|
2606
|
+
var _ref232 = _asyncToGenerator(function* (sdk, look_id, fields, options) {
|
|
2531
2607
|
look_id = encodeParam(look_id);
|
|
2532
2608
|
return sdk.get("/looks/".concat(look_id), {
|
|
2533
2609
|
fields
|
|
2534
2610
|
}, null, options);
|
|
2535
2611
|
});
|
|
2536
2612
|
|
|
2537
|
-
return function look(
|
|
2538
|
-
return
|
|
2613
|
+
return function look(_x774, _x775, _x776, _x777) {
|
|
2614
|
+
return _ref232.apply(this, arguments);
|
|
2539
2615
|
};
|
|
2540
2616
|
}();
|
|
2541
2617
|
export var update_look = function () {
|
|
2542
|
-
var
|
|
2618
|
+
var _ref233 = _asyncToGenerator(function* (sdk, look_id, body, fields, options) {
|
|
2543
2619
|
look_id = encodeParam(look_id);
|
|
2544
2620
|
return sdk.patch("/looks/".concat(look_id), {
|
|
2545
2621
|
fields
|
|
2546
2622
|
}, body, options);
|
|
2547
2623
|
});
|
|
2548
2624
|
|
|
2549
|
-
return function update_look(
|
|
2550
|
-
return
|
|
2625
|
+
return function update_look(_x778, _x779, _x780, _x781, _x782) {
|
|
2626
|
+
return _ref233.apply(this, arguments);
|
|
2551
2627
|
};
|
|
2552
2628
|
}();
|
|
2553
2629
|
export var delete_look = function () {
|
|
2554
|
-
var
|
|
2630
|
+
var _ref234 = _asyncToGenerator(function* (sdk, look_id, options) {
|
|
2555
2631
|
look_id = encodeParam(look_id);
|
|
2556
2632
|
return sdk.delete("/looks/".concat(look_id), null, null, options);
|
|
2557
2633
|
});
|
|
2558
2634
|
|
|
2559
|
-
return function delete_look(
|
|
2560
|
-
return
|
|
2635
|
+
return function delete_look(_x783, _x784, _x785) {
|
|
2636
|
+
return _ref234.apply(this, arguments);
|
|
2561
2637
|
};
|
|
2562
2638
|
}();
|
|
2563
2639
|
export var run_look = function () {
|
|
2564
|
-
var
|
|
2640
|
+
var _ref235 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2565
2641
|
request.look_id = encodeParam(request.look_id);
|
|
2566
2642
|
request.result_format = encodeParam(request.result_format);
|
|
2567
2643
|
return sdk.get("/looks/".concat(request.look_id, "/run/").concat(request.result_format), {
|
|
@@ -2580,36 +2656,36 @@ export var run_look = function () {
|
|
|
2580
2656
|
}, null, options);
|
|
2581
2657
|
});
|
|
2582
2658
|
|
|
2583
|
-
return function run_look(
|
|
2584
|
-
return
|
|
2659
|
+
return function run_look(_x786, _x787, _x788) {
|
|
2660
|
+
return _ref235.apply(this, arguments);
|
|
2585
2661
|
};
|
|
2586
2662
|
}();
|
|
2587
2663
|
export var copy_look = function () {
|
|
2588
|
-
var
|
|
2664
|
+
var _ref236 = _asyncToGenerator(function* (sdk, look_id, folder_id, options) {
|
|
2589
2665
|
look_id = encodeParam(look_id);
|
|
2590
2666
|
return sdk.post("/looks/".concat(look_id, "/copy"), {
|
|
2591
2667
|
folder_id
|
|
2592
2668
|
}, null, options);
|
|
2593
2669
|
});
|
|
2594
2670
|
|
|
2595
|
-
return function copy_look(
|
|
2596
|
-
return
|
|
2671
|
+
return function copy_look(_x789, _x790, _x791, _x792) {
|
|
2672
|
+
return _ref236.apply(this, arguments);
|
|
2597
2673
|
};
|
|
2598
2674
|
}();
|
|
2599
2675
|
export var move_look = function () {
|
|
2600
|
-
var
|
|
2676
|
+
var _ref237 = _asyncToGenerator(function* (sdk, look_id, folder_id, options) {
|
|
2601
2677
|
look_id = encodeParam(look_id);
|
|
2602
2678
|
return sdk.patch("/looks/".concat(look_id, "/move"), {
|
|
2603
2679
|
folder_id
|
|
2604
2680
|
}, null, options);
|
|
2605
2681
|
});
|
|
2606
2682
|
|
|
2607
|
-
return function move_look(
|
|
2608
|
-
return
|
|
2683
|
+
return function move_look(_x793, _x794, _x795, _x796) {
|
|
2684
|
+
return _ref237.apply(this, arguments);
|
|
2609
2685
|
};
|
|
2610
2686
|
}();
|
|
2611
2687
|
export var all_lookml_models = function () {
|
|
2612
|
-
var
|
|
2688
|
+
var _ref238 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2613
2689
|
return sdk.get('/lookml_models', {
|
|
2614
2690
|
fields: request.fields,
|
|
2615
2691
|
limit: request.limit,
|
|
@@ -2617,53 +2693,53 @@ export var all_lookml_models = function () {
|
|
|
2617
2693
|
}, null, options);
|
|
2618
2694
|
});
|
|
2619
2695
|
|
|
2620
|
-
return function all_lookml_models(
|
|
2621
|
-
return
|
|
2696
|
+
return function all_lookml_models(_x797, _x798, _x799) {
|
|
2697
|
+
return _ref238.apply(this, arguments);
|
|
2622
2698
|
};
|
|
2623
2699
|
}();
|
|
2624
2700
|
export var create_lookml_model = function () {
|
|
2625
|
-
var
|
|
2701
|
+
var _ref239 = _asyncToGenerator(function* (sdk, body, options) {
|
|
2626
2702
|
return sdk.post('/lookml_models', null, body, options);
|
|
2627
2703
|
});
|
|
2628
2704
|
|
|
2629
|
-
return function create_lookml_model(
|
|
2630
|
-
return
|
|
2705
|
+
return function create_lookml_model(_x800, _x801, _x802) {
|
|
2706
|
+
return _ref239.apply(this, arguments);
|
|
2631
2707
|
};
|
|
2632
2708
|
}();
|
|
2633
2709
|
export var lookml_model = function () {
|
|
2634
|
-
var
|
|
2710
|
+
var _ref240 = _asyncToGenerator(function* (sdk, lookml_model_name, fields, options) {
|
|
2635
2711
|
lookml_model_name = encodeParam(lookml_model_name);
|
|
2636
2712
|
return sdk.get("/lookml_models/".concat(lookml_model_name), {
|
|
2637
2713
|
fields
|
|
2638
2714
|
}, null, options);
|
|
2639
2715
|
});
|
|
2640
2716
|
|
|
2641
|
-
return function lookml_model(
|
|
2642
|
-
return
|
|
2717
|
+
return function lookml_model(_x803, _x804, _x805, _x806) {
|
|
2718
|
+
return _ref240.apply(this, arguments);
|
|
2643
2719
|
};
|
|
2644
2720
|
}();
|
|
2645
2721
|
export var update_lookml_model = function () {
|
|
2646
|
-
var
|
|
2722
|
+
var _ref241 = _asyncToGenerator(function* (sdk, lookml_model_name, body, options) {
|
|
2647
2723
|
lookml_model_name = encodeParam(lookml_model_name);
|
|
2648
2724
|
return sdk.patch("/lookml_models/".concat(lookml_model_name), null, body, options);
|
|
2649
2725
|
});
|
|
2650
2726
|
|
|
2651
|
-
return function update_lookml_model(
|
|
2652
|
-
return
|
|
2727
|
+
return function update_lookml_model(_x807, _x808, _x809, _x810) {
|
|
2728
|
+
return _ref241.apply(this, arguments);
|
|
2653
2729
|
};
|
|
2654
2730
|
}();
|
|
2655
2731
|
export var delete_lookml_model = function () {
|
|
2656
|
-
var
|
|
2732
|
+
var _ref242 = _asyncToGenerator(function* (sdk, lookml_model_name, options) {
|
|
2657
2733
|
lookml_model_name = encodeParam(lookml_model_name);
|
|
2658
2734
|
return sdk.delete("/lookml_models/".concat(lookml_model_name), null, null, options);
|
|
2659
2735
|
});
|
|
2660
2736
|
|
|
2661
|
-
return function delete_lookml_model(
|
|
2662
|
-
return
|
|
2737
|
+
return function delete_lookml_model(_x811, _x812, _x813) {
|
|
2738
|
+
return _ref242.apply(this, arguments);
|
|
2663
2739
|
};
|
|
2664
2740
|
}();
|
|
2665
2741
|
export var lookml_model_explore = function () {
|
|
2666
|
-
var
|
|
2742
|
+
var _ref243 = _asyncToGenerator(function* (sdk, lookml_model_name, explore_name, fields, options) {
|
|
2667
2743
|
lookml_model_name = encodeParam(lookml_model_name);
|
|
2668
2744
|
explore_name = encodeParam(explore_name);
|
|
2669
2745
|
return sdk.get("/lookml_models/".concat(lookml_model_name, "/explores/").concat(explore_name), {
|
|
@@ -2671,12 +2747,12 @@ export var lookml_model_explore = function () {
|
|
|
2671
2747
|
}, null, options);
|
|
2672
2748
|
});
|
|
2673
2749
|
|
|
2674
|
-
return function lookml_model_explore(
|
|
2675
|
-
return
|
|
2750
|
+
return function lookml_model_explore(_x814, _x815, _x816, _x817, _x818) {
|
|
2751
|
+
return _ref243.apply(this, arguments);
|
|
2676
2752
|
};
|
|
2677
2753
|
}();
|
|
2678
2754
|
export var model_fieldname_suggestions = function () {
|
|
2679
|
-
var
|
|
2755
|
+
var _ref244 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2680
2756
|
request.model_name = encodeParam(request.model_name);
|
|
2681
2757
|
request.view_name = encodeParam(request.view_name);
|
|
2682
2758
|
request.field_name = encodeParam(request.field_name);
|
|
@@ -2686,44 +2762,44 @@ export var model_fieldname_suggestions = function () {
|
|
|
2686
2762
|
}, null, options);
|
|
2687
2763
|
});
|
|
2688
2764
|
|
|
2689
|
-
return function model_fieldname_suggestions(
|
|
2690
|
-
return
|
|
2765
|
+
return function model_fieldname_suggestions(_x819, _x820, _x821) {
|
|
2766
|
+
return _ref244.apply(this, arguments);
|
|
2691
2767
|
};
|
|
2692
2768
|
}();
|
|
2693
2769
|
export var get_model = function () {
|
|
2694
|
-
var
|
|
2770
|
+
var _ref245 = _asyncToGenerator(function* (sdk, model_name, options) {
|
|
2695
2771
|
model_name = encodeParam(model_name);
|
|
2696
2772
|
return sdk.get("/models/".concat(model_name), null, null, options);
|
|
2697
2773
|
});
|
|
2698
2774
|
|
|
2699
|
-
return function get_model(
|
|
2700
|
-
return
|
|
2775
|
+
return function get_model(_x822, _x823, _x824) {
|
|
2776
|
+
return _ref245.apply(this, arguments);
|
|
2701
2777
|
};
|
|
2702
2778
|
}();
|
|
2703
2779
|
export var connection_databases = function () {
|
|
2704
|
-
var
|
|
2780
|
+
var _ref246 = _asyncToGenerator(function* (sdk, connection_name, options) {
|
|
2705
2781
|
connection_name = encodeParam(connection_name);
|
|
2706
2782
|
return sdk.get("/connections/".concat(connection_name, "/databases"), null, null, options);
|
|
2707
2783
|
});
|
|
2708
2784
|
|
|
2709
|
-
return function connection_databases(
|
|
2710
|
-
return
|
|
2785
|
+
return function connection_databases(_x825, _x826, _x827) {
|
|
2786
|
+
return _ref246.apply(this, arguments);
|
|
2711
2787
|
};
|
|
2712
2788
|
}();
|
|
2713
2789
|
export var connection_features = function () {
|
|
2714
|
-
var
|
|
2790
|
+
var _ref247 = _asyncToGenerator(function* (sdk, connection_name, fields, options) {
|
|
2715
2791
|
connection_name = encodeParam(connection_name);
|
|
2716
2792
|
return sdk.get("/connections/".concat(connection_name, "/features"), {
|
|
2717
2793
|
fields
|
|
2718
2794
|
}, null, options);
|
|
2719
2795
|
});
|
|
2720
2796
|
|
|
2721
|
-
return function connection_features(
|
|
2722
|
-
return
|
|
2797
|
+
return function connection_features(_x828, _x829, _x830, _x831) {
|
|
2798
|
+
return _ref247.apply(this, arguments);
|
|
2723
2799
|
};
|
|
2724
2800
|
}();
|
|
2725
2801
|
export var connection_schemas = function () {
|
|
2726
|
-
var
|
|
2802
|
+
var _ref248 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2727
2803
|
request.connection_name = encodeParam(request.connection_name);
|
|
2728
2804
|
return sdk.get("/connections/".concat(request.connection_name, "/schemas"), {
|
|
2729
2805
|
database: request.database,
|
|
@@ -2732,12 +2808,12 @@ export var connection_schemas = function () {
|
|
|
2732
2808
|
}, null, options);
|
|
2733
2809
|
});
|
|
2734
2810
|
|
|
2735
|
-
return function connection_schemas(
|
|
2736
|
-
return
|
|
2811
|
+
return function connection_schemas(_x832, _x833, _x834) {
|
|
2812
|
+
return _ref248.apply(this, arguments);
|
|
2737
2813
|
};
|
|
2738
2814
|
}();
|
|
2739
2815
|
export var connection_tables = function () {
|
|
2740
|
-
var
|
|
2816
|
+
var _ref249 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2741
2817
|
request.connection_name = encodeParam(request.connection_name);
|
|
2742
2818
|
return sdk.get("/connections/".concat(request.connection_name, "/tables"), {
|
|
2743
2819
|
database: request.database,
|
|
@@ -2749,12 +2825,12 @@ export var connection_tables = function () {
|
|
|
2749
2825
|
}, null, options);
|
|
2750
2826
|
});
|
|
2751
2827
|
|
|
2752
|
-
return function connection_tables(
|
|
2753
|
-
return
|
|
2828
|
+
return function connection_tables(_x835, _x836, _x837) {
|
|
2829
|
+
return _ref249.apply(this, arguments);
|
|
2754
2830
|
};
|
|
2755
2831
|
}();
|
|
2756
2832
|
export var connection_columns = function () {
|
|
2757
|
-
var
|
|
2833
|
+
var _ref250 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2758
2834
|
request.connection_name = encodeParam(request.connection_name);
|
|
2759
2835
|
return sdk.get("/connections/".concat(request.connection_name, "/columns"), {
|
|
2760
2836
|
database: request.database,
|
|
@@ -2766,12 +2842,12 @@ export var connection_columns = function () {
|
|
|
2766
2842
|
}, null, options);
|
|
2767
2843
|
});
|
|
2768
2844
|
|
|
2769
|
-
return function connection_columns(
|
|
2770
|
-
return
|
|
2845
|
+
return function connection_columns(_x838, _x839, _x840) {
|
|
2846
|
+
return _ref250.apply(this, arguments);
|
|
2771
2847
|
};
|
|
2772
2848
|
}();
|
|
2773
2849
|
export var connection_search_columns = function () {
|
|
2774
|
-
var
|
|
2850
|
+
var _ref251 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2775
2851
|
request.connection_name = encodeParam(request.connection_name);
|
|
2776
2852
|
return sdk.get("/connections/".concat(request.connection_name, "/search_columns"), {
|
|
2777
2853
|
column_name: request.column_name,
|
|
@@ -2779,98 +2855,98 @@ export var connection_search_columns = function () {
|
|
|
2779
2855
|
}, null, options);
|
|
2780
2856
|
});
|
|
2781
2857
|
|
|
2782
|
-
return function connection_search_columns(
|
|
2783
|
-
return
|
|
2858
|
+
return function connection_search_columns(_x841, _x842, _x843) {
|
|
2859
|
+
return _ref251.apply(this, arguments);
|
|
2784
2860
|
};
|
|
2785
2861
|
}();
|
|
2786
2862
|
export var connection_cost_estimate = function () {
|
|
2787
|
-
var
|
|
2863
|
+
var _ref252 = _asyncToGenerator(function* (sdk, connection_name, body, fields, options) {
|
|
2788
2864
|
connection_name = encodeParam(connection_name);
|
|
2789
2865
|
return sdk.post("/connections/".concat(connection_name, "/cost_estimate"), {
|
|
2790
2866
|
fields
|
|
2791
2867
|
}, body, options);
|
|
2792
2868
|
});
|
|
2793
2869
|
|
|
2794
|
-
return function connection_cost_estimate(
|
|
2795
|
-
return
|
|
2870
|
+
return function connection_cost_estimate(_x844, _x845, _x846, _x847, _x848) {
|
|
2871
|
+
return _ref252.apply(this, arguments);
|
|
2796
2872
|
};
|
|
2797
2873
|
}();
|
|
2798
2874
|
export var lock_all = function () {
|
|
2799
|
-
var
|
|
2875
|
+
var _ref253 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
2800
2876
|
project_id = encodeParam(project_id);
|
|
2801
2877
|
return sdk.post("/projects/".concat(project_id, "/manifest/lock_all"), {
|
|
2802
2878
|
fields
|
|
2803
2879
|
}, null, options);
|
|
2804
2880
|
});
|
|
2805
2881
|
|
|
2806
|
-
return function lock_all(
|
|
2807
|
-
return
|
|
2882
|
+
return function lock_all(_x849, _x850, _x851, _x852) {
|
|
2883
|
+
return _ref253.apply(this, arguments);
|
|
2808
2884
|
};
|
|
2809
2885
|
}();
|
|
2810
2886
|
export var all_git_branches = function () {
|
|
2811
|
-
var
|
|
2887
|
+
var _ref254 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2812
2888
|
project_id = encodeParam(project_id);
|
|
2813
2889
|
return sdk.get("/projects/".concat(project_id, "/git_branches"), null, null, options);
|
|
2814
2890
|
});
|
|
2815
2891
|
|
|
2816
|
-
return function all_git_branches(
|
|
2817
|
-
return
|
|
2892
|
+
return function all_git_branches(_x853, _x854, _x855) {
|
|
2893
|
+
return _ref254.apply(this, arguments);
|
|
2818
2894
|
};
|
|
2819
2895
|
}();
|
|
2820
2896
|
export var git_branch = function () {
|
|
2821
|
-
var
|
|
2897
|
+
var _ref255 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2822
2898
|
project_id = encodeParam(project_id);
|
|
2823
2899
|
return sdk.get("/projects/".concat(project_id, "/git_branch"), null, null, options);
|
|
2824
2900
|
});
|
|
2825
2901
|
|
|
2826
|
-
return function git_branch(
|
|
2827
|
-
return
|
|
2902
|
+
return function git_branch(_x856, _x857, _x858) {
|
|
2903
|
+
return _ref255.apply(this, arguments);
|
|
2828
2904
|
};
|
|
2829
2905
|
}();
|
|
2830
2906
|
export var update_git_branch = function () {
|
|
2831
|
-
var
|
|
2907
|
+
var _ref256 = _asyncToGenerator(function* (sdk, project_id, body, options) {
|
|
2832
2908
|
project_id = encodeParam(project_id);
|
|
2833
2909
|
return sdk.put("/projects/".concat(project_id, "/git_branch"), null, body, options);
|
|
2834
2910
|
});
|
|
2835
2911
|
|
|
2836
|
-
return function update_git_branch(
|
|
2837
|
-
return
|
|
2912
|
+
return function update_git_branch(_x859, _x860, _x861, _x862) {
|
|
2913
|
+
return _ref256.apply(this, arguments);
|
|
2838
2914
|
};
|
|
2839
2915
|
}();
|
|
2840
2916
|
export var create_git_branch = function () {
|
|
2841
|
-
var
|
|
2917
|
+
var _ref257 = _asyncToGenerator(function* (sdk, project_id, body, options) {
|
|
2842
2918
|
project_id = encodeParam(project_id);
|
|
2843
2919
|
return sdk.post("/projects/".concat(project_id, "/git_branch"), null, body, options);
|
|
2844
2920
|
});
|
|
2845
2921
|
|
|
2846
|
-
return function create_git_branch(
|
|
2847
|
-
return
|
|
2922
|
+
return function create_git_branch(_x863, _x864, _x865, _x866) {
|
|
2923
|
+
return _ref257.apply(this, arguments);
|
|
2848
2924
|
};
|
|
2849
2925
|
}();
|
|
2850
2926
|
export var find_git_branch = function () {
|
|
2851
|
-
var
|
|
2927
|
+
var _ref258 = _asyncToGenerator(function* (sdk, project_id, branch_name, options) {
|
|
2852
2928
|
project_id = encodeParam(project_id);
|
|
2853
2929
|
branch_name = encodeParam(branch_name);
|
|
2854
2930
|
return sdk.get("/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
|
|
2855
2931
|
});
|
|
2856
2932
|
|
|
2857
|
-
return function find_git_branch(
|
|
2858
|
-
return
|
|
2933
|
+
return function find_git_branch(_x867, _x868, _x869, _x870) {
|
|
2934
|
+
return _ref258.apply(this, arguments);
|
|
2859
2935
|
};
|
|
2860
2936
|
}();
|
|
2861
2937
|
export var delete_git_branch = function () {
|
|
2862
|
-
var
|
|
2938
|
+
var _ref259 = _asyncToGenerator(function* (sdk, project_id, branch_name, options) {
|
|
2863
2939
|
project_id = encodeParam(project_id);
|
|
2864
2940
|
branch_name = encodeParam(branch_name);
|
|
2865
2941
|
return sdk.delete("/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
|
|
2866
2942
|
});
|
|
2867
2943
|
|
|
2868
|
-
return function delete_git_branch(
|
|
2869
|
-
return
|
|
2944
|
+
return function delete_git_branch(_x871, _x872, _x873, _x874) {
|
|
2945
|
+
return _ref259.apply(this, arguments);
|
|
2870
2946
|
};
|
|
2871
2947
|
}();
|
|
2872
2948
|
export var deploy_ref_to_production = function () {
|
|
2873
|
-
var
|
|
2949
|
+
var _ref260 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2874
2950
|
request.project_id = encodeParam(request.project_id);
|
|
2875
2951
|
return sdk.post("/projects/".concat(request.project_id, "/deploy_ref_to_production"), {
|
|
2876
2952
|
branch: request.branch,
|
|
@@ -2878,164 +2954,164 @@ export var deploy_ref_to_production = function () {
|
|
|
2878
2954
|
}, null, options);
|
|
2879
2955
|
});
|
|
2880
2956
|
|
|
2881
|
-
return function deploy_ref_to_production(
|
|
2882
|
-
return
|
|
2957
|
+
return function deploy_ref_to_production(_x875, _x876, _x877) {
|
|
2958
|
+
return _ref260.apply(this, arguments);
|
|
2883
2959
|
};
|
|
2884
2960
|
}();
|
|
2885
2961
|
export var deploy_to_production = function () {
|
|
2886
|
-
var
|
|
2962
|
+
var _ref261 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2887
2963
|
project_id = encodeParam(project_id);
|
|
2888
2964
|
return sdk.post("/projects/".concat(project_id, "/deploy_to_production"), null, null, options);
|
|
2889
2965
|
});
|
|
2890
2966
|
|
|
2891
|
-
return function deploy_to_production(
|
|
2892
|
-
return
|
|
2967
|
+
return function deploy_to_production(_x878, _x879, _x880) {
|
|
2968
|
+
return _ref261.apply(this, arguments);
|
|
2893
2969
|
};
|
|
2894
2970
|
}();
|
|
2895
2971
|
export var reset_project_to_production = function () {
|
|
2896
|
-
var
|
|
2972
|
+
var _ref262 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2897
2973
|
project_id = encodeParam(project_id);
|
|
2898
2974
|
return sdk.post("/projects/".concat(project_id, "/reset_to_production"), null, null, options);
|
|
2899
2975
|
});
|
|
2900
2976
|
|
|
2901
|
-
return function reset_project_to_production(
|
|
2902
|
-
return
|
|
2977
|
+
return function reset_project_to_production(_x881, _x882, _x883) {
|
|
2978
|
+
return _ref262.apply(this, arguments);
|
|
2903
2979
|
};
|
|
2904
2980
|
}();
|
|
2905
2981
|
export var reset_project_to_remote = function () {
|
|
2906
|
-
var
|
|
2982
|
+
var _ref263 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2907
2983
|
project_id = encodeParam(project_id);
|
|
2908
2984
|
return sdk.post("/projects/".concat(project_id, "/reset_to_remote"), null, null, options);
|
|
2909
2985
|
});
|
|
2910
2986
|
|
|
2911
|
-
return function reset_project_to_remote(
|
|
2912
|
-
return
|
|
2987
|
+
return function reset_project_to_remote(_x884, _x885, _x886) {
|
|
2988
|
+
return _ref263.apply(this, arguments);
|
|
2913
2989
|
};
|
|
2914
2990
|
}();
|
|
2915
2991
|
export var all_projects = function () {
|
|
2916
|
-
var
|
|
2992
|
+
var _ref264 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
2917
2993
|
return sdk.get('/projects', {
|
|
2918
2994
|
fields
|
|
2919
2995
|
}, null, options);
|
|
2920
2996
|
});
|
|
2921
2997
|
|
|
2922
|
-
return function all_projects(
|
|
2923
|
-
return
|
|
2998
|
+
return function all_projects(_x887, _x888, _x889) {
|
|
2999
|
+
return _ref264.apply(this, arguments);
|
|
2924
3000
|
};
|
|
2925
3001
|
}();
|
|
2926
3002
|
export var create_project = function () {
|
|
2927
|
-
var
|
|
3003
|
+
var _ref265 = _asyncToGenerator(function* (sdk, body, options) {
|
|
2928
3004
|
return sdk.post('/projects', null, body, options);
|
|
2929
3005
|
});
|
|
2930
3006
|
|
|
2931
|
-
return function create_project(
|
|
2932
|
-
return
|
|
3007
|
+
return function create_project(_x890, _x891, _x892) {
|
|
3008
|
+
return _ref265.apply(this, arguments);
|
|
2933
3009
|
};
|
|
2934
3010
|
}();
|
|
2935
3011
|
export var project = function () {
|
|
2936
|
-
var
|
|
3012
|
+
var _ref266 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
2937
3013
|
project_id = encodeParam(project_id);
|
|
2938
3014
|
return sdk.get("/projects/".concat(project_id), {
|
|
2939
3015
|
fields
|
|
2940
3016
|
}, null, options);
|
|
2941
3017
|
});
|
|
2942
3018
|
|
|
2943
|
-
return function project(
|
|
2944
|
-
return
|
|
3019
|
+
return function project(_x893, _x894, _x895, _x896) {
|
|
3020
|
+
return _ref266.apply(this, arguments);
|
|
2945
3021
|
};
|
|
2946
3022
|
}();
|
|
2947
3023
|
export var update_project = function () {
|
|
2948
|
-
var
|
|
3024
|
+
var _ref267 = _asyncToGenerator(function* (sdk, project_id, body, fields, options) {
|
|
2949
3025
|
project_id = encodeParam(project_id);
|
|
2950
3026
|
return sdk.patch("/projects/".concat(project_id), {
|
|
2951
3027
|
fields
|
|
2952
3028
|
}, body, options);
|
|
2953
3029
|
});
|
|
2954
3030
|
|
|
2955
|
-
return function update_project(
|
|
2956
|
-
return
|
|
3031
|
+
return function update_project(_x897, _x898, _x899, _x900, _x901) {
|
|
3032
|
+
return _ref267.apply(this, arguments);
|
|
2957
3033
|
};
|
|
2958
3034
|
}();
|
|
2959
3035
|
export var manifest = function () {
|
|
2960
|
-
var
|
|
3036
|
+
var _ref268 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2961
3037
|
project_id = encodeParam(project_id);
|
|
2962
3038
|
return sdk.get("/projects/".concat(project_id, "/manifest"), null, null, options);
|
|
2963
3039
|
});
|
|
2964
3040
|
|
|
2965
|
-
return function manifest(
|
|
2966
|
-
return
|
|
3041
|
+
return function manifest(_x902, _x903, _x904) {
|
|
3042
|
+
return _ref268.apply(this, arguments);
|
|
2967
3043
|
};
|
|
2968
3044
|
}();
|
|
2969
3045
|
export var git_deploy_key = function () {
|
|
2970
|
-
var
|
|
3046
|
+
var _ref269 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2971
3047
|
project_id = encodeParam(project_id);
|
|
2972
3048
|
return sdk.get("/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
|
|
2973
3049
|
});
|
|
2974
3050
|
|
|
2975
|
-
return function git_deploy_key(
|
|
2976
|
-
return
|
|
3051
|
+
return function git_deploy_key(_x905, _x906, _x907) {
|
|
3052
|
+
return _ref269.apply(this, arguments);
|
|
2977
3053
|
};
|
|
2978
3054
|
}();
|
|
2979
3055
|
export var create_git_deploy_key = function () {
|
|
2980
|
-
var
|
|
3056
|
+
var _ref270 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2981
3057
|
project_id = encodeParam(project_id);
|
|
2982
3058
|
return sdk.post("/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
|
|
2983
3059
|
});
|
|
2984
3060
|
|
|
2985
|
-
return function create_git_deploy_key(
|
|
2986
|
-
return
|
|
3061
|
+
return function create_git_deploy_key(_x908, _x909, _x910) {
|
|
3062
|
+
return _ref270.apply(this, arguments);
|
|
2987
3063
|
};
|
|
2988
3064
|
}();
|
|
2989
3065
|
export var project_validation_results = function () {
|
|
2990
|
-
var
|
|
3066
|
+
var _ref271 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
2991
3067
|
project_id = encodeParam(project_id);
|
|
2992
3068
|
return sdk.get("/projects/".concat(project_id, "/validate"), {
|
|
2993
3069
|
fields
|
|
2994
3070
|
}, null, options);
|
|
2995
3071
|
});
|
|
2996
3072
|
|
|
2997
|
-
return function project_validation_results(
|
|
2998
|
-
return
|
|
3073
|
+
return function project_validation_results(_x911, _x912, _x913, _x914) {
|
|
3074
|
+
return _ref271.apply(this, arguments);
|
|
2999
3075
|
};
|
|
3000
3076
|
}();
|
|
3001
3077
|
export var validate_project = function () {
|
|
3002
|
-
var
|
|
3078
|
+
var _ref272 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3003
3079
|
project_id = encodeParam(project_id);
|
|
3004
3080
|
return sdk.post("/projects/".concat(project_id, "/validate"), {
|
|
3005
3081
|
fields
|
|
3006
3082
|
}, null, options);
|
|
3007
3083
|
});
|
|
3008
3084
|
|
|
3009
|
-
return function validate_project(
|
|
3010
|
-
return
|
|
3085
|
+
return function validate_project(_x915, _x916, _x917, _x918) {
|
|
3086
|
+
return _ref272.apply(this, arguments);
|
|
3011
3087
|
};
|
|
3012
3088
|
}();
|
|
3013
3089
|
export var project_workspace = function () {
|
|
3014
|
-
var
|
|
3090
|
+
var _ref273 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3015
3091
|
project_id = encodeParam(project_id);
|
|
3016
3092
|
return sdk.get("/projects/".concat(project_id, "/current_workspace"), {
|
|
3017
3093
|
fields
|
|
3018
3094
|
}, null, options);
|
|
3019
3095
|
});
|
|
3020
3096
|
|
|
3021
|
-
return function project_workspace(
|
|
3022
|
-
return
|
|
3097
|
+
return function project_workspace(_x919, _x920, _x921, _x922) {
|
|
3098
|
+
return _ref273.apply(this, arguments);
|
|
3023
3099
|
};
|
|
3024
3100
|
}();
|
|
3025
3101
|
export var all_project_files = function () {
|
|
3026
|
-
var
|
|
3102
|
+
var _ref274 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3027
3103
|
project_id = encodeParam(project_id);
|
|
3028
3104
|
return sdk.get("/projects/".concat(project_id, "/files"), {
|
|
3029
3105
|
fields
|
|
3030
3106
|
}, null, options);
|
|
3031
3107
|
});
|
|
3032
3108
|
|
|
3033
|
-
return function all_project_files(
|
|
3034
|
-
return
|
|
3109
|
+
return function all_project_files(_x923, _x924, _x925, _x926) {
|
|
3110
|
+
return _ref274.apply(this, arguments);
|
|
3035
3111
|
};
|
|
3036
3112
|
}();
|
|
3037
3113
|
export var project_file = function () {
|
|
3038
|
-
var
|
|
3114
|
+
var _ref275 = _asyncToGenerator(function* (sdk, project_id, file_id, fields, options) {
|
|
3039
3115
|
project_id = encodeParam(project_id);
|
|
3040
3116
|
return sdk.get("/projects/".concat(project_id, "/files/file"), {
|
|
3041
3117
|
file_id,
|
|
@@ -3043,24 +3119,24 @@ export var project_file = function () {
|
|
|
3043
3119
|
}, null, options);
|
|
3044
3120
|
});
|
|
3045
3121
|
|
|
3046
|
-
return function project_file(
|
|
3047
|
-
return
|
|
3122
|
+
return function project_file(_x927, _x928, _x929, _x930, _x931) {
|
|
3123
|
+
return _ref275.apply(this, arguments);
|
|
3048
3124
|
};
|
|
3049
3125
|
}();
|
|
3050
3126
|
export var all_git_connection_tests = function () {
|
|
3051
|
-
var
|
|
3127
|
+
var _ref276 = _asyncToGenerator(function* (sdk, project_id, remote_url, options) {
|
|
3052
3128
|
project_id = encodeParam(project_id);
|
|
3053
3129
|
return sdk.get("/projects/".concat(project_id, "/git_connection_tests"), {
|
|
3054
3130
|
remote_url
|
|
3055
3131
|
}, null, options);
|
|
3056
3132
|
});
|
|
3057
3133
|
|
|
3058
|
-
return function all_git_connection_tests(
|
|
3059
|
-
return
|
|
3134
|
+
return function all_git_connection_tests(_x932, _x933, _x934, _x935) {
|
|
3135
|
+
return _ref276.apply(this, arguments);
|
|
3060
3136
|
};
|
|
3061
3137
|
}();
|
|
3062
3138
|
export var run_git_connection_test = function () {
|
|
3063
|
-
var
|
|
3139
|
+
var _ref277 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3064
3140
|
request.project_id = encodeParam(request.project_id);
|
|
3065
3141
|
request.test_id = encodeParam(request.test_id);
|
|
3066
3142
|
return sdk.get("/projects/".concat(request.project_id, "/git_connection_tests/").concat(request.test_id), {
|
|
@@ -3069,24 +3145,24 @@ export var run_git_connection_test = function () {
|
|
|
3069
3145
|
}, null, options);
|
|
3070
3146
|
});
|
|
3071
3147
|
|
|
3072
|
-
return function run_git_connection_test(
|
|
3073
|
-
return
|
|
3148
|
+
return function run_git_connection_test(_x936, _x937, _x938) {
|
|
3149
|
+
return _ref277.apply(this, arguments);
|
|
3074
3150
|
};
|
|
3075
3151
|
}();
|
|
3076
3152
|
export var all_lookml_tests = function () {
|
|
3077
|
-
var
|
|
3153
|
+
var _ref278 = _asyncToGenerator(function* (sdk, project_id, file_id, options) {
|
|
3078
3154
|
project_id = encodeParam(project_id);
|
|
3079
3155
|
return sdk.get("/projects/".concat(project_id, "/lookml_tests"), {
|
|
3080
3156
|
file_id
|
|
3081
3157
|
}, null, options);
|
|
3082
3158
|
});
|
|
3083
3159
|
|
|
3084
|
-
return function all_lookml_tests(
|
|
3085
|
-
return
|
|
3160
|
+
return function all_lookml_tests(_x939, _x940, _x941, _x942) {
|
|
3161
|
+
return _ref278.apply(this, arguments);
|
|
3086
3162
|
};
|
|
3087
3163
|
}();
|
|
3088
3164
|
export var run_lookml_test = function () {
|
|
3089
|
-
var
|
|
3165
|
+
var _ref279 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3090
3166
|
request.project_id = encodeParam(request.project_id);
|
|
3091
3167
|
return sdk.get("/projects/".concat(request.project_id, "/lookml_tests/run"), {
|
|
3092
3168
|
file_id: request.file_id,
|
|
@@ -3095,12 +3171,12 @@ export var run_lookml_test = function () {
|
|
|
3095
3171
|
}, null, options);
|
|
3096
3172
|
});
|
|
3097
3173
|
|
|
3098
|
-
return function run_lookml_test(
|
|
3099
|
-
return
|
|
3174
|
+
return function run_lookml_test(_x943, _x944, _x945) {
|
|
3175
|
+
return _ref279.apply(this, arguments);
|
|
3100
3176
|
};
|
|
3101
3177
|
}();
|
|
3102
3178
|
export var tag_ref = function () {
|
|
3103
|
-
var
|
|
3179
|
+
var _ref280 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3104
3180
|
request.project_id = encodeParam(request.project_id);
|
|
3105
3181
|
return sdk.post("/projects/".concat(request.project_id, "/tag"), {
|
|
3106
3182
|
commit_sha: request.commit_sha,
|
|
@@ -3109,44 +3185,44 @@ export var tag_ref = function () {
|
|
|
3109
3185
|
}, request.body, options);
|
|
3110
3186
|
});
|
|
3111
3187
|
|
|
3112
|
-
return function tag_ref(
|
|
3113
|
-
return
|
|
3188
|
+
return function tag_ref(_x946, _x947, _x948) {
|
|
3189
|
+
return _ref280.apply(this, arguments);
|
|
3114
3190
|
};
|
|
3115
3191
|
}();
|
|
3116
3192
|
export var update_repository_credential = function () {
|
|
3117
|
-
var
|
|
3193
|
+
var _ref281 = _asyncToGenerator(function* (sdk, root_project_id, credential_id, body, options) {
|
|
3118
3194
|
root_project_id = encodeParam(root_project_id);
|
|
3119
3195
|
credential_id = encodeParam(credential_id);
|
|
3120
3196
|
return sdk.put("/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, body, options);
|
|
3121
3197
|
});
|
|
3122
3198
|
|
|
3123
|
-
return function update_repository_credential(
|
|
3124
|
-
return
|
|
3199
|
+
return function update_repository_credential(_x949, _x950, _x951, _x952, _x953) {
|
|
3200
|
+
return _ref281.apply(this, arguments);
|
|
3125
3201
|
};
|
|
3126
3202
|
}();
|
|
3127
3203
|
export var delete_repository_credential = function () {
|
|
3128
|
-
var
|
|
3204
|
+
var _ref282 = _asyncToGenerator(function* (sdk, root_project_id, credential_id, options) {
|
|
3129
3205
|
root_project_id = encodeParam(root_project_id);
|
|
3130
3206
|
credential_id = encodeParam(credential_id);
|
|
3131
3207
|
return sdk.delete("/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, null, options);
|
|
3132
3208
|
});
|
|
3133
3209
|
|
|
3134
|
-
return function delete_repository_credential(
|
|
3135
|
-
return
|
|
3210
|
+
return function delete_repository_credential(_x954, _x955, _x956, _x957) {
|
|
3211
|
+
return _ref282.apply(this, arguments);
|
|
3136
3212
|
};
|
|
3137
3213
|
}();
|
|
3138
3214
|
export var get_all_repository_credentials = function () {
|
|
3139
|
-
var
|
|
3215
|
+
var _ref283 = _asyncToGenerator(function* (sdk, root_project_id, options) {
|
|
3140
3216
|
root_project_id = encodeParam(root_project_id);
|
|
3141
3217
|
return sdk.get("/projects/".concat(root_project_id, "/credentials"), null, null, options);
|
|
3142
3218
|
});
|
|
3143
3219
|
|
|
3144
|
-
return function get_all_repository_credentials(
|
|
3145
|
-
return
|
|
3220
|
+
return function get_all_repository_credentials(_x958, _x959, _x960) {
|
|
3221
|
+
return _ref283.apply(this, arguments);
|
|
3146
3222
|
};
|
|
3147
3223
|
}();
|
|
3148
3224
|
export var create_query_task = function () {
|
|
3149
|
-
var
|
|
3225
|
+
var _ref284 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3150
3226
|
return sdk.post('/query_tasks', {
|
|
3151
3227
|
limit: request.limit,
|
|
3152
3228
|
apply_formatting: request.apply_formatting,
|
|
@@ -3164,79 +3240,81 @@ export var create_query_task = function () {
|
|
|
3164
3240
|
}, request.body, options);
|
|
3165
3241
|
});
|
|
3166
3242
|
|
|
3167
|
-
return function create_query_task(
|
|
3168
|
-
return
|
|
3243
|
+
return function create_query_task(_x961, _x962, _x963) {
|
|
3244
|
+
return _ref284.apply(this, arguments);
|
|
3169
3245
|
};
|
|
3170
3246
|
}();
|
|
3171
3247
|
export var query_task_multi_results = function () {
|
|
3172
|
-
var
|
|
3248
|
+
var _ref285 = _asyncToGenerator(function* (sdk, query_task_ids, options) {
|
|
3173
3249
|
return sdk.get('/query_tasks/multi_results', {
|
|
3174
3250
|
query_task_ids
|
|
3175
3251
|
}, null, options);
|
|
3176
3252
|
});
|
|
3177
3253
|
|
|
3178
|
-
return function query_task_multi_results(
|
|
3179
|
-
return
|
|
3254
|
+
return function query_task_multi_results(_x964, _x965, _x966) {
|
|
3255
|
+
return _ref285.apply(this, arguments);
|
|
3180
3256
|
};
|
|
3181
3257
|
}();
|
|
3182
3258
|
export var query_task = function () {
|
|
3183
|
-
var
|
|
3259
|
+
var _ref286 = _asyncToGenerator(function* (sdk, query_task_id, fields, options) {
|
|
3184
3260
|
query_task_id = encodeParam(query_task_id);
|
|
3185
3261
|
return sdk.get("/query_tasks/".concat(query_task_id), {
|
|
3186
3262
|
fields
|
|
3187
3263
|
}, null, options);
|
|
3188
3264
|
});
|
|
3189
3265
|
|
|
3190
|
-
return function query_task(
|
|
3191
|
-
return
|
|
3266
|
+
return function query_task(_x967, _x968, _x969, _x970) {
|
|
3267
|
+
return _ref286.apply(this, arguments);
|
|
3192
3268
|
};
|
|
3193
3269
|
}();
|
|
3194
3270
|
export var query_task_results = function () {
|
|
3195
|
-
var
|
|
3271
|
+
var _ref287 = _asyncToGenerator(function* (sdk, query_task_id, options) {
|
|
3196
3272
|
query_task_id = encodeParam(query_task_id);
|
|
3197
3273
|
return sdk.get("/query_tasks/".concat(query_task_id, "/results"), null, null, options);
|
|
3198
3274
|
});
|
|
3199
3275
|
|
|
3200
|
-
return function query_task_results(
|
|
3201
|
-
return
|
|
3276
|
+
return function query_task_results(_x971, _x972, _x973) {
|
|
3277
|
+
return _ref287.apply(this, arguments);
|
|
3202
3278
|
};
|
|
3203
3279
|
}();
|
|
3204
3280
|
export var query = function () {
|
|
3205
|
-
var
|
|
3281
|
+
var _ref288 = _asyncToGenerator(function* (sdk, query_id, fields, options) {
|
|
3282
|
+
query_id = encodeParam(query_id);
|
|
3206
3283
|
return sdk.get("/queries/".concat(query_id), {
|
|
3207
3284
|
fields
|
|
3208
3285
|
}, null, options);
|
|
3209
3286
|
});
|
|
3210
3287
|
|
|
3211
|
-
return function query(
|
|
3212
|
-
return
|
|
3288
|
+
return function query(_x974, _x975, _x976, _x977) {
|
|
3289
|
+
return _ref288.apply(this, arguments);
|
|
3213
3290
|
};
|
|
3214
3291
|
}();
|
|
3215
3292
|
export var query_for_slug = function () {
|
|
3216
|
-
var
|
|
3293
|
+
var _ref289 = _asyncToGenerator(function* (sdk, slug, fields, options) {
|
|
3217
3294
|
slug = encodeParam(slug);
|
|
3218
3295
|
return sdk.get("/queries/slug/".concat(slug), {
|
|
3219
3296
|
fields
|
|
3220
3297
|
}, null, options);
|
|
3221
3298
|
});
|
|
3222
3299
|
|
|
3223
|
-
return function query_for_slug(
|
|
3224
|
-
return
|
|
3300
|
+
return function query_for_slug(_x978, _x979, _x980, _x981) {
|
|
3301
|
+
return _ref289.apply(this, arguments);
|
|
3225
3302
|
};
|
|
3226
3303
|
}();
|
|
3227
3304
|
export var create_query = function () {
|
|
3228
|
-
var
|
|
3305
|
+
var _ref290 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
3229
3306
|
return sdk.post('/queries', {
|
|
3230
3307
|
fields
|
|
3231
3308
|
}, body, options);
|
|
3232
3309
|
});
|
|
3233
3310
|
|
|
3234
|
-
return function create_query(
|
|
3235
|
-
return
|
|
3311
|
+
return function create_query(_x982, _x983, _x984, _x985) {
|
|
3312
|
+
return _ref290.apply(this, arguments);
|
|
3236
3313
|
};
|
|
3237
3314
|
}();
|
|
3238
3315
|
export var run_query = function () {
|
|
3239
|
-
var
|
|
3316
|
+
var _ref291 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3317
|
+
request.query_id = encodeParam(request.query_id);
|
|
3240
3318
|
request.result_format = encodeParam(request.result_format);
|
|
3241
3319
|
return sdk.get("/queries/".concat(request.query_id, "/run/").concat(request.result_format), {
|
|
3242
3320
|
limit: request.limit,
|
|
@@ -3255,12 +3333,12 @@ export var run_query = function () {
|
|
|
3255
3333
|
}, null, options);
|
|
3256
3334
|
});
|
|
3257
3335
|
|
|
3258
|
-
return function run_query(
|
|
3259
|
-
return
|
|
3336
|
+
return function run_query(_x986, _x987, _x988) {
|
|
3337
|
+
return _ref291.apply(this, arguments);
|
|
3260
3338
|
};
|
|
3261
3339
|
}();
|
|
3262
3340
|
export var run_inline_query = function () {
|
|
3263
|
-
var
|
|
3341
|
+
var _ref292 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3264
3342
|
request.result_format = encodeParam(request.result_format);
|
|
3265
3343
|
return sdk.post("/queries/run/".concat(request.result_format), {
|
|
3266
3344
|
limit: request.limit,
|
|
@@ -3278,85 +3356,85 @@ export var run_inline_query = function () {
|
|
|
3278
3356
|
}, request.body, options);
|
|
3279
3357
|
});
|
|
3280
3358
|
|
|
3281
|
-
return function run_inline_query(
|
|
3282
|
-
return
|
|
3359
|
+
return function run_inline_query(_x989, _x990, _x991) {
|
|
3360
|
+
return _ref292.apply(this, arguments);
|
|
3283
3361
|
};
|
|
3284
3362
|
}();
|
|
3285
3363
|
export var run_url_encoded_query = function () {
|
|
3286
|
-
var
|
|
3364
|
+
var _ref293 = _asyncToGenerator(function* (sdk, model_name, view_name, result_format, options) {
|
|
3287
3365
|
model_name = encodeParam(model_name);
|
|
3288
3366
|
view_name = encodeParam(view_name);
|
|
3289
3367
|
result_format = encodeParam(result_format);
|
|
3290
3368
|
return sdk.get("/queries/models/".concat(model_name, "/views/").concat(view_name, "/run/").concat(result_format), null, null, options);
|
|
3291
3369
|
});
|
|
3292
3370
|
|
|
3293
|
-
return function run_url_encoded_query(
|
|
3294
|
-
return
|
|
3371
|
+
return function run_url_encoded_query(_x992, _x993, _x994, _x995, _x996) {
|
|
3372
|
+
return _ref293.apply(this, arguments);
|
|
3295
3373
|
};
|
|
3296
3374
|
}();
|
|
3297
3375
|
export var merge_query = function () {
|
|
3298
|
-
var
|
|
3376
|
+
var _ref294 = _asyncToGenerator(function* (sdk, merge_query_id, fields, options) {
|
|
3299
3377
|
merge_query_id = encodeParam(merge_query_id);
|
|
3300
3378
|
return sdk.get("/merge_queries/".concat(merge_query_id), {
|
|
3301
3379
|
fields
|
|
3302
3380
|
}, null, options);
|
|
3303
3381
|
});
|
|
3304
3382
|
|
|
3305
|
-
return function merge_query(
|
|
3306
|
-
return
|
|
3383
|
+
return function merge_query(_x997, _x998, _x999, _x1000) {
|
|
3384
|
+
return _ref294.apply(this, arguments);
|
|
3307
3385
|
};
|
|
3308
3386
|
}();
|
|
3309
3387
|
export var create_merge_query = function () {
|
|
3310
|
-
var
|
|
3388
|
+
var _ref295 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
3311
3389
|
return sdk.post('/merge_queries', {
|
|
3312
3390
|
fields
|
|
3313
3391
|
}, body, options);
|
|
3314
3392
|
});
|
|
3315
3393
|
|
|
3316
|
-
return function create_merge_query(
|
|
3317
|
-
return
|
|
3394
|
+
return function create_merge_query(_x1001, _x1002, _x1003, _x1004) {
|
|
3395
|
+
return _ref295.apply(this, arguments);
|
|
3318
3396
|
};
|
|
3319
3397
|
}();
|
|
3320
3398
|
export var all_running_queries = function () {
|
|
3321
|
-
var
|
|
3399
|
+
var _ref296 = _asyncToGenerator(function* (sdk, options) {
|
|
3322
3400
|
return sdk.get('/running_queries', null, null, options);
|
|
3323
3401
|
});
|
|
3324
3402
|
|
|
3325
|
-
return function all_running_queries(
|
|
3326
|
-
return
|
|
3403
|
+
return function all_running_queries(_x1005, _x1006) {
|
|
3404
|
+
return _ref296.apply(this, arguments);
|
|
3327
3405
|
};
|
|
3328
3406
|
}();
|
|
3329
3407
|
export var kill_query = function () {
|
|
3330
|
-
var
|
|
3408
|
+
var _ref297 = _asyncToGenerator(function* (sdk, query_task_id, options) {
|
|
3331
3409
|
query_task_id = encodeParam(query_task_id);
|
|
3332
3410
|
return sdk.delete("/running_queries/".concat(query_task_id), null, null, options);
|
|
3333
3411
|
});
|
|
3334
3412
|
|
|
3335
|
-
return function kill_query(
|
|
3336
|
-
return
|
|
3413
|
+
return function kill_query(_x1007, _x1008, _x1009) {
|
|
3414
|
+
return _ref297.apply(this, arguments);
|
|
3337
3415
|
};
|
|
3338
3416
|
}();
|
|
3339
3417
|
export var sql_query = function () {
|
|
3340
|
-
var
|
|
3418
|
+
var _ref298 = _asyncToGenerator(function* (sdk, slug, options) {
|
|
3341
3419
|
slug = encodeParam(slug);
|
|
3342
3420
|
return sdk.get("/sql_queries/".concat(slug), null, null, options);
|
|
3343
3421
|
});
|
|
3344
3422
|
|
|
3345
|
-
return function sql_query(
|
|
3346
|
-
return
|
|
3423
|
+
return function sql_query(_x1010, _x1011, _x1012) {
|
|
3424
|
+
return _ref298.apply(this, arguments);
|
|
3347
3425
|
};
|
|
3348
3426
|
}();
|
|
3349
3427
|
export var create_sql_query = function () {
|
|
3350
|
-
var
|
|
3428
|
+
var _ref299 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3351
3429
|
return sdk.post('/sql_queries', null, body, options);
|
|
3352
3430
|
});
|
|
3353
3431
|
|
|
3354
|
-
return function create_sql_query(
|
|
3355
|
-
return
|
|
3432
|
+
return function create_sql_query(_x1013, _x1014, _x1015) {
|
|
3433
|
+
return _ref299.apply(this, arguments);
|
|
3356
3434
|
};
|
|
3357
3435
|
}();
|
|
3358
3436
|
export var run_sql_query = function () {
|
|
3359
|
-
var
|
|
3437
|
+
var _ref300 = _asyncToGenerator(function* (sdk, slug, result_format, download, options) {
|
|
3360
3438
|
slug = encodeParam(slug);
|
|
3361
3439
|
result_format = encodeParam(result_format);
|
|
3362
3440
|
return sdk.post("/sql_queries/".concat(slug, "/run/").concat(result_format), {
|
|
@@ -3364,12 +3442,13 @@ export var run_sql_query = function () {
|
|
|
3364
3442
|
}, null, options);
|
|
3365
3443
|
});
|
|
3366
3444
|
|
|
3367
|
-
return function run_sql_query(
|
|
3368
|
-
return
|
|
3445
|
+
return function run_sql_query(_x1016, _x1017, _x1018, _x1019, _x1020) {
|
|
3446
|
+
return _ref300.apply(this, arguments);
|
|
3369
3447
|
};
|
|
3370
3448
|
}();
|
|
3371
3449
|
export var create_look_render_task = function () {
|
|
3372
|
-
var
|
|
3450
|
+
var _ref301 = _asyncToGenerator(function* (sdk, look_id, result_format, width, height, fields, options) {
|
|
3451
|
+
look_id = encodeParam(look_id);
|
|
3373
3452
|
result_format = encodeParam(result_format);
|
|
3374
3453
|
return sdk.post("/render_tasks/looks/".concat(look_id, "/").concat(result_format), {
|
|
3375
3454
|
width,
|
|
@@ -3378,12 +3457,13 @@ export var create_look_render_task = function () {
|
|
|
3378
3457
|
}, null, options);
|
|
3379
3458
|
});
|
|
3380
3459
|
|
|
3381
|
-
return function create_look_render_task(
|
|
3382
|
-
return
|
|
3460
|
+
return function create_look_render_task(_x1021, _x1022, _x1023, _x1024, _x1025, _x1026, _x1027) {
|
|
3461
|
+
return _ref301.apply(this, arguments);
|
|
3383
3462
|
};
|
|
3384
3463
|
}();
|
|
3385
3464
|
export var create_query_render_task = function () {
|
|
3386
|
-
var
|
|
3465
|
+
var _ref302 = _asyncToGenerator(function* (sdk, query_id, result_format, width, height, fields, options) {
|
|
3466
|
+
query_id = encodeParam(query_id);
|
|
3387
3467
|
result_format = encodeParam(result_format);
|
|
3388
3468
|
return sdk.post("/render_tasks/queries/".concat(query_id, "/").concat(result_format), {
|
|
3389
3469
|
width,
|
|
@@ -3392,12 +3472,12 @@ export var create_query_render_task = function () {
|
|
|
3392
3472
|
}, null, options);
|
|
3393
3473
|
});
|
|
3394
3474
|
|
|
3395
|
-
return function create_query_render_task(
|
|
3396
|
-
return
|
|
3475
|
+
return function create_query_render_task(_x1028, _x1029, _x1030, _x1031, _x1032, _x1033, _x1034) {
|
|
3476
|
+
return _ref302.apply(this, arguments);
|
|
3397
3477
|
};
|
|
3398
3478
|
}();
|
|
3399
3479
|
export var create_dashboard_render_task = function () {
|
|
3400
|
-
var
|
|
3480
|
+
var _ref303 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3401
3481
|
request.dashboard_id = encodeParam(request.dashboard_id);
|
|
3402
3482
|
request.result_format = encodeParam(request.result_format);
|
|
3403
3483
|
return sdk.post("/render_tasks/dashboards/".concat(request.dashboard_id, "/").concat(request.result_format), {
|
|
@@ -3410,34 +3490,34 @@ export var create_dashboard_render_task = function () {
|
|
|
3410
3490
|
}, request.body, options);
|
|
3411
3491
|
});
|
|
3412
3492
|
|
|
3413
|
-
return function create_dashboard_render_task(
|
|
3414
|
-
return
|
|
3493
|
+
return function create_dashboard_render_task(_x1035, _x1036, _x1037) {
|
|
3494
|
+
return _ref303.apply(this, arguments);
|
|
3415
3495
|
};
|
|
3416
3496
|
}();
|
|
3417
3497
|
export var render_task = function () {
|
|
3418
|
-
var
|
|
3498
|
+
var _ref304 = _asyncToGenerator(function* (sdk, render_task_id, fields, options) {
|
|
3419
3499
|
render_task_id = encodeParam(render_task_id);
|
|
3420
3500
|
return sdk.get("/render_tasks/".concat(render_task_id), {
|
|
3421
3501
|
fields
|
|
3422
3502
|
}, null, options);
|
|
3423
3503
|
});
|
|
3424
3504
|
|
|
3425
|
-
return function render_task(
|
|
3426
|
-
return
|
|
3505
|
+
return function render_task(_x1038, _x1039, _x1040, _x1041) {
|
|
3506
|
+
return _ref304.apply(this, arguments);
|
|
3427
3507
|
};
|
|
3428
3508
|
}();
|
|
3429
3509
|
export var render_task_results = function () {
|
|
3430
|
-
var
|
|
3510
|
+
var _ref305 = _asyncToGenerator(function* (sdk, render_task_id, options) {
|
|
3431
3511
|
render_task_id = encodeParam(render_task_id);
|
|
3432
3512
|
return sdk.get("/render_tasks/".concat(render_task_id, "/results"), null, null, options);
|
|
3433
3513
|
});
|
|
3434
3514
|
|
|
3435
|
-
return function render_task_results(
|
|
3436
|
-
return
|
|
3515
|
+
return function render_task_results(_x1042, _x1043, _x1044) {
|
|
3516
|
+
return _ref305.apply(this, arguments);
|
|
3437
3517
|
};
|
|
3438
3518
|
}();
|
|
3439
3519
|
export var create_dashboard_element_render_task = function () {
|
|
3440
|
-
var
|
|
3520
|
+
var _ref306 = _asyncToGenerator(function* (sdk, dashboard_element_id, result_format, width, height, fields, options) {
|
|
3441
3521
|
dashboard_element_id = encodeParam(dashboard_element_id);
|
|
3442
3522
|
result_format = encodeParam(result_format);
|
|
3443
3523
|
return sdk.post("/render_tasks/dashboard_elements/".concat(dashboard_element_id, "/").concat(result_format), {
|
|
@@ -3447,12 +3527,12 @@ export var create_dashboard_element_render_task = function () {
|
|
|
3447
3527
|
}, null, options);
|
|
3448
3528
|
});
|
|
3449
3529
|
|
|
3450
|
-
return function create_dashboard_element_render_task(
|
|
3451
|
-
return
|
|
3530
|
+
return function create_dashboard_element_render_task(_x1045, _x1046, _x1047, _x1048, _x1049, _x1050, _x1051) {
|
|
3531
|
+
return _ref306.apply(this, arguments);
|
|
3452
3532
|
};
|
|
3453
3533
|
}();
|
|
3454
3534
|
export var search_model_sets = function () {
|
|
3455
|
-
var
|
|
3535
|
+
var _ref307 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3456
3536
|
return sdk.get('/model_sets/search', {
|
|
3457
3537
|
fields: request.fields,
|
|
3458
3538
|
limit: request.limit,
|
|
@@ -3466,70 +3546,73 @@ export var search_model_sets = function () {
|
|
|
3466
3546
|
}, null, options);
|
|
3467
3547
|
});
|
|
3468
3548
|
|
|
3469
|
-
return function search_model_sets(
|
|
3470
|
-
return
|
|
3549
|
+
return function search_model_sets(_x1052, _x1053, _x1054) {
|
|
3550
|
+
return _ref307.apply(this, arguments);
|
|
3471
3551
|
};
|
|
3472
3552
|
}();
|
|
3473
3553
|
export var model_set = function () {
|
|
3474
|
-
var
|
|
3554
|
+
var _ref308 = _asyncToGenerator(function* (sdk, model_set_id, fields, options) {
|
|
3555
|
+
model_set_id = encodeParam(model_set_id);
|
|
3475
3556
|
return sdk.get("/model_sets/".concat(model_set_id), {
|
|
3476
3557
|
fields
|
|
3477
3558
|
}, null, options);
|
|
3478
3559
|
});
|
|
3479
3560
|
|
|
3480
|
-
return function model_set(
|
|
3481
|
-
return
|
|
3561
|
+
return function model_set(_x1055, _x1056, _x1057, _x1058) {
|
|
3562
|
+
return _ref308.apply(this, arguments);
|
|
3482
3563
|
};
|
|
3483
3564
|
}();
|
|
3484
3565
|
export var update_model_set = function () {
|
|
3485
|
-
var
|
|
3566
|
+
var _ref309 = _asyncToGenerator(function* (sdk, model_set_id, body, options) {
|
|
3567
|
+
model_set_id = encodeParam(model_set_id);
|
|
3486
3568
|
return sdk.patch("/model_sets/".concat(model_set_id), null, body, options);
|
|
3487
3569
|
});
|
|
3488
3570
|
|
|
3489
|
-
return function update_model_set(
|
|
3490
|
-
return
|
|
3571
|
+
return function update_model_set(_x1059, _x1060, _x1061, _x1062) {
|
|
3572
|
+
return _ref309.apply(this, arguments);
|
|
3491
3573
|
};
|
|
3492
3574
|
}();
|
|
3493
3575
|
export var delete_model_set = function () {
|
|
3494
|
-
var
|
|
3576
|
+
var _ref310 = _asyncToGenerator(function* (sdk, model_set_id, options) {
|
|
3577
|
+
model_set_id = encodeParam(model_set_id);
|
|
3495
3578
|
return sdk.delete("/model_sets/".concat(model_set_id), null, null, options);
|
|
3496
3579
|
});
|
|
3497
3580
|
|
|
3498
|
-
return function delete_model_set(
|
|
3499
|
-
return
|
|
3581
|
+
return function delete_model_set(_x1063, _x1064, _x1065) {
|
|
3582
|
+
return _ref310.apply(this, arguments);
|
|
3500
3583
|
};
|
|
3501
3584
|
}();
|
|
3502
3585
|
export var all_model_sets = function () {
|
|
3503
|
-
var
|
|
3586
|
+
var _ref311 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3504
3587
|
return sdk.get('/model_sets', {
|
|
3505
3588
|
fields
|
|
3506
3589
|
}, null, options);
|
|
3507
3590
|
});
|
|
3508
3591
|
|
|
3509
|
-
return function all_model_sets(
|
|
3510
|
-
return
|
|
3592
|
+
return function all_model_sets(_x1066, _x1067, _x1068) {
|
|
3593
|
+
return _ref311.apply(this, arguments);
|
|
3511
3594
|
};
|
|
3512
3595
|
}();
|
|
3513
3596
|
export var create_model_set = function () {
|
|
3514
|
-
var
|
|
3597
|
+
var _ref312 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3515
3598
|
return sdk.post('/model_sets', null, body, options);
|
|
3516
3599
|
});
|
|
3517
3600
|
|
|
3518
|
-
return function create_model_set(
|
|
3519
|
-
return
|
|
3601
|
+
return function create_model_set(_x1069, _x1070, _x1071) {
|
|
3602
|
+
return _ref312.apply(this, arguments);
|
|
3520
3603
|
};
|
|
3521
3604
|
}();
|
|
3522
3605
|
export var all_permissions = function () {
|
|
3523
|
-
var
|
|
3606
|
+
var _ref313 = _asyncToGenerator(function* (sdk, options) {
|
|
3524
3607
|
return sdk.get('/permissions', null, null, options);
|
|
3525
3608
|
});
|
|
3526
3609
|
|
|
3527
|
-
return function all_permissions(
|
|
3528
|
-
return
|
|
3610
|
+
return function all_permissions(_x1072, _x1073) {
|
|
3611
|
+
return _ref313.apply(this, arguments);
|
|
3529
3612
|
};
|
|
3530
3613
|
}();
|
|
3531
3614
|
export var search_permission_sets = function () {
|
|
3532
|
-
var
|
|
3615
|
+
var _ref314 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3533
3616
|
return sdk.get('/permission_sets/search', {
|
|
3534
3617
|
fields: request.fields,
|
|
3535
3618
|
limit: request.limit,
|
|
@@ -3543,82 +3626,85 @@ export var search_permission_sets = function () {
|
|
|
3543
3626
|
}, null, options);
|
|
3544
3627
|
});
|
|
3545
3628
|
|
|
3546
|
-
return function search_permission_sets(
|
|
3547
|
-
return
|
|
3629
|
+
return function search_permission_sets(_x1074, _x1075, _x1076) {
|
|
3630
|
+
return _ref314.apply(this, arguments);
|
|
3548
3631
|
};
|
|
3549
3632
|
}();
|
|
3550
3633
|
export var permission_set = function () {
|
|
3551
|
-
var
|
|
3634
|
+
var _ref315 = _asyncToGenerator(function* (sdk, permission_set_id, fields, options) {
|
|
3635
|
+
permission_set_id = encodeParam(permission_set_id);
|
|
3552
3636
|
return sdk.get("/permission_sets/".concat(permission_set_id), {
|
|
3553
3637
|
fields
|
|
3554
3638
|
}, null, options);
|
|
3555
3639
|
});
|
|
3556
3640
|
|
|
3557
|
-
return function permission_set(
|
|
3558
|
-
return
|
|
3641
|
+
return function permission_set(_x1077, _x1078, _x1079, _x1080) {
|
|
3642
|
+
return _ref315.apply(this, arguments);
|
|
3559
3643
|
};
|
|
3560
3644
|
}();
|
|
3561
3645
|
export var update_permission_set = function () {
|
|
3562
|
-
var
|
|
3646
|
+
var _ref316 = _asyncToGenerator(function* (sdk, permission_set_id, body, options) {
|
|
3647
|
+
permission_set_id = encodeParam(permission_set_id);
|
|
3563
3648
|
return sdk.patch("/permission_sets/".concat(permission_set_id), null, body, options);
|
|
3564
3649
|
});
|
|
3565
3650
|
|
|
3566
|
-
return function update_permission_set(
|
|
3567
|
-
return
|
|
3651
|
+
return function update_permission_set(_x1081, _x1082, _x1083, _x1084) {
|
|
3652
|
+
return _ref316.apply(this, arguments);
|
|
3568
3653
|
};
|
|
3569
3654
|
}();
|
|
3570
3655
|
export var delete_permission_set = function () {
|
|
3571
|
-
var
|
|
3656
|
+
var _ref317 = _asyncToGenerator(function* (sdk, permission_set_id, options) {
|
|
3657
|
+
permission_set_id = encodeParam(permission_set_id);
|
|
3572
3658
|
return sdk.delete("/permission_sets/".concat(permission_set_id), null, null, options);
|
|
3573
3659
|
});
|
|
3574
3660
|
|
|
3575
|
-
return function delete_permission_set(
|
|
3576
|
-
return
|
|
3661
|
+
return function delete_permission_set(_x1085, _x1086, _x1087) {
|
|
3662
|
+
return _ref317.apply(this, arguments);
|
|
3577
3663
|
};
|
|
3578
3664
|
}();
|
|
3579
3665
|
export var all_permission_sets = function () {
|
|
3580
|
-
var
|
|
3666
|
+
var _ref318 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3581
3667
|
return sdk.get('/permission_sets', {
|
|
3582
3668
|
fields
|
|
3583
3669
|
}, null, options);
|
|
3584
3670
|
});
|
|
3585
3671
|
|
|
3586
|
-
return function all_permission_sets(
|
|
3587
|
-
return
|
|
3672
|
+
return function all_permission_sets(_x1088, _x1089, _x1090) {
|
|
3673
|
+
return _ref318.apply(this, arguments);
|
|
3588
3674
|
};
|
|
3589
3675
|
}();
|
|
3590
3676
|
export var create_permission_set = function () {
|
|
3591
|
-
var
|
|
3677
|
+
var _ref319 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3592
3678
|
return sdk.post('/permission_sets', null, body, options);
|
|
3593
3679
|
});
|
|
3594
3680
|
|
|
3595
|
-
return function create_permission_set(
|
|
3596
|
-
return
|
|
3681
|
+
return function create_permission_set(_x1091, _x1092, _x1093) {
|
|
3682
|
+
return _ref319.apply(this, arguments);
|
|
3597
3683
|
};
|
|
3598
3684
|
}();
|
|
3599
3685
|
export var all_roles = function () {
|
|
3600
|
-
var
|
|
3686
|
+
var _ref320 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3601
3687
|
return sdk.get('/roles', {
|
|
3602
3688
|
fields: request.fields,
|
|
3603
3689
|
ids: request.ids
|
|
3604
3690
|
}, null, options);
|
|
3605
3691
|
});
|
|
3606
3692
|
|
|
3607
|
-
return function all_roles(
|
|
3608
|
-
return
|
|
3693
|
+
return function all_roles(_x1094, _x1095, _x1096) {
|
|
3694
|
+
return _ref320.apply(this, arguments);
|
|
3609
3695
|
};
|
|
3610
3696
|
}();
|
|
3611
3697
|
export var create_role = function () {
|
|
3612
|
-
var
|
|
3698
|
+
var _ref321 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3613
3699
|
return sdk.post('/roles', null, body, options);
|
|
3614
3700
|
});
|
|
3615
3701
|
|
|
3616
|
-
return function create_role(
|
|
3617
|
-
return
|
|
3702
|
+
return function create_role(_x1097, _x1098, _x1099) {
|
|
3703
|
+
return _ref321.apply(this, arguments);
|
|
3618
3704
|
};
|
|
3619
3705
|
}();
|
|
3620
3706
|
export var search_roles = function () {
|
|
3621
|
-
var
|
|
3707
|
+
var _ref322 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3622
3708
|
return sdk.get('/roles/search', {
|
|
3623
3709
|
fields: request.fields,
|
|
3624
3710
|
limit: request.limit,
|
|
@@ -3631,12 +3717,12 @@ export var search_roles = function () {
|
|
|
3631
3717
|
}, null, options);
|
|
3632
3718
|
});
|
|
3633
3719
|
|
|
3634
|
-
return function search_roles(
|
|
3635
|
-
return
|
|
3720
|
+
return function search_roles(_x1100, _x1101, _x1102) {
|
|
3721
|
+
return _ref322.apply(this, arguments);
|
|
3636
3722
|
};
|
|
3637
3723
|
}();
|
|
3638
3724
|
export var search_roles_with_user_count = function () {
|
|
3639
|
-
var
|
|
3725
|
+
var _ref323 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3640
3726
|
return sdk.get('/roles/search/with_user_count', {
|
|
3641
3727
|
fields: request.fields,
|
|
3642
3728
|
limit: request.limit,
|
|
@@ -3649,120 +3735,131 @@ export var search_roles_with_user_count = function () {
|
|
|
3649
3735
|
}, null, options);
|
|
3650
3736
|
});
|
|
3651
3737
|
|
|
3652
|
-
return function search_roles_with_user_count(
|
|
3653
|
-
return
|
|
3738
|
+
return function search_roles_with_user_count(_x1103, _x1104, _x1105) {
|
|
3739
|
+
return _ref323.apply(this, arguments);
|
|
3654
3740
|
};
|
|
3655
3741
|
}();
|
|
3656
3742
|
export var role = function () {
|
|
3657
|
-
var
|
|
3743
|
+
var _ref324 = _asyncToGenerator(function* (sdk, role_id, options) {
|
|
3744
|
+
role_id = encodeParam(role_id);
|
|
3658
3745
|
return sdk.get("/roles/".concat(role_id), null, null, options);
|
|
3659
3746
|
});
|
|
3660
3747
|
|
|
3661
|
-
return function role(
|
|
3662
|
-
return
|
|
3748
|
+
return function role(_x1106, _x1107, _x1108) {
|
|
3749
|
+
return _ref324.apply(this, arguments);
|
|
3663
3750
|
};
|
|
3664
3751
|
}();
|
|
3665
3752
|
export var update_role = function () {
|
|
3666
|
-
var
|
|
3753
|
+
var _ref325 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
3754
|
+
role_id = encodeParam(role_id);
|
|
3667
3755
|
return sdk.patch("/roles/".concat(role_id), null, body, options);
|
|
3668
3756
|
});
|
|
3669
3757
|
|
|
3670
|
-
return function update_role(
|
|
3671
|
-
return
|
|
3758
|
+
return function update_role(_x1109, _x1110, _x1111, _x1112) {
|
|
3759
|
+
return _ref325.apply(this, arguments);
|
|
3672
3760
|
};
|
|
3673
3761
|
}();
|
|
3674
3762
|
export var delete_role = function () {
|
|
3675
|
-
var
|
|
3763
|
+
var _ref326 = _asyncToGenerator(function* (sdk, role_id, options) {
|
|
3764
|
+
role_id = encodeParam(role_id);
|
|
3676
3765
|
return sdk.delete("/roles/".concat(role_id), null, null, options);
|
|
3677
3766
|
});
|
|
3678
3767
|
|
|
3679
|
-
return function delete_role(
|
|
3680
|
-
return
|
|
3768
|
+
return function delete_role(_x1113, _x1114, _x1115) {
|
|
3769
|
+
return _ref326.apply(this, arguments);
|
|
3681
3770
|
};
|
|
3682
3771
|
}();
|
|
3683
3772
|
export var role_groups = function () {
|
|
3684
|
-
var
|
|
3773
|
+
var _ref327 = _asyncToGenerator(function* (sdk, role_id, fields, options) {
|
|
3774
|
+
role_id = encodeParam(role_id);
|
|
3685
3775
|
return sdk.get("/roles/".concat(role_id, "/groups"), {
|
|
3686
3776
|
fields
|
|
3687
3777
|
}, null, options);
|
|
3688
3778
|
});
|
|
3689
3779
|
|
|
3690
|
-
return function role_groups(
|
|
3691
|
-
return
|
|
3780
|
+
return function role_groups(_x1116, _x1117, _x1118, _x1119) {
|
|
3781
|
+
return _ref327.apply(this, arguments);
|
|
3692
3782
|
};
|
|
3693
3783
|
}();
|
|
3694
3784
|
export var set_role_groups = function () {
|
|
3695
|
-
var
|
|
3785
|
+
var _ref328 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
3786
|
+
role_id = encodeParam(role_id);
|
|
3696
3787
|
return sdk.put("/roles/".concat(role_id, "/groups"), null, body, options);
|
|
3697
3788
|
});
|
|
3698
3789
|
|
|
3699
|
-
return function set_role_groups(
|
|
3700
|
-
return
|
|
3790
|
+
return function set_role_groups(_x1120, _x1121, _x1122, _x1123) {
|
|
3791
|
+
return _ref328.apply(this, arguments);
|
|
3701
3792
|
};
|
|
3702
3793
|
}();
|
|
3703
3794
|
export var role_users = function () {
|
|
3704
|
-
var
|
|
3795
|
+
var _ref329 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3796
|
+
request.role_id = encodeParam(request.role_id);
|
|
3705
3797
|
return sdk.get("/roles/".concat(request.role_id, "/users"), {
|
|
3706
3798
|
fields: request.fields,
|
|
3707
3799
|
direct_association_only: request.direct_association_only
|
|
3708
3800
|
}, null, options);
|
|
3709
3801
|
});
|
|
3710
3802
|
|
|
3711
|
-
return function role_users(
|
|
3712
|
-
return
|
|
3803
|
+
return function role_users(_x1124, _x1125, _x1126) {
|
|
3804
|
+
return _ref329.apply(this, arguments);
|
|
3713
3805
|
};
|
|
3714
3806
|
}();
|
|
3715
3807
|
export var set_role_users = function () {
|
|
3716
|
-
var
|
|
3808
|
+
var _ref330 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
3809
|
+
role_id = encodeParam(role_id);
|
|
3717
3810
|
return sdk.put("/roles/".concat(role_id, "/users"), null, body, options);
|
|
3718
3811
|
});
|
|
3719
3812
|
|
|
3720
|
-
return function set_role_users(
|
|
3721
|
-
return
|
|
3813
|
+
return function set_role_users(_x1127, _x1128, _x1129, _x1130) {
|
|
3814
|
+
return _ref330.apply(this, arguments);
|
|
3722
3815
|
};
|
|
3723
3816
|
}();
|
|
3724
3817
|
export var scheduled_plans_for_space = function () {
|
|
3725
|
-
var
|
|
3818
|
+
var _ref331 = _asyncToGenerator(function* (sdk, space_id, fields, options) {
|
|
3819
|
+
space_id = encodeParam(space_id);
|
|
3726
3820
|
return sdk.get("/scheduled_plans/space/".concat(space_id), {
|
|
3727
3821
|
fields
|
|
3728
3822
|
}, null, options);
|
|
3729
3823
|
});
|
|
3730
3824
|
|
|
3731
|
-
return function scheduled_plans_for_space(
|
|
3732
|
-
return
|
|
3825
|
+
return function scheduled_plans_for_space(_x1131, _x1132, _x1133, _x1134) {
|
|
3826
|
+
return _ref331.apply(this, arguments);
|
|
3733
3827
|
};
|
|
3734
3828
|
}();
|
|
3735
3829
|
export var scheduled_plan = function () {
|
|
3736
|
-
var
|
|
3830
|
+
var _ref332 = _asyncToGenerator(function* (sdk, scheduled_plan_id, fields, options) {
|
|
3831
|
+
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
3737
3832
|
return sdk.get("/scheduled_plans/".concat(scheduled_plan_id), {
|
|
3738
3833
|
fields
|
|
3739
3834
|
}, null, options);
|
|
3740
3835
|
});
|
|
3741
3836
|
|
|
3742
|
-
return function scheduled_plan(
|
|
3743
|
-
return
|
|
3837
|
+
return function scheduled_plan(_x1135, _x1136, _x1137, _x1138) {
|
|
3838
|
+
return _ref332.apply(this, arguments);
|
|
3744
3839
|
};
|
|
3745
3840
|
}();
|
|
3746
3841
|
export var update_scheduled_plan = function () {
|
|
3747
|
-
var
|
|
3842
|
+
var _ref333 = _asyncToGenerator(function* (sdk, scheduled_plan_id, body, options) {
|
|
3843
|
+
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
3748
3844
|
return sdk.patch("/scheduled_plans/".concat(scheduled_plan_id), null, body, options);
|
|
3749
3845
|
});
|
|
3750
3846
|
|
|
3751
|
-
return function update_scheduled_plan(
|
|
3752
|
-
return
|
|
3847
|
+
return function update_scheduled_plan(_x1139, _x1140, _x1141, _x1142) {
|
|
3848
|
+
return _ref333.apply(this, arguments);
|
|
3753
3849
|
};
|
|
3754
3850
|
}();
|
|
3755
3851
|
export var delete_scheduled_plan = function () {
|
|
3756
|
-
var
|
|
3852
|
+
var _ref334 = _asyncToGenerator(function* (sdk, scheduled_plan_id, options) {
|
|
3853
|
+
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
3757
3854
|
return sdk.delete("/scheduled_plans/".concat(scheduled_plan_id), null, null, options);
|
|
3758
3855
|
});
|
|
3759
3856
|
|
|
3760
|
-
return function delete_scheduled_plan(
|
|
3761
|
-
return
|
|
3857
|
+
return function delete_scheduled_plan(_x1143, _x1144, _x1145) {
|
|
3858
|
+
return _ref334.apply(this, arguments);
|
|
3762
3859
|
};
|
|
3763
3860
|
}();
|
|
3764
3861
|
export var all_scheduled_plans = function () {
|
|
3765
|
-
var
|
|
3862
|
+
var _ref335 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3766
3863
|
return sdk.get('/scheduled_plans', {
|
|
3767
3864
|
user_id: request.user_id,
|
|
3768
3865
|
fields: request.fields,
|
|
@@ -3770,30 +3867,31 @@ export var all_scheduled_plans = function () {
|
|
|
3770
3867
|
}, null, options);
|
|
3771
3868
|
});
|
|
3772
3869
|
|
|
3773
|
-
return function all_scheduled_plans(
|
|
3774
|
-
return
|
|
3870
|
+
return function all_scheduled_plans(_x1146, _x1147, _x1148) {
|
|
3871
|
+
return _ref335.apply(this, arguments);
|
|
3775
3872
|
};
|
|
3776
3873
|
}();
|
|
3777
3874
|
export var create_scheduled_plan = function () {
|
|
3778
|
-
var
|
|
3875
|
+
var _ref336 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3779
3876
|
return sdk.post('/scheduled_plans', null, body, options);
|
|
3780
3877
|
});
|
|
3781
3878
|
|
|
3782
|
-
return function create_scheduled_plan(
|
|
3783
|
-
return
|
|
3879
|
+
return function create_scheduled_plan(_x1149, _x1150, _x1151) {
|
|
3880
|
+
return _ref336.apply(this, arguments);
|
|
3784
3881
|
};
|
|
3785
3882
|
}();
|
|
3786
3883
|
export var scheduled_plan_run_once = function () {
|
|
3787
|
-
var
|
|
3884
|
+
var _ref337 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3788
3885
|
return sdk.post('/scheduled_plans/run_once', null, body, options);
|
|
3789
3886
|
});
|
|
3790
3887
|
|
|
3791
|
-
return function scheduled_plan_run_once(
|
|
3792
|
-
return
|
|
3888
|
+
return function scheduled_plan_run_once(_x1152, _x1153, _x1154) {
|
|
3889
|
+
return _ref337.apply(this, arguments);
|
|
3793
3890
|
};
|
|
3794
3891
|
}();
|
|
3795
3892
|
export var scheduled_plans_for_look = function () {
|
|
3796
|
-
var
|
|
3893
|
+
var _ref338 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3894
|
+
request.look_id = encodeParam(request.look_id);
|
|
3797
3895
|
return sdk.get("/scheduled_plans/look/".concat(request.look_id), {
|
|
3798
3896
|
user_id: request.user_id,
|
|
3799
3897
|
fields: request.fields,
|
|
@@ -3801,12 +3899,13 @@ export var scheduled_plans_for_look = function () {
|
|
|
3801
3899
|
}, null, options);
|
|
3802
3900
|
});
|
|
3803
3901
|
|
|
3804
|
-
return function scheduled_plans_for_look(
|
|
3805
|
-
return
|
|
3902
|
+
return function scheduled_plans_for_look(_x1155, _x1156, _x1157) {
|
|
3903
|
+
return _ref338.apply(this, arguments);
|
|
3806
3904
|
};
|
|
3807
3905
|
}();
|
|
3808
3906
|
export var scheduled_plans_for_dashboard = function () {
|
|
3809
|
-
var
|
|
3907
|
+
var _ref339 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3908
|
+
request.dashboard_id = encodeParam(request.dashboard_id);
|
|
3810
3909
|
return sdk.get("/scheduled_plans/dashboard/".concat(request.dashboard_id), {
|
|
3811
3910
|
user_id: request.user_id,
|
|
3812
3911
|
all_users: request.all_users,
|
|
@@ -3814,12 +3913,12 @@ export var scheduled_plans_for_dashboard = function () {
|
|
|
3814
3913
|
}, null, options);
|
|
3815
3914
|
});
|
|
3816
3915
|
|
|
3817
|
-
return function scheduled_plans_for_dashboard(
|
|
3818
|
-
return
|
|
3916
|
+
return function scheduled_plans_for_dashboard(_x1158, _x1159, _x1160) {
|
|
3917
|
+
return _ref339.apply(this, arguments);
|
|
3819
3918
|
};
|
|
3820
3919
|
}();
|
|
3821
3920
|
export var scheduled_plans_for_lookml_dashboard = function () {
|
|
3822
|
-
var
|
|
3921
|
+
var _ref340 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3823
3922
|
request.lookml_dashboard_id = encodeParam(request.lookml_dashboard_id);
|
|
3824
3923
|
return sdk.get("/scheduled_plans/lookml_dashboard/".concat(request.lookml_dashboard_id), {
|
|
3825
3924
|
user_id: request.user_id,
|
|
@@ -3828,59 +3927,60 @@ export var scheduled_plans_for_lookml_dashboard = function () {
|
|
|
3828
3927
|
}, null, options);
|
|
3829
3928
|
});
|
|
3830
3929
|
|
|
3831
|
-
return function scheduled_plans_for_lookml_dashboard(
|
|
3832
|
-
return
|
|
3930
|
+
return function scheduled_plans_for_lookml_dashboard(_x1161, _x1162, _x1163) {
|
|
3931
|
+
return _ref340.apply(this, arguments);
|
|
3833
3932
|
};
|
|
3834
3933
|
}();
|
|
3835
3934
|
export var scheduled_plan_run_once_by_id = function () {
|
|
3836
|
-
var
|
|
3935
|
+
var _ref341 = _asyncToGenerator(function* (sdk, scheduled_plan_id, body, options) {
|
|
3936
|
+
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
3837
3937
|
return sdk.post("/scheduled_plans/".concat(scheduled_plan_id, "/run_once"), null, body, options);
|
|
3838
3938
|
});
|
|
3839
3939
|
|
|
3840
|
-
return function scheduled_plan_run_once_by_id(
|
|
3841
|
-
return
|
|
3940
|
+
return function scheduled_plan_run_once_by_id(_x1164, _x1165, _x1166, _x1167) {
|
|
3941
|
+
return _ref341.apply(this, arguments);
|
|
3842
3942
|
};
|
|
3843
3943
|
}();
|
|
3844
3944
|
export var session = function () {
|
|
3845
|
-
var
|
|
3945
|
+
var _ref342 = _asyncToGenerator(function* (sdk, options) {
|
|
3846
3946
|
return sdk.get('/session', null, null, options);
|
|
3847
3947
|
});
|
|
3848
3948
|
|
|
3849
|
-
return function session(
|
|
3850
|
-
return
|
|
3949
|
+
return function session(_x1168, _x1169) {
|
|
3950
|
+
return _ref342.apply(this, arguments);
|
|
3851
3951
|
};
|
|
3852
3952
|
}();
|
|
3853
3953
|
export var update_session = function () {
|
|
3854
|
-
var
|
|
3954
|
+
var _ref343 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3855
3955
|
return sdk.patch('/session', null, body, options);
|
|
3856
3956
|
});
|
|
3857
3957
|
|
|
3858
|
-
return function update_session(
|
|
3859
|
-
return
|
|
3958
|
+
return function update_session(_x1170, _x1171, _x1172) {
|
|
3959
|
+
return _ref343.apply(this, arguments);
|
|
3860
3960
|
};
|
|
3861
3961
|
}();
|
|
3862
3962
|
export var all_themes = function () {
|
|
3863
|
-
var
|
|
3963
|
+
var _ref344 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3864
3964
|
return sdk.get('/themes', {
|
|
3865
3965
|
fields
|
|
3866
3966
|
}, null, options);
|
|
3867
3967
|
});
|
|
3868
3968
|
|
|
3869
|
-
return function all_themes(
|
|
3870
|
-
return
|
|
3969
|
+
return function all_themes(_x1173, _x1174, _x1175) {
|
|
3970
|
+
return _ref344.apply(this, arguments);
|
|
3871
3971
|
};
|
|
3872
3972
|
}();
|
|
3873
3973
|
export var create_theme = function () {
|
|
3874
|
-
var
|
|
3974
|
+
var _ref345 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3875
3975
|
return sdk.post('/themes', null, body, options);
|
|
3876
3976
|
});
|
|
3877
3977
|
|
|
3878
|
-
return function create_theme(
|
|
3879
|
-
return
|
|
3978
|
+
return function create_theme(_x1176, _x1177, _x1178) {
|
|
3979
|
+
return _ref345.apply(this, arguments);
|
|
3880
3980
|
};
|
|
3881
3981
|
}();
|
|
3882
3982
|
export var search_themes = function () {
|
|
3883
|
-
var
|
|
3983
|
+
var _ref346 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3884
3984
|
return sdk.get('/themes/search', {
|
|
3885
3985
|
id: request.id,
|
|
3886
3986
|
name: request.name,
|
|
@@ -3894,34 +3994,34 @@ export var search_themes = function () {
|
|
|
3894
3994
|
}, null, options);
|
|
3895
3995
|
});
|
|
3896
3996
|
|
|
3897
|
-
return function search_themes(
|
|
3898
|
-
return
|
|
3997
|
+
return function search_themes(_x1179, _x1180, _x1181) {
|
|
3998
|
+
return _ref346.apply(this, arguments);
|
|
3899
3999
|
};
|
|
3900
4000
|
}();
|
|
3901
4001
|
export var default_theme = function () {
|
|
3902
|
-
var
|
|
4002
|
+
var _ref347 = _asyncToGenerator(function* (sdk, ts, options) {
|
|
3903
4003
|
return sdk.get('/themes/default', {
|
|
3904
4004
|
ts
|
|
3905
4005
|
}, null, options);
|
|
3906
4006
|
});
|
|
3907
4007
|
|
|
3908
|
-
return function default_theme(
|
|
3909
|
-
return
|
|
4008
|
+
return function default_theme(_x1182, _x1183, _x1184) {
|
|
4009
|
+
return _ref347.apply(this, arguments);
|
|
3910
4010
|
};
|
|
3911
4011
|
}();
|
|
3912
4012
|
export var set_default_theme = function () {
|
|
3913
|
-
var
|
|
4013
|
+
var _ref348 = _asyncToGenerator(function* (sdk, name, options) {
|
|
3914
4014
|
return sdk.put('/themes/default', {
|
|
3915
4015
|
name
|
|
3916
4016
|
}, null, options);
|
|
3917
4017
|
});
|
|
3918
4018
|
|
|
3919
|
-
return function set_default_theme(
|
|
3920
|
-
return
|
|
4019
|
+
return function set_default_theme(_x1185, _x1186, _x1187) {
|
|
4020
|
+
return _ref348.apply(this, arguments);
|
|
3921
4021
|
};
|
|
3922
4022
|
}();
|
|
3923
4023
|
export var active_themes = function () {
|
|
3924
|
-
var
|
|
4024
|
+
var _ref349 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3925
4025
|
return sdk.get('/themes/active', {
|
|
3926
4026
|
name: request.name,
|
|
3927
4027
|
ts: request.ts,
|
|
@@ -3929,63 +4029,65 @@ export var active_themes = function () {
|
|
|
3929
4029
|
}, null, options);
|
|
3930
4030
|
});
|
|
3931
4031
|
|
|
3932
|
-
return function active_themes(
|
|
3933
|
-
return
|
|
4032
|
+
return function active_themes(_x1188, _x1189, _x1190) {
|
|
4033
|
+
return _ref349.apply(this, arguments);
|
|
3934
4034
|
};
|
|
3935
4035
|
}();
|
|
3936
4036
|
export var theme_or_default = function () {
|
|
3937
|
-
var
|
|
4037
|
+
var _ref350 = _asyncToGenerator(function* (sdk, name, ts, options) {
|
|
3938
4038
|
return sdk.get('/themes/theme_or_default', {
|
|
3939
4039
|
name,
|
|
3940
4040
|
ts
|
|
3941
4041
|
}, null, options);
|
|
3942
4042
|
});
|
|
3943
4043
|
|
|
3944
|
-
return function theme_or_default(
|
|
3945
|
-
return
|
|
4044
|
+
return function theme_or_default(_x1191, _x1192, _x1193, _x1194) {
|
|
4045
|
+
return _ref350.apply(this, arguments);
|
|
3946
4046
|
};
|
|
3947
4047
|
}();
|
|
3948
4048
|
export var validate_theme = function () {
|
|
3949
|
-
var
|
|
4049
|
+
var _ref351 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3950
4050
|
return sdk.post('/themes/validate', null, body, options);
|
|
3951
4051
|
});
|
|
3952
4052
|
|
|
3953
|
-
return function validate_theme(
|
|
3954
|
-
return
|
|
4053
|
+
return function validate_theme(_x1195, _x1196, _x1197) {
|
|
4054
|
+
return _ref351.apply(this, arguments);
|
|
3955
4055
|
};
|
|
3956
4056
|
}();
|
|
3957
4057
|
export var theme = function () {
|
|
3958
|
-
var
|
|
4058
|
+
var _ref352 = _asyncToGenerator(function* (sdk, theme_id, fields, options) {
|
|
4059
|
+
theme_id = encodeParam(theme_id);
|
|
3959
4060
|
return sdk.get("/themes/".concat(theme_id), {
|
|
3960
4061
|
fields
|
|
3961
4062
|
}, null, options);
|
|
3962
4063
|
});
|
|
3963
4064
|
|
|
3964
|
-
return function theme(
|
|
3965
|
-
return
|
|
4065
|
+
return function theme(_x1198, _x1199, _x1200, _x1201) {
|
|
4066
|
+
return _ref352.apply(this, arguments);
|
|
3966
4067
|
};
|
|
3967
4068
|
}();
|
|
3968
4069
|
export var update_theme = function () {
|
|
3969
|
-
var
|
|
4070
|
+
var _ref353 = _asyncToGenerator(function* (sdk, theme_id, body, options) {
|
|
4071
|
+
theme_id = encodeParam(theme_id);
|
|
3970
4072
|
return sdk.patch("/themes/".concat(theme_id), null, body, options);
|
|
3971
4073
|
});
|
|
3972
4074
|
|
|
3973
|
-
return function update_theme(
|
|
3974
|
-
return
|
|
4075
|
+
return function update_theme(_x1202, _x1203, _x1204, _x1205) {
|
|
4076
|
+
return _ref353.apply(this, arguments);
|
|
3975
4077
|
};
|
|
3976
4078
|
}();
|
|
3977
4079
|
export var delete_theme = function () {
|
|
3978
|
-
var
|
|
4080
|
+
var _ref354 = _asyncToGenerator(function* (sdk, theme_id, options) {
|
|
3979
4081
|
theme_id = encodeParam(theme_id);
|
|
3980
4082
|
return sdk.delete("/themes/".concat(theme_id), null, null, options);
|
|
3981
4083
|
});
|
|
3982
4084
|
|
|
3983
|
-
return function delete_theme(
|
|
3984
|
-
return
|
|
4085
|
+
return function delete_theme(_x1206, _x1207, _x1208) {
|
|
4086
|
+
return _ref354.apply(this, arguments);
|
|
3985
4087
|
};
|
|
3986
4088
|
}();
|
|
3987
4089
|
export var search_credentials_email = function () {
|
|
3988
|
-
var
|
|
4090
|
+
var _ref355 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3989
4091
|
return sdk.get('/credentials_email/search', {
|
|
3990
4092
|
fields: request.fields,
|
|
3991
4093
|
limit: request.limit,
|
|
@@ -3998,23 +4100,23 @@ export var search_credentials_email = function () {
|
|
|
3998
4100
|
}, null, options);
|
|
3999
4101
|
});
|
|
4000
4102
|
|
|
4001
|
-
return function search_credentials_email(
|
|
4002
|
-
return
|
|
4103
|
+
return function search_credentials_email(_x1209, _x1210, _x1211) {
|
|
4104
|
+
return _ref355.apply(this, arguments);
|
|
4003
4105
|
};
|
|
4004
4106
|
}();
|
|
4005
4107
|
export var me = function () {
|
|
4006
|
-
var
|
|
4108
|
+
var _ref356 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
4007
4109
|
return sdk.get('/user', {
|
|
4008
4110
|
fields
|
|
4009
4111
|
}, null, options);
|
|
4010
4112
|
});
|
|
4011
4113
|
|
|
4012
|
-
return function me(
|
|
4013
|
-
return
|
|
4114
|
+
return function me(_x1212, _x1213, _x1214) {
|
|
4115
|
+
return _ref356.apply(this, arguments);
|
|
4014
4116
|
};
|
|
4015
4117
|
}();
|
|
4016
4118
|
export var all_users = function () {
|
|
4017
|
-
var
|
|
4119
|
+
var _ref357 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4018
4120
|
return sdk.get('/users', {
|
|
4019
4121
|
fields: request.fields,
|
|
4020
4122
|
page: request.page,
|
|
@@ -4026,23 +4128,23 @@ export var all_users = function () {
|
|
|
4026
4128
|
}, null, options);
|
|
4027
4129
|
});
|
|
4028
4130
|
|
|
4029
|
-
return function all_users(
|
|
4030
|
-
return
|
|
4131
|
+
return function all_users(_x1215, _x1216, _x1217) {
|
|
4132
|
+
return _ref357.apply(this, arguments);
|
|
4031
4133
|
};
|
|
4032
4134
|
}();
|
|
4033
4135
|
export var create_user = function () {
|
|
4034
|
-
var
|
|
4136
|
+
var _ref358 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
4035
4137
|
return sdk.post('/users', {
|
|
4036
4138
|
fields
|
|
4037
4139
|
}, body, options);
|
|
4038
4140
|
});
|
|
4039
4141
|
|
|
4040
|
-
return function create_user(
|
|
4041
|
-
return
|
|
4142
|
+
return function create_user(_x1218, _x1219, _x1220, _x1221) {
|
|
4143
|
+
return _ref358.apply(this, arguments);
|
|
4042
4144
|
};
|
|
4043
4145
|
}();
|
|
4044
4146
|
export var search_users = function () {
|
|
4045
|
-
var
|
|
4147
|
+
var _ref359 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4046
4148
|
return sdk.get('/users/search', {
|
|
4047
4149
|
fields: request.fields,
|
|
4048
4150
|
page: request.page,
|
|
@@ -4063,12 +4165,12 @@ export var search_users = function () {
|
|
|
4063
4165
|
}, null, options);
|
|
4064
4166
|
});
|
|
4065
4167
|
|
|
4066
|
-
return function search_users(
|
|
4067
|
-
return
|
|
4168
|
+
return function search_users(_x1222, _x1223, _x1224) {
|
|
4169
|
+
return _ref359.apply(this, arguments);
|
|
4068
4170
|
};
|
|
4069
4171
|
}();
|
|
4070
4172
|
export var search_users_names = function () {
|
|
4071
|
-
var
|
|
4173
|
+
var _ref360 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4072
4174
|
request.pattern = encodeParam(request.pattern);
|
|
4073
4175
|
return sdk.get("/users/search/names/".concat(request.pattern), {
|
|
4074
4176
|
fields: request.fields,
|
|
@@ -4086,43 +4188,46 @@ export var search_users_names = function () {
|
|
|
4086
4188
|
}, null, options);
|
|
4087
4189
|
});
|
|
4088
4190
|
|
|
4089
|
-
return function search_users_names(
|
|
4090
|
-
return
|
|
4191
|
+
return function search_users_names(_x1225, _x1226, _x1227) {
|
|
4192
|
+
return _ref360.apply(this, arguments);
|
|
4091
4193
|
};
|
|
4092
4194
|
}();
|
|
4093
4195
|
export var user = function () {
|
|
4094
|
-
var
|
|
4196
|
+
var _ref361 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4197
|
+
user_id = encodeParam(user_id);
|
|
4095
4198
|
return sdk.get("/users/".concat(user_id), {
|
|
4096
4199
|
fields
|
|
4097
4200
|
}, null, options);
|
|
4098
4201
|
});
|
|
4099
4202
|
|
|
4100
|
-
return function user(
|
|
4101
|
-
return
|
|
4203
|
+
return function user(_x1228, _x1229, _x1230, _x1231) {
|
|
4204
|
+
return _ref361.apply(this, arguments);
|
|
4102
4205
|
};
|
|
4103
4206
|
}();
|
|
4104
4207
|
export var update_user = function () {
|
|
4105
|
-
var
|
|
4208
|
+
var _ref362 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4209
|
+
user_id = encodeParam(user_id);
|
|
4106
4210
|
return sdk.patch("/users/".concat(user_id), {
|
|
4107
4211
|
fields
|
|
4108
4212
|
}, body, options);
|
|
4109
4213
|
});
|
|
4110
4214
|
|
|
4111
|
-
return function update_user(
|
|
4112
|
-
return
|
|
4215
|
+
return function update_user(_x1232, _x1233, _x1234, _x1235, _x1236) {
|
|
4216
|
+
return _ref362.apply(this, arguments);
|
|
4113
4217
|
};
|
|
4114
4218
|
}();
|
|
4115
4219
|
export var delete_user = function () {
|
|
4116
|
-
var
|
|
4220
|
+
var _ref363 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4221
|
+
user_id = encodeParam(user_id);
|
|
4117
4222
|
return sdk.delete("/users/".concat(user_id), null, null, options);
|
|
4118
4223
|
});
|
|
4119
4224
|
|
|
4120
|
-
return function delete_user(
|
|
4121
|
-
return
|
|
4225
|
+
return function delete_user(_x1237, _x1238, _x1239) {
|
|
4226
|
+
return _ref363.apply(this, arguments);
|
|
4122
4227
|
};
|
|
4123
4228
|
}();
|
|
4124
4229
|
export var user_for_credential = function () {
|
|
4125
|
-
var
|
|
4230
|
+
var _ref364 = _asyncToGenerator(function* (sdk, credential_type, credential_id, fields, options) {
|
|
4126
4231
|
credential_type = encodeParam(credential_type);
|
|
4127
4232
|
credential_id = encodeParam(credential_id);
|
|
4128
4233
|
return sdk.get("/users/credential/".concat(credential_type, "/").concat(credential_id), {
|
|
@@ -4130,324 +4235,361 @@ export var user_for_credential = function () {
|
|
|
4130
4235
|
}, null, options);
|
|
4131
4236
|
});
|
|
4132
4237
|
|
|
4133
|
-
return function user_for_credential(
|
|
4134
|
-
return
|
|
4238
|
+
return function user_for_credential(_x1240, _x1241, _x1242, _x1243, _x1244) {
|
|
4239
|
+
return _ref364.apply(this, arguments);
|
|
4135
4240
|
};
|
|
4136
4241
|
}();
|
|
4137
4242
|
export var user_credentials_email = function () {
|
|
4138
|
-
var
|
|
4243
|
+
var _ref365 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4244
|
+
user_id = encodeParam(user_id);
|
|
4139
4245
|
return sdk.get("/users/".concat(user_id, "/credentials_email"), {
|
|
4140
4246
|
fields
|
|
4141
4247
|
}, null, options);
|
|
4142
4248
|
});
|
|
4143
4249
|
|
|
4144
|
-
return function user_credentials_email(
|
|
4145
|
-
return
|
|
4250
|
+
return function user_credentials_email(_x1245, _x1246, _x1247, _x1248) {
|
|
4251
|
+
return _ref365.apply(this, arguments);
|
|
4146
4252
|
};
|
|
4147
4253
|
}();
|
|
4148
4254
|
export var create_user_credentials_email = function () {
|
|
4149
|
-
var
|
|
4255
|
+
var _ref366 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4256
|
+
user_id = encodeParam(user_id);
|
|
4150
4257
|
return sdk.post("/users/".concat(user_id, "/credentials_email"), {
|
|
4151
4258
|
fields
|
|
4152
4259
|
}, body, options);
|
|
4153
4260
|
});
|
|
4154
4261
|
|
|
4155
|
-
return function create_user_credentials_email(
|
|
4156
|
-
return
|
|
4262
|
+
return function create_user_credentials_email(_x1249, _x1250, _x1251, _x1252, _x1253) {
|
|
4263
|
+
return _ref366.apply(this, arguments);
|
|
4157
4264
|
};
|
|
4158
4265
|
}();
|
|
4159
4266
|
export var update_user_credentials_email = function () {
|
|
4160
|
-
var
|
|
4267
|
+
var _ref367 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4268
|
+
user_id = encodeParam(user_id);
|
|
4161
4269
|
return sdk.patch("/users/".concat(user_id, "/credentials_email"), {
|
|
4162
4270
|
fields
|
|
4163
4271
|
}, body, options);
|
|
4164
4272
|
});
|
|
4165
4273
|
|
|
4166
|
-
return function update_user_credentials_email(
|
|
4167
|
-
return
|
|
4274
|
+
return function update_user_credentials_email(_x1254, _x1255, _x1256, _x1257, _x1258) {
|
|
4275
|
+
return _ref367.apply(this, arguments);
|
|
4168
4276
|
};
|
|
4169
4277
|
}();
|
|
4170
4278
|
export var delete_user_credentials_email = function () {
|
|
4171
|
-
var
|
|
4279
|
+
var _ref368 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4280
|
+
user_id = encodeParam(user_id);
|
|
4172
4281
|
return sdk.delete("/users/".concat(user_id, "/credentials_email"), null, null, options);
|
|
4173
4282
|
});
|
|
4174
4283
|
|
|
4175
|
-
return function delete_user_credentials_email(
|
|
4176
|
-
return
|
|
4284
|
+
return function delete_user_credentials_email(_x1259, _x1260, _x1261) {
|
|
4285
|
+
return _ref368.apply(this, arguments);
|
|
4177
4286
|
};
|
|
4178
4287
|
}();
|
|
4179
4288
|
export var user_credentials_totp = function () {
|
|
4180
|
-
var
|
|
4289
|
+
var _ref369 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4290
|
+
user_id = encodeParam(user_id);
|
|
4181
4291
|
return sdk.get("/users/".concat(user_id, "/credentials_totp"), {
|
|
4182
4292
|
fields
|
|
4183
4293
|
}, null, options);
|
|
4184
4294
|
});
|
|
4185
4295
|
|
|
4186
|
-
return function user_credentials_totp(
|
|
4187
|
-
return
|
|
4296
|
+
return function user_credentials_totp(_x1262, _x1263, _x1264, _x1265) {
|
|
4297
|
+
return _ref369.apply(this, arguments);
|
|
4188
4298
|
};
|
|
4189
4299
|
}();
|
|
4190
4300
|
export var create_user_credentials_totp = function () {
|
|
4191
|
-
var
|
|
4301
|
+
var _ref370 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4302
|
+
user_id = encodeParam(user_id);
|
|
4192
4303
|
return sdk.post("/users/".concat(user_id, "/credentials_totp"), {
|
|
4193
4304
|
fields
|
|
4194
4305
|
}, body, options);
|
|
4195
4306
|
});
|
|
4196
4307
|
|
|
4197
|
-
return function create_user_credentials_totp(
|
|
4198
|
-
return
|
|
4308
|
+
return function create_user_credentials_totp(_x1266, _x1267, _x1268, _x1269, _x1270) {
|
|
4309
|
+
return _ref370.apply(this, arguments);
|
|
4199
4310
|
};
|
|
4200
4311
|
}();
|
|
4201
4312
|
export var delete_user_credentials_totp = function () {
|
|
4202
|
-
var
|
|
4313
|
+
var _ref371 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4314
|
+
user_id = encodeParam(user_id);
|
|
4203
4315
|
return sdk.delete("/users/".concat(user_id, "/credentials_totp"), null, null, options);
|
|
4204
4316
|
});
|
|
4205
4317
|
|
|
4206
|
-
return function delete_user_credentials_totp(
|
|
4207
|
-
return
|
|
4318
|
+
return function delete_user_credentials_totp(_x1271, _x1272, _x1273) {
|
|
4319
|
+
return _ref371.apply(this, arguments);
|
|
4208
4320
|
};
|
|
4209
4321
|
}();
|
|
4210
4322
|
export var user_credentials_ldap = function () {
|
|
4211
|
-
var
|
|
4323
|
+
var _ref372 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4324
|
+
user_id = encodeParam(user_id);
|
|
4212
4325
|
return sdk.get("/users/".concat(user_id, "/credentials_ldap"), {
|
|
4213
4326
|
fields
|
|
4214
4327
|
}, null, options);
|
|
4215
4328
|
});
|
|
4216
4329
|
|
|
4217
|
-
return function user_credentials_ldap(
|
|
4218
|
-
return
|
|
4330
|
+
return function user_credentials_ldap(_x1274, _x1275, _x1276, _x1277) {
|
|
4331
|
+
return _ref372.apply(this, arguments);
|
|
4219
4332
|
};
|
|
4220
4333
|
}();
|
|
4221
4334
|
export var delete_user_credentials_ldap = function () {
|
|
4222
|
-
var
|
|
4335
|
+
var _ref373 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4336
|
+
user_id = encodeParam(user_id);
|
|
4223
4337
|
return sdk.delete("/users/".concat(user_id, "/credentials_ldap"), null, null, options);
|
|
4224
4338
|
});
|
|
4225
4339
|
|
|
4226
|
-
return function delete_user_credentials_ldap(
|
|
4227
|
-
return
|
|
4340
|
+
return function delete_user_credentials_ldap(_x1278, _x1279, _x1280) {
|
|
4341
|
+
return _ref373.apply(this, arguments);
|
|
4228
4342
|
};
|
|
4229
4343
|
}();
|
|
4230
4344
|
export var user_credentials_google = function () {
|
|
4231
|
-
var
|
|
4345
|
+
var _ref374 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4346
|
+
user_id = encodeParam(user_id);
|
|
4232
4347
|
return sdk.get("/users/".concat(user_id, "/credentials_google"), {
|
|
4233
4348
|
fields
|
|
4234
4349
|
}, null, options);
|
|
4235
4350
|
});
|
|
4236
4351
|
|
|
4237
|
-
return function user_credentials_google(
|
|
4238
|
-
return
|
|
4352
|
+
return function user_credentials_google(_x1281, _x1282, _x1283, _x1284) {
|
|
4353
|
+
return _ref374.apply(this, arguments);
|
|
4239
4354
|
};
|
|
4240
4355
|
}();
|
|
4241
4356
|
export var delete_user_credentials_google = function () {
|
|
4242
|
-
var
|
|
4357
|
+
var _ref375 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4358
|
+
user_id = encodeParam(user_id);
|
|
4243
4359
|
return sdk.delete("/users/".concat(user_id, "/credentials_google"), null, null, options);
|
|
4244
4360
|
});
|
|
4245
4361
|
|
|
4246
|
-
return function delete_user_credentials_google(
|
|
4247
|
-
return
|
|
4362
|
+
return function delete_user_credentials_google(_x1285, _x1286, _x1287) {
|
|
4363
|
+
return _ref375.apply(this, arguments);
|
|
4248
4364
|
};
|
|
4249
4365
|
}();
|
|
4250
4366
|
export var user_credentials_saml = function () {
|
|
4251
|
-
var
|
|
4367
|
+
var _ref376 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4368
|
+
user_id = encodeParam(user_id);
|
|
4252
4369
|
return sdk.get("/users/".concat(user_id, "/credentials_saml"), {
|
|
4253
4370
|
fields
|
|
4254
4371
|
}, null, options);
|
|
4255
4372
|
});
|
|
4256
4373
|
|
|
4257
|
-
return function user_credentials_saml(
|
|
4258
|
-
return
|
|
4374
|
+
return function user_credentials_saml(_x1288, _x1289, _x1290, _x1291) {
|
|
4375
|
+
return _ref376.apply(this, arguments);
|
|
4259
4376
|
};
|
|
4260
4377
|
}();
|
|
4261
4378
|
export var delete_user_credentials_saml = function () {
|
|
4262
|
-
var
|
|
4379
|
+
var _ref377 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4380
|
+
user_id = encodeParam(user_id);
|
|
4263
4381
|
return sdk.delete("/users/".concat(user_id, "/credentials_saml"), null, null, options);
|
|
4264
4382
|
});
|
|
4265
4383
|
|
|
4266
|
-
return function delete_user_credentials_saml(
|
|
4267
|
-
return
|
|
4384
|
+
return function delete_user_credentials_saml(_x1292, _x1293, _x1294) {
|
|
4385
|
+
return _ref377.apply(this, arguments);
|
|
4268
4386
|
};
|
|
4269
4387
|
}();
|
|
4270
4388
|
export var user_credentials_oidc = function () {
|
|
4271
|
-
var
|
|
4389
|
+
var _ref378 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4390
|
+
user_id = encodeParam(user_id);
|
|
4272
4391
|
return sdk.get("/users/".concat(user_id, "/credentials_oidc"), {
|
|
4273
4392
|
fields
|
|
4274
4393
|
}, null, options);
|
|
4275
4394
|
});
|
|
4276
4395
|
|
|
4277
|
-
return function user_credentials_oidc(
|
|
4278
|
-
return
|
|
4396
|
+
return function user_credentials_oidc(_x1295, _x1296, _x1297, _x1298) {
|
|
4397
|
+
return _ref378.apply(this, arguments);
|
|
4279
4398
|
};
|
|
4280
4399
|
}();
|
|
4281
4400
|
export var delete_user_credentials_oidc = function () {
|
|
4282
|
-
var
|
|
4401
|
+
var _ref379 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4402
|
+
user_id = encodeParam(user_id);
|
|
4283
4403
|
return sdk.delete("/users/".concat(user_id, "/credentials_oidc"), null, null, options);
|
|
4284
4404
|
});
|
|
4285
4405
|
|
|
4286
|
-
return function delete_user_credentials_oidc(
|
|
4287
|
-
return
|
|
4406
|
+
return function delete_user_credentials_oidc(_x1299, _x1300, _x1301) {
|
|
4407
|
+
return _ref379.apply(this, arguments);
|
|
4288
4408
|
};
|
|
4289
4409
|
}();
|
|
4290
4410
|
export var user_credentials_api3 = function () {
|
|
4291
|
-
var
|
|
4411
|
+
var _ref380 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, fields, options) {
|
|
4412
|
+
user_id = encodeParam(user_id);
|
|
4413
|
+
credentials_api3_id = encodeParam(credentials_api3_id);
|
|
4292
4414
|
return sdk.get("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), {
|
|
4293
4415
|
fields
|
|
4294
4416
|
}, null, options);
|
|
4295
4417
|
});
|
|
4296
4418
|
|
|
4297
|
-
return function user_credentials_api3(
|
|
4298
|
-
return
|
|
4419
|
+
return function user_credentials_api3(_x1302, _x1303, _x1304, _x1305, _x1306) {
|
|
4420
|
+
return _ref380.apply(this, arguments);
|
|
4299
4421
|
};
|
|
4300
4422
|
}();
|
|
4301
4423
|
export var delete_user_credentials_api3 = function () {
|
|
4302
|
-
var
|
|
4424
|
+
var _ref381 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, options) {
|
|
4425
|
+
user_id = encodeParam(user_id);
|
|
4426
|
+
credentials_api3_id = encodeParam(credentials_api3_id);
|
|
4303
4427
|
return sdk.delete("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), null, null, options);
|
|
4304
4428
|
});
|
|
4305
4429
|
|
|
4306
|
-
return function delete_user_credentials_api3(
|
|
4307
|
-
return
|
|
4430
|
+
return function delete_user_credentials_api3(_x1307, _x1308, _x1309, _x1310) {
|
|
4431
|
+
return _ref381.apply(this, arguments);
|
|
4308
4432
|
};
|
|
4309
4433
|
}();
|
|
4310
4434
|
export var all_user_credentials_api3s = function () {
|
|
4311
|
-
var
|
|
4435
|
+
var _ref382 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4436
|
+
user_id = encodeParam(user_id);
|
|
4312
4437
|
return sdk.get("/users/".concat(user_id, "/credentials_api3"), {
|
|
4313
4438
|
fields
|
|
4314
4439
|
}, null, options);
|
|
4315
4440
|
});
|
|
4316
4441
|
|
|
4317
|
-
return function all_user_credentials_api3s(
|
|
4318
|
-
return
|
|
4442
|
+
return function all_user_credentials_api3s(_x1311, _x1312, _x1313, _x1314) {
|
|
4443
|
+
return _ref382.apply(this, arguments);
|
|
4319
4444
|
};
|
|
4320
4445
|
}();
|
|
4321
4446
|
export var create_user_credentials_api3 = function () {
|
|
4322
|
-
var
|
|
4447
|
+
var _ref383 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4448
|
+
user_id = encodeParam(user_id);
|
|
4323
4449
|
return sdk.post("/users/".concat(user_id, "/credentials_api3"), {
|
|
4324
4450
|
fields
|
|
4325
4451
|
}, null, options);
|
|
4326
4452
|
});
|
|
4327
4453
|
|
|
4328
|
-
return function create_user_credentials_api3(
|
|
4329
|
-
return
|
|
4454
|
+
return function create_user_credentials_api3(_x1315, _x1316, _x1317, _x1318) {
|
|
4455
|
+
return _ref383.apply(this, arguments);
|
|
4330
4456
|
};
|
|
4331
4457
|
}();
|
|
4332
4458
|
export var user_credentials_embed = function () {
|
|
4333
|
-
var
|
|
4459
|
+
var _ref384 = _asyncToGenerator(function* (sdk, user_id, credentials_embed_id, fields, options) {
|
|
4460
|
+
user_id = encodeParam(user_id);
|
|
4461
|
+
credentials_embed_id = encodeParam(credentials_embed_id);
|
|
4334
4462
|
return sdk.get("/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), {
|
|
4335
4463
|
fields
|
|
4336
4464
|
}, null, options);
|
|
4337
4465
|
});
|
|
4338
4466
|
|
|
4339
|
-
return function user_credentials_embed(
|
|
4340
|
-
return
|
|
4467
|
+
return function user_credentials_embed(_x1319, _x1320, _x1321, _x1322, _x1323) {
|
|
4468
|
+
return _ref384.apply(this, arguments);
|
|
4341
4469
|
};
|
|
4342
4470
|
}();
|
|
4343
4471
|
export var delete_user_credentials_embed = function () {
|
|
4344
|
-
var
|
|
4472
|
+
var _ref385 = _asyncToGenerator(function* (sdk, user_id, credentials_embed_id, options) {
|
|
4473
|
+
user_id = encodeParam(user_id);
|
|
4474
|
+
credentials_embed_id = encodeParam(credentials_embed_id);
|
|
4345
4475
|
return sdk.delete("/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), null, null, options);
|
|
4346
4476
|
});
|
|
4347
4477
|
|
|
4348
|
-
return function delete_user_credentials_embed(
|
|
4349
|
-
return
|
|
4478
|
+
return function delete_user_credentials_embed(_x1324, _x1325, _x1326, _x1327) {
|
|
4479
|
+
return _ref385.apply(this, arguments);
|
|
4350
4480
|
};
|
|
4351
4481
|
}();
|
|
4352
4482
|
export var all_user_credentials_embeds = function () {
|
|
4353
|
-
var
|
|
4483
|
+
var _ref386 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4484
|
+
user_id = encodeParam(user_id);
|
|
4354
4485
|
return sdk.get("/users/".concat(user_id, "/credentials_embed"), {
|
|
4355
4486
|
fields
|
|
4356
4487
|
}, null, options);
|
|
4357
4488
|
});
|
|
4358
4489
|
|
|
4359
|
-
return function all_user_credentials_embeds(
|
|
4360
|
-
return
|
|
4490
|
+
return function all_user_credentials_embeds(_x1328, _x1329, _x1330, _x1331) {
|
|
4491
|
+
return _ref386.apply(this, arguments);
|
|
4361
4492
|
};
|
|
4362
4493
|
}();
|
|
4363
4494
|
export var user_credentials_looker_openid = function () {
|
|
4364
|
-
var
|
|
4495
|
+
var _ref387 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4496
|
+
user_id = encodeParam(user_id);
|
|
4365
4497
|
return sdk.get("/users/".concat(user_id, "/credentials_looker_openid"), {
|
|
4366
4498
|
fields
|
|
4367
4499
|
}, null, options);
|
|
4368
4500
|
});
|
|
4369
4501
|
|
|
4370
|
-
return function user_credentials_looker_openid(
|
|
4371
|
-
return
|
|
4502
|
+
return function user_credentials_looker_openid(_x1332, _x1333, _x1334, _x1335) {
|
|
4503
|
+
return _ref387.apply(this, arguments);
|
|
4372
4504
|
};
|
|
4373
4505
|
}();
|
|
4374
4506
|
export var delete_user_credentials_looker_openid = function () {
|
|
4375
|
-
var
|
|
4507
|
+
var _ref388 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4508
|
+
user_id = encodeParam(user_id);
|
|
4376
4509
|
return sdk.delete("/users/".concat(user_id, "/credentials_looker_openid"), null, null, options);
|
|
4377
4510
|
});
|
|
4378
4511
|
|
|
4379
|
-
return function delete_user_credentials_looker_openid(
|
|
4380
|
-
return
|
|
4512
|
+
return function delete_user_credentials_looker_openid(_x1336, _x1337, _x1338) {
|
|
4513
|
+
return _ref388.apply(this, arguments);
|
|
4381
4514
|
};
|
|
4382
4515
|
}();
|
|
4383
4516
|
export var user_session = function () {
|
|
4384
|
-
var
|
|
4517
|
+
var _ref389 = _asyncToGenerator(function* (sdk, user_id, session_id, fields, options) {
|
|
4518
|
+
user_id = encodeParam(user_id);
|
|
4519
|
+
session_id = encodeParam(session_id);
|
|
4385
4520
|
return sdk.get("/users/".concat(user_id, "/sessions/").concat(session_id), {
|
|
4386
4521
|
fields
|
|
4387
4522
|
}, null, options);
|
|
4388
4523
|
});
|
|
4389
4524
|
|
|
4390
|
-
return function user_session(
|
|
4391
|
-
return
|
|
4525
|
+
return function user_session(_x1339, _x1340, _x1341, _x1342, _x1343) {
|
|
4526
|
+
return _ref389.apply(this, arguments);
|
|
4392
4527
|
};
|
|
4393
4528
|
}();
|
|
4394
4529
|
export var delete_user_session = function () {
|
|
4395
|
-
var
|
|
4530
|
+
var _ref390 = _asyncToGenerator(function* (sdk, user_id, session_id, options) {
|
|
4531
|
+
user_id = encodeParam(user_id);
|
|
4532
|
+
session_id = encodeParam(session_id);
|
|
4396
4533
|
return sdk.delete("/users/".concat(user_id, "/sessions/").concat(session_id), null, null, options);
|
|
4397
4534
|
});
|
|
4398
4535
|
|
|
4399
|
-
return function delete_user_session(
|
|
4400
|
-
return
|
|
4536
|
+
return function delete_user_session(_x1344, _x1345, _x1346, _x1347) {
|
|
4537
|
+
return _ref390.apply(this, arguments);
|
|
4401
4538
|
};
|
|
4402
4539
|
}();
|
|
4403
4540
|
export var all_user_sessions = function () {
|
|
4404
|
-
var
|
|
4541
|
+
var _ref391 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4542
|
+
user_id = encodeParam(user_id);
|
|
4405
4543
|
return sdk.get("/users/".concat(user_id, "/sessions"), {
|
|
4406
4544
|
fields
|
|
4407
4545
|
}, null, options);
|
|
4408
4546
|
});
|
|
4409
4547
|
|
|
4410
|
-
return function all_user_sessions(
|
|
4411
|
-
return
|
|
4548
|
+
return function all_user_sessions(_x1348, _x1349, _x1350, _x1351) {
|
|
4549
|
+
return _ref391.apply(this, arguments);
|
|
4412
4550
|
};
|
|
4413
4551
|
}();
|
|
4414
4552
|
export var create_user_credentials_email_password_reset = function () {
|
|
4415
|
-
var
|
|
4553
|
+
var _ref392 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4554
|
+
request.user_id = encodeParam(request.user_id);
|
|
4416
4555
|
return sdk.post("/users/".concat(request.user_id, "/credentials_email/password_reset"), {
|
|
4417
4556
|
expires: request.expires,
|
|
4418
4557
|
fields: request.fields
|
|
4419
4558
|
}, null, options);
|
|
4420
4559
|
});
|
|
4421
4560
|
|
|
4422
|
-
return function create_user_credentials_email_password_reset(
|
|
4423
|
-
return
|
|
4561
|
+
return function create_user_credentials_email_password_reset(_x1352, _x1353, _x1354) {
|
|
4562
|
+
return _ref392.apply(this, arguments);
|
|
4424
4563
|
};
|
|
4425
4564
|
}();
|
|
4426
4565
|
export var user_roles = function () {
|
|
4427
|
-
var
|
|
4566
|
+
var _ref393 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4567
|
+
request.user_id = encodeParam(request.user_id);
|
|
4428
4568
|
return sdk.get("/users/".concat(request.user_id, "/roles"), {
|
|
4429
4569
|
fields: request.fields,
|
|
4430
4570
|
direct_association_only: request.direct_association_only
|
|
4431
4571
|
}, null, options);
|
|
4432
4572
|
});
|
|
4433
4573
|
|
|
4434
|
-
return function user_roles(
|
|
4435
|
-
return
|
|
4574
|
+
return function user_roles(_x1355, _x1356, _x1357) {
|
|
4575
|
+
return _ref393.apply(this, arguments);
|
|
4436
4576
|
};
|
|
4437
4577
|
}();
|
|
4438
4578
|
export var set_user_roles = function () {
|
|
4439
|
-
var
|
|
4579
|
+
var _ref394 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4580
|
+
user_id = encodeParam(user_id);
|
|
4440
4581
|
return sdk.put("/users/".concat(user_id, "/roles"), {
|
|
4441
4582
|
fields
|
|
4442
4583
|
}, body, options);
|
|
4443
4584
|
});
|
|
4444
4585
|
|
|
4445
|
-
return function set_user_roles(
|
|
4446
|
-
return
|
|
4586
|
+
return function set_user_roles(_x1358, _x1359, _x1360, _x1361, _x1362) {
|
|
4587
|
+
return _ref394.apply(this, arguments);
|
|
4447
4588
|
};
|
|
4448
4589
|
}();
|
|
4449
4590
|
export var user_attribute_user_values = function () {
|
|
4450
|
-
var
|
|
4591
|
+
var _ref395 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4592
|
+
request.user_id = encodeParam(request.user_id);
|
|
4451
4593
|
return sdk.get("/users/".concat(request.user_id, "/attribute_values"), {
|
|
4452
4594
|
fields: request.fields,
|
|
4453
4595
|
user_attribute_ids: request.user_attribute_ids,
|
|
@@ -4456,150 +4598,161 @@ export var user_attribute_user_values = function () {
|
|
|
4456
4598
|
}, null, options);
|
|
4457
4599
|
});
|
|
4458
4600
|
|
|
4459
|
-
return function user_attribute_user_values(
|
|
4460
|
-
return
|
|
4601
|
+
return function user_attribute_user_values(_x1363, _x1364, _x1365) {
|
|
4602
|
+
return _ref395.apply(this, arguments);
|
|
4461
4603
|
};
|
|
4462
4604
|
}();
|
|
4463
4605
|
export var set_user_attribute_user_value = function () {
|
|
4464
|
-
var
|
|
4606
|
+
var _ref396 = _asyncToGenerator(function* (sdk, user_id, user_attribute_id, body, options) {
|
|
4607
|
+
user_id = encodeParam(user_id);
|
|
4608
|
+
user_attribute_id = encodeParam(user_attribute_id);
|
|
4465
4609
|
return sdk.patch("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
|
|
4466
4610
|
});
|
|
4467
4611
|
|
|
4468
|
-
return function set_user_attribute_user_value(
|
|
4469
|
-
return
|
|
4612
|
+
return function set_user_attribute_user_value(_x1366, _x1367, _x1368, _x1369, _x1370) {
|
|
4613
|
+
return _ref396.apply(this, arguments);
|
|
4470
4614
|
};
|
|
4471
4615
|
}();
|
|
4472
4616
|
export var delete_user_attribute_user_value = function () {
|
|
4473
|
-
var
|
|
4617
|
+
var _ref397 = _asyncToGenerator(function* (sdk, user_id, user_attribute_id, options) {
|
|
4618
|
+
user_id = encodeParam(user_id);
|
|
4619
|
+
user_attribute_id = encodeParam(user_attribute_id);
|
|
4474
4620
|
return sdk.delete("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
|
|
4475
4621
|
});
|
|
4476
4622
|
|
|
4477
|
-
return function delete_user_attribute_user_value(
|
|
4478
|
-
return
|
|
4623
|
+
return function delete_user_attribute_user_value(_x1371, _x1372, _x1373, _x1374) {
|
|
4624
|
+
return _ref397.apply(this, arguments);
|
|
4479
4625
|
};
|
|
4480
4626
|
}();
|
|
4481
4627
|
export var send_user_credentials_email_password_reset = function () {
|
|
4482
|
-
var
|
|
4628
|
+
var _ref398 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4629
|
+
user_id = encodeParam(user_id);
|
|
4483
4630
|
return sdk.post("/users/".concat(user_id, "/credentials_email/send_password_reset"), {
|
|
4484
4631
|
fields
|
|
4485
4632
|
}, null, options);
|
|
4486
4633
|
});
|
|
4487
4634
|
|
|
4488
|
-
return function send_user_credentials_email_password_reset(
|
|
4489
|
-
return
|
|
4635
|
+
return function send_user_credentials_email_password_reset(_x1375, _x1376, _x1377, _x1378) {
|
|
4636
|
+
return _ref398.apply(this, arguments);
|
|
4490
4637
|
};
|
|
4491
4638
|
}();
|
|
4492
4639
|
export var wipeout_user_emails = function () {
|
|
4493
|
-
var
|
|
4640
|
+
var _ref399 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4641
|
+
user_id = encodeParam(user_id);
|
|
4494
4642
|
return sdk.post("/users/".concat(user_id, "/update_emails"), {
|
|
4495
4643
|
fields
|
|
4496
4644
|
}, body, options);
|
|
4497
4645
|
});
|
|
4498
4646
|
|
|
4499
|
-
return function wipeout_user_emails(
|
|
4500
|
-
return
|
|
4647
|
+
return function wipeout_user_emails(_x1379, _x1380, _x1381, _x1382, _x1383) {
|
|
4648
|
+
return _ref399.apply(this, arguments);
|
|
4501
4649
|
};
|
|
4502
4650
|
}();
|
|
4503
4651
|
export var create_embed_user = function () {
|
|
4504
|
-
var
|
|
4652
|
+
var _ref400 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4505
4653
|
return sdk.post('/users/embed_user', null, body, options);
|
|
4506
4654
|
});
|
|
4507
4655
|
|
|
4508
|
-
return function create_embed_user(
|
|
4509
|
-
return
|
|
4656
|
+
return function create_embed_user(_x1384, _x1385, _x1386) {
|
|
4657
|
+
return _ref400.apply(this, arguments);
|
|
4510
4658
|
};
|
|
4511
4659
|
}();
|
|
4512
4660
|
export var all_user_attributes = function () {
|
|
4513
|
-
var
|
|
4661
|
+
var _ref401 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4514
4662
|
return sdk.get('/user_attributes', {
|
|
4515
4663
|
fields: request.fields,
|
|
4516
4664
|
sorts: request.sorts
|
|
4517
4665
|
}, null, options);
|
|
4518
4666
|
});
|
|
4519
4667
|
|
|
4520
|
-
return function all_user_attributes(
|
|
4521
|
-
return
|
|
4668
|
+
return function all_user_attributes(_x1387, _x1388, _x1389) {
|
|
4669
|
+
return _ref401.apply(this, arguments);
|
|
4522
4670
|
};
|
|
4523
4671
|
}();
|
|
4524
4672
|
export var create_user_attribute = function () {
|
|
4525
|
-
var
|
|
4673
|
+
var _ref402 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
4526
4674
|
return sdk.post('/user_attributes', {
|
|
4527
4675
|
fields
|
|
4528
4676
|
}, body, options);
|
|
4529
4677
|
});
|
|
4530
4678
|
|
|
4531
|
-
return function create_user_attribute(
|
|
4532
|
-
return
|
|
4679
|
+
return function create_user_attribute(_x1390, _x1391, _x1392, _x1393) {
|
|
4680
|
+
return _ref402.apply(this, arguments);
|
|
4533
4681
|
};
|
|
4534
4682
|
}();
|
|
4535
4683
|
export var user_attribute = function () {
|
|
4536
|
-
var
|
|
4684
|
+
var _ref403 = _asyncToGenerator(function* (sdk, user_attribute_id, fields, options) {
|
|
4685
|
+
user_attribute_id = encodeParam(user_attribute_id);
|
|
4537
4686
|
return sdk.get("/user_attributes/".concat(user_attribute_id), {
|
|
4538
4687
|
fields
|
|
4539
4688
|
}, null, options);
|
|
4540
4689
|
});
|
|
4541
4690
|
|
|
4542
|
-
return function user_attribute(
|
|
4543
|
-
return
|
|
4691
|
+
return function user_attribute(_x1394, _x1395, _x1396, _x1397) {
|
|
4692
|
+
return _ref403.apply(this, arguments);
|
|
4544
4693
|
};
|
|
4545
4694
|
}();
|
|
4546
4695
|
export var update_user_attribute = function () {
|
|
4547
|
-
var
|
|
4696
|
+
var _ref404 = _asyncToGenerator(function* (sdk, user_attribute_id, body, fields, options) {
|
|
4697
|
+
user_attribute_id = encodeParam(user_attribute_id);
|
|
4548
4698
|
return sdk.patch("/user_attributes/".concat(user_attribute_id), {
|
|
4549
4699
|
fields
|
|
4550
4700
|
}, body, options);
|
|
4551
4701
|
});
|
|
4552
4702
|
|
|
4553
|
-
return function update_user_attribute(
|
|
4554
|
-
return
|
|
4703
|
+
return function update_user_attribute(_x1398, _x1399, _x1400, _x1401, _x1402) {
|
|
4704
|
+
return _ref404.apply(this, arguments);
|
|
4555
4705
|
};
|
|
4556
4706
|
}();
|
|
4557
4707
|
export var delete_user_attribute = function () {
|
|
4558
|
-
var
|
|
4708
|
+
var _ref405 = _asyncToGenerator(function* (sdk, user_attribute_id, options) {
|
|
4709
|
+
user_attribute_id = encodeParam(user_attribute_id);
|
|
4559
4710
|
return sdk.delete("/user_attributes/".concat(user_attribute_id), null, null, options);
|
|
4560
4711
|
});
|
|
4561
4712
|
|
|
4562
|
-
return function delete_user_attribute(
|
|
4563
|
-
return
|
|
4713
|
+
return function delete_user_attribute(_x1403, _x1404, _x1405) {
|
|
4714
|
+
return _ref405.apply(this, arguments);
|
|
4564
4715
|
};
|
|
4565
4716
|
}();
|
|
4566
4717
|
export var all_user_attribute_group_values = function () {
|
|
4567
|
-
var
|
|
4718
|
+
var _ref406 = _asyncToGenerator(function* (sdk, user_attribute_id, fields, options) {
|
|
4719
|
+
user_attribute_id = encodeParam(user_attribute_id);
|
|
4568
4720
|
return sdk.get("/user_attributes/".concat(user_attribute_id, "/group_values"), {
|
|
4569
4721
|
fields
|
|
4570
4722
|
}, null, options);
|
|
4571
4723
|
});
|
|
4572
4724
|
|
|
4573
|
-
return function all_user_attribute_group_values(
|
|
4574
|
-
return
|
|
4725
|
+
return function all_user_attribute_group_values(_x1406, _x1407, _x1408, _x1409) {
|
|
4726
|
+
return _ref406.apply(this, arguments);
|
|
4575
4727
|
};
|
|
4576
4728
|
}();
|
|
4577
4729
|
export var set_user_attribute_group_values = function () {
|
|
4578
|
-
var
|
|
4730
|
+
var _ref407 = _asyncToGenerator(function* (sdk, user_attribute_id, body, options) {
|
|
4731
|
+
user_attribute_id = encodeParam(user_attribute_id);
|
|
4579
4732
|
return sdk.post("/user_attributes/".concat(user_attribute_id, "/group_values"), null, body, options);
|
|
4580
4733
|
});
|
|
4581
4734
|
|
|
4582
|
-
return function set_user_attribute_group_values(
|
|
4583
|
-
return
|
|
4735
|
+
return function set_user_attribute_group_values(_x1410, _x1411, _x1412, _x1413) {
|
|
4736
|
+
return _ref407.apply(this, arguments);
|
|
4584
4737
|
};
|
|
4585
4738
|
}();
|
|
4586
4739
|
export var all_workspaces = function () {
|
|
4587
|
-
var
|
|
4740
|
+
var _ref408 = _asyncToGenerator(function* (sdk, options) {
|
|
4588
4741
|
return sdk.get('/workspaces', null, null, options);
|
|
4589
4742
|
});
|
|
4590
4743
|
|
|
4591
|
-
return function all_workspaces(
|
|
4592
|
-
return
|
|
4744
|
+
return function all_workspaces(_x1414, _x1415) {
|
|
4745
|
+
return _ref408.apply(this, arguments);
|
|
4593
4746
|
};
|
|
4594
4747
|
}();
|
|
4595
4748
|
export var workspace = function () {
|
|
4596
|
-
var
|
|
4749
|
+
var _ref409 = _asyncToGenerator(function* (sdk, workspace_id, options) {
|
|
4597
4750
|
workspace_id = encodeParam(workspace_id);
|
|
4598
4751
|
return sdk.get("/workspaces/".concat(workspace_id), null, null, options);
|
|
4599
4752
|
});
|
|
4600
4753
|
|
|
4601
|
-
return function workspace(
|
|
4602
|
-
return
|
|
4754
|
+
return function workspace(_x1416, _x1417, _x1418) {
|
|
4755
|
+
return _ref409.apply(this, arguments);
|
|
4603
4756
|
};
|
|
4604
4757
|
}();
|
|
4605
4758
|
//# sourceMappingURL=funcs.js.map
|