@looker/sdk 25.6.0 → 25.10.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 +16 -0
- package/lib/4.0/funcs.d.ts +4 -4
- package/lib/4.0/funcs.js +349 -348
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +4 -4
- package/lib/4.0/methods.js +81 -80
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +4 -4
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +177 -19
- package/lib/4.0/models.js +17 -1
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +4 -4
- package/lib/4.0/streams.js +81 -80
- package/lib/4.0/streams.js.map +1 -1
- package/lib/constants.d.ts +1 -1
- package/lib/constants.js +1 -1
- package/lib/constants.js.map +1 -1
- package/lib/esm/4.0/funcs.js +349 -348
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +81 -80
- package/lib/esm/4.0/methods.js.map +1 -1
- package/lib/esm/4.0/methodsInterface.js.map +1 -1
- package/lib/esm/4.0/models.js +16 -0
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js +81 -80
- 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/4.0/funcs.js
CHANGED
|
@@ -1720,13 +1720,14 @@ var import_lookml_dashboard = exports.import_lookml_dashboard = function () {
|
|
|
1720
1720
|
};
|
|
1721
1721
|
}();
|
|
1722
1722
|
var sync_lookml_dashboard = exports.sync_lookml_dashboard = function () {
|
|
1723
|
-
var _ref173 = _asyncToGenerator(function* (sdk,
|
|
1724
|
-
lookml_dashboard_id = (0, _sdkRtl.encodeParam)(lookml_dashboard_id);
|
|
1725
|
-
return sdk.patch("/dashboards/".concat(lookml_dashboard_id, "/sync"), {
|
|
1726
|
-
raw_locale
|
|
1727
|
-
|
|
1723
|
+
var _ref173 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1724
|
+
request.lookml_dashboard_id = (0, _sdkRtl.encodeParam)(request.lookml_dashboard_id);
|
|
1725
|
+
return sdk.patch("/dashboards/".concat(request.lookml_dashboard_id, "/sync"), {
|
|
1726
|
+
raw_locale: request.raw_locale,
|
|
1727
|
+
dashboard_ids: request.dashboard_ids
|
|
1728
|
+
}, null, options);
|
|
1728
1729
|
});
|
|
1729
|
-
return function sync_lookml_dashboard(_x550, _x551, _x552
|
|
1730
|
+
return function sync_lookml_dashboard(_x550, _x551, _x552) {
|
|
1730
1731
|
return _ref173.apply(this, arguments);
|
|
1731
1732
|
};
|
|
1732
1733
|
}();
|
|
@@ -1737,7 +1738,7 @@ var dashboard = exports.dashboard = function () {
|
|
|
1737
1738
|
fields
|
|
1738
1739
|
}, null, options);
|
|
1739
1740
|
});
|
|
1740
|
-
return function dashboard(
|
|
1741
|
+
return function dashboard(_x553, _x554, _x555, _x556) {
|
|
1741
1742
|
return _ref174.apply(this, arguments);
|
|
1742
1743
|
};
|
|
1743
1744
|
}();
|
|
@@ -1746,7 +1747,7 @@ var update_dashboard = exports.update_dashboard = function () {
|
|
|
1746
1747
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1747
1748
|
return sdk.patch("/dashboards/".concat(dashboard_id), null, body, options);
|
|
1748
1749
|
});
|
|
1749
|
-
return function update_dashboard(
|
|
1750
|
+
return function update_dashboard(_x557, _x558, _x559, _x560) {
|
|
1750
1751
|
return _ref175.apply(this, arguments);
|
|
1751
1752
|
};
|
|
1752
1753
|
}();
|
|
@@ -1755,7 +1756,7 @@ var delete_dashboard = exports.delete_dashboard = function () {
|
|
|
1755
1756
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1756
1757
|
return sdk.delete("/dashboards/".concat(dashboard_id), null, null, options);
|
|
1757
1758
|
});
|
|
1758
|
-
return function delete_dashboard(
|
|
1759
|
+
return function delete_dashboard(_x561, _x562, _x563) {
|
|
1759
1760
|
return _ref176.apply(this, arguments);
|
|
1760
1761
|
};
|
|
1761
1762
|
}();
|
|
@@ -1764,7 +1765,7 @@ var dashboard_aggregate_table_lookml = exports.dashboard_aggregate_table_lookml
|
|
|
1764
1765
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1765
1766
|
return sdk.get("/dashboards/aggregate_table_lookml/".concat(dashboard_id), null, null, options);
|
|
1766
1767
|
});
|
|
1767
|
-
return function dashboard_aggregate_table_lookml(
|
|
1768
|
+
return function dashboard_aggregate_table_lookml(_x564, _x565, _x566) {
|
|
1768
1769
|
return _ref177.apply(this, arguments);
|
|
1769
1770
|
};
|
|
1770
1771
|
}();
|
|
@@ -1773,7 +1774,7 @@ var dashboard_lookml = exports.dashboard_lookml = function () {
|
|
|
1773
1774
|
dashboard_id = (0, _sdkRtl.encodeParam)(dashboard_id);
|
|
1774
1775
|
return sdk.get("/dashboards/lookml/".concat(dashboard_id), null, null, options);
|
|
1775
1776
|
});
|
|
1776
|
-
return function dashboard_lookml(
|
|
1777
|
+
return function dashboard_lookml(_x567, _x568, _x569) {
|
|
1777
1778
|
return _ref178.apply(this, arguments);
|
|
1778
1779
|
};
|
|
1779
1780
|
}();
|
|
@@ -1784,7 +1785,7 @@ var move_dashboard = exports.move_dashboard = function () {
|
|
|
1784
1785
|
folder_id
|
|
1785
1786
|
}, null, options);
|
|
1786
1787
|
});
|
|
1787
|
-
return function move_dashboard(
|
|
1788
|
+
return function move_dashboard(_x570, _x571, _x572, _x573) {
|
|
1788
1789
|
return _ref179.apply(this, arguments);
|
|
1789
1790
|
};
|
|
1790
1791
|
}();
|
|
@@ -1792,7 +1793,7 @@ var import_dashboard_from_lookml = exports.import_dashboard_from_lookml = functi
|
|
|
1792
1793
|
var _ref180 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1793
1794
|
return sdk.post('/dashboards/lookml', null, body, options);
|
|
1794
1795
|
});
|
|
1795
|
-
return function import_dashboard_from_lookml(
|
|
1796
|
+
return function import_dashboard_from_lookml(_x574, _x575, _x576) {
|
|
1796
1797
|
return _ref180.apply(this, arguments);
|
|
1797
1798
|
};
|
|
1798
1799
|
}();
|
|
@@ -1800,7 +1801,7 @@ var create_dashboard_from_lookml = exports.create_dashboard_from_lookml = functi
|
|
|
1800
1801
|
var _ref181 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1801
1802
|
return sdk.post('/dashboards/from_lookml', null, body, options);
|
|
1802
1803
|
});
|
|
1803
|
-
return function create_dashboard_from_lookml(
|
|
1804
|
+
return function create_dashboard_from_lookml(_x577, _x578, _x579) {
|
|
1804
1805
|
return _ref181.apply(this, arguments);
|
|
1805
1806
|
};
|
|
1806
1807
|
}();
|
|
@@ -1811,7 +1812,7 @@ var copy_dashboard = exports.copy_dashboard = function () {
|
|
|
1811
1812
|
folder_id
|
|
1812
1813
|
}, null, options);
|
|
1813
1814
|
});
|
|
1814
|
-
return function copy_dashboard(
|
|
1815
|
+
return function copy_dashboard(_x580, _x581, _x582, _x583) {
|
|
1815
1816
|
return _ref182.apply(this, arguments);
|
|
1816
1817
|
};
|
|
1817
1818
|
}();
|
|
@@ -1827,7 +1828,7 @@ var search_dashboard_elements = exports.search_dashboard_elements = function ()
|
|
|
1827
1828
|
sorts: request.sorts
|
|
1828
1829
|
}, null, options);
|
|
1829
1830
|
});
|
|
1830
|
-
return function search_dashboard_elements(
|
|
1831
|
+
return function search_dashboard_elements(_x584, _x585, _x586) {
|
|
1831
1832
|
return _ref183.apply(this, arguments);
|
|
1832
1833
|
};
|
|
1833
1834
|
}();
|
|
@@ -1838,7 +1839,7 @@ var dashboard_element = exports.dashboard_element = function () {
|
|
|
1838
1839
|
fields
|
|
1839
1840
|
}, null, options);
|
|
1840
1841
|
});
|
|
1841
|
-
return function dashboard_element(
|
|
1842
|
+
return function dashboard_element(_x587, _x588, _x589, _x590) {
|
|
1842
1843
|
return _ref184.apply(this, arguments);
|
|
1843
1844
|
};
|
|
1844
1845
|
}();
|
|
@@ -1849,7 +1850,7 @@ var update_dashboard_element = exports.update_dashboard_element = function () {
|
|
|
1849
1850
|
fields
|
|
1850
1851
|
}, body, options);
|
|
1851
1852
|
});
|
|
1852
|
-
return function update_dashboard_element(
|
|
1853
|
+
return function update_dashboard_element(_x591, _x592, _x593, _x594, _x595) {
|
|
1853
1854
|
return _ref185.apply(this, arguments);
|
|
1854
1855
|
};
|
|
1855
1856
|
}();
|
|
@@ -1858,7 +1859,7 @@ var delete_dashboard_element = exports.delete_dashboard_element = function () {
|
|
|
1858
1859
|
dashboard_element_id = (0, _sdkRtl.encodeParam)(dashboard_element_id);
|
|
1859
1860
|
return sdk.delete("/dashboard_elements/".concat(dashboard_element_id), null, null, options);
|
|
1860
1861
|
});
|
|
1861
|
-
return function delete_dashboard_element(
|
|
1862
|
+
return function delete_dashboard_element(_x596, _x597, _x598) {
|
|
1862
1863
|
return _ref186.apply(this, arguments);
|
|
1863
1864
|
};
|
|
1864
1865
|
}();
|
|
@@ -1869,7 +1870,7 @@ var dashboard_dashboard_elements = exports.dashboard_dashboard_elements = functi
|
|
|
1869
1870
|
fields
|
|
1870
1871
|
}, null, options);
|
|
1871
1872
|
});
|
|
1872
|
-
return function dashboard_dashboard_elements(
|
|
1873
|
+
return function dashboard_dashboard_elements(_x599, _x600, _x601, _x602) {
|
|
1873
1874
|
return _ref187.apply(this, arguments);
|
|
1874
1875
|
};
|
|
1875
1876
|
}();
|
|
@@ -1880,7 +1881,7 @@ var create_dashboard_element = exports.create_dashboard_element = function () {
|
|
|
1880
1881
|
apply_filters: request.apply_filters
|
|
1881
1882
|
}, request.body, options);
|
|
1882
1883
|
});
|
|
1883
|
-
return function create_dashboard_element(
|
|
1884
|
+
return function create_dashboard_element(_x603, _x604, _x605) {
|
|
1884
1885
|
return _ref188.apply(this, arguments);
|
|
1885
1886
|
};
|
|
1886
1887
|
}();
|
|
@@ -1891,7 +1892,7 @@ var dashboard_filter = exports.dashboard_filter = function () {
|
|
|
1891
1892
|
fields
|
|
1892
1893
|
}, null, options);
|
|
1893
1894
|
});
|
|
1894
|
-
return function dashboard_filter(
|
|
1895
|
+
return function dashboard_filter(_x606, _x607, _x608, _x609) {
|
|
1895
1896
|
return _ref189.apply(this, arguments);
|
|
1896
1897
|
};
|
|
1897
1898
|
}();
|
|
@@ -1902,7 +1903,7 @@ var update_dashboard_filter = exports.update_dashboard_filter = function () {
|
|
|
1902
1903
|
fields
|
|
1903
1904
|
}, body, options);
|
|
1904
1905
|
});
|
|
1905
|
-
return function update_dashboard_filter(
|
|
1906
|
+
return function update_dashboard_filter(_x610, _x611, _x612, _x613, _x614) {
|
|
1906
1907
|
return _ref190.apply(this, arguments);
|
|
1907
1908
|
};
|
|
1908
1909
|
}();
|
|
@@ -1911,7 +1912,7 @@ var delete_dashboard_filter = exports.delete_dashboard_filter = function () {
|
|
|
1911
1912
|
dashboard_filter_id = (0, _sdkRtl.encodeParam)(dashboard_filter_id);
|
|
1912
1913
|
return sdk.delete("/dashboard_filters/".concat(dashboard_filter_id), null, null, options);
|
|
1913
1914
|
});
|
|
1914
|
-
return function delete_dashboard_filter(
|
|
1915
|
+
return function delete_dashboard_filter(_x615, _x616, _x617) {
|
|
1915
1916
|
return _ref191.apply(this, arguments);
|
|
1916
1917
|
};
|
|
1917
1918
|
}();
|
|
@@ -1922,7 +1923,7 @@ var dashboard_dashboard_filters = exports.dashboard_dashboard_filters = function
|
|
|
1922
1923
|
fields
|
|
1923
1924
|
}, null, options);
|
|
1924
1925
|
});
|
|
1925
|
-
return function dashboard_dashboard_filters(
|
|
1926
|
+
return function dashboard_dashboard_filters(_x618, _x619, _x620, _x621) {
|
|
1926
1927
|
return _ref192.apply(this, arguments);
|
|
1927
1928
|
};
|
|
1928
1929
|
}();
|
|
@@ -1932,7 +1933,7 @@ var create_dashboard_filter = exports.create_dashboard_filter = function () {
|
|
|
1932
1933
|
fields
|
|
1933
1934
|
}, body, options);
|
|
1934
1935
|
});
|
|
1935
|
-
return function create_dashboard_filter(
|
|
1936
|
+
return function create_dashboard_filter(_x622, _x623, _x624, _x625) {
|
|
1936
1937
|
return _ref193.apply(this, arguments);
|
|
1937
1938
|
};
|
|
1938
1939
|
}();
|
|
@@ -1943,7 +1944,7 @@ var dashboard_layout_component = exports.dashboard_layout_component = function (
|
|
|
1943
1944
|
fields
|
|
1944
1945
|
}, null, options);
|
|
1945
1946
|
});
|
|
1946
|
-
return function dashboard_layout_component(
|
|
1947
|
+
return function dashboard_layout_component(_x626, _x627, _x628, _x629) {
|
|
1947
1948
|
return _ref194.apply(this, arguments);
|
|
1948
1949
|
};
|
|
1949
1950
|
}();
|
|
@@ -1954,7 +1955,7 @@ var update_dashboard_layout_component = exports.update_dashboard_layout_componen
|
|
|
1954
1955
|
fields
|
|
1955
1956
|
}, body, options);
|
|
1956
1957
|
});
|
|
1957
|
-
return function update_dashboard_layout_component(
|
|
1958
|
+
return function update_dashboard_layout_component(_x630, _x631, _x632, _x633, _x634) {
|
|
1958
1959
|
return _ref195.apply(this, arguments);
|
|
1959
1960
|
};
|
|
1960
1961
|
}();
|
|
@@ -1965,7 +1966,7 @@ var dashboard_layout_dashboard_layout_components = exports.dashboard_layout_dash
|
|
|
1965
1966
|
fields
|
|
1966
1967
|
}, null, options);
|
|
1967
1968
|
});
|
|
1968
|
-
return function dashboard_layout_dashboard_layout_components(
|
|
1969
|
+
return function dashboard_layout_dashboard_layout_components(_x635, _x636, _x637, _x638) {
|
|
1969
1970
|
return _ref196.apply(this, arguments);
|
|
1970
1971
|
};
|
|
1971
1972
|
}();
|
|
@@ -1976,7 +1977,7 @@ var dashboard_layout = exports.dashboard_layout = function () {
|
|
|
1976
1977
|
fields
|
|
1977
1978
|
}, null, options);
|
|
1978
1979
|
});
|
|
1979
|
-
return function dashboard_layout(
|
|
1980
|
+
return function dashboard_layout(_x639, _x640, _x641, _x642) {
|
|
1980
1981
|
return _ref197.apply(this, arguments);
|
|
1981
1982
|
};
|
|
1982
1983
|
}();
|
|
@@ -1987,7 +1988,7 @@ var update_dashboard_layout = exports.update_dashboard_layout = function () {
|
|
|
1987
1988
|
fields
|
|
1988
1989
|
}, body, options);
|
|
1989
1990
|
});
|
|
1990
|
-
return function update_dashboard_layout(
|
|
1991
|
+
return function update_dashboard_layout(_x643, _x644, _x645, _x646, _x647) {
|
|
1991
1992
|
return _ref198.apply(this, arguments);
|
|
1992
1993
|
};
|
|
1993
1994
|
}();
|
|
@@ -1996,7 +1997,7 @@ var delete_dashboard_layout = exports.delete_dashboard_layout = function () {
|
|
|
1996
1997
|
dashboard_layout_id = (0, _sdkRtl.encodeParam)(dashboard_layout_id);
|
|
1997
1998
|
return sdk.delete("/dashboard_layouts/".concat(dashboard_layout_id), null, null, options);
|
|
1998
1999
|
});
|
|
1999
|
-
return function delete_dashboard_layout(
|
|
2000
|
+
return function delete_dashboard_layout(_x648, _x649, _x650) {
|
|
2000
2001
|
return _ref199.apply(this, arguments);
|
|
2001
2002
|
};
|
|
2002
2003
|
}();
|
|
@@ -2007,7 +2008,7 @@ var dashboard_dashboard_layouts = exports.dashboard_dashboard_layouts = function
|
|
|
2007
2008
|
fields
|
|
2008
2009
|
}, null, options);
|
|
2009
2010
|
});
|
|
2010
|
-
return function dashboard_dashboard_layouts(
|
|
2011
|
+
return function dashboard_dashboard_layouts(_x651, _x652, _x653, _x654) {
|
|
2011
2012
|
return _ref200.apply(this, arguments);
|
|
2012
2013
|
};
|
|
2013
2014
|
}();
|
|
@@ -2017,7 +2018,7 @@ var create_dashboard_layout = exports.create_dashboard_layout = function () {
|
|
|
2017
2018
|
fields
|
|
2018
2019
|
}, body, options);
|
|
2019
2020
|
});
|
|
2020
|
-
return function create_dashboard_layout(
|
|
2021
|
+
return function create_dashboard_layout(_x655, _x656, _x657, _x658) {
|
|
2021
2022
|
return _ref201.apply(this, arguments);
|
|
2022
2023
|
};
|
|
2023
2024
|
}();
|
|
@@ -2025,7 +2026,7 @@ var perform_data_action = exports.perform_data_action = function () {
|
|
|
2025
2026
|
var _ref202 = _asyncToGenerator(function* (sdk, body, options) {
|
|
2026
2027
|
return sdk.post('/data_actions', null, body, options);
|
|
2027
2028
|
});
|
|
2028
|
-
return function perform_data_action(
|
|
2029
|
+
return function perform_data_action(_x659, _x660, _x661) {
|
|
2029
2030
|
return _ref202.apply(this, arguments);
|
|
2030
2031
|
};
|
|
2031
2032
|
}();
|
|
@@ -2033,7 +2034,7 @@ var fetch_remote_data_action_form = exports.fetch_remote_data_action_form = func
|
|
|
2033
2034
|
var _ref203 = _asyncToGenerator(function* (sdk, body, options) {
|
|
2034
2035
|
return sdk.post('/data_actions/form', null, body, options);
|
|
2035
2036
|
});
|
|
2036
|
-
return function fetch_remote_data_action_form(
|
|
2037
|
+
return function fetch_remote_data_action_form(_x662, _x663, _x664) {
|
|
2037
2038
|
return _ref203.apply(this, arguments);
|
|
2038
2039
|
};
|
|
2039
2040
|
}();
|
|
@@ -2041,7 +2042,7 @@ var all_datagroups = exports.all_datagroups = function () {
|
|
|
2041
2042
|
var _ref204 = _asyncToGenerator(function* (sdk, options) {
|
|
2042
2043
|
return sdk.get('/datagroups', null, null, options);
|
|
2043
2044
|
});
|
|
2044
|
-
return function all_datagroups(
|
|
2045
|
+
return function all_datagroups(_x665, _x666) {
|
|
2045
2046
|
return _ref204.apply(this, arguments);
|
|
2046
2047
|
};
|
|
2047
2048
|
}();
|
|
@@ -2050,7 +2051,7 @@ var datagroup = exports.datagroup = function () {
|
|
|
2050
2051
|
datagroup_id = (0, _sdkRtl.encodeParam)(datagroup_id);
|
|
2051
2052
|
return sdk.get("/datagroups/".concat(datagroup_id), null, null, options);
|
|
2052
2053
|
});
|
|
2053
|
-
return function datagroup(
|
|
2054
|
+
return function datagroup(_x667, _x668, _x669) {
|
|
2054
2055
|
return _ref205.apply(this, arguments);
|
|
2055
2056
|
};
|
|
2056
2057
|
}();
|
|
@@ -2059,7 +2060,7 @@ var update_datagroup = exports.update_datagroup = function () {
|
|
|
2059
2060
|
datagroup_id = (0, _sdkRtl.encodeParam)(datagroup_id);
|
|
2060
2061
|
return sdk.patch("/datagroups/".concat(datagroup_id), null, body, options);
|
|
2061
2062
|
});
|
|
2062
|
-
return function update_datagroup(
|
|
2063
|
+
return function update_datagroup(_x670, _x671, _x672, _x673) {
|
|
2063
2064
|
return _ref206.apply(this, arguments);
|
|
2064
2065
|
};
|
|
2065
2066
|
}();
|
|
@@ -2071,7 +2072,7 @@ var graph_derived_tables_for_model = exports.graph_derived_tables_for_model = fu
|
|
|
2071
2072
|
color: request.color
|
|
2072
2073
|
}, null, options);
|
|
2073
2074
|
});
|
|
2074
|
-
return function graph_derived_tables_for_model(
|
|
2075
|
+
return function graph_derived_tables_for_model(_x674, _x675, _x676) {
|
|
2075
2076
|
return _ref207.apply(this, arguments);
|
|
2076
2077
|
};
|
|
2077
2078
|
}();
|
|
@@ -2083,7 +2084,7 @@ var graph_derived_tables_for_view = exports.graph_derived_tables_for_view = func
|
|
|
2083
2084
|
workspace: request.workspace
|
|
2084
2085
|
}, null, options);
|
|
2085
2086
|
});
|
|
2086
|
-
return function graph_derived_tables_for_view(
|
|
2087
|
+
return function graph_derived_tables_for_view(_x677, _x678, _x679) {
|
|
2087
2088
|
return _ref208.apply(this, arguments);
|
|
2088
2089
|
};
|
|
2089
2090
|
}();
|
|
@@ -2098,7 +2099,7 @@ var start_pdt_build = exports.start_pdt_build = function () {
|
|
|
2098
2099
|
source: request.source
|
|
2099
2100
|
}, null, options);
|
|
2100
2101
|
});
|
|
2101
|
-
return function start_pdt_build(
|
|
2102
|
+
return function start_pdt_build(_x680, _x681, _x682) {
|
|
2102
2103
|
return _ref209.apply(this, arguments);
|
|
2103
2104
|
};
|
|
2104
2105
|
}();
|
|
@@ -2107,7 +2108,7 @@ var check_pdt_build = exports.check_pdt_build = function () {
|
|
|
2107
2108
|
materialization_id = (0, _sdkRtl.encodeParam)(materialization_id);
|
|
2108
2109
|
return sdk.get("/derived_table/".concat(materialization_id, "/status"), null, null, options);
|
|
2109
2110
|
});
|
|
2110
|
-
return function check_pdt_build(
|
|
2111
|
+
return function check_pdt_build(_x683, _x684, _x685) {
|
|
2111
2112
|
return _ref210.apply(this, arguments);
|
|
2112
2113
|
};
|
|
2113
2114
|
}();
|
|
@@ -2118,7 +2119,7 @@ var stop_pdt_build = exports.stop_pdt_build = function () {
|
|
|
2118
2119
|
source
|
|
2119
2120
|
}, null, options);
|
|
2120
2121
|
});
|
|
2121
|
-
return function stop_pdt_build(
|
|
2122
|
+
return function stop_pdt_build(_x686, _x687, _x688, _x689) {
|
|
2122
2123
|
return _ref211.apply(this, arguments);
|
|
2123
2124
|
};
|
|
2124
2125
|
}();
|
|
@@ -2140,7 +2141,7 @@ var search_folders = exports.search_folders = function () {
|
|
|
2140
2141
|
is_users_root: request.is_users_root
|
|
2141
2142
|
}, null, options);
|
|
2142
2143
|
});
|
|
2143
|
-
return function search_folders(
|
|
2144
|
+
return function search_folders(_x690, _x691, _x692) {
|
|
2144
2145
|
return _ref212.apply(this, arguments);
|
|
2145
2146
|
};
|
|
2146
2147
|
}();
|
|
@@ -2151,7 +2152,7 @@ var folder = exports.folder = function () {
|
|
|
2151
2152
|
fields
|
|
2152
2153
|
}, null, options);
|
|
2153
2154
|
});
|
|
2154
|
-
return function folder(
|
|
2155
|
+
return function folder(_x693, _x694, _x695, _x696) {
|
|
2155
2156
|
return _ref213.apply(this, arguments);
|
|
2156
2157
|
};
|
|
2157
2158
|
}();
|
|
@@ -2160,7 +2161,7 @@ var update_folder = exports.update_folder = function () {
|
|
|
2160
2161
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
2161
2162
|
return sdk.patch("/folders/".concat(folder_id), null, body, options);
|
|
2162
2163
|
});
|
|
2163
|
-
return function update_folder(
|
|
2164
|
+
return function update_folder(_x697, _x698, _x699, _x700) {
|
|
2164
2165
|
return _ref214.apply(this, arguments);
|
|
2165
2166
|
};
|
|
2166
2167
|
}();
|
|
@@ -2169,7 +2170,7 @@ var delete_folder = exports.delete_folder = function () {
|
|
|
2169
2170
|
folder_id = (0, _sdkRtl.encodeParam)(folder_id);
|
|
2170
2171
|
return sdk.delete("/folders/".concat(folder_id), null, null, options);
|
|
2171
2172
|
});
|
|
2172
|
-
return function delete_folder(
|
|
2173
|
+
return function delete_folder(_x701, _x702, _x703) {
|
|
2173
2174
|
return _ref215.apply(this, arguments);
|
|
2174
2175
|
};
|
|
2175
2176
|
}();
|
|
@@ -2179,7 +2180,7 @@ var all_folders = exports.all_folders = function () {
|
|
|
2179
2180
|
fields
|
|
2180
2181
|
}, null, options);
|
|
2181
2182
|
});
|
|
2182
|
-
return function all_folders(
|
|
2183
|
+
return function all_folders(_x704, _x705, _x706) {
|
|
2183
2184
|
return _ref216.apply(this, arguments);
|
|
2184
2185
|
};
|
|
2185
2186
|
}();
|
|
@@ -2187,7 +2188,7 @@ var create_folder = exports.create_folder = function () {
|
|
|
2187
2188
|
var _ref217 = _asyncToGenerator(function* (sdk, body, options) {
|
|
2188
2189
|
return sdk.post('/folders', null, body, options);
|
|
2189
2190
|
});
|
|
2190
|
-
return function create_folder(
|
|
2191
|
+
return function create_folder(_x707, _x708, _x709) {
|
|
2191
2192
|
return _ref217.apply(this, arguments);
|
|
2192
2193
|
};
|
|
2193
2194
|
}();
|
|
@@ -2203,7 +2204,7 @@ var folder_children = exports.folder_children = function () {
|
|
|
2203
2204
|
sorts: request.sorts
|
|
2204
2205
|
}, null, options);
|
|
2205
2206
|
});
|
|
2206
|
-
return function folder_children(
|
|
2207
|
+
return function folder_children(_x710, _x711, _x712) {
|
|
2207
2208
|
return _ref218.apply(this, arguments);
|
|
2208
2209
|
};
|
|
2209
2210
|
}();
|
|
@@ -2216,7 +2217,7 @@ var folder_children_search = exports.folder_children_search = function () {
|
|
|
2216
2217
|
name: request.name
|
|
2217
2218
|
}, null, options);
|
|
2218
2219
|
});
|
|
2219
|
-
return function folder_children_search(
|
|
2220
|
+
return function folder_children_search(_x713, _x714, _x715) {
|
|
2220
2221
|
return _ref219.apply(this, arguments);
|
|
2221
2222
|
};
|
|
2222
2223
|
}();
|
|
@@ -2227,7 +2228,7 @@ var folder_parent = exports.folder_parent = function () {
|
|
|
2227
2228
|
fields
|
|
2228
2229
|
}, null, options);
|
|
2229
2230
|
});
|
|
2230
|
-
return function folder_parent(
|
|
2231
|
+
return function folder_parent(_x716, _x717, _x718, _x719) {
|
|
2231
2232
|
return _ref220.apply(this, arguments);
|
|
2232
2233
|
};
|
|
2233
2234
|
}();
|
|
@@ -2238,7 +2239,7 @@ var folder_ancestors = exports.folder_ancestors = function () {
|
|
|
2238
2239
|
fields
|
|
2239
2240
|
}, null, options);
|
|
2240
2241
|
});
|
|
2241
|
-
return function folder_ancestors(
|
|
2242
|
+
return function folder_ancestors(_x720, _x721, _x722, _x723) {
|
|
2242
2243
|
return _ref221.apply(this, arguments);
|
|
2243
2244
|
};
|
|
2244
2245
|
}();
|
|
@@ -2249,7 +2250,7 @@ var folder_looks = exports.folder_looks = function () {
|
|
|
2249
2250
|
fields
|
|
2250
2251
|
}, null, options);
|
|
2251
2252
|
});
|
|
2252
|
-
return function folder_looks(
|
|
2253
|
+
return function folder_looks(_x724, _x725, _x726, _x727) {
|
|
2253
2254
|
return _ref222.apply(this, arguments);
|
|
2254
2255
|
};
|
|
2255
2256
|
}();
|
|
@@ -2260,7 +2261,7 @@ var folder_dashboards = exports.folder_dashboards = function () {
|
|
|
2260
2261
|
fields
|
|
2261
2262
|
}, null, options);
|
|
2262
2263
|
});
|
|
2263
|
-
return function folder_dashboards(
|
|
2264
|
+
return function folder_dashboards(_x728, _x729, _x730, _x731) {
|
|
2264
2265
|
return _ref223.apply(this, arguments);
|
|
2265
2266
|
};
|
|
2266
2267
|
}();
|
|
@@ -2278,7 +2279,7 @@ var all_groups = exports.all_groups = function () {
|
|
|
2278
2279
|
can_add_to_content_metadata: request.can_add_to_content_metadata
|
|
2279
2280
|
}, null, options);
|
|
2280
2281
|
});
|
|
2281
|
-
return function all_groups(
|
|
2282
|
+
return function all_groups(_x732, _x733, _x734) {
|
|
2282
2283
|
return _ref224.apply(this, arguments);
|
|
2283
2284
|
};
|
|
2284
2285
|
}();
|
|
@@ -2288,7 +2289,7 @@ var create_group = exports.create_group = function () {
|
|
|
2288
2289
|
fields
|
|
2289
2290
|
}, body, options);
|
|
2290
2291
|
});
|
|
2291
|
-
return function create_group(
|
|
2292
|
+
return function create_group(_x735, _x736, _x737, _x738) {
|
|
2292
2293
|
return _ref225.apply(this, arguments);
|
|
2293
2294
|
};
|
|
2294
2295
|
}();
|
|
@@ -2307,7 +2308,7 @@ var search_groups = exports.search_groups = function () {
|
|
|
2307
2308
|
externally_orphaned: request.externally_orphaned
|
|
2308
2309
|
}, null, options);
|
|
2309
2310
|
});
|
|
2310
|
-
return function search_groups(
|
|
2311
|
+
return function search_groups(_x739, _x740, _x741) {
|
|
2311
2312
|
return _ref226.apply(this, arguments);
|
|
2312
2313
|
};
|
|
2313
2314
|
}();
|
|
@@ -2326,7 +2327,7 @@ var search_groups_with_roles = exports.search_groups_with_roles = function () {
|
|
|
2326
2327
|
externally_orphaned: request.externally_orphaned
|
|
2327
2328
|
}, null, options);
|
|
2328
2329
|
});
|
|
2329
|
-
return function search_groups_with_roles(
|
|
2330
|
+
return function search_groups_with_roles(_x742, _x743, _x744) {
|
|
2330
2331
|
return _ref227.apply(this, arguments);
|
|
2331
2332
|
};
|
|
2332
2333
|
}();
|
|
@@ -2345,7 +2346,7 @@ var search_groups_with_hierarchy = exports.search_groups_with_hierarchy = functi
|
|
|
2345
2346
|
externally_orphaned: request.externally_orphaned
|
|
2346
2347
|
}, null, options);
|
|
2347
2348
|
});
|
|
2348
|
-
return function search_groups_with_hierarchy(
|
|
2349
|
+
return function search_groups_with_hierarchy(_x745, _x746, _x747) {
|
|
2349
2350
|
return _ref228.apply(this, arguments);
|
|
2350
2351
|
};
|
|
2351
2352
|
}();
|
|
@@ -2356,7 +2357,7 @@ var group = exports.group = function () {
|
|
|
2356
2357
|
fields
|
|
2357
2358
|
}, null, options);
|
|
2358
2359
|
});
|
|
2359
|
-
return function group(
|
|
2360
|
+
return function group(_x748, _x749, _x750, _x751) {
|
|
2360
2361
|
return _ref229.apply(this, arguments);
|
|
2361
2362
|
};
|
|
2362
2363
|
}();
|
|
@@ -2367,7 +2368,7 @@ var update_group = exports.update_group = function () {
|
|
|
2367
2368
|
fields
|
|
2368
2369
|
}, body, options);
|
|
2369
2370
|
});
|
|
2370
|
-
return function update_group(
|
|
2371
|
+
return function update_group(_x752, _x753, _x754, _x755, _x756) {
|
|
2371
2372
|
return _ref230.apply(this, arguments);
|
|
2372
2373
|
};
|
|
2373
2374
|
}();
|
|
@@ -2376,7 +2377,7 @@ var delete_group = exports.delete_group = function () {
|
|
|
2376
2377
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2377
2378
|
return sdk.delete("/groups/".concat(group_id), null, null, options);
|
|
2378
2379
|
});
|
|
2379
|
-
return function delete_group(
|
|
2380
|
+
return function delete_group(_x757, _x758, _x759) {
|
|
2380
2381
|
return _ref231.apply(this, arguments);
|
|
2381
2382
|
};
|
|
2382
2383
|
}();
|
|
@@ -2387,7 +2388,7 @@ var all_group_groups = exports.all_group_groups = function () {
|
|
|
2387
2388
|
fields
|
|
2388
2389
|
}, null, options);
|
|
2389
2390
|
});
|
|
2390
|
-
return function all_group_groups(
|
|
2391
|
+
return function all_group_groups(_x760, _x761, _x762, _x763) {
|
|
2391
2392
|
return _ref232.apply(this, arguments);
|
|
2392
2393
|
};
|
|
2393
2394
|
}();
|
|
@@ -2396,7 +2397,7 @@ var add_group_group = exports.add_group_group = function () {
|
|
|
2396
2397
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2397
2398
|
return sdk.post("/groups/".concat(group_id, "/groups"), null, body, options);
|
|
2398
2399
|
});
|
|
2399
|
-
return function add_group_group(
|
|
2400
|
+
return function add_group_group(_x764, _x765, _x766, _x767) {
|
|
2400
2401
|
return _ref233.apply(this, arguments);
|
|
2401
2402
|
};
|
|
2402
2403
|
}();
|
|
@@ -2412,7 +2413,7 @@ var all_group_users = exports.all_group_users = function () {
|
|
|
2412
2413
|
sorts: request.sorts
|
|
2413
2414
|
}, null, options);
|
|
2414
2415
|
});
|
|
2415
|
-
return function all_group_users(
|
|
2416
|
+
return function all_group_users(_x768, _x769, _x770) {
|
|
2416
2417
|
return _ref234.apply(this, arguments);
|
|
2417
2418
|
};
|
|
2418
2419
|
}();
|
|
@@ -2421,7 +2422,7 @@ var add_group_user = exports.add_group_user = function () {
|
|
|
2421
2422
|
group_id = (0, _sdkRtl.encodeParam)(group_id);
|
|
2422
2423
|
return sdk.post("/groups/".concat(group_id, "/users"), null, body, options);
|
|
2423
2424
|
});
|
|
2424
|
-
return function add_group_user(
|
|
2425
|
+
return function add_group_user(_x771, _x772, _x773, _x774) {
|
|
2425
2426
|
return _ref235.apply(this, arguments);
|
|
2426
2427
|
};
|
|
2427
2428
|
}();
|
|
@@ -2431,7 +2432,7 @@ var delete_group_user = exports.delete_group_user = function () {
|
|
|
2431
2432
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
2432
2433
|
return sdk.delete("/groups/".concat(group_id, "/users/").concat(user_id), null, null, options);
|
|
2433
2434
|
});
|
|
2434
|
-
return function delete_group_user(
|
|
2435
|
+
return function delete_group_user(_x775, _x776, _x777, _x778) {
|
|
2435
2436
|
return _ref236.apply(this, arguments);
|
|
2436
2437
|
};
|
|
2437
2438
|
}();
|
|
@@ -2441,7 +2442,7 @@ var delete_group_from_group = exports.delete_group_from_group = function () {
|
|
|
2441
2442
|
deleting_group_id = (0, _sdkRtl.encodeParam)(deleting_group_id);
|
|
2442
2443
|
return sdk.delete("/groups/".concat(group_id, "/groups/").concat(deleting_group_id), null, null, options);
|
|
2443
2444
|
});
|
|
2444
|
-
return function delete_group_from_group(
|
|
2445
|
+
return function delete_group_from_group(_x779, _x780, _x781, _x782) {
|
|
2445
2446
|
return _ref237.apply(this, arguments);
|
|
2446
2447
|
};
|
|
2447
2448
|
}();
|
|
@@ -2451,7 +2452,7 @@ var update_user_attribute_group_value = exports.update_user_attribute_group_valu
|
|
|
2451
2452
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
2452
2453
|
return sdk.patch("/groups/".concat(group_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
|
|
2453
2454
|
});
|
|
2454
|
-
return function update_user_attribute_group_value(
|
|
2455
|
+
return function update_user_attribute_group_value(_x783, _x784, _x785, _x786, _x787) {
|
|
2455
2456
|
return _ref238.apply(this, arguments);
|
|
2456
2457
|
};
|
|
2457
2458
|
}();
|
|
@@ -2461,7 +2462,7 @@ var delete_user_attribute_group_value = exports.delete_user_attribute_group_valu
|
|
|
2461
2462
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
2462
2463
|
return sdk.delete("/groups/".concat(group_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
|
|
2463
2464
|
});
|
|
2464
|
-
return function delete_user_attribute_group_value(
|
|
2465
|
+
return function delete_user_attribute_group_value(_x788, _x789, _x790, _x791) {
|
|
2465
2466
|
return _ref239.apply(this, arguments);
|
|
2466
2467
|
};
|
|
2467
2468
|
}();
|
|
@@ -2471,7 +2472,7 @@ var all_primary_homepage_sections = exports.all_primary_homepage_sections = func
|
|
|
2471
2472
|
fields
|
|
2472
2473
|
}, null, options);
|
|
2473
2474
|
});
|
|
2474
|
-
return function all_primary_homepage_sections(
|
|
2475
|
+
return function all_primary_homepage_sections(_x792, _x793, _x794) {
|
|
2475
2476
|
return _ref240.apply(this, arguments);
|
|
2476
2477
|
};
|
|
2477
2478
|
}();
|
|
@@ -2481,7 +2482,7 @@ var all_integration_hubs = exports.all_integration_hubs = function () {
|
|
|
2481
2482
|
fields
|
|
2482
2483
|
}, null, options);
|
|
2483
2484
|
});
|
|
2484
|
-
return function all_integration_hubs(
|
|
2485
|
+
return function all_integration_hubs(_x795, _x796, _x797) {
|
|
2485
2486
|
return _ref241.apply(this, arguments);
|
|
2486
2487
|
};
|
|
2487
2488
|
}();
|
|
@@ -2491,7 +2492,7 @@ var create_integration_hub = exports.create_integration_hub = function () {
|
|
|
2491
2492
|
fields
|
|
2492
2493
|
}, body, options);
|
|
2493
2494
|
});
|
|
2494
|
-
return function create_integration_hub(
|
|
2495
|
+
return function create_integration_hub(_x798, _x799, _x800, _x801) {
|
|
2495
2496
|
return _ref242.apply(this, arguments);
|
|
2496
2497
|
};
|
|
2497
2498
|
}();
|
|
@@ -2502,7 +2503,7 @@ var integration_hub = exports.integration_hub = function () {
|
|
|
2502
2503
|
fields
|
|
2503
2504
|
}, null, options);
|
|
2504
2505
|
});
|
|
2505
|
-
return function integration_hub(
|
|
2506
|
+
return function integration_hub(_x802, _x803, _x804, _x805) {
|
|
2506
2507
|
return _ref243.apply(this, arguments);
|
|
2507
2508
|
};
|
|
2508
2509
|
}();
|
|
@@ -2513,7 +2514,7 @@ var update_integration_hub = exports.update_integration_hub = function () {
|
|
|
2513
2514
|
fields
|
|
2514
2515
|
}, body, options);
|
|
2515
2516
|
});
|
|
2516
|
-
return function update_integration_hub(
|
|
2517
|
+
return function update_integration_hub(_x806, _x807, _x808, _x809, _x810) {
|
|
2517
2518
|
return _ref244.apply(this, arguments);
|
|
2518
2519
|
};
|
|
2519
2520
|
}();
|
|
@@ -2522,7 +2523,7 @@ var delete_integration_hub = exports.delete_integration_hub = function () {
|
|
|
2522
2523
|
integration_hub_id = (0, _sdkRtl.encodeParam)(integration_hub_id);
|
|
2523
2524
|
return sdk.delete("/integration_hubs/".concat(integration_hub_id), null, null, options);
|
|
2524
2525
|
});
|
|
2525
|
-
return function delete_integration_hub(
|
|
2526
|
+
return function delete_integration_hub(_x811, _x812, _x813) {
|
|
2526
2527
|
return _ref245.apply(this, arguments);
|
|
2527
2528
|
};
|
|
2528
2529
|
}();
|
|
@@ -2531,7 +2532,7 @@ var accept_integration_hub_legal_agreement = exports.accept_integration_hub_lega
|
|
|
2531
2532
|
integration_hub_id = (0, _sdkRtl.encodeParam)(integration_hub_id);
|
|
2532
2533
|
return sdk.post("/integration_hubs/".concat(integration_hub_id, "/accept_legal_agreement"), null, null, options);
|
|
2533
2534
|
});
|
|
2534
|
-
return function accept_integration_hub_legal_agreement(
|
|
2535
|
+
return function accept_integration_hub_legal_agreement(_x814, _x815, _x816) {
|
|
2535
2536
|
return _ref246.apply(this, arguments);
|
|
2536
2537
|
};
|
|
2537
2538
|
}();
|
|
@@ -2542,7 +2543,7 @@ var all_integrations = exports.all_integrations = function () {
|
|
|
2542
2543
|
integration_hub_id: request.integration_hub_id
|
|
2543
2544
|
}, null, options);
|
|
2544
2545
|
});
|
|
2545
|
-
return function all_integrations(
|
|
2546
|
+
return function all_integrations(_x817, _x818, _x819) {
|
|
2546
2547
|
return _ref247.apply(this, arguments);
|
|
2547
2548
|
};
|
|
2548
2549
|
}();
|
|
@@ -2553,7 +2554,7 @@ var integration = exports.integration = function () {
|
|
|
2553
2554
|
fields
|
|
2554
2555
|
}, null, options);
|
|
2555
2556
|
});
|
|
2556
|
-
return function integration(
|
|
2557
|
+
return function integration(_x820, _x821, _x822, _x823) {
|
|
2557
2558
|
return _ref248.apply(this, arguments);
|
|
2558
2559
|
};
|
|
2559
2560
|
}();
|
|
@@ -2564,7 +2565,7 @@ var update_integration = exports.update_integration = function () {
|
|
|
2564
2565
|
fields
|
|
2565
2566
|
}, body, options);
|
|
2566
2567
|
});
|
|
2567
|
-
return function update_integration(
|
|
2568
|
+
return function update_integration(_x824, _x825, _x826, _x827, _x828) {
|
|
2568
2569
|
return _ref249.apply(this, arguments);
|
|
2569
2570
|
};
|
|
2570
2571
|
}();
|
|
@@ -2573,7 +2574,7 @@ var fetch_integration_form = exports.fetch_integration_form = function () {
|
|
|
2573
2574
|
integration_id = (0, _sdkRtl.encodeParam)(integration_id);
|
|
2574
2575
|
return sdk.post("/integrations/".concat(integration_id, "/form"), null, body, options);
|
|
2575
2576
|
});
|
|
2576
|
-
return function fetch_integration_form(
|
|
2577
|
+
return function fetch_integration_form(_x829, _x830, _x831, _x832) {
|
|
2577
2578
|
return _ref250.apply(this, arguments);
|
|
2578
2579
|
};
|
|
2579
2580
|
}();
|
|
@@ -2582,7 +2583,7 @@ var test_integration = exports.test_integration = function () {
|
|
|
2582
2583
|
integration_id = (0, _sdkRtl.encodeParam)(integration_id);
|
|
2583
2584
|
return sdk.post("/integrations/".concat(integration_id, "/test"), null, null, options);
|
|
2584
2585
|
});
|
|
2585
|
-
return function test_integration(
|
|
2586
|
+
return function test_integration(_x833, _x834, _x835) {
|
|
2586
2587
|
return _ref251.apply(this, arguments);
|
|
2587
2588
|
};
|
|
2588
2589
|
}();
|
|
@@ -2592,7 +2593,7 @@ var all_looks = exports.all_looks = function () {
|
|
|
2592
2593
|
fields
|
|
2593
2594
|
}, null, options);
|
|
2594
2595
|
});
|
|
2595
|
-
return function all_looks(
|
|
2596
|
+
return function all_looks(_x836, _x837, _x838) {
|
|
2596
2597
|
return _ref252.apply(this, arguments);
|
|
2597
2598
|
};
|
|
2598
2599
|
}();
|
|
@@ -2602,7 +2603,7 @@ var create_look = exports.create_look = function () {
|
|
|
2602
2603
|
fields
|
|
2603
2604
|
}, body, options);
|
|
2604
2605
|
});
|
|
2605
|
-
return function create_look(
|
|
2606
|
+
return function create_look(_x839, _x840, _x841, _x842) {
|
|
2606
2607
|
return _ref253.apply(this, arguments);
|
|
2607
2608
|
};
|
|
2608
2609
|
}();
|
|
@@ -2629,7 +2630,7 @@ var search_looks = exports.search_looks = function () {
|
|
|
2629
2630
|
filter_or: request.filter_or
|
|
2630
2631
|
}, null, options);
|
|
2631
2632
|
});
|
|
2632
|
-
return function search_looks(
|
|
2633
|
+
return function search_looks(_x843, _x844, _x845) {
|
|
2633
2634
|
return _ref254.apply(this, arguments);
|
|
2634
2635
|
};
|
|
2635
2636
|
}();
|
|
@@ -2640,7 +2641,7 @@ var look = exports.look = function () {
|
|
|
2640
2641
|
fields
|
|
2641
2642
|
}, null, options);
|
|
2642
2643
|
});
|
|
2643
|
-
return function look(
|
|
2644
|
+
return function look(_x846, _x847, _x848, _x849) {
|
|
2644
2645
|
return _ref255.apply(this, arguments);
|
|
2645
2646
|
};
|
|
2646
2647
|
}();
|
|
@@ -2651,7 +2652,7 @@ var update_look = exports.update_look = function () {
|
|
|
2651
2652
|
fields
|
|
2652
2653
|
}, body, options);
|
|
2653
2654
|
});
|
|
2654
|
-
return function update_look(
|
|
2655
|
+
return function update_look(_x850, _x851, _x852, _x853, _x854) {
|
|
2655
2656
|
return _ref256.apply(this, arguments);
|
|
2656
2657
|
};
|
|
2657
2658
|
}();
|
|
@@ -2660,7 +2661,7 @@ var delete_look = exports.delete_look = function () {
|
|
|
2660
2661
|
look_id = (0, _sdkRtl.encodeParam)(look_id);
|
|
2661
2662
|
return sdk.delete("/looks/".concat(look_id), null, null, options);
|
|
2662
2663
|
});
|
|
2663
|
-
return function delete_look(
|
|
2664
|
+
return function delete_look(_x855, _x856, _x857) {
|
|
2664
2665
|
return _ref257.apply(this, arguments);
|
|
2665
2666
|
};
|
|
2666
2667
|
}();
|
|
@@ -2683,7 +2684,7 @@ var run_look = exports.run_look = function () {
|
|
|
2683
2684
|
server_table_calcs: request.server_table_calcs
|
|
2684
2685
|
}, null, options);
|
|
2685
2686
|
});
|
|
2686
|
-
return function run_look(
|
|
2687
|
+
return function run_look(_x858, _x859, _x860) {
|
|
2687
2688
|
return _ref258.apply(this, arguments);
|
|
2688
2689
|
};
|
|
2689
2690
|
}();
|
|
@@ -2694,7 +2695,7 @@ var copy_look = exports.copy_look = function () {
|
|
|
2694
2695
|
folder_id
|
|
2695
2696
|
}, null, options);
|
|
2696
2697
|
});
|
|
2697
|
-
return function copy_look(
|
|
2698
|
+
return function copy_look(_x861, _x862, _x863, _x864) {
|
|
2698
2699
|
return _ref259.apply(this, arguments);
|
|
2699
2700
|
};
|
|
2700
2701
|
}();
|
|
@@ -2705,7 +2706,7 @@ var move_look = exports.move_look = function () {
|
|
|
2705
2706
|
folder_id
|
|
2706
2707
|
}, null, options);
|
|
2707
2708
|
});
|
|
2708
|
-
return function move_look(
|
|
2709
|
+
return function move_look(_x865, _x866, _x867, _x868) {
|
|
2709
2710
|
return _ref260.apply(this, arguments);
|
|
2710
2711
|
};
|
|
2711
2712
|
}();
|
|
@@ -2720,7 +2721,7 @@ var all_lookml_models = exports.all_lookml_models = function () {
|
|
|
2720
2721
|
include_internal: request.include_internal
|
|
2721
2722
|
}, null, options);
|
|
2722
2723
|
});
|
|
2723
|
-
return function all_lookml_models(
|
|
2724
|
+
return function all_lookml_models(_x869, _x870, _x871) {
|
|
2724
2725
|
return _ref261.apply(this, arguments);
|
|
2725
2726
|
};
|
|
2726
2727
|
}();
|
|
@@ -2728,7 +2729,7 @@ var create_lookml_model = exports.create_lookml_model = function () {
|
|
|
2728
2729
|
var _ref262 = _asyncToGenerator(function* (sdk, body, options) {
|
|
2729
2730
|
return sdk.post('/lookml_models', null, body, options);
|
|
2730
2731
|
});
|
|
2731
|
-
return function create_lookml_model(
|
|
2732
|
+
return function create_lookml_model(_x872, _x873, _x874) {
|
|
2732
2733
|
return _ref262.apply(this, arguments);
|
|
2733
2734
|
};
|
|
2734
2735
|
}();
|
|
@@ -2739,7 +2740,7 @@ var lookml_model = exports.lookml_model = function () {
|
|
|
2739
2740
|
fields
|
|
2740
2741
|
}, null, options);
|
|
2741
2742
|
});
|
|
2742
|
-
return function lookml_model(
|
|
2743
|
+
return function lookml_model(_x875, _x876, _x877, _x878) {
|
|
2743
2744
|
return _ref263.apply(this, arguments);
|
|
2744
2745
|
};
|
|
2745
2746
|
}();
|
|
@@ -2748,7 +2749,7 @@ var update_lookml_model = exports.update_lookml_model = function () {
|
|
|
2748
2749
|
lookml_model_name = (0, _sdkRtl.encodeParam)(lookml_model_name);
|
|
2749
2750
|
return sdk.patch("/lookml_models/".concat(lookml_model_name), null, body, options);
|
|
2750
2751
|
});
|
|
2751
|
-
return function update_lookml_model(
|
|
2752
|
+
return function update_lookml_model(_x879, _x880, _x881, _x882) {
|
|
2752
2753
|
return _ref264.apply(this, arguments);
|
|
2753
2754
|
};
|
|
2754
2755
|
}();
|
|
@@ -2757,7 +2758,7 @@ var delete_lookml_model = exports.delete_lookml_model = function () {
|
|
|
2757
2758
|
lookml_model_name = (0, _sdkRtl.encodeParam)(lookml_model_name);
|
|
2758
2759
|
return sdk.delete("/lookml_models/".concat(lookml_model_name), null, null, options);
|
|
2759
2760
|
});
|
|
2760
|
-
return function delete_lookml_model(
|
|
2761
|
+
return function delete_lookml_model(_x883, _x884, _x885) {
|
|
2761
2762
|
return _ref265.apply(this, arguments);
|
|
2762
2763
|
};
|
|
2763
2764
|
}();
|
|
@@ -2770,7 +2771,7 @@ var lookml_model_explore = exports.lookml_model_explore = function () {
|
|
|
2770
2771
|
add_drills_metadata: request.add_drills_metadata
|
|
2771
2772
|
}, null, options);
|
|
2772
2773
|
});
|
|
2773
|
-
return function lookml_model_explore(
|
|
2774
|
+
return function lookml_model_explore(_x886, _x887, _x888) {
|
|
2774
2775
|
return _ref266.apply(this, arguments);
|
|
2775
2776
|
};
|
|
2776
2777
|
}();
|
|
@@ -2784,7 +2785,7 @@ var model_fieldname_suggestions = exports.model_fieldname_suggestions = function
|
|
|
2784
2785
|
filters: request.filters
|
|
2785
2786
|
}, null, options);
|
|
2786
2787
|
});
|
|
2787
|
-
return function model_fieldname_suggestions(
|
|
2788
|
+
return function model_fieldname_suggestions(_x889, _x890, _x891) {
|
|
2788
2789
|
return _ref267.apply(this, arguments);
|
|
2789
2790
|
};
|
|
2790
2791
|
}();
|
|
@@ -2793,7 +2794,7 @@ var get_model = exports.get_model = function () {
|
|
|
2793
2794
|
model_name = (0, _sdkRtl.encodeParam)(model_name);
|
|
2794
2795
|
return sdk.get("/models/".concat(model_name), null, null, options);
|
|
2795
2796
|
});
|
|
2796
|
-
return function get_model(
|
|
2797
|
+
return function get_model(_x892, _x893, _x894) {
|
|
2797
2798
|
return _ref268.apply(this, arguments);
|
|
2798
2799
|
};
|
|
2799
2800
|
}();
|
|
@@ -2802,7 +2803,7 @@ var connection_databases = exports.connection_databases = function () {
|
|
|
2802
2803
|
connection_name = (0, _sdkRtl.encodeParam)(connection_name);
|
|
2803
2804
|
return sdk.get("/connections/".concat(connection_name, "/databases"), null, null, options);
|
|
2804
2805
|
});
|
|
2805
|
-
return function connection_databases(
|
|
2806
|
+
return function connection_databases(_x895, _x896, _x897) {
|
|
2806
2807
|
return _ref269.apply(this, arguments);
|
|
2807
2808
|
};
|
|
2808
2809
|
}();
|
|
@@ -2813,7 +2814,7 @@ var connection_features = exports.connection_features = function () {
|
|
|
2813
2814
|
fields
|
|
2814
2815
|
}, null, options);
|
|
2815
2816
|
});
|
|
2816
|
-
return function connection_features(
|
|
2817
|
+
return function connection_features(_x898, _x899, _x900, _x901) {
|
|
2817
2818
|
return _ref270.apply(this, arguments);
|
|
2818
2819
|
};
|
|
2819
2820
|
}();
|
|
@@ -2826,7 +2827,7 @@ var connection_schemas = exports.connection_schemas = function () {
|
|
|
2826
2827
|
fields: request.fields
|
|
2827
2828
|
}, null, options);
|
|
2828
2829
|
});
|
|
2829
|
-
return function connection_schemas(
|
|
2830
|
+
return function connection_schemas(_x902, _x903, _x904) {
|
|
2830
2831
|
return _ref271.apply(this, arguments);
|
|
2831
2832
|
};
|
|
2832
2833
|
}();
|
|
@@ -2842,7 +2843,7 @@ var connection_tables = exports.connection_tables = function () {
|
|
|
2842
2843
|
table_limit: request.table_limit
|
|
2843
2844
|
}, null, options);
|
|
2844
2845
|
});
|
|
2845
|
-
return function connection_tables(
|
|
2846
|
+
return function connection_tables(_x905, _x906, _x907) {
|
|
2846
2847
|
return _ref272.apply(this, arguments);
|
|
2847
2848
|
};
|
|
2848
2849
|
}();
|
|
@@ -2858,7 +2859,7 @@ var connection_columns = exports.connection_columns = function () {
|
|
|
2858
2859
|
fields: request.fields
|
|
2859
2860
|
}, null, options);
|
|
2860
2861
|
});
|
|
2861
|
-
return function connection_columns(
|
|
2862
|
+
return function connection_columns(_x908, _x909, _x910) {
|
|
2862
2863
|
return _ref273.apply(this, arguments);
|
|
2863
2864
|
};
|
|
2864
2865
|
}();
|
|
@@ -2870,7 +2871,7 @@ var connection_search_columns = exports.connection_search_columns = function ()
|
|
|
2870
2871
|
fields: request.fields
|
|
2871
2872
|
}, null, options);
|
|
2872
2873
|
});
|
|
2873
|
-
return function connection_search_columns(
|
|
2874
|
+
return function connection_search_columns(_x911, _x912, _x913) {
|
|
2874
2875
|
return _ref274.apply(this, arguments);
|
|
2875
2876
|
};
|
|
2876
2877
|
}();
|
|
@@ -2881,252 +2882,275 @@ var connection_cost_estimate = exports.connection_cost_estimate = function () {
|
|
|
2881
2882
|
fields
|
|
2882
2883
|
}, body, options);
|
|
2883
2884
|
});
|
|
2884
|
-
return function connection_cost_estimate(
|
|
2885
|
+
return function connection_cost_estimate(_x914, _x915, _x916, _x917, _x918) {
|
|
2885
2886
|
return _ref275.apply(this, arguments);
|
|
2886
2887
|
};
|
|
2887
2888
|
}();
|
|
2889
|
+
var get_ci_run = exports.get_ci_run = function () {
|
|
2890
|
+
var _ref276 = _asyncToGenerator(function* (sdk, project_id, run_id, fields, options) {
|
|
2891
|
+
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2892
|
+
run_id = (0, _sdkRtl.encodeParam)(run_id);
|
|
2893
|
+
return sdk.get("/projects/".concat(project_id, "/ci/runs/").concat(run_id), {
|
|
2894
|
+
fields
|
|
2895
|
+
}, null, options);
|
|
2896
|
+
});
|
|
2897
|
+
return function get_ci_run(_x919, _x920, _x921, _x922, _x923) {
|
|
2898
|
+
return _ref276.apply(this, arguments);
|
|
2899
|
+
};
|
|
2900
|
+
}();
|
|
2901
|
+
var create_ci_run = exports.create_ci_run = function () {
|
|
2902
|
+
var _ref277 = _asyncToGenerator(function* (sdk, project_id, body, fields, options) {
|
|
2903
|
+
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2904
|
+
return sdk.post("/projects/".concat(project_id, "/ci/run"), {
|
|
2905
|
+
fields
|
|
2906
|
+
}, body, options);
|
|
2907
|
+
});
|
|
2908
|
+
return function create_ci_run(_x924, _x925, _x926, _x927, _x928) {
|
|
2909
|
+
return _ref277.apply(this, arguments);
|
|
2910
|
+
};
|
|
2911
|
+
}();
|
|
2888
2912
|
var lock_all = exports.lock_all = function () {
|
|
2889
|
-
var
|
|
2913
|
+
var _ref278 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
2890
2914
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2891
2915
|
return sdk.post("/projects/".concat(project_id, "/manifest/lock_all"), {
|
|
2892
2916
|
fields
|
|
2893
2917
|
}, null, options);
|
|
2894
2918
|
});
|
|
2895
|
-
return function lock_all(
|
|
2896
|
-
return
|
|
2919
|
+
return function lock_all(_x929, _x930, _x931, _x932) {
|
|
2920
|
+
return _ref278.apply(this, arguments);
|
|
2897
2921
|
};
|
|
2898
2922
|
}();
|
|
2899
2923
|
var all_git_branches = exports.all_git_branches = function () {
|
|
2900
|
-
var
|
|
2924
|
+
var _ref279 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2901
2925
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2902
2926
|
return sdk.get("/projects/".concat(project_id, "/git_branches"), null, null, options);
|
|
2903
2927
|
});
|
|
2904
|
-
return function all_git_branches(
|
|
2905
|
-
return
|
|
2928
|
+
return function all_git_branches(_x933, _x934, _x935) {
|
|
2929
|
+
return _ref279.apply(this, arguments);
|
|
2906
2930
|
};
|
|
2907
2931
|
}();
|
|
2908
2932
|
var git_branch = exports.git_branch = function () {
|
|
2909
|
-
var
|
|
2933
|
+
var _ref280 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2910
2934
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2911
2935
|
return sdk.get("/projects/".concat(project_id, "/git_branch"), null, null, options);
|
|
2912
2936
|
});
|
|
2913
|
-
return function git_branch(
|
|
2914
|
-
return
|
|
2937
|
+
return function git_branch(_x936, _x937, _x938) {
|
|
2938
|
+
return _ref280.apply(this, arguments);
|
|
2915
2939
|
};
|
|
2916
2940
|
}();
|
|
2917
2941
|
var update_git_branch = exports.update_git_branch = function () {
|
|
2918
|
-
var
|
|
2942
|
+
var _ref281 = _asyncToGenerator(function* (sdk, project_id, body, options) {
|
|
2919
2943
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2920
2944
|
return sdk.put("/projects/".concat(project_id, "/git_branch"), null, body, options);
|
|
2921
2945
|
});
|
|
2922
|
-
return function update_git_branch(
|
|
2923
|
-
return
|
|
2946
|
+
return function update_git_branch(_x939, _x940, _x941, _x942) {
|
|
2947
|
+
return _ref281.apply(this, arguments);
|
|
2924
2948
|
};
|
|
2925
2949
|
}();
|
|
2926
2950
|
var create_git_branch = exports.create_git_branch = function () {
|
|
2927
|
-
var
|
|
2951
|
+
var _ref282 = _asyncToGenerator(function* (sdk, project_id, body, options) {
|
|
2928
2952
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2929
2953
|
return sdk.post("/projects/".concat(project_id, "/git_branch"), null, body, options);
|
|
2930
2954
|
});
|
|
2931
|
-
return function create_git_branch(
|
|
2932
|
-
return
|
|
2955
|
+
return function create_git_branch(_x943, _x944, _x945, _x946) {
|
|
2956
|
+
return _ref282.apply(this, arguments);
|
|
2933
2957
|
};
|
|
2934
2958
|
}();
|
|
2935
2959
|
var find_git_branch = exports.find_git_branch = function () {
|
|
2936
|
-
var
|
|
2960
|
+
var _ref283 = _asyncToGenerator(function* (sdk, project_id, branch_name, options) {
|
|
2937
2961
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2938
2962
|
branch_name = (0, _sdkRtl.encodeParam)(branch_name);
|
|
2939
2963
|
return sdk.get("/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
|
|
2940
2964
|
});
|
|
2941
|
-
return function find_git_branch(
|
|
2942
|
-
return
|
|
2965
|
+
return function find_git_branch(_x947, _x948, _x949, _x950) {
|
|
2966
|
+
return _ref283.apply(this, arguments);
|
|
2943
2967
|
};
|
|
2944
2968
|
}();
|
|
2945
2969
|
var delete_git_branch = exports.delete_git_branch = function () {
|
|
2946
|
-
var
|
|
2970
|
+
var _ref284 = _asyncToGenerator(function* (sdk, project_id, branch_name, options) {
|
|
2947
2971
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2948
2972
|
branch_name = (0, _sdkRtl.encodeParam)(branch_name);
|
|
2949
2973
|
return sdk.delete("/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
|
|
2950
2974
|
});
|
|
2951
|
-
return function delete_git_branch(
|
|
2952
|
-
return
|
|
2975
|
+
return function delete_git_branch(_x951, _x952, _x953, _x954) {
|
|
2976
|
+
return _ref284.apply(this, arguments);
|
|
2953
2977
|
};
|
|
2954
2978
|
}();
|
|
2955
2979
|
var deploy_ref_to_production = exports.deploy_ref_to_production = function () {
|
|
2956
|
-
var
|
|
2980
|
+
var _ref285 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2957
2981
|
request.project_id = (0, _sdkRtl.encodeParam)(request.project_id);
|
|
2958
2982
|
return sdk.post("/projects/".concat(request.project_id, "/deploy_ref_to_production"), {
|
|
2959
2983
|
branch: request.branch,
|
|
2960
2984
|
ref: request.ref
|
|
2961
2985
|
}, null, options);
|
|
2962
2986
|
});
|
|
2963
|
-
return function deploy_ref_to_production(
|
|
2964
|
-
return
|
|
2987
|
+
return function deploy_ref_to_production(_x955, _x956, _x957) {
|
|
2988
|
+
return _ref285.apply(this, arguments);
|
|
2965
2989
|
};
|
|
2966
2990
|
}();
|
|
2967
2991
|
var deploy_to_production = exports.deploy_to_production = function () {
|
|
2968
|
-
var
|
|
2992
|
+
var _ref286 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2969
2993
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2970
2994
|
return sdk.post("/projects/".concat(project_id, "/deploy_to_production"), null, null, options);
|
|
2971
2995
|
});
|
|
2972
|
-
return function deploy_to_production(
|
|
2973
|
-
return
|
|
2996
|
+
return function deploy_to_production(_x958, _x959, _x960) {
|
|
2997
|
+
return _ref286.apply(this, arguments);
|
|
2974
2998
|
};
|
|
2975
2999
|
}();
|
|
2976
3000
|
var reset_project_to_production = exports.reset_project_to_production = function () {
|
|
2977
|
-
var
|
|
3001
|
+
var _ref287 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2978
3002
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2979
3003
|
return sdk.post("/projects/".concat(project_id, "/reset_to_production"), null, null, options);
|
|
2980
3004
|
});
|
|
2981
|
-
return function reset_project_to_production(
|
|
2982
|
-
return
|
|
3005
|
+
return function reset_project_to_production(_x961, _x962, _x963) {
|
|
3006
|
+
return _ref287.apply(this, arguments);
|
|
2983
3007
|
};
|
|
2984
3008
|
}();
|
|
2985
3009
|
var reset_project_to_remote = exports.reset_project_to_remote = function () {
|
|
2986
|
-
var
|
|
3010
|
+
var _ref288 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2987
3011
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
2988
3012
|
return sdk.post("/projects/".concat(project_id, "/reset_to_remote"), null, null, options);
|
|
2989
3013
|
});
|
|
2990
|
-
return function reset_project_to_remote(
|
|
2991
|
-
return
|
|
3014
|
+
return function reset_project_to_remote(_x964, _x965, _x966) {
|
|
3015
|
+
return _ref288.apply(this, arguments);
|
|
2992
3016
|
};
|
|
2993
3017
|
}();
|
|
2994
3018
|
var all_projects = exports.all_projects = function () {
|
|
2995
|
-
var
|
|
3019
|
+
var _ref289 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
2996
3020
|
return sdk.get('/projects', {
|
|
2997
3021
|
fields
|
|
2998
3022
|
}, null, options);
|
|
2999
3023
|
});
|
|
3000
|
-
return function all_projects(
|
|
3001
|
-
return
|
|
3024
|
+
return function all_projects(_x967, _x968, _x969) {
|
|
3025
|
+
return _ref289.apply(this, arguments);
|
|
3002
3026
|
};
|
|
3003
3027
|
}();
|
|
3004
3028
|
var create_project = exports.create_project = function () {
|
|
3005
|
-
var
|
|
3029
|
+
var _ref290 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3006
3030
|
return sdk.post('/projects', null, body, options);
|
|
3007
3031
|
});
|
|
3008
|
-
return function create_project(
|
|
3009
|
-
return
|
|
3032
|
+
return function create_project(_x970, _x971, _x972) {
|
|
3033
|
+
return _ref290.apply(this, arguments);
|
|
3010
3034
|
};
|
|
3011
3035
|
}();
|
|
3012
3036
|
var project = exports.project = function () {
|
|
3013
|
-
var
|
|
3037
|
+
var _ref291 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3014
3038
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3015
3039
|
return sdk.get("/projects/".concat(project_id), {
|
|
3016
3040
|
fields
|
|
3017
3041
|
}, null, options);
|
|
3018
3042
|
});
|
|
3019
|
-
return function project(
|
|
3020
|
-
return
|
|
3043
|
+
return function project(_x973, _x974, _x975, _x976) {
|
|
3044
|
+
return _ref291.apply(this, arguments);
|
|
3021
3045
|
};
|
|
3022
3046
|
}();
|
|
3023
3047
|
var update_project = exports.update_project = function () {
|
|
3024
|
-
var
|
|
3048
|
+
var _ref292 = _asyncToGenerator(function* (sdk, project_id, body, fields, options) {
|
|
3025
3049
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3026
3050
|
return sdk.patch("/projects/".concat(project_id), {
|
|
3027
3051
|
fields
|
|
3028
3052
|
}, body, options);
|
|
3029
3053
|
});
|
|
3030
|
-
return function update_project(
|
|
3031
|
-
return
|
|
3054
|
+
return function update_project(_x977, _x978, _x979, _x980, _x981) {
|
|
3055
|
+
return _ref292.apply(this, arguments);
|
|
3032
3056
|
};
|
|
3033
3057
|
}();
|
|
3034
3058
|
var manifest = exports.manifest = function () {
|
|
3035
|
-
var
|
|
3059
|
+
var _ref293 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
3036
3060
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3037
3061
|
return sdk.get("/projects/".concat(project_id, "/manifest"), null, null, options);
|
|
3038
3062
|
});
|
|
3039
|
-
return function manifest(
|
|
3040
|
-
return
|
|
3063
|
+
return function manifest(_x982, _x983, _x984) {
|
|
3064
|
+
return _ref293.apply(this, arguments);
|
|
3041
3065
|
};
|
|
3042
3066
|
}();
|
|
3043
3067
|
var git_deploy_key = exports.git_deploy_key = function () {
|
|
3044
|
-
var
|
|
3068
|
+
var _ref294 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
3045
3069
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3046
3070
|
return sdk.get("/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
|
|
3047
3071
|
});
|
|
3048
|
-
return function git_deploy_key(
|
|
3049
|
-
return
|
|
3072
|
+
return function git_deploy_key(_x985, _x986, _x987) {
|
|
3073
|
+
return _ref294.apply(this, arguments);
|
|
3050
3074
|
};
|
|
3051
3075
|
}();
|
|
3052
3076
|
var create_git_deploy_key = exports.create_git_deploy_key = function () {
|
|
3053
|
-
var
|
|
3077
|
+
var _ref295 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
3054
3078
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3055
3079
|
return sdk.post("/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
|
|
3056
3080
|
});
|
|
3057
|
-
return function create_git_deploy_key(
|
|
3058
|
-
return
|
|
3081
|
+
return function create_git_deploy_key(_x988, _x989, _x990) {
|
|
3082
|
+
return _ref295.apply(this, arguments);
|
|
3059
3083
|
};
|
|
3060
3084
|
}();
|
|
3061
3085
|
var project_validation_results = exports.project_validation_results = function () {
|
|
3062
|
-
var
|
|
3086
|
+
var _ref296 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3063
3087
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3064
3088
|
return sdk.get("/projects/".concat(project_id, "/validate"), {
|
|
3065
3089
|
fields
|
|
3066
3090
|
}, null, options);
|
|
3067
3091
|
});
|
|
3068
|
-
return function project_validation_results(
|
|
3069
|
-
return
|
|
3092
|
+
return function project_validation_results(_x991, _x992, _x993, _x994) {
|
|
3093
|
+
return _ref296.apply(this, arguments);
|
|
3070
3094
|
};
|
|
3071
3095
|
}();
|
|
3072
3096
|
var validate_project = exports.validate_project = function () {
|
|
3073
|
-
var
|
|
3097
|
+
var _ref297 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3074
3098
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3075
3099
|
return sdk.post("/projects/".concat(project_id, "/validate"), {
|
|
3076
3100
|
fields
|
|
3077
3101
|
}, null, options);
|
|
3078
3102
|
});
|
|
3079
|
-
return function validate_project(
|
|
3080
|
-
return
|
|
3103
|
+
return function validate_project(_x995, _x996, _x997, _x998) {
|
|
3104
|
+
return _ref297.apply(this, arguments);
|
|
3081
3105
|
};
|
|
3082
3106
|
}();
|
|
3083
3107
|
var project_workspace = exports.project_workspace = function () {
|
|
3084
|
-
var
|
|
3108
|
+
var _ref298 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3085
3109
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3086
3110
|
return sdk.get("/projects/".concat(project_id, "/current_workspace"), {
|
|
3087
3111
|
fields
|
|
3088
3112
|
}, null, options);
|
|
3089
3113
|
});
|
|
3090
|
-
return function project_workspace(
|
|
3091
|
-
return
|
|
3114
|
+
return function project_workspace(_x999, _x1000, _x1001, _x1002) {
|
|
3115
|
+
return _ref298.apply(this, arguments);
|
|
3092
3116
|
};
|
|
3093
3117
|
}();
|
|
3094
3118
|
var all_project_files = exports.all_project_files = function () {
|
|
3095
|
-
var
|
|
3119
|
+
var _ref299 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3096
3120
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3097
3121
|
return sdk.get("/projects/".concat(project_id, "/files"), {
|
|
3098
3122
|
fields
|
|
3099
3123
|
}, null, options);
|
|
3100
3124
|
});
|
|
3101
|
-
return function all_project_files(
|
|
3102
|
-
return
|
|
3125
|
+
return function all_project_files(_x1003, _x1004, _x1005, _x1006) {
|
|
3126
|
+
return _ref299.apply(this, arguments);
|
|
3103
3127
|
};
|
|
3104
3128
|
}();
|
|
3105
3129
|
var project_file = exports.project_file = function () {
|
|
3106
|
-
var
|
|
3130
|
+
var _ref300 = _asyncToGenerator(function* (sdk, project_id, file_id, fields, options) {
|
|
3107
3131
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3108
3132
|
return sdk.get("/projects/".concat(project_id, "/files/file"), {
|
|
3109
3133
|
file_id,
|
|
3110
3134
|
fields
|
|
3111
3135
|
}, null, options);
|
|
3112
3136
|
});
|
|
3113
|
-
return function project_file(
|
|
3114
|
-
return
|
|
3137
|
+
return function project_file(_x1007, _x1008, _x1009, _x1010, _x1011) {
|
|
3138
|
+
return _ref300.apply(this, arguments);
|
|
3115
3139
|
};
|
|
3116
3140
|
}();
|
|
3117
3141
|
var all_git_connection_tests = exports.all_git_connection_tests = function () {
|
|
3118
|
-
var
|
|
3142
|
+
var _ref301 = _asyncToGenerator(function* (sdk, project_id, remote_url, options) {
|
|
3119
3143
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3120
3144
|
return sdk.get("/projects/".concat(project_id, "/git_connection_tests"), {
|
|
3121
3145
|
remote_url
|
|
3122
3146
|
}, null, options);
|
|
3123
3147
|
});
|
|
3124
|
-
return function all_git_connection_tests(
|
|
3125
|
-
return
|
|
3148
|
+
return function all_git_connection_tests(_x1012, _x1013, _x1014, _x1015) {
|
|
3149
|
+
return _ref301.apply(this, arguments);
|
|
3126
3150
|
};
|
|
3127
3151
|
}();
|
|
3128
3152
|
var run_git_connection_test = exports.run_git_connection_test = function () {
|
|
3129
|
-
var
|
|
3153
|
+
var _ref302 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3130
3154
|
request.project_id = (0, _sdkRtl.encodeParam)(request.project_id);
|
|
3131
3155
|
request.test_id = (0, _sdkRtl.encodeParam)(request.test_id);
|
|
3132
3156
|
return sdk.get("/projects/".concat(request.project_id, "/git_connection_tests/").concat(request.test_id), {
|
|
@@ -3134,23 +3158,23 @@ var run_git_connection_test = exports.run_git_connection_test = function () {
|
|
|
3134
3158
|
use_production: request.use_production
|
|
3135
3159
|
}, null, options);
|
|
3136
3160
|
});
|
|
3137
|
-
return function run_git_connection_test(
|
|
3138
|
-
return
|
|
3161
|
+
return function run_git_connection_test(_x1016, _x1017, _x1018) {
|
|
3162
|
+
return _ref302.apply(this, arguments);
|
|
3139
3163
|
};
|
|
3140
3164
|
}();
|
|
3141
3165
|
var all_lookml_tests = exports.all_lookml_tests = function () {
|
|
3142
|
-
var
|
|
3166
|
+
var _ref303 = _asyncToGenerator(function* (sdk, project_id, file_id, options) {
|
|
3143
3167
|
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3144
3168
|
return sdk.get("/projects/".concat(project_id, "/lookml_tests"), {
|
|
3145
3169
|
file_id
|
|
3146
3170
|
}, null, options);
|
|
3147
3171
|
});
|
|
3148
|
-
return function all_lookml_tests(
|
|
3149
|
-
return
|
|
3172
|
+
return function all_lookml_tests(_x1019, _x1020, _x1021, _x1022) {
|
|
3173
|
+
return _ref303.apply(this, arguments);
|
|
3150
3174
|
};
|
|
3151
3175
|
}();
|
|
3152
3176
|
var run_lookml_test = exports.run_lookml_test = function () {
|
|
3153
|
-
var
|
|
3177
|
+
var _ref304 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3154
3178
|
request.project_id = (0, _sdkRtl.encodeParam)(request.project_id);
|
|
3155
3179
|
return sdk.get("/projects/".concat(request.project_id, "/lookml_tests/run"), {
|
|
3156
3180
|
file_id: request.file_id,
|
|
@@ -3158,12 +3182,12 @@ var run_lookml_test = exports.run_lookml_test = function () {
|
|
|
3158
3182
|
model: request.model
|
|
3159
3183
|
}, null, options);
|
|
3160
3184
|
});
|
|
3161
|
-
return function run_lookml_test(
|
|
3162
|
-
return
|
|
3185
|
+
return function run_lookml_test(_x1023, _x1024, _x1025) {
|
|
3186
|
+
return _ref304.apply(this, arguments);
|
|
3163
3187
|
};
|
|
3164
3188
|
}();
|
|
3165
3189
|
var tag_ref = exports.tag_ref = function () {
|
|
3166
|
-
var
|
|
3190
|
+
var _ref305 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3167
3191
|
request.project_id = (0, _sdkRtl.encodeParam)(request.project_id);
|
|
3168
3192
|
return sdk.post("/projects/".concat(request.project_id, "/tag"), {
|
|
3169
3193
|
commit_sha: request.commit_sha,
|
|
@@ -3171,30 +3195,7 @@ var tag_ref = exports.tag_ref = function () {
|
|
|
3171
3195
|
tag_message: request.tag_message
|
|
3172
3196
|
}, request.body, options);
|
|
3173
3197
|
});
|
|
3174
|
-
return function tag_ref(
|
|
3175
|
-
return _ref303.apply(this, arguments);
|
|
3176
|
-
};
|
|
3177
|
-
}();
|
|
3178
|
-
var get_ci_run = exports.get_ci_run = function () {
|
|
3179
|
-
var _ref304 = _asyncToGenerator(function* (sdk, project_id, run_id, fields, options) {
|
|
3180
|
-
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3181
|
-
run_id = (0, _sdkRtl.encodeParam)(run_id);
|
|
3182
|
-
return sdk.get("/projects/".concat(project_id, "/ci/runs/").concat(run_id), {
|
|
3183
|
-
fields
|
|
3184
|
-
}, null, options);
|
|
3185
|
-
});
|
|
3186
|
-
return function get_ci_run(_x1021, _x1022, _x1023, _x1024, _x1025) {
|
|
3187
|
-
return _ref304.apply(this, arguments);
|
|
3188
|
-
};
|
|
3189
|
-
}();
|
|
3190
|
-
var create_ci_run = exports.create_ci_run = function () {
|
|
3191
|
-
var _ref305 = _asyncToGenerator(function* (sdk, project_id, body, fields, options) {
|
|
3192
|
-
project_id = (0, _sdkRtl.encodeParam)(project_id);
|
|
3193
|
-
return sdk.post("/projects/".concat(project_id, "/ci/run"), {
|
|
3194
|
-
fields
|
|
3195
|
-
}, body, options);
|
|
3196
|
-
});
|
|
3197
|
-
return function create_ci_run(_x1026, _x1027, _x1028, _x1029, _x1030) {
|
|
3198
|
+
return function tag_ref(_x1026, _x1027, _x1028) {
|
|
3198
3199
|
return _ref305.apply(this, arguments);
|
|
3199
3200
|
};
|
|
3200
3201
|
}();
|
|
@@ -3204,7 +3205,7 @@ var update_repository_credential = exports.update_repository_credential = functi
|
|
|
3204
3205
|
credential_id = (0, _sdkRtl.encodeParam)(credential_id);
|
|
3205
3206
|
return sdk.put("/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, body, options);
|
|
3206
3207
|
});
|
|
3207
|
-
return function update_repository_credential(
|
|
3208
|
+
return function update_repository_credential(_x1029, _x1030, _x1031, _x1032, _x1033) {
|
|
3208
3209
|
return _ref306.apply(this, arguments);
|
|
3209
3210
|
};
|
|
3210
3211
|
}();
|
|
@@ -3214,7 +3215,7 @@ var delete_repository_credential = exports.delete_repository_credential = functi
|
|
|
3214
3215
|
credential_id = (0, _sdkRtl.encodeParam)(credential_id);
|
|
3215
3216
|
return sdk.delete("/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, null, options);
|
|
3216
3217
|
});
|
|
3217
|
-
return function delete_repository_credential(
|
|
3218
|
+
return function delete_repository_credential(_x1034, _x1035, _x1036, _x1037) {
|
|
3218
3219
|
return _ref307.apply(this, arguments);
|
|
3219
3220
|
};
|
|
3220
3221
|
}();
|
|
@@ -3223,7 +3224,7 @@ var get_all_repository_credentials = exports.get_all_repository_credentials = fu
|
|
|
3223
3224
|
root_project_id = (0, _sdkRtl.encodeParam)(root_project_id);
|
|
3224
3225
|
return sdk.get("/projects/".concat(root_project_id, "/credentials"), null, null, options);
|
|
3225
3226
|
});
|
|
3226
|
-
return function get_all_repository_credentials(
|
|
3227
|
+
return function get_all_repository_credentials(_x1038, _x1039, _x1040) {
|
|
3227
3228
|
return _ref308.apply(this, arguments);
|
|
3228
3229
|
};
|
|
3229
3230
|
}();
|
|
@@ -3243,7 +3244,7 @@ var create_query_task = exports.create_query_task = function () {
|
|
|
3243
3244
|
fields: request.fields
|
|
3244
3245
|
}, request.body, options);
|
|
3245
3246
|
});
|
|
3246
|
-
return function create_query_task(
|
|
3247
|
+
return function create_query_task(_x1041, _x1042, _x1043) {
|
|
3247
3248
|
return _ref309.apply(this, arguments);
|
|
3248
3249
|
};
|
|
3249
3250
|
}();
|
|
@@ -3253,7 +3254,7 @@ var query_task_multi_results = exports.query_task_multi_results = function () {
|
|
|
3253
3254
|
query_task_ids
|
|
3254
3255
|
}, null, options);
|
|
3255
3256
|
});
|
|
3256
|
-
return function query_task_multi_results(
|
|
3257
|
+
return function query_task_multi_results(_x1044, _x1045, _x1046) {
|
|
3257
3258
|
return _ref310.apply(this, arguments);
|
|
3258
3259
|
};
|
|
3259
3260
|
}();
|
|
@@ -3264,7 +3265,7 @@ var query_task = exports.query_task = function () {
|
|
|
3264
3265
|
fields
|
|
3265
3266
|
}, null, options);
|
|
3266
3267
|
});
|
|
3267
|
-
return function query_task(
|
|
3268
|
+
return function query_task(_x1047, _x1048, _x1049, _x1050) {
|
|
3268
3269
|
return _ref311.apply(this, arguments);
|
|
3269
3270
|
};
|
|
3270
3271
|
}();
|
|
@@ -3273,7 +3274,7 @@ var query_task_results = exports.query_task_results = function () {
|
|
|
3273
3274
|
query_task_id = (0, _sdkRtl.encodeParam)(query_task_id);
|
|
3274
3275
|
return sdk.get("/query_tasks/".concat(query_task_id, "/results"), null, null, options);
|
|
3275
3276
|
});
|
|
3276
|
-
return function query_task_results(
|
|
3277
|
+
return function query_task_results(_x1051, _x1052, _x1053) {
|
|
3277
3278
|
return _ref312.apply(this, arguments);
|
|
3278
3279
|
};
|
|
3279
3280
|
}();
|
|
@@ -3284,7 +3285,7 @@ var query = exports.query = function () {
|
|
|
3284
3285
|
fields
|
|
3285
3286
|
}, null, options);
|
|
3286
3287
|
});
|
|
3287
|
-
return function query(
|
|
3288
|
+
return function query(_x1054, _x1055, _x1056, _x1057) {
|
|
3288
3289
|
return _ref313.apply(this, arguments);
|
|
3289
3290
|
};
|
|
3290
3291
|
}();
|
|
@@ -3295,7 +3296,7 @@ var query_for_slug = exports.query_for_slug = function () {
|
|
|
3295
3296
|
fields
|
|
3296
3297
|
}, null, options);
|
|
3297
3298
|
});
|
|
3298
|
-
return function query_for_slug(
|
|
3299
|
+
return function query_for_slug(_x1058, _x1059, _x1060, _x1061) {
|
|
3299
3300
|
return _ref314.apply(this, arguments);
|
|
3300
3301
|
};
|
|
3301
3302
|
}();
|
|
@@ -3305,7 +3306,7 @@ var create_query = exports.create_query = function () {
|
|
|
3305
3306
|
fields
|
|
3306
3307
|
}, body, options);
|
|
3307
3308
|
});
|
|
3308
|
-
return function create_query(
|
|
3309
|
+
return function create_query(_x1062, _x1063, _x1064, _x1065) {
|
|
3309
3310
|
return _ref315.apply(this, arguments);
|
|
3310
3311
|
};
|
|
3311
3312
|
}();
|
|
@@ -3330,7 +3331,7 @@ var run_query = exports.run_query = function () {
|
|
|
3330
3331
|
enable_oauth_error_response: request.enable_oauth_error_response
|
|
3331
3332
|
}, null, options);
|
|
3332
3333
|
});
|
|
3333
|
-
return function run_query(
|
|
3334
|
+
return function run_query(_x1066, _x1067, _x1068) {
|
|
3334
3335
|
return _ref316.apply(this, arguments);
|
|
3335
3336
|
};
|
|
3336
3337
|
}();
|
|
@@ -3353,7 +3354,7 @@ var run_inline_query = exports.run_inline_query = function () {
|
|
|
3353
3354
|
enable_oauth_error_response: request.enable_oauth_error_response
|
|
3354
3355
|
}, request.body, options);
|
|
3355
3356
|
});
|
|
3356
|
-
return function run_inline_query(
|
|
3357
|
+
return function run_inline_query(_x1069, _x1070, _x1071) {
|
|
3357
3358
|
return _ref317.apply(this, arguments);
|
|
3358
3359
|
};
|
|
3359
3360
|
}();
|
|
@@ -3364,7 +3365,7 @@ var run_url_encoded_query = exports.run_url_encoded_query = function () {
|
|
|
3364
3365
|
result_format = (0, _sdkRtl.encodeParam)(result_format);
|
|
3365
3366
|
return sdk.get("/queries/models/".concat(model_name, "/views/").concat(view_name, "/run/").concat(result_format), null, null, options);
|
|
3366
3367
|
});
|
|
3367
|
-
return function run_url_encoded_query(
|
|
3368
|
+
return function run_url_encoded_query(_x1072, _x1073, _x1074, _x1075, _x1076) {
|
|
3368
3369
|
return _ref318.apply(this, arguments);
|
|
3369
3370
|
};
|
|
3370
3371
|
}();
|
|
@@ -3375,7 +3376,7 @@ var merge_query = exports.merge_query = function () {
|
|
|
3375
3376
|
fields
|
|
3376
3377
|
}, null, options);
|
|
3377
3378
|
});
|
|
3378
|
-
return function merge_query(
|
|
3379
|
+
return function merge_query(_x1077, _x1078, _x1079, _x1080) {
|
|
3379
3380
|
return _ref319.apply(this, arguments);
|
|
3380
3381
|
};
|
|
3381
3382
|
}();
|
|
@@ -3385,7 +3386,7 @@ var create_merge_query = exports.create_merge_query = function () {
|
|
|
3385
3386
|
fields
|
|
3386
3387
|
}, body, options);
|
|
3387
3388
|
});
|
|
3388
|
-
return function create_merge_query(
|
|
3389
|
+
return function create_merge_query(_x1081, _x1082, _x1083, _x1084) {
|
|
3389
3390
|
return _ref320.apply(this, arguments);
|
|
3390
3391
|
};
|
|
3391
3392
|
}();
|
|
@@ -3393,7 +3394,7 @@ var all_running_queries = exports.all_running_queries = function () {
|
|
|
3393
3394
|
var _ref321 = _asyncToGenerator(function* (sdk, options) {
|
|
3394
3395
|
return sdk.get('/running_queries', null, null, options);
|
|
3395
3396
|
});
|
|
3396
|
-
return function all_running_queries(
|
|
3397
|
+
return function all_running_queries(_x1085, _x1086) {
|
|
3397
3398
|
return _ref321.apply(this, arguments);
|
|
3398
3399
|
};
|
|
3399
3400
|
}();
|
|
@@ -3402,7 +3403,7 @@ var kill_query = exports.kill_query = function () {
|
|
|
3402
3403
|
query_task_id = (0, _sdkRtl.encodeParam)(query_task_id);
|
|
3403
3404
|
return sdk.delete("/running_queries/".concat(query_task_id), null, null, options);
|
|
3404
3405
|
});
|
|
3405
|
-
return function kill_query(
|
|
3406
|
+
return function kill_query(_x1087, _x1088, _x1089) {
|
|
3406
3407
|
return _ref322.apply(this, arguments);
|
|
3407
3408
|
};
|
|
3408
3409
|
}();
|
|
@@ -3410,7 +3411,7 @@ var create_sql_query = exports.create_sql_query = function () {
|
|
|
3410
3411
|
var _ref323 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3411
3412
|
return sdk.post('/sql_queries', null, body, options);
|
|
3412
3413
|
});
|
|
3413
|
-
return function create_sql_query(
|
|
3414
|
+
return function create_sql_query(_x1090, _x1091, _x1092) {
|
|
3414
3415
|
return _ref323.apply(this, arguments);
|
|
3415
3416
|
};
|
|
3416
3417
|
}();
|
|
@@ -3419,7 +3420,7 @@ var sql_query = exports.sql_query = function () {
|
|
|
3419
3420
|
slug = (0, _sdkRtl.encodeParam)(slug);
|
|
3420
3421
|
return sdk.get("/sql_queries/".concat(slug), null, null, options);
|
|
3421
3422
|
});
|
|
3422
|
-
return function sql_query(
|
|
3423
|
+
return function sql_query(_x1093, _x1094, _x1095) {
|
|
3423
3424
|
return _ref324.apply(this, arguments);
|
|
3424
3425
|
};
|
|
3425
3426
|
}();
|
|
@@ -3431,7 +3432,7 @@ var run_sql_query = exports.run_sql_query = function () {
|
|
|
3431
3432
|
download
|
|
3432
3433
|
}, null, options);
|
|
3433
3434
|
});
|
|
3434
|
-
return function run_sql_query(
|
|
3435
|
+
return function run_sql_query(_x1096, _x1097, _x1098, _x1099, _x1100) {
|
|
3435
3436
|
return _ref325.apply(this, arguments);
|
|
3436
3437
|
};
|
|
3437
3438
|
}();
|
|
@@ -3445,7 +3446,7 @@ var create_look_render_task = exports.create_look_render_task = function () {
|
|
|
3445
3446
|
fields
|
|
3446
3447
|
}, null, options);
|
|
3447
3448
|
});
|
|
3448
|
-
return function create_look_render_task(_x1103, _x1104, _x1105, _x1106, _x1107
|
|
3449
|
+
return function create_look_render_task(_x1101, _x1102, _x1103, _x1104, _x1105, _x1106, _x1107) {
|
|
3449
3450
|
return _ref326.apply(this, arguments);
|
|
3450
3451
|
};
|
|
3451
3452
|
}();
|
|
@@ -3459,7 +3460,7 @@ var create_query_render_task = exports.create_query_render_task = function () {
|
|
|
3459
3460
|
fields
|
|
3460
3461
|
}, null, options);
|
|
3461
3462
|
});
|
|
3462
|
-
return function create_query_render_task(_x1110, _x1111, _x1112, _x1113, _x1114
|
|
3463
|
+
return function create_query_render_task(_x1108, _x1109, _x1110, _x1111, _x1112, _x1113, _x1114) {
|
|
3463
3464
|
return _ref327.apply(this, arguments);
|
|
3464
3465
|
};
|
|
3465
3466
|
}();
|
|
@@ -3477,7 +3478,7 @@ var create_dashboard_render_task = exports.create_dashboard_render_task = functi
|
|
|
3477
3478
|
theme: request.theme
|
|
3478
3479
|
}, request.body, options);
|
|
3479
3480
|
});
|
|
3480
|
-
return function create_dashboard_render_task(
|
|
3481
|
+
return function create_dashboard_render_task(_x1115, _x1116, _x1117) {
|
|
3481
3482
|
return _ref328.apply(this, arguments);
|
|
3482
3483
|
};
|
|
3483
3484
|
}();
|
|
@@ -3488,7 +3489,7 @@ var render_task = exports.render_task = function () {
|
|
|
3488
3489
|
fields
|
|
3489
3490
|
}, null, options);
|
|
3490
3491
|
});
|
|
3491
|
-
return function render_task(
|
|
3492
|
+
return function render_task(_x1118, _x1119, _x1120, _x1121) {
|
|
3492
3493
|
return _ref329.apply(this, arguments);
|
|
3493
3494
|
};
|
|
3494
3495
|
}();
|
|
@@ -3497,7 +3498,7 @@ var render_task_results = exports.render_task_results = function () {
|
|
|
3497
3498
|
render_task_id = (0, _sdkRtl.encodeParam)(render_task_id);
|
|
3498
3499
|
return sdk.get("/render_tasks/".concat(render_task_id, "/results"), null, null, options);
|
|
3499
3500
|
});
|
|
3500
|
-
return function render_task_results(
|
|
3501
|
+
return function render_task_results(_x1122, _x1123, _x1124) {
|
|
3501
3502
|
return _ref330.apply(this, arguments);
|
|
3502
3503
|
};
|
|
3503
3504
|
}();
|
|
@@ -3511,7 +3512,7 @@ var create_dashboard_element_render_task = exports.create_dashboard_element_rend
|
|
|
3511
3512
|
fields
|
|
3512
3513
|
}, null, options);
|
|
3513
3514
|
});
|
|
3514
|
-
return function create_dashboard_element_render_task(_x1127, _x1128, _x1129, _x1130, _x1131
|
|
3515
|
+
return function create_dashboard_element_render_task(_x1125, _x1126, _x1127, _x1128, _x1129, _x1130, _x1131) {
|
|
3515
3516
|
return _ref331.apply(this, arguments);
|
|
3516
3517
|
};
|
|
3517
3518
|
}();
|
|
@@ -3529,7 +3530,7 @@ var search_reports = exports.search_reports = function () {
|
|
|
3529
3530
|
next_page_token: request.next_page_token
|
|
3530
3531
|
}, null, options);
|
|
3531
3532
|
});
|
|
3532
|
-
return function search_reports(
|
|
3533
|
+
return function search_reports(_x1132, _x1133, _x1134) {
|
|
3533
3534
|
return _ref332.apply(this, arguments);
|
|
3534
3535
|
};
|
|
3535
3536
|
}();
|
|
@@ -3547,7 +3548,7 @@ var search_model_sets = exports.search_model_sets = function () {
|
|
|
3547
3548
|
filter_or: request.filter_or
|
|
3548
3549
|
}, null, options);
|
|
3549
3550
|
});
|
|
3550
|
-
return function search_model_sets(
|
|
3551
|
+
return function search_model_sets(_x1135, _x1136, _x1137) {
|
|
3551
3552
|
return _ref333.apply(this, arguments);
|
|
3552
3553
|
};
|
|
3553
3554
|
}();
|
|
@@ -3558,7 +3559,7 @@ var model_set = exports.model_set = function () {
|
|
|
3558
3559
|
fields
|
|
3559
3560
|
}, null, options);
|
|
3560
3561
|
});
|
|
3561
|
-
return function model_set(
|
|
3562
|
+
return function model_set(_x1138, _x1139, _x1140, _x1141) {
|
|
3562
3563
|
return _ref334.apply(this, arguments);
|
|
3563
3564
|
};
|
|
3564
3565
|
}();
|
|
@@ -3567,7 +3568,7 @@ var update_model_set = exports.update_model_set = function () {
|
|
|
3567
3568
|
model_set_id = (0, _sdkRtl.encodeParam)(model_set_id);
|
|
3568
3569
|
return sdk.patch("/model_sets/".concat(model_set_id), null, body, options);
|
|
3569
3570
|
});
|
|
3570
|
-
return function update_model_set(
|
|
3571
|
+
return function update_model_set(_x1142, _x1143, _x1144, _x1145) {
|
|
3571
3572
|
return _ref335.apply(this, arguments);
|
|
3572
3573
|
};
|
|
3573
3574
|
}();
|
|
@@ -3576,7 +3577,7 @@ var delete_model_set = exports.delete_model_set = function () {
|
|
|
3576
3577
|
model_set_id = (0, _sdkRtl.encodeParam)(model_set_id);
|
|
3577
3578
|
return sdk.delete("/model_sets/".concat(model_set_id), null, null, options);
|
|
3578
3579
|
});
|
|
3579
|
-
return function delete_model_set(
|
|
3580
|
+
return function delete_model_set(_x1146, _x1147, _x1148) {
|
|
3580
3581
|
return _ref336.apply(this, arguments);
|
|
3581
3582
|
};
|
|
3582
3583
|
}();
|
|
@@ -3586,7 +3587,7 @@ var all_model_sets = exports.all_model_sets = function () {
|
|
|
3586
3587
|
fields
|
|
3587
3588
|
}, null, options);
|
|
3588
3589
|
});
|
|
3589
|
-
return function all_model_sets(
|
|
3590
|
+
return function all_model_sets(_x1149, _x1150, _x1151) {
|
|
3590
3591
|
return _ref337.apply(this, arguments);
|
|
3591
3592
|
};
|
|
3592
3593
|
}();
|
|
@@ -3594,7 +3595,7 @@ var create_model_set = exports.create_model_set = function () {
|
|
|
3594
3595
|
var _ref338 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3595
3596
|
return sdk.post('/model_sets', null, body, options);
|
|
3596
3597
|
});
|
|
3597
|
-
return function create_model_set(
|
|
3598
|
+
return function create_model_set(_x1152, _x1153, _x1154) {
|
|
3598
3599
|
return _ref338.apply(this, arguments);
|
|
3599
3600
|
};
|
|
3600
3601
|
}();
|
|
@@ -3602,7 +3603,7 @@ var all_permissions = exports.all_permissions = function () {
|
|
|
3602
3603
|
var _ref339 = _asyncToGenerator(function* (sdk, options) {
|
|
3603
3604
|
return sdk.get('/permissions', null, null, options);
|
|
3604
3605
|
});
|
|
3605
|
-
return function all_permissions(
|
|
3606
|
+
return function all_permissions(_x1155, _x1156) {
|
|
3606
3607
|
return _ref339.apply(this, arguments);
|
|
3607
3608
|
};
|
|
3608
3609
|
}();
|
|
@@ -3620,7 +3621,7 @@ var search_permission_sets = exports.search_permission_sets = function () {
|
|
|
3620
3621
|
filter_or: request.filter_or
|
|
3621
3622
|
}, null, options);
|
|
3622
3623
|
});
|
|
3623
|
-
return function search_permission_sets(
|
|
3624
|
+
return function search_permission_sets(_x1157, _x1158, _x1159) {
|
|
3624
3625
|
return _ref340.apply(this, arguments);
|
|
3625
3626
|
};
|
|
3626
3627
|
}();
|
|
@@ -3631,7 +3632,7 @@ var permission_set = exports.permission_set = function () {
|
|
|
3631
3632
|
fields
|
|
3632
3633
|
}, null, options);
|
|
3633
3634
|
});
|
|
3634
|
-
return function permission_set(
|
|
3635
|
+
return function permission_set(_x1160, _x1161, _x1162, _x1163) {
|
|
3635
3636
|
return _ref341.apply(this, arguments);
|
|
3636
3637
|
};
|
|
3637
3638
|
}();
|
|
@@ -3640,7 +3641,7 @@ var update_permission_set = exports.update_permission_set = function () {
|
|
|
3640
3641
|
permission_set_id = (0, _sdkRtl.encodeParam)(permission_set_id);
|
|
3641
3642
|
return sdk.patch("/permission_sets/".concat(permission_set_id), null, body, options);
|
|
3642
3643
|
});
|
|
3643
|
-
return function update_permission_set(
|
|
3644
|
+
return function update_permission_set(_x1164, _x1165, _x1166, _x1167) {
|
|
3644
3645
|
return _ref342.apply(this, arguments);
|
|
3645
3646
|
};
|
|
3646
3647
|
}();
|
|
@@ -3649,7 +3650,7 @@ var delete_permission_set = exports.delete_permission_set = function () {
|
|
|
3649
3650
|
permission_set_id = (0, _sdkRtl.encodeParam)(permission_set_id);
|
|
3650
3651
|
return sdk.delete("/permission_sets/".concat(permission_set_id), null, null, options);
|
|
3651
3652
|
});
|
|
3652
|
-
return function delete_permission_set(
|
|
3653
|
+
return function delete_permission_set(_x1168, _x1169, _x1170) {
|
|
3653
3654
|
return _ref343.apply(this, arguments);
|
|
3654
3655
|
};
|
|
3655
3656
|
}();
|
|
@@ -3659,7 +3660,7 @@ var all_permission_sets = exports.all_permission_sets = function () {
|
|
|
3659
3660
|
fields
|
|
3660
3661
|
}, null, options);
|
|
3661
3662
|
});
|
|
3662
|
-
return function all_permission_sets(
|
|
3663
|
+
return function all_permission_sets(_x1171, _x1172, _x1173) {
|
|
3663
3664
|
return _ref344.apply(this, arguments);
|
|
3664
3665
|
};
|
|
3665
3666
|
}();
|
|
@@ -3667,7 +3668,7 @@ var create_permission_set = exports.create_permission_set = function () {
|
|
|
3667
3668
|
var _ref345 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3668
3669
|
return sdk.post('/permission_sets', null, body, options);
|
|
3669
3670
|
});
|
|
3670
|
-
return function create_permission_set(
|
|
3671
|
+
return function create_permission_set(_x1174, _x1175, _x1176) {
|
|
3671
3672
|
return _ref345.apply(this, arguments);
|
|
3672
3673
|
};
|
|
3673
3674
|
}();
|
|
@@ -3678,7 +3679,7 @@ var all_roles = exports.all_roles = function () {
|
|
|
3678
3679
|
ids: request.ids
|
|
3679
3680
|
}, null, options);
|
|
3680
3681
|
});
|
|
3681
|
-
return function all_roles(
|
|
3682
|
+
return function all_roles(_x1177, _x1178, _x1179) {
|
|
3682
3683
|
return _ref346.apply(this, arguments);
|
|
3683
3684
|
};
|
|
3684
3685
|
}();
|
|
@@ -3686,7 +3687,7 @@ var create_role = exports.create_role = function () {
|
|
|
3686
3687
|
var _ref347 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3687
3688
|
return sdk.post('/roles', null, body, options);
|
|
3688
3689
|
});
|
|
3689
|
-
return function create_role(
|
|
3690
|
+
return function create_role(_x1180, _x1181, _x1182) {
|
|
3690
3691
|
return _ref347.apply(this, arguments);
|
|
3691
3692
|
};
|
|
3692
3693
|
}();
|
|
@@ -3704,7 +3705,7 @@ var search_roles = exports.search_roles = function () {
|
|
|
3704
3705
|
is_support_role: request.is_support_role
|
|
3705
3706
|
}, null, options);
|
|
3706
3707
|
});
|
|
3707
|
-
return function search_roles(
|
|
3708
|
+
return function search_roles(_x1183, _x1184, _x1185) {
|
|
3708
3709
|
return _ref348.apply(this, arguments);
|
|
3709
3710
|
};
|
|
3710
3711
|
}();
|
|
@@ -3721,7 +3722,7 @@ var search_roles_with_user_count = exports.search_roles_with_user_count = functi
|
|
|
3721
3722
|
filter_or: request.filter_or
|
|
3722
3723
|
}, null, options);
|
|
3723
3724
|
});
|
|
3724
|
-
return function search_roles_with_user_count(
|
|
3725
|
+
return function search_roles_with_user_count(_x1186, _x1187, _x1188) {
|
|
3725
3726
|
return _ref349.apply(this, arguments);
|
|
3726
3727
|
};
|
|
3727
3728
|
}();
|
|
@@ -3730,7 +3731,7 @@ var role = exports.role = function () {
|
|
|
3730
3731
|
role_id = (0, _sdkRtl.encodeParam)(role_id);
|
|
3731
3732
|
return sdk.get("/roles/".concat(role_id), null, null, options);
|
|
3732
3733
|
});
|
|
3733
|
-
return function role(
|
|
3734
|
+
return function role(_x1189, _x1190, _x1191) {
|
|
3734
3735
|
return _ref350.apply(this, arguments);
|
|
3735
3736
|
};
|
|
3736
3737
|
}();
|
|
@@ -3739,7 +3740,7 @@ var update_role = exports.update_role = function () {
|
|
|
3739
3740
|
role_id = (0, _sdkRtl.encodeParam)(role_id);
|
|
3740
3741
|
return sdk.patch("/roles/".concat(role_id), null, body, options);
|
|
3741
3742
|
});
|
|
3742
|
-
return function update_role(
|
|
3743
|
+
return function update_role(_x1192, _x1193, _x1194, _x1195) {
|
|
3743
3744
|
return _ref351.apply(this, arguments);
|
|
3744
3745
|
};
|
|
3745
3746
|
}();
|
|
@@ -3748,7 +3749,7 @@ var delete_role = exports.delete_role = function () {
|
|
|
3748
3749
|
role_id = (0, _sdkRtl.encodeParam)(role_id);
|
|
3749
3750
|
return sdk.delete("/roles/".concat(role_id), null, null, options);
|
|
3750
3751
|
});
|
|
3751
|
-
return function delete_role(
|
|
3752
|
+
return function delete_role(_x1196, _x1197, _x1198) {
|
|
3752
3753
|
return _ref352.apply(this, arguments);
|
|
3753
3754
|
};
|
|
3754
3755
|
}();
|
|
@@ -3759,7 +3760,7 @@ var role_groups = exports.role_groups = function () {
|
|
|
3759
3760
|
fields
|
|
3760
3761
|
}, null, options);
|
|
3761
3762
|
});
|
|
3762
|
-
return function role_groups(
|
|
3763
|
+
return function role_groups(_x1199, _x1200, _x1201, _x1202) {
|
|
3763
3764
|
return _ref353.apply(this, arguments);
|
|
3764
3765
|
};
|
|
3765
3766
|
}();
|
|
@@ -3768,7 +3769,7 @@ var set_role_groups = exports.set_role_groups = function () {
|
|
|
3768
3769
|
role_id = (0, _sdkRtl.encodeParam)(role_id);
|
|
3769
3770
|
return sdk.put("/roles/".concat(role_id, "/groups"), null, body, options);
|
|
3770
3771
|
});
|
|
3771
|
-
return function set_role_groups(
|
|
3772
|
+
return function set_role_groups(_x1203, _x1204, _x1205, _x1206) {
|
|
3772
3773
|
return _ref354.apply(this, arguments);
|
|
3773
3774
|
};
|
|
3774
3775
|
}();
|
|
@@ -3780,7 +3781,7 @@ var role_users = exports.role_users = function () {
|
|
|
3780
3781
|
direct_association_only: request.direct_association_only
|
|
3781
3782
|
}, null, options);
|
|
3782
3783
|
});
|
|
3783
|
-
return function role_users(
|
|
3784
|
+
return function role_users(_x1207, _x1208, _x1209) {
|
|
3784
3785
|
return _ref355.apply(this, arguments);
|
|
3785
3786
|
};
|
|
3786
3787
|
}();
|
|
@@ -3789,7 +3790,7 @@ var set_role_users = exports.set_role_users = function () {
|
|
|
3789
3790
|
role_id = (0, _sdkRtl.encodeParam)(role_id);
|
|
3790
3791
|
return sdk.put("/roles/".concat(role_id, "/users"), null, body, options);
|
|
3791
3792
|
});
|
|
3792
|
-
return function set_role_users(
|
|
3793
|
+
return function set_role_users(_x1210, _x1211, _x1212, _x1213) {
|
|
3793
3794
|
return _ref356.apply(this, arguments);
|
|
3794
3795
|
};
|
|
3795
3796
|
}();
|
|
@@ -3800,7 +3801,7 @@ var scheduled_plans_for_space = exports.scheduled_plans_for_space = function ()
|
|
|
3800
3801
|
fields
|
|
3801
3802
|
}, null, options);
|
|
3802
3803
|
});
|
|
3803
|
-
return function scheduled_plans_for_space(
|
|
3804
|
+
return function scheduled_plans_for_space(_x1214, _x1215, _x1216, _x1217) {
|
|
3804
3805
|
return _ref357.apply(this, arguments);
|
|
3805
3806
|
};
|
|
3806
3807
|
}();
|
|
@@ -3811,7 +3812,7 @@ var scheduled_plan = exports.scheduled_plan = function () {
|
|
|
3811
3812
|
fields
|
|
3812
3813
|
}, null, options);
|
|
3813
3814
|
});
|
|
3814
|
-
return function scheduled_plan(
|
|
3815
|
+
return function scheduled_plan(_x1218, _x1219, _x1220, _x1221) {
|
|
3815
3816
|
return _ref358.apply(this, arguments);
|
|
3816
3817
|
};
|
|
3817
3818
|
}();
|
|
@@ -3820,7 +3821,7 @@ var update_scheduled_plan = exports.update_scheduled_plan = function () {
|
|
|
3820
3821
|
scheduled_plan_id = (0, _sdkRtl.encodeParam)(scheduled_plan_id);
|
|
3821
3822
|
return sdk.patch("/scheduled_plans/".concat(scheduled_plan_id), null, body, options);
|
|
3822
3823
|
});
|
|
3823
|
-
return function update_scheduled_plan(
|
|
3824
|
+
return function update_scheduled_plan(_x1222, _x1223, _x1224, _x1225) {
|
|
3824
3825
|
return _ref359.apply(this, arguments);
|
|
3825
3826
|
};
|
|
3826
3827
|
}();
|
|
@@ -3829,7 +3830,7 @@ var delete_scheduled_plan = exports.delete_scheduled_plan = function () {
|
|
|
3829
3830
|
scheduled_plan_id = (0, _sdkRtl.encodeParam)(scheduled_plan_id);
|
|
3830
3831
|
return sdk.delete("/scheduled_plans/".concat(scheduled_plan_id), null, null, options);
|
|
3831
3832
|
});
|
|
3832
|
-
return function delete_scheduled_plan(
|
|
3833
|
+
return function delete_scheduled_plan(_x1226, _x1227, _x1228) {
|
|
3833
3834
|
return _ref360.apply(this, arguments);
|
|
3834
3835
|
};
|
|
3835
3836
|
}();
|
|
@@ -3841,7 +3842,7 @@ var all_scheduled_plans = exports.all_scheduled_plans = function () {
|
|
|
3841
3842
|
all_users: request.all_users
|
|
3842
3843
|
}, null, options);
|
|
3843
3844
|
});
|
|
3844
|
-
return function all_scheduled_plans(
|
|
3845
|
+
return function all_scheduled_plans(_x1229, _x1230, _x1231) {
|
|
3845
3846
|
return _ref361.apply(this, arguments);
|
|
3846
3847
|
};
|
|
3847
3848
|
}();
|
|
@@ -3849,7 +3850,7 @@ var create_scheduled_plan = exports.create_scheduled_plan = function () {
|
|
|
3849
3850
|
var _ref362 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3850
3851
|
return sdk.post('/scheduled_plans', null, body, options);
|
|
3851
3852
|
});
|
|
3852
|
-
return function create_scheduled_plan(
|
|
3853
|
+
return function create_scheduled_plan(_x1232, _x1233, _x1234) {
|
|
3853
3854
|
return _ref362.apply(this, arguments);
|
|
3854
3855
|
};
|
|
3855
3856
|
}();
|
|
@@ -3857,7 +3858,7 @@ var scheduled_plan_run_once = exports.scheduled_plan_run_once = function () {
|
|
|
3857
3858
|
var _ref363 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3858
3859
|
return sdk.post('/scheduled_plans/run_once', null, body, options);
|
|
3859
3860
|
});
|
|
3860
|
-
return function scheduled_plan_run_once(
|
|
3861
|
+
return function scheduled_plan_run_once(_x1235, _x1236, _x1237) {
|
|
3861
3862
|
return _ref363.apply(this, arguments);
|
|
3862
3863
|
};
|
|
3863
3864
|
}();
|
|
@@ -3882,7 +3883,7 @@ var search_scheduled_plans = exports.search_scheduled_plans = function () {
|
|
|
3882
3883
|
filter_or: request.filter_or
|
|
3883
3884
|
}, null, options);
|
|
3884
3885
|
});
|
|
3885
|
-
return function search_scheduled_plans(
|
|
3886
|
+
return function search_scheduled_plans(_x1238, _x1239, _x1240) {
|
|
3886
3887
|
return _ref364.apply(this, arguments);
|
|
3887
3888
|
};
|
|
3888
3889
|
}();
|
|
@@ -3895,7 +3896,7 @@ var scheduled_plans_for_look = exports.scheduled_plans_for_look = function () {
|
|
|
3895
3896
|
all_users: request.all_users
|
|
3896
3897
|
}, null, options);
|
|
3897
3898
|
});
|
|
3898
|
-
return function scheduled_plans_for_look(
|
|
3899
|
+
return function scheduled_plans_for_look(_x1241, _x1242, _x1243) {
|
|
3899
3900
|
return _ref365.apply(this, arguments);
|
|
3900
3901
|
};
|
|
3901
3902
|
}();
|
|
@@ -3908,7 +3909,7 @@ var scheduled_plans_for_dashboard = exports.scheduled_plans_for_dashboard = func
|
|
|
3908
3909
|
fields: request.fields
|
|
3909
3910
|
}, null, options);
|
|
3910
3911
|
});
|
|
3911
|
-
return function scheduled_plans_for_dashboard(
|
|
3912
|
+
return function scheduled_plans_for_dashboard(_x1244, _x1245, _x1246) {
|
|
3912
3913
|
return _ref366.apply(this, arguments);
|
|
3913
3914
|
};
|
|
3914
3915
|
}();
|
|
@@ -3921,7 +3922,7 @@ var scheduled_plans_for_lookml_dashboard = exports.scheduled_plans_for_lookml_da
|
|
|
3921
3922
|
all_users: request.all_users
|
|
3922
3923
|
}, null, options);
|
|
3923
3924
|
});
|
|
3924
|
-
return function scheduled_plans_for_lookml_dashboard(
|
|
3925
|
+
return function scheduled_plans_for_lookml_dashboard(_x1247, _x1248, _x1249) {
|
|
3925
3926
|
return _ref367.apply(this, arguments);
|
|
3926
3927
|
};
|
|
3927
3928
|
}();
|
|
@@ -3930,7 +3931,7 @@ var scheduled_plan_run_once_by_id = exports.scheduled_plan_run_once_by_id = func
|
|
|
3930
3931
|
scheduled_plan_id = (0, _sdkRtl.encodeParam)(scheduled_plan_id);
|
|
3931
3932
|
return sdk.post("/scheduled_plans/".concat(scheduled_plan_id, "/run_once"), null, body, options);
|
|
3932
3933
|
});
|
|
3933
|
-
return function scheduled_plan_run_once_by_id(
|
|
3934
|
+
return function scheduled_plan_run_once_by_id(_x1250, _x1251, _x1252, _x1253) {
|
|
3934
3935
|
return _ref368.apply(this, arguments);
|
|
3935
3936
|
};
|
|
3936
3937
|
}();
|
|
@@ -3938,7 +3939,7 @@ var session = exports.session = function () {
|
|
|
3938
3939
|
var _ref369 = _asyncToGenerator(function* (sdk, options) {
|
|
3939
3940
|
return sdk.get('/session', null, null, options);
|
|
3940
3941
|
});
|
|
3941
|
-
return function session(
|
|
3942
|
+
return function session(_x1254, _x1255) {
|
|
3942
3943
|
return _ref369.apply(this, arguments);
|
|
3943
3944
|
};
|
|
3944
3945
|
}();
|
|
@@ -3946,7 +3947,7 @@ var update_session = exports.update_session = function () {
|
|
|
3946
3947
|
var _ref370 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3947
3948
|
return sdk.patch('/session', null, body, options);
|
|
3948
3949
|
});
|
|
3949
|
-
return function update_session(
|
|
3950
|
+
return function update_session(_x1256, _x1257, _x1258) {
|
|
3950
3951
|
return _ref370.apply(this, arguments);
|
|
3951
3952
|
};
|
|
3952
3953
|
}();
|
|
@@ -3956,7 +3957,7 @@ var sql_interface_metadata = exports.sql_interface_metadata = function () {
|
|
|
3956
3957
|
avatica_request
|
|
3957
3958
|
}, null, options);
|
|
3958
3959
|
});
|
|
3959
|
-
return function sql_interface_metadata(
|
|
3960
|
+
return function sql_interface_metadata(_x1259, _x1260, _x1261) {
|
|
3960
3961
|
return _ref371.apply(this, arguments);
|
|
3961
3962
|
};
|
|
3962
3963
|
}();
|
|
@@ -3965,7 +3966,7 @@ var run_sql_interface_query = exports.run_sql_interface_query = function () {
|
|
|
3965
3966
|
result_format = (0, _sdkRtl.encodeParam)(result_format);
|
|
3966
3967
|
return sdk.get("/sql_interface_queries/".concat(query_id, "/run/").concat(result_format), null, null, options);
|
|
3967
3968
|
});
|
|
3968
|
-
return function run_sql_interface_query(
|
|
3969
|
+
return function run_sql_interface_query(_x1262, _x1263, _x1264, _x1265) {
|
|
3969
3970
|
return _ref372.apply(this, arguments);
|
|
3970
3971
|
};
|
|
3971
3972
|
}();
|
|
@@ -3973,7 +3974,7 @@ var create_sql_interface_query = exports.create_sql_interface_query = function (
|
|
|
3973
3974
|
var _ref373 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3974
3975
|
return sdk.post('/sql_interface_queries', null, body, options);
|
|
3975
3976
|
});
|
|
3976
|
-
return function create_sql_interface_query(
|
|
3977
|
+
return function create_sql_interface_query(_x1266, _x1267, _x1268) {
|
|
3977
3978
|
return _ref373.apply(this, arguments);
|
|
3978
3979
|
};
|
|
3979
3980
|
}();
|
|
@@ -3983,7 +3984,7 @@ var all_themes = exports.all_themes = function () {
|
|
|
3983
3984
|
fields
|
|
3984
3985
|
}, null, options);
|
|
3985
3986
|
});
|
|
3986
|
-
return function all_themes(
|
|
3987
|
+
return function all_themes(_x1269, _x1270, _x1271) {
|
|
3987
3988
|
return _ref374.apply(this, arguments);
|
|
3988
3989
|
};
|
|
3989
3990
|
}();
|
|
@@ -3991,7 +3992,7 @@ var create_theme = exports.create_theme = function () {
|
|
|
3991
3992
|
var _ref375 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3992
3993
|
return sdk.post('/themes', null, body, options);
|
|
3993
3994
|
});
|
|
3994
|
-
return function create_theme(
|
|
3995
|
+
return function create_theme(_x1272, _x1273, _x1274) {
|
|
3995
3996
|
return _ref375.apply(this, arguments);
|
|
3996
3997
|
};
|
|
3997
3998
|
}();
|
|
@@ -4009,7 +4010,7 @@ var search_themes = exports.search_themes = function () {
|
|
|
4009
4010
|
filter_or: request.filter_or
|
|
4010
4011
|
}, null, options);
|
|
4011
4012
|
});
|
|
4012
|
-
return function search_themes(
|
|
4013
|
+
return function search_themes(_x1275, _x1276, _x1277) {
|
|
4013
4014
|
return _ref376.apply(this, arguments);
|
|
4014
4015
|
};
|
|
4015
4016
|
}();
|
|
@@ -4019,7 +4020,7 @@ var default_theme = exports.default_theme = function () {
|
|
|
4019
4020
|
ts
|
|
4020
4021
|
}, null, options);
|
|
4021
4022
|
});
|
|
4022
|
-
return function default_theme(
|
|
4023
|
+
return function default_theme(_x1278, _x1279, _x1280) {
|
|
4023
4024
|
return _ref377.apply(this, arguments);
|
|
4024
4025
|
};
|
|
4025
4026
|
}();
|
|
@@ -4029,7 +4030,7 @@ var set_default_theme = exports.set_default_theme = function () {
|
|
|
4029
4030
|
name
|
|
4030
4031
|
}, null, options);
|
|
4031
4032
|
});
|
|
4032
|
-
return function set_default_theme(
|
|
4033
|
+
return function set_default_theme(_x1281, _x1282, _x1283) {
|
|
4033
4034
|
return _ref378.apply(this, arguments);
|
|
4034
4035
|
};
|
|
4035
4036
|
}();
|
|
@@ -4041,7 +4042,7 @@ var active_themes = exports.active_themes = function () {
|
|
|
4041
4042
|
fields: request.fields
|
|
4042
4043
|
}, null, options);
|
|
4043
4044
|
});
|
|
4044
|
-
return function active_themes(
|
|
4045
|
+
return function active_themes(_x1284, _x1285, _x1286) {
|
|
4045
4046
|
return _ref379.apply(this, arguments);
|
|
4046
4047
|
};
|
|
4047
4048
|
}();
|
|
@@ -4052,7 +4053,7 @@ var theme_or_default = exports.theme_or_default = function () {
|
|
|
4052
4053
|
ts
|
|
4053
4054
|
}, null, options);
|
|
4054
4055
|
});
|
|
4055
|
-
return function theme_or_default(
|
|
4056
|
+
return function theme_or_default(_x1287, _x1288, _x1289, _x1290) {
|
|
4056
4057
|
return _ref380.apply(this, arguments);
|
|
4057
4058
|
};
|
|
4058
4059
|
}();
|
|
@@ -4060,7 +4061,7 @@ var validate_theme = exports.validate_theme = function () {
|
|
|
4060
4061
|
var _ref381 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4061
4062
|
return sdk.post('/themes/validate', null, body, options);
|
|
4062
4063
|
});
|
|
4063
|
-
return function validate_theme(
|
|
4064
|
+
return function validate_theme(_x1291, _x1292, _x1293) {
|
|
4064
4065
|
return _ref381.apply(this, arguments);
|
|
4065
4066
|
};
|
|
4066
4067
|
}();
|
|
@@ -4071,7 +4072,7 @@ var theme = exports.theme = function () {
|
|
|
4071
4072
|
fields
|
|
4072
4073
|
}, null, options);
|
|
4073
4074
|
});
|
|
4074
|
-
return function theme(
|
|
4075
|
+
return function theme(_x1294, _x1295, _x1296, _x1297) {
|
|
4075
4076
|
return _ref382.apply(this, arguments);
|
|
4076
4077
|
};
|
|
4077
4078
|
}();
|
|
@@ -4080,7 +4081,7 @@ var update_theme = exports.update_theme = function () {
|
|
|
4080
4081
|
theme_id = (0, _sdkRtl.encodeParam)(theme_id);
|
|
4081
4082
|
return sdk.patch("/themes/".concat(theme_id), null, body, options);
|
|
4082
4083
|
});
|
|
4083
|
-
return function update_theme(
|
|
4084
|
+
return function update_theme(_x1298, _x1299, _x1300, _x1301) {
|
|
4084
4085
|
return _ref383.apply(this, arguments);
|
|
4085
4086
|
};
|
|
4086
4087
|
}();
|
|
@@ -4089,7 +4090,7 @@ var delete_theme = exports.delete_theme = function () {
|
|
|
4089
4090
|
theme_id = (0, _sdkRtl.encodeParam)(theme_id);
|
|
4090
4091
|
return sdk.delete("/themes/".concat(theme_id), null, null, options);
|
|
4091
4092
|
});
|
|
4092
|
-
return function delete_theme(
|
|
4093
|
+
return function delete_theme(_x1302, _x1303, _x1304) {
|
|
4093
4094
|
return _ref384.apply(this, arguments);
|
|
4094
4095
|
};
|
|
4095
4096
|
}();
|
|
@@ -4106,7 +4107,7 @@ var search_credentials_email = exports.search_credentials_email = function () {
|
|
|
4106
4107
|
filter_or: request.filter_or
|
|
4107
4108
|
}, null, options);
|
|
4108
4109
|
});
|
|
4109
|
-
return function search_credentials_email(
|
|
4110
|
+
return function search_credentials_email(_x1305, _x1306, _x1307) {
|
|
4110
4111
|
return _ref385.apply(this, arguments);
|
|
4111
4112
|
};
|
|
4112
4113
|
}();
|
|
@@ -4116,7 +4117,7 @@ var me = exports.me = function () {
|
|
|
4116
4117
|
fields
|
|
4117
4118
|
}, null, options);
|
|
4118
4119
|
});
|
|
4119
|
-
return function me(
|
|
4120
|
+
return function me(_x1308, _x1309, _x1310) {
|
|
4120
4121
|
return _ref386.apply(this, arguments);
|
|
4121
4122
|
};
|
|
4122
4123
|
}();
|
|
@@ -4132,7 +4133,7 @@ var all_users = exports.all_users = function () {
|
|
|
4132
4133
|
ids: request.ids
|
|
4133
4134
|
}, null, options);
|
|
4134
4135
|
});
|
|
4135
|
-
return function all_users(
|
|
4136
|
+
return function all_users(_x1311, _x1312, _x1313) {
|
|
4136
4137
|
return _ref387.apply(this, arguments);
|
|
4137
4138
|
};
|
|
4138
4139
|
}();
|
|
@@ -4142,7 +4143,7 @@ var create_user = exports.create_user = function () {
|
|
|
4142
4143
|
fields
|
|
4143
4144
|
}, body, options);
|
|
4144
4145
|
});
|
|
4145
|
-
return function create_user(
|
|
4146
|
+
return function create_user(_x1314, _x1315, _x1316, _x1317) {
|
|
4146
4147
|
return _ref388.apply(this, arguments);
|
|
4147
4148
|
};
|
|
4148
4149
|
}();
|
|
@@ -4167,7 +4168,7 @@ var search_users = exports.search_users = function () {
|
|
|
4167
4168
|
group_id: request.group_id
|
|
4168
4169
|
}, null, options);
|
|
4169
4170
|
});
|
|
4170
|
-
return function search_users(
|
|
4171
|
+
return function search_users(_x1318, _x1319, _x1320) {
|
|
4171
4172
|
return _ref389.apply(this, arguments);
|
|
4172
4173
|
};
|
|
4173
4174
|
}();
|
|
@@ -4189,7 +4190,7 @@ var search_users_names = exports.search_users_names = function () {
|
|
|
4189
4190
|
is_disabled: request.is_disabled
|
|
4190
4191
|
}, null, options);
|
|
4191
4192
|
});
|
|
4192
|
-
return function search_users_names(
|
|
4193
|
+
return function search_users_names(_x1321, _x1322, _x1323) {
|
|
4193
4194
|
return _ref390.apply(this, arguments);
|
|
4194
4195
|
};
|
|
4195
4196
|
}();
|
|
@@ -4200,7 +4201,7 @@ var user = exports.user = function () {
|
|
|
4200
4201
|
fields
|
|
4201
4202
|
}, null, options);
|
|
4202
4203
|
});
|
|
4203
|
-
return function user(
|
|
4204
|
+
return function user(_x1324, _x1325, _x1326, _x1327) {
|
|
4204
4205
|
return _ref391.apply(this, arguments);
|
|
4205
4206
|
};
|
|
4206
4207
|
}();
|
|
@@ -4211,7 +4212,7 @@ var update_user = exports.update_user = function () {
|
|
|
4211
4212
|
fields
|
|
4212
4213
|
}, body, options);
|
|
4213
4214
|
});
|
|
4214
|
-
return function update_user(
|
|
4215
|
+
return function update_user(_x1328, _x1329, _x1330, _x1331, _x1332) {
|
|
4215
4216
|
return _ref392.apply(this, arguments);
|
|
4216
4217
|
};
|
|
4217
4218
|
}();
|
|
@@ -4220,7 +4221,7 @@ var delete_user = exports.delete_user = function () {
|
|
|
4220
4221
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4221
4222
|
return sdk.delete("/users/".concat(user_id), null, null, options);
|
|
4222
4223
|
});
|
|
4223
|
-
return function delete_user(
|
|
4224
|
+
return function delete_user(_x1333, _x1334, _x1335) {
|
|
4224
4225
|
return _ref393.apply(this, arguments);
|
|
4225
4226
|
};
|
|
4226
4227
|
}();
|
|
@@ -4232,7 +4233,7 @@ var user_for_credential = exports.user_for_credential = function () {
|
|
|
4232
4233
|
fields
|
|
4233
4234
|
}, null, options);
|
|
4234
4235
|
});
|
|
4235
|
-
return function user_for_credential(
|
|
4236
|
+
return function user_for_credential(_x1336, _x1337, _x1338, _x1339, _x1340) {
|
|
4236
4237
|
return _ref394.apply(this, arguments);
|
|
4237
4238
|
};
|
|
4238
4239
|
}();
|
|
@@ -4243,7 +4244,7 @@ var user_credentials_email = exports.user_credentials_email = function () {
|
|
|
4243
4244
|
fields
|
|
4244
4245
|
}, null, options);
|
|
4245
4246
|
});
|
|
4246
|
-
return function user_credentials_email(
|
|
4247
|
+
return function user_credentials_email(_x1341, _x1342, _x1343, _x1344) {
|
|
4247
4248
|
return _ref395.apply(this, arguments);
|
|
4248
4249
|
};
|
|
4249
4250
|
}();
|
|
@@ -4254,7 +4255,7 @@ var create_user_credentials_email = exports.create_user_credentials_email = func
|
|
|
4254
4255
|
fields
|
|
4255
4256
|
}, body, options);
|
|
4256
4257
|
});
|
|
4257
|
-
return function create_user_credentials_email(
|
|
4258
|
+
return function create_user_credentials_email(_x1345, _x1346, _x1347, _x1348, _x1349) {
|
|
4258
4259
|
return _ref396.apply(this, arguments);
|
|
4259
4260
|
};
|
|
4260
4261
|
}();
|
|
@@ -4265,7 +4266,7 @@ var update_user_credentials_email = exports.update_user_credentials_email = func
|
|
|
4265
4266
|
fields
|
|
4266
4267
|
}, body, options);
|
|
4267
4268
|
});
|
|
4268
|
-
return function update_user_credentials_email(
|
|
4269
|
+
return function update_user_credentials_email(_x1350, _x1351, _x1352, _x1353, _x1354) {
|
|
4269
4270
|
return _ref397.apply(this, arguments);
|
|
4270
4271
|
};
|
|
4271
4272
|
}();
|
|
@@ -4274,7 +4275,7 @@ var delete_user_credentials_email = exports.delete_user_credentials_email = func
|
|
|
4274
4275
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4275
4276
|
return sdk.delete("/users/".concat(user_id, "/credentials_email"), null, null, options);
|
|
4276
4277
|
});
|
|
4277
|
-
return function delete_user_credentials_email(
|
|
4278
|
+
return function delete_user_credentials_email(_x1355, _x1356, _x1357) {
|
|
4278
4279
|
return _ref398.apply(this, arguments);
|
|
4279
4280
|
};
|
|
4280
4281
|
}();
|
|
@@ -4285,7 +4286,7 @@ var user_credentials_totp = exports.user_credentials_totp = function () {
|
|
|
4285
4286
|
fields
|
|
4286
4287
|
}, null, options);
|
|
4287
4288
|
});
|
|
4288
|
-
return function user_credentials_totp(
|
|
4289
|
+
return function user_credentials_totp(_x1358, _x1359, _x1360, _x1361) {
|
|
4289
4290
|
return _ref399.apply(this, arguments);
|
|
4290
4291
|
};
|
|
4291
4292
|
}();
|
|
@@ -4296,7 +4297,7 @@ var create_user_credentials_totp = exports.create_user_credentials_totp = functi
|
|
|
4296
4297
|
fields
|
|
4297
4298
|
}, body, options);
|
|
4298
4299
|
});
|
|
4299
|
-
return function create_user_credentials_totp(
|
|
4300
|
+
return function create_user_credentials_totp(_x1362, _x1363, _x1364, _x1365, _x1366) {
|
|
4300
4301
|
return _ref400.apply(this, arguments);
|
|
4301
4302
|
};
|
|
4302
4303
|
}();
|
|
@@ -4305,7 +4306,7 @@ var delete_user_credentials_totp = exports.delete_user_credentials_totp = functi
|
|
|
4305
4306
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4306
4307
|
return sdk.delete("/users/".concat(user_id, "/credentials_totp"), null, null, options);
|
|
4307
4308
|
});
|
|
4308
|
-
return function delete_user_credentials_totp(
|
|
4309
|
+
return function delete_user_credentials_totp(_x1367, _x1368, _x1369) {
|
|
4309
4310
|
return _ref401.apply(this, arguments);
|
|
4310
4311
|
};
|
|
4311
4312
|
}();
|
|
@@ -4316,7 +4317,7 @@ var user_credentials_ldap = exports.user_credentials_ldap = function () {
|
|
|
4316
4317
|
fields
|
|
4317
4318
|
}, null, options);
|
|
4318
4319
|
});
|
|
4319
|
-
return function user_credentials_ldap(
|
|
4320
|
+
return function user_credentials_ldap(_x1370, _x1371, _x1372, _x1373) {
|
|
4320
4321
|
return _ref402.apply(this, arguments);
|
|
4321
4322
|
};
|
|
4322
4323
|
}();
|
|
@@ -4325,7 +4326,7 @@ var delete_user_credentials_ldap = exports.delete_user_credentials_ldap = functi
|
|
|
4325
4326
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4326
4327
|
return sdk.delete("/users/".concat(user_id, "/credentials_ldap"), null, null, options);
|
|
4327
4328
|
});
|
|
4328
|
-
return function delete_user_credentials_ldap(
|
|
4329
|
+
return function delete_user_credentials_ldap(_x1374, _x1375, _x1376) {
|
|
4329
4330
|
return _ref403.apply(this, arguments);
|
|
4330
4331
|
};
|
|
4331
4332
|
}();
|
|
@@ -4336,7 +4337,7 @@ var user_credentials_google = exports.user_credentials_google = function () {
|
|
|
4336
4337
|
fields
|
|
4337
4338
|
}, null, options);
|
|
4338
4339
|
});
|
|
4339
|
-
return function user_credentials_google(
|
|
4340
|
+
return function user_credentials_google(_x1377, _x1378, _x1379, _x1380) {
|
|
4340
4341
|
return _ref404.apply(this, arguments);
|
|
4341
4342
|
};
|
|
4342
4343
|
}();
|
|
@@ -4345,7 +4346,7 @@ var delete_user_credentials_google = exports.delete_user_credentials_google = fu
|
|
|
4345
4346
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4346
4347
|
return sdk.delete("/users/".concat(user_id, "/credentials_google"), null, null, options);
|
|
4347
4348
|
});
|
|
4348
|
-
return function delete_user_credentials_google(
|
|
4349
|
+
return function delete_user_credentials_google(_x1381, _x1382, _x1383) {
|
|
4349
4350
|
return _ref405.apply(this, arguments);
|
|
4350
4351
|
};
|
|
4351
4352
|
}();
|
|
@@ -4356,7 +4357,7 @@ var user_credentials_saml = exports.user_credentials_saml = function () {
|
|
|
4356
4357
|
fields
|
|
4357
4358
|
}, null, options);
|
|
4358
4359
|
});
|
|
4359
|
-
return function user_credentials_saml(
|
|
4360
|
+
return function user_credentials_saml(_x1384, _x1385, _x1386, _x1387) {
|
|
4360
4361
|
return _ref406.apply(this, arguments);
|
|
4361
4362
|
};
|
|
4362
4363
|
}();
|
|
@@ -4365,7 +4366,7 @@ var delete_user_credentials_saml = exports.delete_user_credentials_saml = functi
|
|
|
4365
4366
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4366
4367
|
return sdk.delete("/users/".concat(user_id, "/credentials_saml"), null, null, options);
|
|
4367
4368
|
});
|
|
4368
|
-
return function delete_user_credentials_saml(
|
|
4369
|
+
return function delete_user_credentials_saml(_x1388, _x1389, _x1390) {
|
|
4369
4370
|
return _ref407.apply(this, arguments);
|
|
4370
4371
|
};
|
|
4371
4372
|
}();
|
|
@@ -4376,7 +4377,7 @@ var user_credentials_oidc = exports.user_credentials_oidc = function () {
|
|
|
4376
4377
|
fields
|
|
4377
4378
|
}, null, options);
|
|
4378
4379
|
});
|
|
4379
|
-
return function user_credentials_oidc(
|
|
4380
|
+
return function user_credentials_oidc(_x1391, _x1392, _x1393, _x1394) {
|
|
4380
4381
|
return _ref408.apply(this, arguments);
|
|
4381
4382
|
};
|
|
4382
4383
|
}();
|
|
@@ -4385,7 +4386,7 @@ var delete_user_credentials_oidc = exports.delete_user_credentials_oidc = functi
|
|
|
4385
4386
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4386
4387
|
return sdk.delete("/users/".concat(user_id, "/credentials_oidc"), null, null, options);
|
|
4387
4388
|
});
|
|
4388
|
-
return function delete_user_credentials_oidc(
|
|
4389
|
+
return function delete_user_credentials_oidc(_x1395, _x1396, _x1397) {
|
|
4389
4390
|
return _ref409.apply(this, arguments);
|
|
4390
4391
|
};
|
|
4391
4392
|
}();
|
|
@@ -4397,7 +4398,7 @@ var user_credentials_api3 = exports.user_credentials_api3 = function () {
|
|
|
4397
4398
|
fields
|
|
4398
4399
|
}, null, options);
|
|
4399
4400
|
});
|
|
4400
|
-
return function user_credentials_api3(
|
|
4401
|
+
return function user_credentials_api3(_x1398, _x1399, _x1400, _x1401, _x1402) {
|
|
4401
4402
|
return _ref410.apply(this, arguments);
|
|
4402
4403
|
};
|
|
4403
4404
|
}();
|
|
@@ -4407,7 +4408,7 @@ var delete_user_credentials_api3 = exports.delete_user_credentials_api3 = functi
|
|
|
4407
4408
|
credentials_api3_id = (0, _sdkRtl.encodeParam)(credentials_api3_id);
|
|
4408
4409
|
return sdk.delete("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), null, null, options);
|
|
4409
4410
|
});
|
|
4410
|
-
return function delete_user_credentials_api3(
|
|
4411
|
+
return function delete_user_credentials_api3(_x1403, _x1404, _x1405, _x1406) {
|
|
4411
4412
|
return _ref411.apply(this, arguments);
|
|
4412
4413
|
};
|
|
4413
4414
|
}();
|
|
@@ -4418,7 +4419,7 @@ var all_user_credentials_api3s = exports.all_user_credentials_api3s = function (
|
|
|
4418
4419
|
fields
|
|
4419
4420
|
}, null, options);
|
|
4420
4421
|
});
|
|
4421
|
-
return function all_user_credentials_api3s(
|
|
4422
|
+
return function all_user_credentials_api3s(_x1407, _x1408, _x1409, _x1410) {
|
|
4422
4423
|
return _ref412.apply(this, arguments);
|
|
4423
4424
|
};
|
|
4424
4425
|
}();
|
|
@@ -4429,7 +4430,7 @@ var create_user_credentials_api3 = exports.create_user_credentials_api3 = functi
|
|
|
4429
4430
|
fields
|
|
4430
4431
|
}, null, options);
|
|
4431
4432
|
});
|
|
4432
|
-
return function create_user_credentials_api3(
|
|
4433
|
+
return function create_user_credentials_api3(_x1411, _x1412, _x1413, _x1414) {
|
|
4433
4434
|
return _ref413.apply(this, arguments);
|
|
4434
4435
|
};
|
|
4435
4436
|
}();
|
|
@@ -4441,7 +4442,7 @@ var user_credentials_embed = exports.user_credentials_embed = function () {
|
|
|
4441
4442
|
fields
|
|
4442
4443
|
}, null, options);
|
|
4443
4444
|
});
|
|
4444
|
-
return function user_credentials_embed(
|
|
4445
|
+
return function user_credentials_embed(_x1415, _x1416, _x1417, _x1418, _x1419) {
|
|
4445
4446
|
return _ref414.apply(this, arguments);
|
|
4446
4447
|
};
|
|
4447
4448
|
}();
|
|
@@ -4451,7 +4452,7 @@ var delete_user_credentials_embed = exports.delete_user_credentials_embed = func
|
|
|
4451
4452
|
credentials_embed_id = (0, _sdkRtl.encodeParam)(credentials_embed_id);
|
|
4452
4453
|
return sdk.delete("/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), null, null, options);
|
|
4453
4454
|
});
|
|
4454
|
-
return function delete_user_credentials_embed(
|
|
4455
|
+
return function delete_user_credentials_embed(_x1420, _x1421, _x1422, _x1423) {
|
|
4455
4456
|
return _ref415.apply(this, arguments);
|
|
4456
4457
|
};
|
|
4457
4458
|
}();
|
|
@@ -4462,7 +4463,7 @@ var all_user_credentials_embeds = exports.all_user_credentials_embeds = function
|
|
|
4462
4463
|
fields
|
|
4463
4464
|
}, null, options);
|
|
4464
4465
|
});
|
|
4465
|
-
return function all_user_credentials_embeds(
|
|
4466
|
+
return function all_user_credentials_embeds(_x1424, _x1425, _x1426, _x1427) {
|
|
4466
4467
|
return _ref416.apply(this, arguments);
|
|
4467
4468
|
};
|
|
4468
4469
|
}();
|
|
@@ -4473,7 +4474,7 @@ var user_credentials_looker_openid = exports.user_credentials_looker_openid = fu
|
|
|
4473
4474
|
fields
|
|
4474
4475
|
}, null, options);
|
|
4475
4476
|
});
|
|
4476
|
-
return function user_credentials_looker_openid(
|
|
4477
|
+
return function user_credentials_looker_openid(_x1428, _x1429, _x1430, _x1431) {
|
|
4477
4478
|
return _ref417.apply(this, arguments);
|
|
4478
4479
|
};
|
|
4479
4480
|
}();
|
|
@@ -4482,7 +4483,7 @@ var delete_user_credentials_looker_openid = exports.delete_user_credentials_look
|
|
|
4482
4483
|
user_id = (0, _sdkRtl.encodeParam)(user_id);
|
|
4483
4484
|
return sdk.delete("/users/".concat(user_id, "/credentials_looker_openid"), null, null, options);
|
|
4484
4485
|
});
|
|
4485
|
-
return function delete_user_credentials_looker_openid(
|
|
4486
|
+
return function delete_user_credentials_looker_openid(_x1432, _x1433, _x1434) {
|
|
4486
4487
|
return _ref418.apply(this, arguments);
|
|
4487
4488
|
};
|
|
4488
4489
|
}();
|
|
@@ -4494,7 +4495,7 @@ var user_session = exports.user_session = function () {
|
|
|
4494
4495
|
fields
|
|
4495
4496
|
}, null, options);
|
|
4496
4497
|
});
|
|
4497
|
-
return function user_session(
|
|
4498
|
+
return function user_session(_x1435, _x1436, _x1437, _x1438, _x1439) {
|
|
4498
4499
|
return _ref419.apply(this, arguments);
|
|
4499
4500
|
};
|
|
4500
4501
|
}();
|
|
@@ -4504,7 +4505,7 @@ var delete_user_session = exports.delete_user_session = function () {
|
|
|
4504
4505
|
session_id = (0, _sdkRtl.encodeParam)(session_id);
|
|
4505
4506
|
return sdk.delete("/users/".concat(user_id, "/sessions/").concat(session_id), null, null, options);
|
|
4506
4507
|
});
|
|
4507
|
-
return function delete_user_session(
|
|
4508
|
+
return function delete_user_session(_x1440, _x1441, _x1442, _x1443) {
|
|
4508
4509
|
return _ref420.apply(this, arguments);
|
|
4509
4510
|
};
|
|
4510
4511
|
}();
|
|
@@ -4515,7 +4516,7 @@ var all_user_sessions = exports.all_user_sessions = function () {
|
|
|
4515
4516
|
fields
|
|
4516
4517
|
}, null, options);
|
|
4517
4518
|
});
|
|
4518
|
-
return function all_user_sessions(
|
|
4519
|
+
return function all_user_sessions(_x1444, _x1445, _x1446, _x1447) {
|
|
4519
4520
|
return _ref421.apply(this, arguments);
|
|
4520
4521
|
};
|
|
4521
4522
|
}();
|
|
@@ -4527,7 +4528,7 @@ var create_user_credentials_email_password_reset = exports.create_user_credentia
|
|
|
4527
4528
|
fields: request.fields
|
|
4528
4529
|
}, null, options);
|
|
4529
4530
|
});
|
|
4530
|
-
return function create_user_credentials_email_password_reset(
|
|
4531
|
+
return function create_user_credentials_email_password_reset(_x1448, _x1449, _x1450) {
|
|
4531
4532
|
return _ref422.apply(this, arguments);
|
|
4532
4533
|
};
|
|
4533
4534
|
}();
|
|
@@ -4539,7 +4540,7 @@ var user_roles = exports.user_roles = function () {
|
|
|
4539
4540
|
direct_association_only: request.direct_association_only
|
|
4540
4541
|
}, null, options);
|
|
4541
4542
|
});
|
|
4542
|
-
return function user_roles(
|
|
4543
|
+
return function user_roles(_x1451, _x1452, _x1453) {
|
|
4543
4544
|
return _ref423.apply(this, arguments);
|
|
4544
4545
|
};
|
|
4545
4546
|
}();
|
|
@@ -4550,7 +4551,7 @@ var set_user_roles = exports.set_user_roles = function () {
|
|
|
4550
4551
|
fields
|
|
4551
4552
|
}, body, options);
|
|
4552
4553
|
});
|
|
4553
|
-
return function set_user_roles(
|
|
4554
|
+
return function set_user_roles(_x1454, _x1455, _x1456, _x1457, _x1458) {
|
|
4554
4555
|
return _ref424.apply(this, arguments);
|
|
4555
4556
|
};
|
|
4556
4557
|
}();
|
|
@@ -4564,7 +4565,7 @@ var user_attribute_user_values = exports.user_attribute_user_values = function (
|
|
|
4564
4565
|
include_unset: request.include_unset
|
|
4565
4566
|
}, null, options);
|
|
4566
4567
|
});
|
|
4567
|
-
return function user_attribute_user_values(
|
|
4568
|
+
return function user_attribute_user_values(_x1459, _x1460, _x1461) {
|
|
4568
4569
|
return _ref425.apply(this, arguments);
|
|
4569
4570
|
};
|
|
4570
4571
|
}();
|
|
@@ -4574,7 +4575,7 @@ var set_user_attribute_user_value = exports.set_user_attribute_user_value = func
|
|
|
4574
4575
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
4575
4576
|
return sdk.patch("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
|
|
4576
4577
|
});
|
|
4577
|
-
return function set_user_attribute_user_value(
|
|
4578
|
+
return function set_user_attribute_user_value(_x1462, _x1463, _x1464, _x1465, _x1466) {
|
|
4578
4579
|
return _ref426.apply(this, arguments);
|
|
4579
4580
|
};
|
|
4580
4581
|
}();
|
|
@@ -4584,7 +4585,7 @@ var delete_user_attribute_user_value = exports.delete_user_attribute_user_value
|
|
|
4584
4585
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
4585
4586
|
return sdk.delete("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
|
|
4586
4587
|
});
|
|
4587
|
-
return function delete_user_attribute_user_value(
|
|
4588
|
+
return function delete_user_attribute_user_value(_x1467, _x1468, _x1469, _x1470) {
|
|
4588
4589
|
return _ref427.apply(this, arguments);
|
|
4589
4590
|
};
|
|
4590
4591
|
}();
|
|
@@ -4595,7 +4596,7 @@ var send_user_credentials_email_password_reset = exports.send_user_credentials_e
|
|
|
4595
4596
|
fields
|
|
4596
4597
|
}, null, options);
|
|
4597
4598
|
});
|
|
4598
|
-
return function send_user_credentials_email_password_reset(
|
|
4599
|
+
return function send_user_credentials_email_password_reset(_x1471, _x1472, _x1473, _x1474) {
|
|
4599
4600
|
return _ref428.apply(this, arguments);
|
|
4600
4601
|
};
|
|
4601
4602
|
}();
|
|
@@ -4606,7 +4607,7 @@ var wipeout_user_emails = exports.wipeout_user_emails = function () {
|
|
|
4606
4607
|
fields
|
|
4607
4608
|
}, body, options);
|
|
4608
4609
|
});
|
|
4609
|
-
return function wipeout_user_emails(
|
|
4610
|
+
return function wipeout_user_emails(_x1475, _x1476, _x1477, _x1478, _x1479) {
|
|
4610
4611
|
return _ref429.apply(this, arguments);
|
|
4611
4612
|
};
|
|
4612
4613
|
}();
|
|
@@ -4614,7 +4615,7 @@ var create_embed_user = exports.create_embed_user = function () {
|
|
|
4614
4615
|
var _ref430 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4615
4616
|
return sdk.post('/users/embed_user', null, body, options);
|
|
4616
4617
|
});
|
|
4617
|
-
return function create_embed_user(
|
|
4618
|
+
return function create_embed_user(_x1480, _x1481, _x1482) {
|
|
4618
4619
|
return _ref430.apply(this, arguments);
|
|
4619
4620
|
};
|
|
4620
4621
|
}();
|
|
@@ -4625,7 +4626,7 @@ var all_user_attributes = exports.all_user_attributes = function () {
|
|
|
4625
4626
|
sorts: request.sorts
|
|
4626
4627
|
}, null, options);
|
|
4627
4628
|
});
|
|
4628
|
-
return function all_user_attributes(
|
|
4629
|
+
return function all_user_attributes(_x1483, _x1484, _x1485) {
|
|
4629
4630
|
return _ref431.apply(this, arguments);
|
|
4630
4631
|
};
|
|
4631
4632
|
}();
|
|
@@ -4635,7 +4636,7 @@ var create_user_attribute = exports.create_user_attribute = function () {
|
|
|
4635
4636
|
fields
|
|
4636
4637
|
}, body, options);
|
|
4637
4638
|
});
|
|
4638
|
-
return function create_user_attribute(
|
|
4639
|
+
return function create_user_attribute(_x1486, _x1487, _x1488, _x1489) {
|
|
4639
4640
|
return _ref432.apply(this, arguments);
|
|
4640
4641
|
};
|
|
4641
4642
|
}();
|
|
@@ -4646,7 +4647,7 @@ var user_attribute = exports.user_attribute = function () {
|
|
|
4646
4647
|
fields
|
|
4647
4648
|
}, null, options);
|
|
4648
4649
|
});
|
|
4649
|
-
return function user_attribute(
|
|
4650
|
+
return function user_attribute(_x1490, _x1491, _x1492, _x1493) {
|
|
4650
4651
|
return _ref433.apply(this, arguments);
|
|
4651
4652
|
};
|
|
4652
4653
|
}();
|
|
@@ -4657,7 +4658,7 @@ var update_user_attribute = exports.update_user_attribute = function () {
|
|
|
4657
4658
|
fields
|
|
4658
4659
|
}, body, options);
|
|
4659
4660
|
});
|
|
4660
|
-
return function update_user_attribute(
|
|
4661
|
+
return function update_user_attribute(_x1494, _x1495, _x1496, _x1497, _x1498) {
|
|
4661
4662
|
return _ref434.apply(this, arguments);
|
|
4662
4663
|
};
|
|
4663
4664
|
}();
|
|
@@ -4666,7 +4667,7 @@ var delete_user_attribute = exports.delete_user_attribute = function () {
|
|
|
4666
4667
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
4667
4668
|
return sdk.delete("/user_attributes/".concat(user_attribute_id), null, null, options);
|
|
4668
4669
|
});
|
|
4669
|
-
return function delete_user_attribute(
|
|
4670
|
+
return function delete_user_attribute(_x1499, _x1500, _x1501) {
|
|
4670
4671
|
return _ref435.apply(this, arguments);
|
|
4671
4672
|
};
|
|
4672
4673
|
}();
|
|
@@ -4677,7 +4678,7 @@ var all_user_attribute_group_values = exports.all_user_attribute_group_values =
|
|
|
4677
4678
|
fields
|
|
4678
4679
|
}, null, options);
|
|
4679
4680
|
});
|
|
4680
|
-
return function all_user_attribute_group_values(
|
|
4681
|
+
return function all_user_attribute_group_values(_x1502, _x1503, _x1504, _x1505) {
|
|
4681
4682
|
return _ref436.apply(this, arguments);
|
|
4682
4683
|
};
|
|
4683
4684
|
}();
|
|
@@ -4686,7 +4687,7 @@ var set_user_attribute_group_values = exports.set_user_attribute_group_values =
|
|
|
4686
4687
|
user_attribute_id = (0, _sdkRtl.encodeParam)(user_attribute_id);
|
|
4687
4688
|
return sdk.post("/user_attributes/".concat(user_attribute_id, "/group_values"), null, body, options);
|
|
4688
4689
|
});
|
|
4689
|
-
return function set_user_attribute_group_values(
|
|
4690
|
+
return function set_user_attribute_group_values(_x1506, _x1507, _x1508, _x1509) {
|
|
4690
4691
|
return _ref437.apply(this, arguments);
|
|
4691
4692
|
};
|
|
4692
4693
|
}();
|
|
@@ -4694,7 +4695,7 @@ var all_workspaces = exports.all_workspaces = function () {
|
|
|
4694
4695
|
var _ref438 = _asyncToGenerator(function* (sdk, options) {
|
|
4695
4696
|
return sdk.get('/workspaces', null, null, options);
|
|
4696
4697
|
});
|
|
4697
|
-
return function all_workspaces(
|
|
4698
|
+
return function all_workspaces(_x1510, _x1511) {
|
|
4698
4699
|
return _ref438.apply(this, arguments);
|
|
4699
4700
|
};
|
|
4700
4701
|
}();
|
|
@@ -4703,7 +4704,7 @@ var workspace = exports.workspace = function () {
|
|
|
4703
4704
|
workspace_id = (0, _sdkRtl.encodeParam)(workspace_id);
|
|
4704
4705
|
return sdk.get("/workspaces/".concat(workspace_id), null, null, options);
|
|
4705
4706
|
});
|
|
4706
|
-
return function workspace(
|
|
4707
|
+
return function workspace(_x1512, _x1513, _x1514) {
|
|
4707
4708
|
return _ref439.apply(this, arguments);
|
|
4708
4709
|
};
|
|
4709
4710
|
}();
|