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