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