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