@looker/sdk 25.16.0 → 25.20.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 +14 -0
- package/lib/4.0/funcs.d.ts +5 -1
- package/lib/4.0/funcs.js +848 -798
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +5 -1
- package/lib/4.0/methods.js +573 -531
- 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 +95 -15
- package/lib/4.0/models.js +6 -1
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +5 -1
- package/lib/4.0/streams.js +573 -531
- 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 +844 -794
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +573 -531
- 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 +5 -0
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js +573 -531
- 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,86 +2701,87 @@ 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,
|
|
2708
2735
|
offset: request.offset,
|
|
2709
2736
|
exclude_empty: request.exclude_empty,
|
|
2710
2737
|
exclude_hidden: request.exclude_hidden,
|
|
2711
|
-
include_internal: request.include_internal
|
|
2738
|
+
include_internal: request.include_internal,
|
|
2739
|
+
include_self_service: request.include_self_service
|
|
2712
2740
|
}, null, options);
|
|
2713
2741
|
});
|
|
2714
|
-
return function all_lookml_models(
|
|
2715
|
-
return
|
|
2742
|
+
return function all_lookml_models(_x876, _x877, _x878) {
|
|
2743
|
+
return _ref263.apply(this, arguments);
|
|
2716
2744
|
};
|
|
2717
2745
|
}();
|
|
2718
2746
|
export var create_lookml_model = function () {
|
|
2719
|
-
var
|
|
2747
|
+
var _ref264 = _asyncToGenerator(function* (sdk, body, options) {
|
|
2720
2748
|
return sdk.post('/lookml_models', null, body, options);
|
|
2721
2749
|
});
|
|
2722
|
-
return function create_lookml_model(
|
|
2723
|
-
return
|
|
2750
|
+
return function create_lookml_model(_x879, _x880, _x881) {
|
|
2751
|
+
return _ref264.apply(this, arguments);
|
|
2724
2752
|
};
|
|
2725
2753
|
}();
|
|
2726
2754
|
export var lookml_model = function () {
|
|
2727
|
-
var
|
|
2755
|
+
var _ref265 = _asyncToGenerator(function* (sdk, lookml_model_name, fields, options) {
|
|
2728
2756
|
lookml_model_name = encodeParam(lookml_model_name);
|
|
2729
2757
|
return sdk.get("/lookml_models/".concat(lookml_model_name), {
|
|
2730
2758
|
fields
|
|
2731
2759
|
}, null, options);
|
|
2732
2760
|
});
|
|
2733
|
-
return function lookml_model(
|
|
2734
|
-
return
|
|
2761
|
+
return function lookml_model(_x882, _x883, _x884, _x885) {
|
|
2762
|
+
return _ref265.apply(this, arguments);
|
|
2735
2763
|
};
|
|
2736
2764
|
}();
|
|
2737
2765
|
export var update_lookml_model = function () {
|
|
2738
|
-
var
|
|
2766
|
+
var _ref266 = _asyncToGenerator(function* (sdk, lookml_model_name, body, options) {
|
|
2739
2767
|
lookml_model_name = encodeParam(lookml_model_name);
|
|
2740
2768
|
return sdk.patch("/lookml_models/".concat(lookml_model_name), null, body, options);
|
|
2741
2769
|
});
|
|
2742
|
-
return function update_lookml_model(
|
|
2743
|
-
return
|
|
2770
|
+
return function update_lookml_model(_x886, _x887, _x888, _x889) {
|
|
2771
|
+
return _ref266.apply(this, arguments);
|
|
2744
2772
|
};
|
|
2745
2773
|
}();
|
|
2746
2774
|
export var delete_lookml_model = function () {
|
|
2747
|
-
var
|
|
2775
|
+
var _ref267 = _asyncToGenerator(function* (sdk, lookml_model_name, options) {
|
|
2748
2776
|
lookml_model_name = encodeParam(lookml_model_name);
|
|
2749
2777
|
return sdk.delete("/lookml_models/".concat(lookml_model_name), null, null, options);
|
|
2750
2778
|
});
|
|
2751
|
-
return function delete_lookml_model(
|
|
2752
|
-
return
|
|
2779
|
+
return function delete_lookml_model(_x890, _x891, _x892) {
|
|
2780
|
+
return _ref267.apply(this, arguments);
|
|
2753
2781
|
};
|
|
2754
2782
|
}();
|
|
2755
2783
|
export var lookml_model_explore = function () {
|
|
2756
|
-
var
|
|
2784
|
+
var _ref268 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2757
2785
|
request.lookml_model_name = encodeParam(request.lookml_model_name);
|
|
2758
2786
|
request.explore_name = encodeParam(request.explore_name);
|
|
2759
2787
|
return sdk.get("/lookml_models/".concat(request.lookml_model_name, "/explores/").concat(request.explore_name), {
|
|
@@ -2761,12 +2789,12 @@ export var lookml_model_explore = function () {
|
|
|
2761
2789
|
add_drills_metadata: request.add_drills_metadata
|
|
2762
2790
|
}, null, options);
|
|
2763
2791
|
});
|
|
2764
|
-
return function lookml_model_explore(
|
|
2765
|
-
return
|
|
2792
|
+
return function lookml_model_explore(_x893, _x894, _x895) {
|
|
2793
|
+
return _ref268.apply(this, arguments);
|
|
2766
2794
|
};
|
|
2767
2795
|
}();
|
|
2768
2796
|
export var model_fieldname_suggestions = function () {
|
|
2769
|
-
var
|
|
2797
|
+
var _ref269 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2770
2798
|
request.model_name = encodeParam(request.model_name);
|
|
2771
2799
|
request.view_name = encodeParam(request.view_name);
|
|
2772
2800
|
request.field_name = encodeParam(request.field_name);
|
|
@@ -2775,41 +2803,41 @@ export var model_fieldname_suggestions = function () {
|
|
|
2775
2803
|
filters: request.filters
|
|
2776
2804
|
}, null, options);
|
|
2777
2805
|
});
|
|
2778
|
-
return function model_fieldname_suggestions(
|
|
2779
|
-
return
|
|
2806
|
+
return function model_fieldname_suggestions(_x896, _x897, _x898) {
|
|
2807
|
+
return _ref269.apply(this, arguments);
|
|
2780
2808
|
};
|
|
2781
2809
|
}();
|
|
2782
2810
|
export var get_model = function () {
|
|
2783
|
-
var
|
|
2811
|
+
var _ref270 = _asyncToGenerator(function* (sdk, model_name, options) {
|
|
2784
2812
|
model_name = encodeParam(model_name);
|
|
2785
2813
|
return sdk.get("/models/".concat(model_name), null, null, options);
|
|
2786
2814
|
});
|
|
2787
|
-
return function get_model(
|
|
2788
|
-
return
|
|
2815
|
+
return function get_model(_x899, _x900, _x901) {
|
|
2816
|
+
return _ref270.apply(this, arguments);
|
|
2789
2817
|
};
|
|
2790
2818
|
}();
|
|
2791
2819
|
export var connection_databases = function () {
|
|
2792
|
-
var
|
|
2820
|
+
var _ref271 = _asyncToGenerator(function* (sdk, connection_name, options) {
|
|
2793
2821
|
connection_name = encodeParam(connection_name);
|
|
2794
2822
|
return sdk.get("/connections/".concat(connection_name, "/databases"), null, null, options);
|
|
2795
2823
|
});
|
|
2796
|
-
return function connection_databases(
|
|
2797
|
-
return
|
|
2824
|
+
return function connection_databases(_x902, _x903, _x904) {
|
|
2825
|
+
return _ref271.apply(this, arguments);
|
|
2798
2826
|
};
|
|
2799
2827
|
}();
|
|
2800
2828
|
export var connection_features = function () {
|
|
2801
|
-
var
|
|
2829
|
+
var _ref272 = _asyncToGenerator(function* (sdk, connection_name, fields, options) {
|
|
2802
2830
|
connection_name = encodeParam(connection_name);
|
|
2803
2831
|
return sdk.get("/connections/".concat(connection_name, "/features"), {
|
|
2804
2832
|
fields
|
|
2805
2833
|
}, null, options);
|
|
2806
2834
|
});
|
|
2807
|
-
return function connection_features(
|
|
2808
|
-
return
|
|
2835
|
+
return function connection_features(_x905, _x906, _x907, _x908) {
|
|
2836
|
+
return _ref272.apply(this, arguments);
|
|
2809
2837
|
};
|
|
2810
2838
|
}();
|
|
2811
2839
|
export var connection_schemas = function () {
|
|
2812
|
-
var
|
|
2840
|
+
var _ref273 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2813
2841
|
request.connection_name = encodeParam(request.connection_name);
|
|
2814
2842
|
return sdk.get("/connections/".concat(request.connection_name, "/schemas"), {
|
|
2815
2843
|
database: request.database,
|
|
@@ -2817,12 +2845,12 @@ export var connection_schemas = function () {
|
|
|
2817
2845
|
fields: request.fields
|
|
2818
2846
|
}, null, options);
|
|
2819
2847
|
});
|
|
2820
|
-
return function connection_schemas(
|
|
2821
|
-
return
|
|
2848
|
+
return function connection_schemas(_x909, _x910, _x911) {
|
|
2849
|
+
return _ref273.apply(this, arguments);
|
|
2822
2850
|
};
|
|
2823
2851
|
}();
|
|
2824
2852
|
export var connection_tables = function () {
|
|
2825
|
-
var
|
|
2853
|
+
var _ref274 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2826
2854
|
request.connection_name = encodeParam(request.connection_name);
|
|
2827
2855
|
return sdk.get("/connections/".concat(request.connection_name, "/tables"), {
|
|
2828
2856
|
database: request.database,
|
|
@@ -2833,12 +2861,12 @@ export var connection_tables = function () {
|
|
|
2833
2861
|
table_limit: request.table_limit
|
|
2834
2862
|
}, null, options);
|
|
2835
2863
|
});
|
|
2836
|
-
return function connection_tables(
|
|
2837
|
-
return
|
|
2864
|
+
return function connection_tables(_x912, _x913, _x914) {
|
|
2865
|
+
return _ref274.apply(this, arguments);
|
|
2838
2866
|
};
|
|
2839
2867
|
}();
|
|
2840
2868
|
export var connection_columns = function () {
|
|
2841
|
-
var
|
|
2869
|
+
var _ref275 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2842
2870
|
request.connection_name = encodeParam(request.connection_name);
|
|
2843
2871
|
return sdk.get("/connections/".concat(request.connection_name, "/columns"), {
|
|
2844
2872
|
database: request.database,
|
|
@@ -2849,298 +2877,298 @@ export var connection_columns = function () {
|
|
|
2849
2877
|
fields: request.fields
|
|
2850
2878
|
}, null, options);
|
|
2851
2879
|
});
|
|
2852
|
-
return function connection_columns(
|
|
2853
|
-
return
|
|
2880
|
+
return function connection_columns(_x915, _x916, _x917) {
|
|
2881
|
+
return _ref275.apply(this, arguments);
|
|
2854
2882
|
};
|
|
2855
2883
|
}();
|
|
2856
2884
|
export var connection_search_columns = function () {
|
|
2857
|
-
var
|
|
2885
|
+
var _ref276 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2858
2886
|
request.connection_name = encodeParam(request.connection_name);
|
|
2859
2887
|
return sdk.get("/connections/".concat(request.connection_name, "/search_columns"), {
|
|
2860
2888
|
column_name: request.column_name,
|
|
2861
2889
|
fields: request.fields
|
|
2862
2890
|
}, null, options);
|
|
2863
2891
|
});
|
|
2864
|
-
return function connection_search_columns(
|
|
2865
|
-
return
|
|
2892
|
+
return function connection_search_columns(_x918, _x919, _x920) {
|
|
2893
|
+
return _ref276.apply(this, arguments);
|
|
2866
2894
|
};
|
|
2867
2895
|
}();
|
|
2868
2896
|
export var connection_cost_estimate = function () {
|
|
2869
|
-
var
|
|
2897
|
+
var _ref277 = _asyncToGenerator(function* (sdk, connection_name, body, fields, options) {
|
|
2870
2898
|
connection_name = encodeParam(connection_name);
|
|
2871
2899
|
return sdk.post("/connections/".concat(connection_name, "/cost_estimate"), {
|
|
2872
2900
|
fields
|
|
2873
2901
|
}, body, options);
|
|
2874
2902
|
});
|
|
2875
|
-
return function connection_cost_estimate(
|
|
2876
|
-
return
|
|
2903
|
+
return function connection_cost_estimate(_x921, _x922, _x923, _x924, _x925) {
|
|
2904
|
+
return _ref277.apply(this, arguments);
|
|
2877
2905
|
};
|
|
2878
2906
|
}();
|
|
2879
2907
|
export var get_ci_run = function () {
|
|
2880
|
-
var
|
|
2908
|
+
var _ref278 = _asyncToGenerator(function* (sdk, project_id, run_id, fields, options) {
|
|
2881
2909
|
project_id = encodeParam(project_id);
|
|
2882
2910
|
run_id = encodeParam(run_id);
|
|
2883
2911
|
return sdk.get("/projects/".concat(project_id, "/ci/runs/").concat(run_id), {
|
|
2884
2912
|
fields
|
|
2885
2913
|
}, null, options);
|
|
2886
2914
|
});
|
|
2887
|
-
return function get_ci_run(
|
|
2888
|
-
return
|
|
2915
|
+
return function get_ci_run(_x926, _x927, _x928, _x929, _x930) {
|
|
2916
|
+
return _ref278.apply(this, arguments);
|
|
2889
2917
|
};
|
|
2890
2918
|
}();
|
|
2891
2919
|
export var create_ci_run = function () {
|
|
2892
|
-
var
|
|
2920
|
+
var _ref279 = _asyncToGenerator(function* (sdk, project_id, body, fields, options) {
|
|
2893
2921
|
project_id = encodeParam(project_id);
|
|
2894
2922
|
return sdk.post("/projects/".concat(project_id, "/ci/run"), {
|
|
2895
2923
|
fields
|
|
2896
2924
|
}, body, options);
|
|
2897
2925
|
});
|
|
2898
|
-
return function create_ci_run(
|
|
2899
|
-
return
|
|
2926
|
+
return function create_ci_run(_x931, _x932, _x933, _x934, _x935) {
|
|
2927
|
+
return _ref279.apply(this, arguments);
|
|
2900
2928
|
};
|
|
2901
2929
|
}();
|
|
2902
2930
|
export var lock_all = function () {
|
|
2903
|
-
var
|
|
2931
|
+
var _ref280 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
2904
2932
|
project_id = encodeParam(project_id);
|
|
2905
2933
|
return sdk.post("/projects/".concat(project_id, "/manifest/lock_all"), {
|
|
2906
2934
|
fields
|
|
2907
2935
|
}, null, options);
|
|
2908
2936
|
});
|
|
2909
|
-
return function lock_all(
|
|
2910
|
-
return
|
|
2937
|
+
return function lock_all(_x936, _x937, _x938, _x939) {
|
|
2938
|
+
return _ref280.apply(this, arguments);
|
|
2911
2939
|
};
|
|
2912
2940
|
}();
|
|
2913
2941
|
export var all_git_branches = function () {
|
|
2914
|
-
var
|
|
2942
|
+
var _ref281 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2915
2943
|
project_id = encodeParam(project_id);
|
|
2916
2944
|
return sdk.get("/projects/".concat(project_id, "/git_branches"), null, null, options);
|
|
2917
2945
|
});
|
|
2918
|
-
return function all_git_branches(
|
|
2919
|
-
return
|
|
2946
|
+
return function all_git_branches(_x940, _x941, _x942) {
|
|
2947
|
+
return _ref281.apply(this, arguments);
|
|
2920
2948
|
};
|
|
2921
2949
|
}();
|
|
2922
2950
|
export var git_branch = function () {
|
|
2923
|
-
var
|
|
2951
|
+
var _ref282 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2924
2952
|
project_id = encodeParam(project_id);
|
|
2925
2953
|
return sdk.get("/projects/".concat(project_id, "/git_branch"), null, null, options);
|
|
2926
2954
|
});
|
|
2927
|
-
return function git_branch(
|
|
2928
|
-
return
|
|
2955
|
+
return function git_branch(_x943, _x944, _x945) {
|
|
2956
|
+
return _ref282.apply(this, arguments);
|
|
2929
2957
|
};
|
|
2930
2958
|
}();
|
|
2931
2959
|
export var update_git_branch = function () {
|
|
2932
|
-
var
|
|
2960
|
+
var _ref283 = _asyncToGenerator(function* (sdk, project_id, body, options) {
|
|
2933
2961
|
project_id = encodeParam(project_id);
|
|
2934
2962
|
return sdk.put("/projects/".concat(project_id, "/git_branch"), null, body, options);
|
|
2935
2963
|
});
|
|
2936
|
-
return function update_git_branch(
|
|
2937
|
-
return
|
|
2964
|
+
return function update_git_branch(_x946, _x947, _x948, _x949) {
|
|
2965
|
+
return _ref283.apply(this, arguments);
|
|
2938
2966
|
};
|
|
2939
2967
|
}();
|
|
2940
2968
|
export var create_git_branch = function () {
|
|
2941
|
-
var
|
|
2969
|
+
var _ref284 = _asyncToGenerator(function* (sdk, project_id, body, options) {
|
|
2942
2970
|
project_id = encodeParam(project_id);
|
|
2943
2971
|
return sdk.post("/projects/".concat(project_id, "/git_branch"), null, body, options);
|
|
2944
2972
|
});
|
|
2945
|
-
return function create_git_branch(
|
|
2946
|
-
return
|
|
2973
|
+
return function create_git_branch(_x950, _x951, _x952, _x953) {
|
|
2974
|
+
return _ref284.apply(this, arguments);
|
|
2947
2975
|
};
|
|
2948
2976
|
}();
|
|
2949
2977
|
export var find_git_branch = function () {
|
|
2950
|
-
var
|
|
2978
|
+
var _ref285 = _asyncToGenerator(function* (sdk, project_id, branch_name, options) {
|
|
2951
2979
|
project_id = encodeParam(project_id);
|
|
2952
2980
|
branch_name = encodeParam(branch_name);
|
|
2953
2981
|
return sdk.get("/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
|
|
2954
2982
|
});
|
|
2955
|
-
return function find_git_branch(
|
|
2956
|
-
return
|
|
2983
|
+
return function find_git_branch(_x954, _x955, _x956, _x957) {
|
|
2984
|
+
return _ref285.apply(this, arguments);
|
|
2957
2985
|
};
|
|
2958
2986
|
}();
|
|
2959
2987
|
export var delete_git_branch = function () {
|
|
2960
|
-
var
|
|
2988
|
+
var _ref286 = _asyncToGenerator(function* (sdk, project_id, branch_name, options) {
|
|
2961
2989
|
project_id = encodeParam(project_id);
|
|
2962
2990
|
branch_name = encodeParam(branch_name);
|
|
2963
2991
|
return sdk.delete("/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
|
|
2964
2992
|
});
|
|
2965
|
-
return function delete_git_branch(
|
|
2966
|
-
return
|
|
2993
|
+
return function delete_git_branch(_x958, _x959, _x960, _x961) {
|
|
2994
|
+
return _ref286.apply(this, arguments);
|
|
2967
2995
|
};
|
|
2968
2996
|
}();
|
|
2969
2997
|
export var deploy_ref_to_production = function () {
|
|
2970
|
-
var
|
|
2998
|
+
var _ref287 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2971
2999
|
request.project_id = encodeParam(request.project_id);
|
|
2972
3000
|
return sdk.post("/projects/".concat(request.project_id, "/deploy_ref_to_production"), {
|
|
2973
3001
|
branch: request.branch,
|
|
2974
3002
|
ref: request.ref
|
|
2975
3003
|
}, null, options);
|
|
2976
3004
|
});
|
|
2977
|
-
return function deploy_ref_to_production(
|
|
2978
|
-
return
|
|
3005
|
+
return function deploy_ref_to_production(_x962, _x963, _x964) {
|
|
3006
|
+
return _ref287.apply(this, arguments);
|
|
2979
3007
|
};
|
|
2980
3008
|
}();
|
|
2981
3009
|
export var deploy_to_production = function () {
|
|
2982
|
-
var
|
|
3010
|
+
var _ref288 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2983
3011
|
project_id = encodeParam(project_id);
|
|
2984
3012
|
return sdk.post("/projects/".concat(project_id, "/deploy_to_production"), null, null, options);
|
|
2985
3013
|
});
|
|
2986
|
-
return function deploy_to_production(
|
|
2987
|
-
return
|
|
3014
|
+
return function deploy_to_production(_x965, _x966, _x967) {
|
|
3015
|
+
return _ref288.apply(this, arguments);
|
|
2988
3016
|
};
|
|
2989
3017
|
}();
|
|
2990
3018
|
export var reset_project_to_production = function () {
|
|
2991
|
-
var
|
|
3019
|
+
var _ref289 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2992
3020
|
project_id = encodeParam(project_id);
|
|
2993
3021
|
return sdk.post("/projects/".concat(project_id, "/reset_to_production"), null, null, options);
|
|
2994
3022
|
});
|
|
2995
|
-
return function reset_project_to_production(
|
|
2996
|
-
return
|
|
3023
|
+
return function reset_project_to_production(_x968, _x969, _x970) {
|
|
3024
|
+
return _ref289.apply(this, arguments);
|
|
2997
3025
|
};
|
|
2998
3026
|
}();
|
|
2999
3027
|
export var reset_project_to_remote = function () {
|
|
3000
|
-
var
|
|
3028
|
+
var _ref290 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
3001
3029
|
project_id = encodeParam(project_id);
|
|
3002
3030
|
return sdk.post("/projects/".concat(project_id, "/reset_to_remote"), null, null, options);
|
|
3003
3031
|
});
|
|
3004
|
-
return function reset_project_to_remote(
|
|
3005
|
-
return
|
|
3032
|
+
return function reset_project_to_remote(_x971, _x972, _x973) {
|
|
3033
|
+
return _ref290.apply(this, arguments);
|
|
3006
3034
|
};
|
|
3007
3035
|
}();
|
|
3008
3036
|
export var all_projects = function () {
|
|
3009
|
-
var
|
|
3037
|
+
var _ref291 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3010
3038
|
return sdk.get('/projects', {
|
|
3011
3039
|
fields
|
|
3012
3040
|
}, null, options);
|
|
3013
3041
|
});
|
|
3014
|
-
return function all_projects(
|
|
3015
|
-
return
|
|
3042
|
+
return function all_projects(_x974, _x975, _x976) {
|
|
3043
|
+
return _ref291.apply(this, arguments);
|
|
3016
3044
|
};
|
|
3017
3045
|
}();
|
|
3018
3046
|
export var create_project = function () {
|
|
3019
|
-
var
|
|
3047
|
+
var _ref292 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3020
3048
|
return sdk.post('/projects', null, body, options);
|
|
3021
3049
|
});
|
|
3022
|
-
return function create_project(
|
|
3023
|
-
return
|
|
3050
|
+
return function create_project(_x977, _x978, _x979) {
|
|
3051
|
+
return _ref292.apply(this, arguments);
|
|
3024
3052
|
};
|
|
3025
3053
|
}();
|
|
3026
3054
|
export var project = function () {
|
|
3027
|
-
var
|
|
3055
|
+
var _ref293 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3028
3056
|
project_id = encodeParam(project_id);
|
|
3029
3057
|
return sdk.get("/projects/".concat(project_id), {
|
|
3030
3058
|
fields
|
|
3031
3059
|
}, null, options);
|
|
3032
3060
|
});
|
|
3033
|
-
return function project(
|
|
3034
|
-
return
|
|
3061
|
+
return function project(_x980, _x981, _x982, _x983) {
|
|
3062
|
+
return _ref293.apply(this, arguments);
|
|
3035
3063
|
};
|
|
3036
3064
|
}();
|
|
3037
3065
|
export var update_project = function () {
|
|
3038
|
-
var
|
|
3066
|
+
var _ref294 = _asyncToGenerator(function* (sdk, project_id, body, fields, options) {
|
|
3039
3067
|
project_id = encodeParam(project_id);
|
|
3040
3068
|
return sdk.patch("/projects/".concat(project_id), {
|
|
3041
3069
|
fields
|
|
3042
3070
|
}, body, options);
|
|
3043
3071
|
});
|
|
3044
|
-
return function update_project(
|
|
3045
|
-
return
|
|
3072
|
+
return function update_project(_x984, _x985, _x986, _x987, _x988) {
|
|
3073
|
+
return _ref294.apply(this, arguments);
|
|
3046
3074
|
};
|
|
3047
3075
|
}();
|
|
3048
3076
|
export var manifest = function () {
|
|
3049
|
-
var
|
|
3077
|
+
var _ref295 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
3050
3078
|
project_id = encodeParam(project_id);
|
|
3051
3079
|
return sdk.get("/projects/".concat(project_id, "/manifest"), null, null, options);
|
|
3052
3080
|
});
|
|
3053
|
-
return function manifest(
|
|
3054
|
-
return
|
|
3081
|
+
return function manifest(_x989, _x990, _x991) {
|
|
3082
|
+
return _ref295.apply(this, arguments);
|
|
3055
3083
|
};
|
|
3056
3084
|
}();
|
|
3057
3085
|
export var git_deploy_key = function () {
|
|
3058
|
-
var
|
|
3086
|
+
var _ref296 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
3059
3087
|
project_id = encodeParam(project_id);
|
|
3060
3088
|
return sdk.get("/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
|
|
3061
3089
|
});
|
|
3062
|
-
return function git_deploy_key(
|
|
3063
|
-
return
|
|
3090
|
+
return function git_deploy_key(_x992, _x993, _x994) {
|
|
3091
|
+
return _ref296.apply(this, arguments);
|
|
3064
3092
|
};
|
|
3065
3093
|
}();
|
|
3066
3094
|
export var create_git_deploy_key = function () {
|
|
3067
|
-
var
|
|
3095
|
+
var _ref297 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
3068
3096
|
project_id = encodeParam(project_id);
|
|
3069
3097
|
return sdk.post("/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
|
|
3070
3098
|
});
|
|
3071
|
-
return function create_git_deploy_key(
|
|
3072
|
-
return
|
|
3099
|
+
return function create_git_deploy_key(_x995, _x996, _x997) {
|
|
3100
|
+
return _ref297.apply(this, arguments);
|
|
3073
3101
|
};
|
|
3074
3102
|
}();
|
|
3075
3103
|
export var project_validation_results = function () {
|
|
3076
|
-
var
|
|
3104
|
+
var _ref298 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3077
3105
|
project_id = encodeParam(project_id);
|
|
3078
3106
|
return sdk.get("/projects/".concat(project_id, "/validate"), {
|
|
3079
3107
|
fields
|
|
3080
3108
|
}, null, options);
|
|
3081
3109
|
});
|
|
3082
|
-
return function project_validation_results(
|
|
3083
|
-
return
|
|
3110
|
+
return function project_validation_results(_x998, _x999, _x1000, _x1001) {
|
|
3111
|
+
return _ref298.apply(this, arguments);
|
|
3084
3112
|
};
|
|
3085
3113
|
}();
|
|
3086
3114
|
export var validate_project = function () {
|
|
3087
|
-
var
|
|
3115
|
+
var _ref299 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3088
3116
|
project_id = encodeParam(project_id);
|
|
3089
3117
|
return sdk.post("/projects/".concat(project_id, "/validate"), {
|
|
3090
3118
|
fields
|
|
3091
3119
|
}, null, options);
|
|
3092
3120
|
});
|
|
3093
|
-
return function validate_project(
|
|
3094
|
-
return
|
|
3121
|
+
return function validate_project(_x1002, _x1003, _x1004, _x1005) {
|
|
3122
|
+
return _ref299.apply(this, arguments);
|
|
3095
3123
|
};
|
|
3096
3124
|
}();
|
|
3097
3125
|
export var project_workspace = function () {
|
|
3098
|
-
var
|
|
3126
|
+
var _ref300 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3099
3127
|
project_id = encodeParam(project_id);
|
|
3100
3128
|
return sdk.get("/projects/".concat(project_id, "/current_workspace"), {
|
|
3101
3129
|
fields
|
|
3102
3130
|
}, null, options);
|
|
3103
3131
|
});
|
|
3104
|
-
return function project_workspace(
|
|
3105
|
-
return
|
|
3132
|
+
return function project_workspace(_x1006, _x1007, _x1008, _x1009) {
|
|
3133
|
+
return _ref300.apply(this, arguments);
|
|
3106
3134
|
};
|
|
3107
3135
|
}();
|
|
3108
3136
|
export var all_project_files = function () {
|
|
3109
|
-
var
|
|
3137
|
+
var _ref301 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
3110
3138
|
project_id = encodeParam(project_id);
|
|
3111
3139
|
return sdk.get("/projects/".concat(project_id, "/files"), {
|
|
3112
3140
|
fields
|
|
3113
3141
|
}, null, options);
|
|
3114
3142
|
});
|
|
3115
|
-
return function all_project_files(
|
|
3116
|
-
return
|
|
3143
|
+
return function all_project_files(_x1010, _x1011, _x1012, _x1013) {
|
|
3144
|
+
return _ref301.apply(this, arguments);
|
|
3117
3145
|
};
|
|
3118
3146
|
}();
|
|
3119
3147
|
export var project_file = function () {
|
|
3120
|
-
var
|
|
3148
|
+
var _ref302 = _asyncToGenerator(function* (sdk, project_id, file_id, fields, options) {
|
|
3121
3149
|
project_id = encodeParam(project_id);
|
|
3122
3150
|
return sdk.get("/projects/".concat(project_id, "/files/file"), {
|
|
3123
3151
|
file_id,
|
|
3124
3152
|
fields
|
|
3125
3153
|
}, null, options);
|
|
3126
3154
|
});
|
|
3127
|
-
return function project_file(
|
|
3128
|
-
return
|
|
3155
|
+
return function project_file(_x1014, _x1015, _x1016, _x1017, _x1018) {
|
|
3156
|
+
return _ref302.apply(this, arguments);
|
|
3129
3157
|
};
|
|
3130
3158
|
}();
|
|
3131
3159
|
export var all_git_connection_tests = function () {
|
|
3132
|
-
var
|
|
3160
|
+
var _ref303 = _asyncToGenerator(function* (sdk, project_id, remote_url, options) {
|
|
3133
3161
|
project_id = encodeParam(project_id);
|
|
3134
3162
|
return sdk.get("/projects/".concat(project_id, "/git_connection_tests"), {
|
|
3135
3163
|
remote_url
|
|
3136
3164
|
}, null, options);
|
|
3137
3165
|
});
|
|
3138
|
-
return function all_git_connection_tests(
|
|
3139
|
-
return
|
|
3166
|
+
return function all_git_connection_tests(_x1019, _x1020, _x1021, _x1022) {
|
|
3167
|
+
return _ref303.apply(this, arguments);
|
|
3140
3168
|
};
|
|
3141
3169
|
}();
|
|
3142
3170
|
export var run_git_connection_test = function () {
|
|
3143
|
-
var
|
|
3171
|
+
var _ref304 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3144
3172
|
request.project_id = encodeParam(request.project_id);
|
|
3145
3173
|
request.test_id = encodeParam(request.test_id);
|
|
3146
3174
|
return sdk.get("/projects/".concat(request.project_id, "/git_connection_tests/").concat(request.test_id), {
|
|
@@ -3148,23 +3176,23 @@ export var run_git_connection_test = function () {
|
|
|
3148
3176
|
use_production: request.use_production
|
|
3149
3177
|
}, null, options);
|
|
3150
3178
|
});
|
|
3151
|
-
return function run_git_connection_test(
|
|
3152
|
-
return
|
|
3179
|
+
return function run_git_connection_test(_x1023, _x1024, _x1025) {
|
|
3180
|
+
return _ref304.apply(this, arguments);
|
|
3153
3181
|
};
|
|
3154
3182
|
}();
|
|
3155
3183
|
export var all_lookml_tests = function () {
|
|
3156
|
-
var
|
|
3184
|
+
var _ref305 = _asyncToGenerator(function* (sdk, project_id, file_id, options) {
|
|
3157
3185
|
project_id = encodeParam(project_id);
|
|
3158
3186
|
return sdk.get("/projects/".concat(project_id, "/lookml_tests"), {
|
|
3159
3187
|
file_id
|
|
3160
3188
|
}, null, options);
|
|
3161
3189
|
});
|
|
3162
|
-
return function all_lookml_tests(
|
|
3163
|
-
return
|
|
3190
|
+
return function all_lookml_tests(_x1026, _x1027, _x1028, _x1029) {
|
|
3191
|
+
return _ref305.apply(this, arguments);
|
|
3164
3192
|
};
|
|
3165
3193
|
}();
|
|
3166
3194
|
export var run_lookml_test = function () {
|
|
3167
|
-
var
|
|
3195
|
+
var _ref306 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3168
3196
|
request.project_id = encodeParam(request.project_id);
|
|
3169
3197
|
return sdk.get("/projects/".concat(request.project_id, "/lookml_tests/run"), {
|
|
3170
3198
|
file_id: request.file_id,
|
|
@@ -3172,12 +3200,12 @@ export var run_lookml_test = function () {
|
|
|
3172
3200
|
model: request.model
|
|
3173
3201
|
}, null, options);
|
|
3174
3202
|
});
|
|
3175
|
-
return function run_lookml_test(
|
|
3176
|
-
return
|
|
3203
|
+
return function run_lookml_test(_x1030, _x1031, _x1032) {
|
|
3204
|
+
return _ref306.apply(this, arguments);
|
|
3177
3205
|
};
|
|
3178
3206
|
}();
|
|
3179
3207
|
export var tag_ref = function () {
|
|
3180
|
-
var
|
|
3208
|
+
var _ref307 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3181
3209
|
request.project_id = encodeParam(request.project_id);
|
|
3182
3210
|
return sdk.post("/projects/".concat(request.project_id, "/tag"), {
|
|
3183
3211
|
commit_sha: request.commit_sha,
|
|
@@ -3185,41 +3213,41 @@ export var tag_ref = function () {
|
|
|
3185
3213
|
tag_message: request.tag_message
|
|
3186
3214
|
}, request.body, options);
|
|
3187
3215
|
});
|
|
3188
|
-
return function tag_ref(
|
|
3189
|
-
return
|
|
3216
|
+
return function tag_ref(_x1033, _x1034, _x1035) {
|
|
3217
|
+
return _ref307.apply(this, arguments);
|
|
3190
3218
|
};
|
|
3191
3219
|
}();
|
|
3192
3220
|
export var update_repository_credential = function () {
|
|
3193
|
-
var
|
|
3221
|
+
var _ref308 = _asyncToGenerator(function* (sdk, root_project_id, credential_id, body, options) {
|
|
3194
3222
|
root_project_id = encodeParam(root_project_id);
|
|
3195
3223
|
credential_id = encodeParam(credential_id);
|
|
3196
3224
|
return sdk.put("/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, body, options);
|
|
3197
3225
|
});
|
|
3198
|
-
return function update_repository_credential(
|
|
3199
|
-
return
|
|
3226
|
+
return function update_repository_credential(_x1036, _x1037, _x1038, _x1039, _x1040) {
|
|
3227
|
+
return _ref308.apply(this, arguments);
|
|
3200
3228
|
};
|
|
3201
3229
|
}();
|
|
3202
3230
|
export var delete_repository_credential = function () {
|
|
3203
|
-
var
|
|
3231
|
+
var _ref309 = _asyncToGenerator(function* (sdk, root_project_id, credential_id, options) {
|
|
3204
3232
|
root_project_id = encodeParam(root_project_id);
|
|
3205
3233
|
credential_id = encodeParam(credential_id);
|
|
3206
3234
|
return sdk.delete("/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, null, options);
|
|
3207
3235
|
});
|
|
3208
|
-
return function delete_repository_credential(
|
|
3209
|
-
return
|
|
3236
|
+
return function delete_repository_credential(_x1041, _x1042, _x1043, _x1044) {
|
|
3237
|
+
return _ref309.apply(this, arguments);
|
|
3210
3238
|
};
|
|
3211
3239
|
}();
|
|
3212
3240
|
export var get_all_repository_credentials = function () {
|
|
3213
|
-
var
|
|
3241
|
+
var _ref310 = _asyncToGenerator(function* (sdk, root_project_id, options) {
|
|
3214
3242
|
root_project_id = encodeParam(root_project_id);
|
|
3215
3243
|
return sdk.get("/projects/".concat(root_project_id, "/credentials"), null, null, options);
|
|
3216
3244
|
});
|
|
3217
|
-
return function get_all_repository_credentials(
|
|
3218
|
-
return
|
|
3245
|
+
return function get_all_repository_credentials(_x1045, _x1046, _x1047) {
|
|
3246
|
+
return _ref310.apply(this, arguments);
|
|
3219
3247
|
};
|
|
3220
3248
|
}();
|
|
3221
3249
|
export var create_query_task = function () {
|
|
3222
|
-
var
|
|
3250
|
+
var _ref311 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3223
3251
|
return sdk.post('/query_tasks', {
|
|
3224
3252
|
limit: request.limit,
|
|
3225
3253
|
apply_formatting: request.apply_formatting,
|
|
@@ -3234,74 +3262,74 @@ export var create_query_task = function () {
|
|
|
3234
3262
|
fields: request.fields
|
|
3235
3263
|
}, request.body, options);
|
|
3236
3264
|
});
|
|
3237
|
-
return function create_query_task(
|
|
3238
|
-
return
|
|
3265
|
+
return function create_query_task(_x1048, _x1049, _x1050) {
|
|
3266
|
+
return _ref311.apply(this, arguments);
|
|
3239
3267
|
};
|
|
3240
3268
|
}();
|
|
3241
3269
|
export var query_task_multi_results = function () {
|
|
3242
|
-
var
|
|
3270
|
+
var _ref312 = _asyncToGenerator(function* (sdk, query_task_ids, options) {
|
|
3243
3271
|
return sdk.get('/query_tasks/multi_results', {
|
|
3244
3272
|
query_task_ids
|
|
3245
3273
|
}, null, options);
|
|
3246
3274
|
});
|
|
3247
|
-
return function query_task_multi_results(
|
|
3248
|
-
return
|
|
3275
|
+
return function query_task_multi_results(_x1051, _x1052, _x1053) {
|
|
3276
|
+
return _ref312.apply(this, arguments);
|
|
3249
3277
|
};
|
|
3250
3278
|
}();
|
|
3251
3279
|
export var query_task = function () {
|
|
3252
|
-
var
|
|
3280
|
+
var _ref313 = _asyncToGenerator(function* (sdk, query_task_id, fields, options) {
|
|
3253
3281
|
query_task_id = encodeParam(query_task_id);
|
|
3254
3282
|
return sdk.get("/query_tasks/".concat(query_task_id), {
|
|
3255
3283
|
fields
|
|
3256
3284
|
}, null, options);
|
|
3257
3285
|
});
|
|
3258
|
-
return function query_task(
|
|
3259
|
-
return
|
|
3286
|
+
return function query_task(_x1054, _x1055, _x1056, _x1057) {
|
|
3287
|
+
return _ref313.apply(this, arguments);
|
|
3260
3288
|
};
|
|
3261
3289
|
}();
|
|
3262
3290
|
export var query_task_results = function () {
|
|
3263
|
-
var
|
|
3291
|
+
var _ref314 = _asyncToGenerator(function* (sdk, query_task_id, options) {
|
|
3264
3292
|
query_task_id = encodeParam(query_task_id);
|
|
3265
3293
|
return sdk.get("/query_tasks/".concat(query_task_id, "/results"), null, null, options);
|
|
3266
3294
|
});
|
|
3267
|
-
return function query_task_results(
|
|
3268
|
-
return
|
|
3295
|
+
return function query_task_results(_x1058, _x1059, _x1060) {
|
|
3296
|
+
return _ref314.apply(this, arguments);
|
|
3269
3297
|
};
|
|
3270
3298
|
}();
|
|
3271
3299
|
export var query = function () {
|
|
3272
|
-
var
|
|
3300
|
+
var _ref315 = _asyncToGenerator(function* (sdk, query_id, fields, options) {
|
|
3273
3301
|
query_id = encodeParam(query_id);
|
|
3274
3302
|
return sdk.get("/queries/".concat(query_id), {
|
|
3275
3303
|
fields
|
|
3276
3304
|
}, null, options);
|
|
3277
3305
|
});
|
|
3278
|
-
return function query(
|
|
3279
|
-
return
|
|
3306
|
+
return function query(_x1061, _x1062, _x1063, _x1064) {
|
|
3307
|
+
return _ref315.apply(this, arguments);
|
|
3280
3308
|
};
|
|
3281
3309
|
}();
|
|
3282
3310
|
export var query_for_slug = function () {
|
|
3283
|
-
var
|
|
3311
|
+
var _ref316 = _asyncToGenerator(function* (sdk, slug, fields, options) {
|
|
3284
3312
|
slug = encodeParam(slug);
|
|
3285
3313
|
return sdk.get("/queries/slug/".concat(slug), {
|
|
3286
3314
|
fields
|
|
3287
3315
|
}, null, options);
|
|
3288
3316
|
});
|
|
3289
|
-
return function query_for_slug(
|
|
3290
|
-
return
|
|
3317
|
+
return function query_for_slug(_x1065, _x1066, _x1067, _x1068) {
|
|
3318
|
+
return _ref316.apply(this, arguments);
|
|
3291
3319
|
};
|
|
3292
3320
|
}();
|
|
3293
3321
|
export var create_query = function () {
|
|
3294
|
-
var
|
|
3322
|
+
var _ref317 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
3295
3323
|
return sdk.post('/queries', {
|
|
3296
3324
|
fields
|
|
3297
3325
|
}, body, options);
|
|
3298
3326
|
});
|
|
3299
|
-
return function create_query(
|
|
3300
|
-
return
|
|
3327
|
+
return function create_query(_x1069, _x1070, _x1071, _x1072) {
|
|
3328
|
+
return _ref317.apply(this, arguments);
|
|
3301
3329
|
};
|
|
3302
3330
|
}();
|
|
3303
3331
|
export var run_query = function () {
|
|
3304
|
-
var
|
|
3332
|
+
var _ref318 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3305
3333
|
request.query_id = encodeParam(request.query_id);
|
|
3306
3334
|
request.result_format = encodeParam(request.result_format);
|
|
3307
3335
|
return sdk.get("/queries/".concat(request.query_id, "/run/").concat(request.result_format), {
|
|
@@ -3321,12 +3349,12 @@ export var run_query = function () {
|
|
|
3321
3349
|
enable_oauth_error_response: request.enable_oauth_error_response
|
|
3322
3350
|
}, null, options);
|
|
3323
3351
|
});
|
|
3324
|
-
return function run_query(
|
|
3325
|
-
return
|
|
3352
|
+
return function run_query(_x1073, _x1074, _x1075) {
|
|
3353
|
+
return _ref318.apply(this, arguments);
|
|
3326
3354
|
};
|
|
3327
3355
|
}();
|
|
3328
3356
|
export var run_inline_query = function () {
|
|
3329
|
-
var
|
|
3357
|
+
var _ref319 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3330
3358
|
request.result_format = encodeParam(request.result_format);
|
|
3331
3359
|
return sdk.post("/queries/run/".concat(request.result_format), {
|
|
3332
3360
|
limit: request.limit,
|
|
@@ -3344,90 +3372,90 @@ export var run_inline_query = function () {
|
|
|
3344
3372
|
enable_oauth_error_response: request.enable_oauth_error_response
|
|
3345
3373
|
}, request.body, options);
|
|
3346
3374
|
});
|
|
3347
|
-
return function run_inline_query(
|
|
3348
|
-
return
|
|
3375
|
+
return function run_inline_query(_x1076, _x1077, _x1078) {
|
|
3376
|
+
return _ref319.apply(this, arguments);
|
|
3349
3377
|
};
|
|
3350
3378
|
}();
|
|
3351
3379
|
export var run_url_encoded_query = function () {
|
|
3352
|
-
var
|
|
3380
|
+
var _ref320 = _asyncToGenerator(function* (sdk, model_name, view_name, result_format, options) {
|
|
3353
3381
|
model_name = encodeParam(model_name);
|
|
3354
3382
|
view_name = encodeParam(view_name);
|
|
3355
3383
|
result_format = encodeParam(result_format);
|
|
3356
3384
|
return sdk.get("/queries/models/".concat(model_name, "/views/").concat(view_name, "/run/").concat(result_format), null, null, options);
|
|
3357
3385
|
});
|
|
3358
|
-
return function run_url_encoded_query(
|
|
3359
|
-
return
|
|
3386
|
+
return function run_url_encoded_query(_x1079, _x1080, _x1081, _x1082, _x1083) {
|
|
3387
|
+
return _ref320.apply(this, arguments);
|
|
3360
3388
|
};
|
|
3361
3389
|
}();
|
|
3362
3390
|
export var merge_query = function () {
|
|
3363
|
-
var
|
|
3391
|
+
var _ref321 = _asyncToGenerator(function* (sdk, merge_query_id, fields, options) {
|
|
3364
3392
|
merge_query_id = encodeParam(merge_query_id);
|
|
3365
3393
|
return sdk.get("/merge_queries/".concat(merge_query_id), {
|
|
3366
3394
|
fields
|
|
3367
3395
|
}, null, options);
|
|
3368
3396
|
});
|
|
3369
|
-
return function merge_query(
|
|
3370
|
-
return
|
|
3397
|
+
return function merge_query(_x1084, _x1085, _x1086, _x1087) {
|
|
3398
|
+
return _ref321.apply(this, arguments);
|
|
3371
3399
|
};
|
|
3372
3400
|
}();
|
|
3373
3401
|
export var create_merge_query = function () {
|
|
3374
|
-
var
|
|
3402
|
+
var _ref322 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
3375
3403
|
return sdk.post('/merge_queries', {
|
|
3376
3404
|
fields
|
|
3377
3405
|
}, body, options);
|
|
3378
3406
|
});
|
|
3379
|
-
return function create_merge_query(
|
|
3380
|
-
return
|
|
3407
|
+
return function create_merge_query(_x1088, _x1089, _x1090, _x1091) {
|
|
3408
|
+
return _ref322.apply(this, arguments);
|
|
3381
3409
|
};
|
|
3382
3410
|
}();
|
|
3383
3411
|
export var all_running_queries = function () {
|
|
3384
|
-
var
|
|
3412
|
+
var _ref323 = _asyncToGenerator(function* (sdk, options) {
|
|
3385
3413
|
return sdk.get('/running_queries', null, null, options);
|
|
3386
3414
|
});
|
|
3387
|
-
return function all_running_queries(
|
|
3388
|
-
return
|
|
3415
|
+
return function all_running_queries(_x1092, _x1093) {
|
|
3416
|
+
return _ref323.apply(this, arguments);
|
|
3389
3417
|
};
|
|
3390
3418
|
}();
|
|
3391
3419
|
export var kill_query = function () {
|
|
3392
|
-
var
|
|
3420
|
+
var _ref324 = _asyncToGenerator(function* (sdk, query_task_id, options) {
|
|
3393
3421
|
query_task_id = encodeParam(query_task_id);
|
|
3394
3422
|
return sdk.delete("/running_queries/".concat(query_task_id), null, null, options);
|
|
3395
3423
|
});
|
|
3396
|
-
return function kill_query(
|
|
3397
|
-
return
|
|
3424
|
+
return function kill_query(_x1094, _x1095, _x1096) {
|
|
3425
|
+
return _ref324.apply(this, arguments);
|
|
3398
3426
|
};
|
|
3399
3427
|
}();
|
|
3400
3428
|
export var create_sql_query = function () {
|
|
3401
|
-
var
|
|
3429
|
+
var _ref325 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3402
3430
|
return sdk.post('/sql_queries', null, body, options);
|
|
3403
3431
|
});
|
|
3404
|
-
return function create_sql_query(
|
|
3405
|
-
return
|
|
3432
|
+
return function create_sql_query(_x1097, _x1098, _x1099) {
|
|
3433
|
+
return _ref325.apply(this, arguments);
|
|
3406
3434
|
};
|
|
3407
3435
|
}();
|
|
3408
3436
|
export var sql_query = function () {
|
|
3409
|
-
var
|
|
3437
|
+
var _ref326 = _asyncToGenerator(function* (sdk, slug, options) {
|
|
3410
3438
|
slug = encodeParam(slug);
|
|
3411
3439
|
return sdk.get("/sql_queries/".concat(slug), null, null, options);
|
|
3412
3440
|
});
|
|
3413
|
-
return function sql_query(
|
|
3414
|
-
return
|
|
3441
|
+
return function sql_query(_x1100, _x1101, _x1102) {
|
|
3442
|
+
return _ref326.apply(this, arguments);
|
|
3415
3443
|
};
|
|
3416
3444
|
}();
|
|
3417
3445
|
export var run_sql_query = function () {
|
|
3418
|
-
var
|
|
3446
|
+
var _ref327 = _asyncToGenerator(function* (sdk, slug, result_format, download, options) {
|
|
3419
3447
|
slug = encodeParam(slug);
|
|
3420
3448
|
result_format = encodeParam(result_format);
|
|
3421
3449
|
return sdk.post("/sql_queries/".concat(slug, "/run/").concat(result_format), {
|
|
3422
3450
|
download
|
|
3423
3451
|
}, null, options);
|
|
3424
3452
|
});
|
|
3425
|
-
return function run_sql_query(
|
|
3426
|
-
return
|
|
3453
|
+
return function run_sql_query(_x1103, _x1104, _x1105, _x1106, _x1107) {
|
|
3454
|
+
return _ref327.apply(this, arguments);
|
|
3427
3455
|
};
|
|
3428
3456
|
}();
|
|
3429
3457
|
export var create_look_render_task = function () {
|
|
3430
|
-
var
|
|
3458
|
+
var _ref328 = _asyncToGenerator(function* (sdk, look_id, result_format, width, height, fields, options) {
|
|
3431
3459
|
look_id = encodeParam(look_id);
|
|
3432
3460
|
result_format = encodeParam(result_format);
|
|
3433
3461
|
return sdk.post("/render_tasks/looks/".concat(look_id, "/").concat(result_format), {
|
|
@@ -3436,12 +3464,12 @@ export var create_look_render_task = function () {
|
|
|
3436
3464
|
fields
|
|
3437
3465
|
}, null, options);
|
|
3438
3466
|
});
|
|
3439
|
-
return function create_look_render_task(
|
|
3440
|
-
return
|
|
3467
|
+
return function create_look_render_task(_x1108, _x1109, _x1110, _x1111, _x1112, _x1113, _x1114) {
|
|
3468
|
+
return _ref328.apply(this, arguments);
|
|
3441
3469
|
};
|
|
3442
3470
|
}();
|
|
3443
3471
|
export var create_query_render_task = function () {
|
|
3444
|
-
var
|
|
3472
|
+
var _ref329 = _asyncToGenerator(function* (sdk, query_id, result_format, width, height, fields, options) {
|
|
3445
3473
|
query_id = encodeParam(query_id);
|
|
3446
3474
|
result_format = encodeParam(result_format);
|
|
3447
3475
|
return sdk.post("/render_tasks/queries/".concat(query_id, "/").concat(result_format), {
|
|
@@ -3450,12 +3478,12 @@ export var create_query_render_task = function () {
|
|
|
3450
3478
|
fields
|
|
3451
3479
|
}, null, options);
|
|
3452
3480
|
});
|
|
3453
|
-
return function create_query_render_task(
|
|
3454
|
-
return
|
|
3481
|
+
return function create_query_render_task(_x1115, _x1116, _x1117, _x1118, _x1119, _x1120, _x1121) {
|
|
3482
|
+
return _ref329.apply(this, arguments);
|
|
3455
3483
|
};
|
|
3456
3484
|
}();
|
|
3457
3485
|
export var create_dashboard_render_task = function () {
|
|
3458
|
-
var
|
|
3486
|
+
var _ref330 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3459
3487
|
request.dashboard_id = encodeParam(request.dashboard_id);
|
|
3460
3488
|
request.result_format = encodeParam(request.result_format);
|
|
3461
3489
|
return sdk.post("/render_tasks/dashboards/".concat(request.dashboard_id, "/").concat(request.result_format), {
|
|
@@ -3468,32 +3496,32 @@ export var create_dashboard_render_task = function () {
|
|
|
3468
3496
|
theme: request.theme
|
|
3469
3497
|
}, request.body, options);
|
|
3470
3498
|
});
|
|
3471
|
-
return function create_dashboard_render_task(
|
|
3472
|
-
return
|
|
3499
|
+
return function create_dashboard_render_task(_x1122, _x1123, _x1124) {
|
|
3500
|
+
return _ref330.apply(this, arguments);
|
|
3473
3501
|
};
|
|
3474
3502
|
}();
|
|
3475
3503
|
export var render_task = function () {
|
|
3476
|
-
var
|
|
3504
|
+
var _ref331 = _asyncToGenerator(function* (sdk, render_task_id, fields, options) {
|
|
3477
3505
|
render_task_id = encodeParam(render_task_id);
|
|
3478
3506
|
return sdk.get("/render_tasks/".concat(render_task_id), {
|
|
3479
3507
|
fields
|
|
3480
3508
|
}, null, options);
|
|
3481
3509
|
});
|
|
3482
|
-
return function render_task(
|
|
3483
|
-
return
|
|
3510
|
+
return function render_task(_x1125, _x1126, _x1127, _x1128) {
|
|
3511
|
+
return _ref331.apply(this, arguments);
|
|
3484
3512
|
};
|
|
3485
3513
|
}();
|
|
3486
3514
|
export var render_task_results = function () {
|
|
3487
|
-
var
|
|
3515
|
+
var _ref332 = _asyncToGenerator(function* (sdk, render_task_id, options) {
|
|
3488
3516
|
render_task_id = encodeParam(render_task_id);
|
|
3489
3517
|
return sdk.get("/render_tasks/".concat(render_task_id, "/results"), null, null, options);
|
|
3490
3518
|
});
|
|
3491
|
-
return function render_task_results(
|
|
3492
|
-
return
|
|
3519
|
+
return function render_task_results(_x1129, _x1130, _x1131) {
|
|
3520
|
+
return _ref332.apply(this, arguments);
|
|
3493
3521
|
};
|
|
3494
3522
|
}();
|
|
3495
3523
|
export var create_dashboard_element_render_task = function () {
|
|
3496
|
-
var
|
|
3524
|
+
var _ref333 = _asyncToGenerator(function* (sdk, dashboard_element_id, result_format, width, height, fields, options) {
|
|
3497
3525
|
dashboard_element_id = encodeParam(dashboard_element_id);
|
|
3498
3526
|
result_format = encodeParam(result_format);
|
|
3499
3527
|
return sdk.post("/render_tasks/dashboard_elements/".concat(dashboard_element_id, "/").concat(result_format), {
|
|
@@ -3502,12 +3530,12 @@ export var create_dashboard_element_render_task = function () {
|
|
|
3502
3530
|
fields
|
|
3503
3531
|
}, null, options);
|
|
3504
3532
|
});
|
|
3505
|
-
return function create_dashboard_element_render_task(
|
|
3506
|
-
return
|
|
3533
|
+
return function create_dashboard_element_render_task(_x1132, _x1133, _x1134, _x1135, _x1136, _x1137, _x1138) {
|
|
3534
|
+
return _ref333.apply(this, arguments);
|
|
3507
3535
|
};
|
|
3508
3536
|
}();
|
|
3509
3537
|
export var search_reports = function () {
|
|
3510
|
-
var
|
|
3538
|
+
var _ref334 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3511
3539
|
return sdk.get('/reports/search', {
|
|
3512
3540
|
folder_id: request.folder_id,
|
|
3513
3541
|
favorite: request.favorite,
|
|
@@ -3520,12 +3548,12 @@ export var search_reports = function () {
|
|
|
3520
3548
|
next_page_token: request.next_page_token
|
|
3521
3549
|
}, null, options);
|
|
3522
3550
|
});
|
|
3523
|
-
return function search_reports(
|
|
3524
|
-
return
|
|
3551
|
+
return function search_reports(_x1139, _x1140, _x1141) {
|
|
3552
|
+
return _ref334.apply(this, arguments);
|
|
3525
3553
|
};
|
|
3526
3554
|
}();
|
|
3527
3555
|
export var search_model_sets = function () {
|
|
3528
|
-
var
|
|
3556
|
+
var _ref335 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3529
3557
|
return sdk.get('/model_sets/search', {
|
|
3530
3558
|
fields: request.fields,
|
|
3531
3559
|
limit: request.limit,
|
|
@@ -3538,67 +3566,67 @@ export var search_model_sets = function () {
|
|
|
3538
3566
|
filter_or: request.filter_or
|
|
3539
3567
|
}, null, options);
|
|
3540
3568
|
});
|
|
3541
|
-
return function search_model_sets(
|
|
3542
|
-
return
|
|
3569
|
+
return function search_model_sets(_x1142, _x1143, _x1144) {
|
|
3570
|
+
return _ref335.apply(this, arguments);
|
|
3543
3571
|
};
|
|
3544
3572
|
}();
|
|
3545
3573
|
export var model_set = function () {
|
|
3546
|
-
var
|
|
3574
|
+
var _ref336 = _asyncToGenerator(function* (sdk, model_set_id, fields, options) {
|
|
3547
3575
|
model_set_id = encodeParam(model_set_id);
|
|
3548
3576
|
return sdk.get("/model_sets/".concat(model_set_id), {
|
|
3549
3577
|
fields
|
|
3550
3578
|
}, null, options);
|
|
3551
3579
|
});
|
|
3552
|
-
return function model_set(
|
|
3553
|
-
return
|
|
3580
|
+
return function model_set(_x1145, _x1146, _x1147, _x1148) {
|
|
3581
|
+
return _ref336.apply(this, arguments);
|
|
3554
3582
|
};
|
|
3555
3583
|
}();
|
|
3556
3584
|
export var update_model_set = function () {
|
|
3557
|
-
var
|
|
3585
|
+
var _ref337 = _asyncToGenerator(function* (sdk, model_set_id, body, options) {
|
|
3558
3586
|
model_set_id = encodeParam(model_set_id);
|
|
3559
3587
|
return sdk.patch("/model_sets/".concat(model_set_id), null, body, options);
|
|
3560
3588
|
});
|
|
3561
|
-
return function update_model_set(
|
|
3562
|
-
return
|
|
3589
|
+
return function update_model_set(_x1149, _x1150, _x1151, _x1152) {
|
|
3590
|
+
return _ref337.apply(this, arguments);
|
|
3563
3591
|
};
|
|
3564
3592
|
}();
|
|
3565
3593
|
export var delete_model_set = function () {
|
|
3566
|
-
var
|
|
3594
|
+
var _ref338 = _asyncToGenerator(function* (sdk, model_set_id, options) {
|
|
3567
3595
|
model_set_id = encodeParam(model_set_id);
|
|
3568
3596
|
return sdk.delete("/model_sets/".concat(model_set_id), null, null, options);
|
|
3569
3597
|
});
|
|
3570
|
-
return function delete_model_set(
|
|
3571
|
-
return
|
|
3598
|
+
return function delete_model_set(_x1153, _x1154, _x1155) {
|
|
3599
|
+
return _ref338.apply(this, arguments);
|
|
3572
3600
|
};
|
|
3573
3601
|
}();
|
|
3574
3602
|
export var all_model_sets = function () {
|
|
3575
|
-
var
|
|
3603
|
+
var _ref339 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3576
3604
|
return sdk.get('/model_sets', {
|
|
3577
3605
|
fields
|
|
3578
3606
|
}, null, options);
|
|
3579
3607
|
});
|
|
3580
|
-
return function all_model_sets(
|
|
3581
|
-
return
|
|
3608
|
+
return function all_model_sets(_x1156, _x1157, _x1158) {
|
|
3609
|
+
return _ref339.apply(this, arguments);
|
|
3582
3610
|
};
|
|
3583
3611
|
}();
|
|
3584
3612
|
export var create_model_set = function () {
|
|
3585
|
-
var
|
|
3613
|
+
var _ref340 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3586
3614
|
return sdk.post('/model_sets', null, body, options);
|
|
3587
3615
|
});
|
|
3588
|
-
return function create_model_set(
|
|
3589
|
-
return
|
|
3616
|
+
return function create_model_set(_x1159, _x1160, _x1161) {
|
|
3617
|
+
return _ref340.apply(this, arguments);
|
|
3590
3618
|
};
|
|
3591
3619
|
}();
|
|
3592
3620
|
export var all_permissions = function () {
|
|
3593
|
-
var
|
|
3621
|
+
var _ref341 = _asyncToGenerator(function* (sdk, options) {
|
|
3594
3622
|
return sdk.get('/permissions', null, null, options);
|
|
3595
3623
|
});
|
|
3596
|
-
return function all_permissions(
|
|
3597
|
-
return
|
|
3624
|
+
return function all_permissions(_x1162, _x1163) {
|
|
3625
|
+
return _ref341.apply(this, arguments);
|
|
3598
3626
|
};
|
|
3599
3627
|
}();
|
|
3600
3628
|
export var search_permission_sets = function () {
|
|
3601
|
-
var
|
|
3629
|
+
var _ref342 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3602
3630
|
return sdk.get('/permission_sets/search', {
|
|
3603
3631
|
fields: request.fields,
|
|
3604
3632
|
limit: request.limit,
|
|
@@ -3611,78 +3639,79 @@ export var search_permission_sets = function () {
|
|
|
3611
3639
|
filter_or: request.filter_or
|
|
3612
3640
|
}, null, options);
|
|
3613
3641
|
});
|
|
3614
|
-
return function search_permission_sets(
|
|
3615
|
-
return
|
|
3642
|
+
return function search_permission_sets(_x1164, _x1165, _x1166) {
|
|
3643
|
+
return _ref342.apply(this, arguments);
|
|
3616
3644
|
};
|
|
3617
3645
|
}();
|
|
3618
3646
|
export var permission_set = function () {
|
|
3619
|
-
var
|
|
3647
|
+
var _ref343 = _asyncToGenerator(function* (sdk, permission_set_id, fields, options) {
|
|
3620
3648
|
permission_set_id = encodeParam(permission_set_id);
|
|
3621
3649
|
return sdk.get("/permission_sets/".concat(permission_set_id), {
|
|
3622
3650
|
fields
|
|
3623
3651
|
}, null, options);
|
|
3624
3652
|
});
|
|
3625
|
-
return function permission_set(
|
|
3626
|
-
return
|
|
3653
|
+
return function permission_set(_x1167, _x1168, _x1169, _x1170) {
|
|
3654
|
+
return _ref343.apply(this, arguments);
|
|
3627
3655
|
};
|
|
3628
3656
|
}();
|
|
3629
3657
|
export var update_permission_set = function () {
|
|
3630
|
-
var
|
|
3658
|
+
var _ref344 = _asyncToGenerator(function* (sdk, permission_set_id, body, options) {
|
|
3631
3659
|
permission_set_id = encodeParam(permission_set_id);
|
|
3632
3660
|
return sdk.patch("/permission_sets/".concat(permission_set_id), null, body, options);
|
|
3633
3661
|
});
|
|
3634
|
-
return function update_permission_set(
|
|
3635
|
-
return
|
|
3662
|
+
return function update_permission_set(_x1171, _x1172, _x1173, _x1174) {
|
|
3663
|
+
return _ref344.apply(this, arguments);
|
|
3636
3664
|
};
|
|
3637
3665
|
}();
|
|
3638
3666
|
export var delete_permission_set = function () {
|
|
3639
|
-
var
|
|
3667
|
+
var _ref345 = _asyncToGenerator(function* (sdk, permission_set_id, options) {
|
|
3640
3668
|
permission_set_id = encodeParam(permission_set_id);
|
|
3641
3669
|
return sdk.delete("/permission_sets/".concat(permission_set_id), null, null, options);
|
|
3642
3670
|
});
|
|
3643
|
-
return function delete_permission_set(
|
|
3644
|
-
return
|
|
3671
|
+
return function delete_permission_set(_x1175, _x1176, _x1177) {
|
|
3672
|
+
return _ref345.apply(this, arguments);
|
|
3645
3673
|
};
|
|
3646
3674
|
}();
|
|
3647
3675
|
export var all_permission_sets = function () {
|
|
3648
|
-
var
|
|
3676
|
+
var _ref346 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3649
3677
|
return sdk.get('/permission_sets', {
|
|
3650
3678
|
fields
|
|
3651
3679
|
}, null, options);
|
|
3652
3680
|
});
|
|
3653
|
-
return function all_permission_sets(
|
|
3654
|
-
return
|
|
3681
|
+
return function all_permission_sets(_x1178, _x1179, _x1180) {
|
|
3682
|
+
return _ref346.apply(this, arguments);
|
|
3655
3683
|
};
|
|
3656
3684
|
}();
|
|
3657
3685
|
export var create_permission_set = function () {
|
|
3658
|
-
var
|
|
3686
|
+
var _ref347 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3659
3687
|
return sdk.post('/permission_sets', null, body, options);
|
|
3660
3688
|
});
|
|
3661
|
-
return function create_permission_set(
|
|
3662
|
-
return
|
|
3689
|
+
return function create_permission_set(_x1181, _x1182, _x1183) {
|
|
3690
|
+
return _ref347.apply(this, arguments);
|
|
3663
3691
|
};
|
|
3664
3692
|
}();
|
|
3665
3693
|
export var all_roles = function () {
|
|
3666
|
-
var
|
|
3694
|
+
var _ref348 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3667
3695
|
return sdk.get('/roles', {
|
|
3668
3696
|
fields: request.fields,
|
|
3669
|
-
ids: request.ids
|
|
3697
|
+
ids: request.ids,
|
|
3698
|
+
get_all_support_roles: request.get_all_support_roles
|
|
3670
3699
|
}, null, options);
|
|
3671
3700
|
});
|
|
3672
|
-
return function all_roles(
|
|
3673
|
-
return
|
|
3701
|
+
return function all_roles(_x1184, _x1185, _x1186) {
|
|
3702
|
+
return _ref348.apply(this, arguments);
|
|
3674
3703
|
};
|
|
3675
3704
|
}();
|
|
3676
3705
|
export var create_role = function () {
|
|
3677
|
-
var
|
|
3706
|
+
var _ref349 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3678
3707
|
return sdk.post('/roles', null, body, options);
|
|
3679
3708
|
});
|
|
3680
|
-
return function create_role(
|
|
3681
|
-
return
|
|
3709
|
+
return function create_role(_x1187, _x1188, _x1189) {
|
|
3710
|
+
return _ref349.apply(this, arguments);
|
|
3682
3711
|
};
|
|
3683
3712
|
}();
|
|
3684
3713
|
export var search_roles = function () {
|
|
3685
|
-
var
|
|
3714
|
+
var _ref350 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3686
3715
|
return sdk.get('/roles/search', {
|
|
3687
3716
|
fields: request.fields,
|
|
3688
3717
|
limit: request.limit,
|
|
@@ -3691,16 +3720,15 @@ export var search_roles = function () {
|
|
|
3691
3720
|
id: request.id,
|
|
3692
3721
|
name: request.name,
|
|
3693
3722
|
built_in: request.built_in,
|
|
3694
|
-
filter_or: request.filter_or
|
|
3695
|
-
is_support_role: request.is_support_role
|
|
3723
|
+
filter_or: request.filter_or
|
|
3696
3724
|
}, null, options);
|
|
3697
3725
|
});
|
|
3698
|
-
return function search_roles(
|
|
3699
|
-
return
|
|
3726
|
+
return function search_roles(_x1190, _x1191, _x1192) {
|
|
3727
|
+
return _ref350.apply(this, arguments);
|
|
3700
3728
|
};
|
|
3701
3729
|
}();
|
|
3702
3730
|
export var search_roles_with_user_count = function () {
|
|
3703
|
-
var
|
|
3731
|
+
var _ref351 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3704
3732
|
return sdk.get('/roles/search/with_user_count', {
|
|
3705
3733
|
fields: request.fields,
|
|
3706
3734
|
limit: request.limit,
|
|
@@ -3712,148 +3740,148 @@ export var search_roles_with_user_count = function () {
|
|
|
3712
3740
|
filter_or: request.filter_or
|
|
3713
3741
|
}, null, options);
|
|
3714
3742
|
});
|
|
3715
|
-
return function search_roles_with_user_count(
|
|
3716
|
-
return
|
|
3743
|
+
return function search_roles_with_user_count(_x1193, _x1194, _x1195) {
|
|
3744
|
+
return _ref351.apply(this, arguments);
|
|
3717
3745
|
};
|
|
3718
3746
|
}();
|
|
3719
3747
|
export var role = function () {
|
|
3720
|
-
var
|
|
3748
|
+
var _ref352 = _asyncToGenerator(function* (sdk, role_id, options) {
|
|
3721
3749
|
role_id = encodeParam(role_id);
|
|
3722
3750
|
return sdk.get("/roles/".concat(role_id), null, null, options);
|
|
3723
3751
|
});
|
|
3724
|
-
return function role(
|
|
3725
|
-
return
|
|
3752
|
+
return function role(_x1196, _x1197, _x1198) {
|
|
3753
|
+
return _ref352.apply(this, arguments);
|
|
3726
3754
|
};
|
|
3727
3755
|
}();
|
|
3728
3756
|
export var update_role = function () {
|
|
3729
|
-
var
|
|
3757
|
+
var _ref353 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
3730
3758
|
role_id = encodeParam(role_id);
|
|
3731
3759
|
return sdk.patch("/roles/".concat(role_id), null, body, options);
|
|
3732
3760
|
});
|
|
3733
|
-
return function update_role(
|
|
3734
|
-
return
|
|
3761
|
+
return function update_role(_x1199, _x1200, _x1201, _x1202) {
|
|
3762
|
+
return _ref353.apply(this, arguments);
|
|
3735
3763
|
};
|
|
3736
3764
|
}();
|
|
3737
3765
|
export var delete_role = function () {
|
|
3738
|
-
var
|
|
3766
|
+
var _ref354 = _asyncToGenerator(function* (sdk, role_id, options) {
|
|
3739
3767
|
role_id = encodeParam(role_id);
|
|
3740
3768
|
return sdk.delete("/roles/".concat(role_id), null, null, options);
|
|
3741
3769
|
});
|
|
3742
|
-
return function delete_role(
|
|
3743
|
-
return
|
|
3770
|
+
return function delete_role(_x1203, _x1204, _x1205) {
|
|
3771
|
+
return _ref354.apply(this, arguments);
|
|
3744
3772
|
};
|
|
3745
3773
|
}();
|
|
3746
3774
|
export var role_groups = function () {
|
|
3747
|
-
var
|
|
3775
|
+
var _ref355 = _asyncToGenerator(function* (sdk, role_id, fields, options) {
|
|
3748
3776
|
role_id = encodeParam(role_id);
|
|
3749
3777
|
return sdk.get("/roles/".concat(role_id, "/groups"), {
|
|
3750
3778
|
fields
|
|
3751
3779
|
}, null, options);
|
|
3752
3780
|
});
|
|
3753
|
-
return function role_groups(
|
|
3754
|
-
return
|
|
3781
|
+
return function role_groups(_x1206, _x1207, _x1208, _x1209) {
|
|
3782
|
+
return _ref355.apply(this, arguments);
|
|
3755
3783
|
};
|
|
3756
3784
|
}();
|
|
3757
3785
|
export var set_role_groups = function () {
|
|
3758
|
-
var
|
|
3786
|
+
var _ref356 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
3759
3787
|
role_id = encodeParam(role_id);
|
|
3760
3788
|
return sdk.put("/roles/".concat(role_id, "/groups"), null, body, options);
|
|
3761
3789
|
});
|
|
3762
|
-
return function set_role_groups(
|
|
3763
|
-
return
|
|
3790
|
+
return function set_role_groups(_x1210, _x1211, _x1212, _x1213) {
|
|
3791
|
+
return _ref356.apply(this, arguments);
|
|
3764
3792
|
};
|
|
3765
3793
|
}();
|
|
3766
3794
|
export var role_users = function () {
|
|
3767
|
-
var
|
|
3795
|
+
var _ref357 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3768
3796
|
request.role_id = encodeParam(request.role_id);
|
|
3769
3797
|
return sdk.get("/roles/".concat(request.role_id, "/users"), {
|
|
3770
3798
|
fields: request.fields,
|
|
3771
3799
|
direct_association_only: request.direct_association_only
|
|
3772
3800
|
}, null, options);
|
|
3773
3801
|
});
|
|
3774
|
-
return function role_users(
|
|
3775
|
-
return
|
|
3802
|
+
return function role_users(_x1214, _x1215, _x1216) {
|
|
3803
|
+
return _ref357.apply(this, arguments);
|
|
3776
3804
|
};
|
|
3777
3805
|
}();
|
|
3778
3806
|
export var set_role_users = function () {
|
|
3779
|
-
var
|
|
3807
|
+
var _ref358 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
3780
3808
|
role_id = encodeParam(role_id);
|
|
3781
3809
|
return sdk.put("/roles/".concat(role_id, "/users"), null, body, options);
|
|
3782
3810
|
});
|
|
3783
|
-
return function set_role_users(
|
|
3784
|
-
return
|
|
3811
|
+
return function set_role_users(_x1217, _x1218, _x1219, _x1220) {
|
|
3812
|
+
return _ref358.apply(this, arguments);
|
|
3785
3813
|
};
|
|
3786
3814
|
}();
|
|
3787
3815
|
export var scheduled_plans_for_space = function () {
|
|
3788
|
-
var
|
|
3816
|
+
var _ref359 = _asyncToGenerator(function* (sdk, space_id, fields, options) {
|
|
3789
3817
|
space_id = encodeParam(space_id);
|
|
3790
3818
|
return sdk.get("/scheduled_plans/space/".concat(space_id), {
|
|
3791
3819
|
fields
|
|
3792
3820
|
}, null, options);
|
|
3793
3821
|
});
|
|
3794
|
-
return function scheduled_plans_for_space(
|
|
3795
|
-
return
|
|
3822
|
+
return function scheduled_plans_for_space(_x1221, _x1222, _x1223, _x1224) {
|
|
3823
|
+
return _ref359.apply(this, arguments);
|
|
3796
3824
|
};
|
|
3797
3825
|
}();
|
|
3798
3826
|
export var scheduled_plan = function () {
|
|
3799
|
-
var
|
|
3827
|
+
var _ref360 = _asyncToGenerator(function* (sdk, scheduled_plan_id, fields, options) {
|
|
3800
3828
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
3801
3829
|
return sdk.get("/scheduled_plans/".concat(scheduled_plan_id), {
|
|
3802
3830
|
fields
|
|
3803
3831
|
}, null, options);
|
|
3804
3832
|
});
|
|
3805
|
-
return function scheduled_plan(
|
|
3806
|
-
return
|
|
3833
|
+
return function scheduled_plan(_x1225, _x1226, _x1227, _x1228) {
|
|
3834
|
+
return _ref360.apply(this, arguments);
|
|
3807
3835
|
};
|
|
3808
3836
|
}();
|
|
3809
3837
|
export var update_scheduled_plan = function () {
|
|
3810
|
-
var
|
|
3838
|
+
var _ref361 = _asyncToGenerator(function* (sdk, scheduled_plan_id, body, options) {
|
|
3811
3839
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
3812
3840
|
return sdk.patch("/scheduled_plans/".concat(scheduled_plan_id), null, body, options);
|
|
3813
3841
|
});
|
|
3814
|
-
return function update_scheduled_plan(
|
|
3815
|
-
return
|
|
3842
|
+
return function update_scheduled_plan(_x1229, _x1230, _x1231, _x1232) {
|
|
3843
|
+
return _ref361.apply(this, arguments);
|
|
3816
3844
|
};
|
|
3817
3845
|
}();
|
|
3818
3846
|
export var delete_scheduled_plan = function () {
|
|
3819
|
-
var
|
|
3847
|
+
var _ref362 = _asyncToGenerator(function* (sdk, scheduled_plan_id, options) {
|
|
3820
3848
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
3821
3849
|
return sdk.delete("/scheduled_plans/".concat(scheduled_plan_id), null, null, options);
|
|
3822
3850
|
});
|
|
3823
|
-
return function delete_scheduled_plan(
|
|
3824
|
-
return
|
|
3851
|
+
return function delete_scheduled_plan(_x1233, _x1234, _x1235) {
|
|
3852
|
+
return _ref362.apply(this, arguments);
|
|
3825
3853
|
};
|
|
3826
3854
|
}();
|
|
3827
3855
|
export var all_scheduled_plans = function () {
|
|
3828
|
-
var
|
|
3856
|
+
var _ref363 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3829
3857
|
return sdk.get('/scheduled_plans', {
|
|
3830
3858
|
user_id: request.user_id,
|
|
3831
3859
|
fields: request.fields,
|
|
3832
3860
|
all_users: request.all_users
|
|
3833
3861
|
}, null, options);
|
|
3834
3862
|
});
|
|
3835
|
-
return function all_scheduled_plans(
|
|
3836
|
-
return
|
|
3863
|
+
return function all_scheduled_plans(_x1236, _x1237, _x1238) {
|
|
3864
|
+
return _ref363.apply(this, arguments);
|
|
3837
3865
|
};
|
|
3838
3866
|
}();
|
|
3839
3867
|
export var create_scheduled_plan = function () {
|
|
3840
|
-
var
|
|
3868
|
+
var _ref364 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3841
3869
|
return sdk.post('/scheduled_plans', null, body, options);
|
|
3842
3870
|
});
|
|
3843
|
-
return function create_scheduled_plan(
|
|
3844
|
-
return
|
|
3871
|
+
return function create_scheduled_plan(_x1239, _x1240, _x1241) {
|
|
3872
|
+
return _ref364.apply(this, arguments);
|
|
3845
3873
|
};
|
|
3846
3874
|
}();
|
|
3847
3875
|
export var scheduled_plan_run_once = function () {
|
|
3848
|
-
var
|
|
3876
|
+
var _ref365 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3849
3877
|
return sdk.post('/scheduled_plans/run_once', null, body, options);
|
|
3850
3878
|
});
|
|
3851
|
-
return function scheduled_plan_run_once(
|
|
3852
|
-
return
|
|
3879
|
+
return function scheduled_plan_run_once(_x1242, _x1243, _x1244) {
|
|
3880
|
+
return _ref365.apply(this, arguments);
|
|
3853
3881
|
};
|
|
3854
3882
|
}();
|
|
3855
3883
|
export var search_scheduled_plans = function () {
|
|
3856
|
-
var
|
|
3884
|
+
var _ref366 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3857
3885
|
return sdk.get('/scheduled_plans/search', {
|
|
3858
3886
|
user_id: request.user_id,
|
|
3859
3887
|
fields: request.fields,
|
|
@@ -3873,12 +3901,12 @@ export var search_scheduled_plans = function () {
|
|
|
3873
3901
|
filter_or: request.filter_or
|
|
3874
3902
|
}, null, options);
|
|
3875
3903
|
});
|
|
3876
|
-
return function search_scheduled_plans(
|
|
3877
|
-
return
|
|
3904
|
+
return function search_scheduled_plans(_x1245, _x1246, _x1247) {
|
|
3905
|
+
return _ref366.apply(this, arguments);
|
|
3878
3906
|
};
|
|
3879
3907
|
}();
|
|
3880
3908
|
export var scheduled_plans_for_look = function () {
|
|
3881
|
-
var
|
|
3909
|
+
var _ref367 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3882
3910
|
request.look_id = encodeParam(request.look_id);
|
|
3883
3911
|
return sdk.get("/scheduled_plans/look/".concat(request.look_id), {
|
|
3884
3912
|
user_id: request.user_id,
|
|
@@ -3886,12 +3914,12 @@ export var scheduled_plans_for_look = function () {
|
|
|
3886
3914
|
all_users: request.all_users
|
|
3887
3915
|
}, null, options);
|
|
3888
3916
|
});
|
|
3889
|
-
return function scheduled_plans_for_look(
|
|
3890
|
-
return
|
|
3917
|
+
return function scheduled_plans_for_look(_x1248, _x1249, _x1250) {
|
|
3918
|
+
return _ref367.apply(this, arguments);
|
|
3891
3919
|
};
|
|
3892
3920
|
}();
|
|
3893
3921
|
export var scheduled_plans_for_dashboard = function () {
|
|
3894
|
-
var
|
|
3922
|
+
var _ref368 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3895
3923
|
request.dashboard_id = encodeParam(request.dashboard_id);
|
|
3896
3924
|
return sdk.get("/scheduled_plans/dashboard/".concat(request.dashboard_id), {
|
|
3897
3925
|
user_id: request.user_id,
|
|
@@ -3899,12 +3927,12 @@ export var scheduled_plans_for_dashboard = function () {
|
|
|
3899
3927
|
fields: request.fields
|
|
3900
3928
|
}, null, options);
|
|
3901
3929
|
});
|
|
3902
|
-
return function scheduled_plans_for_dashboard(
|
|
3903
|
-
return
|
|
3930
|
+
return function scheduled_plans_for_dashboard(_x1251, _x1252, _x1253) {
|
|
3931
|
+
return _ref368.apply(this, arguments);
|
|
3904
3932
|
};
|
|
3905
3933
|
}();
|
|
3906
3934
|
export var scheduled_plans_for_lookml_dashboard = function () {
|
|
3907
|
-
var
|
|
3935
|
+
var _ref369 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3908
3936
|
request.lookml_dashboard_id = encodeParam(request.lookml_dashboard_id);
|
|
3909
3937
|
return sdk.get("/scheduled_plans/lookml_dashboard/".concat(request.lookml_dashboard_id), {
|
|
3910
3938
|
user_id: request.user_id,
|
|
@@ -3912,82 +3940,82 @@ export var scheduled_plans_for_lookml_dashboard = function () {
|
|
|
3912
3940
|
all_users: request.all_users
|
|
3913
3941
|
}, null, options);
|
|
3914
3942
|
});
|
|
3915
|
-
return function scheduled_plans_for_lookml_dashboard(
|
|
3916
|
-
return
|
|
3943
|
+
return function scheduled_plans_for_lookml_dashboard(_x1254, _x1255, _x1256) {
|
|
3944
|
+
return _ref369.apply(this, arguments);
|
|
3917
3945
|
};
|
|
3918
3946
|
}();
|
|
3919
3947
|
export var scheduled_plan_run_once_by_id = function () {
|
|
3920
|
-
var
|
|
3948
|
+
var _ref370 = _asyncToGenerator(function* (sdk, scheduled_plan_id, body, options) {
|
|
3921
3949
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
3922
3950
|
return sdk.post("/scheduled_plans/".concat(scheduled_plan_id, "/run_once"), null, body, options);
|
|
3923
3951
|
});
|
|
3924
|
-
return function scheduled_plan_run_once_by_id(
|
|
3925
|
-
return
|
|
3952
|
+
return function scheduled_plan_run_once_by_id(_x1257, _x1258, _x1259, _x1260) {
|
|
3953
|
+
return _ref370.apply(this, arguments);
|
|
3926
3954
|
};
|
|
3927
3955
|
}();
|
|
3928
3956
|
export var session = function () {
|
|
3929
|
-
var
|
|
3957
|
+
var _ref371 = _asyncToGenerator(function* (sdk, options) {
|
|
3930
3958
|
return sdk.get('/session', null, null, options);
|
|
3931
3959
|
});
|
|
3932
|
-
return function session(
|
|
3933
|
-
return
|
|
3960
|
+
return function session(_x1261, _x1262) {
|
|
3961
|
+
return _ref371.apply(this, arguments);
|
|
3934
3962
|
};
|
|
3935
3963
|
}();
|
|
3936
3964
|
export var update_session = function () {
|
|
3937
|
-
var
|
|
3965
|
+
var _ref372 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3938
3966
|
return sdk.patch('/session', null, body, options);
|
|
3939
3967
|
});
|
|
3940
|
-
return function update_session(
|
|
3941
|
-
return
|
|
3968
|
+
return function update_session(_x1263, _x1264, _x1265) {
|
|
3969
|
+
return _ref372.apply(this, arguments);
|
|
3942
3970
|
};
|
|
3943
3971
|
}();
|
|
3944
3972
|
export var sql_interface_metadata = function () {
|
|
3945
|
-
var
|
|
3973
|
+
var _ref373 = _asyncToGenerator(function* (sdk, avatica_request, options) {
|
|
3946
3974
|
return sdk.get('/sql_interface_queries/metadata', {
|
|
3947
3975
|
avatica_request
|
|
3948
3976
|
}, null, options);
|
|
3949
3977
|
});
|
|
3950
|
-
return function sql_interface_metadata(
|
|
3951
|
-
return
|
|
3978
|
+
return function sql_interface_metadata(_x1266, _x1267, _x1268) {
|
|
3979
|
+
return _ref373.apply(this, arguments);
|
|
3952
3980
|
};
|
|
3953
3981
|
}();
|
|
3954
3982
|
export var run_sql_interface_query = function () {
|
|
3955
|
-
var
|
|
3983
|
+
var _ref374 = _asyncToGenerator(function* (sdk, query_id, result_format, options) {
|
|
3956
3984
|
result_format = encodeParam(result_format);
|
|
3957
3985
|
return sdk.get("/sql_interface_queries/".concat(query_id, "/run/").concat(result_format), null, null, options);
|
|
3958
3986
|
});
|
|
3959
|
-
return function run_sql_interface_query(
|
|
3960
|
-
return
|
|
3987
|
+
return function run_sql_interface_query(_x1269, _x1270, _x1271, _x1272) {
|
|
3988
|
+
return _ref374.apply(this, arguments);
|
|
3961
3989
|
};
|
|
3962
3990
|
}();
|
|
3963
3991
|
export var create_sql_interface_query = function () {
|
|
3964
|
-
var
|
|
3992
|
+
var _ref375 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3965
3993
|
return sdk.post('/sql_interface_queries', null, body, options);
|
|
3966
3994
|
});
|
|
3967
|
-
return function create_sql_interface_query(
|
|
3968
|
-
return
|
|
3995
|
+
return function create_sql_interface_query(_x1273, _x1274, _x1275) {
|
|
3996
|
+
return _ref375.apply(this, arguments);
|
|
3969
3997
|
};
|
|
3970
3998
|
}();
|
|
3971
3999
|
export var all_themes = function () {
|
|
3972
|
-
var
|
|
4000
|
+
var _ref376 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3973
4001
|
return sdk.get('/themes', {
|
|
3974
4002
|
fields
|
|
3975
4003
|
}, null, options);
|
|
3976
4004
|
});
|
|
3977
|
-
return function all_themes(
|
|
3978
|
-
return
|
|
4005
|
+
return function all_themes(_x1276, _x1277, _x1278) {
|
|
4006
|
+
return _ref376.apply(this, arguments);
|
|
3979
4007
|
};
|
|
3980
4008
|
}();
|
|
3981
4009
|
export var create_theme = function () {
|
|
3982
|
-
var
|
|
4010
|
+
var _ref377 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3983
4011
|
return sdk.post('/themes', null, body, options);
|
|
3984
4012
|
});
|
|
3985
|
-
return function create_theme(
|
|
3986
|
-
return
|
|
4013
|
+
return function create_theme(_x1279, _x1280, _x1281) {
|
|
4014
|
+
return _ref377.apply(this, arguments);
|
|
3987
4015
|
};
|
|
3988
4016
|
}();
|
|
3989
4017
|
export var search_themes = function () {
|
|
3990
|
-
var
|
|
4018
|
+
var _ref378 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3991
4019
|
return sdk.get('/themes/search', {
|
|
3992
4020
|
id: request.id,
|
|
3993
4021
|
name: request.name,
|
|
@@ -4000,92 +4028,92 @@ export var search_themes = function () {
|
|
|
4000
4028
|
filter_or: request.filter_or
|
|
4001
4029
|
}, null, options);
|
|
4002
4030
|
});
|
|
4003
|
-
return function search_themes(
|
|
4004
|
-
return
|
|
4031
|
+
return function search_themes(_x1282, _x1283, _x1284) {
|
|
4032
|
+
return _ref378.apply(this, arguments);
|
|
4005
4033
|
};
|
|
4006
4034
|
}();
|
|
4007
4035
|
export var default_theme = function () {
|
|
4008
|
-
var
|
|
4036
|
+
var _ref379 = _asyncToGenerator(function* (sdk, ts, options) {
|
|
4009
4037
|
return sdk.get('/themes/default', {
|
|
4010
4038
|
ts
|
|
4011
4039
|
}, null, options);
|
|
4012
4040
|
});
|
|
4013
|
-
return function default_theme(
|
|
4014
|
-
return
|
|
4041
|
+
return function default_theme(_x1285, _x1286, _x1287) {
|
|
4042
|
+
return _ref379.apply(this, arguments);
|
|
4015
4043
|
};
|
|
4016
4044
|
}();
|
|
4017
4045
|
export var set_default_theme = function () {
|
|
4018
|
-
var
|
|
4046
|
+
var _ref380 = _asyncToGenerator(function* (sdk, name, options) {
|
|
4019
4047
|
return sdk.put('/themes/default', {
|
|
4020
4048
|
name
|
|
4021
4049
|
}, null, options);
|
|
4022
4050
|
});
|
|
4023
|
-
return function set_default_theme(
|
|
4024
|
-
return
|
|
4051
|
+
return function set_default_theme(_x1288, _x1289, _x1290) {
|
|
4052
|
+
return _ref380.apply(this, arguments);
|
|
4025
4053
|
};
|
|
4026
4054
|
}();
|
|
4027
4055
|
export var active_themes = function () {
|
|
4028
|
-
var
|
|
4056
|
+
var _ref381 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4029
4057
|
return sdk.get('/themes/active', {
|
|
4030
4058
|
name: request.name,
|
|
4031
4059
|
ts: request.ts,
|
|
4032
4060
|
fields: request.fields
|
|
4033
4061
|
}, null, options);
|
|
4034
4062
|
});
|
|
4035
|
-
return function active_themes(
|
|
4036
|
-
return
|
|
4063
|
+
return function active_themes(_x1291, _x1292, _x1293) {
|
|
4064
|
+
return _ref381.apply(this, arguments);
|
|
4037
4065
|
};
|
|
4038
4066
|
}();
|
|
4039
4067
|
export var theme_or_default = function () {
|
|
4040
|
-
var
|
|
4068
|
+
var _ref382 = _asyncToGenerator(function* (sdk, name, ts, options) {
|
|
4041
4069
|
return sdk.get('/themes/theme_or_default', {
|
|
4042
4070
|
name,
|
|
4043
4071
|
ts
|
|
4044
4072
|
}, null, options);
|
|
4045
4073
|
});
|
|
4046
|
-
return function theme_or_default(
|
|
4047
|
-
return
|
|
4074
|
+
return function theme_or_default(_x1294, _x1295, _x1296, _x1297) {
|
|
4075
|
+
return _ref382.apply(this, arguments);
|
|
4048
4076
|
};
|
|
4049
4077
|
}();
|
|
4050
4078
|
export var validate_theme = function () {
|
|
4051
|
-
var
|
|
4079
|
+
var _ref383 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4052
4080
|
return sdk.post('/themes/validate', null, body, options);
|
|
4053
4081
|
});
|
|
4054
|
-
return function validate_theme(
|
|
4055
|
-
return
|
|
4082
|
+
return function validate_theme(_x1298, _x1299, _x1300) {
|
|
4083
|
+
return _ref383.apply(this, arguments);
|
|
4056
4084
|
};
|
|
4057
4085
|
}();
|
|
4058
4086
|
export var theme = function () {
|
|
4059
|
-
var
|
|
4087
|
+
var _ref384 = _asyncToGenerator(function* (sdk, theme_id, fields, options) {
|
|
4060
4088
|
theme_id = encodeParam(theme_id);
|
|
4061
4089
|
return sdk.get("/themes/".concat(theme_id), {
|
|
4062
4090
|
fields
|
|
4063
4091
|
}, null, options);
|
|
4064
4092
|
});
|
|
4065
|
-
return function theme(
|
|
4066
|
-
return
|
|
4093
|
+
return function theme(_x1301, _x1302, _x1303, _x1304) {
|
|
4094
|
+
return _ref384.apply(this, arguments);
|
|
4067
4095
|
};
|
|
4068
4096
|
}();
|
|
4069
4097
|
export var update_theme = function () {
|
|
4070
|
-
var
|
|
4098
|
+
var _ref385 = _asyncToGenerator(function* (sdk, theme_id, body, options) {
|
|
4071
4099
|
theme_id = encodeParam(theme_id);
|
|
4072
4100
|
return sdk.patch("/themes/".concat(theme_id), null, body, options);
|
|
4073
4101
|
});
|
|
4074
|
-
return function update_theme(
|
|
4075
|
-
return
|
|
4102
|
+
return function update_theme(_x1305, _x1306, _x1307, _x1308) {
|
|
4103
|
+
return _ref385.apply(this, arguments);
|
|
4076
4104
|
};
|
|
4077
4105
|
}();
|
|
4078
4106
|
export var delete_theme = function () {
|
|
4079
|
-
var
|
|
4107
|
+
var _ref386 = _asyncToGenerator(function* (sdk, theme_id, options) {
|
|
4080
4108
|
theme_id = encodeParam(theme_id);
|
|
4081
4109
|
return sdk.delete("/themes/".concat(theme_id), null, null, options);
|
|
4082
4110
|
});
|
|
4083
|
-
return function delete_theme(
|
|
4084
|
-
return
|
|
4111
|
+
return function delete_theme(_x1309, _x1310, _x1311) {
|
|
4112
|
+
return _ref386.apply(this, arguments);
|
|
4085
4113
|
};
|
|
4086
4114
|
}();
|
|
4087
4115
|
export var search_credentials_email = function () {
|
|
4088
|
-
var
|
|
4116
|
+
var _ref387 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4089
4117
|
return sdk.get('/credentials_email/search', {
|
|
4090
4118
|
fields: request.fields,
|
|
4091
4119
|
limit: request.limit,
|
|
@@ -4097,22 +4125,22 @@ export var search_credentials_email = function () {
|
|
|
4097
4125
|
filter_or: request.filter_or
|
|
4098
4126
|
}, null, options);
|
|
4099
4127
|
});
|
|
4100
|
-
return function search_credentials_email(
|
|
4101
|
-
return
|
|
4128
|
+
return function search_credentials_email(_x1312, _x1313, _x1314) {
|
|
4129
|
+
return _ref387.apply(this, arguments);
|
|
4102
4130
|
};
|
|
4103
4131
|
}();
|
|
4104
4132
|
export var me = function () {
|
|
4105
|
-
var
|
|
4133
|
+
var _ref388 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
4106
4134
|
return sdk.get('/user', {
|
|
4107
4135
|
fields
|
|
4108
4136
|
}, null, options);
|
|
4109
4137
|
});
|
|
4110
|
-
return function me(
|
|
4111
|
-
return
|
|
4138
|
+
return function me(_x1315, _x1316, _x1317) {
|
|
4139
|
+
return _ref388.apply(this, arguments);
|
|
4112
4140
|
};
|
|
4113
4141
|
}();
|
|
4114
4142
|
export var all_users = function () {
|
|
4115
|
-
var
|
|
4143
|
+
var _ref389 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4116
4144
|
return sdk.get('/users', {
|
|
4117
4145
|
fields: request.fields,
|
|
4118
4146
|
page: request.page,
|
|
@@ -4123,22 +4151,22 @@ export var all_users = function () {
|
|
|
4123
4151
|
ids: request.ids
|
|
4124
4152
|
}, null, options);
|
|
4125
4153
|
});
|
|
4126
|
-
return function all_users(
|
|
4127
|
-
return
|
|
4154
|
+
return function all_users(_x1318, _x1319, _x1320) {
|
|
4155
|
+
return _ref389.apply(this, arguments);
|
|
4128
4156
|
};
|
|
4129
4157
|
}();
|
|
4130
4158
|
export var create_user = function () {
|
|
4131
|
-
var
|
|
4159
|
+
var _ref390 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
4132
4160
|
return sdk.post('/users', {
|
|
4133
4161
|
fields
|
|
4134
4162
|
}, body, options);
|
|
4135
4163
|
});
|
|
4136
|
-
return function create_user(
|
|
4137
|
-
return
|
|
4164
|
+
return function create_user(_x1321, _x1322, _x1323, _x1324) {
|
|
4165
|
+
return _ref390.apply(this, arguments);
|
|
4138
4166
|
};
|
|
4139
4167
|
}();
|
|
4140
4168
|
export var search_users = function () {
|
|
4141
|
-
var
|
|
4169
|
+
var _ref391 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4142
4170
|
return sdk.get('/users/search', {
|
|
4143
4171
|
fields: request.fields,
|
|
4144
4172
|
page: request.page,
|
|
@@ -4156,15 +4184,16 @@ export var search_users = function () {
|
|
|
4156
4184
|
filter_or: request.filter_or,
|
|
4157
4185
|
content_metadata_id: request.content_metadata_id,
|
|
4158
4186
|
group_id: request.group_id,
|
|
4159
|
-
can_manage_api3_creds: request.can_manage_api3_creds
|
|
4187
|
+
can_manage_api3_creds: request.can_manage_api3_creds,
|
|
4188
|
+
is_service_account: request.is_service_account
|
|
4160
4189
|
}, null, options);
|
|
4161
4190
|
});
|
|
4162
|
-
return function search_users(
|
|
4163
|
-
return
|
|
4191
|
+
return function search_users(_x1325, _x1326, _x1327) {
|
|
4192
|
+
return _ref391.apply(this, arguments);
|
|
4164
4193
|
};
|
|
4165
4194
|
}();
|
|
4166
4195
|
export var search_users_names = function () {
|
|
4167
|
-
var
|
|
4196
|
+
var _ref392 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4168
4197
|
request.pattern = encodeParam(request.pattern);
|
|
4169
4198
|
return sdk.get("/users/search/names/".concat(request.pattern), {
|
|
4170
4199
|
fields: request.fields,
|
|
@@ -4181,385 +4210,385 @@ export var search_users_names = function () {
|
|
|
4181
4210
|
is_disabled: request.is_disabled
|
|
4182
4211
|
}, null, options);
|
|
4183
4212
|
});
|
|
4184
|
-
return function search_users_names(
|
|
4185
|
-
return
|
|
4213
|
+
return function search_users_names(_x1328, _x1329, _x1330) {
|
|
4214
|
+
return _ref392.apply(this, arguments);
|
|
4186
4215
|
};
|
|
4187
4216
|
}();
|
|
4188
4217
|
export var user = function () {
|
|
4189
|
-
var
|
|
4218
|
+
var _ref393 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4190
4219
|
user_id = encodeParam(user_id);
|
|
4191
4220
|
return sdk.get("/users/".concat(user_id), {
|
|
4192
4221
|
fields
|
|
4193
4222
|
}, null, options);
|
|
4194
4223
|
});
|
|
4195
|
-
return function user(
|
|
4196
|
-
return
|
|
4224
|
+
return function user(_x1331, _x1332, _x1333, _x1334) {
|
|
4225
|
+
return _ref393.apply(this, arguments);
|
|
4197
4226
|
};
|
|
4198
4227
|
}();
|
|
4199
4228
|
export var update_user = function () {
|
|
4200
|
-
var
|
|
4229
|
+
var _ref394 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4201
4230
|
user_id = encodeParam(user_id);
|
|
4202
4231
|
return sdk.patch("/users/".concat(user_id), {
|
|
4203
4232
|
fields
|
|
4204
4233
|
}, body, options);
|
|
4205
4234
|
});
|
|
4206
|
-
return function update_user(
|
|
4207
|
-
return
|
|
4235
|
+
return function update_user(_x1335, _x1336, _x1337, _x1338, _x1339) {
|
|
4236
|
+
return _ref394.apply(this, arguments);
|
|
4208
4237
|
};
|
|
4209
4238
|
}();
|
|
4210
4239
|
export var delete_user = function () {
|
|
4211
|
-
var
|
|
4240
|
+
var _ref395 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4212
4241
|
user_id = encodeParam(user_id);
|
|
4213
4242
|
return sdk.delete("/users/".concat(user_id), null, null, options);
|
|
4214
4243
|
});
|
|
4215
|
-
return function delete_user(
|
|
4216
|
-
return
|
|
4244
|
+
return function delete_user(_x1340, _x1341, _x1342) {
|
|
4245
|
+
return _ref395.apply(this, arguments);
|
|
4217
4246
|
};
|
|
4218
4247
|
}();
|
|
4219
4248
|
export var user_for_credential = function () {
|
|
4220
|
-
var
|
|
4249
|
+
var _ref396 = _asyncToGenerator(function* (sdk, credential_type, credential_id, fields, options) {
|
|
4221
4250
|
credential_type = encodeParam(credential_type);
|
|
4222
4251
|
credential_id = encodeParam(credential_id);
|
|
4223
4252
|
return sdk.get("/users/credential/".concat(credential_type, "/").concat(credential_id), {
|
|
4224
4253
|
fields
|
|
4225
4254
|
}, null, options);
|
|
4226
4255
|
});
|
|
4227
|
-
return function user_for_credential(
|
|
4228
|
-
return
|
|
4256
|
+
return function user_for_credential(_x1343, _x1344, _x1345, _x1346, _x1347) {
|
|
4257
|
+
return _ref396.apply(this, arguments);
|
|
4229
4258
|
};
|
|
4230
4259
|
}();
|
|
4231
4260
|
export var user_credentials_email = function () {
|
|
4232
|
-
var
|
|
4261
|
+
var _ref397 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4233
4262
|
user_id = encodeParam(user_id);
|
|
4234
4263
|
return sdk.get("/users/".concat(user_id, "/credentials_email"), {
|
|
4235
4264
|
fields
|
|
4236
4265
|
}, null, options);
|
|
4237
4266
|
});
|
|
4238
|
-
return function user_credentials_email(
|
|
4239
|
-
return
|
|
4267
|
+
return function user_credentials_email(_x1348, _x1349, _x1350, _x1351) {
|
|
4268
|
+
return _ref397.apply(this, arguments);
|
|
4240
4269
|
};
|
|
4241
4270
|
}();
|
|
4242
4271
|
export var create_user_credentials_email = function () {
|
|
4243
|
-
var
|
|
4272
|
+
var _ref398 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4244
4273
|
user_id = encodeParam(user_id);
|
|
4245
4274
|
return sdk.post("/users/".concat(user_id, "/credentials_email"), {
|
|
4246
4275
|
fields
|
|
4247
4276
|
}, body, options);
|
|
4248
4277
|
});
|
|
4249
|
-
return function create_user_credentials_email(
|
|
4250
|
-
return
|
|
4278
|
+
return function create_user_credentials_email(_x1352, _x1353, _x1354, _x1355, _x1356) {
|
|
4279
|
+
return _ref398.apply(this, arguments);
|
|
4251
4280
|
};
|
|
4252
4281
|
}();
|
|
4253
4282
|
export var update_user_credentials_email = function () {
|
|
4254
|
-
var
|
|
4283
|
+
var _ref399 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4255
4284
|
user_id = encodeParam(user_id);
|
|
4256
4285
|
return sdk.patch("/users/".concat(user_id, "/credentials_email"), {
|
|
4257
4286
|
fields
|
|
4258
4287
|
}, body, options);
|
|
4259
4288
|
});
|
|
4260
|
-
return function update_user_credentials_email(
|
|
4261
|
-
return
|
|
4289
|
+
return function update_user_credentials_email(_x1357, _x1358, _x1359, _x1360, _x1361) {
|
|
4290
|
+
return _ref399.apply(this, arguments);
|
|
4262
4291
|
};
|
|
4263
4292
|
}();
|
|
4264
4293
|
export var delete_user_credentials_email = function () {
|
|
4265
|
-
var
|
|
4294
|
+
var _ref400 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4266
4295
|
user_id = encodeParam(user_id);
|
|
4267
4296
|
return sdk.delete("/users/".concat(user_id, "/credentials_email"), null, null, options);
|
|
4268
4297
|
});
|
|
4269
|
-
return function delete_user_credentials_email(
|
|
4270
|
-
return
|
|
4298
|
+
return function delete_user_credentials_email(_x1362, _x1363, _x1364) {
|
|
4299
|
+
return _ref400.apply(this, arguments);
|
|
4271
4300
|
};
|
|
4272
4301
|
}();
|
|
4273
4302
|
export var user_credentials_totp = function () {
|
|
4274
|
-
var
|
|
4303
|
+
var _ref401 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4275
4304
|
user_id = encodeParam(user_id);
|
|
4276
4305
|
return sdk.get("/users/".concat(user_id, "/credentials_totp"), {
|
|
4277
4306
|
fields
|
|
4278
4307
|
}, null, options);
|
|
4279
4308
|
});
|
|
4280
|
-
return function user_credentials_totp(
|
|
4281
|
-
return
|
|
4309
|
+
return function user_credentials_totp(_x1365, _x1366, _x1367, _x1368) {
|
|
4310
|
+
return _ref401.apply(this, arguments);
|
|
4282
4311
|
};
|
|
4283
4312
|
}();
|
|
4284
4313
|
export var create_user_credentials_totp = function () {
|
|
4285
|
-
var
|
|
4314
|
+
var _ref402 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4286
4315
|
user_id = encodeParam(user_id);
|
|
4287
4316
|
return sdk.post("/users/".concat(user_id, "/credentials_totp"), {
|
|
4288
4317
|
fields
|
|
4289
4318
|
}, body, options);
|
|
4290
4319
|
});
|
|
4291
|
-
return function create_user_credentials_totp(
|
|
4292
|
-
return
|
|
4320
|
+
return function create_user_credentials_totp(_x1369, _x1370, _x1371, _x1372, _x1373) {
|
|
4321
|
+
return _ref402.apply(this, arguments);
|
|
4293
4322
|
};
|
|
4294
4323
|
}();
|
|
4295
4324
|
export var delete_user_credentials_totp = function () {
|
|
4296
|
-
var
|
|
4325
|
+
var _ref403 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4297
4326
|
user_id = encodeParam(user_id);
|
|
4298
4327
|
return sdk.delete("/users/".concat(user_id, "/credentials_totp"), null, null, options);
|
|
4299
4328
|
});
|
|
4300
|
-
return function delete_user_credentials_totp(
|
|
4301
|
-
return
|
|
4329
|
+
return function delete_user_credentials_totp(_x1374, _x1375, _x1376) {
|
|
4330
|
+
return _ref403.apply(this, arguments);
|
|
4302
4331
|
};
|
|
4303
4332
|
}();
|
|
4304
4333
|
export var user_credentials_ldap = function () {
|
|
4305
|
-
var
|
|
4334
|
+
var _ref404 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4306
4335
|
user_id = encodeParam(user_id);
|
|
4307
4336
|
return sdk.get("/users/".concat(user_id, "/credentials_ldap"), {
|
|
4308
4337
|
fields
|
|
4309
4338
|
}, null, options);
|
|
4310
4339
|
});
|
|
4311
|
-
return function user_credentials_ldap(
|
|
4312
|
-
return
|
|
4340
|
+
return function user_credentials_ldap(_x1377, _x1378, _x1379, _x1380) {
|
|
4341
|
+
return _ref404.apply(this, arguments);
|
|
4313
4342
|
};
|
|
4314
4343
|
}();
|
|
4315
4344
|
export var delete_user_credentials_ldap = function () {
|
|
4316
|
-
var
|
|
4345
|
+
var _ref405 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4317
4346
|
user_id = encodeParam(user_id);
|
|
4318
4347
|
return sdk.delete("/users/".concat(user_id, "/credentials_ldap"), null, null, options);
|
|
4319
4348
|
});
|
|
4320
|
-
return function delete_user_credentials_ldap(
|
|
4321
|
-
return
|
|
4349
|
+
return function delete_user_credentials_ldap(_x1381, _x1382, _x1383) {
|
|
4350
|
+
return _ref405.apply(this, arguments);
|
|
4322
4351
|
};
|
|
4323
4352
|
}();
|
|
4324
4353
|
export var user_credentials_google = function () {
|
|
4325
|
-
var
|
|
4354
|
+
var _ref406 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4326
4355
|
user_id = encodeParam(user_id);
|
|
4327
4356
|
return sdk.get("/users/".concat(user_id, "/credentials_google"), {
|
|
4328
4357
|
fields
|
|
4329
4358
|
}, null, options);
|
|
4330
4359
|
});
|
|
4331
|
-
return function user_credentials_google(
|
|
4332
|
-
return
|
|
4360
|
+
return function user_credentials_google(_x1384, _x1385, _x1386, _x1387) {
|
|
4361
|
+
return _ref406.apply(this, arguments);
|
|
4333
4362
|
};
|
|
4334
4363
|
}();
|
|
4335
4364
|
export var delete_user_credentials_google = function () {
|
|
4336
|
-
var
|
|
4365
|
+
var _ref407 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4337
4366
|
user_id = encodeParam(user_id);
|
|
4338
4367
|
return sdk.delete("/users/".concat(user_id, "/credentials_google"), null, null, options);
|
|
4339
4368
|
});
|
|
4340
|
-
return function delete_user_credentials_google(
|
|
4341
|
-
return
|
|
4369
|
+
return function delete_user_credentials_google(_x1388, _x1389, _x1390) {
|
|
4370
|
+
return _ref407.apply(this, arguments);
|
|
4342
4371
|
};
|
|
4343
4372
|
}();
|
|
4344
4373
|
export var user_credentials_saml = function () {
|
|
4345
|
-
var
|
|
4374
|
+
var _ref408 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4346
4375
|
user_id = encodeParam(user_id);
|
|
4347
4376
|
return sdk.get("/users/".concat(user_id, "/credentials_saml"), {
|
|
4348
4377
|
fields
|
|
4349
4378
|
}, null, options);
|
|
4350
4379
|
});
|
|
4351
|
-
return function user_credentials_saml(
|
|
4352
|
-
return
|
|
4380
|
+
return function user_credentials_saml(_x1391, _x1392, _x1393, _x1394) {
|
|
4381
|
+
return _ref408.apply(this, arguments);
|
|
4353
4382
|
};
|
|
4354
4383
|
}();
|
|
4355
4384
|
export var delete_user_credentials_saml = function () {
|
|
4356
|
-
var
|
|
4385
|
+
var _ref409 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4357
4386
|
user_id = encodeParam(user_id);
|
|
4358
4387
|
return sdk.delete("/users/".concat(user_id, "/credentials_saml"), null, null, options);
|
|
4359
4388
|
});
|
|
4360
|
-
return function delete_user_credentials_saml(
|
|
4361
|
-
return
|
|
4389
|
+
return function delete_user_credentials_saml(_x1395, _x1396, _x1397) {
|
|
4390
|
+
return _ref409.apply(this, arguments);
|
|
4362
4391
|
};
|
|
4363
4392
|
}();
|
|
4364
4393
|
export var user_credentials_oidc = function () {
|
|
4365
|
-
var
|
|
4394
|
+
var _ref410 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4366
4395
|
user_id = encodeParam(user_id);
|
|
4367
4396
|
return sdk.get("/users/".concat(user_id, "/credentials_oidc"), {
|
|
4368
4397
|
fields
|
|
4369
4398
|
}, null, options);
|
|
4370
4399
|
});
|
|
4371
|
-
return function user_credentials_oidc(
|
|
4372
|
-
return
|
|
4400
|
+
return function user_credentials_oidc(_x1398, _x1399, _x1400, _x1401) {
|
|
4401
|
+
return _ref410.apply(this, arguments);
|
|
4373
4402
|
};
|
|
4374
4403
|
}();
|
|
4375
4404
|
export var delete_user_credentials_oidc = function () {
|
|
4376
|
-
var
|
|
4405
|
+
var _ref411 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4377
4406
|
user_id = encodeParam(user_id);
|
|
4378
4407
|
return sdk.delete("/users/".concat(user_id, "/credentials_oidc"), null, null, options);
|
|
4379
4408
|
});
|
|
4380
|
-
return function delete_user_credentials_oidc(
|
|
4381
|
-
return
|
|
4409
|
+
return function delete_user_credentials_oidc(_x1402, _x1403, _x1404) {
|
|
4410
|
+
return _ref411.apply(this, arguments);
|
|
4382
4411
|
};
|
|
4383
4412
|
}();
|
|
4384
4413
|
export var user_credentials_api3 = function () {
|
|
4385
|
-
var
|
|
4414
|
+
var _ref412 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, fields, options) {
|
|
4386
4415
|
user_id = encodeParam(user_id);
|
|
4387
4416
|
credentials_api3_id = encodeParam(credentials_api3_id);
|
|
4388
4417
|
return sdk.get("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), {
|
|
4389
4418
|
fields
|
|
4390
4419
|
}, null, options);
|
|
4391
4420
|
});
|
|
4392
|
-
return function user_credentials_api3(
|
|
4393
|
-
return
|
|
4421
|
+
return function user_credentials_api3(_x1405, _x1406, _x1407, _x1408, _x1409) {
|
|
4422
|
+
return _ref412.apply(this, arguments);
|
|
4394
4423
|
};
|
|
4395
4424
|
}();
|
|
4396
4425
|
export var update_user_credentials_api3 = function () {
|
|
4397
|
-
var
|
|
4426
|
+
var _ref413 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, body, fields, options) {
|
|
4398
4427
|
user_id = encodeParam(user_id);
|
|
4399
4428
|
credentials_api3_id = encodeParam(credentials_api3_id);
|
|
4400
4429
|
return sdk.patch("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), {
|
|
4401
4430
|
fields
|
|
4402
4431
|
}, body, options);
|
|
4403
4432
|
});
|
|
4404
|
-
return function update_user_credentials_api3(
|
|
4405
|
-
return
|
|
4433
|
+
return function update_user_credentials_api3(_x1410, _x1411, _x1412, _x1413, _x1414, _x1415) {
|
|
4434
|
+
return _ref413.apply(this, arguments);
|
|
4406
4435
|
};
|
|
4407
4436
|
}();
|
|
4408
4437
|
export var delete_user_credentials_api3 = function () {
|
|
4409
|
-
var
|
|
4438
|
+
var _ref414 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, options) {
|
|
4410
4439
|
user_id = encodeParam(user_id);
|
|
4411
4440
|
credentials_api3_id = encodeParam(credentials_api3_id);
|
|
4412
4441
|
return sdk.delete("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), null, null, options);
|
|
4413
4442
|
});
|
|
4414
|
-
return function delete_user_credentials_api3(
|
|
4415
|
-
return
|
|
4443
|
+
return function delete_user_credentials_api3(_x1416, _x1417, _x1418, _x1419) {
|
|
4444
|
+
return _ref414.apply(this, arguments);
|
|
4416
4445
|
};
|
|
4417
4446
|
}();
|
|
4418
4447
|
export var all_user_credentials_api3s = function () {
|
|
4419
|
-
var
|
|
4448
|
+
var _ref415 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4420
4449
|
user_id = encodeParam(user_id);
|
|
4421
4450
|
return sdk.get("/users/".concat(user_id, "/credentials_api3"), {
|
|
4422
4451
|
fields
|
|
4423
4452
|
}, null, options);
|
|
4424
4453
|
});
|
|
4425
|
-
return function all_user_credentials_api3s(
|
|
4426
|
-
return
|
|
4454
|
+
return function all_user_credentials_api3s(_x1420, _x1421, _x1422, _x1423) {
|
|
4455
|
+
return _ref415.apply(this, arguments);
|
|
4427
4456
|
};
|
|
4428
4457
|
}();
|
|
4429
4458
|
export var create_user_credentials_api3 = function () {
|
|
4430
|
-
var
|
|
4459
|
+
var _ref416 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4431
4460
|
user_id = encodeParam(user_id);
|
|
4432
4461
|
return sdk.post("/users/".concat(user_id, "/credentials_api3"), {
|
|
4433
4462
|
fields
|
|
4434
4463
|
}, null, options);
|
|
4435
4464
|
});
|
|
4436
|
-
return function create_user_credentials_api3(
|
|
4437
|
-
return
|
|
4465
|
+
return function create_user_credentials_api3(_x1424, _x1425, _x1426, _x1427) {
|
|
4466
|
+
return _ref416.apply(this, arguments);
|
|
4438
4467
|
};
|
|
4439
4468
|
}();
|
|
4440
4469
|
export var user_credentials_embed = function () {
|
|
4441
|
-
var
|
|
4470
|
+
var _ref417 = _asyncToGenerator(function* (sdk, user_id, credentials_embed_id, fields, options) {
|
|
4442
4471
|
user_id = encodeParam(user_id);
|
|
4443
4472
|
credentials_embed_id = encodeParam(credentials_embed_id);
|
|
4444
4473
|
return sdk.get("/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), {
|
|
4445
4474
|
fields
|
|
4446
4475
|
}, null, options);
|
|
4447
4476
|
});
|
|
4448
|
-
return function user_credentials_embed(
|
|
4449
|
-
return
|
|
4477
|
+
return function user_credentials_embed(_x1428, _x1429, _x1430, _x1431, _x1432) {
|
|
4478
|
+
return _ref417.apply(this, arguments);
|
|
4450
4479
|
};
|
|
4451
4480
|
}();
|
|
4452
4481
|
export var delete_user_credentials_embed = function () {
|
|
4453
|
-
var
|
|
4482
|
+
var _ref418 = _asyncToGenerator(function* (sdk, user_id, credentials_embed_id, options) {
|
|
4454
4483
|
user_id = encodeParam(user_id);
|
|
4455
4484
|
credentials_embed_id = encodeParam(credentials_embed_id);
|
|
4456
4485
|
return sdk.delete("/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), null, null, options);
|
|
4457
4486
|
});
|
|
4458
|
-
return function delete_user_credentials_embed(
|
|
4459
|
-
return
|
|
4487
|
+
return function delete_user_credentials_embed(_x1433, _x1434, _x1435, _x1436) {
|
|
4488
|
+
return _ref418.apply(this, arguments);
|
|
4460
4489
|
};
|
|
4461
4490
|
}();
|
|
4462
4491
|
export var all_user_credentials_embeds = function () {
|
|
4463
|
-
var
|
|
4492
|
+
var _ref419 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4464
4493
|
user_id = encodeParam(user_id);
|
|
4465
4494
|
return sdk.get("/users/".concat(user_id, "/credentials_embed"), {
|
|
4466
4495
|
fields
|
|
4467
4496
|
}, null, options);
|
|
4468
4497
|
});
|
|
4469
|
-
return function all_user_credentials_embeds(
|
|
4470
|
-
return
|
|
4498
|
+
return function all_user_credentials_embeds(_x1437, _x1438, _x1439, _x1440) {
|
|
4499
|
+
return _ref419.apply(this, arguments);
|
|
4471
4500
|
};
|
|
4472
4501
|
}();
|
|
4473
4502
|
export var user_credentials_looker_openid = function () {
|
|
4474
|
-
var
|
|
4503
|
+
var _ref420 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4475
4504
|
user_id = encodeParam(user_id);
|
|
4476
4505
|
return sdk.get("/users/".concat(user_id, "/credentials_looker_openid"), {
|
|
4477
4506
|
fields
|
|
4478
4507
|
}, null, options);
|
|
4479
4508
|
});
|
|
4480
|
-
return function user_credentials_looker_openid(
|
|
4481
|
-
return
|
|
4509
|
+
return function user_credentials_looker_openid(_x1441, _x1442, _x1443, _x1444) {
|
|
4510
|
+
return _ref420.apply(this, arguments);
|
|
4482
4511
|
};
|
|
4483
4512
|
}();
|
|
4484
4513
|
export var delete_user_credentials_looker_openid = function () {
|
|
4485
|
-
var
|
|
4514
|
+
var _ref421 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4486
4515
|
user_id = encodeParam(user_id);
|
|
4487
4516
|
return sdk.delete("/users/".concat(user_id, "/credentials_looker_openid"), null, null, options);
|
|
4488
4517
|
});
|
|
4489
|
-
return function delete_user_credentials_looker_openid(
|
|
4490
|
-
return
|
|
4518
|
+
return function delete_user_credentials_looker_openid(_x1445, _x1446, _x1447) {
|
|
4519
|
+
return _ref421.apply(this, arguments);
|
|
4491
4520
|
};
|
|
4492
4521
|
}();
|
|
4493
4522
|
export var user_session = function () {
|
|
4494
|
-
var
|
|
4523
|
+
var _ref422 = _asyncToGenerator(function* (sdk, user_id, session_id, fields, options) {
|
|
4495
4524
|
user_id = encodeParam(user_id);
|
|
4496
4525
|
session_id = encodeParam(session_id);
|
|
4497
4526
|
return sdk.get("/users/".concat(user_id, "/sessions/").concat(session_id), {
|
|
4498
4527
|
fields
|
|
4499
4528
|
}, null, options);
|
|
4500
4529
|
});
|
|
4501
|
-
return function user_session(
|
|
4502
|
-
return
|
|
4530
|
+
return function user_session(_x1448, _x1449, _x1450, _x1451, _x1452) {
|
|
4531
|
+
return _ref422.apply(this, arguments);
|
|
4503
4532
|
};
|
|
4504
4533
|
}();
|
|
4505
4534
|
export var delete_user_session = function () {
|
|
4506
|
-
var
|
|
4535
|
+
var _ref423 = _asyncToGenerator(function* (sdk, user_id, session_id, options) {
|
|
4507
4536
|
user_id = encodeParam(user_id);
|
|
4508
4537
|
session_id = encodeParam(session_id);
|
|
4509
4538
|
return sdk.delete("/users/".concat(user_id, "/sessions/").concat(session_id), null, null, options);
|
|
4510
4539
|
});
|
|
4511
|
-
return function delete_user_session(
|
|
4512
|
-
return
|
|
4540
|
+
return function delete_user_session(_x1453, _x1454, _x1455, _x1456) {
|
|
4541
|
+
return _ref423.apply(this, arguments);
|
|
4513
4542
|
};
|
|
4514
4543
|
}();
|
|
4515
4544
|
export var all_user_sessions = function () {
|
|
4516
|
-
var
|
|
4545
|
+
var _ref424 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4517
4546
|
user_id = encodeParam(user_id);
|
|
4518
4547
|
return sdk.get("/users/".concat(user_id, "/sessions"), {
|
|
4519
4548
|
fields
|
|
4520
4549
|
}, null, options);
|
|
4521
4550
|
});
|
|
4522
|
-
return function all_user_sessions(
|
|
4523
|
-
return
|
|
4551
|
+
return function all_user_sessions(_x1457, _x1458, _x1459, _x1460) {
|
|
4552
|
+
return _ref424.apply(this, arguments);
|
|
4524
4553
|
};
|
|
4525
4554
|
}();
|
|
4526
4555
|
export var create_user_credentials_email_password_reset = function () {
|
|
4527
|
-
var
|
|
4556
|
+
var _ref425 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4528
4557
|
request.user_id = encodeParam(request.user_id);
|
|
4529
4558
|
return sdk.post("/users/".concat(request.user_id, "/credentials_email/password_reset"), {
|
|
4530
4559
|
expires: request.expires,
|
|
4531
4560
|
fields: request.fields
|
|
4532
4561
|
}, null, options);
|
|
4533
4562
|
});
|
|
4534
|
-
return function create_user_credentials_email_password_reset(
|
|
4535
|
-
return
|
|
4563
|
+
return function create_user_credentials_email_password_reset(_x1461, _x1462, _x1463) {
|
|
4564
|
+
return _ref425.apply(this, arguments);
|
|
4536
4565
|
};
|
|
4537
4566
|
}();
|
|
4538
4567
|
export var user_roles = function () {
|
|
4539
|
-
var
|
|
4568
|
+
var _ref426 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4540
4569
|
request.user_id = encodeParam(request.user_id);
|
|
4541
4570
|
return sdk.get("/users/".concat(request.user_id, "/roles"), {
|
|
4542
4571
|
fields: request.fields,
|
|
4543
4572
|
direct_association_only: request.direct_association_only
|
|
4544
4573
|
}, null, options);
|
|
4545
4574
|
});
|
|
4546
|
-
return function user_roles(
|
|
4547
|
-
return
|
|
4575
|
+
return function user_roles(_x1464, _x1465, _x1466) {
|
|
4576
|
+
return _ref426.apply(this, arguments);
|
|
4548
4577
|
};
|
|
4549
4578
|
}();
|
|
4550
4579
|
export var set_user_roles = function () {
|
|
4551
|
-
var
|
|
4580
|
+
var _ref427 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4552
4581
|
user_id = encodeParam(user_id);
|
|
4553
4582
|
return sdk.put("/users/".concat(user_id, "/roles"), {
|
|
4554
4583
|
fields
|
|
4555
4584
|
}, body, options);
|
|
4556
4585
|
});
|
|
4557
|
-
return function set_user_roles(
|
|
4558
|
-
return
|
|
4586
|
+
return function set_user_roles(_x1467, _x1468, _x1469, _x1470, _x1471) {
|
|
4587
|
+
return _ref427.apply(this, arguments);
|
|
4559
4588
|
};
|
|
4560
4589
|
}();
|
|
4561
4590
|
export var user_attribute_user_values = function () {
|
|
4562
|
-
var
|
|
4591
|
+
var _ref428 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4563
4592
|
request.user_id = encodeParam(request.user_id);
|
|
4564
4593
|
return sdk.get("/users/".concat(request.user_id, "/attribute_values"), {
|
|
4565
4594
|
fields: request.fields,
|
|
@@ -4568,147 +4597,168 @@ export var user_attribute_user_values = function () {
|
|
|
4568
4597
|
include_unset: request.include_unset
|
|
4569
4598
|
}, null, options);
|
|
4570
4599
|
});
|
|
4571
|
-
return function user_attribute_user_values(
|
|
4572
|
-
return
|
|
4600
|
+
return function user_attribute_user_values(_x1472, _x1473, _x1474) {
|
|
4601
|
+
return _ref428.apply(this, arguments);
|
|
4573
4602
|
};
|
|
4574
4603
|
}();
|
|
4575
4604
|
export var set_user_attribute_user_value = function () {
|
|
4576
|
-
var
|
|
4605
|
+
var _ref429 = _asyncToGenerator(function* (sdk, user_id, user_attribute_id, body, options) {
|
|
4577
4606
|
user_id = encodeParam(user_id);
|
|
4578
4607
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4579
4608
|
return sdk.patch("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
|
|
4580
4609
|
});
|
|
4581
|
-
return function set_user_attribute_user_value(
|
|
4582
|
-
return
|
|
4610
|
+
return function set_user_attribute_user_value(_x1475, _x1476, _x1477, _x1478, _x1479) {
|
|
4611
|
+
return _ref429.apply(this, arguments);
|
|
4583
4612
|
};
|
|
4584
4613
|
}();
|
|
4585
4614
|
export var delete_user_attribute_user_value = function () {
|
|
4586
|
-
var
|
|
4615
|
+
var _ref430 = _asyncToGenerator(function* (sdk, user_id, user_attribute_id, options) {
|
|
4587
4616
|
user_id = encodeParam(user_id);
|
|
4588
4617
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4589
4618
|
return sdk.delete("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
|
|
4590
4619
|
});
|
|
4591
|
-
return function delete_user_attribute_user_value(
|
|
4592
|
-
return
|
|
4620
|
+
return function delete_user_attribute_user_value(_x1480, _x1481, _x1482, _x1483) {
|
|
4621
|
+
return _ref430.apply(this, arguments);
|
|
4593
4622
|
};
|
|
4594
4623
|
}();
|
|
4595
4624
|
export var send_user_credentials_email_password_reset = function () {
|
|
4596
|
-
var
|
|
4625
|
+
var _ref431 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4597
4626
|
user_id = encodeParam(user_id);
|
|
4598
4627
|
return sdk.post("/users/".concat(user_id, "/credentials_email/send_password_reset"), {
|
|
4599
4628
|
fields
|
|
4600
4629
|
}, null, options);
|
|
4601
4630
|
});
|
|
4602
|
-
return function send_user_credentials_email_password_reset(
|
|
4603
|
-
return
|
|
4631
|
+
return function send_user_credentials_email_password_reset(_x1484, _x1485, _x1486, _x1487) {
|
|
4632
|
+
return _ref431.apply(this, arguments);
|
|
4604
4633
|
};
|
|
4605
4634
|
}();
|
|
4606
4635
|
export var wipeout_user_emails = function () {
|
|
4607
|
-
var
|
|
4636
|
+
var _ref432 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4608
4637
|
user_id = encodeParam(user_id);
|
|
4609
4638
|
return sdk.post("/users/".concat(user_id, "/update_emails"), {
|
|
4610
4639
|
fields
|
|
4611
4640
|
}, body, options);
|
|
4612
4641
|
});
|
|
4613
|
-
return function wipeout_user_emails(
|
|
4614
|
-
return
|
|
4642
|
+
return function wipeout_user_emails(_x1488, _x1489, _x1490, _x1491, _x1492) {
|
|
4643
|
+
return _ref432.apply(this, arguments);
|
|
4615
4644
|
};
|
|
4616
4645
|
}();
|
|
4617
4646
|
export var create_embed_user = function () {
|
|
4618
|
-
var
|
|
4647
|
+
var _ref433 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4619
4648
|
return sdk.post('/users/embed_user', null, body, options);
|
|
4620
4649
|
});
|
|
4621
|
-
return function create_embed_user(
|
|
4622
|
-
return
|
|
4650
|
+
return function create_embed_user(_x1493, _x1494, _x1495) {
|
|
4651
|
+
return _ref433.apply(this, arguments);
|
|
4652
|
+
};
|
|
4653
|
+
}();
|
|
4654
|
+
export var create_service_account = function () {
|
|
4655
|
+
var _ref434 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
4656
|
+
return sdk.post('/users/service_accounts', {
|
|
4657
|
+
fields
|
|
4658
|
+
}, body, options);
|
|
4659
|
+
});
|
|
4660
|
+
return function create_service_account(_x1496, _x1497, _x1498, _x1499) {
|
|
4661
|
+
return _ref434.apply(this, arguments);
|
|
4662
|
+
};
|
|
4663
|
+
}();
|
|
4664
|
+
export var update_service_account = function () {
|
|
4665
|
+
var _ref435 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4666
|
+
user_id = encodeParam(user_id);
|
|
4667
|
+
return sdk.patch("/users/service_accounts/".concat(user_id), {
|
|
4668
|
+
fields
|
|
4669
|
+
}, body, options);
|
|
4670
|
+
});
|
|
4671
|
+
return function update_service_account(_x1500, _x1501, _x1502, _x1503, _x1504) {
|
|
4672
|
+
return _ref435.apply(this, arguments);
|
|
4623
4673
|
};
|
|
4624
4674
|
}();
|
|
4625
4675
|
export var all_user_attributes = function () {
|
|
4626
|
-
var
|
|
4676
|
+
var _ref436 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4627
4677
|
return sdk.get('/user_attributes', {
|
|
4628
4678
|
fields: request.fields,
|
|
4629
4679
|
sorts: request.sorts
|
|
4630
4680
|
}, null, options);
|
|
4631
4681
|
});
|
|
4632
|
-
return function all_user_attributes(
|
|
4633
|
-
return
|
|
4682
|
+
return function all_user_attributes(_x1505, _x1506, _x1507) {
|
|
4683
|
+
return _ref436.apply(this, arguments);
|
|
4634
4684
|
};
|
|
4635
4685
|
}();
|
|
4636
4686
|
export var create_user_attribute = function () {
|
|
4637
|
-
var
|
|
4687
|
+
var _ref437 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
4638
4688
|
return sdk.post('/user_attributes', {
|
|
4639
4689
|
fields
|
|
4640
4690
|
}, body, options);
|
|
4641
4691
|
});
|
|
4642
|
-
return function create_user_attribute(
|
|
4643
|
-
return
|
|
4692
|
+
return function create_user_attribute(_x1508, _x1509, _x1510, _x1511) {
|
|
4693
|
+
return _ref437.apply(this, arguments);
|
|
4644
4694
|
};
|
|
4645
4695
|
}();
|
|
4646
4696
|
export var user_attribute = function () {
|
|
4647
|
-
var
|
|
4697
|
+
var _ref438 = _asyncToGenerator(function* (sdk, user_attribute_id, fields, options) {
|
|
4648
4698
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4649
4699
|
return sdk.get("/user_attributes/".concat(user_attribute_id), {
|
|
4650
4700
|
fields
|
|
4651
4701
|
}, null, options);
|
|
4652
4702
|
});
|
|
4653
|
-
return function user_attribute(
|
|
4654
|
-
return
|
|
4703
|
+
return function user_attribute(_x1512, _x1513, _x1514, _x1515) {
|
|
4704
|
+
return _ref438.apply(this, arguments);
|
|
4655
4705
|
};
|
|
4656
4706
|
}();
|
|
4657
4707
|
export var update_user_attribute = function () {
|
|
4658
|
-
var
|
|
4708
|
+
var _ref439 = _asyncToGenerator(function* (sdk, user_attribute_id, body, fields, options) {
|
|
4659
4709
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4660
4710
|
return sdk.patch("/user_attributes/".concat(user_attribute_id), {
|
|
4661
4711
|
fields
|
|
4662
4712
|
}, body, options);
|
|
4663
4713
|
});
|
|
4664
|
-
return function update_user_attribute(
|
|
4665
|
-
return
|
|
4714
|
+
return function update_user_attribute(_x1516, _x1517, _x1518, _x1519, _x1520) {
|
|
4715
|
+
return _ref439.apply(this, arguments);
|
|
4666
4716
|
};
|
|
4667
4717
|
}();
|
|
4668
4718
|
export var delete_user_attribute = function () {
|
|
4669
|
-
var
|
|
4719
|
+
var _ref440 = _asyncToGenerator(function* (sdk, user_attribute_id, options) {
|
|
4670
4720
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4671
4721
|
return sdk.delete("/user_attributes/".concat(user_attribute_id), null, null, options);
|
|
4672
4722
|
});
|
|
4673
|
-
return function delete_user_attribute(
|
|
4674
|
-
return
|
|
4723
|
+
return function delete_user_attribute(_x1521, _x1522, _x1523) {
|
|
4724
|
+
return _ref440.apply(this, arguments);
|
|
4675
4725
|
};
|
|
4676
4726
|
}();
|
|
4677
4727
|
export var all_user_attribute_group_values = function () {
|
|
4678
|
-
var
|
|
4728
|
+
var _ref441 = _asyncToGenerator(function* (sdk, user_attribute_id, fields, options) {
|
|
4679
4729
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4680
4730
|
return sdk.get("/user_attributes/".concat(user_attribute_id, "/group_values"), {
|
|
4681
4731
|
fields
|
|
4682
4732
|
}, null, options);
|
|
4683
4733
|
});
|
|
4684
|
-
return function all_user_attribute_group_values(
|
|
4685
|
-
return
|
|
4734
|
+
return function all_user_attribute_group_values(_x1524, _x1525, _x1526, _x1527) {
|
|
4735
|
+
return _ref441.apply(this, arguments);
|
|
4686
4736
|
};
|
|
4687
4737
|
}();
|
|
4688
4738
|
export var set_user_attribute_group_values = function () {
|
|
4689
|
-
var
|
|
4739
|
+
var _ref442 = _asyncToGenerator(function* (sdk, user_attribute_id, body, options) {
|
|
4690
4740
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4691
4741
|
return sdk.post("/user_attributes/".concat(user_attribute_id, "/group_values"), null, body, options);
|
|
4692
4742
|
});
|
|
4693
|
-
return function set_user_attribute_group_values(
|
|
4694
|
-
return
|
|
4743
|
+
return function set_user_attribute_group_values(_x1528, _x1529, _x1530, _x1531) {
|
|
4744
|
+
return _ref442.apply(this, arguments);
|
|
4695
4745
|
};
|
|
4696
4746
|
}();
|
|
4697
4747
|
export var all_workspaces = function () {
|
|
4698
|
-
var
|
|
4748
|
+
var _ref443 = _asyncToGenerator(function* (sdk, options) {
|
|
4699
4749
|
return sdk.get('/workspaces', null, null, options);
|
|
4700
4750
|
});
|
|
4701
|
-
return function all_workspaces(
|
|
4702
|
-
return
|
|
4751
|
+
return function all_workspaces(_x1532, _x1533) {
|
|
4752
|
+
return _ref443.apply(this, arguments);
|
|
4703
4753
|
};
|
|
4704
4754
|
}();
|
|
4705
4755
|
export var workspace = function () {
|
|
4706
|
-
var
|
|
4756
|
+
var _ref444 = _asyncToGenerator(function* (sdk, workspace_id, options) {
|
|
4707
4757
|
workspace_id = encodeParam(workspace_id);
|
|
4708
4758
|
return sdk.get("/workspaces/".concat(workspace_id), null, null, options);
|
|
4709
4759
|
});
|
|
4710
|
-
return function workspace(
|
|
4711
|
-
return
|
|
4760
|
+
return function workspace(_x1534, _x1535, _x1536) {
|
|
4761
|
+
return _ref444.apply(this, arguments);
|
|
4712
4762
|
};
|
|
4713
4763
|
}();
|
|
4714
4764
|
//# sourceMappingURL=funcs.js.map
|