@looker/sdk 25.16.0 → 25.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/lib/4.0/funcs.d.ts +5 -1
- package/lib/4.0/funcs.js +846 -797
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +5 -1
- package/lib/4.0/methods.js +571 -530
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +5 -1
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +50 -3
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +5 -1
- package/lib/4.0/streams.js +571 -530
- 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 +842 -793
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +571 -530
- package/lib/esm/4.0/methods.js.map +1 -1
- package/lib/esm/4.0/methodsInterface.js.map +1 -1
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js +571 -530
- package/lib/esm/4.0/streams.js.map +1 -1
- package/lib/esm/constants.js +1 -1
- package/lib/esm/constants.js.map +1 -1
- package/package.json +2 -2
package/lib/esm/4.0/funcs.js
CHANGED
|
@@ -1759,55 +1759,71 @@ export var dashboard_aggregate_table_lookml = function () {
|
|
|
1759
1759
|
return _ref177.apply(this, arguments);
|
|
1760
1760
|
};
|
|
1761
1761
|
}();
|
|
1762
|
+
export var search_lookml_dashboards = function () {
|
|
1763
|
+
var _ref178 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1764
|
+
return sdk.get('/dashboards/lookml/search', {
|
|
1765
|
+
folder_id: request.folder_id,
|
|
1766
|
+
title: request.title,
|
|
1767
|
+
content_favorite_id: request.content_favorite_id,
|
|
1768
|
+
fields: request.fields,
|
|
1769
|
+
limit: request.limit,
|
|
1770
|
+
offset: request.offset,
|
|
1771
|
+
sorts: request.sorts
|
|
1772
|
+
}, null, options);
|
|
1773
|
+
});
|
|
1774
|
+
return function search_lookml_dashboards(_x567, _x568, _x569) {
|
|
1775
|
+
return _ref178.apply(this, arguments);
|
|
1776
|
+
};
|
|
1777
|
+
}();
|
|
1762
1778
|
export var dashboard_lookml = function () {
|
|
1763
|
-
var
|
|
1779
|
+
var _ref179 = _asyncToGenerator(function* (sdk, dashboard_id, options) {
|
|
1764
1780
|
dashboard_id = encodeParam(dashboard_id);
|
|
1765
1781
|
return sdk.get("/dashboards/lookml/".concat(dashboard_id), null, null, options);
|
|
1766
1782
|
});
|
|
1767
|
-
return function dashboard_lookml(
|
|
1768
|
-
return
|
|
1783
|
+
return function dashboard_lookml(_x570, _x571, _x572) {
|
|
1784
|
+
return _ref179.apply(this, arguments);
|
|
1769
1785
|
};
|
|
1770
1786
|
}();
|
|
1771
1787
|
export var move_dashboard = function () {
|
|
1772
|
-
var
|
|
1788
|
+
var _ref180 = _asyncToGenerator(function* (sdk, dashboard_id, folder_id, options) {
|
|
1773
1789
|
dashboard_id = encodeParam(dashboard_id);
|
|
1774
1790
|
return sdk.patch("/dashboards/".concat(dashboard_id, "/move"), {
|
|
1775
1791
|
folder_id
|
|
1776
1792
|
}, null, options);
|
|
1777
1793
|
});
|
|
1778
|
-
return function move_dashboard(
|
|
1779
|
-
return
|
|
1794
|
+
return function move_dashboard(_x573, _x574, _x575, _x576) {
|
|
1795
|
+
return _ref180.apply(this, arguments);
|
|
1780
1796
|
};
|
|
1781
1797
|
}();
|
|
1782
1798
|
export var import_dashboard_from_lookml = function () {
|
|
1783
|
-
var
|
|
1799
|
+
var _ref181 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1784
1800
|
return sdk.post('/dashboards/lookml', null, body, options);
|
|
1785
1801
|
});
|
|
1786
|
-
return function import_dashboard_from_lookml(
|
|
1787
|
-
return
|
|
1802
|
+
return function import_dashboard_from_lookml(_x577, _x578, _x579) {
|
|
1803
|
+
return _ref181.apply(this, arguments);
|
|
1788
1804
|
};
|
|
1789
1805
|
}();
|
|
1790
1806
|
export var create_dashboard_from_lookml = function () {
|
|
1791
|
-
var
|
|
1807
|
+
var _ref182 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1792
1808
|
return sdk.post('/dashboards/from_lookml', null, body, options);
|
|
1793
1809
|
});
|
|
1794
|
-
return function create_dashboard_from_lookml(
|
|
1795
|
-
return
|
|
1810
|
+
return function create_dashboard_from_lookml(_x580, _x581, _x582) {
|
|
1811
|
+
return _ref182.apply(this, arguments);
|
|
1796
1812
|
};
|
|
1797
1813
|
}();
|
|
1798
1814
|
export var copy_dashboard = function () {
|
|
1799
|
-
var
|
|
1815
|
+
var _ref183 = _asyncToGenerator(function* (sdk, dashboard_id, folder_id, options) {
|
|
1800
1816
|
dashboard_id = encodeParam(dashboard_id);
|
|
1801
1817
|
return sdk.post("/dashboards/".concat(dashboard_id, "/copy"), {
|
|
1802
1818
|
folder_id
|
|
1803
1819
|
}, null, options);
|
|
1804
1820
|
});
|
|
1805
|
-
return function copy_dashboard(
|
|
1806
|
-
return
|
|
1821
|
+
return function copy_dashboard(_x583, _x584, _x585, _x586) {
|
|
1822
|
+
return _ref183.apply(this, arguments);
|
|
1807
1823
|
};
|
|
1808
1824
|
}();
|
|
1809
1825
|
export var search_dashboard_elements = function () {
|
|
1810
|
-
var
|
|
1826
|
+
var _ref184 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1811
1827
|
return sdk.get('/dashboard_elements/search', {
|
|
1812
1828
|
dashboard_id: request.dashboard_id,
|
|
1813
1829
|
look_id: request.look_id,
|
|
@@ -1818,268 +1834,268 @@ export var search_dashboard_elements = function () {
|
|
|
1818
1834
|
sorts: request.sorts
|
|
1819
1835
|
}, null, options);
|
|
1820
1836
|
});
|
|
1821
|
-
return function search_dashboard_elements(
|
|
1822
|
-
return
|
|
1837
|
+
return function search_dashboard_elements(_x587, _x588, _x589) {
|
|
1838
|
+
return _ref184.apply(this, arguments);
|
|
1823
1839
|
};
|
|
1824
1840
|
}();
|
|
1825
1841
|
export var dashboard_element = function () {
|
|
1826
|
-
var
|
|
1842
|
+
var _ref185 = _asyncToGenerator(function* (sdk, dashboard_element_id, fields, options) {
|
|
1827
1843
|
dashboard_element_id = encodeParam(dashboard_element_id);
|
|
1828
1844
|
return sdk.get("/dashboard_elements/".concat(dashboard_element_id), {
|
|
1829
1845
|
fields
|
|
1830
1846
|
}, null, options);
|
|
1831
1847
|
});
|
|
1832
|
-
return function dashboard_element(
|
|
1833
|
-
return
|
|
1848
|
+
return function dashboard_element(_x590, _x591, _x592, _x593) {
|
|
1849
|
+
return _ref185.apply(this, arguments);
|
|
1834
1850
|
};
|
|
1835
1851
|
}();
|
|
1836
1852
|
export var update_dashboard_element = function () {
|
|
1837
|
-
var
|
|
1853
|
+
var _ref186 = _asyncToGenerator(function* (sdk, dashboard_element_id, body, fields, options) {
|
|
1838
1854
|
dashboard_element_id = encodeParam(dashboard_element_id);
|
|
1839
1855
|
return sdk.patch("/dashboard_elements/".concat(dashboard_element_id), {
|
|
1840
1856
|
fields
|
|
1841
1857
|
}, body, options);
|
|
1842
1858
|
});
|
|
1843
|
-
return function update_dashboard_element(
|
|
1844
|
-
return
|
|
1859
|
+
return function update_dashboard_element(_x594, _x595, _x596, _x597, _x598) {
|
|
1860
|
+
return _ref186.apply(this, arguments);
|
|
1845
1861
|
};
|
|
1846
1862
|
}();
|
|
1847
1863
|
export var delete_dashboard_element = function () {
|
|
1848
|
-
var
|
|
1864
|
+
var _ref187 = _asyncToGenerator(function* (sdk, dashboard_element_id, options) {
|
|
1849
1865
|
dashboard_element_id = encodeParam(dashboard_element_id);
|
|
1850
1866
|
return sdk.delete("/dashboard_elements/".concat(dashboard_element_id), null, null, options);
|
|
1851
1867
|
});
|
|
1852
|
-
return function delete_dashboard_element(
|
|
1853
|
-
return
|
|
1868
|
+
return function delete_dashboard_element(_x599, _x600, _x601) {
|
|
1869
|
+
return _ref187.apply(this, arguments);
|
|
1854
1870
|
};
|
|
1855
1871
|
}();
|
|
1856
1872
|
export var dashboard_dashboard_elements = function () {
|
|
1857
|
-
var
|
|
1873
|
+
var _ref188 = _asyncToGenerator(function* (sdk, dashboard_id, fields, options) {
|
|
1858
1874
|
dashboard_id = encodeParam(dashboard_id);
|
|
1859
1875
|
return sdk.get("/dashboards/".concat(dashboard_id, "/dashboard_elements"), {
|
|
1860
1876
|
fields
|
|
1861
1877
|
}, null, options);
|
|
1862
1878
|
});
|
|
1863
|
-
return function dashboard_dashboard_elements(
|
|
1864
|
-
return
|
|
1879
|
+
return function dashboard_dashboard_elements(_x602, _x603, _x604, _x605) {
|
|
1880
|
+
return _ref188.apply(this, arguments);
|
|
1865
1881
|
};
|
|
1866
1882
|
}();
|
|
1867
1883
|
export var create_dashboard_element = function () {
|
|
1868
|
-
var
|
|
1884
|
+
var _ref189 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1869
1885
|
return sdk.post('/dashboard_elements', {
|
|
1870
1886
|
fields: request.fields,
|
|
1871
1887
|
apply_filters: request.apply_filters
|
|
1872
1888
|
}, request.body, options);
|
|
1873
1889
|
});
|
|
1874
|
-
return function create_dashboard_element(
|
|
1875
|
-
return
|
|
1890
|
+
return function create_dashboard_element(_x606, _x607, _x608) {
|
|
1891
|
+
return _ref189.apply(this, arguments);
|
|
1876
1892
|
};
|
|
1877
1893
|
}();
|
|
1878
1894
|
export var dashboard_filter = function () {
|
|
1879
|
-
var
|
|
1895
|
+
var _ref190 = _asyncToGenerator(function* (sdk, dashboard_filter_id, fields, options) {
|
|
1880
1896
|
dashboard_filter_id = encodeParam(dashboard_filter_id);
|
|
1881
1897
|
return sdk.get("/dashboard_filters/".concat(dashboard_filter_id), {
|
|
1882
1898
|
fields
|
|
1883
1899
|
}, null, options);
|
|
1884
1900
|
});
|
|
1885
|
-
return function dashboard_filter(
|
|
1886
|
-
return
|
|
1901
|
+
return function dashboard_filter(_x609, _x610, _x611, _x612) {
|
|
1902
|
+
return _ref190.apply(this, arguments);
|
|
1887
1903
|
};
|
|
1888
1904
|
}();
|
|
1889
1905
|
export var update_dashboard_filter = function () {
|
|
1890
|
-
var
|
|
1906
|
+
var _ref191 = _asyncToGenerator(function* (sdk, dashboard_filter_id, body, fields, options) {
|
|
1891
1907
|
dashboard_filter_id = encodeParam(dashboard_filter_id);
|
|
1892
1908
|
return sdk.patch("/dashboard_filters/".concat(dashboard_filter_id), {
|
|
1893
1909
|
fields
|
|
1894
1910
|
}, body, options);
|
|
1895
1911
|
});
|
|
1896
|
-
return function update_dashboard_filter(
|
|
1897
|
-
return
|
|
1912
|
+
return function update_dashboard_filter(_x613, _x614, _x615, _x616, _x617) {
|
|
1913
|
+
return _ref191.apply(this, arguments);
|
|
1898
1914
|
};
|
|
1899
1915
|
}();
|
|
1900
1916
|
export var delete_dashboard_filter = function () {
|
|
1901
|
-
var
|
|
1917
|
+
var _ref192 = _asyncToGenerator(function* (sdk, dashboard_filter_id, options) {
|
|
1902
1918
|
dashboard_filter_id = encodeParam(dashboard_filter_id);
|
|
1903
1919
|
return sdk.delete("/dashboard_filters/".concat(dashboard_filter_id), null, null, options);
|
|
1904
1920
|
});
|
|
1905
|
-
return function delete_dashboard_filter(
|
|
1906
|
-
return
|
|
1921
|
+
return function delete_dashboard_filter(_x618, _x619, _x620) {
|
|
1922
|
+
return _ref192.apply(this, arguments);
|
|
1907
1923
|
};
|
|
1908
1924
|
}();
|
|
1909
1925
|
export var dashboard_dashboard_filters = function () {
|
|
1910
|
-
var
|
|
1926
|
+
var _ref193 = _asyncToGenerator(function* (sdk, dashboard_id, fields, options) {
|
|
1911
1927
|
dashboard_id = encodeParam(dashboard_id);
|
|
1912
1928
|
return sdk.get("/dashboards/".concat(dashboard_id, "/dashboard_filters"), {
|
|
1913
1929
|
fields
|
|
1914
1930
|
}, null, options);
|
|
1915
1931
|
});
|
|
1916
|
-
return function dashboard_dashboard_filters(
|
|
1917
|
-
return
|
|
1932
|
+
return function dashboard_dashboard_filters(_x621, _x622, _x623, _x624) {
|
|
1933
|
+
return _ref193.apply(this, arguments);
|
|
1918
1934
|
};
|
|
1919
1935
|
}();
|
|
1920
1936
|
export var create_dashboard_filter = function () {
|
|
1921
|
-
var
|
|
1937
|
+
var _ref194 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
1922
1938
|
return sdk.post('/dashboard_filters', {
|
|
1923
1939
|
fields
|
|
1924
1940
|
}, body, options);
|
|
1925
1941
|
});
|
|
1926
|
-
return function create_dashboard_filter(
|
|
1927
|
-
return
|
|
1942
|
+
return function create_dashboard_filter(_x625, _x626, _x627, _x628) {
|
|
1943
|
+
return _ref194.apply(this, arguments);
|
|
1928
1944
|
};
|
|
1929
1945
|
}();
|
|
1930
1946
|
export var dashboard_layout_component = function () {
|
|
1931
|
-
var
|
|
1947
|
+
var _ref195 = _asyncToGenerator(function* (sdk, dashboard_layout_component_id, fields, options) {
|
|
1932
1948
|
dashboard_layout_component_id = encodeParam(dashboard_layout_component_id);
|
|
1933
1949
|
return sdk.get("/dashboard_layout_components/".concat(dashboard_layout_component_id), {
|
|
1934
1950
|
fields
|
|
1935
1951
|
}, null, options);
|
|
1936
1952
|
});
|
|
1937
|
-
return function dashboard_layout_component(
|
|
1938
|
-
return
|
|
1953
|
+
return function dashboard_layout_component(_x629, _x630, _x631, _x632) {
|
|
1954
|
+
return _ref195.apply(this, arguments);
|
|
1939
1955
|
};
|
|
1940
1956
|
}();
|
|
1941
1957
|
export var update_dashboard_layout_component = function () {
|
|
1942
|
-
var
|
|
1958
|
+
var _ref196 = _asyncToGenerator(function* (sdk, dashboard_layout_component_id, body, fields, options) {
|
|
1943
1959
|
dashboard_layout_component_id = encodeParam(dashboard_layout_component_id);
|
|
1944
1960
|
return sdk.patch("/dashboard_layout_components/".concat(dashboard_layout_component_id), {
|
|
1945
1961
|
fields
|
|
1946
1962
|
}, body, options);
|
|
1947
1963
|
});
|
|
1948
|
-
return function update_dashboard_layout_component(
|
|
1949
|
-
return
|
|
1964
|
+
return function update_dashboard_layout_component(_x633, _x634, _x635, _x636, _x637) {
|
|
1965
|
+
return _ref196.apply(this, arguments);
|
|
1950
1966
|
};
|
|
1951
1967
|
}();
|
|
1952
1968
|
export var dashboard_layout_dashboard_layout_components = function () {
|
|
1953
|
-
var
|
|
1969
|
+
var _ref197 = _asyncToGenerator(function* (sdk, dashboard_layout_id, fields, options) {
|
|
1954
1970
|
dashboard_layout_id = encodeParam(dashboard_layout_id);
|
|
1955
1971
|
return sdk.get("/dashboard_layouts/".concat(dashboard_layout_id, "/dashboard_layout_components"), {
|
|
1956
1972
|
fields
|
|
1957
1973
|
}, null, options);
|
|
1958
1974
|
});
|
|
1959
|
-
return function dashboard_layout_dashboard_layout_components(
|
|
1960
|
-
return
|
|
1975
|
+
return function dashboard_layout_dashboard_layout_components(_x638, _x639, _x640, _x641) {
|
|
1976
|
+
return _ref197.apply(this, arguments);
|
|
1961
1977
|
};
|
|
1962
1978
|
}();
|
|
1963
1979
|
export var dashboard_layout = function () {
|
|
1964
|
-
var
|
|
1980
|
+
var _ref198 = _asyncToGenerator(function* (sdk, dashboard_layout_id, fields, options) {
|
|
1965
1981
|
dashboard_layout_id = encodeParam(dashboard_layout_id);
|
|
1966
1982
|
return sdk.get("/dashboard_layouts/".concat(dashboard_layout_id), {
|
|
1967
1983
|
fields
|
|
1968
1984
|
}, null, options);
|
|
1969
1985
|
});
|
|
1970
|
-
return function dashboard_layout(
|
|
1971
|
-
return
|
|
1986
|
+
return function dashboard_layout(_x642, _x643, _x644, _x645) {
|
|
1987
|
+
return _ref198.apply(this, arguments);
|
|
1972
1988
|
};
|
|
1973
1989
|
}();
|
|
1974
1990
|
export var update_dashboard_layout = function () {
|
|
1975
|
-
var
|
|
1991
|
+
var _ref199 = _asyncToGenerator(function* (sdk, dashboard_layout_id, body, fields, options) {
|
|
1976
1992
|
dashboard_layout_id = encodeParam(dashboard_layout_id);
|
|
1977
1993
|
return sdk.patch("/dashboard_layouts/".concat(dashboard_layout_id), {
|
|
1978
1994
|
fields
|
|
1979
1995
|
}, body, options);
|
|
1980
1996
|
});
|
|
1981
|
-
return function update_dashboard_layout(
|
|
1982
|
-
return
|
|
1997
|
+
return function update_dashboard_layout(_x646, _x647, _x648, _x649, _x650) {
|
|
1998
|
+
return _ref199.apply(this, arguments);
|
|
1983
1999
|
};
|
|
1984
2000
|
}();
|
|
1985
2001
|
export var delete_dashboard_layout = function () {
|
|
1986
|
-
var
|
|
2002
|
+
var _ref200 = _asyncToGenerator(function* (sdk, dashboard_layout_id, options) {
|
|
1987
2003
|
dashboard_layout_id = encodeParam(dashboard_layout_id);
|
|
1988
2004
|
return sdk.delete("/dashboard_layouts/".concat(dashboard_layout_id), null, null, options);
|
|
1989
2005
|
});
|
|
1990
|
-
return function delete_dashboard_layout(
|
|
1991
|
-
return
|
|
2006
|
+
return function delete_dashboard_layout(_x651, _x652, _x653) {
|
|
2007
|
+
return _ref200.apply(this, arguments);
|
|
1992
2008
|
};
|
|
1993
2009
|
}();
|
|
1994
2010
|
export var dashboard_dashboard_layouts = function () {
|
|
1995
|
-
var
|
|
2011
|
+
var _ref201 = _asyncToGenerator(function* (sdk, dashboard_id, fields, options) {
|
|
1996
2012
|
dashboard_id = encodeParam(dashboard_id);
|
|
1997
2013
|
return sdk.get("/dashboards/".concat(dashboard_id, "/dashboard_layouts"), {
|
|
1998
2014
|
fields
|
|
1999
2015
|
}, null, options);
|
|
2000
2016
|
});
|
|
2001
|
-
return function dashboard_dashboard_layouts(
|
|
2002
|
-
return
|
|
2017
|
+
return function dashboard_dashboard_layouts(_x654, _x655, _x656, _x657) {
|
|
2018
|
+
return _ref201.apply(this, arguments);
|
|
2003
2019
|
};
|
|
2004
2020
|
}();
|
|
2005
2021
|
export var create_dashboard_layout = function () {
|
|
2006
|
-
var
|
|
2022
|
+
var _ref202 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
2007
2023
|
return sdk.post('/dashboard_layouts', {
|
|
2008
2024
|
fields
|
|
2009
2025
|
}, body, options);
|
|
2010
2026
|
});
|
|
2011
|
-
return function create_dashboard_layout(
|
|
2012
|
-
return
|
|
2027
|
+
return function create_dashboard_layout(_x658, _x659, _x660, _x661) {
|
|
2028
|
+
return _ref202.apply(this, arguments);
|
|
2013
2029
|
};
|
|
2014
2030
|
}();
|
|
2015
2031
|
export var perform_data_action = function () {
|
|
2016
|
-
var
|
|
2032
|
+
var _ref203 = _asyncToGenerator(function* (sdk, body, options) {
|
|
2017
2033
|
return sdk.post('/data_actions', null, body, options);
|
|
2018
2034
|
});
|
|
2019
|
-
return function perform_data_action(
|
|
2020
|
-
return
|
|
2035
|
+
return function perform_data_action(_x662, _x663, _x664) {
|
|
2036
|
+
return _ref203.apply(this, arguments);
|
|
2021
2037
|
};
|
|
2022
2038
|
}();
|
|
2023
2039
|
export var fetch_remote_data_action_form = function () {
|
|
2024
|
-
var
|
|
2040
|
+
var _ref204 = _asyncToGenerator(function* (sdk, body, options) {
|
|
2025
2041
|
return sdk.post('/data_actions/form', null, body, options);
|
|
2026
2042
|
});
|
|
2027
|
-
return function fetch_remote_data_action_form(
|
|
2028
|
-
return
|
|
2043
|
+
return function fetch_remote_data_action_form(_x665, _x666, _x667) {
|
|
2044
|
+
return _ref204.apply(this, arguments);
|
|
2029
2045
|
};
|
|
2030
2046
|
}();
|
|
2031
2047
|
export var all_datagroups = function () {
|
|
2032
|
-
var
|
|
2048
|
+
var _ref205 = _asyncToGenerator(function* (sdk, options) {
|
|
2033
2049
|
return sdk.get('/datagroups', null, null, options);
|
|
2034
2050
|
});
|
|
2035
|
-
return function all_datagroups(
|
|
2036
|
-
return
|
|
2051
|
+
return function all_datagroups(_x668, _x669) {
|
|
2052
|
+
return _ref205.apply(this, arguments);
|
|
2037
2053
|
};
|
|
2038
2054
|
}();
|
|
2039
2055
|
export var datagroup = function () {
|
|
2040
|
-
var
|
|
2056
|
+
var _ref206 = _asyncToGenerator(function* (sdk, datagroup_id, options) {
|
|
2041
2057
|
datagroup_id = encodeParam(datagroup_id);
|
|
2042
2058
|
return sdk.get("/datagroups/".concat(datagroup_id), null, null, options);
|
|
2043
2059
|
});
|
|
2044
|
-
return function datagroup(
|
|
2045
|
-
return
|
|
2060
|
+
return function datagroup(_x670, _x671, _x672) {
|
|
2061
|
+
return _ref206.apply(this, arguments);
|
|
2046
2062
|
};
|
|
2047
2063
|
}();
|
|
2048
2064
|
export var update_datagroup = function () {
|
|
2049
|
-
var
|
|
2065
|
+
var _ref207 = _asyncToGenerator(function* (sdk, datagroup_id, body, options) {
|
|
2050
2066
|
datagroup_id = encodeParam(datagroup_id);
|
|
2051
2067
|
return sdk.patch("/datagroups/".concat(datagroup_id), null, body, options);
|
|
2052
2068
|
});
|
|
2053
|
-
return function update_datagroup(
|
|
2054
|
-
return
|
|
2069
|
+
return function update_datagroup(_x673, _x674, _x675, _x676) {
|
|
2070
|
+
return _ref207.apply(this, arguments);
|
|
2055
2071
|
};
|
|
2056
2072
|
}();
|
|
2057
2073
|
export var graph_derived_tables_for_model = function () {
|
|
2058
|
-
var
|
|
2074
|
+
var _ref208 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2059
2075
|
request.model = encodeParam(request.model);
|
|
2060
2076
|
return sdk.get("/derived_table/graph/model/".concat(request.model), {
|
|
2061
2077
|
format: request.format,
|
|
2062
2078
|
color: request.color
|
|
2063
2079
|
}, null, options);
|
|
2064
2080
|
});
|
|
2065
|
-
return function graph_derived_tables_for_model(
|
|
2066
|
-
return
|
|
2081
|
+
return function graph_derived_tables_for_model(_x677, _x678, _x679) {
|
|
2082
|
+
return _ref208.apply(this, arguments);
|
|
2067
2083
|
};
|
|
2068
2084
|
}();
|
|
2069
2085
|
export var graph_derived_tables_for_view = function () {
|
|
2070
|
-
var
|
|
2086
|
+
var _ref209 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2071
2087
|
request.view = encodeParam(request.view);
|
|
2072
2088
|
return sdk.get("/derived_table/graph/view/".concat(request.view), {
|
|
2073
2089
|
models: request.models,
|
|
2074
2090
|
workspace: request.workspace
|
|
2075
2091
|
}, null, options);
|
|
2076
2092
|
});
|
|
2077
|
-
return function graph_derived_tables_for_view(
|
|
2078
|
-
return
|
|
2093
|
+
return function graph_derived_tables_for_view(_x680, _x681, _x682) {
|
|
2094
|
+
return _ref209.apply(this, arguments);
|
|
2079
2095
|
};
|
|
2080
2096
|
}();
|
|
2081
2097
|
export var start_pdt_build = function () {
|
|
2082
|
-
var
|
|
2098
|
+
var _ref210 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2083
2099
|
request.model_name = encodeParam(request.model_name);
|
|
2084
2100
|
request.view_name = encodeParam(request.view_name);
|
|
2085
2101
|
return sdk.get("/derived_table/".concat(request.model_name, "/").concat(request.view_name, "/start"), {
|
|
@@ -2089,32 +2105,32 @@ export var start_pdt_build = function () {
|
|
|
2089
2105
|
source: request.source
|
|
2090
2106
|
}, null, options);
|
|
2091
2107
|
});
|
|
2092
|
-
return function start_pdt_build(
|
|
2093
|
-
return
|
|
2108
|
+
return function start_pdt_build(_x683, _x684, _x685) {
|
|
2109
|
+
return _ref210.apply(this, arguments);
|
|
2094
2110
|
};
|
|
2095
2111
|
}();
|
|
2096
2112
|
export var check_pdt_build = function () {
|
|
2097
|
-
var
|
|
2113
|
+
var _ref211 = _asyncToGenerator(function* (sdk, materialization_id, options) {
|
|
2098
2114
|
materialization_id = encodeParam(materialization_id);
|
|
2099
2115
|
return sdk.get("/derived_table/".concat(materialization_id, "/status"), null, null, options);
|
|
2100
2116
|
});
|
|
2101
|
-
return function check_pdt_build(
|
|
2102
|
-
return
|
|
2117
|
+
return function check_pdt_build(_x686, _x687, _x688) {
|
|
2118
|
+
return _ref211.apply(this, arguments);
|
|
2103
2119
|
};
|
|
2104
2120
|
}();
|
|
2105
2121
|
export var stop_pdt_build = function () {
|
|
2106
|
-
var
|
|
2122
|
+
var _ref212 = _asyncToGenerator(function* (sdk, materialization_id, source, options) {
|
|
2107
2123
|
materialization_id = encodeParam(materialization_id);
|
|
2108
2124
|
return sdk.get("/derived_table/".concat(materialization_id, "/stop"), {
|
|
2109
2125
|
source
|
|
2110
2126
|
}, null, options);
|
|
2111
2127
|
});
|
|
2112
|
-
return function stop_pdt_build(
|
|
2113
|
-
return
|
|
2128
|
+
return function stop_pdt_build(_x689, _x690, _x691, _x692) {
|
|
2129
|
+
return _ref212.apply(this, arguments);
|
|
2114
2130
|
};
|
|
2115
2131
|
}();
|
|
2116
2132
|
export var search_folders = function () {
|
|
2117
|
-
var
|
|
2133
|
+
var _ref213 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2118
2134
|
return sdk.get('/folders/search', {
|
|
2119
2135
|
fields: request.fields,
|
|
2120
2136
|
page: request.page,
|
|
@@ -2131,59 +2147,59 @@ export var search_folders = function () {
|
|
|
2131
2147
|
is_users_root: request.is_users_root
|
|
2132
2148
|
}, null, options);
|
|
2133
2149
|
});
|
|
2134
|
-
return function search_folders(
|
|
2135
|
-
return
|
|
2150
|
+
return function search_folders(_x693, _x694, _x695) {
|
|
2151
|
+
return _ref213.apply(this, arguments);
|
|
2136
2152
|
};
|
|
2137
2153
|
}();
|
|
2138
2154
|
export var folder = function () {
|
|
2139
|
-
var
|
|
2155
|
+
var _ref214 = _asyncToGenerator(function* (sdk, folder_id, fields, options) {
|
|
2140
2156
|
folder_id = encodeParam(folder_id);
|
|
2141
2157
|
return sdk.get("/folders/".concat(folder_id), {
|
|
2142
2158
|
fields
|
|
2143
2159
|
}, null, options);
|
|
2144
2160
|
});
|
|
2145
|
-
return function folder(
|
|
2146
|
-
return
|
|
2161
|
+
return function folder(_x696, _x697, _x698, _x699) {
|
|
2162
|
+
return _ref214.apply(this, arguments);
|
|
2147
2163
|
};
|
|
2148
2164
|
}();
|
|
2149
2165
|
export var update_folder = function () {
|
|
2150
|
-
var
|
|
2166
|
+
var _ref215 = _asyncToGenerator(function* (sdk, folder_id, body, options) {
|
|
2151
2167
|
folder_id = encodeParam(folder_id);
|
|
2152
2168
|
return sdk.patch("/folders/".concat(folder_id), null, body, options);
|
|
2153
2169
|
});
|
|
2154
|
-
return function update_folder(
|
|
2155
|
-
return
|
|
2170
|
+
return function update_folder(_x700, _x701, _x702, _x703) {
|
|
2171
|
+
return _ref215.apply(this, arguments);
|
|
2156
2172
|
};
|
|
2157
2173
|
}();
|
|
2158
2174
|
export var delete_folder = function () {
|
|
2159
|
-
var
|
|
2175
|
+
var _ref216 = _asyncToGenerator(function* (sdk, folder_id, options) {
|
|
2160
2176
|
folder_id = encodeParam(folder_id);
|
|
2161
2177
|
return sdk.delete("/folders/".concat(folder_id), null, null, options);
|
|
2162
2178
|
});
|
|
2163
|
-
return function delete_folder(
|
|
2164
|
-
return
|
|
2179
|
+
return function delete_folder(_x704, _x705, _x706) {
|
|
2180
|
+
return _ref216.apply(this, arguments);
|
|
2165
2181
|
};
|
|
2166
2182
|
}();
|
|
2167
2183
|
export var all_folders = function () {
|
|
2168
|
-
var
|
|
2184
|
+
var _ref217 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
2169
2185
|
return sdk.get('/folders', {
|
|
2170
2186
|
fields
|
|
2171
2187
|
}, null, options);
|
|
2172
2188
|
});
|
|
2173
|
-
return function all_folders(
|
|
2174
|
-
return
|
|
2189
|
+
return function all_folders(_x707, _x708, _x709) {
|
|
2190
|
+
return _ref217.apply(this, arguments);
|
|
2175
2191
|
};
|
|
2176
2192
|
}();
|
|
2177
2193
|
export var create_folder = function () {
|
|
2178
|
-
var
|
|
2194
|
+
var _ref218 = _asyncToGenerator(function* (sdk, body, options) {
|
|
2179
2195
|
return sdk.post('/folders', null, body, options);
|
|
2180
2196
|
});
|
|
2181
|
-
return function create_folder(
|
|
2182
|
-
return
|
|
2197
|
+
return function create_folder(_x710, _x711, _x712) {
|
|
2198
|
+
return _ref218.apply(this, arguments);
|
|
2183
2199
|
};
|
|
2184
2200
|
}();
|
|
2185
2201
|
export var folder_children = function () {
|
|
2186
|
-
var
|
|
2202
|
+
var _ref219 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2187
2203
|
request.folder_id = encodeParam(request.folder_id);
|
|
2188
2204
|
return sdk.get("/folders/".concat(request.folder_id, "/children"), {
|
|
2189
2205
|
fields: request.fields,
|
|
@@ -2194,12 +2210,12 @@ export var folder_children = function () {
|
|
|
2194
2210
|
sorts: request.sorts
|
|
2195
2211
|
}, null, options);
|
|
2196
2212
|
});
|
|
2197
|
-
return function folder_children(
|
|
2198
|
-
return
|
|
2213
|
+
return function folder_children(_x713, _x714, _x715) {
|
|
2214
|
+
return _ref219.apply(this, arguments);
|
|
2199
2215
|
};
|
|
2200
2216
|
}();
|
|
2201
2217
|
export var folder_children_search = function () {
|
|
2202
|
-
var
|
|
2218
|
+
var _ref220 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2203
2219
|
request.folder_id = encodeParam(request.folder_id);
|
|
2204
2220
|
return sdk.get("/folders/".concat(request.folder_id, "/children/search"), {
|
|
2205
2221
|
fields: request.fields,
|
|
@@ -2207,56 +2223,56 @@ export var folder_children_search = function () {
|
|
|
2207
2223
|
name: request.name
|
|
2208
2224
|
}, null, options);
|
|
2209
2225
|
});
|
|
2210
|
-
return function folder_children_search(
|
|
2211
|
-
return
|
|
2226
|
+
return function folder_children_search(_x716, _x717, _x718) {
|
|
2227
|
+
return _ref220.apply(this, arguments);
|
|
2212
2228
|
};
|
|
2213
2229
|
}();
|
|
2214
2230
|
export var folder_parent = function () {
|
|
2215
|
-
var
|
|
2231
|
+
var _ref221 = _asyncToGenerator(function* (sdk, folder_id, fields, options) {
|
|
2216
2232
|
folder_id = encodeParam(folder_id);
|
|
2217
2233
|
return sdk.get("/folders/".concat(folder_id, "/parent"), {
|
|
2218
2234
|
fields
|
|
2219
2235
|
}, null, options);
|
|
2220
2236
|
});
|
|
2221
|
-
return function folder_parent(
|
|
2222
|
-
return
|
|
2237
|
+
return function folder_parent(_x719, _x720, _x721, _x722) {
|
|
2238
|
+
return _ref221.apply(this, arguments);
|
|
2223
2239
|
};
|
|
2224
2240
|
}();
|
|
2225
2241
|
export var folder_ancestors = function () {
|
|
2226
|
-
var
|
|
2242
|
+
var _ref222 = _asyncToGenerator(function* (sdk, folder_id, fields, options) {
|
|
2227
2243
|
folder_id = encodeParam(folder_id);
|
|
2228
2244
|
return sdk.get("/folders/".concat(folder_id, "/ancestors"), {
|
|
2229
2245
|
fields
|
|
2230
2246
|
}, null, options);
|
|
2231
2247
|
});
|
|
2232
|
-
return function folder_ancestors(
|
|
2233
|
-
return
|
|
2248
|
+
return function folder_ancestors(_x723, _x724, _x725, _x726) {
|
|
2249
|
+
return _ref222.apply(this, arguments);
|
|
2234
2250
|
};
|
|
2235
2251
|
}();
|
|
2236
2252
|
export var folder_looks = function () {
|
|
2237
|
-
var
|
|
2253
|
+
var _ref223 = _asyncToGenerator(function* (sdk, folder_id, fields, options) {
|
|
2238
2254
|
folder_id = encodeParam(folder_id);
|
|
2239
2255
|
return sdk.get("/folders/".concat(folder_id, "/looks"), {
|
|
2240
2256
|
fields
|
|
2241
2257
|
}, null, options);
|
|
2242
2258
|
});
|
|
2243
|
-
return function folder_looks(
|
|
2244
|
-
return
|
|
2259
|
+
return function folder_looks(_x727, _x728, _x729, _x730) {
|
|
2260
|
+
return _ref223.apply(this, arguments);
|
|
2245
2261
|
};
|
|
2246
2262
|
}();
|
|
2247
2263
|
export var folder_dashboards = function () {
|
|
2248
|
-
var
|
|
2264
|
+
var _ref224 = _asyncToGenerator(function* (sdk, folder_id, fields, options) {
|
|
2249
2265
|
folder_id = encodeParam(folder_id);
|
|
2250
2266
|
return sdk.get("/folders/".concat(folder_id, "/dashboards"), {
|
|
2251
2267
|
fields
|
|
2252
2268
|
}, null, options);
|
|
2253
2269
|
});
|
|
2254
|
-
return function folder_dashboards(
|
|
2255
|
-
return
|
|
2270
|
+
return function folder_dashboards(_x731, _x732, _x733, _x734) {
|
|
2271
|
+
return _ref224.apply(this, arguments);
|
|
2256
2272
|
};
|
|
2257
2273
|
}();
|
|
2258
2274
|
export var all_groups = function () {
|
|
2259
|
-
var
|
|
2275
|
+
var _ref225 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2260
2276
|
return sdk.get('/groups', {
|
|
2261
2277
|
fields: request.fields,
|
|
2262
2278
|
page: request.page,
|
|
@@ -2269,22 +2285,22 @@ export var all_groups = function () {
|
|
|
2269
2285
|
can_add_to_content_metadata: request.can_add_to_content_metadata
|
|
2270
2286
|
}, null, options);
|
|
2271
2287
|
});
|
|
2272
|
-
return function all_groups(
|
|
2273
|
-
return
|
|
2288
|
+
return function all_groups(_x735, _x736, _x737) {
|
|
2289
|
+
return _ref225.apply(this, arguments);
|
|
2274
2290
|
};
|
|
2275
2291
|
}();
|
|
2276
2292
|
export var create_group = function () {
|
|
2277
|
-
var
|
|
2293
|
+
var _ref226 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
2278
2294
|
return sdk.post('/groups', {
|
|
2279
2295
|
fields
|
|
2280
2296
|
}, body, options);
|
|
2281
2297
|
});
|
|
2282
|
-
return function create_group(
|
|
2283
|
-
return
|
|
2298
|
+
return function create_group(_x738, _x739, _x740, _x741) {
|
|
2299
|
+
return _ref226.apply(this, arguments);
|
|
2284
2300
|
};
|
|
2285
2301
|
}();
|
|
2286
2302
|
export var search_groups = function () {
|
|
2287
|
-
var
|
|
2303
|
+
var _ref227 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2288
2304
|
return sdk.get('/groups/search', {
|
|
2289
2305
|
fields: request.fields,
|
|
2290
2306
|
limit: request.limit,
|
|
@@ -2298,12 +2314,12 @@ export var search_groups = function () {
|
|
|
2298
2314
|
externally_orphaned: request.externally_orphaned
|
|
2299
2315
|
}, null, options);
|
|
2300
2316
|
});
|
|
2301
|
-
return function search_groups(
|
|
2302
|
-
return
|
|
2317
|
+
return function search_groups(_x742, _x743, _x744) {
|
|
2318
|
+
return _ref227.apply(this, arguments);
|
|
2303
2319
|
};
|
|
2304
2320
|
}();
|
|
2305
2321
|
export var search_groups_with_roles = function () {
|
|
2306
|
-
var
|
|
2322
|
+
var _ref228 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2307
2323
|
return sdk.get('/groups/search/with_roles', {
|
|
2308
2324
|
fields: request.fields,
|
|
2309
2325
|
limit: request.limit,
|
|
@@ -2317,12 +2333,12 @@ export var search_groups_with_roles = function () {
|
|
|
2317
2333
|
externally_orphaned: request.externally_orphaned
|
|
2318
2334
|
}, null, options);
|
|
2319
2335
|
});
|
|
2320
|
-
return function search_groups_with_roles(
|
|
2321
|
-
return
|
|
2336
|
+
return function search_groups_with_roles(_x745, _x746, _x747) {
|
|
2337
|
+
return _ref228.apply(this, arguments);
|
|
2322
2338
|
};
|
|
2323
2339
|
}();
|
|
2324
2340
|
export var search_groups_with_hierarchy = function () {
|
|
2325
|
-
var
|
|
2341
|
+
var _ref229 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2326
2342
|
return sdk.get('/groups/search/with_hierarchy', {
|
|
2327
2343
|
fields: request.fields,
|
|
2328
2344
|
limit: request.limit,
|
|
@@ -2336,63 +2352,63 @@ export var search_groups_with_hierarchy = function () {
|
|
|
2336
2352
|
externally_orphaned: request.externally_orphaned
|
|
2337
2353
|
}, null, options);
|
|
2338
2354
|
});
|
|
2339
|
-
return function search_groups_with_hierarchy(
|
|
2340
|
-
return
|
|
2355
|
+
return function search_groups_with_hierarchy(_x748, _x749, _x750) {
|
|
2356
|
+
return _ref229.apply(this, arguments);
|
|
2341
2357
|
};
|
|
2342
2358
|
}();
|
|
2343
2359
|
export var group = function () {
|
|
2344
|
-
var
|
|
2360
|
+
var _ref230 = _asyncToGenerator(function* (sdk, group_id, fields, options) {
|
|
2345
2361
|
group_id = encodeParam(group_id);
|
|
2346
2362
|
return sdk.get("/groups/".concat(group_id), {
|
|
2347
2363
|
fields
|
|
2348
2364
|
}, null, options);
|
|
2349
2365
|
});
|
|
2350
|
-
return function group(
|
|
2351
|
-
return
|
|
2366
|
+
return function group(_x751, _x752, _x753, _x754) {
|
|
2367
|
+
return _ref230.apply(this, arguments);
|
|
2352
2368
|
};
|
|
2353
2369
|
}();
|
|
2354
2370
|
export var update_group = function () {
|
|
2355
|
-
var
|
|
2371
|
+
var _ref231 = _asyncToGenerator(function* (sdk, group_id, body, fields, options) {
|
|
2356
2372
|
group_id = encodeParam(group_id);
|
|
2357
2373
|
return sdk.patch("/groups/".concat(group_id), {
|
|
2358
2374
|
fields
|
|
2359
2375
|
}, body, options);
|
|
2360
2376
|
});
|
|
2361
|
-
return function update_group(
|
|
2362
|
-
return
|
|
2377
|
+
return function update_group(_x755, _x756, _x757, _x758, _x759) {
|
|
2378
|
+
return _ref231.apply(this, arguments);
|
|
2363
2379
|
};
|
|
2364
2380
|
}();
|
|
2365
2381
|
export var delete_group = function () {
|
|
2366
|
-
var
|
|
2382
|
+
var _ref232 = _asyncToGenerator(function* (sdk, group_id, options) {
|
|
2367
2383
|
group_id = encodeParam(group_id);
|
|
2368
2384
|
return sdk.delete("/groups/".concat(group_id), null, null, options);
|
|
2369
2385
|
});
|
|
2370
|
-
return function delete_group(
|
|
2371
|
-
return
|
|
2386
|
+
return function delete_group(_x760, _x761, _x762) {
|
|
2387
|
+
return _ref232.apply(this, arguments);
|
|
2372
2388
|
};
|
|
2373
2389
|
}();
|
|
2374
2390
|
export var all_group_groups = function () {
|
|
2375
|
-
var
|
|
2391
|
+
var _ref233 = _asyncToGenerator(function* (sdk, group_id, fields, options) {
|
|
2376
2392
|
group_id = encodeParam(group_id);
|
|
2377
2393
|
return sdk.get("/groups/".concat(group_id, "/groups"), {
|
|
2378
2394
|
fields
|
|
2379
2395
|
}, null, options);
|
|
2380
2396
|
});
|
|
2381
|
-
return function all_group_groups(
|
|
2382
|
-
return
|
|
2397
|
+
return function all_group_groups(_x763, _x764, _x765, _x766) {
|
|
2398
|
+
return _ref233.apply(this, arguments);
|
|
2383
2399
|
};
|
|
2384
2400
|
}();
|
|
2385
2401
|
export var add_group_group = function () {
|
|
2386
|
-
var
|
|
2402
|
+
var _ref234 = _asyncToGenerator(function* (sdk, group_id, body, options) {
|
|
2387
2403
|
group_id = encodeParam(group_id);
|
|
2388
2404
|
return sdk.post("/groups/".concat(group_id, "/groups"), null, body, options);
|
|
2389
2405
|
});
|
|
2390
|
-
return function add_group_group(
|
|
2391
|
-
return
|
|
2406
|
+
return function add_group_group(_x767, _x768, _x769, _x770) {
|
|
2407
|
+
return _ref234.apply(this, arguments);
|
|
2392
2408
|
};
|
|
2393
2409
|
}();
|
|
2394
2410
|
export var all_group_users = function () {
|
|
2395
|
-
var
|
|
2411
|
+
var _ref235 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2396
2412
|
request.group_id = encodeParam(request.group_id);
|
|
2397
2413
|
return sdk.get("/groups/".concat(request.group_id, "/users"), {
|
|
2398
2414
|
fields: request.fields,
|
|
@@ -2403,202 +2419,213 @@ export var all_group_users = function () {
|
|
|
2403
2419
|
sorts: request.sorts
|
|
2404
2420
|
}, null, options);
|
|
2405
2421
|
});
|
|
2406
|
-
return function all_group_users(
|
|
2407
|
-
return
|
|
2422
|
+
return function all_group_users(_x771, _x772, _x773) {
|
|
2423
|
+
return _ref235.apply(this, arguments);
|
|
2408
2424
|
};
|
|
2409
2425
|
}();
|
|
2410
2426
|
export var add_group_user = function () {
|
|
2411
|
-
var
|
|
2427
|
+
var _ref236 = _asyncToGenerator(function* (sdk, group_id, body, options) {
|
|
2412
2428
|
group_id = encodeParam(group_id);
|
|
2413
2429
|
return sdk.post("/groups/".concat(group_id, "/users"), null, body, options);
|
|
2414
2430
|
});
|
|
2415
|
-
return function add_group_user(
|
|
2416
|
-
return
|
|
2431
|
+
return function add_group_user(_x774, _x775, _x776, _x777) {
|
|
2432
|
+
return _ref236.apply(this, arguments);
|
|
2417
2433
|
};
|
|
2418
2434
|
}();
|
|
2419
2435
|
export var delete_group_user = function () {
|
|
2420
|
-
var
|
|
2436
|
+
var _ref237 = _asyncToGenerator(function* (sdk, group_id, user_id, options) {
|
|
2421
2437
|
group_id = encodeParam(group_id);
|
|
2422
2438
|
user_id = encodeParam(user_id);
|
|
2423
2439
|
return sdk.delete("/groups/".concat(group_id, "/users/").concat(user_id), null, null, options);
|
|
2424
2440
|
});
|
|
2425
|
-
return function delete_group_user(
|
|
2426
|
-
return
|
|
2441
|
+
return function delete_group_user(_x778, _x779, _x780, _x781) {
|
|
2442
|
+
return _ref237.apply(this, arguments);
|
|
2427
2443
|
};
|
|
2428
2444
|
}();
|
|
2429
2445
|
export var delete_group_from_group = function () {
|
|
2430
|
-
var
|
|
2446
|
+
var _ref238 = _asyncToGenerator(function* (sdk, group_id, deleting_group_id, options) {
|
|
2431
2447
|
group_id = encodeParam(group_id);
|
|
2432
2448
|
deleting_group_id = encodeParam(deleting_group_id);
|
|
2433
2449
|
return sdk.delete("/groups/".concat(group_id, "/groups/").concat(deleting_group_id), null, null, options);
|
|
2434
2450
|
});
|
|
2435
|
-
return function delete_group_from_group(
|
|
2436
|
-
return
|
|
2451
|
+
return function delete_group_from_group(_x782, _x783, _x784, _x785) {
|
|
2452
|
+
return _ref238.apply(this, arguments);
|
|
2437
2453
|
};
|
|
2438
2454
|
}();
|
|
2439
2455
|
export var update_user_attribute_group_value = function () {
|
|
2440
|
-
var
|
|
2456
|
+
var _ref239 = _asyncToGenerator(function* (sdk, group_id, user_attribute_id, body, options) {
|
|
2441
2457
|
group_id = encodeParam(group_id);
|
|
2442
2458
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
2443
2459
|
return sdk.patch("/groups/".concat(group_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
|
|
2444
2460
|
});
|
|
2445
|
-
return function update_user_attribute_group_value(
|
|
2446
|
-
return
|
|
2461
|
+
return function update_user_attribute_group_value(_x786, _x787, _x788, _x789, _x790) {
|
|
2462
|
+
return _ref239.apply(this, arguments);
|
|
2447
2463
|
};
|
|
2448
2464
|
}();
|
|
2449
2465
|
export var delete_user_attribute_group_value = function () {
|
|
2450
|
-
var
|
|
2466
|
+
var _ref240 = _asyncToGenerator(function* (sdk, group_id, user_attribute_id, options) {
|
|
2451
2467
|
group_id = encodeParam(group_id);
|
|
2452
2468
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
2453
2469
|
return sdk.delete("/groups/".concat(group_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
|
|
2454
2470
|
});
|
|
2455
|
-
return function delete_user_attribute_group_value(
|
|
2456
|
-
return
|
|
2471
|
+
return function delete_user_attribute_group_value(_x791, _x792, _x793, _x794) {
|
|
2472
|
+
return _ref240.apply(this, arguments);
|
|
2457
2473
|
};
|
|
2458
2474
|
}();
|
|
2459
2475
|
export var all_primary_homepage_sections = function () {
|
|
2460
|
-
var
|
|
2476
|
+
var _ref241 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
2461
2477
|
return sdk.get('/primary_homepage_sections', {
|
|
2462
2478
|
fields
|
|
2463
2479
|
}, null, options);
|
|
2464
2480
|
});
|
|
2465
|
-
return function all_primary_homepage_sections(
|
|
2466
|
-
return
|
|
2481
|
+
return function all_primary_homepage_sections(_x795, _x796, _x797) {
|
|
2482
|
+
return _ref241.apply(this, arguments);
|
|
2467
2483
|
};
|
|
2468
2484
|
}();
|
|
2469
2485
|
export var all_integration_hubs = function () {
|
|
2470
|
-
var
|
|
2486
|
+
var _ref242 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
2471
2487
|
return sdk.get('/integration_hubs', {
|
|
2472
2488
|
fields
|
|
2473
2489
|
}, null, options);
|
|
2474
2490
|
});
|
|
2475
|
-
return function all_integration_hubs(
|
|
2476
|
-
return
|
|
2491
|
+
return function all_integration_hubs(_x798, _x799, _x800) {
|
|
2492
|
+
return _ref242.apply(this, arguments);
|
|
2477
2493
|
};
|
|
2478
2494
|
}();
|
|
2479
2495
|
export var create_integration_hub = function () {
|
|
2480
|
-
var
|
|
2496
|
+
var _ref243 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
2481
2497
|
return sdk.post('/integration_hubs', {
|
|
2482
2498
|
fields
|
|
2483
2499
|
}, body, options);
|
|
2484
2500
|
});
|
|
2485
|
-
return function create_integration_hub(
|
|
2486
|
-
return
|
|
2501
|
+
return function create_integration_hub(_x801, _x802, _x803, _x804) {
|
|
2502
|
+
return _ref243.apply(this, arguments);
|
|
2487
2503
|
};
|
|
2488
2504
|
}();
|
|
2489
2505
|
export var integration_hub = function () {
|
|
2490
|
-
var
|
|
2506
|
+
var _ref244 = _asyncToGenerator(function* (sdk, integration_hub_id, fields, options) {
|
|
2491
2507
|
integration_hub_id = encodeParam(integration_hub_id);
|
|
2492
2508
|
return sdk.get("/integration_hubs/".concat(integration_hub_id), {
|
|
2493
2509
|
fields
|
|
2494
2510
|
}, null, options);
|
|
2495
2511
|
});
|
|
2496
|
-
return function integration_hub(
|
|
2497
|
-
return
|
|
2512
|
+
return function integration_hub(_x805, _x806, _x807, _x808) {
|
|
2513
|
+
return _ref244.apply(this, arguments);
|
|
2498
2514
|
};
|
|
2499
2515
|
}();
|
|
2500
2516
|
export var update_integration_hub = function () {
|
|
2501
|
-
var
|
|
2517
|
+
var _ref245 = _asyncToGenerator(function* (sdk, integration_hub_id, body, fields, options) {
|
|
2502
2518
|
integration_hub_id = encodeParam(integration_hub_id);
|
|
2503
2519
|
return sdk.patch("/integration_hubs/".concat(integration_hub_id), {
|
|
2504
2520
|
fields
|
|
2505
2521
|
}, body, options);
|
|
2506
2522
|
});
|
|
2507
|
-
return function update_integration_hub(
|
|
2508
|
-
return
|
|
2523
|
+
return function update_integration_hub(_x809, _x810, _x811, _x812, _x813) {
|
|
2524
|
+
return _ref245.apply(this, arguments);
|
|
2509
2525
|
};
|
|
2510
2526
|
}();
|
|
2511
2527
|
export var delete_integration_hub = function () {
|
|
2512
|
-
var
|
|
2528
|
+
var _ref246 = _asyncToGenerator(function* (sdk, integration_hub_id, options) {
|
|
2513
2529
|
integration_hub_id = encodeParam(integration_hub_id);
|
|
2514
2530
|
return sdk.delete("/integration_hubs/".concat(integration_hub_id), null, null, options);
|
|
2515
2531
|
});
|
|
2516
|
-
return function delete_integration_hub(
|
|
2517
|
-
return
|
|
2532
|
+
return function delete_integration_hub(_x814, _x815, _x816) {
|
|
2533
|
+
return _ref246.apply(this, arguments);
|
|
2534
|
+
};
|
|
2535
|
+
}();
|
|
2536
|
+
export var get_integration_hub_health = function () {
|
|
2537
|
+
var _ref247 = _asyncToGenerator(function* (sdk, integration_hub_id, fields, options) {
|
|
2538
|
+
integration_hub_id = encodeParam(integration_hub_id);
|
|
2539
|
+
return sdk.get("/integration_hubs/".concat(integration_hub_id, "/health"), {
|
|
2540
|
+
fields
|
|
2541
|
+
}, null, options);
|
|
2542
|
+
});
|
|
2543
|
+
return function get_integration_hub_health(_x817, _x818, _x819, _x820) {
|
|
2544
|
+
return _ref247.apply(this, arguments);
|
|
2518
2545
|
};
|
|
2519
2546
|
}();
|
|
2520
2547
|
export var accept_integration_hub_legal_agreement = function () {
|
|
2521
|
-
var
|
|
2548
|
+
var _ref248 = _asyncToGenerator(function* (sdk, integration_hub_id, options) {
|
|
2522
2549
|
integration_hub_id = encodeParam(integration_hub_id);
|
|
2523
2550
|
return sdk.post("/integration_hubs/".concat(integration_hub_id, "/accept_legal_agreement"), null, null, options);
|
|
2524
2551
|
});
|
|
2525
|
-
return function accept_integration_hub_legal_agreement(
|
|
2526
|
-
return
|
|
2552
|
+
return function accept_integration_hub_legal_agreement(_x821, _x822, _x823) {
|
|
2553
|
+
return _ref248.apply(this, arguments);
|
|
2527
2554
|
};
|
|
2528
2555
|
}();
|
|
2529
2556
|
export var all_integrations = function () {
|
|
2530
|
-
var
|
|
2557
|
+
var _ref249 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2531
2558
|
return sdk.get('/integrations', {
|
|
2532
2559
|
fields: request.fields,
|
|
2533
2560
|
integration_hub_id: request.integration_hub_id
|
|
2534
2561
|
}, null, options);
|
|
2535
2562
|
});
|
|
2536
|
-
return function all_integrations(
|
|
2537
|
-
return
|
|
2563
|
+
return function all_integrations(_x824, _x825, _x826) {
|
|
2564
|
+
return _ref249.apply(this, arguments);
|
|
2538
2565
|
};
|
|
2539
2566
|
}();
|
|
2540
2567
|
export var integration = function () {
|
|
2541
|
-
var
|
|
2568
|
+
var _ref250 = _asyncToGenerator(function* (sdk, integration_id, fields, options) {
|
|
2542
2569
|
integration_id = encodeParam(integration_id);
|
|
2543
2570
|
return sdk.get("/integrations/".concat(integration_id), {
|
|
2544
2571
|
fields
|
|
2545
2572
|
}, null, options);
|
|
2546
2573
|
});
|
|
2547
|
-
return function integration(
|
|
2548
|
-
return
|
|
2574
|
+
return function integration(_x827, _x828, _x829, _x830) {
|
|
2575
|
+
return _ref250.apply(this, arguments);
|
|
2549
2576
|
};
|
|
2550
2577
|
}();
|
|
2551
2578
|
export var update_integration = function () {
|
|
2552
|
-
var
|
|
2579
|
+
var _ref251 = _asyncToGenerator(function* (sdk, integration_id, body, fields, options) {
|
|
2553
2580
|
integration_id = encodeParam(integration_id);
|
|
2554
2581
|
return sdk.patch("/integrations/".concat(integration_id), {
|
|
2555
2582
|
fields
|
|
2556
2583
|
}, body, options);
|
|
2557
2584
|
});
|
|
2558
|
-
return function update_integration(
|
|
2559
|
-
return
|
|
2585
|
+
return function update_integration(_x831, _x832, _x833, _x834, _x835) {
|
|
2586
|
+
return _ref251.apply(this, arguments);
|
|
2560
2587
|
};
|
|
2561
2588
|
}();
|
|
2562
2589
|
export var fetch_integration_form = function () {
|
|
2563
|
-
var
|
|
2590
|
+
var _ref252 = _asyncToGenerator(function* (sdk, integration_id, body, options) {
|
|
2564
2591
|
integration_id = encodeParam(integration_id);
|
|
2565
2592
|
return sdk.post("/integrations/".concat(integration_id, "/form"), null, body, options);
|
|
2566
2593
|
});
|
|
2567
|
-
return function fetch_integration_form(
|
|
2568
|
-
return
|
|
2594
|
+
return function fetch_integration_form(_x836, _x837, _x838, _x839) {
|
|
2595
|
+
return _ref252.apply(this, arguments);
|
|
2569
2596
|
};
|
|
2570
2597
|
}();
|
|
2571
2598
|
export var test_integration = function () {
|
|
2572
|
-
var
|
|
2599
|
+
var _ref253 = _asyncToGenerator(function* (sdk, integration_id, options) {
|
|
2573
2600
|
integration_id = encodeParam(integration_id);
|
|
2574
2601
|
return sdk.post("/integrations/".concat(integration_id, "/test"), null, null, options);
|
|
2575
2602
|
});
|
|
2576
|
-
return function test_integration(
|
|
2577
|
-
return
|
|
2603
|
+
return function test_integration(_x840, _x841, _x842) {
|
|
2604
|
+
return _ref253.apply(this, arguments);
|
|
2578
2605
|
};
|
|
2579
2606
|
}();
|
|
2580
2607
|
export var all_looks = function () {
|
|
2581
|
-
var
|
|
2608
|
+
var _ref254 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
2582
2609
|
return sdk.get('/looks', {
|
|
2583
2610
|
fields
|
|
2584
2611
|
}, null, options);
|
|
2585
2612
|
});
|
|
2586
|
-
return function all_looks(
|
|
2587
|
-
return
|
|
2613
|
+
return function all_looks(_x843, _x844, _x845) {
|
|
2614
|
+
return _ref254.apply(this, arguments);
|
|
2588
2615
|
};
|
|
2589
2616
|
}();
|
|
2590
2617
|
export var create_look = function () {
|
|
2591
|
-
var
|
|
2618
|
+
var _ref255 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
2592
2619
|
return sdk.post('/looks', {
|
|
2593
2620
|
fields
|
|
2594
2621
|
}, body, options);
|
|
2595
2622
|
});
|
|
2596
|
-
return function create_look(
|
|
2597
|
-
return
|
|
2623
|
+
return function create_look(_x846, _x847, _x848, _x849) {
|
|
2624
|
+
return _ref255.apply(this, arguments);
|
|
2598
2625
|
};
|
|
2599
2626
|
}();
|
|
2600
2627
|
export var search_looks = function () {
|
|
2601
|
-
var
|
|
2628
|
+
var _ref256 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2602
2629
|
return sdk.get('/looks/search', {
|
|
2603
2630
|
id: request.id,
|
|
2604
2631
|
title: request.title,
|
|
@@ -2620,43 +2647,43 @@ export var search_looks = function () {
|
|
|
2620
2647
|
filter_or: request.filter_or
|
|
2621
2648
|
}, null, options);
|
|
2622
2649
|
});
|
|
2623
|
-
return function search_looks(
|
|
2624
|
-
return
|
|
2650
|
+
return function search_looks(_x850, _x851, _x852) {
|
|
2651
|
+
return _ref256.apply(this, arguments);
|
|
2625
2652
|
};
|
|
2626
2653
|
}();
|
|
2627
2654
|
export var look = function () {
|
|
2628
|
-
var
|
|
2655
|
+
var _ref257 = _asyncToGenerator(function* (sdk, look_id, fields, options) {
|
|
2629
2656
|
look_id = encodeParam(look_id);
|
|
2630
2657
|
return sdk.get("/looks/".concat(look_id), {
|
|
2631
2658
|
fields
|
|
2632
2659
|
}, null, options);
|
|
2633
2660
|
});
|
|
2634
|
-
return function look(
|
|
2635
|
-
return
|
|
2661
|
+
return function look(_x853, _x854, _x855, _x856) {
|
|
2662
|
+
return _ref257.apply(this, arguments);
|
|
2636
2663
|
};
|
|
2637
2664
|
}();
|
|
2638
2665
|
export var update_look = function () {
|
|
2639
|
-
var
|
|
2666
|
+
var _ref258 = _asyncToGenerator(function* (sdk, look_id, body, fields, options) {
|
|
2640
2667
|
look_id = encodeParam(look_id);
|
|
2641
2668
|
return sdk.patch("/looks/".concat(look_id), {
|
|
2642
2669
|
fields
|
|
2643
2670
|
}, body, options);
|
|
2644
2671
|
});
|
|
2645
|
-
return function update_look(
|
|
2646
|
-
return
|
|
2672
|
+
return function update_look(_x857, _x858, _x859, _x860, _x861) {
|
|
2673
|
+
return _ref258.apply(this, arguments);
|
|
2647
2674
|
};
|
|
2648
2675
|
}();
|
|
2649
2676
|
export var delete_look = function () {
|
|
2650
|
-
var
|
|
2677
|
+
var _ref259 = _asyncToGenerator(function* (sdk, look_id, options) {
|
|
2651
2678
|
look_id = encodeParam(look_id);
|
|
2652
2679
|
return sdk.delete("/looks/".concat(look_id), null, null, options);
|
|
2653
2680
|
});
|
|
2654
|
-
return function delete_look(
|
|
2655
|
-
return
|
|
2681
|
+
return function delete_look(_x862, _x863, _x864) {
|
|
2682
|
+
return _ref259.apply(this, arguments);
|
|
2656
2683
|
};
|
|
2657
2684
|
}();
|
|
2658
2685
|
export var run_look = function () {
|
|
2659
|
-
var
|
|
2686
|
+
var _ref260 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2660
2687
|
request.look_id = encodeParam(request.look_id);
|
|
2661
2688
|
request.result_format = encodeParam(request.result_format);
|
|
2662
2689
|
return sdk.get("/looks/".concat(request.look_id, "/run/").concat(request.result_format), {
|
|
@@ -2674,34 +2701,34 @@ export var run_look = function () {
|
|
|
2674
2701
|
server_table_calcs: request.server_table_calcs
|
|
2675
2702
|
}, null, options);
|
|
2676
2703
|
});
|
|
2677
|
-
return function run_look(
|
|
2678
|
-
return
|
|
2704
|
+
return function run_look(_x865, _x866, _x867) {
|
|
2705
|
+
return _ref260.apply(this, arguments);
|
|
2679
2706
|
};
|
|
2680
2707
|
}();
|
|
2681
2708
|
export var copy_look = function () {
|
|
2682
|
-
var
|
|
2709
|
+
var _ref261 = _asyncToGenerator(function* (sdk, look_id, folder_id, options) {
|
|
2683
2710
|
look_id = encodeParam(look_id);
|
|
2684
2711
|
return sdk.post("/looks/".concat(look_id, "/copy"), {
|
|
2685
2712
|
folder_id
|
|
2686
2713
|
}, null, options);
|
|
2687
2714
|
});
|
|
2688
|
-
return function copy_look(
|
|
2689
|
-
return
|
|
2715
|
+
return function copy_look(_x868, _x869, _x870, _x871) {
|
|
2716
|
+
return _ref261.apply(this, arguments);
|
|
2690
2717
|
};
|
|
2691
2718
|
}();
|
|
2692
2719
|
export var move_look = function () {
|
|
2693
|
-
var
|
|
2720
|
+
var _ref262 = _asyncToGenerator(function* (sdk, look_id, folder_id, options) {
|
|
2694
2721
|
look_id = encodeParam(look_id);
|
|
2695
2722
|
return sdk.patch("/looks/".concat(look_id, "/move"), {
|
|
2696
2723
|
folder_id
|
|
2697
2724
|
}, null, options);
|
|
2698
2725
|
});
|
|
2699
|
-
return function move_look(
|
|
2700
|
-
return
|
|
2726
|
+
return function move_look(_x872, _x873, _x874, _x875) {
|
|
2727
|
+
return _ref262.apply(this, arguments);
|
|
2701
2728
|
};
|
|
2702
2729
|
}();
|
|
2703
2730
|
export var all_lookml_models = function () {
|
|
2704
|
-
var
|
|
2731
|
+
var _ref263 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2705
2732
|
return sdk.get('/lookml_models', {
|
|
2706
2733
|
fields: request.fields,
|
|
2707
2734
|
limit: request.limit,
|
|
@@ -2711,49 +2738,49 @@ export var all_lookml_models = function () {
|
|
|
2711
2738
|
include_internal: request.include_internal
|
|
2712
2739
|
}, null, options);
|
|
2713
2740
|
});
|
|
2714
|
-
return function all_lookml_models(
|
|
2715
|
-
return
|
|
2741
|
+
return function all_lookml_models(_x876, _x877, _x878) {
|
|
2742
|
+
return _ref263.apply(this, arguments);
|
|
2716
2743
|
};
|
|
2717
2744
|
}();
|
|
2718
2745
|
export var create_lookml_model = function () {
|
|
2719
|
-
var
|
|
2746
|
+
var _ref264 = _asyncToGenerator(function* (sdk, body, options) {
|
|
2720
2747
|
return sdk.post('/lookml_models', null, body, options);
|
|
2721
2748
|
});
|
|
2722
|
-
return function create_lookml_model(
|
|
2723
|
-
return
|
|
2749
|
+
return function create_lookml_model(_x879, _x880, _x881) {
|
|
2750
|
+
return _ref264.apply(this, arguments);
|
|
2724
2751
|
};
|
|
2725
2752
|
}();
|
|
2726
2753
|
export var lookml_model = function () {
|
|
2727
|
-
var
|
|
2754
|
+
var _ref265 = _asyncToGenerator(function* (sdk, lookml_model_name, fields, options) {
|
|
2728
2755
|
lookml_model_name = encodeParam(lookml_model_name);
|
|
2729
2756
|
return sdk.get("/lookml_models/".concat(lookml_model_name), {
|
|
2730
2757
|
fields
|
|
2731
2758
|
}, null, options);
|
|
2732
2759
|
});
|
|
2733
|
-
return function lookml_model(
|
|
2734
|
-
return
|
|
2760
|
+
return function lookml_model(_x882, _x883, _x884, _x885) {
|
|
2761
|
+
return _ref265.apply(this, arguments);
|
|
2735
2762
|
};
|
|
2736
2763
|
}();
|
|
2737
2764
|
export var update_lookml_model = function () {
|
|
2738
|
-
var
|
|
2765
|
+
var _ref266 = _asyncToGenerator(function* (sdk, lookml_model_name, body, options) {
|
|
2739
2766
|
lookml_model_name = encodeParam(lookml_model_name);
|
|
2740
2767
|
return sdk.patch("/lookml_models/".concat(lookml_model_name), null, body, options);
|
|
2741
2768
|
});
|
|
2742
|
-
return function update_lookml_model(
|
|
2743
|
-
return
|
|
2769
|
+
return function update_lookml_model(_x886, _x887, _x888, _x889) {
|
|
2770
|
+
return _ref266.apply(this, arguments);
|
|
2744
2771
|
};
|
|
2745
2772
|
}();
|
|
2746
2773
|
export var delete_lookml_model = function () {
|
|
2747
|
-
var
|
|
2774
|
+
var _ref267 = _asyncToGenerator(function* (sdk, lookml_model_name, options) {
|
|
2748
2775
|
lookml_model_name = encodeParam(lookml_model_name);
|
|
2749
2776
|
return sdk.delete("/lookml_models/".concat(lookml_model_name), null, null, options);
|
|
2750
2777
|
});
|
|
2751
|
-
return function delete_lookml_model(
|
|
2752
|
-
return
|
|
2778
|
+
return function delete_lookml_model(_x890, _x891, _x892) {
|
|
2779
|
+
return _ref267.apply(this, arguments);
|
|
2753
2780
|
};
|
|
2754
2781
|
}();
|
|
2755
2782
|
export var lookml_model_explore = function () {
|
|
2756
|
-
var
|
|
2783
|
+
var _ref268 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2757
2784
|
request.lookml_model_name = encodeParam(request.lookml_model_name);
|
|
2758
2785
|
request.explore_name = encodeParam(request.explore_name);
|
|
2759
2786
|
return sdk.get("/lookml_models/".concat(request.lookml_model_name, "/explores/").concat(request.explore_name), {
|
|
@@ -2761,12 +2788,12 @@ export var lookml_model_explore = function () {
|
|
|
2761
2788
|
add_drills_metadata: request.add_drills_metadata
|
|
2762
2789
|
}, null, options);
|
|
2763
2790
|
});
|
|
2764
|
-
return function lookml_model_explore(
|
|
2765
|
-
return
|
|
2791
|
+
return function lookml_model_explore(_x893, _x894, _x895) {
|
|
2792
|
+
return _ref268.apply(this, arguments);
|
|
2766
2793
|
};
|
|
2767
2794
|
}();
|
|
2768
2795
|
export var model_fieldname_suggestions = function () {
|
|
2769
|
-
var
|
|
2796
|
+
var _ref269 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2770
2797
|
request.model_name = encodeParam(request.model_name);
|
|
2771
2798
|
request.view_name = encodeParam(request.view_name);
|
|
2772
2799
|
request.field_name = encodeParam(request.field_name);
|
|
@@ -2775,41 +2802,41 @@ export var model_fieldname_suggestions = function () {
|
|
|
2775
2802
|
filters: request.filters
|
|
2776
2803
|
}, null, options);
|
|
2777
2804
|
});
|
|
2778
|
-
return function model_fieldname_suggestions(
|
|
2779
|
-
return
|
|
2805
|
+
return function model_fieldname_suggestions(_x896, _x897, _x898) {
|
|
2806
|
+
return _ref269.apply(this, arguments);
|
|
2780
2807
|
};
|
|
2781
2808
|
}();
|
|
2782
2809
|
export var get_model = function () {
|
|
2783
|
-
var
|
|
2810
|
+
var _ref270 = _asyncToGenerator(function* (sdk, model_name, options) {
|
|
2784
2811
|
model_name = encodeParam(model_name);
|
|
2785
2812
|
return sdk.get("/models/".concat(model_name), null, null, options);
|
|
2786
2813
|
});
|
|
2787
|
-
return function get_model(
|
|
2788
|
-
return
|
|
2814
|
+
return function get_model(_x899, _x900, _x901) {
|
|
2815
|
+
return _ref270.apply(this, arguments);
|
|
2789
2816
|
};
|
|
2790
2817
|
}();
|
|
2791
2818
|
export var connection_databases = function () {
|
|
2792
|
-
var
|
|
2819
|
+
var _ref271 = _asyncToGenerator(function* (sdk, connection_name, options) {
|
|
2793
2820
|
connection_name = encodeParam(connection_name);
|
|
2794
2821
|
return sdk.get("/connections/".concat(connection_name, "/databases"), null, null, options);
|
|
2795
2822
|
});
|
|
2796
|
-
return function connection_databases(
|
|
2797
|
-
return
|
|
2823
|
+
return function connection_databases(_x902, _x903, _x904) {
|
|
2824
|
+
return _ref271.apply(this, arguments);
|
|
2798
2825
|
};
|
|
2799
2826
|
}();
|
|
2800
2827
|
export var connection_features = function () {
|
|
2801
|
-
var
|
|
2828
|
+
var _ref272 = _asyncToGenerator(function* (sdk, connection_name, fields, options) {
|
|
2802
2829
|
connection_name = encodeParam(connection_name);
|
|
2803
2830
|
return sdk.get("/connections/".concat(connection_name, "/features"), {
|
|
2804
2831
|
fields
|
|
2805
2832
|
}, null, options);
|
|
2806
2833
|
});
|
|
2807
|
-
return function connection_features(
|
|
2808
|
-
return
|
|
2834
|
+
return function connection_features(_x905, _x906, _x907, _x908) {
|
|
2835
|
+
return _ref272.apply(this, arguments);
|
|
2809
2836
|
};
|
|
2810
2837
|
}();
|
|
2811
2838
|
export var connection_schemas = function () {
|
|
2812
|
-
var
|
|
2839
|
+
var _ref273 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2813
2840
|
request.connection_name = encodeParam(request.connection_name);
|
|
2814
2841
|
return sdk.get("/connections/".concat(request.connection_name, "/schemas"), {
|
|
2815
2842
|
database: request.database,
|
|
@@ -2817,12 +2844,12 @@ export var connection_schemas = function () {
|
|
|
2817
2844
|
fields: request.fields
|
|
2818
2845
|
}, null, options);
|
|
2819
2846
|
});
|
|
2820
|
-
return function connection_schemas(
|
|
2821
|
-
return
|
|
2847
|
+
return function connection_schemas(_x909, _x910, _x911) {
|
|
2848
|
+
return _ref273.apply(this, arguments);
|
|
2822
2849
|
};
|
|
2823
2850
|
}();
|
|
2824
2851
|
export var connection_tables = function () {
|
|
2825
|
-
var
|
|
2852
|
+
var _ref274 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2826
2853
|
request.connection_name = encodeParam(request.connection_name);
|
|
2827
2854
|
return sdk.get("/connections/".concat(request.connection_name, "/tables"), {
|
|
2828
2855
|
database: request.database,
|
|
@@ -2833,12 +2860,12 @@ export var connection_tables = function () {
|
|
|
2833
2860
|
table_limit: request.table_limit
|
|
2834
2861
|
}, null, options);
|
|
2835
2862
|
});
|
|
2836
|
-
return function connection_tables(
|
|
2837
|
-
return
|
|
2863
|
+
return function connection_tables(_x912, _x913, _x914) {
|
|
2864
|
+
return _ref274.apply(this, arguments);
|
|
2838
2865
|
};
|
|
2839
2866
|
}();
|
|
2840
2867
|
export var connection_columns = function () {
|
|
2841
|
-
var
|
|
2868
|
+
var _ref275 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2842
2869
|
request.connection_name = encodeParam(request.connection_name);
|
|
2843
2870
|
return sdk.get("/connections/".concat(request.connection_name, "/columns"), {
|
|
2844
2871
|
database: request.database,
|
|
@@ -2849,298 +2876,298 @@ export var connection_columns = function () {
|
|
|
2849
2876
|
fields: request.fields
|
|
2850
2877
|
}, null, options);
|
|
2851
2878
|
});
|
|
2852
|
-
return function connection_columns(
|
|
2853
|
-
return
|
|
2879
|
+
return function connection_columns(_x915, _x916, _x917) {
|
|
2880
|
+
return _ref275.apply(this, arguments);
|
|
2854
2881
|
};
|
|
2855
2882
|
}();
|
|
2856
2883
|
export var connection_search_columns = function () {
|
|
2857
|
-
var
|
|
2884
|
+
var _ref276 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2858
2885
|
request.connection_name = encodeParam(request.connection_name);
|
|
2859
2886
|
return sdk.get("/connections/".concat(request.connection_name, "/search_columns"), {
|
|
2860
2887
|
column_name: request.column_name,
|
|
2861
2888
|
fields: request.fields
|
|
2862
2889
|
}, null, options);
|
|
2863
2890
|
});
|
|
2864
|
-
return function connection_search_columns(
|
|
2865
|
-
return
|
|
2891
|
+
return function connection_search_columns(_x918, _x919, _x920) {
|
|
2892
|
+
return _ref276.apply(this, arguments);
|
|
2866
2893
|
};
|
|
2867
2894
|
}();
|
|
2868
2895
|
export var connection_cost_estimate = function () {
|
|
2869
|
-
var
|
|
2896
|
+
var _ref277 = _asyncToGenerator(function* (sdk, connection_name, body, fields, options) {
|
|
2870
2897
|
connection_name = encodeParam(connection_name);
|
|
2871
2898
|
return sdk.post("/connections/".concat(connection_name, "/cost_estimate"), {
|
|
2872
2899
|
fields
|
|
2873
2900
|
}, body, options);
|
|
2874
2901
|
});
|
|
2875
|
-
return function connection_cost_estimate(
|
|
2876
|
-
return
|
|
2902
|
+
return function connection_cost_estimate(_x921, _x922, _x923, _x924, _x925) {
|
|
2903
|
+
return _ref277.apply(this, arguments);
|
|
2877
2904
|
};
|
|
2878
2905
|
}();
|
|
2879
2906
|
export var get_ci_run = function () {
|
|
2880
|
-
var
|
|
2907
|
+
var _ref278 = _asyncToGenerator(function* (sdk, project_id, run_id, fields, options) {
|
|
2881
2908
|
project_id = encodeParam(project_id);
|
|
2882
2909
|
run_id = encodeParam(run_id);
|
|
2883
2910
|
return sdk.get("/projects/".concat(project_id, "/ci/runs/").concat(run_id), {
|
|
2884
2911
|
fields
|
|
2885
2912
|
}, null, options);
|
|
2886
2913
|
});
|
|
2887
|
-
return function get_ci_run(
|
|
2888
|
-
return
|
|
2914
|
+
return function get_ci_run(_x926, _x927, _x928, _x929, _x930) {
|
|
2915
|
+
return _ref278.apply(this, arguments);
|
|
2889
2916
|
};
|
|
2890
2917
|
}();
|
|
2891
2918
|
export var create_ci_run = function () {
|
|
2892
|
-
var
|
|
2919
|
+
var _ref279 = _asyncToGenerator(function* (sdk, project_id, body, fields, options) {
|
|
2893
2920
|
project_id = encodeParam(project_id);
|
|
2894
2921
|
return sdk.post("/projects/".concat(project_id, "/ci/run"), {
|
|
2895
2922
|
fields
|
|
2896
2923
|
}, body, options);
|
|
2897
2924
|
});
|
|
2898
|
-
return function create_ci_run(
|
|
2899
|
-
return
|
|
2925
|
+
return function create_ci_run(_x931, _x932, _x933, _x934, _x935) {
|
|
2926
|
+
return _ref279.apply(this, arguments);
|
|
2900
2927
|
};
|
|
2901
2928
|
}();
|
|
2902
2929
|
export var lock_all = function () {
|
|
2903
|
-
var
|
|
2930
|
+
var _ref280 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
2904
2931
|
project_id = encodeParam(project_id);
|
|
2905
2932
|
return sdk.post("/projects/".concat(project_id, "/manifest/lock_all"), {
|
|
2906
2933
|
fields
|
|
2907
2934
|
}, null, options);
|
|
2908
2935
|
});
|
|
2909
|
-
return function lock_all(
|
|
2910
|
-
return
|
|
2936
|
+
return function lock_all(_x936, _x937, _x938, _x939) {
|
|
2937
|
+
return _ref280.apply(this, arguments);
|
|
2911
2938
|
};
|
|
2912
2939
|
}();
|
|
2913
2940
|
export var all_git_branches = function () {
|
|
2914
|
-
var
|
|
2941
|
+
var _ref281 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2915
2942
|
project_id = encodeParam(project_id);
|
|
2916
2943
|
return sdk.get("/projects/".concat(project_id, "/git_branches"), null, null, options);
|
|
2917
2944
|
});
|
|
2918
|
-
return function all_git_branches(
|
|
2919
|
-
return
|
|
2945
|
+
return function all_git_branches(_x940, _x941, _x942) {
|
|
2946
|
+
return _ref281.apply(this, arguments);
|
|
2920
2947
|
};
|
|
2921
2948
|
}();
|
|
2922
2949
|
export var git_branch = function () {
|
|
2923
|
-
var
|
|
2950
|
+
var _ref282 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2924
2951
|
project_id = encodeParam(project_id);
|
|
2925
2952
|
return sdk.get("/projects/".concat(project_id, "/git_branch"), null, null, options);
|
|
2926
2953
|
});
|
|
2927
|
-
return function git_branch(
|
|
2928
|
-
return
|
|
2954
|
+
return function git_branch(_x943, _x944, _x945) {
|
|
2955
|
+
return _ref282.apply(this, arguments);
|
|
2929
2956
|
};
|
|
2930
2957
|
}();
|
|
2931
2958
|
export var update_git_branch = function () {
|
|
2932
|
-
var
|
|
2959
|
+
var _ref283 = _asyncToGenerator(function* (sdk, project_id, body, options) {
|
|
2933
2960
|
project_id = encodeParam(project_id);
|
|
2934
2961
|
return sdk.put("/projects/".concat(project_id, "/git_branch"), null, body, options);
|
|
2935
2962
|
});
|
|
2936
|
-
return function update_git_branch(
|
|
2937
|
-
return
|
|
2963
|
+
return function update_git_branch(_x946, _x947, _x948, _x949) {
|
|
2964
|
+
return _ref283.apply(this, arguments);
|
|
2938
2965
|
};
|
|
2939
2966
|
}();
|
|
2940
2967
|
export var create_git_branch = function () {
|
|
2941
|
-
var
|
|
2968
|
+
var _ref284 = _asyncToGenerator(function* (sdk, project_id, body, options) {
|
|
2942
2969
|
project_id = encodeParam(project_id);
|
|
2943
2970
|
return sdk.post("/projects/".concat(project_id, "/git_branch"), null, body, options);
|
|
2944
2971
|
});
|
|
2945
|
-
return function create_git_branch(
|
|
2946
|
-
return
|
|
2972
|
+
return function create_git_branch(_x950, _x951, _x952, _x953) {
|
|
2973
|
+
return _ref284.apply(this, arguments);
|
|
2947
2974
|
};
|
|
2948
2975
|
}();
|
|
2949
2976
|
export var find_git_branch = function () {
|
|
2950
|
-
var
|
|
2977
|
+
var _ref285 = _asyncToGenerator(function* (sdk, project_id, branch_name, options) {
|
|
2951
2978
|
project_id = encodeParam(project_id);
|
|
2952
2979
|
branch_name = encodeParam(branch_name);
|
|
2953
2980
|
return sdk.get("/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
|
|
2954
2981
|
});
|
|
2955
|
-
return function find_git_branch(
|
|
2956
|
-
return
|
|
2982
|
+
return function find_git_branch(_x954, _x955, _x956, _x957) {
|
|
2983
|
+
return _ref285.apply(this, arguments);
|
|
2957
2984
|
};
|
|
2958
2985
|
}();
|
|
2959
2986
|
export var delete_git_branch = function () {
|
|
2960
|
-
var
|
|
2987
|
+
var _ref286 = _asyncToGenerator(function* (sdk, project_id, branch_name, options) {
|
|
2961
2988
|
project_id = encodeParam(project_id);
|
|
2962
2989
|
branch_name = encodeParam(branch_name);
|
|
2963
2990
|
return sdk.delete("/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
|
|
2964
2991
|
});
|
|
2965
|
-
return function delete_git_branch(
|
|
2966
|
-
return
|
|
2992
|
+
return function delete_git_branch(_x958, _x959, _x960, _x961) {
|
|
2993
|
+
return _ref286.apply(this, arguments);
|
|
2967
2994
|
};
|
|
2968
2995
|
}();
|
|
2969
2996
|
export var deploy_ref_to_production = function () {
|
|
2970
|
-
var
|
|
2997
|
+
var _ref287 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2971
2998
|
request.project_id = encodeParam(request.project_id);
|
|
2972
2999
|
return sdk.post("/projects/".concat(request.project_id, "/deploy_ref_to_production"), {
|
|
2973
3000
|
branch: request.branch,
|
|
2974
3001
|
ref: request.ref
|
|
2975
3002
|
}, null, options);
|
|
2976
3003
|
});
|
|
2977
|
-
return function deploy_ref_to_production(
|
|
2978
|
-
return
|
|
3004
|
+
return function deploy_ref_to_production(_x962, _x963, _x964) {
|
|
3005
|
+
return _ref287.apply(this, arguments);
|
|
2979
3006
|
};
|
|
2980
3007
|
}();
|
|
2981
3008
|
export var deploy_to_production = function () {
|
|
2982
|
-
var
|
|
3009
|
+
var _ref288 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2983
3010
|
project_id = encodeParam(project_id);
|
|
2984
3011
|
return sdk.post("/projects/".concat(project_id, "/deploy_to_production"), null, null, options);
|
|
2985
3012
|
});
|
|
2986
|
-
return function deploy_to_production(
|
|
2987
|
-
return
|
|
3013
|
+
return function deploy_to_production(_x965, _x966, _x967) {
|
|
3014
|
+
return _ref288.apply(this, arguments);
|
|
2988
3015
|
};
|
|
2989
3016
|
}();
|
|
2990
3017
|
export var reset_project_to_production = function () {
|
|
2991
|
-
var
|
|
3018
|
+
var _ref289 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2992
3019
|
project_id = encodeParam(project_id);
|
|
2993
3020
|
return sdk.post("/projects/".concat(project_id, "/reset_to_production"), null, null, options);
|
|
2994
3021
|
});
|
|
2995
|
-
return function reset_project_to_production(
|
|
2996
|
-
return
|
|
3022
|
+
return function reset_project_to_production(_x968, _x969, _x970) {
|
|
3023
|
+
return _ref289.apply(this, arguments);
|
|
2997
3024
|
};
|
|
2998
3025
|
}();
|
|
2999
3026
|
export var reset_project_to_remote = function () {
|
|
3000
|
-
var
|
|
3027
|
+
var _ref290 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
3001
3028
|
project_id = encodeParam(project_id);
|
|
3002
3029
|
return sdk.post("/projects/".concat(project_id, "/reset_to_remote"), null, null, options);
|
|
3003
3030
|
});
|
|
3004
|
-
return function reset_project_to_remote(
|
|
3005
|
-
return
|
|
3031
|
+
return function reset_project_to_remote(_x971, _x972, _x973) {
|
|
3032
|
+
return _ref290.apply(this, arguments);
|
|
3006
3033
|
};
|
|
3007
3034
|
}();
|
|
3008
3035
|
export var all_projects = function () {
|
|
3009
|
-
var
|
|
3036
|
+
var _ref291 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3010
3037
|
return sdk.get('/projects', {
|
|
3011
3038
|
fields
|
|
3012
3039
|
}, null, options);
|
|
3013
3040
|
});
|
|
3014
|
-
return function all_projects(
|
|
3015
|
-
return
|
|
3041
|
+
return function all_projects(_x974, _x975, _x976) {
|
|
3042
|
+
return _ref291.apply(this, arguments);
|
|
3016
3043
|
};
|
|
3017
3044
|
}();
|
|
3018
3045
|
export var create_project = function () {
|
|
3019
|
-
var
|
|
3046
|
+
var _ref292 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3020
3047
|
return sdk.post('/projects', null, body, options);
|
|
3021
3048
|
});
|
|
3022
|
-
return function create_project(
|
|
3023
|
-
return
|
|
3049
|
+
return function create_project(_x977, _x978, _x979) {
|
|
3050
|
+
return _ref292.apply(this, arguments);
|
|
3024
3051
|
};
|
|
3025
3052
|
}();
|
|
3026
3053
|
export var project = function () {
|
|
3027
|
-
var
|
|
3054
|
+
var _ref293 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3028
3055
|
project_id = encodeParam(project_id);
|
|
3029
3056
|
return sdk.get("/projects/".concat(project_id), {
|
|
3030
3057
|
fields
|
|
3031
3058
|
}, null, options);
|
|
3032
3059
|
});
|
|
3033
|
-
return function project(
|
|
3034
|
-
return
|
|
3060
|
+
return function project(_x980, _x981, _x982, _x983) {
|
|
3061
|
+
return _ref293.apply(this, arguments);
|
|
3035
3062
|
};
|
|
3036
3063
|
}();
|
|
3037
3064
|
export var update_project = function () {
|
|
3038
|
-
var
|
|
3065
|
+
var _ref294 = _asyncToGenerator(function* (sdk, project_id, body, fields, options) {
|
|
3039
3066
|
project_id = encodeParam(project_id);
|
|
3040
3067
|
return sdk.patch("/projects/".concat(project_id), {
|
|
3041
3068
|
fields
|
|
3042
3069
|
}, body, options);
|
|
3043
3070
|
});
|
|
3044
|
-
return function update_project(
|
|
3045
|
-
return
|
|
3071
|
+
return function update_project(_x984, _x985, _x986, _x987, _x988) {
|
|
3072
|
+
return _ref294.apply(this, arguments);
|
|
3046
3073
|
};
|
|
3047
3074
|
}();
|
|
3048
3075
|
export var manifest = function () {
|
|
3049
|
-
var
|
|
3076
|
+
var _ref295 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
3050
3077
|
project_id = encodeParam(project_id);
|
|
3051
3078
|
return sdk.get("/projects/".concat(project_id, "/manifest"), null, null, options);
|
|
3052
3079
|
});
|
|
3053
|
-
return function manifest(
|
|
3054
|
-
return
|
|
3080
|
+
return function manifest(_x989, _x990, _x991) {
|
|
3081
|
+
return _ref295.apply(this, arguments);
|
|
3055
3082
|
};
|
|
3056
3083
|
}();
|
|
3057
3084
|
export var git_deploy_key = function () {
|
|
3058
|
-
var
|
|
3085
|
+
var _ref296 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
3059
3086
|
project_id = encodeParam(project_id);
|
|
3060
3087
|
return sdk.get("/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
|
|
3061
3088
|
});
|
|
3062
|
-
return function git_deploy_key(
|
|
3063
|
-
return
|
|
3089
|
+
return function git_deploy_key(_x992, _x993, _x994) {
|
|
3090
|
+
return _ref296.apply(this, arguments);
|
|
3064
3091
|
};
|
|
3065
3092
|
}();
|
|
3066
3093
|
export var create_git_deploy_key = function () {
|
|
3067
|
-
var
|
|
3094
|
+
var _ref297 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
3068
3095
|
project_id = encodeParam(project_id);
|
|
3069
3096
|
return sdk.post("/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
|
|
3070
3097
|
});
|
|
3071
|
-
return function create_git_deploy_key(
|
|
3072
|
-
return
|
|
3098
|
+
return function create_git_deploy_key(_x995, _x996, _x997) {
|
|
3099
|
+
return _ref297.apply(this, arguments);
|
|
3073
3100
|
};
|
|
3074
3101
|
}();
|
|
3075
3102
|
export var project_validation_results = function () {
|
|
3076
|
-
var
|
|
3103
|
+
var _ref298 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3077
3104
|
project_id = encodeParam(project_id);
|
|
3078
3105
|
return sdk.get("/projects/".concat(project_id, "/validate"), {
|
|
3079
3106
|
fields
|
|
3080
3107
|
}, null, options);
|
|
3081
3108
|
});
|
|
3082
|
-
return function project_validation_results(
|
|
3083
|
-
return
|
|
3109
|
+
return function project_validation_results(_x998, _x999, _x1000, _x1001) {
|
|
3110
|
+
return _ref298.apply(this, arguments);
|
|
3084
3111
|
};
|
|
3085
3112
|
}();
|
|
3086
3113
|
export var validate_project = function () {
|
|
3087
|
-
var
|
|
3114
|
+
var _ref299 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3088
3115
|
project_id = encodeParam(project_id);
|
|
3089
3116
|
return sdk.post("/projects/".concat(project_id, "/validate"), {
|
|
3090
3117
|
fields
|
|
3091
3118
|
}, null, options);
|
|
3092
3119
|
});
|
|
3093
|
-
return function validate_project(
|
|
3094
|
-
return
|
|
3120
|
+
return function validate_project(_x1002, _x1003, _x1004, _x1005) {
|
|
3121
|
+
return _ref299.apply(this, arguments);
|
|
3095
3122
|
};
|
|
3096
3123
|
}();
|
|
3097
3124
|
export var project_workspace = function () {
|
|
3098
|
-
var
|
|
3125
|
+
var _ref300 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3099
3126
|
project_id = encodeParam(project_id);
|
|
3100
3127
|
return sdk.get("/projects/".concat(project_id, "/current_workspace"), {
|
|
3101
3128
|
fields
|
|
3102
3129
|
}, null, options);
|
|
3103
3130
|
});
|
|
3104
|
-
return function project_workspace(
|
|
3105
|
-
return
|
|
3131
|
+
return function project_workspace(_x1006, _x1007, _x1008, _x1009) {
|
|
3132
|
+
return _ref300.apply(this, arguments);
|
|
3106
3133
|
};
|
|
3107
3134
|
}();
|
|
3108
3135
|
export var all_project_files = function () {
|
|
3109
|
-
var
|
|
3136
|
+
var _ref301 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3110
3137
|
project_id = encodeParam(project_id);
|
|
3111
3138
|
return sdk.get("/projects/".concat(project_id, "/files"), {
|
|
3112
3139
|
fields
|
|
3113
3140
|
}, null, options);
|
|
3114
3141
|
});
|
|
3115
|
-
return function all_project_files(
|
|
3116
|
-
return
|
|
3142
|
+
return function all_project_files(_x1010, _x1011, _x1012, _x1013) {
|
|
3143
|
+
return _ref301.apply(this, arguments);
|
|
3117
3144
|
};
|
|
3118
3145
|
}();
|
|
3119
3146
|
export var project_file = function () {
|
|
3120
|
-
var
|
|
3147
|
+
var _ref302 = _asyncToGenerator(function* (sdk, project_id, file_id, fields, options) {
|
|
3121
3148
|
project_id = encodeParam(project_id);
|
|
3122
3149
|
return sdk.get("/projects/".concat(project_id, "/files/file"), {
|
|
3123
3150
|
file_id,
|
|
3124
3151
|
fields
|
|
3125
3152
|
}, null, options);
|
|
3126
3153
|
});
|
|
3127
|
-
return function project_file(
|
|
3128
|
-
return
|
|
3154
|
+
return function project_file(_x1014, _x1015, _x1016, _x1017, _x1018) {
|
|
3155
|
+
return _ref302.apply(this, arguments);
|
|
3129
3156
|
};
|
|
3130
3157
|
}();
|
|
3131
3158
|
export var all_git_connection_tests = function () {
|
|
3132
|
-
var
|
|
3159
|
+
var _ref303 = _asyncToGenerator(function* (sdk, project_id, remote_url, options) {
|
|
3133
3160
|
project_id = encodeParam(project_id);
|
|
3134
3161
|
return sdk.get("/projects/".concat(project_id, "/git_connection_tests"), {
|
|
3135
3162
|
remote_url
|
|
3136
3163
|
}, null, options);
|
|
3137
3164
|
});
|
|
3138
|
-
return function all_git_connection_tests(
|
|
3139
|
-
return
|
|
3165
|
+
return function all_git_connection_tests(_x1019, _x1020, _x1021, _x1022) {
|
|
3166
|
+
return _ref303.apply(this, arguments);
|
|
3140
3167
|
};
|
|
3141
3168
|
}();
|
|
3142
3169
|
export var run_git_connection_test = function () {
|
|
3143
|
-
var
|
|
3170
|
+
var _ref304 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3144
3171
|
request.project_id = encodeParam(request.project_id);
|
|
3145
3172
|
request.test_id = encodeParam(request.test_id);
|
|
3146
3173
|
return sdk.get("/projects/".concat(request.project_id, "/git_connection_tests/").concat(request.test_id), {
|
|
@@ -3148,23 +3175,23 @@ export var run_git_connection_test = function () {
|
|
|
3148
3175
|
use_production: request.use_production
|
|
3149
3176
|
}, null, options);
|
|
3150
3177
|
});
|
|
3151
|
-
return function run_git_connection_test(
|
|
3152
|
-
return
|
|
3178
|
+
return function run_git_connection_test(_x1023, _x1024, _x1025) {
|
|
3179
|
+
return _ref304.apply(this, arguments);
|
|
3153
3180
|
};
|
|
3154
3181
|
}();
|
|
3155
3182
|
export var all_lookml_tests = function () {
|
|
3156
|
-
var
|
|
3183
|
+
var _ref305 = _asyncToGenerator(function* (sdk, project_id, file_id, options) {
|
|
3157
3184
|
project_id = encodeParam(project_id);
|
|
3158
3185
|
return sdk.get("/projects/".concat(project_id, "/lookml_tests"), {
|
|
3159
3186
|
file_id
|
|
3160
3187
|
}, null, options);
|
|
3161
3188
|
});
|
|
3162
|
-
return function all_lookml_tests(
|
|
3163
|
-
return
|
|
3189
|
+
return function all_lookml_tests(_x1026, _x1027, _x1028, _x1029) {
|
|
3190
|
+
return _ref305.apply(this, arguments);
|
|
3164
3191
|
};
|
|
3165
3192
|
}();
|
|
3166
3193
|
export var run_lookml_test = function () {
|
|
3167
|
-
var
|
|
3194
|
+
var _ref306 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3168
3195
|
request.project_id = encodeParam(request.project_id);
|
|
3169
3196
|
return sdk.get("/projects/".concat(request.project_id, "/lookml_tests/run"), {
|
|
3170
3197
|
file_id: request.file_id,
|
|
@@ -3172,12 +3199,12 @@ export var run_lookml_test = function () {
|
|
|
3172
3199
|
model: request.model
|
|
3173
3200
|
}, null, options);
|
|
3174
3201
|
});
|
|
3175
|
-
return function run_lookml_test(
|
|
3176
|
-
return
|
|
3202
|
+
return function run_lookml_test(_x1030, _x1031, _x1032) {
|
|
3203
|
+
return _ref306.apply(this, arguments);
|
|
3177
3204
|
};
|
|
3178
3205
|
}();
|
|
3179
3206
|
export var tag_ref = function () {
|
|
3180
|
-
var
|
|
3207
|
+
var _ref307 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3181
3208
|
request.project_id = encodeParam(request.project_id);
|
|
3182
3209
|
return sdk.post("/projects/".concat(request.project_id, "/tag"), {
|
|
3183
3210
|
commit_sha: request.commit_sha,
|
|
@@ -3185,41 +3212,41 @@ export var tag_ref = function () {
|
|
|
3185
3212
|
tag_message: request.tag_message
|
|
3186
3213
|
}, request.body, options);
|
|
3187
3214
|
});
|
|
3188
|
-
return function tag_ref(
|
|
3189
|
-
return
|
|
3215
|
+
return function tag_ref(_x1033, _x1034, _x1035) {
|
|
3216
|
+
return _ref307.apply(this, arguments);
|
|
3190
3217
|
};
|
|
3191
3218
|
}();
|
|
3192
3219
|
export var update_repository_credential = function () {
|
|
3193
|
-
var
|
|
3220
|
+
var _ref308 = _asyncToGenerator(function* (sdk, root_project_id, credential_id, body, options) {
|
|
3194
3221
|
root_project_id = encodeParam(root_project_id);
|
|
3195
3222
|
credential_id = encodeParam(credential_id);
|
|
3196
3223
|
return sdk.put("/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, body, options);
|
|
3197
3224
|
});
|
|
3198
|
-
return function update_repository_credential(
|
|
3199
|
-
return
|
|
3225
|
+
return function update_repository_credential(_x1036, _x1037, _x1038, _x1039, _x1040) {
|
|
3226
|
+
return _ref308.apply(this, arguments);
|
|
3200
3227
|
};
|
|
3201
3228
|
}();
|
|
3202
3229
|
export var delete_repository_credential = function () {
|
|
3203
|
-
var
|
|
3230
|
+
var _ref309 = _asyncToGenerator(function* (sdk, root_project_id, credential_id, options) {
|
|
3204
3231
|
root_project_id = encodeParam(root_project_id);
|
|
3205
3232
|
credential_id = encodeParam(credential_id);
|
|
3206
3233
|
return sdk.delete("/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, null, options);
|
|
3207
3234
|
});
|
|
3208
|
-
return function delete_repository_credential(
|
|
3209
|
-
return
|
|
3235
|
+
return function delete_repository_credential(_x1041, _x1042, _x1043, _x1044) {
|
|
3236
|
+
return _ref309.apply(this, arguments);
|
|
3210
3237
|
};
|
|
3211
3238
|
}();
|
|
3212
3239
|
export var get_all_repository_credentials = function () {
|
|
3213
|
-
var
|
|
3240
|
+
var _ref310 = _asyncToGenerator(function* (sdk, root_project_id, options) {
|
|
3214
3241
|
root_project_id = encodeParam(root_project_id);
|
|
3215
3242
|
return sdk.get("/projects/".concat(root_project_id, "/credentials"), null, null, options);
|
|
3216
3243
|
});
|
|
3217
|
-
return function get_all_repository_credentials(
|
|
3218
|
-
return
|
|
3244
|
+
return function get_all_repository_credentials(_x1045, _x1046, _x1047) {
|
|
3245
|
+
return _ref310.apply(this, arguments);
|
|
3219
3246
|
};
|
|
3220
3247
|
}();
|
|
3221
3248
|
export var create_query_task = function () {
|
|
3222
|
-
var
|
|
3249
|
+
var _ref311 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3223
3250
|
return sdk.post('/query_tasks', {
|
|
3224
3251
|
limit: request.limit,
|
|
3225
3252
|
apply_formatting: request.apply_formatting,
|
|
@@ -3234,74 +3261,74 @@ export var create_query_task = function () {
|
|
|
3234
3261
|
fields: request.fields
|
|
3235
3262
|
}, request.body, options);
|
|
3236
3263
|
});
|
|
3237
|
-
return function create_query_task(
|
|
3238
|
-
return
|
|
3264
|
+
return function create_query_task(_x1048, _x1049, _x1050) {
|
|
3265
|
+
return _ref311.apply(this, arguments);
|
|
3239
3266
|
};
|
|
3240
3267
|
}();
|
|
3241
3268
|
export var query_task_multi_results = function () {
|
|
3242
|
-
var
|
|
3269
|
+
var _ref312 = _asyncToGenerator(function* (sdk, query_task_ids, options) {
|
|
3243
3270
|
return sdk.get('/query_tasks/multi_results', {
|
|
3244
3271
|
query_task_ids
|
|
3245
3272
|
}, null, options);
|
|
3246
3273
|
});
|
|
3247
|
-
return function query_task_multi_results(
|
|
3248
|
-
return
|
|
3274
|
+
return function query_task_multi_results(_x1051, _x1052, _x1053) {
|
|
3275
|
+
return _ref312.apply(this, arguments);
|
|
3249
3276
|
};
|
|
3250
3277
|
}();
|
|
3251
3278
|
export var query_task = function () {
|
|
3252
|
-
var
|
|
3279
|
+
var _ref313 = _asyncToGenerator(function* (sdk, query_task_id, fields, options) {
|
|
3253
3280
|
query_task_id = encodeParam(query_task_id);
|
|
3254
3281
|
return sdk.get("/query_tasks/".concat(query_task_id), {
|
|
3255
3282
|
fields
|
|
3256
3283
|
}, null, options);
|
|
3257
3284
|
});
|
|
3258
|
-
return function query_task(
|
|
3259
|
-
return
|
|
3285
|
+
return function query_task(_x1054, _x1055, _x1056, _x1057) {
|
|
3286
|
+
return _ref313.apply(this, arguments);
|
|
3260
3287
|
};
|
|
3261
3288
|
}();
|
|
3262
3289
|
export var query_task_results = function () {
|
|
3263
|
-
var
|
|
3290
|
+
var _ref314 = _asyncToGenerator(function* (sdk, query_task_id, options) {
|
|
3264
3291
|
query_task_id = encodeParam(query_task_id);
|
|
3265
3292
|
return sdk.get("/query_tasks/".concat(query_task_id, "/results"), null, null, options);
|
|
3266
3293
|
});
|
|
3267
|
-
return function query_task_results(
|
|
3268
|
-
return
|
|
3294
|
+
return function query_task_results(_x1058, _x1059, _x1060) {
|
|
3295
|
+
return _ref314.apply(this, arguments);
|
|
3269
3296
|
};
|
|
3270
3297
|
}();
|
|
3271
3298
|
export var query = function () {
|
|
3272
|
-
var
|
|
3299
|
+
var _ref315 = _asyncToGenerator(function* (sdk, query_id, fields, options) {
|
|
3273
3300
|
query_id = encodeParam(query_id);
|
|
3274
3301
|
return sdk.get("/queries/".concat(query_id), {
|
|
3275
3302
|
fields
|
|
3276
3303
|
}, null, options);
|
|
3277
3304
|
});
|
|
3278
|
-
return function query(
|
|
3279
|
-
return
|
|
3305
|
+
return function query(_x1061, _x1062, _x1063, _x1064) {
|
|
3306
|
+
return _ref315.apply(this, arguments);
|
|
3280
3307
|
};
|
|
3281
3308
|
}();
|
|
3282
3309
|
export var query_for_slug = function () {
|
|
3283
|
-
var
|
|
3310
|
+
var _ref316 = _asyncToGenerator(function* (sdk, slug, fields, options) {
|
|
3284
3311
|
slug = encodeParam(slug);
|
|
3285
3312
|
return sdk.get("/queries/slug/".concat(slug), {
|
|
3286
3313
|
fields
|
|
3287
3314
|
}, null, options);
|
|
3288
3315
|
});
|
|
3289
|
-
return function query_for_slug(
|
|
3290
|
-
return
|
|
3316
|
+
return function query_for_slug(_x1065, _x1066, _x1067, _x1068) {
|
|
3317
|
+
return _ref316.apply(this, arguments);
|
|
3291
3318
|
};
|
|
3292
3319
|
}();
|
|
3293
3320
|
export var create_query = function () {
|
|
3294
|
-
var
|
|
3321
|
+
var _ref317 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
3295
3322
|
return sdk.post('/queries', {
|
|
3296
3323
|
fields
|
|
3297
3324
|
}, body, options);
|
|
3298
3325
|
});
|
|
3299
|
-
return function create_query(
|
|
3300
|
-
return
|
|
3326
|
+
return function create_query(_x1069, _x1070, _x1071, _x1072) {
|
|
3327
|
+
return _ref317.apply(this, arguments);
|
|
3301
3328
|
};
|
|
3302
3329
|
}();
|
|
3303
3330
|
export var run_query = function () {
|
|
3304
|
-
var
|
|
3331
|
+
var _ref318 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3305
3332
|
request.query_id = encodeParam(request.query_id);
|
|
3306
3333
|
request.result_format = encodeParam(request.result_format);
|
|
3307
3334
|
return sdk.get("/queries/".concat(request.query_id, "/run/").concat(request.result_format), {
|
|
@@ -3321,12 +3348,12 @@ export var run_query = function () {
|
|
|
3321
3348
|
enable_oauth_error_response: request.enable_oauth_error_response
|
|
3322
3349
|
}, null, options);
|
|
3323
3350
|
});
|
|
3324
|
-
return function run_query(
|
|
3325
|
-
return
|
|
3351
|
+
return function run_query(_x1073, _x1074, _x1075) {
|
|
3352
|
+
return _ref318.apply(this, arguments);
|
|
3326
3353
|
};
|
|
3327
3354
|
}();
|
|
3328
3355
|
export var run_inline_query = function () {
|
|
3329
|
-
var
|
|
3356
|
+
var _ref319 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3330
3357
|
request.result_format = encodeParam(request.result_format);
|
|
3331
3358
|
return sdk.post("/queries/run/".concat(request.result_format), {
|
|
3332
3359
|
limit: request.limit,
|
|
@@ -3344,90 +3371,90 @@ export var run_inline_query = function () {
|
|
|
3344
3371
|
enable_oauth_error_response: request.enable_oauth_error_response
|
|
3345
3372
|
}, request.body, options);
|
|
3346
3373
|
});
|
|
3347
|
-
return function run_inline_query(
|
|
3348
|
-
return
|
|
3374
|
+
return function run_inline_query(_x1076, _x1077, _x1078) {
|
|
3375
|
+
return _ref319.apply(this, arguments);
|
|
3349
3376
|
};
|
|
3350
3377
|
}();
|
|
3351
3378
|
export var run_url_encoded_query = function () {
|
|
3352
|
-
var
|
|
3379
|
+
var _ref320 = _asyncToGenerator(function* (sdk, model_name, view_name, result_format, options) {
|
|
3353
3380
|
model_name = encodeParam(model_name);
|
|
3354
3381
|
view_name = encodeParam(view_name);
|
|
3355
3382
|
result_format = encodeParam(result_format);
|
|
3356
3383
|
return sdk.get("/queries/models/".concat(model_name, "/views/").concat(view_name, "/run/").concat(result_format), null, null, options);
|
|
3357
3384
|
});
|
|
3358
|
-
return function run_url_encoded_query(
|
|
3359
|
-
return
|
|
3385
|
+
return function run_url_encoded_query(_x1079, _x1080, _x1081, _x1082, _x1083) {
|
|
3386
|
+
return _ref320.apply(this, arguments);
|
|
3360
3387
|
};
|
|
3361
3388
|
}();
|
|
3362
3389
|
export var merge_query = function () {
|
|
3363
|
-
var
|
|
3390
|
+
var _ref321 = _asyncToGenerator(function* (sdk, merge_query_id, fields, options) {
|
|
3364
3391
|
merge_query_id = encodeParam(merge_query_id);
|
|
3365
3392
|
return sdk.get("/merge_queries/".concat(merge_query_id), {
|
|
3366
3393
|
fields
|
|
3367
3394
|
}, null, options);
|
|
3368
3395
|
});
|
|
3369
|
-
return function merge_query(
|
|
3370
|
-
return
|
|
3396
|
+
return function merge_query(_x1084, _x1085, _x1086, _x1087) {
|
|
3397
|
+
return _ref321.apply(this, arguments);
|
|
3371
3398
|
};
|
|
3372
3399
|
}();
|
|
3373
3400
|
export var create_merge_query = function () {
|
|
3374
|
-
var
|
|
3401
|
+
var _ref322 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
3375
3402
|
return sdk.post('/merge_queries', {
|
|
3376
3403
|
fields
|
|
3377
3404
|
}, body, options);
|
|
3378
3405
|
});
|
|
3379
|
-
return function create_merge_query(
|
|
3380
|
-
return
|
|
3406
|
+
return function create_merge_query(_x1088, _x1089, _x1090, _x1091) {
|
|
3407
|
+
return _ref322.apply(this, arguments);
|
|
3381
3408
|
};
|
|
3382
3409
|
}();
|
|
3383
3410
|
export var all_running_queries = function () {
|
|
3384
|
-
var
|
|
3411
|
+
var _ref323 = _asyncToGenerator(function* (sdk, options) {
|
|
3385
3412
|
return sdk.get('/running_queries', null, null, options);
|
|
3386
3413
|
});
|
|
3387
|
-
return function all_running_queries(
|
|
3388
|
-
return
|
|
3414
|
+
return function all_running_queries(_x1092, _x1093) {
|
|
3415
|
+
return _ref323.apply(this, arguments);
|
|
3389
3416
|
};
|
|
3390
3417
|
}();
|
|
3391
3418
|
export var kill_query = function () {
|
|
3392
|
-
var
|
|
3419
|
+
var _ref324 = _asyncToGenerator(function* (sdk, query_task_id, options) {
|
|
3393
3420
|
query_task_id = encodeParam(query_task_id);
|
|
3394
3421
|
return sdk.delete("/running_queries/".concat(query_task_id), null, null, options);
|
|
3395
3422
|
});
|
|
3396
|
-
return function kill_query(
|
|
3397
|
-
return
|
|
3423
|
+
return function kill_query(_x1094, _x1095, _x1096) {
|
|
3424
|
+
return _ref324.apply(this, arguments);
|
|
3398
3425
|
};
|
|
3399
3426
|
}();
|
|
3400
3427
|
export var create_sql_query = function () {
|
|
3401
|
-
var
|
|
3428
|
+
var _ref325 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3402
3429
|
return sdk.post('/sql_queries', null, body, options);
|
|
3403
3430
|
});
|
|
3404
|
-
return function create_sql_query(
|
|
3405
|
-
return
|
|
3431
|
+
return function create_sql_query(_x1097, _x1098, _x1099) {
|
|
3432
|
+
return _ref325.apply(this, arguments);
|
|
3406
3433
|
};
|
|
3407
3434
|
}();
|
|
3408
3435
|
export var sql_query = function () {
|
|
3409
|
-
var
|
|
3436
|
+
var _ref326 = _asyncToGenerator(function* (sdk, slug, options) {
|
|
3410
3437
|
slug = encodeParam(slug);
|
|
3411
3438
|
return sdk.get("/sql_queries/".concat(slug), null, null, options);
|
|
3412
3439
|
});
|
|
3413
|
-
return function sql_query(
|
|
3414
|
-
return
|
|
3440
|
+
return function sql_query(_x1100, _x1101, _x1102) {
|
|
3441
|
+
return _ref326.apply(this, arguments);
|
|
3415
3442
|
};
|
|
3416
3443
|
}();
|
|
3417
3444
|
export var run_sql_query = function () {
|
|
3418
|
-
var
|
|
3445
|
+
var _ref327 = _asyncToGenerator(function* (sdk, slug, result_format, download, options) {
|
|
3419
3446
|
slug = encodeParam(slug);
|
|
3420
3447
|
result_format = encodeParam(result_format);
|
|
3421
3448
|
return sdk.post("/sql_queries/".concat(slug, "/run/").concat(result_format), {
|
|
3422
3449
|
download
|
|
3423
3450
|
}, null, options);
|
|
3424
3451
|
});
|
|
3425
|
-
return function run_sql_query(
|
|
3426
|
-
return
|
|
3452
|
+
return function run_sql_query(_x1103, _x1104, _x1105, _x1106, _x1107) {
|
|
3453
|
+
return _ref327.apply(this, arguments);
|
|
3427
3454
|
};
|
|
3428
3455
|
}();
|
|
3429
3456
|
export var create_look_render_task = function () {
|
|
3430
|
-
var
|
|
3457
|
+
var _ref328 = _asyncToGenerator(function* (sdk, look_id, result_format, width, height, fields, options) {
|
|
3431
3458
|
look_id = encodeParam(look_id);
|
|
3432
3459
|
result_format = encodeParam(result_format);
|
|
3433
3460
|
return sdk.post("/render_tasks/looks/".concat(look_id, "/").concat(result_format), {
|
|
@@ -3436,12 +3463,12 @@ export var create_look_render_task = function () {
|
|
|
3436
3463
|
fields
|
|
3437
3464
|
}, null, options);
|
|
3438
3465
|
});
|
|
3439
|
-
return function create_look_render_task(
|
|
3440
|
-
return
|
|
3466
|
+
return function create_look_render_task(_x1108, _x1109, _x1110, _x1111, _x1112, _x1113, _x1114) {
|
|
3467
|
+
return _ref328.apply(this, arguments);
|
|
3441
3468
|
};
|
|
3442
3469
|
}();
|
|
3443
3470
|
export var create_query_render_task = function () {
|
|
3444
|
-
var
|
|
3471
|
+
var _ref329 = _asyncToGenerator(function* (sdk, query_id, result_format, width, height, fields, options) {
|
|
3445
3472
|
query_id = encodeParam(query_id);
|
|
3446
3473
|
result_format = encodeParam(result_format);
|
|
3447
3474
|
return sdk.post("/render_tasks/queries/".concat(query_id, "/").concat(result_format), {
|
|
@@ -3450,12 +3477,12 @@ export var create_query_render_task = function () {
|
|
|
3450
3477
|
fields
|
|
3451
3478
|
}, null, options);
|
|
3452
3479
|
});
|
|
3453
|
-
return function create_query_render_task(
|
|
3454
|
-
return
|
|
3480
|
+
return function create_query_render_task(_x1115, _x1116, _x1117, _x1118, _x1119, _x1120, _x1121) {
|
|
3481
|
+
return _ref329.apply(this, arguments);
|
|
3455
3482
|
};
|
|
3456
3483
|
}();
|
|
3457
3484
|
export var create_dashboard_render_task = function () {
|
|
3458
|
-
var
|
|
3485
|
+
var _ref330 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3459
3486
|
request.dashboard_id = encodeParam(request.dashboard_id);
|
|
3460
3487
|
request.result_format = encodeParam(request.result_format);
|
|
3461
3488
|
return sdk.post("/render_tasks/dashboards/".concat(request.dashboard_id, "/").concat(request.result_format), {
|
|
@@ -3468,32 +3495,32 @@ export var create_dashboard_render_task = function () {
|
|
|
3468
3495
|
theme: request.theme
|
|
3469
3496
|
}, request.body, options);
|
|
3470
3497
|
});
|
|
3471
|
-
return function create_dashboard_render_task(
|
|
3472
|
-
return
|
|
3498
|
+
return function create_dashboard_render_task(_x1122, _x1123, _x1124) {
|
|
3499
|
+
return _ref330.apply(this, arguments);
|
|
3473
3500
|
};
|
|
3474
3501
|
}();
|
|
3475
3502
|
export var render_task = function () {
|
|
3476
|
-
var
|
|
3503
|
+
var _ref331 = _asyncToGenerator(function* (sdk, render_task_id, fields, options) {
|
|
3477
3504
|
render_task_id = encodeParam(render_task_id);
|
|
3478
3505
|
return sdk.get("/render_tasks/".concat(render_task_id), {
|
|
3479
3506
|
fields
|
|
3480
3507
|
}, null, options);
|
|
3481
3508
|
});
|
|
3482
|
-
return function render_task(
|
|
3483
|
-
return
|
|
3509
|
+
return function render_task(_x1125, _x1126, _x1127, _x1128) {
|
|
3510
|
+
return _ref331.apply(this, arguments);
|
|
3484
3511
|
};
|
|
3485
3512
|
}();
|
|
3486
3513
|
export var render_task_results = function () {
|
|
3487
|
-
var
|
|
3514
|
+
var _ref332 = _asyncToGenerator(function* (sdk, render_task_id, options) {
|
|
3488
3515
|
render_task_id = encodeParam(render_task_id);
|
|
3489
3516
|
return sdk.get("/render_tasks/".concat(render_task_id, "/results"), null, null, options);
|
|
3490
3517
|
});
|
|
3491
|
-
return function render_task_results(
|
|
3492
|
-
return
|
|
3518
|
+
return function render_task_results(_x1129, _x1130, _x1131) {
|
|
3519
|
+
return _ref332.apply(this, arguments);
|
|
3493
3520
|
};
|
|
3494
3521
|
}();
|
|
3495
3522
|
export var create_dashboard_element_render_task = function () {
|
|
3496
|
-
var
|
|
3523
|
+
var _ref333 = _asyncToGenerator(function* (sdk, dashboard_element_id, result_format, width, height, fields, options) {
|
|
3497
3524
|
dashboard_element_id = encodeParam(dashboard_element_id);
|
|
3498
3525
|
result_format = encodeParam(result_format);
|
|
3499
3526
|
return sdk.post("/render_tasks/dashboard_elements/".concat(dashboard_element_id, "/").concat(result_format), {
|
|
@@ -3502,12 +3529,12 @@ export var create_dashboard_element_render_task = function () {
|
|
|
3502
3529
|
fields
|
|
3503
3530
|
}, null, options);
|
|
3504
3531
|
});
|
|
3505
|
-
return function create_dashboard_element_render_task(
|
|
3506
|
-
return
|
|
3532
|
+
return function create_dashboard_element_render_task(_x1132, _x1133, _x1134, _x1135, _x1136, _x1137, _x1138) {
|
|
3533
|
+
return _ref333.apply(this, arguments);
|
|
3507
3534
|
};
|
|
3508
3535
|
}();
|
|
3509
3536
|
export var search_reports = function () {
|
|
3510
|
-
var
|
|
3537
|
+
var _ref334 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3511
3538
|
return sdk.get('/reports/search', {
|
|
3512
3539
|
folder_id: request.folder_id,
|
|
3513
3540
|
favorite: request.favorite,
|
|
@@ -3520,12 +3547,12 @@ export var search_reports = function () {
|
|
|
3520
3547
|
next_page_token: request.next_page_token
|
|
3521
3548
|
}, null, options);
|
|
3522
3549
|
});
|
|
3523
|
-
return function search_reports(
|
|
3524
|
-
return
|
|
3550
|
+
return function search_reports(_x1139, _x1140, _x1141) {
|
|
3551
|
+
return _ref334.apply(this, arguments);
|
|
3525
3552
|
};
|
|
3526
3553
|
}();
|
|
3527
3554
|
export var search_model_sets = function () {
|
|
3528
|
-
var
|
|
3555
|
+
var _ref335 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3529
3556
|
return sdk.get('/model_sets/search', {
|
|
3530
3557
|
fields: request.fields,
|
|
3531
3558
|
limit: request.limit,
|
|
@@ -3538,67 +3565,67 @@ export var search_model_sets = function () {
|
|
|
3538
3565
|
filter_or: request.filter_or
|
|
3539
3566
|
}, null, options);
|
|
3540
3567
|
});
|
|
3541
|
-
return function search_model_sets(
|
|
3542
|
-
return
|
|
3568
|
+
return function search_model_sets(_x1142, _x1143, _x1144) {
|
|
3569
|
+
return _ref335.apply(this, arguments);
|
|
3543
3570
|
};
|
|
3544
3571
|
}();
|
|
3545
3572
|
export var model_set = function () {
|
|
3546
|
-
var
|
|
3573
|
+
var _ref336 = _asyncToGenerator(function* (sdk, model_set_id, fields, options) {
|
|
3547
3574
|
model_set_id = encodeParam(model_set_id);
|
|
3548
3575
|
return sdk.get("/model_sets/".concat(model_set_id), {
|
|
3549
3576
|
fields
|
|
3550
3577
|
}, null, options);
|
|
3551
3578
|
});
|
|
3552
|
-
return function model_set(
|
|
3553
|
-
return
|
|
3579
|
+
return function model_set(_x1145, _x1146, _x1147, _x1148) {
|
|
3580
|
+
return _ref336.apply(this, arguments);
|
|
3554
3581
|
};
|
|
3555
3582
|
}();
|
|
3556
3583
|
export var update_model_set = function () {
|
|
3557
|
-
var
|
|
3584
|
+
var _ref337 = _asyncToGenerator(function* (sdk, model_set_id, body, options) {
|
|
3558
3585
|
model_set_id = encodeParam(model_set_id);
|
|
3559
3586
|
return sdk.patch("/model_sets/".concat(model_set_id), null, body, options);
|
|
3560
3587
|
});
|
|
3561
|
-
return function update_model_set(
|
|
3562
|
-
return
|
|
3588
|
+
return function update_model_set(_x1149, _x1150, _x1151, _x1152) {
|
|
3589
|
+
return _ref337.apply(this, arguments);
|
|
3563
3590
|
};
|
|
3564
3591
|
}();
|
|
3565
3592
|
export var delete_model_set = function () {
|
|
3566
|
-
var
|
|
3593
|
+
var _ref338 = _asyncToGenerator(function* (sdk, model_set_id, options) {
|
|
3567
3594
|
model_set_id = encodeParam(model_set_id);
|
|
3568
3595
|
return sdk.delete("/model_sets/".concat(model_set_id), null, null, options);
|
|
3569
3596
|
});
|
|
3570
|
-
return function delete_model_set(
|
|
3571
|
-
return
|
|
3597
|
+
return function delete_model_set(_x1153, _x1154, _x1155) {
|
|
3598
|
+
return _ref338.apply(this, arguments);
|
|
3572
3599
|
};
|
|
3573
3600
|
}();
|
|
3574
3601
|
export var all_model_sets = function () {
|
|
3575
|
-
var
|
|
3602
|
+
var _ref339 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3576
3603
|
return sdk.get('/model_sets', {
|
|
3577
3604
|
fields
|
|
3578
3605
|
}, null, options);
|
|
3579
3606
|
});
|
|
3580
|
-
return function all_model_sets(
|
|
3581
|
-
return
|
|
3607
|
+
return function all_model_sets(_x1156, _x1157, _x1158) {
|
|
3608
|
+
return _ref339.apply(this, arguments);
|
|
3582
3609
|
};
|
|
3583
3610
|
}();
|
|
3584
3611
|
export var create_model_set = function () {
|
|
3585
|
-
var
|
|
3612
|
+
var _ref340 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3586
3613
|
return sdk.post('/model_sets', null, body, options);
|
|
3587
3614
|
});
|
|
3588
|
-
return function create_model_set(
|
|
3589
|
-
return
|
|
3615
|
+
return function create_model_set(_x1159, _x1160, _x1161) {
|
|
3616
|
+
return _ref340.apply(this, arguments);
|
|
3590
3617
|
};
|
|
3591
3618
|
}();
|
|
3592
3619
|
export var all_permissions = function () {
|
|
3593
|
-
var
|
|
3620
|
+
var _ref341 = _asyncToGenerator(function* (sdk, options) {
|
|
3594
3621
|
return sdk.get('/permissions', null, null, options);
|
|
3595
3622
|
});
|
|
3596
|
-
return function all_permissions(
|
|
3597
|
-
return
|
|
3623
|
+
return function all_permissions(_x1162, _x1163) {
|
|
3624
|
+
return _ref341.apply(this, arguments);
|
|
3598
3625
|
};
|
|
3599
3626
|
}();
|
|
3600
3627
|
export var search_permission_sets = function () {
|
|
3601
|
-
var
|
|
3628
|
+
var _ref342 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3602
3629
|
return sdk.get('/permission_sets/search', {
|
|
3603
3630
|
fields: request.fields,
|
|
3604
3631
|
limit: request.limit,
|
|
@@ -3611,78 +3638,79 @@ export var search_permission_sets = function () {
|
|
|
3611
3638
|
filter_or: request.filter_or
|
|
3612
3639
|
}, null, options);
|
|
3613
3640
|
});
|
|
3614
|
-
return function search_permission_sets(
|
|
3615
|
-
return
|
|
3641
|
+
return function search_permission_sets(_x1164, _x1165, _x1166) {
|
|
3642
|
+
return _ref342.apply(this, arguments);
|
|
3616
3643
|
};
|
|
3617
3644
|
}();
|
|
3618
3645
|
export var permission_set = function () {
|
|
3619
|
-
var
|
|
3646
|
+
var _ref343 = _asyncToGenerator(function* (sdk, permission_set_id, fields, options) {
|
|
3620
3647
|
permission_set_id = encodeParam(permission_set_id);
|
|
3621
3648
|
return sdk.get("/permission_sets/".concat(permission_set_id), {
|
|
3622
3649
|
fields
|
|
3623
3650
|
}, null, options);
|
|
3624
3651
|
});
|
|
3625
|
-
return function permission_set(
|
|
3626
|
-
return
|
|
3652
|
+
return function permission_set(_x1167, _x1168, _x1169, _x1170) {
|
|
3653
|
+
return _ref343.apply(this, arguments);
|
|
3627
3654
|
};
|
|
3628
3655
|
}();
|
|
3629
3656
|
export var update_permission_set = function () {
|
|
3630
|
-
var
|
|
3657
|
+
var _ref344 = _asyncToGenerator(function* (sdk, permission_set_id, body, options) {
|
|
3631
3658
|
permission_set_id = encodeParam(permission_set_id);
|
|
3632
3659
|
return sdk.patch("/permission_sets/".concat(permission_set_id), null, body, options);
|
|
3633
3660
|
});
|
|
3634
|
-
return function update_permission_set(
|
|
3635
|
-
return
|
|
3661
|
+
return function update_permission_set(_x1171, _x1172, _x1173, _x1174) {
|
|
3662
|
+
return _ref344.apply(this, arguments);
|
|
3636
3663
|
};
|
|
3637
3664
|
}();
|
|
3638
3665
|
export var delete_permission_set = function () {
|
|
3639
|
-
var
|
|
3666
|
+
var _ref345 = _asyncToGenerator(function* (sdk, permission_set_id, options) {
|
|
3640
3667
|
permission_set_id = encodeParam(permission_set_id);
|
|
3641
3668
|
return sdk.delete("/permission_sets/".concat(permission_set_id), null, null, options);
|
|
3642
3669
|
});
|
|
3643
|
-
return function delete_permission_set(
|
|
3644
|
-
return
|
|
3670
|
+
return function delete_permission_set(_x1175, _x1176, _x1177) {
|
|
3671
|
+
return _ref345.apply(this, arguments);
|
|
3645
3672
|
};
|
|
3646
3673
|
}();
|
|
3647
3674
|
export var all_permission_sets = function () {
|
|
3648
|
-
var
|
|
3675
|
+
var _ref346 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3649
3676
|
return sdk.get('/permission_sets', {
|
|
3650
3677
|
fields
|
|
3651
3678
|
}, null, options);
|
|
3652
3679
|
});
|
|
3653
|
-
return function all_permission_sets(
|
|
3654
|
-
return
|
|
3680
|
+
return function all_permission_sets(_x1178, _x1179, _x1180) {
|
|
3681
|
+
return _ref346.apply(this, arguments);
|
|
3655
3682
|
};
|
|
3656
3683
|
}();
|
|
3657
3684
|
export var create_permission_set = function () {
|
|
3658
|
-
var
|
|
3685
|
+
var _ref347 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3659
3686
|
return sdk.post('/permission_sets', null, body, options);
|
|
3660
3687
|
});
|
|
3661
|
-
return function create_permission_set(
|
|
3662
|
-
return
|
|
3688
|
+
return function create_permission_set(_x1181, _x1182, _x1183) {
|
|
3689
|
+
return _ref347.apply(this, arguments);
|
|
3663
3690
|
};
|
|
3664
3691
|
}();
|
|
3665
3692
|
export var all_roles = function () {
|
|
3666
|
-
var
|
|
3693
|
+
var _ref348 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3667
3694
|
return sdk.get('/roles', {
|
|
3668
3695
|
fields: request.fields,
|
|
3669
|
-
ids: request.ids
|
|
3696
|
+
ids: request.ids,
|
|
3697
|
+
get_all_support_roles: request.get_all_support_roles
|
|
3670
3698
|
}, null, options);
|
|
3671
3699
|
});
|
|
3672
|
-
return function all_roles(
|
|
3673
|
-
return
|
|
3700
|
+
return function all_roles(_x1184, _x1185, _x1186) {
|
|
3701
|
+
return _ref348.apply(this, arguments);
|
|
3674
3702
|
};
|
|
3675
3703
|
}();
|
|
3676
3704
|
export var create_role = function () {
|
|
3677
|
-
var
|
|
3705
|
+
var _ref349 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3678
3706
|
return sdk.post('/roles', null, body, options);
|
|
3679
3707
|
});
|
|
3680
|
-
return function create_role(
|
|
3681
|
-
return
|
|
3708
|
+
return function create_role(_x1187, _x1188, _x1189) {
|
|
3709
|
+
return _ref349.apply(this, arguments);
|
|
3682
3710
|
};
|
|
3683
3711
|
}();
|
|
3684
3712
|
export var search_roles = function () {
|
|
3685
|
-
var
|
|
3713
|
+
var _ref350 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3686
3714
|
return sdk.get('/roles/search', {
|
|
3687
3715
|
fields: request.fields,
|
|
3688
3716
|
limit: request.limit,
|
|
@@ -3691,16 +3719,15 @@ export var search_roles = function () {
|
|
|
3691
3719
|
id: request.id,
|
|
3692
3720
|
name: request.name,
|
|
3693
3721
|
built_in: request.built_in,
|
|
3694
|
-
filter_or: request.filter_or
|
|
3695
|
-
is_support_role: request.is_support_role
|
|
3722
|
+
filter_or: request.filter_or
|
|
3696
3723
|
}, null, options);
|
|
3697
3724
|
});
|
|
3698
|
-
return function search_roles(
|
|
3699
|
-
return
|
|
3725
|
+
return function search_roles(_x1190, _x1191, _x1192) {
|
|
3726
|
+
return _ref350.apply(this, arguments);
|
|
3700
3727
|
};
|
|
3701
3728
|
}();
|
|
3702
3729
|
export var search_roles_with_user_count = function () {
|
|
3703
|
-
var
|
|
3730
|
+
var _ref351 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3704
3731
|
return sdk.get('/roles/search/with_user_count', {
|
|
3705
3732
|
fields: request.fields,
|
|
3706
3733
|
limit: request.limit,
|
|
@@ -3712,148 +3739,148 @@ export var search_roles_with_user_count = function () {
|
|
|
3712
3739
|
filter_or: request.filter_or
|
|
3713
3740
|
}, null, options);
|
|
3714
3741
|
});
|
|
3715
|
-
return function search_roles_with_user_count(
|
|
3716
|
-
return
|
|
3742
|
+
return function search_roles_with_user_count(_x1193, _x1194, _x1195) {
|
|
3743
|
+
return _ref351.apply(this, arguments);
|
|
3717
3744
|
};
|
|
3718
3745
|
}();
|
|
3719
3746
|
export var role = function () {
|
|
3720
|
-
var
|
|
3747
|
+
var _ref352 = _asyncToGenerator(function* (sdk, role_id, options) {
|
|
3721
3748
|
role_id = encodeParam(role_id);
|
|
3722
3749
|
return sdk.get("/roles/".concat(role_id), null, null, options);
|
|
3723
3750
|
});
|
|
3724
|
-
return function role(
|
|
3725
|
-
return
|
|
3751
|
+
return function role(_x1196, _x1197, _x1198) {
|
|
3752
|
+
return _ref352.apply(this, arguments);
|
|
3726
3753
|
};
|
|
3727
3754
|
}();
|
|
3728
3755
|
export var update_role = function () {
|
|
3729
|
-
var
|
|
3756
|
+
var _ref353 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
3730
3757
|
role_id = encodeParam(role_id);
|
|
3731
3758
|
return sdk.patch("/roles/".concat(role_id), null, body, options);
|
|
3732
3759
|
});
|
|
3733
|
-
return function update_role(
|
|
3734
|
-
return
|
|
3760
|
+
return function update_role(_x1199, _x1200, _x1201, _x1202) {
|
|
3761
|
+
return _ref353.apply(this, arguments);
|
|
3735
3762
|
};
|
|
3736
3763
|
}();
|
|
3737
3764
|
export var delete_role = function () {
|
|
3738
|
-
var
|
|
3765
|
+
var _ref354 = _asyncToGenerator(function* (sdk, role_id, options) {
|
|
3739
3766
|
role_id = encodeParam(role_id);
|
|
3740
3767
|
return sdk.delete("/roles/".concat(role_id), null, null, options);
|
|
3741
3768
|
});
|
|
3742
|
-
return function delete_role(
|
|
3743
|
-
return
|
|
3769
|
+
return function delete_role(_x1203, _x1204, _x1205) {
|
|
3770
|
+
return _ref354.apply(this, arguments);
|
|
3744
3771
|
};
|
|
3745
3772
|
}();
|
|
3746
3773
|
export var role_groups = function () {
|
|
3747
|
-
var
|
|
3774
|
+
var _ref355 = _asyncToGenerator(function* (sdk, role_id, fields, options) {
|
|
3748
3775
|
role_id = encodeParam(role_id);
|
|
3749
3776
|
return sdk.get("/roles/".concat(role_id, "/groups"), {
|
|
3750
3777
|
fields
|
|
3751
3778
|
}, null, options);
|
|
3752
3779
|
});
|
|
3753
|
-
return function role_groups(
|
|
3754
|
-
return
|
|
3780
|
+
return function role_groups(_x1206, _x1207, _x1208, _x1209) {
|
|
3781
|
+
return _ref355.apply(this, arguments);
|
|
3755
3782
|
};
|
|
3756
3783
|
}();
|
|
3757
3784
|
export var set_role_groups = function () {
|
|
3758
|
-
var
|
|
3785
|
+
var _ref356 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
3759
3786
|
role_id = encodeParam(role_id);
|
|
3760
3787
|
return sdk.put("/roles/".concat(role_id, "/groups"), null, body, options);
|
|
3761
3788
|
});
|
|
3762
|
-
return function set_role_groups(
|
|
3763
|
-
return
|
|
3789
|
+
return function set_role_groups(_x1210, _x1211, _x1212, _x1213) {
|
|
3790
|
+
return _ref356.apply(this, arguments);
|
|
3764
3791
|
};
|
|
3765
3792
|
}();
|
|
3766
3793
|
export var role_users = function () {
|
|
3767
|
-
var
|
|
3794
|
+
var _ref357 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3768
3795
|
request.role_id = encodeParam(request.role_id);
|
|
3769
3796
|
return sdk.get("/roles/".concat(request.role_id, "/users"), {
|
|
3770
3797
|
fields: request.fields,
|
|
3771
3798
|
direct_association_only: request.direct_association_only
|
|
3772
3799
|
}, null, options);
|
|
3773
3800
|
});
|
|
3774
|
-
return function role_users(
|
|
3775
|
-
return
|
|
3801
|
+
return function role_users(_x1214, _x1215, _x1216) {
|
|
3802
|
+
return _ref357.apply(this, arguments);
|
|
3776
3803
|
};
|
|
3777
3804
|
}();
|
|
3778
3805
|
export var set_role_users = function () {
|
|
3779
|
-
var
|
|
3806
|
+
var _ref358 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
3780
3807
|
role_id = encodeParam(role_id);
|
|
3781
3808
|
return sdk.put("/roles/".concat(role_id, "/users"), null, body, options);
|
|
3782
3809
|
});
|
|
3783
|
-
return function set_role_users(
|
|
3784
|
-
return
|
|
3810
|
+
return function set_role_users(_x1217, _x1218, _x1219, _x1220) {
|
|
3811
|
+
return _ref358.apply(this, arguments);
|
|
3785
3812
|
};
|
|
3786
3813
|
}();
|
|
3787
3814
|
export var scheduled_plans_for_space = function () {
|
|
3788
|
-
var
|
|
3815
|
+
var _ref359 = _asyncToGenerator(function* (sdk, space_id, fields, options) {
|
|
3789
3816
|
space_id = encodeParam(space_id);
|
|
3790
3817
|
return sdk.get("/scheduled_plans/space/".concat(space_id), {
|
|
3791
3818
|
fields
|
|
3792
3819
|
}, null, options);
|
|
3793
3820
|
});
|
|
3794
|
-
return function scheduled_plans_for_space(
|
|
3795
|
-
return
|
|
3821
|
+
return function scheduled_plans_for_space(_x1221, _x1222, _x1223, _x1224) {
|
|
3822
|
+
return _ref359.apply(this, arguments);
|
|
3796
3823
|
};
|
|
3797
3824
|
}();
|
|
3798
3825
|
export var scheduled_plan = function () {
|
|
3799
|
-
var
|
|
3826
|
+
var _ref360 = _asyncToGenerator(function* (sdk, scheduled_plan_id, fields, options) {
|
|
3800
3827
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
3801
3828
|
return sdk.get("/scheduled_plans/".concat(scheduled_plan_id), {
|
|
3802
3829
|
fields
|
|
3803
3830
|
}, null, options);
|
|
3804
3831
|
});
|
|
3805
|
-
return function scheduled_plan(
|
|
3806
|
-
return
|
|
3832
|
+
return function scheduled_plan(_x1225, _x1226, _x1227, _x1228) {
|
|
3833
|
+
return _ref360.apply(this, arguments);
|
|
3807
3834
|
};
|
|
3808
3835
|
}();
|
|
3809
3836
|
export var update_scheduled_plan = function () {
|
|
3810
|
-
var
|
|
3837
|
+
var _ref361 = _asyncToGenerator(function* (sdk, scheduled_plan_id, body, options) {
|
|
3811
3838
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
3812
3839
|
return sdk.patch("/scheduled_plans/".concat(scheduled_plan_id), null, body, options);
|
|
3813
3840
|
});
|
|
3814
|
-
return function update_scheduled_plan(
|
|
3815
|
-
return
|
|
3841
|
+
return function update_scheduled_plan(_x1229, _x1230, _x1231, _x1232) {
|
|
3842
|
+
return _ref361.apply(this, arguments);
|
|
3816
3843
|
};
|
|
3817
3844
|
}();
|
|
3818
3845
|
export var delete_scheduled_plan = function () {
|
|
3819
|
-
var
|
|
3846
|
+
var _ref362 = _asyncToGenerator(function* (sdk, scheduled_plan_id, options) {
|
|
3820
3847
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
3821
3848
|
return sdk.delete("/scheduled_plans/".concat(scheduled_plan_id), null, null, options);
|
|
3822
3849
|
});
|
|
3823
|
-
return function delete_scheduled_plan(
|
|
3824
|
-
return
|
|
3850
|
+
return function delete_scheduled_plan(_x1233, _x1234, _x1235) {
|
|
3851
|
+
return _ref362.apply(this, arguments);
|
|
3825
3852
|
};
|
|
3826
3853
|
}();
|
|
3827
3854
|
export var all_scheduled_plans = function () {
|
|
3828
|
-
var
|
|
3855
|
+
var _ref363 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3829
3856
|
return sdk.get('/scheduled_plans', {
|
|
3830
3857
|
user_id: request.user_id,
|
|
3831
3858
|
fields: request.fields,
|
|
3832
3859
|
all_users: request.all_users
|
|
3833
3860
|
}, null, options);
|
|
3834
3861
|
});
|
|
3835
|
-
return function all_scheduled_plans(
|
|
3836
|
-
return
|
|
3862
|
+
return function all_scheduled_plans(_x1236, _x1237, _x1238) {
|
|
3863
|
+
return _ref363.apply(this, arguments);
|
|
3837
3864
|
};
|
|
3838
3865
|
}();
|
|
3839
3866
|
export var create_scheduled_plan = function () {
|
|
3840
|
-
var
|
|
3867
|
+
var _ref364 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3841
3868
|
return sdk.post('/scheduled_plans', null, body, options);
|
|
3842
3869
|
});
|
|
3843
|
-
return function create_scheduled_plan(
|
|
3844
|
-
return
|
|
3870
|
+
return function create_scheduled_plan(_x1239, _x1240, _x1241) {
|
|
3871
|
+
return _ref364.apply(this, arguments);
|
|
3845
3872
|
};
|
|
3846
3873
|
}();
|
|
3847
3874
|
export var scheduled_plan_run_once = function () {
|
|
3848
|
-
var
|
|
3875
|
+
var _ref365 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3849
3876
|
return sdk.post('/scheduled_plans/run_once', null, body, options);
|
|
3850
3877
|
});
|
|
3851
|
-
return function scheduled_plan_run_once(
|
|
3852
|
-
return
|
|
3878
|
+
return function scheduled_plan_run_once(_x1242, _x1243, _x1244) {
|
|
3879
|
+
return _ref365.apply(this, arguments);
|
|
3853
3880
|
};
|
|
3854
3881
|
}();
|
|
3855
3882
|
export var search_scheduled_plans = function () {
|
|
3856
|
-
var
|
|
3883
|
+
var _ref366 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3857
3884
|
return sdk.get('/scheduled_plans/search', {
|
|
3858
3885
|
user_id: request.user_id,
|
|
3859
3886
|
fields: request.fields,
|
|
@@ -3873,12 +3900,12 @@ export var search_scheduled_plans = function () {
|
|
|
3873
3900
|
filter_or: request.filter_or
|
|
3874
3901
|
}, null, options);
|
|
3875
3902
|
});
|
|
3876
|
-
return function search_scheduled_plans(
|
|
3877
|
-
return
|
|
3903
|
+
return function search_scheduled_plans(_x1245, _x1246, _x1247) {
|
|
3904
|
+
return _ref366.apply(this, arguments);
|
|
3878
3905
|
};
|
|
3879
3906
|
}();
|
|
3880
3907
|
export var scheduled_plans_for_look = function () {
|
|
3881
|
-
var
|
|
3908
|
+
var _ref367 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3882
3909
|
request.look_id = encodeParam(request.look_id);
|
|
3883
3910
|
return sdk.get("/scheduled_plans/look/".concat(request.look_id), {
|
|
3884
3911
|
user_id: request.user_id,
|
|
@@ -3886,12 +3913,12 @@ export var scheduled_plans_for_look = function () {
|
|
|
3886
3913
|
all_users: request.all_users
|
|
3887
3914
|
}, null, options);
|
|
3888
3915
|
});
|
|
3889
|
-
return function scheduled_plans_for_look(
|
|
3890
|
-
return
|
|
3916
|
+
return function scheduled_plans_for_look(_x1248, _x1249, _x1250) {
|
|
3917
|
+
return _ref367.apply(this, arguments);
|
|
3891
3918
|
};
|
|
3892
3919
|
}();
|
|
3893
3920
|
export var scheduled_plans_for_dashboard = function () {
|
|
3894
|
-
var
|
|
3921
|
+
var _ref368 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3895
3922
|
request.dashboard_id = encodeParam(request.dashboard_id);
|
|
3896
3923
|
return sdk.get("/scheduled_plans/dashboard/".concat(request.dashboard_id), {
|
|
3897
3924
|
user_id: request.user_id,
|
|
@@ -3899,12 +3926,12 @@ export var scheduled_plans_for_dashboard = function () {
|
|
|
3899
3926
|
fields: request.fields
|
|
3900
3927
|
}, null, options);
|
|
3901
3928
|
});
|
|
3902
|
-
return function scheduled_plans_for_dashboard(
|
|
3903
|
-
return
|
|
3929
|
+
return function scheduled_plans_for_dashboard(_x1251, _x1252, _x1253) {
|
|
3930
|
+
return _ref368.apply(this, arguments);
|
|
3904
3931
|
};
|
|
3905
3932
|
}();
|
|
3906
3933
|
export var scheduled_plans_for_lookml_dashboard = function () {
|
|
3907
|
-
var
|
|
3934
|
+
var _ref369 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3908
3935
|
request.lookml_dashboard_id = encodeParam(request.lookml_dashboard_id);
|
|
3909
3936
|
return sdk.get("/scheduled_plans/lookml_dashboard/".concat(request.lookml_dashboard_id), {
|
|
3910
3937
|
user_id: request.user_id,
|
|
@@ -3912,82 +3939,82 @@ export var scheduled_plans_for_lookml_dashboard = function () {
|
|
|
3912
3939
|
all_users: request.all_users
|
|
3913
3940
|
}, null, options);
|
|
3914
3941
|
});
|
|
3915
|
-
return function scheduled_plans_for_lookml_dashboard(
|
|
3916
|
-
return
|
|
3942
|
+
return function scheduled_plans_for_lookml_dashboard(_x1254, _x1255, _x1256) {
|
|
3943
|
+
return _ref369.apply(this, arguments);
|
|
3917
3944
|
};
|
|
3918
3945
|
}();
|
|
3919
3946
|
export var scheduled_plan_run_once_by_id = function () {
|
|
3920
|
-
var
|
|
3947
|
+
var _ref370 = _asyncToGenerator(function* (sdk, scheduled_plan_id, body, options) {
|
|
3921
3948
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
3922
3949
|
return sdk.post("/scheduled_plans/".concat(scheduled_plan_id, "/run_once"), null, body, options);
|
|
3923
3950
|
});
|
|
3924
|
-
return function scheduled_plan_run_once_by_id(
|
|
3925
|
-
return
|
|
3951
|
+
return function scheduled_plan_run_once_by_id(_x1257, _x1258, _x1259, _x1260) {
|
|
3952
|
+
return _ref370.apply(this, arguments);
|
|
3926
3953
|
};
|
|
3927
3954
|
}();
|
|
3928
3955
|
export var session = function () {
|
|
3929
|
-
var
|
|
3956
|
+
var _ref371 = _asyncToGenerator(function* (sdk, options) {
|
|
3930
3957
|
return sdk.get('/session', null, null, options);
|
|
3931
3958
|
});
|
|
3932
|
-
return function session(
|
|
3933
|
-
return
|
|
3959
|
+
return function session(_x1261, _x1262) {
|
|
3960
|
+
return _ref371.apply(this, arguments);
|
|
3934
3961
|
};
|
|
3935
3962
|
}();
|
|
3936
3963
|
export var update_session = function () {
|
|
3937
|
-
var
|
|
3964
|
+
var _ref372 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3938
3965
|
return sdk.patch('/session', null, body, options);
|
|
3939
3966
|
});
|
|
3940
|
-
return function update_session(
|
|
3941
|
-
return
|
|
3967
|
+
return function update_session(_x1263, _x1264, _x1265) {
|
|
3968
|
+
return _ref372.apply(this, arguments);
|
|
3942
3969
|
};
|
|
3943
3970
|
}();
|
|
3944
3971
|
export var sql_interface_metadata = function () {
|
|
3945
|
-
var
|
|
3972
|
+
var _ref373 = _asyncToGenerator(function* (sdk, avatica_request, options) {
|
|
3946
3973
|
return sdk.get('/sql_interface_queries/metadata', {
|
|
3947
3974
|
avatica_request
|
|
3948
3975
|
}, null, options);
|
|
3949
3976
|
});
|
|
3950
|
-
return function sql_interface_metadata(
|
|
3951
|
-
return
|
|
3977
|
+
return function sql_interface_metadata(_x1266, _x1267, _x1268) {
|
|
3978
|
+
return _ref373.apply(this, arguments);
|
|
3952
3979
|
};
|
|
3953
3980
|
}();
|
|
3954
3981
|
export var run_sql_interface_query = function () {
|
|
3955
|
-
var
|
|
3982
|
+
var _ref374 = _asyncToGenerator(function* (sdk, query_id, result_format, options) {
|
|
3956
3983
|
result_format = encodeParam(result_format);
|
|
3957
3984
|
return sdk.get("/sql_interface_queries/".concat(query_id, "/run/").concat(result_format), null, null, options);
|
|
3958
3985
|
});
|
|
3959
|
-
return function run_sql_interface_query(
|
|
3960
|
-
return
|
|
3986
|
+
return function run_sql_interface_query(_x1269, _x1270, _x1271, _x1272) {
|
|
3987
|
+
return _ref374.apply(this, arguments);
|
|
3961
3988
|
};
|
|
3962
3989
|
}();
|
|
3963
3990
|
export var create_sql_interface_query = function () {
|
|
3964
|
-
var
|
|
3991
|
+
var _ref375 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3965
3992
|
return sdk.post('/sql_interface_queries', null, body, options);
|
|
3966
3993
|
});
|
|
3967
|
-
return function create_sql_interface_query(
|
|
3968
|
-
return
|
|
3994
|
+
return function create_sql_interface_query(_x1273, _x1274, _x1275) {
|
|
3995
|
+
return _ref375.apply(this, arguments);
|
|
3969
3996
|
};
|
|
3970
3997
|
}();
|
|
3971
3998
|
export var all_themes = function () {
|
|
3972
|
-
var
|
|
3999
|
+
var _ref376 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3973
4000
|
return sdk.get('/themes', {
|
|
3974
4001
|
fields
|
|
3975
4002
|
}, null, options);
|
|
3976
4003
|
});
|
|
3977
|
-
return function all_themes(
|
|
3978
|
-
return
|
|
4004
|
+
return function all_themes(_x1276, _x1277, _x1278) {
|
|
4005
|
+
return _ref376.apply(this, arguments);
|
|
3979
4006
|
};
|
|
3980
4007
|
}();
|
|
3981
4008
|
export var create_theme = function () {
|
|
3982
|
-
var
|
|
4009
|
+
var _ref377 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3983
4010
|
return sdk.post('/themes', null, body, options);
|
|
3984
4011
|
});
|
|
3985
|
-
return function create_theme(
|
|
3986
|
-
return
|
|
4012
|
+
return function create_theme(_x1279, _x1280, _x1281) {
|
|
4013
|
+
return _ref377.apply(this, arguments);
|
|
3987
4014
|
};
|
|
3988
4015
|
}();
|
|
3989
4016
|
export var search_themes = function () {
|
|
3990
|
-
var
|
|
4017
|
+
var _ref378 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3991
4018
|
return sdk.get('/themes/search', {
|
|
3992
4019
|
id: request.id,
|
|
3993
4020
|
name: request.name,
|
|
@@ -4000,92 +4027,92 @@ export var search_themes = function () {
|
|
|
4000
4027
|
filter_or: request.filter_or
|
|
4001
4028
|
}, null, options);
|
|
4002
4029
|
});
|
|
4003
|
-
return function search_themes(
|
|
4004
|
-
return
|
|
4030
|
+
return function search_themes(_x1282, _x1283, _x1284) {
|
|
4031
|
+
return _ref378.apply(this, arguments);
|
|
4005
4032
|
};
|
|
4006
4033
|
}();
|
|
4007
4034
|
export var default_theme = function () {
|
|
4008
|
-
var
|
|
4035
|
+
var _ref379 = _asyncToGenerator(function* (sdk, ts, options) {
|
|
4009
4036
|
return sdk.get('/themes/default', {
|
|
4010
4037
|
ts
|
|
4011
4038
|
}, null, options);
|
|
4012
4039
|
});
|
|
4013
|
-
return function default_theme(
|
|
4014
|
-
return
|
|
4040
|
+
return function default_theme(_x1285, _x1286, _x1287) {
|
|
4041
|
+
return _ref379.apply(this, arguments);
|
|
4015
4042
|
};
|
|
4016
4043
|
}();
|
|
4017
4044
|
export var set_default_theme = function () {
|
|
4018
|
-
var
|
|
4045
|
+
var _ref380 = _asyncToGenerator(function* (sdk, name, options) {
|
|
4019
4046
|
return sdk.put('/themes/default', {
|
|
4020
4047
|
name
|
|
4021
4048
|
}, null, options);
|
|
4022
4049
|
});
|
|
4023
|
-
return function set_default_theme(
|
|
4024
|
-
return
|
|
4050
|
+
return function set_default_theme(_x1288, _x1289, _x1290) {
|
|
4051
|
+
return _ref380.apply(this, arguments);
|
|
4025
4052
|
};
|
|
4026
4053
|
}();
|
|
4027
4054
|
export var active_themes = function () {
|
|
4028
|
-
var
|
|
4055
|
+
var _ref381 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4029
4056
|
return sdk.get('/themes/active', {
|
|
4030
4057
|
name: request.name,
|
|
4031
4058
|
ts: request.ts,
|
|
4032
4059
|
fields: request.fields
|
|
4033
4060
|
}, null, options);
|
|
4034
4061
|
});
|
|
4035
|
-
return function active_themes(
|
|
4036
|
-
return
|
|
4062
|
+
return function active_themes(_x1291, _x1292, _x1293) {
|
|
4063
|
+
return _ref381.apply(this, arguments);
|
|
4037
4064
|
};
|
|
4038
4065
|
}();
|
|
4039
4066
|
export var theme_or_default = function () {
|
|
4040
|
-
var
|
|
4067
|
+
var _ref382 = _asyncToGenerator(function* (sdk, name, ts, options) {
|
|
4041
4068
|
return sdk.get('/themes/theme_or_default', {
|
|
4042
4069
|
name,
|
|
4043
4070
|
ts
|
|
4044
4071
|
}, null, options);
|
|
4045
4072
|
});
|
|
4046
|
-
return function theme_or_default(
|
|
4047
|
-
return
|
|
4073
|
+
return function theme_or_default(_x1294, _x1295, _x1296, _x1297) {
|
|
4074
|
+
return _ref382.apply(this, arguments);
|
|
4048
4075
|
};
|
|
4049
4076
|
}();
|
|
4050
4077
|
export var validate_theme = function () {
|
|
4051
|
-
var
|
|
4078
|
+
var _ref383 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4052
4079
|
return sdk.post('/themes/validate', null, body, options);
|
|
4053
4080
|
});
|
|
4054
|
-
return function validate_theme(
|
|
4055
|
-
return
|
|
4081
|
+
return function validate_theme(_x1298, _x1299, _x1300) {
|
|
4082
|
+
return _ref383.apply(this, arguments);
|
|
4056
4083
|
};
|
|
4057
4084
|
}();
|
|
4058
4085
|
export var theme = function () {
|
|
4059
|
-
var
|
|
4086
|
+
var _ref384 = _asyncToGenerator(function* (sdk, theme_id, fields, options) {
|
|
4060
4087
|
theme_id = encodeParam(theme_id);
|
|
4061
4088
|
return sdk.get("/themes/".concat(theme_id), {
|
|
4062
4089
|
fields
|
|
4063
4090
|
}, null, options);
|
|
4064
4091
|
});
|
|
4065
|
-
return function theme(
|
|
4066
|
-
return
|
|
4092
|
+
return function theme(_x1301, _x1302, _x1303, _x1304) {
|
|
4093
|
+
return _ref384.apply(this, arguments);
|
|
4067
4094
|
};
|
|
4068
4095
|
}();
|
|
4069
4096
|
export var update_theme = function () {
|
|
4070
|
-
var
|
|
4097
|
+
var _ref385 = _asyncToGenerator(function* (sdk, theme_id, body, options) {
|
|
4071
4098
|
theme_id = encodeParam(theme_id);
|
|
4072
4099
|
return sdk.patch("/themes/".concat(theme_id), null, body, options);
|
|
4073
4100
|
});
|
|
4074
|
-
return function update_theme(
|
|
4075
|
-
return
|
|
4101
|
+
return function update_theme(_x1305, _x1306, _x1307, _x1308) {
|
|
4102
|
+
return _ref385.apply(this, arguments);
|
|
4076
4103
|
};
|
|
4077
4104
|
}();
|
|
4078
4105
|
export var delete_theme = function () {
|
|
4079
|
-
var
|
|
4106
|
+
var _ref386 = _asyncToGenerator(function* (sdk, theme_id, options) {
|
|
4080
4107
|
theme_id = encodeParam(theme_id);
|
|
4081
4108
|
return sdk.delete("/themes/".concat(theme_id), null, null, options);
|
|
4082
4109
|
});
|
|
4083
|
-
return function delete_theme(
|
|
4084
|
-
return
|
|
4110
|
+
return function delete_theme(_x1309, _x1310, _x1311) {
|
|
4111
|
+
return _ref386.apply(this, arguments);
|
|
4085
4112
|
};
|
|
4086
4113
|
}();
|
|
4087
4114
|
export var search_credentials_email = function () {
|
|
4088
|
-
var
|
|
4115
|
+
var _ref387 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4089
4116
|
return sdk.get('/credentials_email/search', {
|
|
4090
4117
|
fields: request.fields,
|
|
4091
4118
|
limit: request.limit,
|
|
@@ -4097,22 +4124,22 @@ export var search_credentials_email = function () {
|
|
|
4097
4124
|
filter_or: request.filter_or
|
|
4098
4125
|
}, null, options);
|
|
4099
4126
|
});
|
|
4100
|
-
return function search_credentials_email(
|
|
4101
|
-
return
|
|
4127
|
+
return function search_credentials_email(_x1312, _x1313, _x1314) {
|
|
4128
|
+
return _ref387.apply(this, arguments);
|
|
4102
4129
|
};
|
|
4103
4130
|
}();
|
|
4104
4131
|
export var me = function () {
|
|
4105
|
-
var
|
|
4132
|
+
var _ref388 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
4106
4133
|
return sdk.get('/user', {
|
|
4107
4134
|
fields
|
|
4108
4135
|
}, null, options);
|
|
4109
4136
|
});
|
|
4110
|
-
return function me(
|
|
4111
|
-
return
|
|
4137
|
+
return function me(_x1315, _x1316, _x1317) {
|
|
4138
|
+
return _ref388.apply(this, arguments);
|
|
4112
4139
|
};
|
|
4113
4140
|
}();
|
|
4114
4141
|
export var all_users = function () {
|
|
4115
|
-
var
|
|
4142
|
+
var _ref389 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4116
4143
|
return sdk.get('/users', {
|
|
4117
4144
|
fields: request.fields,
|
|
4118
4145
|
page: request.page,
|
|
@@ -4123,22 +4150,22 @@ export var all_users = function () {
|
|
|
4123
4150
|
ids: request.ids
|
|
4124
4151
|
}, null, options);
|
|
4125
4152
|
});
|
|
4126
|
-
return function all_users(
|
|
4127
|
-
return
|
|
4153
|
+
return function all_users(_x1318, _x1319, _x1320) {
|
|
4154
|
+
return _ref389.apply(this, arguments);
|
|
4128
4155
|
};
|
|
4129
4156
|
}();
|
|
4130
4157
|
export var create_user = function () {
|
|
4131
|
-
var
|
|
4158
|
+
var _ref390 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
4132
4159
|
return sdk.post('/users', {
|
|
4133
4160
|
fields
|
|
4134
4161
|
}, body, options);
|
|
4135
4162
|
});
|
|
4136
|
-
return function create_user(
|
|
4137
|
-
return
|
|
4163
|
+
return function create_user(_x1321, _x1322, _x1323, _x1324) {
|
|
4164
|
+
return _ref390.apply(this, arguments);
|
|
4138
4165
|
};
|
|
4139
4166
|
}();
|
|
4140
4167
|
export var search_users = function () {
|
|
4141
|
-
var
|
|
4168
|
+
var _ref391 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4142
4169
|
return sdk.get('/users/search', {
|
|
4143
4170
|
fields: request.fields,
|
|
4144
4171
|
page: request.page,
|
|
@@ -4156,15 +4183,16 @@ export var search_users = function () {
|
|
|
4156
4183
|
filter_or: request.filter_or,
|
|
4157
4184
|
content_metadata_id: request.content_metadata_id,
|
|
4158
4185
|
group_id: request.group_id,
|
|
4159
|
-
can_manage_api3_creds: request.can_manage_api3_creds
|
|
4186
|
+
can_manage_api3_creds: request.can_manage_api3_creds,
|
|
4187
|
+
is_service_account: request.is_service_account
|
|
4160
4188
|
}, null, options);
|
|
4161
4189
|
});
|
|
4162
|
-
return function search_users(
|
|
4163
|
-
return
|
|
4190
|
+
return function search_users(_x1325, _x1326, _x1327) {
|
|
4191
|
+
return _ref391.apply(this, arguments);
|
|
4164
4192
|
};
|
|
4165
4193
|
}();
|
|
4166
4194
|
export var search_users_names = function () {
|
|
4167
|
-
var
|
|
4195
|
+
var _ref392 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4168
4196
|
request.pattern = encodeParam(request.pattern);
|
|
4169
4197
|
return sdk.get("/users/search/names/".concat(request.pattern), {
|
|
4170
4198
|
fields: request.fields,
|
|
@@ -4181,385 +4209,385 @@ export var search_users_names = function () {
|
|
|
4181
4209
|
is_disabled: request.is_disabled
|
|
4182
4210
|
}, null, options);
|
|
4183
4211
|
});
|
|
4184
|
-
return function search_users_names(
|
|
4185
|
-
return
|
|
4212
|
+
return function search_users_names(_x1328, _x1329, _x1330) {
|
|
4213
|
+
return _ref392.apply(this, arguments);
|
|
4186
4214
|
};
|
|
4187
4215
|
}();
|
|
4188
4216
|
export var user = function () {
|
|
4189
|
-
var
|
|
4217
|
+
var _ref393 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4190
4218
|
user_id = encodeParam(user_id);
|
|
4191
4219
|
return sdk.get("/users/".concat(user_id), {
|
|
4192
4220
|
fields
|
|
4193
4221
|
}, null, options);
|
|
4194
4222
|
});
|
|
4195
|
-
return function user(
|
|
4196
|
-
return
|
|
4223
|
+
return function user(_x1331, _x1332, _x1333, _x1334) {
|
|
4224
|
+
return _ref393.apply(this, arguments);
|
|
4197
4225
|
};
|
|
4198
4226
|
}();
|
|
4199
4227
|
export var update_user = function () {
|
|
4200
|
-
var
|
|
4228
|
+
var _ref394 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4201
4229
|
user_id = encodeParam(user_id);
|
|
4202
4230
|
return sdk.patch("/users/".concat(user_id), {
|
|
4203
4231
|
fields
|
|
4204
4232
|
}, body, options);
|
|
4205
4233
|
});
|
|
4206
|
-
return function update_user(
|
|
4207
|
-
return
|
|
4234
|
+
return function update_user(_x1335, _x1336, _x1337, _x1338, _x1339) {
|
|
4235
|
+
return _ref394.apply(this, arguments);
|
|
4208
4236
|
};
|
|
4209
4237
|
}();
|
|
4210
4238
|
export var delete_user = function () {
|
|
4211
|
-
var
|
|
4239
|
+
var _ref395 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4212
4240
|
user_id = encodeParam(user_id);
|
|
4213
4241
|
return sdk.delete("/users/".concat(user_id), null, null, options);
|
|
4214
4242
|
});
|
|
4215
|
-
return function delete_user(
|
|
4216
|
-
return
|
|
4243
|
+
return function delete_user(_x1340, _x1341, _x1342) {
|
|
4244
|
+
return _ref395.apply(this, arguments);
|
|
4217
4245
|
};
|
|
4218
4246
|
}();
|
|
4219
4247
|
export var user_for_credential = function () {
|
|
4220
|
-
var
|
|
4248
|
+
var _ref396 = _asyncToGenerator(function* (sdk, credential_type, credential_id, fields, options) {
|
|
4221
4249
|
credential_type = encodeParam(credential_type);
|
|
4222
4250
|
credential_id = encodeParam(credential_id);
|
|
4223
4251
|
return sdk.get("/users/credential/".concat(credential_type, "/").concat(credential_id), {
|
|
4224
4252
|
fields
|
|
4225
4253
|
}, null, options);
|
|
4226
4254
|
});
|
|
4227
|
-
return function user_for_credential(
|
|
4228
|
-
return
|
|
4255
|
+
return function user_for_credential(_x1343, _x1344, _x1345, _x1346, _x1347) {
|
|
4256
|
+
return _ref396.apply(this, arguments);
|
|
4229
4257
|
};
|
|
4230
4258
|
}();
|
|
4231
4259
|
export var user_credentials_email = function () {
|
|
4232
|
-
var
|
|
4260
|
+
var _ref397 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4233
4261
|
user_id = encodeParam(user_id);
|
|
4234
4262
|
return sdk.get("/users/".concat(user_id, "/credentials_email"), {
|
|
4235
4263
|
fields
|
|
4236
4264
|
}, null, options);
|
|
4237
4265
|
});
|
|
4238
|
-
return function user_credentials_email(
|
|
4239
|
-
return
|
|
4266
|
+
return function user_credentials_email(_x1348, _x1349, _x1350, _x1351) {
|
|
4267
|
+
return _ref397.apply(this, arguments);
|
|
4240
4268
|
};
|
|
4241
4269
|
}();
|
|
4242
4270
|
export var create_user_credentials_email = function () {
|
|
4243
|
-
var
|
|
4271
|
+
var _ref398 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4244
4272
|
user_id = encodeParam(user_id);
|
|
4245
4273
|
return sdk.post("/users/".concat(user_id, "/credentials_email"), {
|
|
4246
4274
|
fields
|
|
4247
4275
|
}, body, options);
|
|
4248
4276
|
});
|
|
4249
|
-
return function create_user_credentials_email(
|
|
4250
|
-
return
|
|
4277
|
+
return function create_user_credentials_email(_x1352, _x1353, _x1354, _x1355, _x1356) {
|
|
4278
|
+
return _ref398.apply(this, arguments);
|
|
4251
4279
|
};
|
|
4252
4280
|
}();
|
|
4253
4281
|
export var update_user_credentials_email = function () {
|
|
4254
|
-
var
|
|
4282
|
+
var _ref399 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4255
4283
|
user_id = encodeParam(user_id);
|
|
4256
4284
|
return sdk.patch("/users/".concat(user_id, "/credentials_email"), {
|
|
4257
4285
|
fields
|
|
4258
4286
|
}, body, options);
|
|
4259
4287
|
});
|
|
4260
|
-
return function update_user_credentials_email(
|
|
4261
|
-
return
|
|
4288
|
+
return function update_user_credentials_email(_x1357, _x1358, _x1359, _x1360, _x1361) {
|
|
4289
|
+
return _ref399.apply(this, arguments);
|
|
4262
4290
|
};
|
|
4263
4291
|
}();
|
|
4264
4292
|
export var delete_user_credentials_email = function () {
|
|
4265
|
-
var
|
|
4293
|
+
var _ref400 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4266
4294
|
user_id = encodeParam(user_id);
|
|
4267
4295
|
return sdk.delete("/users/".concat(user_id, "/credentials_email"), null, null, options);
|
|
4268
4296
|
});
|
|
4269
|
-
return function delete_user_credentials_email(
|
|
4270
|
-
return
|
|
4297
|
+
return function delete_user_credentials_email(_x1362, _x1363, _x1364) {
|
|
4298
|
+
return _ref400.apply(this, arguments);
|
|
4271
4299
|
};
|
|
4272
4300
|
}();
|
|
4273
4301
|
export var user_credentials_totp = function () {
|
|
4274
|
-
var
|
|
4302
|
+
var _ref401 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4275
4303
|
user_id = encodeParam(user_id);
|
|
4276
4304
|
return sdk.get("/users/".concat(user_id, "/credentials_totp"), {
|
|
4277
4305
|
fields
|
|
4278
4306
|
}, null, options);
|
|
4279
4307
|
});
|
|
4280
|
-
return function user_credentials_totp(
|
|
4281
|
-
return
|
|
4308
|
+
return function user_credentials_totp(_x1365, _x1366, _x1367, _x1368) {
|
|
4309
|
+
return _ref401.apply(this, arguments);
|
|
4282
4310
|
};
|
|
4283
4311
|
}();
|
|
4284
4312
|
export var create_user_credentials_totp = function () {
|
|
4285
|
-
var
|
|
4313
|
+
var _ref402 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4286
4314
|
user_id = encodeParam(user_id);
|
|
4287
4315
|
return sdk.post("/users/".concat(user_id, "/credentials_totp"), {
|
|
4288
4316
|
fields
|
|
4289
4317
|
}, body, options);
|
|
4290
4318
|
});
|
|
4291
|
-
return function create_user_credentials_totp(
|
|
4292
|
-
return
|
|
4319
|
+
return function create_user_credentials_totp(_x1369, _x1370, _x1371, _x1372, _x1373) {
|
|
4320
|
+
return _ref402.apply(this, arguments);
|
|
4293
4321
|
};
|
|
4294
4322
|
}();
|
|
4295
4323
|
export var delete_user_credentials_totp = function () {
|
|
4296
|
-
var
|
|
4324
|
+
var _ref403 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4297
4325
|
user_id = encodeParam(user_id);
|
|
4298
4326
|
return sdk.delete("/users/".concat(user_id, "/credentials_totp"), null, null, options);
|
|
4299
4327
|
});
|
|
4300
|
-
return function delete_user_credentials_totp(
|
|
4301
|
-
return
|
|
4328
|
+
return function delete_user_credentials_totp(_x1374, _x1375, _x1376) {
|
|
4329
|
+
return _ref403.apply(this, arguments);
|
|
4302
4330
|
};
|
|
4303
4331
|
}();
|
|
4304
4332
|
export var user_credentials_ldap = function () {
|
|
4305
|
-
var
|
|
4333
|
+
var _ref404 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4306
4334
|
user_id = encodeParam(user_id);
|
|
4307
4335
|
return sdk.get("/users/".concat(user_id, "/credentials_ldap"), {
|
|
4308
4336
|
fields
|
|
4309
4337
|
}, null, options);
|
|
4310
4338
|
});
|
|
4311
|
-
return function user_credentials_ldap(
|
|
4312
|
-
return
|
|
4339
|
+
return function user_credentials_ldap(_x1377, _x1378, _x1379, _x1380) {
|
|
4340
|
+
return _ref404.apply(this, arguments);
|
|
4313
4341
|
};
|
|
4314
4342
|
}();
|
|
4315
4343
|
export var delete_user_credentials_ldap = function () {
|
|
4316
|
-
var
|
|
4344
|
+
var _ref405 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4317
4345
|
user_id = encodeParam(user_id);
|
|
4318
4346
|
return sdk.delete("/users/".concat(user_id, "/credentials_ldap"), null, null, options);
|
|
4319
4347
|
});
|
|
4320
|
-
return function delete_user_credentials_ldap(
|
|
4321
|
-
return
|
|
4348
|
+
return function delete_user_credentials_ldap(_x1381, _x1382, _x1383) {
|
|
4349
|
+
return _ref405.apply(this, arguments);
|
|
4322
4350
|
};
|
|
4323
4351
|
}();
|
|
4324
4352
|
export var user_credentials_google = function () {
|
|
4325
|
-
var
|
|
4353
|
+
var _ref406 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4326
4354
|
user_id = encodeParam(user_id);
|
|
4327
4355
|
return sdk.get("/users/".concat(user_id, "/credentials_google"), {
|
|
4328
4356
|
fields
|
|
4329
4357
|
}, null, options);
|
|
4330
4358
|
});
|
|
4331
|
-
return function user_credentials_google(
|
|
4332
|
-
return
|
|
4359
|
+
return function user_credentials_google(_x1384, _x1385, _x1386, _x1387) {
|
|
4360
|
+
return _ref406.apply(this, arguments);
|
|
4333
4361
|
};
|
|
4334
4362
|
}();
|
|
4335
4363
|
export var delete_user_credentials_google = function () {
|
|
4336
|
-
var
|
|
4364
|
+
var _ref407 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4337
4365
|
user_id = encodeParam(user_id);
|
|
4338
4366
|
return sdk.delete("/users/".concat(user_id, "/credentials_google"), null, null, options);
|
|
4339
4367
|
});
|
|
4340
|
-
return function delete_user_credentials_google(
|
|
4341
|
-
return
|
|
4368
|
+
return function delete_user_credentials_google(_x1388, _x1389, _x1390) {
|
|
4369
|
+
return _ref407.apply(this, arguments);
|
|
4342
4370
|
};
|
|
4343
4371
|
}();
|
|
4344
4372
|
export var user_credentials_saml = function () {
|
|
4345
|
-
var
|
|
4373
|
+
var _ref408 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4346
4374
|
user_id = encodeParam(user_id);
|
|
4347
4375
|
return sdk.get("/users/".concat(user_id, "/credentials_saml"), {
|
|
4348
4376
|
fields
|
|
4349
4377
|
}, null, options);
|
|
4350
4378
|
});
|
|
4351
|
-
return function user_credentials_saml(
|
|
4352
|
-
return
|
|
4379
|
+
return function user_credentials_saml(_x1391, _x1392, _x1393, _x1394) {
|
|
4380
|
+
return _ref408.apply(this, arguments);
|
|
4353
4381
|
};
|
|
4354
4382
|
}();
|
|
4355
4383
|
export var delete_user_credentials_saml = function () {
|
|
4356
|
-
var
|
|
4384
|
+
var _ref409 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4357
4385
|
user_id = encodeParam(user_id);
|
|
4358
4386
|
return sdk.delete("/users/".concat(user_id, "/credentials_saml"), null, null, options);
|
|
4359
4387
|
});
|
|
4360
|
-
return function delete_user_credentials_saml(
|
|
4361
|
-
return
|
|
4388
|
+
return function delete_user_credentials_saml(_x1395, _x1396, _x1397) {
|
|
4389
|
+
return _ref409.apply(this, arguments);
|
|
4362
4390
|
};
|
|
4363
4391
|
}();
|
|
4364
4392
|
export var user_credentials_oidc = function () {
|
|
4365
|
-
var
|
|
4393
|
+
var _ref410 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4366
4394
|
user_id = encodeParam(user_id);
|
|
4367
4395
|
return sdk.get("/users/".concat(user_id, "/credentials_oidc"), {
|
|
4368
4396
|
fields
|
|
4369
4397
|
}, null, options);
|
|
4370
4398
|
});
|
|
4371
|
-
return function user_credentials_oidc(
|
|
4372
|
-
return
|
|
4399
|
+
return function user_credentials_oidc(_x1398, _x1399, _x1400, _x1401) {
|
|
4400
|
+
return _ref410.apply(this, arguments);
|
|
4373
4401
|
};
|
|
4374
4402
|
}();
|
|
4375
4403
|
export var delete_user_credentials_oidc = function () {
|
|
4376
|
-
var
|
|
4404
|
+
var _ref411 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4377
4405
|
user_id = encodeParam(user_id);
|
|
4378
4406
|
return sdk.delete("/users/".concat(user_id, "/credentials_oidc"), null, null, options);
|
|
4379
4407
|
});
|
|
4380
|
-
return function delete_user_credentials_oidc(
|
|
4381
|
-
return
|
|
4408
|
+
return function delete_user_credentials_oidc(_x1402, _x1403, _x1404) {
|
|
4409
|
+
return _ref411.apply(this, arguments);
|
|
4382
4410
|
};
|
|
4383
4411
|
}();
|
|
4384
4412
|
export var user_credentials_api3 = function () {
|
|
4385
|
-
var
|
|
4413
|
+
var _ref412 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, fields, options) {
|
|
4386
4414
|
user_id = encodeParam(user_id);
|
|
4387
4415
|
credentials_api3_id = encodeParam(credentials_api3_id);
|
|
4388
4416
|
return sdk.get("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), {
|
|
4389
4417
|
fields
|
|
4390
4418
|
}, null, options);
|
|
4391
4419
|
});
|
|
4392
|
-
return function user_credentials_api3(
|
|
4393
|
-
return
|
|
4420
|
+
return function user_credentials_api3(_x1405, _x1406, _x1407, _x1408, _x1409) {
|
|
4421
|
+
return _ref412.apply(this, arguments);
|
|
4394
4422
|
};
|
|
4395
4423
|
}();
|
|
4396
4424
|
export var update_user_credentials_api3 = function () {
|
|
4397
|
-
var
|
|
4425
|
+
var _ref413 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, body, fields, options) {
|
|
4398
4426
|
user_id = encodeParam(user_id);
|
|
4399
4427
|
credentials_api3_id = encodeParam(credentials_api3_id);
|
|
4400
4428
|
return sdk.patch("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), {
|
|
4401
4429
|
fields
|
|
4402
4430
|
}, body, options);
|
|
4403
4431
|
});
|
|
4404
|
-
return function update_user_credentials_api3(
|
|
4405
|
-
return
|
|
4432
|
+
return function update_user_credentials_api3(_x1410, _x1411, _x1412, _x1413, _x1414, _x1415) {
|
|
4433
|
+
return _ref413.apply(this, arguments);
|
|
4406
4434
|
};
|
|
4407
4435
|
}();
|
|
4408
4436
|
export var delete_user_credentials_api3 = function () {
|
|
4409
|
-
var
|
|
4437
|
+
var _ref414 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, options) {
|
|
4410
4438
|
user_id = encodeParam(user_id);
|
|
4411
4439
|
credentials_api3_id = encodeParam(credentials_api3_id);
|
|
4412
4440
|
return sdk.delete("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), null, null, options);
|
|
4413
4441
|
});
|
|
4414
|
-
return function delete_user_credentials_api3(
|
|
4415
|
-
return
|
|
4442
|
+
return function delete_user_credentials_api3(_x1416, _x1417, _x1418, _x1419) {
|
|
4443
|
+
return _ref414.apply(this, arguments);
|
|
4416
4444
|
};
|
|
4417
4445
|
}();
|
|
4418
4446
|
export var all_user_credentials_api3s = function () {
|
|
4419
|
-
var
|
|
4447
|
+
var _ref415 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4420
4448
|
user_id = encodeParam(user_id);
|
|
4421
4449
|
return sdk.get("/users/".concat(user_id, "/credentials_api3"), {
|
|
4422
4450
|
fields
|
|
4423
4451
|
}, null, options);
|
|
4424
4452
|
});
|
|
4425
|
-
return function all_user_credentials_api3s(
|
|
4426
|
-
return
|
|
4453
|
+
return function all_user_credentials_api3s(_x1420, _x1421, _x1422, _x1423) {
|
|
4454
|
+
return _ref415.apply(this, arguments);
|
|
4427
4455
|
};
|
|
4428
4456
|
}();
|
|
4429
4457
|
export var create_user_credentials_api3 = function () {
|
|
4430
|
-
var
|
|
4458
|
+
var _ref416 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4431
4459
|
user_id = encodeParam(user_id);
|
|
4432
4460
|
return sdk.post("/users/".concat(user_id, "/credentials_api3"), {
|
|
4433
4461
|
fields
|
|
4434
4462
|
}, null, options);
|
|
4435
4463
|
});
|
|
4436
|
-
return function create_user_credentials_api3(
|
|
4437
|
-
return
|
|
4464
|
+
return function create_user_credentials_api3(_x1424, _x1425, _x1426, _x1427) {
|
|
4465
|
+
return _ref416.apply(this, arguments);
|
|
4438
4466
|
};
|
|
4439
4467
|
}();
|
|
4440
4468
|
export var user_credentials_embed = function () {
|
|
4441
|
-
var
|
|
4469
|
+
var _ref417 = _asyncToGenerator(function* (sdk, user_id, credentials_embed_id, fields, options) {
|
|
4442
4470
|
user_id = encodeParam(user_id);
|
|
4443
4471
|
credentials_embed_id = encodeParam(credentials_embed_id);
|
|
4444
4472
|
return sdk.get("/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), {
|
|
4445
4473
|
fields
|
|
4446
4474
|
}, null, options);
|
|
4447
4475
|
});
|
|
4448
|
-
return function user_credentials_embed(
|
|
4449
|
-
return
|
|
4476
|
+
return function user_credentials_embed(_x1428, _x1429, _x1430, _x1431, _x1432) {
|
|
4477
|
+
return _ref417.apply(this, arguments);
|
|
4450
4478
|
};
|
|
4451
4479
|
}();
|
|
4452
4480
|
export var delete_user_credentials_embed = function () {
|
|
4453
|
-
var
|
|
4481
|
+
var _ref418 = _asyncToGenerator(function* (sdk, user_id, credentials_embed_id, options) {
|
|
4454
4482
|
user_id = encodeParam(user_id);
|
|
4455
4483
|
credentials_embed_id = encodeParam(credentials_embed_id);
|
|
4456
4484
|
return sdk.delete("/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), null, null, options);
|
|
4457
4485
|
});
|
|
4458
|
-
return function delete_user_credentials_embed(
|
|
4459
|
-
return
|
|
4486
|
+
return function delete_user_credentials_embed(_x1433, _x1434, _x1435, _x1436) {
|
|
4487
|
+
return _ref418.apply(this, arguments);
|
|
4460
4488
|
};
|
|
4461
4489
|
}();
|
|
4462
4490
|
export var all_user_credentials_embeds = function () {
|
|
4463
|
-
var
|
|
4491
|
+
var _ref419 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4464
4492
|
user_id = encodeParam(user_id);
|
|
4465
4493
|
return sdk.get("/users/".concat(user_id, "/credentials_embed"), {
|
|
4466
4494
|
fields
|
|
4467
4495
|
}, null, options);
|
|
4468
4496
|
});
|
|
4469
|
-
return function all_user_credentials_embeds(
|
|
4470
|
-
return
|
|
4497
|
+
return function all_user_credentials_embeds(_x1437, _x1438, _x1439, _x1440) {
|
|
4498
|
+
return _ref419.apply(this, arguments);
|
|
4471
4499
|
};
|
|
4472
4500
|
}();
|
|
4473
4501
|
export var user_credentials_looker_openid = function () {
|
|
4474
|
-
var
|
|
4502
|
+
var _ref420 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4475
4503
|
user_id = encodeParam(user_id);
|
|
4476
4504
|
return sdk.get("/users/".concat(user_id, "/credentials_looker_openid"), {
|
|
4477
4505
|
fields
|
|
4478
4506
|
}, null, options);
|
|
4479
4507
|
});
|
|
4480
|
-
return function user_credentials_looker_openid(
|
|
4481
|
-
return
|
|
4508
|
+
return function user_credentials_looker_openid(_x1441, _x1442, _x1443, _x1444) {
|
|
4509
|
+
return _ref420.apply(this, arguments);
|
|
4482
4510
|
};
|
|
4483
4511
|
}();
|
|
4484
4512
|
export var delete_user_credentials_looker_openid = function () {
|
|
4485
|
-
var
|
|
4513
|
+
var _ref421 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4486
4514
|
user_id = encodeParam(user_id);
|
|
4487
4515
|
return sdk.delete("/users/".concat(user_id, "/credentials_looker_openid"), null, null, options);
|
|
4488
4516
|
});
|
|
4489
|
-
return function delete_user_credentials_looker_openid(
|
|
4490
|
-
return
|
|
4517
|
+
return function delete_user_credentials_looker_openid(_x1445, _x1446, _x1447) {
|
|
4518
|
+
return _ref421.apply(this, arguments);
|
|
4491
4519
|
};
|
|
4492
4520
|
}();
|
|
4493
4521
|
export var user_session = function () {
|
|
4494
|
-
var
|
|
4522
|
+
var _ref422 = _asyncToGenerator(function* (sdk, user_id, session_id, fields, options) {
|
|
4495
4523
|
user_id = encodeParam(user_id);
|
|
4496
4524
|
session_id = encodeParam(session_id);
|
|
4497
4525
|
return sdk.get("/users/".concat(user_id, "/sessions/").concat(session_id), {
|
|
4498
4526
|
fields
|
|
4499
4527
|
}, null, options);
|
|
4500
4528
|
});
|
|
4501
|
-
return function user_session(
|
|
4502
|
-
return
|
|
4529
|
+
return function user_session(_x1448, _x1449, _x1450, _x1451, _x1452) {
|
|
4530
|
+
return _ref422.apply(this, arguments);
|
|
4503
4531
|
};
|
|
4504
4532
|
}();
|
|
4505
4533
|
export var delete_user_session = function () {
|
|
4506
|
-
var
|
|
4534
|
+
var _ref423 = _asyncToGenerator(function* (sdk, user_id, session_id, options) {
|
|
4507
4535
|
user_id = encodeParam(user_id);
|
|
4508
4536
|
session_id = encodeParam(session_id);
|
|
4509
4537
|
return sdk.delete("/users/".concat(user_id, "/sessions/").concat(session_id), null, null, options);
|
|
4510
4538
|
});
|
|
4511
|
-
return function delete_user_session(
|
|
4512
|
-
return
|
|
4539
|
+
return function delete_user_session(_x1453, _x1454, _x1455, _x1456) {
|
|
4540
|
+
return _ref423.apply(this, arguments);
|
|
4513
4541
|
};
|
|
4514
4542
|
}();
|
|
4515
4543
|
export var all_user_sessions = function () {
|
|
4516
|
-
var
|
|
4544
|
+
var _ref424 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4517
4545
|
user_id = encodeParam(user_id);
|
|
4518
4546
|
return sdk.get("/users/".concat(user_id, "/sessions"), {
|
|
4519
4547
|
fields
|
|
4520
4548
|
}, null, options);
|
|
4521
4549
|
});
|
|
4522
|
-
return function all_user_sessions(
|
|
4523
|
-
return
|
|
4550
|
+
return function all_user_sessions(_x1457, _x1458, _x1459, _x1460) {
|
|
4551
|
+
return _ref424.apply(this, arguments);
|
|
4524
4552
|
};
|
|
4525
4553
|
}();
|
|
4526
4554
|
export var create_user_credentials_email_password_reset = function () {
|
|
4527
|
-
var
|
|
4555
|
+
var _ref425 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4528
4556
|
request.user_id = encodeParam(request.user_id);
|
|
4529
4557
|
return sdk.post("/users/".concat(request.user_id, "/credentials_email/password_reset"), {
|
|
4530
4558
|
expires: request.expires,
|
|
4531
4559
|
fields: request.fields
|
|
4532
4560
|
}, null, options);
|
|
4533
4561
|
});
|
|
4534
|
-
return function create_user_credentials_email_password_reset(
|
|
4535
|
-
return
|
|
4562
|
+
return function create_user_credentials_email_password_reset(_x1461, _x1462, _x1463) {
|
|
4563
|
+
return _ref425.apply(this, arguments);
|
|
4536
4564
|
};
|
|
4537
4565
|
}();
|
|
4538
4566
|
export var user_roles = function () {
|
|
4539
|
-
var
|
|
4567
|
+
var _ref426 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4540
4568
|
request.user_id = encodeParam(request.user_id);
|
|
4541
4569
|
return sdk.get("/users/".concat(request.user_id, "/roles"), {
|
|
4542
4570
|
fields: request.fields,
|
|
4543
4571
|
direct_association_only: request.direct_association_only
|
|
4544
4572
|
}, null, options);
|
|
4545
4573
|
});
|
|
4546
|
-
return function user_roles(
|
|
4547
|
-
return
|
|
4574
|
+
return function user_roles(_x1464, _x1465, _x1466) {
|
|
4575
|
+
return _ref426.apply(this, arguments);
|
|
4548
4576
|
};
|
|
4549
4577
|
}();
|
|
4550
4578
|
export var set_user_roles = function () {
|
|
4551
|
-
var
|
|
4579
|
+
var _ref427 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4552
4580
|
user_id = encodeParam(user_id);
|
|
4553
4581
|
return sdk.put("/users/".concat(user_id, "/roles"), {
|
|
4554
4582
|
fields
|
|
4555
4583
|
}, body, options);
|
|
4556
4584
|
});
|
|
4557
|
-
return function set_user_roles(
|
|
4558
|
-
return
|
|
4585
|
+
return function set_user_roles(_x1467, _x1468, _x1469, _x1470, _x1471) {
|
|
4586
|
+
return _ref427.apply(this, arguments);
|
|
4559
4587
|
};
|
|
4560
4588
|
}();
|
|
4561
4589
|
export var user_attribute_user_values = function () {
|
|
4562
|
-
var
|
|
4590
|
+
var _ref428 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4563
4591
|
request.user_id = encodeParam(request.user_id);
|
|
4564
4592
|
return sdk.get("/users/".concat(request.user_id, "/attribute_values"), {
|
|
4565
4593
|
fields: request.fields,
|
|
@@ -4568,147 +4596,168 @@ export var user_attribute_user_values = function () {
|
|
|
4568
4596
|
include_unset: request.include_unset
|
|
4569
4597
|
}, null, options);
|
|
4570
4598
|
});
|
|
4571
|
-
return function user_attribute_user_values(
|
|
4572
|
-
return
|
|
4599
|
+
return function user_attribute_user_values(_x1472, _x1473, _x1474) {
|
|
4600
|
+
return _ref428.apply(this, arguments);
|
|
4573
4601
|
};
|
|
4574
4602
|
}();
|
|
4575
4603
|
export var set_user_attribute_user_value = function () {
|
|
4576
|
-
var
|
|
4604
|
+
var _ref429 = _asyncToGenerator(function* (sdk, user_id, user_attribute_id, body, options) {
|
|
4577
4605
|
user_id = encodeParam(user_id);
|
|
4578
4606
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4579
4607
|
return sdk.patch("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
|
|
4580
4608
|
});
|
|
4581
|
-
return function set_user_attribute_user_value(
|
|
4582
|
-
return
|
|
4609
|
+
return function set_user_attribute_user_value(_x1475, _x1476, _x1477, _x1478, _x1479) {
|
|
4610
|
+
return _ref429.apply(this, arguments);
|
|
4583
4611
|
};
|
|
4584
4612
|
}();
|
|
4585
4613
|
export var delete_user_attribute_user_value = function () {
|
|
4586
|
-
var
|
|
4614
|
+
var _ref430 = _asyncToGenerator(function* (sdk, user_id, user_attribute_id, options) {
|
|
4587
4615
|
user_id = encodeParam(user_id);
|
|
4588
4616
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4589
4617
|
return sdk.delete("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
|
|
4590
4618
|
});
|
|
4591
|
-
return function delete_user_attribute_user_value(
|
|
4592
|
-
return
|
|
4619
|
+
return function delete_user_attribute_user_value(_x1480, _x1481, _x1482, _x1483) {
|
|
4620
|
+
return _ref430.apply(this, arguments);
|
|
4593
4621
|
};
|
|
4594
4622
|
}();
|
|
4595
4623
|
export var send_user_credentials_email_password_reset = function () {
|
|
4596
|
-
var
|
|
4624
|
+
var _ref431 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4597
4625
|
user_id = encodeParam(user_id);
|
|
4598
4626
|
return sdk.post("/users/".concat(user_id, "/credentials_email/send_password_reset"), {
|
|
4599
4627
|
fields
|
|
4600
4628
|
}, null, options);
|
|
4601
4629
|
});
|
|
4602
|
-
return function send_user_credentials_email_password_reset(
|
|
4603
|
-
return
|
|
4630
|
+
return function send_user_credentials_email_password_reset(_x1484, _x1485, _x1486, _x1487) {
|
|
4631
|
+
return _ref431.apply(this, arguments);
|
|
4604
4632
|
};
|
|
4605
4633
|
}();
|
|
4606
4634
|
export var wipeout_user_emails = function () {
|
|
4607
|
-
var
|
|
4635
|
+
var _ref432 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4608
4636
|
user_id = encodeParam(user_id);
|
|
4609
4637
|
return sdk.post("/users/".concat(user_id, "/update_emails"), {
|
|
4610
4638
|
fields
|
|
4611
4639
|
}, body, options);
|
|
4612
4640
|
});
|
|
4613
|
-
return function wipeout_user_emails(
|
|
4614
|
-
return
|
|
4641
|
+
return function wipeout_user_emails(_x1488, _x1489, _x1490, _x1491, _x1492) {
|
|
4642
|
+
return _ref432.apply(this, arguments);
|
|
4615
4643
|
};
|
|
4616
4644
|
}();
|
|
4617
4645
|
export var create_embed_user = function () {
|
|
4618
|
-
var
|
|
4646
|
+
var _ref433 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4619
4647
|
return sdk.post('/users/embed_user', null, body, options);
|
|
4620
4648
|
});
|
|
4621
|
-
return function create_embed_user(
|
|
4622
|
-
return
|
|
4649
|
+
return function create_embed_user(_x1493, _x1494, _x1495) {
|
|
4650
|
+
return _ref433.apply(this, arguments);
|
|
4651
|
+
};
|
|
4652
|
+
}();
|
|
4653
|
+
export var create_service_account = function () {
|
|
4654
|
+
var _ref434 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
4655
|
+
return sdk.post('/users/service_accounts', {
|
|
4656
|
+
fields
|
|
4657
|
+
}, body, options);
|
|
4658
|
+
});
|
|
4659
|
+
return function create_service_account(_x1496, _x1497, _x1498, _x1499) {
|
|
4660
|
+
return _ref434.apply(this, arguments);
|
|
4661
|
+
};
|
|
4662
|
+
}();
|
|
4663
|
+
export var update_service_account = function () {
|
|
4664
|
+
var _ref435 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4665
|
+
user_id = encodeParam(user_id);
|
|
4666
|
+
return sdk.patch("/users/service_accounts/".concat(user_id), {
|
|
4667
|
+
fields
|
|
4668
|
+
}, body, options);
|
|
4669
|
+
});
|
|
4670
|
+
return function update_service_account(_x1500, _x1501, _x1502, _x1503, _x1504) {
|
|
4671
|
+
return _ref435.apply(this, arguments);
|
|
4623
4672
|
};
|
|
4624
4673
|
}();
|
|
4625
4674
|
export var all_user_attributes = function () {
|
|
4626
|
-
var
|
|
4675
|
+
var _ref436 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4627
4676
|
return sdk.get('/user_attributes', {
|
|
4628
4677
|
fields: request.fields,
|
|
4629
4678
|
sorts: request.sorts
|
|
4630
4679
|
}, null, options);
|
|
4631
4680
|
});
|
|
4632
|
-
return function all_user_attributes(
|
|
4633
|
-
return
|
|
4681
|
+
return function all_user_attributes(_x1505, _x1506, _x1507) {
|
|
4682
|
+
return _ref436.apply(this, arguments);
|
|
4634
4683
|
};
|
|
4635
4684
|
}();
|
|
4636
4685
|
export var create_user_attribute = function () {
|
|
4637
|
-
var
|
|
4686
|
+
var _ref437 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
4638
4687
|
return sdk.post('/user_attributes', {
|
|
4639
4688
|
fields
|
|
4640
4689
|
}, body, options);
|
|
4641
4690
|
});
|
|
4642
|
-
return function create_user_attribute(
|
|
4643
|
-
return
|
|
4691
|
+
return function create_user_attribute(_x1508, _x1509, _x1510, _x1511) {
|
|
4692
|
+
return _ref437.apply(this, arguments);
|
|
4644
4693
|
};
|
|
4645
4694
|
}();
|
|
4646
4695
|
export var user_attribute = function () {
|
|
4647
|
-
var
|
|
4696
|
+
var _ref438 = _asyncToGenerator(function* (sdk, user_attribute_id, fields, options) {
|
|
4648
4697
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4649
4698
|
return sdk.get("/user_attributes/".concat(user_attribute_id), {
|
|
4650
4699
|
fields
|
|
4651
4700
|
}, null, options);
|
|
4652
4701
|
});
|
|
4653
|
-
return function user_attribute(
|
|
4654
|
-
return
|
|
4702
|
+
return function user_attribute(_x1512, _x1513, _x1514, _x1515) {
|
|
4703
|
+
return _ref438.apply(this, arguments);
|
|
4655
4704
|
};
|
|
4656
4705
|
}();
|
|
4657
4706
|
export var update_user_attribute = function () {
|
|
4658
|
-
var
|
|
4707
|
+
var _ref439 = _asyncToGenerator(function* (sdk, user_attribute_id, body, fields, options) {
|
|
4659
4708
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4660
4709
|
return sdk.patch("/user_attributes/".concat(user_attribute_id), {
|
|
4661
4710
|
fields
|
|
4662
4711
|
}, body, options);
|
|
4663
4712
|
});
|
|
4664
|
-
return function update_user_attribute(
|
|
4665
|
-
return
|
|
4713
|
+
return function update_user_attribute(_x1516, _x1517, _x1518, _x1519, _x1520) {
|
|
4714
|
+
return _ref439.apply(this, arguments);
|
|
4666
4715
|
};
|
|
4667
4716
|
}();
|
|
4668
4717
|
export var delete_user_attribute = function () {
|
|
4669
|
-
var
|
|
4718
|
+
var _ref440 = _asyncToGenerator(function* (sdk, user_attribute_id, options) {
|
|
4670
4719
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4671
4720
|
return sdk.delete("/user_attributes/".concat(user_attribute_id), null, null, options);
|
|
4672
4721
|
});
|
|
4673
|
-
return function delete_user_attribute(
|
|
4674
|
-
return
|
|
4722
|
+
return function delete_user_attribute(_x1521, _x1522, _x1523) {
|
|
4723
|
+
return _ref440.apply(this, arguments);
|
|
4675
4724
|
};
|
|
4676
4725
|
}();
|
|
4677
4726
|
export var all_user_attribute_group_values = function () {
|
|
4678
|
-
var
|
|
4727
|
+
var _ref441 = _asyncToGenerator(function* (sdk, user_attribute_id, fields, options) {
|
|
4679
4728
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4680
4729
|
return sdk.get("/user_attributes/".concat(user_attribute_id, "/group_values"), {
|
|
4681
4730
|
fields
|
|
4682
4731
|
}, null, options);
|
|
4683
4732
|
});
|
|
4684
|
-
return function all_user_attribute_group_values(
|
|
4685
|
-
return
|
|
4733
|
+
return function all_user_attribute_group_values(_x1524, _x1525, _x1526, _x1527) {
|
|
4734
|
+
return _ref441.apply(this, arguments);
|
|
4686
4735
|
};
|
|
4687
4736
|
}();
|
|
4688
4737
|
export var set_user_attribute_group_values = function () {
|
|
4689
|
-
var
|
|
4738
|
+
var _ref442 = _asyncToGenerator(function* (sdk, user_attribute_id, body, options) {
|
|
4690
4739
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4691
4740
|
return sdk.post("/user_attributes/".concat(user_attribute_id, "/group_values"), null, body, options);
|
|
4692
4741
|
});
|
|
4693
|
-
return function set_user_attribute_group_values(
|
|
4694
|
-
return
|
|
4742
|
+
return function set_user_attribute_group_values(_x1528, _x1529, _x1530, _x1531) {
|
|
4743
|
+
return _ref442.apply(this, arguments);
|
|
4695
4744
|
};
|
|
4696
4745
|
}();
|
|
4697
4746
|
export var all_workspaces = function () {
|
|
4698
|
-
var
|
|
4747
|
+
var _ref443 = _asyncToGenerator(function* (sdk, options) {
|
|
4699
4748
|
return sdk.get('/workspaces', null, null, options);
|
|
4700
4749
|
});
|
|
4701
|
-
return function all_workspaces(
|
|
4702
|
-
return
|
|
4750
|
+
return function all_workspaces(_x1532, _x1533) {
|
|
4751
|
+
return _ref443.apply(this, arguments);
|
|
4703
4752
|
};
|
|
4704
4753
|
}();
|
|
4705
4754
|
export var workspace = function () {
|
|
4706
|
-
var
|
|
4755
|
+
var _ref444 = _asyncToGenerator(function* (sdk, workspace_id, options) {
|
|
4707
4756
|
workspace_id = encodeParam(workspace_id);
|
|
4708
4757
|
return sdk.get("/workspaces/".concat(workspace_id), null, null, options);
|
|
4709
4758
|
});
|
|
4710
|
-
return function workspace(
|
|
4711
|
-
return
|
|
4759
|
+
return function workspace(_x1534, _x1535, _x1536) {
|
|
4760
|
+
return _ref444.apply(this, arguments);
|
|
4712
4761
|
};
|
|
4713
4762
|
}();
|
|
4714
4763
|
//# sourceMappingURL=funcs.js.map
|