@looker/sdk 26.8.0 → 26.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/lib/4.0/funcs.d.ts +17 -3
- package/lib/4.0/funcs.js +994 -859
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +17 -3
- package/lib/4.0/methods.js +677 -570
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +17 -3
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +106 -2
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +15 -1
- package/lib/4.0/streams.js +677 -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 +989 -854
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +677 -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 +677 -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,70 @@ 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);
|
|
3539
|
+
};
|
|
3540
|
+
}();
|
|
3541
|
+
export var create_git_diagnostic_report = function () {
|
|
3542
|
+
var _ref336 = _asyncToGenerator(function* (sdk, project_id, body, options) {
|
|
3543
|
+
project_id = encodeParam(project_id);
|
|
3544
|
+
return sdk.post("/projects/".concat(project_id, "/git_diagnostic_report"), null, body, options);
|
|
3545
|
+
});
|
|
3546
|
+
return function create_git_diagnostic_report(_x1152, _x1153, _x1154, _x1155) {
|
|
3547
|
+
return _ref336.apply(this, arguments);
|
|
3548
|
+
};
|
|
3549
|
+
}();
|
|
3550
|
+
export var get_git_diagnostic_report = function () {
|
|
3551
|
+
var _ref337 = _asyncToGenerator(function* (sdk, project_id, report_id, options) {
|
|
3552
|
+
project_id = encodeParam(project_id);
|
|
3553
|
+
report_id = encodeParam(report_id);
|
|
3554
|
+
return sdk.get("/projects/".concat(project_id, "/git_diagnostic_report/").concat(report_id), null, null, options);
|
|
3555
|
+
});
|
|
3556
|
+
return function get_git_diagnostic_report(_x1156, _x1157, _x1158, _x1159) {
|
|
3557
|
+
return _ref337.apply(this, arguments);
|
|
3558
|
+
};
|
|
3559
|
+
}();
|
|
3560
|
+
export var repair_git_diagnostic_report = function () {
|
|
3561
|
+
var _ref338 = _asyncToGenerator(function* (sdk, project_id, report_id, body, options) {
|
|
3562
|
+
project_id = encodeParam(project_id);
|
|
3563
|
+
report_id = encodeParam(report_id);
|
|
3564
|
+
return sdk.post("/projects/".concat(project_id, "/git_diagnostic_report/").concat(report_id, "/repair"), null, body, options);
|
|
3565
|
+
});
|
|
3566
|
+
return function repair_git_diagnostic_report(_x1160, _x1161, _x1162, _x1163, _x1164) {
|
|
3567
|
+
return _ref338.apply(this, arguments);
|
|
3476
3568
|
};
|
|
3477
3569
|
}();
|
|
3478
3570
|
export var update_repository_credential = function () {
|
|
3479
|
-
var
|
|
3571
|
+
var _ref339 = _asyncToGenerator(function* (sdk, root_project_id, credential_id, body, options) {
|
|
3480
3572
|
root_project_id = encodeParam(root_project_id);
|
|
3481
3573
|
credential_id = encodeParam(credential_id);
|
|
3482
3574
|
return sdk.put("/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, body, options);
|
|
3483
3575
|
});
|
|
3484
|
-
return function update_repository_credential(
|
|
3485
|
-
return
|
|
3576
|
+
return function update_repository_credential(_x1165, _x1166, _x1167, _x1168, _x1169) {
|
|
3577
|
+
return _ref339.apply(this, arguments);
|
|
3486
3578
|
};
|
|
3487
3579
|
}();
|
|
3488
3580
|
export var delete_repository_credential = function () {
|
|
3489
|
-
var
|
|
3581
|
+
var _ref340 = _asyncToGenerator(function* (sdk, root_project_id, credential_id, options) {
|
|
3490
3582
|
root_project_id = encodeParam(root_project_id);
|
|
3491
3583
|
credential_id = encodeParam(credential_id);
|
|
3492
3584
|
return sdk.delete("/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, null, options);
|
|
3493
3585
|
});
|
|
3494
|
-
return function delete_repository_credential(
|
|
3495
|
-
return
|
|
3586
|
+
return function delete_repository_credential(_x1170, _x1171, _x1172, _x1173) {
|
|
3587
|
+
return _ref340.apply(this, arguments);
|
|
3496
3588
|
};
|
|
3497
3589
|
}();
|
|
3498
3590
|
export var get_all_repository_credentials = function () {
|
|
3499
|
-
var
|
|
3591
|
+
var _ref341 = _asyncToGenerator(function* (sdk, root_project_id, options) {
|
|
3500
3592
|
root_project_id = encodeParam(root_project_id);
|
|
3501
3593
|
return sdk.get("/projects/".concat(root_project_id, "/credentials"), null, null, options);
|
|
3502
3594
|
});
|
|
3503
|
-
return function get_all_repository_credentials(
|
|
3504
|
-
return
|
|
3595
|
+
return function get_all_repository_credentials(_x1174, _x1175, _x1176) {
|
|
3596
|
+
return _ref341.apply(this, arguments);
|
|
3505
3597
|
};
|
|
3506
3598
|
}();
|
|
3507
3599
|
export var create_query_task = function () {
|
|
3508
|
-
var
|
|
3600
|
+
var _ref342 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3509
3601
|
return sdk.post('/query_tasks', {
|
|
3510
3602
|
limit: request.limit,
|
|
3511
3603
|
apply_formatting: request.apply_formatting,
|
|
@@ -3520,74 +3612,74 @@ export var create_query_task = function () {
|
|
|
3520
3612
|
fields: request.fields
|
|
3521
3613
|
}, request.body, options);
|
|
3522
3614
|
});
|
|
3523
|
-
return function create_query_task(
|
|
3524
|
-
return
|
|
3615
|
+
return function create_query_task(_x1177, _x1178, _x1179) {
|
|
3616
|
+
return _ref342.apply(this, arguments);
|
|
3525
3617
|
};
|
|
3526
3618
|
}();
|
|
3527
3619
|
export var query_task_multi_results = function () {
|
|
3528
|
-
var
|
|
3620
|
+
var _ref343 = _asyncToGenerator(function* (sdk, query_task_ids, options) {
|
|
3529
3621
|
return sdk.get('/query_tasks/multi_results', {
|
|
3530
3622
|
query_task_ids
|
|
3531
3623
|
}, null, options);
|
|
3532
3624
|
});
|
|
3533
|
-
return function query_task_multi_results(
|
|
3534
|
-
return
|
|
3625
|
+
return function query_task_multi_results(_x1180, _x1181, _x1182) {
|
|
3626
|
+
return _ref343.apply(this, arguments);
|
|
3535
3627
|
};
|
|
3536
3628
|
}();
|
|
3537
3629
|
export var query_task = function () {
|
|
3538
|
-
var
|
|
3630
|
+
var _ref344 = _asyncToGenerator(function* (sdk, query_task_id, fields, options) {
|
|
3539
3631
|
query_task_id = encodeParam(query_task_id);
|
|
3540
3632
|
return sdk.get("/query_tasks/".concat(query_task_id), {
|
|
3541
3633
|
fields
|
|
3542
3634
|
}, null, options);
|
|
3543
3635
|
});
|
|
3544
|
-
return function query_task(
|
|
3545
|
-
return
|
|
3636
|
+
return function query_task(_x1183, _x1184, _x1185, _x1186) {
|
|
3637
|
+
return _ref344.apply(this, arguments);
|
|
3546
3638
|
};
|
|
3547
3639
|
}();
|
|
3548
3640
|
export var query_task_results = function () {
|
|
3549
|
-
var
|
|
3641
|
+
var _ref345 = _asyncToGenerator(function* (sdk, query_task_id, options) {
|
|
3550
3642
|
query_task_id = encodeParam(query_task_id);
|
|
3551
3643
|
return sdk.get("/query_tasks/".concat(query_task_id, "/results"), null, null, options);
|
|
3552
3644
|
});
|
|
3553
|
-
return function query_task_results(
|
|
3554
|
-
return
|
|
3645
|
+
return function query_task_results(_x1187, _x1188, _x1189) {
|
|
3646
|
+
return _ref345.apply(this, arguments);
|
|
3555
3647
|
};
|
|
3556
3648
|
}();
|
|
3557
3649
|
export var query = function () {
|
|
3558
|
-
var
|
|
3650
|
+
var _ref346 = _asyncToGenerator(function* (sdk, query_id, fields, options) {
|
|
3559
3651
|
query_id = encodeParam(query_id);
|
|
3560
3652
|
return sdk.get("/queries/".concat(query_id), {
|
|
3561
3653
|
fields
|
|
3562
3654
|
}, null, options);
|
|
3563
3655
|
});
|
|
3564
|
-
return function query(
|
|
3565
|
-
return
|
|
3656
|
+
return function query(_x1190, _x1191, _x1192, _x1193) {
|
|
3657
|
+
return _ref346.apply(this, arguments);
|
|
3566
3658
|
};
|
|
3567
3659
|
}();
|
|
3568
3660
|
export var query_for_slug = function () {
|
|
3569
|
-
var
|
|
3661
|
+
var _ref347 = _asyncToGenerator(function* (sdk, slug, fields, options) {
|
|
3570
3662
|
slug = encodeParam(slug);
|
|
3571
3663
|
return sdk.get("/queries/slug/".concat(slug), {
|
|
3572
3664
|
fields
|
|
3573
3665
|
}, null, options);
|
|
3574
3666
|
});
|
|
3575
|
-
return function query_for_slug(
|
|
3576
|
-
return
|
|
3667
|
+
return function query_for_slug(_x1194, _x1195, _x1196, _x1197) {
|
|
3668
|
+
return _ref347.apply(this, arguments);
|
|
3577
3669
|
};
|
|
3578
3670
|
}();
|
|
3579
3671
|
export var create_query = function () {
|
|
3580
|
-
var
|
|
3672
|
+
var _ref348 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
3581
3673
|
return sdk.post('/queries', {
|
|
3582
3674
|
fields
|
|
3583
3675
|
}, body, options);
|
|
3584
3676
|
});
|
|
3585
|
-
return function create_query(
|
|
3586
|
-
return
|
|
3677
|
+
return function create_query(_x1198, _x1199, _x1200, _x1201) {
|
|
3678
|
+
return _ref348.apply(this, arguments);
|
|
3587
3679
|
};
|
|
3588
3680
|
}();
|
|
3589
3681
|
export var run_query = function () {
|
|
3590
|
-
var
|
|
3682
|
+
var _ref349 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3591
3683
|
request.query_id = encodeParam(request.query_id);
|
|
3592
3684
|
request.result_format = encodeParam(request.result_format);
|
|
3593
3685
|
return sdk.get("/queries/".concat(request.query_id, "/run/").concat(request.result_format), {
|
|
@@ -3605,12 +3697,12 @@ export var run_query = function () {
|
|
|
3605
3697
|
server_table_calcs: request.server_table_calcs
|
|
3606
3698
|
}, null, options);
|
|
3607
3699
|
});
|
|
3608
|
-
return function run_query(
|
|
3609
|
-
return
|
|
3700
|
+
return function run_query(_x1202, _x1203, _x1204) {
|
|
3701
|
+
return _ref349.apply(this, arguments);
|
|
3610
3702
|
};
|
|
3611
3703
|
}();
|
|
3612
3704
|
export var run_inline_query = function () {
|
|
3613
|
-
var
|
|
3705
|
+
var _ref350 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3614
3706
|
request.result_format = encodeParam(request.result_format);
|
|
3615
3707
|
return sdk.post("/queries/run/".concat(request.result_format), {
|
|
3616
3708
|
limit: request.limit,
|
|
@@ -3627,90 +3719,90 @@ export var run_inline_query = function () {
|
|
|
3627
3719
|
server_table_calcs: request.server_table_calcs
|
|
3628
3720
|
}, request.body, options);
|
|
3629
3721
|
});
|
|
3630
|
-
return function run_inline_query(
|
|
3631
|
-
return
|
|
3722
|
+
return function run_inline_query(_x1205, _x1206, _x1207) {
|
|
3723
|
+
return _ref350.apply(this, arguments);
|
|
3632
3724
|
};
|
|
3633
3725
|
}();
|
|
3634
3726
|
export var run_url_encoded_query = function () {
|
|
3635
|
-
var
|
|
3727
|
+
var _ref351 = _asyncToGenerator(function* (sdk, model_name, view_name, result_format, options) {
|
|
3636
3728
|
model_name = encodeParam(model_name);
|
|
3637
3729
|
view_name = encodeParam(view_name);
|
|
3638
3730
|
result_format = encodeParam(result_format);
|
|
3639
3731
|
return sdk.get("/queries/models/".concat(model_name, "/views/").concat(view_name, "/run/").concat(result_format), null, null, options);
|
|
3640
3732
|
});
|
|
3641
|
-
return function run_url_encoded_query(
|
|
3642
|
-
return
|
|
3733
|
+
return function run_url_encoded_query(_x1208, _x1209, _x1210, _x1211, _x1212) {
|
|
3734
|
+
return _ref351.apply(this, arguments);
|
|
3643
3735
|
};
|
|
3644
3736
|
}();
|
|
3645
3737
|
export var merge_query = function () {
|
|
3646
|
-
var
|
|
3738
|
+
var _ref352 = _asyncToGenerator(function* (sdk, merge_query_id, fields, options) {
|
|
3647
3739
|
merge_query_id = encodeParam(merge_query_id);
|
|
3648
3740
|
return sdk.get("/merge_queries/".concat(merge_query_id), {
|
|
3649
3741
|
fields
|
|
3650
3742
|
}, null, options);
|
|
3651
3743
|
});
|
|
3652
|
-
return function merge_query(
|
|
3653
|
-
return
|
|
3744
|
+
return function merge_query(_x1213, _x1214, _x1215, _x1216) {
|
|
3745
|
+
return _ref352.apply(this, arguments);
|
|
3654
3746
|
};
|
|
3655
3747
|
}();
|
|
3656
3748
|
export var create_merge_query = function () {
|
|
3657
|
-
var
|
|
3749
|
+
var _ref353 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
3658
3750
|
return sdk.post('/merge_queries', {
|
|
3659
3751
|
fields
|
|
3660
3752
|
}, body, options);
|
|
3661
3753
|
});
|
|
3662
|
-
return function create_merge_query(
|
|
3663
|
-
return
|
|
3754
|
+
return function create_merge_query(_x1217, _x1218, _x1219, _x1220) {
|
|
3755
|
+
return _ref353.apply(this, arguments);
|
|
3664
3756
|
};
|
|
3665
3757
|
}();
|
|
3666
3758
|
export var all_running_queries = function () {
|
|
3667
|
-
var
|
|
3759
|
+
var _ref354 = _asyncToGenerator(function* (sdk, options) {
|
|
3668
3760
|
return sdk.get('/running_queries', null, null, options);
|
|
3669
3761
|
});
|
|
3670
|
-
return function all_running_queries(
|
|
3671
|
-
return
|
|
3762
|
+
return function all_running_queries(_x1221, _x1222) {
|
|
3763
|
+
return _ref354.apply(this, arguments);
|
|
3672
3764
|
};
|
|
3673
3765
|
}();
|
|
3674
3766
|
export var kill_query = function () {
|
|
3675
|
-
var
|
|
3767
|
+
var _ref355 = _asyncToGenerator(function* (sdk, query_task_id, options) {
|
|
3676
3768
|
query_task_id = encodeParam(query_task_id);
|
|
3677
3769
|
return sdk.delete("/running_queries/".concat(query_task_id), null, null, options);
|
|
3678
3770
|
});
|
|
3679
|
-
return function kill_query(
|
|
3680
|
-
return
|
|
3771
|
+
return function kill_query(_x1223, _x1224, _x1225) {
|
|
3772
|
+
return _ref355.apply(this, arguments);
|
|
3681
3773
|
};
|
|
3682
3774
|
}();
|
|
3683
3775
|
export var create_sql_query = function () {
|
|
3684
|
-
var
|
|
3776
|
+
var _ref356 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3685
3777
|
return sdk.post('/sql_queries', null, body, options);
|
|
3686
3778
|
});
|
|
3687
|
-
return function create_sql_query(
|
|
3688
|
-
return
|
|
3779
|
+
return function create_sql_query(_x1226, _x1227, _x1228) {
|
|
3780
|
+
return _ref356.apply(this, arguments);
|
|
3689
3781
|
};
|
|
3690
3782
|
}();
|
|
3691
3783
|
export var sql_query = function () {
|
|
3692
|
-
var
|
|
3784
|
+
var _ref357 = _asyncToGenerator(function* (sdk, slug, options) {
|
|
3693
3785
|
slug = encodeParam(slug);
|
|
3694
3786
|
return sdk.get("/sql_queries/".concat(slug), null, null, options);
|
|
3695
3787
|
});
|
|
3696
|
-
return function sql_query(
|
|
3697
|
-
return
|
|
3788
|
+
return function sql_query(_x1229, _x1230, _x1231) {
|
|
3789
|
+
return _ref357.apply(this, arguments);
|
|
3698
3790
|
};
|
|
3699
3791
|
}();
|
|
3700
3792
|
export var run_sql_query = function () {
|
|
3701
|
-
var
|
|
3793
|
+
var _ref358 = _asyncToGenerator(function* (sdk, slug, result_format, download, options) {
|
|
3702
3794
|
slug = encodeParam(slug);
|
|
3703
3795
|
result_format = encodeParam(result_format);
|
|
3704
3796
|
return sdk.post("/sql_queries/".concat(slug, "/run/").concat(result_format), {
|
|
3705
3797
|
download
|
|
3706
3798
|
}, null, options);
|
|
3707
3799
|
});
|
|
3708
|
-
return function run_sql_query(
|
|
3709
|
-
return
|
|
3800
|
+
return function run_sql_query(_x1232, _x1233, _x1234, _x1235, _x1236) {
|
|
3801
|
+
return _ref358.apply(this, arguments);
|
|
3710
3802
|
};
|
|
3711
3803
|
}();
|
|
3712
3804
|
export var create_look_render_task = function () {
|
|
3713
|
-
var
|
|
3805
|
+
var _ref359 = _asyncToGenerator(function* (sdk, look_id, result_format, width, height, fields, options) {
|
|
3714
3806
|
look_id = encodeParam(look_id);
|
|
3715
3807
|
result_format = encodeParam(result_format);
|
|
3716
3808
|
return sdk.post("/render_tasks/looks/".concat(look_id, "/").concat(result_format), {
|
|
@@ -3719,12 +3811,12 @@ export var create_look_render_task = function () {
|
|
|
3719
3811
|
fields
|
|
3720
3812
|
}, null, options);
|
|
3721
3813
|
});
|
|
3722
|
-
return function create_look_render_task(
|
|
3723
|
-
return
|
|
3814
|
+
return function create_look_render_task(_x1237, _x1238, _x1239, _x1240, _x1241, _x1242, _x1243) {
|
|
3815
|
+
return _ref359.apply(this, arguments);
|
|
3724
3816
|
};
|
|
3725
3817
|
}();
|
|
3726
3818
|
export var create_query_render_task = function () {
|
|
3727
|
-
var
|
|
3819
|
+
var _ref360 = _asyncToGenerator(function* (sdk, query_id, result_format, width, height, fields, options) {
|
|
3728
3820
|
query_id = encodeParam(query_id);
|
|
3729
3821
|
result_format = encodeParam(result_format);
|
|
3730
3822
|
return sdk.post("/render_tasks/queries/".concat(query_id, "/").concat(result_format), {
|
|
@@ -3733,12 +3825,12 @@ export var create_query_render_task = function () {
|
|
|
3733
3825
|
fields
|
|
3734
3826
|
}, null, options);
|
|
3735
3827
|
});
|
|
3736
|
-
return function create_query_render_task(
|
|
3737
|
-
return
|
|
3828
|
+
return function create_query_render_task(_x1244, _x1245, _x1246, _x1247, _x1248, _x1249, _x1250) {
|
|
3829
|
+
return _ref360.apply(this, arguments);
|
|
3738
3830
|
};
|
|
3739
3831
|
}();
|
|
3740
3832
|
export var create_dashboard_render_task = function () {
|
|
3741
|
-
var
|
|
3833
|
+
var _ref361 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3742
3834
|
request.dashboard_id = encodeParam(request.dashboard_id);
|
|
3743
3835
|
request.result_format = encodeParam(request.result_format);
|
|
3744
3836
|
return sdk.post("/render_tasks/dashboards/".concat(request.dashboard_id, "/").concat(request.result_format), {
|
|
@@ -3751,32 +3843,32 @@ export var create_dashboard_render_task = function () {
|
|
|
3751
3843
|
theme: request.theme
|
|
3752
3844
|
}, request.body, options);
|
|
3753
3845
|
});
|
|
3754
|
-
return function create_dashboard_render_task(
|
|
3755
|
-
return
|
|
3846
|
+
return function create_dashboard_render_task(_x1251, _x1252, _x1253) {
|
|
3847
|
+
return _ref361.apply(this, arguments);
|
|
3756
3848
|
};
|
|
3757
3849
|
}();
|
|
3758
3850
|
export var render_task = function () {
|
|
3759
|
-
var
|
|
3851
|
+
var _ref362 = _asyncToGenerator(function* (sdk, render_task_id, fields, options) {
|
|
3760
3852
|
render_task_id = encodeParam(render_task_id);
|
|
3761
3853
|
return sdk.get("/render_tasks/".concat(render_task_id), {
|
|
3762
3854
|
fields
|
|
3763
3855
|
}, null, options);
|
|
3764
3856
|
});
|
|
3765
|
-
return function render_task(
|
|
3766
|
-
return
|
|
3857
|
+
return function render_task(_x1254, _x1255, _x1256, _x1257) {
|
|
3858
|
+
return _ref362.apply(this, arguments);
|
|
3767
3859
|
};
|
|
3768
3860
|
}();
|
|
3769
3861
|
export var render_task_results = function () {
|
|
3770
|
-
var
|
|
3862
|
+
var _ref363 = _asyncToGenerator(function* (sdk, render_task_id, options) {
|
|
3771
3863
|
render_task_id = encodeParam(render_task_id);
|
|
3772
3864
|
return sdk.get("/render_tasks/".concat(render_task_id, "/results"), null, null, options);
|
|
3773
3865
|
});
|
|
3774
|
-
return function render_task_results(
|
|
3775
|
-
return
|
|
3866
|
+
return function render_task_results(_x1258, _x1259, _x1260) {
|
|
3867
|
+
return _ref363.apply(this, arguments);
|
|
3776
3868
|
};
|
|
3777
3869
|
}();
|
|
3778
3870
|
export var create_dashboard_element_render_task = function () {
|
|
3779
|
-
var
|
|
3871
|
+
var _ref364 = _asyncToGenerator(function* (sdk, dashboard_element_id, result_format, width, height, fields, options) {
|
|
3780
3872
|
dashboard_element_id = encodeParam(dashboard_element_id);
|
|
3781
3873
|
result_format = encodeParam(result_format);
|
|
3782
3874
|
return sdk.post("/render_tasks/dashboard_elements/".concat(dashboard_element_id, "/").concat(result_format), {
|
|
@@ -3785,12 +3877,12 @@ export var create_dashboard_element_render_task = function () {
|
|
|
3785
3877
|
fields
|
|
3786
3878
|
}, null, options);
|
|
3787
3879
|
});
|
|
3788
|
-
return function create_dashboard_element_render_task(
|
|
3789
|
-
return
|
|
3880
|
+
return function create_dashboard_element_render_task(_x1261, _x1262, _x1263, _x1264, _x1265, _x1266, _x1267) {
|
|
3881
|
+
return _ref364.apply(this, arguments);
|
|
3790
3882
|
};
|
|
3791
3883
|
}();
|
|
3792
3884
|
export var search_reports = function () {
|
|
3793
|
-
var
|
|
3885
|
+
var _ref365 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3794
3886
|
return sdk.get('/reports/search', {
|
|
3795
3887
|
folder_id: request.folder_id,
|
|
3796
3888
|
favorite: request.favorite,
|
|
@@ -3803,12 +3895,12 @@ export var search_reports = function () {
|
|
|
3803
3895
|
next_page_token: request.next_page_token
|
|
3804
3896
|
}, null, options);
|
|
3805
3897
|
});
|
|
3806
|
-
return function search_reports(
|
|
3807
|
-
return
|
|
3898
|
+
return function search_reports(_x1268, _x1269, _x1270) {
|
|
3899
|
+
return _ref365.apply(this, arguments);
|
|
3808
3900
|
};
|
|
3809
3901
|
}();
|
|
3810
3902
|
export var search_model_sets = function () {
|
|
3811
|
-
var
|
|
3903
|
+
var _ref366 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3812
3904
|
return sdk.get('/model_sets/search', {
|
|
3813
3905
|
fields: request.fields,
|
|
3814
3906
|
limit: request.limit,
|
|
@@ -3822,67 +3914,67 @@ export var search_model_sets = function () {
|
|
|
3822
3914
|
models: request.models
|
|
3823
3915
|
}, null, options);
|
|
3824
3916
|
});
|
|
3825
|
-
return function search_model_sets(
|
|
3826
|
-
return
|
|
3917
|
+
return function search_model_sets(_x1271, _x1272, _x1273) {
|
|
3918
|
+
return _ref366.apply(this, arguments);
|
|
3827
3919
|
};
|
|
3828
3920
|
}();
|
|
3829
3921
|
export var model_set = function () {
|
|
3830
|
-
var
|
|
3922
|
+
var _ref367 = _asyncToGenerator(function* (sdk, model_set_id, fields, options) {
|
|
3831
3923
|
model_set_id = encodeParam(model_set_id);
|
|
3832
3924
|
return sdk.get("/model_sets/".concat(model_set_id), {
|
|
3833
3925
|
fields
|
|
3834
3926
|
}, null, options);
|
|
3835
3927
|
});
|
|
3836
|
-
return function model_set(
|
|
3837
|
-
return
|
|
3928
|
+
return function model_set(_x1274, _x1275, _x1276, _x1277) {
|
|
3929
|
+
return _ref367.apply(this, arguments);
|
|
3838
3930
|
};
|
|
3839
3931
|
}();
|
|
3840
3932
|
export var update_model_set = function () {
|
|
3841
|
-
var
|
|
3933
|
+
var _ref368 = _asyncToGenerator(function* (sdk, model_set_id, body, options) {
|
|
3842
3934
|
model_set_id = encodeParam(model_set_id);
|
|
3843
3935
|
return sdk.patch("/model_sets/".concat(model_set_id), null, body, options);
|
|
3844
3936
|
});
|
|
3845
|
-
return function update_model_set(
|
|
3846
|
-
return
|
|
3937
|
+
return function update_model_set(_x1278, _x1279, _x1280, _x1281) {
|
|
3938
|
+
return _ref368.apply(this, arguments);
|
|
3847
3939
|
};
|
|
3848
3940
|
}();
|
|
3849
3941
|
export var delete_model_set = function () {
|
|
3850
|
-
var
|
|
3942
|
+
var _ref369 = _asyncToGenerator(function* (sdk, model_set_id, options) {
|
|
3851
3943
|
model_set_id = encodeParam(model_set_id);
|
|
3852
3944
|
return sdk.delete("/model_sets/".concat(model_set_id), null, null, options);
|
|
3853
3945
|
});
|
|
3854
|
-
return function delete_model_set(
|
|
3855
|
-
return
|
|
3946
|
+
return function delete_model_set(_x1282, _x1283, _x1284) {
|
|
3947
|
+
return _ref369.apply(this, arguments);
|
|
3856
3948
|
};
|
|
3857
3949
|
}();
|
|
3858
3950
|
export var all_model_sets = function () {
|
|
3859
|
-
var
|
|
3951
|
+
var _ref370 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3860
3952
|
return sdk.get('/model_sets', {
|
|
3861
3953
|
fields
|
|
3862
3954
|
}, null, options);
|
|
3863
3955
|
});
|
|
3864
|
-
return function all_model_sets(
|
|
3865
|
-
return
|
|
3956
|
+
return function all_model_sets(_x1285, _x1286, _x1287) {
|
|
3957
|
+
return _ref370.apply(this, arguments);
|
|
3866
3958
|
};
|
|
3867
3959
|
}();
|
|
3868
3960
|
export var create_model_set = function () {
|
|
3869
|
-
var
|
|
3961
|
+
var _ref371 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3870
3962
|
return sdk.post('/model_sets', null, body, options);
|
|
3871
3963
|
});
|
|
3872
|
-
return function create_model_set(
|
|
3873
|
-
return
|
|
3964
|
+
return function create_model_set(_x1288, _x1289, _x1290) {
|
|
3965
|
+
return _ref371.apply(this, arguments);
|
|
3874
3966
|
};
|
|
3875
3967
|
}();
|
|
3876
3968
|
export var all_permissions = function () {
|
|
3877
|
-
var
|
|
3969
|
+
var _ref372 = _asyncToGenerator(function* (sdk, options) {
|
|
3878
3970
|
return sdk.get('/permissions', null, null, options);
|
|
3879
3971
|
});
|
|
3880
|
-
return function all_permissions(
|
|
3881
|
-
return
|
|
3972
|
+
return function all_permissions(_x1291, _x1292) {
|
|
3973
|
+
return _ref372.apply(this, arguments);
|
|
3882
3974
|
};
|
|
3883
3975
|
}();
|
|
3884
3976
|
export var search_permission_sets = function () {
|
|
3885
|
-
var
|
|
3977
|
+
var _ref373 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3886
3978
|
return sdk.get('/permission_sets/search', {
|
|
3887
3979
|
fields: request.fields,
|
|
3888
3980
|
limit: request.limit,
|
|
@@ -3896,79 +3988,79 @@ export var search_permission_sets = function () {
|
|
|
3896
3988
|
permissions: request.permissions
|
|
3897
3989
|
}, null, options);
|
|
3898
3990
|
});
|
|
3899
|
-
return function search_permission_sets(
|
|
3900
|
-
return
|
|
3991
|
+
return function search_permission_sets(_x1293, _x1294, _x1295) {
|
|
3992
|
+
return _ref373.apply(this, arguments);
|
|
3901
3993
|
};
|
|
3902
3994
|
}();
|
|
3903
3995
|
export var permission_set = function () {
|
|
3904
|
-
var
|
|
3996
|
+
var _ref374 = _asyncToGenerator(function* (sdk, permission_set_id, fields, options) {
|
|
3905
3997
|
permission_set_id = encodeParam(permission_set_id);
|
|
3906
3998
|
return sdk.get("/permission_sets/".concat(permission_set_id), {
|
|
3907
3999
|
fields
|
|
3908
4000
|
}, null, options);
|
|
3909
4001
|
});
|
|
3910
|
-
return function permission_set(
|
|
3911
|
-
return
|
|
4002
|
+
return function permission_set(_x1296, _x1297, _x1298, _x1299) {
|
|
4003
|
+
return _ref374.apply(this, arguments);
|
|
3912
4004
|
};
|
|
3913
4005
|
}();
|
|
3914
4006
|
export var update_permission_set = function () {
|
|
3915
|
-
var
|
|
4007
|
+
var _ref375 = _asyncToGenerator(function* (sdk, permission_set_id, body, options) {
|
|
3916
4008
|
permission_set_id = encodeParam(permission_set_id);
|
|
3917
4009
|
return sdk.patch("/permission_sets/".concat(permission_set_id), null, body, options);
|
|
3918
4010
|
});
|
|
3919
|
-
return function update_permission_set(
|
|
3920
|
-
return
|
|
4011
|
+
return function update_permission_set(_x1300, _x1301, _x1302, _x1303) {
|
|
4012
|
+
return _ref375.apply(this, arguments);
|
|
3921
4013
|
};
|
|
3922
4014
|
}();
|
|
3923
4015
|
export var delete_permission_set = function () {
|
|
3924
|
-
var
|
|
4016
|
+
var _ref376 = _asyncToGenerator(function* (sdk, permission_set_id, options) {
|
|
3925
4017
|
permission_set_id = encodeParam(permission_set_id);
|
|
3926
4018
|
return sdk.delete("/permission_sets/".concat(permission_set_id), null, null, options);
|
|
3927
4019
|
});
|
|
3928
|
-
return function delete_permission_set(
|
|
3929
|
-
return
|
|
4020
|
+
return function delete_permission_set(_x1304, _x1305, _x1306) {
|
|
4021
|
+
return _ref376.apply(this, arguments);
|
|
3930
4022
|
};
|
|
3931
4023
|
}();
|
|
3932
4024
|
export var all_permission_sets = function () {
|
|
3933
|
-
var
|
|
4025
|
+
var _ref377 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3934
4026
|
return sdk.get('/permission_sets', {
|
|
3935
4027
|
fields
|
|
3936
4028
|
}, null, options);
|
|
3937
4029
|
});
|
|
3938
|
-
return function all_permission_sets(
|
|
3939
|
-
return
|
|
4030
|
+
return function all_permission_sets(_x1307, _x1308, _x1309) {
|
|
4031
|
+
return _ref377.apply(this, arguments);
|
|
3940
4032
|
};
|
|
3941
4033
|
}();
|
|
3942
4034
|
export var create_permission_set = function () {
|
|
3943
|
-
var
|
|
4035
|
+
var _ref378 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3944
4036
|
return sdk.post('/permission_sets', null, body, options);
|
|
3945
4037
|
});
|
|
3946
|
-
return function create_permission_set(
|
|
3947
|
-
return
|
|
4038
|
+
return function create_permission_set(_x1310, _x1311, _x1312) {
|
|
4039
|
+
return _ref378.apply(this, arguments);
|
|
3948
4040
|
};
|
|
3949
4041
|
}();
|
|
3950
4042
|
export var all_roles = function () {
|
|
3951
|
-
var
|
|
4043
|
+
var _ref379 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3952
4044
|
return sdk.get('/roles', {
|
|
3953
4045
|
fields: request.fields,
|
|
3954
4046
|
ids: request.ids,
|
|
3955
4047
|
get_all_support_roles: request.get_all_support_roles
|
|
3956
4048
|
}, null, options);
|
|
3957
4049
|
});
|
|
3958
|
-
return function all_roles(
|
|
3959
|
-
return
|
|
4050
|
+
return function all_roles(_x1313, _x1314, _x1315) {
|
|
4051
|
+
return _ref379.apply(this, arguments);
|
|
3960
4052
|
};
|
|
3961
4053
|
}();
|
|
3962
4054
|
export var create_role = function () {
|
|
3963
|
-
var
|
|
4055
|
+
var _ref380 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3964
4056
|
return sdk.post('/roles', null, body, options);
|
|
3965
4057
|
});
|
|
3966
|
-
return function create_role(
|
|
3967
|
-
return
|
|
4058
|
+
return function create_role(_x1316, _x1317, _x1318) {
|
|
4059
|
+
return _ref380.apply(this, arguments);
|
|
3968
4060
|
};
|
|
3969
4061
|
}();
|
|
3970
4062
|
export var search_roles = function () {
|
|
3971
|
-
var
|
|
4063
|
+
var _ref381 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3972
4064
|
return sdk.get('/roles/search', {
|
|
3973
4065
|
fields: request.fields,
|
|
3974
4066
|
limit: request.limit,
|
|
@@ -3982,12 +4074,12 @@ export var search_roles = function () {
|
|
|
3982
4074
|
filter_or: request.filter_or
|
|
3983
4075
|
}, null, options);
|
|
3984
4076
|
});
|
|
3985
|
-
return function search_roles(
|
|
3986
|
-
return
|
|
4077
|
+
return function search_roles(_x1319, _x1320, _x1321) {
|
|
4078
|
+
return _ref381.apply(this, arguments);
|
|
3987
4079
|
};
|
|
3988
4080
|
}();
|
|
3989
4081
|
export var search_roles_with_user_count = function () {
|
|
3990
|
-
var
|
|
4082
|
+
var _ref382 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3991
4083
|
return sdk.get('/roles/search/with_user_count', {
|
|
3992
4084
|
fields: request.fields,
|
|
3993
4085
|
limit: request.limit,
|
|
@@ -3999,148 +4091,148 @@ export var search_roles_with_user_count = function () {
|
|
|
3999
4091
|
filter_or: request.filter_or
|
|
4000
4092
|
}, null, options);
|
|
4001
4093
|
});
|
|
4002
|
-
return function search_roles_with_user_count(
|
|
4003
|
-
return
|
|
4094
|
+
return function search_roles_with_user_count(_x1322, _x1323, _x1324) {
|
|
4095
|
+
return _ref382.apply(this, arguments);
|
|
4004
4096
|
};
|
|
4005
4097
|
}();
|
|
4006
4098
|
export var role = function () {
|
|
4007
|
-
var
|
|
4099
|
+
var _ref383 = _asyncToGenerator(function* (sdk, role_id, options) {
|
|
4008
4100
|
role_id = encodeParam(role_id);
|
|
4009
4101
|
return sdk.get("/roles/".concat(role_id), null, null, options);
|
|
4010
4102
|
});
|
|
4011
|
-
return function role(
|
|
4012
|
-
return
|
|
4103
|
+
return function role(_x1325, _x1326, _x1327) {
|
|
4104
|
+
return _ref383.apply(this, arguments);
|
|
4013
4105
|
};
|
|
4014
4106
|
}();
|
|
4015
4107
|
export var update_role = function () {
|
|
4016
|
-
var
|
|
4108
|
+
var _ref384 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
4017
4109
|
role_id = encodeParam(role_id);
|
|
4018
4110
|
return sdk.patch("/roles/".concat(role_id), null, body, options);
|
|
4019
4111
|
});
|
|
4020
|
-
return function update_role(
|
|
4021
|
-
return
|
|
4112
|
+
return function update_role(_x1328, _x1329, _x1330, _x1331) {
|
|
4113
|
+
return _ref384.apply(this, arguments);
|
|
4022
4114
|
};
|
|
4023
4115
|
}();
|
|
4024
4116
|
export var delete_role = function () {
|
|
4025
|
-
var
|
|
4117
|
+
var _ref385 = _asyncToGenerator(function* (sdk, role_id, options) {
|
|
4026
4118
|
role_id = encodeParam(role_id);
|
|
4027
4119
|
return sdk.delete("/roles/".concat(role_id), null, null, options);
|
|
4028
4120
|
});
|
|
4029
|
-
return function delete_role(
|
|
4030
|
-
return
|
|
4121
|
+
return function delete_role(_x1332, _x1333, _x1334) {
|
|
4122
|
+
return _ref385.apply(this, arguments);
|
|
4031
4123
|
};
|
|
4032
4124
|
}();
|
|
4033
4125
|
export var role_groups = function () {
|
|
4034
|
-
var
|
|
4126
|
+
var _ref386 = _asyncToGenerator(function* (sdk, role_id, fields, options) {
|
|
4035
4127
|
role_id = encodeParam(role_id);
|
|
4036
4128
|
return sdk.get("/roles/".concat(role_id, "/groups"), {
|
|
4037
4129
|
fields
|
|
4038
4130
|
}, null, options);
|
|
4039
4131
|
});
|
|
4040
|
-
return function role_groups(
|
|
4041
|
-
return
|
|
4132
|
+
return function role_groups(_x1335, _x1336, _x1337, _x1338) {
|
|
4133
|
+
return _ref386.apply(this, arguments);
|
|
4042
4134
|
};
|
|
4043
4135
|
}();
|
|
4044
4136
|
export var set_role_groups = function () {
|
|
4045
|
-
var
|
|
4137
|
+
var _ref387 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
4046
4138
|
role_id = encodeParam(role_id);
|
|
4047
4139
|
return sdk.put("/roles/".concat(role_id, "/groups"), null, body, options);
|
|
4048
4140
|
});
|
|
4049
|
-
return function set_role_groups(
|
|
4050
|
-
return
|
|
4141
|
+
return function set_role_groups(_x1339, _x1340, _x1341, _x1342) {
|
|
4142
|
+
return _ref387.apply(this, arguments);
|
|
4051
4143
|
};
|
|
4052
4144
|
}();
|
|
4053
4145
|
export var role_users = function () {
|
|
4054
|
-
var
|
|
4146
|
+
var _ref388 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4055
4147
|
request.role_id = encodeParam(request.role_id);
|
|
4056
4148
|
return sdk.get("/roles/".concat(request.role_id, "/users"), {
|
|
4057
4149
|
fields: request.fields,
|
|
4058
4150
|
direct_association_only: request.direct_association_only
|
|
4059
4151
|
}, null, options);
|
|
4060
4152
|
});
|
|
4061
|
-
return function role_users(
|
|
4062
|
-
return
|
|
4153
|
+
return function role_users(_x1343, _x1344, _x1345) {
|
|
4154
|
+
return _ref388.apply(this, arguments);
|
|
4063
4155
|
};
|
|
4064
4156
|
}();
|
|
4065
4157
|
export var set_role_users = function () {
|
|
4066
|
-
var
|
|
4158
|
+
var _ref389 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
4067
4159
|
role_id = encodeParam(role_id);
|
|
4068
4160
|
return sdk.put("/roles/".concat(role_id, "/users"), null, body, options);
|
|
4069
4161
|
});
|
|
4070
|
-
return function set_role_users(
|
|
4071
|
-
return
|
|
4162
|
+
return function set_role_users(_x1346, _x1347, _x1348, _x1349) {
|
|
4163
|
+
return _ref389.apply(this, arguments);
|
|
4072
4164
|
};
|
|
4073
4165
|
}();
|
|
4074
4166
|
export var scheduled_plans_for_space = function () {
|
|
4075
|
-
var
|
|
4167
|
+
var _ref390 = _asyncToGenerator(function* (sdk, space_id, fields, options) {
|
|
4076
4168
|
space_id = encodeParam(space_id);
|
|
4077
4169
|
return sdk.get("/scheduled_plans/space/".concat(space_id), {
|
|
4078
4170
|
fields
|
|
4079
4171
|
}, null, options);
|
|
4080
4172
|
});
|
|
4081
|
-
return function scheduled_plans_for_space(
|
|
4082
|
-
return
|
|
4173
|
+
return function scheduled_plans_for_space(_x1350, _x1351, _x1352, _x1353) {
|
|
4174
|
+
return _ref390.apply(this, arguments);
|
|
4083
4175
|
};
|
|
4084
4176
|
}();
|
|
4085
4177
|
export var scheduled_plan = function () {
|
|
4086
|
-
var
|
|
4178
|
+
var _ref391 = _asyncToGenerator(function* (sdk, scheduled_plan_id, fields, options) {
|
|
4087
4179
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
4088
4180
|
return sdk.get("/scheduled_plans/".concat(scheduled_plan_id), {
|
|
4089
4181
|
fields
|
|
4090
4182
|
}, null, options);
|
|
4091
4183
|
});
|
|
4092
|
-
return function scheduled_plan(
|
|
4093
|
-
return
|
|
4184
|
+
return function scheduled_plan(_x1354, _x1355, _x1356, _x1357) {
|
|
4185
|
+
return _ref391.apply(this, arguments);
|
|
4094
4186
|
};
|
|
4095
4187
|
}();
|
|
4096
4188
|
export var update_scheduled_plan = function () {
|
|
4097
|
-
var
|
|
4189
|
+
var _ref392 = _asyncToGenerator(function* (sdk, scheduled_plan_id, body, options) {
|
|
4098
4190
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
4099
4191
|
return sdk.patch("/scheduled_plans/".concat(scheduled_plan_id), null, body, options);
|
|
4100
4192
|
});
|
|
4101
|
-
return function update_scheduled_plan(
|
|
4102
|
-
return
|
|
4193
|
+
return function update_scheduled_plan(_x1358, _x1359, _x1360, _x1361) {
|
|
4194
|
+
return _ref392.apply(this, arguments);
|
|
4103
4195
|
};
|
|
4104
4196
|
}();
|
|
4105
4197
|
export var delete_scheduled_plan = function () {
|
|
4106
|
-
var
|
|
4198
|
+
var _ref393 = _asyncToGenerator(function* (sdk, scheduled_plan_id, options) {
|
|
4107
4199
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
4108
4200
|
return sdk.delete("/scheduled_plans/".concat(scheduled_plan_id), null, null, options);
|
|
4109
4201
|
});
|
|
4110
|
-
return function delete_scheduled_plan(
|
|
4111
|
-
return
|
|
4202
|
+
return function delete_scheduled_plan(_x1362, _x1363, _x1364) {
|
|
4203
|
+
return _ref393.apply(this, arguments);
|
|
4112
4204
|
};
|
|
4113
4205
|
}();
|
|
4114
4206
|
export var all_scheduled_plans = function () {
|
|
4115
|
-
var
|
|
4207
|
+
var _ref394 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4116
4208
|
return sdk.get('/scheduled_plans', {
|
|
4117
4209
|
user_id: request.user_id,
|
|
4118
4210
|
fields: request.fields,
|
|
4119
4211
|
all_users: request.all_users
|
|
4120
4212
|
}, null, options);
|
|
4121
4213
|
});
|
|
4122
|
-
return function all_scheduled_plans(
|
|
4123
|
-
return
|
|
4214
|
+
return function all_scheduled_plans(_x1365, _x1366, _x1367) {
|
|
4215
|
+
return _ref394.apply(this, arguments);
|
|
4124
4216
|
};
|
|
4125
4217
|
}();
|
|
4126
4218
|
export var create_scheduled_plan = function () {
|
|
4127
|
-
var
|
|
4219
|
+
var _ref395 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4128
4220
|
return sdk.post('/scheduled_plans', null, body, options);
|
|
4129
4221
|
});
|
|
4130
|
-
return function create_scheduled_plan(
|
|
4131
|
-
return
|
|
4222
|
+
return function create_scheduled_plan(_x1368, _x1369, _x1370) {
|
|
4223
|
+
return _ref395.apply(this, arguments);
|
|
4132
4224
|
};
|
|
4133
4225
|
}();
|
|
4134
4226
|
export var scheduled_plan_run_once = function () {
|
|
4135
|
-
var
|
|
4227
|
+
var _ref396 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4136
4228
|
return sdk.post('/scheduled_plans/run_once', null, body, options);
|
|
4137
4229
|
});
|
|
4138
|
-
return function scheduled_plan_run_once(
|
|
4139
|
-
return
|
|
4230
|
+
return function scheduled_plan_run_once(_x1371, _x1372, _x1373) {
|
|
4231
|
+
return _ref396.apply(this, arguments);
|
|
4140
4232
|
};
|
|
4141
4233
|
}();
|
|
4142
4234
|
export var search_scheduled_plans = function () {
|
|
4143
|
-
var
|
|
4235
|
+
var _ref397 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4144
4236
|
return sdk.get('/scheduled_plans/search', {
|
|
4145
4237
|
user_id: request.user_id,
|
|
4146
4238
|
fields: request.fields,
|
|
@@ -4160,12 +4252,12 @@ export var search_scheduled_plans = function () {
|
|
|
4160
4252
|
filter_or: request.filter_or
|
|
4161
4253
|
}, null, options);
|
|
4162
4254
|
});
|
|
4163
|
-
return function search_scheduled_plans(
|
|
4164
|
-
return
|
|
4255
|
+
return function search_scheduled_plans(_x1374, _x1375, _x1376) {
|
|
4256
|
+
return _ref397.apply(this, arguments);
|
|
4165
4257
|
};
|
|
4166
4258
|
}();
|
|
4167
4259
|
export var scheduled_plans_for_look = function () {
|
|
4168
|
-
var
|
|
4260
|
+
var _ref398 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4169
4261
|
request.look_id = encodeParam(request.look_id);
|
|
4170
4262
|
return sdk.get("/scheduled_plans/look/".concat(request.look_id), {
|
|
4171
4263
|
user_id: request.user_id,
|
|
@@ -4173,12 +4265,12 @@ export var scheduled_plans_for_look = function () {
|
|
|
4173
4265
|
all_users: request.all_users
|
|
4174
4266
|
}, null, options);
|
|
4175
4267
|
});
|
|
4176
|
-
return function scheduled_plans_for_look(
|
|
4177
|
-
return
|
|
4268
|
+
return function scheduled_plans_for_look(_x1377, _x1378, _x1379) {
|
|
4269
|
+
return _ref398.apply(this, arguments);
|
|
4178
4270
|
};
|
|
4179
4271
|
}();
|
|
4180
4272
|
export var scheduled_plans_for_dashboard = function () {
|
|
4181
|
-
var
|
|
4273
|
+
var _ref399 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4182
4274
|
request.dashboard_id = encodeParam(request.dashboard_id);
|
|
4183
4275
|
return sdk.get("/scheduled_plans/dashboard/".concat(request.dashboard_id), {
|
|
4184
4276
|
user_id: request.user_id,
|
|
@@ -4186,12 +4278,12 @@ export var scheduled_plans_for_dashboard = function () {
|
|
|
4186
4278
|
fields: request.fields
|
|
4187
4279
|
}, null, options);
|
|
4188
4280
|
});
|
|
4189
|
-
return function scheduled_plans_for_dashboard(
|
|
4190
|
-
return
|
|
4281
|
+
return function scheduled_plans_for_dashboard(_x1380, _x1381, _x1382) {
|
|
4282
|
+
return _ref399.apply(this, arguments);
|
|
4191
4283
|
};
|
|
4192
4284
|
}();
|
|
4193
4285
|
export var scheduled_plans_for_lookml_dashboard = function () {
|
|
4194
|
-
var
|
|
4286
|
+
var _ref400 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4195
4287
|
request.lookml_dashboard_id = encodeParam(request.lookml_dashboard_id);
|
|
4196
4288
|
return sdk.get("/scheduled_plans/lookml_dashboard/".concat(request.lookml_dashboard_id), {
|
|
4197
4289
|
user_id: request.user_id,
|
|
@@ -4199,91 +4291,110 @@ export var scheduled_plans_for_lookml_dashboard = function () {
|
|
|
4199
4291
|
all_users: request.all_users
|
|
4200
4292
|
}, null, options);
|
|
4201
4293
|
});
|
|
4202
|
-
return function scheduled_plans_for_lookml_dashboard(
|
|
4203
|
-
return
|
|
4294
|
+
return function scheduled_plans_for_lookml_dashboard(_x1383, _x1384, _x1385) {
|
|
4295
|
+
return _ref400.apply(this, arguments);
|
|
4204
4296
|
};
|
|
4205
4297
|
}();
|
|
4206
4298
|
export var scheduled_plan_run_once_by_id = function () {
|
|
4207
|
-
var
|
|
4299
|
+
var _ref401 = _asyncToGenerator(function* (sdk, scheduled_plan_id, body, options) {
|
|
4208
4300
|
scheduled_plan_id = encodeParam(scheduled_plan_id);
|
|
4209
4301
|
return sdk.post("/scheduled_plans/".concat(scheduled_plan_id, "/run_once"), null, body, options);
|
|
4210
4302
|
});
|
|
4211
|
-
return function scheduled_plan_run_once_by_id(
|
|
4212
|
-
return
|
|
4303
|
+
return function scheduled_plan_run_once_by_id(_x1386, _x1387, _x1388, _x1389) {
|
|
4304
|
+
return _ref401.apply(this, arguments);
|
|
4305
|
+
};
|
|
4306
|
+
}();
|
|
4307
|
+
export var get_self_service_model_allowed_connections = function () {
|
|
4308
|
+
var _ref402 = _asyncToGenerator(function* (sdk, google_sheets, options) {
|
|
4309
|
+
return sdk.get('/self_service_models/allowed_connections', {
|
|
4310
|
+
google_sheets
|
|
4311
|
+
}, null, options);
|
|
4312
|
+
});
|
|
4313
|
+
return function get_self_service_model_allowed_connections(_x1390, _x1391, _x1392) {
|
|
4314
|
+
return _ref402.apply(this, arguments);
|
|
4315
|
+
};
|
|
4316
|
+
}();
|
|
4317
|
+
export var get_self_service_model_lookml = function () {
|
|
4318
|
+
var _ref403 = _asyncToGenerator(function* (sdk, model_name, options) {
|
|
4319
|
+
model_name = encodeParam(model_name);
|
|
4320
|
+
return sdk.get("/self_service_models/".concat(model_name, "/lookml"), null, null, options);
|
|
4321
|
+
});
|
|
4322
|
+
return function get_self_service_model_lookml(_x1393, _x1394, _x1395) {
|
|
4323
|
+
return _ref403.apply(this, arguments);
|
|
4213
4324
|
};
|
|
4214
4325
|
}();
|
|
4215
4326
|
export var update_self_service_explore_certification = function () {
|
|
4216
|
-
var
|
|
4327
|
+
var _ref404 = _asyncToGenerator(function* (sdk, model_name, body, options) {
|
|
4217
4328
|
model_name = encodeParam(model_name);
|
|
4218
4329
|
return sdk.patch("/self_service_models/".concat(model_name, "/certification"), null, body, options);
|
|
4219
4330
|
});
|
|
4220
|
-
return function update_self_service_explore_certification(
|
|
4221
|
-
return
|
|
4331
|
+
return function update_self_service_explore_certification(_x1396, _x1397, _x1398, _x1399) {
|
|
4332
|
+
return _ref404.apply(this, arguments);
|
|
4222
4333
|
};
|
|
4223
4334
|
}();
|
|
4224
4335
|
export var session = function () {
|
|
4225
|
-
var
|
|
4336
|
+
var _ref405 = _asyncToGenerator(function* (sdk, options) {
|
|
4226
4337
|
return sdk.get('/session', null, null, options);
|
|
4227
4338
|
});
|
|
4228
|
-
return function session(
|
|
4229
|
-
return
|
|
4339
|
+
return function session(_x1400, _x1401) {
|
|
4340
|
+
return _ref405.apply(this, arguments);
|
|
4230
4341
|
};
|
|
4231
4342
|
}();
|
|
4232
4343
|
export var update_session = function () {
|
|
4233
|
-
var
|
|
4344
|
+
var _ref406 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4234
4345
|
return sdk.patch('/session', null, body, options);
|
|
4235
4346
|
});
|
|
4236
|
-
return function update_session(
|
|
4237
|
-
return
|
|
4347
|
+
return function update_session(_x1402, _x1403, _x1404) {
|
|
4348
|
+
return _ref406.apply(this, arguments);
|
|
4238
4349
|
};
|
|
4239
4350
|
}();
|
|
4240
4351
|
export var sql_interface_metadata = function () {
|
|
4241
|
-
var
|
|
4352
|
+
var _ref407 = _asyncToGenerator(function* (sdk, avatica_request, options) {
|
|
4242
4353
|
return sdk.get('/sql_interface_queries/metadata', {
|
|
4243
4354
|
avatica_request
|
|
4244
4355
|
}, null, options);
|
|
4245
4356
|
});
|
|
4246
|
-
return function sql_interface_metadata(
|
|
4247
|
-
return
|
|
4357
|
+
return function sql_interface_metadata(_x1405, _x1406, _x1407) {
|
|
4358
|
+
return _ref407.apply(this, arguments);
|
|
4248
4359
|
};
|
|
4249
4360
|
}();
|
|
4250
4361
|
export var run_sql_interface_query = function () {
|
|
4251
|
-
var
|
|
4362
|
+
var _ref408 = _asyncToGenerator(function* (sdk, query_id, result_format, options) {
|
|
4252
4363
|
result_format = encodeParam(result_format);
|
|
4253
4364
|
return sdk.get("/sql_interface_queries/".concat(query_id, "/run/").concat(result_format), null, null, options);
|
|
4254
4365
|
});
|
|
4255
|
-
return function run_sql_interface_query(
|
|
4256
|
-
return
|
|
4366
|
+
return function run_sql_interface_query(_x1408, _x1409, _x1410, _x1411) {
|
|
4367
|
+
return _ref408.apply(this, arguments);
|
|
4257
4368
|
};
|
|
4258
4369
|
}();
|
|
4259
4370
|
export var create_sql_interface_query = function () {
|
|
4260
|
-
var
|
|
4371
|
+
var _ref409 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4261
4372
|
return sdk.post('/sql_interface_queries', null, body, options);
|
|
4262
4373
|
});
|
|
4263
|
-
return function create_sql_interface_query(
|
|
4264
|
-
return
|
|
4374
|
+
return function create_sql_interface_query(_x1412, _x1413, _x1414) {
|
|
4375
|
+
return _ref409.apply(this, arguments);
|
|
4265
4376
|
};
|
|
4266
4377
|
}();
|
|
4267
4378
|
export var all_themes = function () {
|
|
4268
|
-
var
|
|
4379
|
+
var _ref410 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
4269
4380
|
return sdk.get('/themes', {
|
|
4270
4381
|
fields
|
|
4271
4382
|
}, null, options);
|
|
4272
4383
|
});
|
|
4273
|
-
return function all_themes(
|
|
4274
|
-
return
|
|
4384
|
+
return function all_themes(_x1415, _x1416, _x1417) {
|
|
4385
|
+
return _ref410.apply(this, arguments);
|
|
4275
4386
|
};
|
|
4276
4387
|
}();
|
|
4277
4388
|
export var create_theme = function () {
|
|
4278
|
-
var
|
|
4389
|
+
var _ref411 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4279
4390
|
return sdk.post('/themes', null, body, options);
|
|
4280
4391
|
});
|
|
4281
|
-
return function create_theme(
|
|
4282
|
-
return
|
|
4392
|
+
return function create_theme(_x1418, _x1419, _x1420) {
|
|
4393
|
+
return _ref411.apply(this, arguments);
|
|
4283
4394
|
};
|
|
4284
4395
|
}();
|
|
4285
4396
|
export var search_themes = function () {
|
|
4286
|
-
var
|
|
4397
|
+
var _ref412 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4287
4398
|
return sdk.get('/themes/search', {
|
|
4288
4399
|
id: request.id,
|
|
4289
4400
|
name: request.name,
|
|
@@ -4293,95 +4404,119 @@ export var search_themes = function () {
|
|
|
4293
4404
|
offset: request.offset,
|
|
4294
4405
|
sorts: request.sorts,
|
|
4295
4406
|
fields: request.fields,
|
|
4296
|
-
filter_or: request.filter_or
|
|
4407
|
+
filter_or: request.filter_or,
|
|
4408
|
+
theme_type: request.theme_type
|
|
4297
4409
|
}, null, options);
|
|
4298
4410
|
});
|
|
4299
|
-
return function search_themes(
|
|
4300
|
-
return
|
|
4411
|
+
return function search_themes(_x1421, _x1422, _x1423) {
|
|
4412
|
+
return _ref412.apply(this, arguments);
|
|
4301
4413
|
};
|
|
4302
4414
|
}();
|
|
4303
4415
|
export var default_theme = function () {
|
|
4304
|
-
var
|
|
4416
|
+
var _ref413 = _asyncToGenerator(function* (sdk, ts, options) {
|
|
4305
4417
|
return sdk.get('/themes/default', {
|
|
4306
4418
|
ts
|
|
4307
4419
|
}, null, options);
|
|
4308
4420
|
});
|
|
4309
|
-
return function default_theme(
|
|
4310
|
-
return
|
|
4421
|
+
return function default_theme(_x1424, _x1425, _x1426) {
|
|
4422
|
+
return _ref413.apply(this, arguments);
|
|
4311
4423
|
};
|
|
4312
4424
|
}();
|
|
4313
4425
|
export var set_default_theme = function () {
|
|
4314
|
-
var
|
|
4426
|
+
var _ref414 = _asyncToGenerator(function* (sdk, name, options) {
|
|
4315
4427
|
return sdk.put('/themes/default', {
|
|
4316
4428
|
name
|
|
4317
4429
|
}, null, options);
|
|
4318
4430
|
});
|
|
4319
|
-
return function set_default_theme(
|
|
4320
|
-
return
|
|
4431
|
+
return function set_default_theme(_x1427, _x1428, _x1429) {
|
|
4432
|
+
return _ref414.apply(this, arguments);
|
|
4433
|
+
};
|
|
4434
|
+
}();
|
|
4435
|
+
export var default_theme_by_type = function () {
|
|
4436
|
+
var _ref415 = _asyncToGenerator(function* (sdk, theme_type, ts, options) {
|
|
4437
|
+
return sdk.get('/themes/default_theme', {
|
|
4438
|
+
ts,
|
|
4439
|
+
theme_type
|
|
4440
|
+
}, null, options);
|
|
4441
|
+
});
|
|
4442
|
+
return function default_theme_by_type(_x1430, _x1431, _x1432, _x1433) {
|
|
4443
|
+
return _ref415.apply(this, arguments);
|
|
4444
|
+
};
|
|
4445
|
+
}();
|
|
4446
|
+
export var set_default_theme_by_type = function () {
|
|
4447
|
+
var _ref416 = _asyncToGenerator(function* (sdk, name, theme_type, options) {
|
|
4448
|
+
return sdk.put('/themes/default_theme', {
|
|
4449
|
+
name,
|
|
4450
|
+
theme_type
|
|
4451
|
+
}, null, options);
|
|
4452
|
+
});
|
|
4453
|
+
return function set_default_theme_by_type(_x1434, _x1435, _x1436, _x1437) {
|
|
4454
|
+
return _ref416.apply(this, arguments);
|
|
4321
4455
|
};
|
|
4322
4456
|
}();
|
|
4323
4457
|
export var active_themes = function () {
|
|
4324
|
-
var
|
|
4458
|
+
var _ref417 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4325
4459
|
return sdk.get('/themes/active', {
|
|
4326
4460
|
name: request.name,
|
|
4327
4461
|
ts: request.ts,
|
|
4462
|
+
theme_type: request.theme_type,
|
|
4328
4463
|
fields: request.fields
|
|
4329
4464
|
}, null, options);
|
|
4330
4465
|
});
|
|
4331
|
-
return function active_themes(
|
|
4332
|
-
return
|
|
4466
|
+
return function active_themes(_x1438, _x1439, _x1440) {
|
|
4467
|
+
return _ref417.apply(this, arguments);
|
|
4333
4468
|
};
|
|
4334
4469
|
}();
|
|
4335
4470
|
export var theme_or_default = function () {
|
|
4336
|
-
var
|
|
4471
|
+
var _ref418 = _asyncToGenerator(function* (sdk, name, ts, options) {
|
|
4337
4472
|
return sdk.get('/themes/theme_or_default', {
|
|
4338
4473
|
name,
|
|
4339
4474
|
ts
|
|
4340
4475
|
}, null, options);
|
|
4341
4476
|
});
|
|
4342
|
-
return function theme_or_default(
|
|
4343
|
-
return
|
|
4477
|
+
return function theme_or_default(_x1441, _x1442, _x1443, _x1444) {
|
|
4478
|
+
return _ref418.apply(this, arguments);
|
|
4344
4479
|
};
|
|
4345
4480
|
}();
|
|
4346
4481
|
export var validate_theme = function () {
|
|
4347
|
-
var
|
|
4482
|
+
var _ref419 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4348
4483
|
return sdk.post('/themes/validate', null, body, options);
|
|
4349
4484
|
});
|
|
4350
|
-
return function validate_theme(
|
|
4351
|
-
return
|
|
4485
|
+
return function validate_theme(_x1445, _x1446, _x1447) {
|
|
4486
|
+
return _ref419.apply(this, arguments);
|
|
4352
4487
|
};
|
|
4353
4488
|
}();
|
|
4354
4489
|
export var theme = function () {
|
|
4355
|
-
var
|
|
4490
|
+
var _ref420 = _asyncToGenerator(function* (sdk, theme_id, fields, options) {
|
|
4356
4491
|
theme_id = encodeParam(theme_id);
|
|
4357
4492
|
return sdk.get("/themes/".concat(theme_id), {
|
|
4358
4493
|
fields
|
|
4359
4494
|
}, null, options);
|
|
4360
4495
|
});
|
|
4361
|
-
return function theme(
|
|
4362
|
-
return
|
|
4496
|
+
return function theme(_x1448, _x1449, _x1450, _x1451) {
|
|
4497
|
+
return _ref420.apply(this, arguments);
|
|
4363
4498
|
};
|
|
4364
4499
|
}();
|
|
4365
4500
|
export var update_theme = function () {
|
|
4366
|
-
var
|
|
4501
|
+
var _ref421 = _asyncToGenerator(function* (sdk, theme_id, body, options) {
|
|
4367
4502
|
theme_id = encodeParam(theme_id);
|
|
4368
4503
|
return sdk.patch("/themes/".concat(theme_id), null, body, options);
|
|
4369
4504
|
});
|
|
4370
|
-
return function update_theme(
|
|
4371
|
-
return
|
|
4505
|
+
return function update_theme(_x1452, _x1453, _x1454, _x1455) {
|
|
4506
|
+
return _ref421.apply(this, arguments);
|
|
4372
4507
|
};
|
|
4373
4508
|
}();
|
|
4374
4509
|
export var delete_theme = function () {
|
|
4375
|
-
var
|
|
4510
|
+
var _ref422 = _asyncToGenerator(function* (sdk, theme_id, options) {
|
|
4376
4511
|
theme_id = encodeParam(theme_id);
|
|
4377
4512
|
return sdk.delete("/themes/".concat(theme_id), null, null, options);
|
|
4378
4513
|
});
|
|
4379
|
-
return function delete_theme(
|
|
4380
|
-
return
|
|
4514
|
+
return function delete_theme(_x1456, _x1457, _x1458) {
|
|
4515
|
+
return _ref422.apply(this, arguments);
|
|
4381
4516
|
};
|
|
4382
4517
|
}();
|
|
4383
4518
|
export var search_credentials_email = function () {
|
|
4384
|
-
var
|
|
4519
|
+
var _ref423 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4385
4520
|
return sdk.get('/credentials_email/search', {
|
|
4386
4521
|
fields: request.fields,
|
|
4387
4522
|
limit: request.limit,
|
|
@@ -4393,22 +4528,22 @@ export var search_credentials_email = function () {
|
|
|
4393
4528
|
filter_or: request.filter_or
|
|
4394
4529
|
}, null, options);
|
|
4395
4530
|
});
|
|
4396
|
-
return function search_credentials_email(
|
|
4397
|
-
return
|
|
4531
|
+
return function search_credentials_email(_x1459, _x1460, _x1461) {
|
|
4532
|
+
return _ref423.apply(this, arguments);
|
|
4398
4533
|
};
|
|
4399
4534
|
}();
|
|
4400
4535
|
export var me = function () {
|
|
4401
|
-
var
|
|
4536
|
+
var _ref424 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
4402
4537
|
return sdk.get('/user', {
|
|
4403
4538
|
fields
|
|
4404
4539
|
}, null, options);
|
|
4405
4540
|
});
|
|
4406
|
-
return function me(
|
|
4407
|
-
return
|
|
4541
|
+
return function me(_x1462, _x1463, _x1464) {
|
|
4542
|
+
return _ref424.apply(this, arguments);
|
|
4408
4543
|
};
|
|
4409
4544
|
}();
|
|
4410
4545
|
export var all_users = function () {
|
|
4411
|
-
var
|
|
4546
|
+
var _ref425 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4412
4547
|
return sdk.get('/users', {
|
|
4413
4548
|
fields: request.fields,
|
|
4414
4549
|
page: request.page,
|
|
@@ -4419,22 +4554,22 @@ export var all_users = function () {
|
|
|
4419
4554
|
ids: request.ids
|
|
4420
4555
|
}, null, options);
|
|
4421
4556
|
});
|
|
4422
|
-
return function all_users(
|
|
4423
|
-
return
|
|
4557
|
+
return function all_users(_x1465, _x1466, _x1467) {
|
|
4558
|
+
return _ref425.apply(this, arguments);
|
|
4424
4559
|
};
|
|
4425
4560
|
}();
|
|
4426
4561
|
export var create_user = function () {
|
|
4427
|
-
var
|
|
4562
|
+
var _ref426 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
4428
4563
|
return sdk.post('/users', {
|
|
4429
4564
|
fields
|
|
4430
4565
|
}, body, options);
|
|
4431
4566
|
});
|
|
4432
|
-
return function create_user(
|
|
4433
|
-
return
|
|
4567
|
+
return function create_user(_x1468, _x1469, _x1470, _x1471) {
|
|
4568
|
+
return _ref426.apply(this, arguments);
|
|
4434
4569
|
};
|
|
4435
4570
|
}();
|
|
4436
4571
|
export var search_users = function () {
|
|
4437
|
-
var
|
|
4572
|
+
var _ref427 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4438
4573
|
return sdk.get('/users/search', {
|
|
4439
4574
|
fields: request.fields,
|
|
4440
4575
|
page: request.page,
|
|
@@ -4457,12 +4592,12 @@ export var search_users = function () {
|
|
|
4457
4592
|
is_service_account: request.is_service_account
|
|
4458
4593
|
}, null, options);
|
|
4459
4594
|
});
|
|
4460
|
-
return function search_users(
|
|
4461
|
-
return
|
|
4595
|
+
return function search_users(_x1472, _x1473, _x1474) {
|
|
4596
|
+
return _ref427.apply(this, arguments);
|
|
4462
4597
|
};
|
|
4463
4598
|
}();
|
|
4464
4599
|
export var search_users_names = function () {
|
|
4465
|
-
var
|
|
4600
|
+
var _ref428 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4466
4601
|
request.pattern = encodeParam(request.pattern);
|
|
4467
4602
|
return sdk.get("/users/search/names/".concat(request.pattern), {
|
|
4468
4603
|
fields: request.fields,
|
|
@@ -4479,405 +4614,405 @@ export var search_users_names = function () {
|
|
|
4479
4614
|
is_disabled: request.is_disabled
|
|
4480
4615
|
}, null, options);
|
|
4481
4616
|
});
|
|
4482
|
-
return function search_users_names(
|
|
4483
|
-
return
|
|
4617
|
+
return function search_users_names(_x1475, _x1476, _x1477) {
|
|
4618
|
+
return _ref428.apply(this, arguments);
|
|
4484
4619
|
};
|
|
4485
4620
|
}();
|
|
4486
4621
|
export var user = function () {
|
|
4487
|
-
var
|
|
4622
|
+
var _ref429 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4488
4623
|
user_id = encodeParam(user_id);
|
|
4489
4624
|
return sdk.get("/users/".concat(user_id), {
|
|
4490
4625
|
fields
|
|
4491
4626
|
}, null, options);
|
|
4492
4627
|
});
|
|
4493
|
-
return function user(
|
|
4494
|
-
return
|
|
4628
|
+
return function user(_x1478, _x1479, _x1480, _x1481) {
|
|
4629
|
+
return _ref429.apply(this, arguments);
|
|
4495
4630
|
};
|
|
4496
4631
|
}();
|
|
4497
4632
|
export var update_user = function () {
|
|
4498
|
-
var
|
|
4633
|
+
var _ref430 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4499
4634
|
user_id = encodeParam(user_id);
|
|
4500
4635
|
return sdk.patch("/users/".concat(user_id), {
|
|
4501
4636
|
fields
|
|
4502
4637
|
}, body, options);
|
|
4503
4638
|
});
|
|
4504
|
-
return function update_user(
|
|
4505
|
-
return
|
|
4639
|
+
return function update_user(_x1482, _x1483, _x1484, _x1485, _x1486) {
|
|
4640
|
+
return _ref430.apply(this, arguments);
|
|
4506
4641
|
};
|
|
4507
4642
|
}();
|
|
4508
4643
|
export var delete_user = function () {
|
|
4509
|
-
var
|
|
4644
|
+
var _ref431 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4510
4645
|
user_id = encodeParam(user_id);
|
|
4511
4646
|
return sdk.delete("/users/".concat(user_id), null, null, options);
|
|
4512
4647
|
});
|
|
4513
|
-
return function delete_user(
|
|
4514
|
-
return
|
|
4648
|
+
return function delete_user(_x1487, _x1488, _x1489) {
|
|
4649
|
+
return _ref431.apply(this, arguments);
|
|
4515
4650
|
};
|
|
4516
4651
|
}();
|
|
4517
4652
|
export var user_for_credential = function () {
|
|
4518
|
-
var
|
|
4653
|
+
var _ref432 = _asyncToGenerator(function* (sdk, credential_type, credential_id, fields, options) {
|
|
4519
4654
|
credential_type = encodeParam(credential_type);
|
|
4520
4655
|
credential_id = encodeParam(credential_id);
|
|
4521
4656
|
return sdk.get("/users/credential/".concat(credential_type, "/").concat(credential_id), {
|
|
4522
4657
|
fields
|
|
4523
4658
|
}, null, options);
|
|
4524
4659
|
});
|
|
4525
|
-
return function user_for_credential(
|
|
4526
|
-
return
|
|
4660
|
+
return function user_for_credential(_x1490, _x1491, _x1492, _x1493, _x1494) {
|
|
4661
|
+
return _ref432.apply(this, arguments);
|
|
4527
4662
|
};
|
|
4528
4663
|
}();
|
|
4529
4664
|
export var update_service_account = function () {
|
|
4530
|
-
var
|
|
4665
|
+
var _ref433 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4531
4666
|
user_id = encodeParam(user_id);
|
|
4532
4667
|
return sdk.patch("/users/service_accounts/".concat(user_id), {
|
|
4533
4668
|
fields
|
|
4534
4669
|
}, body, options);
|
|
4535
4670
|
});
|
|
4536
|
-
return function update_service_account(
|
|
4537
|
-
return
|
|
4671
|
+
return function update_service_account(_x1495, _x1496, _x1497, _x1498, _x1499) {
|
|
4672
|
+
return _ref433.apply(this, arguments);
|
|
4538
4673
|
};
|
|
4539
4674
|
}();
|
|
4540
4675
|
export var delete_service_account = function () {
|
|
4541
|
-
var
|
|
4676
|
+
var _ref434 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4542
4677
|
user_id = encodeParam(user_id);
|
|
4543
4678
|
return sdk.delete("/users/service_accounts/".concat(user_id), null, null, options);
|
|
4544
4679
|
});
|
|
4545
|
-
return function delete_service_account(
|
|
4546
|
-
return
|
|
4680
|
+
return function delete_service_account(_x1500, _x1501, _x1502) {
|
|
4681
|
+
return _ref434.apply(this, arguments);
|
|
4547
4682
|
};
|
|
4548
4683
|
}();
|
|
4549
4684
|
export var user_credentials_email = function () {
|
|
4550
|
-
var
|
|
4685
|
+
var _ref435 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4551
4686
|
user_id = encodeParam(user_id);
|
|
4552
4687
|
return sdk.get("/users/".concat(user_id, "/credentials_email"), {
|
|
4553
4688
|
fields
|
|
4554
4689
|
}, null, options);
|
|
4555
4690
|
});
|
|
4556
|
-
return function user_credentials_email(
|
|
4557
|
-
return
|
|
4691
|
+
return function user_credentials_email(_x1503, _x1504, _x1505, _x1506) {
|
|
4692
|
+
return _ref435.apply(this, arguments);
|
|
4558
4693
|
};
|
|
4559
4694
|
}();
|
|
4560
4695
|
export var create_user_credentials_email = function () {
|
|
4561
|
-
var
|
|
4696
|
+
var _ref436 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4562
4697
|
user_id = encodeParam(user_id);
|
|
4563
4698
|
return sdk.post("/users/".concat(user_id, "/credentials_email"), {
|
|
4564
4699
|
fields
|
|
4565
4700
|
}, body, options);
|
|
4566
4701
|
});
|
|
4567
|
-
return function create_user_credentials_email(
|
|
4568
|
-
return
|
|
4702
|
+
return function create_user_credentials_email(_x1507, _x1508, _x1509, _x1510, _x1511) {
|
|
4703
|
+
return _ref436.apply(this, arguments);
|
|
4569
4704
|
};
|
|
4570
4705
|
}();
|
|
4571
4706
|
export var update_user_credentials_email = function () {
|
|
4572
|
-
var
|
|
4707
|
+
var _ref437 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4573
4708
|
user_id = encodeParam(user_id);
|
|
4574
4709
|
return sdk.patch("/users/".concat(user_id, "/credentials_email"), {
|
|
4575
4710
|
fields
|
|
4576
4711
|
}, body, options);
|
|
4577
4712
|
});
|
|
4578
|
-
return function update_user_credentials_email(
|
|
4579
|
-
return
|
|
4713
|
+
return function update_user_credentials_email(_x1512, _x1513, _x1514, _x1515, _x1516) {
|
|
4714
|
+
return _ref437.apply(this, arguments);
|
|
4580
4715
|
};
|
|
4581
4716
|
}();
|
|
4582
4717
|
export var delete_user_credentials_email = function () {
|
|
4583
|
-
var
|
|
4718
|
+
var _ref438 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4584
4719
|
user_id = encodeParam(user_id);
|
|
4585
4720
|
return sdk.delete("/users/".concat(user_id, "/credentials_email"), null, null, options);
|
|
4586
4721
|
});
|
|
4587
|
-
return function delete_user_credentials_email(
|
|
4588
|
-
return
|
|
4722
|
+
return function delete_user_credentials_email(_x1517, _x1518, _x1519) {
|
|
4723
|
+
return _ref438.apply(this, arguments);
|
|
4589
4724
|
};
|
|
4590
4725
|
}();
|
|
4591
4726
|
export var user_credentials_totp = function () {
|
|
4592
|
-
var
|
|
4727
|
+
var _ref439 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4593
4728
|
user_id = encodeParam(user_id);
|
|
4594
4729
|
return sdk.get("/users/".concat(user_id, "/credentials_totp"), {
|
|
4595
4730
|
fields
|
|
4596
4731
|
}, null, options);
|
|
4597
4732
|
});
|
|
4598
|
-
return function user_credentials_totp(
|
|
4599
|
-
return
|
|
4733
|
+
return function user_credentials_totp(_x1520, _x1521, _x1522, _x1523) {
|
|
4734
|
+
return _ref439.apply(this, arguments);
|
|
4600
4735
|
};
|
|
4601
4736
|
}();
|
|
4602
4737
|
export var create_user_credentials_totp = function () {
|
|
4603
|
-
var
|
|
4738
|
+
var _ref440 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4604
4739
|
user_id = encodeParam(user_id);
|
|
4605
4740
|
return sdk.post("/users/".concat(user_id, "/credentials_totp"), {
|
|
4606
4741
|
fields
|
|
4607
4742
|
}, body, options);
|
|
4608
4743
|
});
|
|
4609
|
-
return function create_user_credentials_totp(
|
|
4610
|
-
return
|
|
4744
|
+
return function create_user_credentials_totp(_x1524, _x1525, _x1526, _x1527, _x1528) {
|
|
4745
|
+
return _ref440.apply(this, arguments);
|
|
4611
4746
|
};
|
|
4612
4747
|
}();
|
|
4613
4748
|
export var delete_user_credentials_totp = function () {
|
|
4614
|
-
var
|
|
4749
|
+
var _ref441 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4615
4750
|
user_id = encodeParam(user_id);
|
|
4616
4751
|
return sdk.delete("/users/".concat(user_id, "/credentials_totp"), null, null, options);
|
|
4617
4752
|
});
|
|
4618
|
-
return function delete_user_credentials_totp(
|
|
4619
|
-
return
|
|
4753
|
+
return function delete_user_credentials_totp(_x1529, _x1530, _x1531) {
|
|
4754
|
+
return _ref441.apply(this, arguments);
|
|
4620
4755
|
};
|
|
4621
4756
|
}();
|
|
4622
4757
|
export var user_credentials_ldap = function () {
|
|
4623
|
-
var
|
|
4758
|
+
var _ref442 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4624
4759
|
user_id = encodeParam(user_id);
|
|
4625
4760
|
return sdk.get("/users/".concat(user_id, "/credentials_ldap"), {
|
|
4626
4761
|
fields
|
|
4627
4762
|
}, null, options);
|
|
4628
4763
|
});
|
|
4629
|
-
return function user_credentials_ldap(
|
|
4630
|
-
return
|
|
4764
|
+
return function user_credentials_ldap(_x1532, _x1533, _x1534, _x1535) {
|
|
4765
|
+
return _ref442.apply(this, arguments);
|
|
4631
4766
|
};
|
|
4632
4767
|
}();
|
|
4633
4768
|
export var delete_user_credentials_ldap = function () {
|
|
4634
|
-
var
|
|
4769
|
+
var _ref443 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4635
4770
|
user_id = encodeParam(user_id);
|
|
4636
4771
|
return sdk.delete("/users/".concat(user_id, "/credentials_ldap"), null, null, options);
|
|
4637
4772
|
});
|
|
4638
|
-
return function delete_user_credentials_ldap(
|
|
4639
|
-
return
|
|
4773
|
+
return function delete_user_credentials_ldap(_x1536, _x1537, _x1538) {
|
|
4774
|
+
return _ref443.apply(this, arguments);
|
|
4640
4775
|
};
|
|
4641
4776
|
}();
|
|
4642
4777
|
export var user_credentials_google = function () {
|
|
4643
|
-
var
|
|
4778
|
+
var _ref444 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4644
4779
|
user_id = encodeParam(user_id);
|
|
4645
4780
|
return sdk.get("/users/".concat(user_id, "/credentials_google"), {
|
|
4646
4781
|
fields
|
|
4647
4782
|
}, null, options);
|
|
4648
4783
|
});
|
|
4649
|
-
return function user_credentials_google(
|
|
4650
|
-
return
|
|
4784
|
+
return function user_credentials_google(_x1539, _x1540, _x1541, _x1542) {
|
|
4785
|
+
return _ref444.apply(this, arguments);
|
|
4651
4786
|
};
|
|
4652
4787
|
}();
|
|
4653
4788
|
export var delete_user_credentials_google = function () {
|
|
4654
|
-
var
|
|
4789
|
+
var _ref445 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4655
4790
|
user_id = encodeParam(user_id);
|
|
4656
4791
|
return sdk.delete("/users/".concat(user_id, "/credentials_google"), null, null, options);
|
|
4657
4792
|
});
|
|
4658
|
-
return function delete_user_credentials_google(
|
|
4659
|
-
return
|
|
4793
|
+
return function delete_user_credentials_google(_x1543, _x1544, _x1545) {
|
|
4794
|
+
return _ref445.apply(this, arguments);
|
|
4660
4795
|
};
|
|
4661
4796
|
}();
|
|
4662
4797
|
export var user_credentials_saml = function () {
|
|
4663
|
-
var
|
|
4798
|
+
var _ref446 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4664
4799
|
user_id = encodeParam(user_id);
|
|
4665
4800
|
return sdk.get("/users/".concat(user_id, "/credentials_saml"), {
|
|
4666
4801
|
fields
|
|
4667
4802
|
}, null, options);
|
|
4668
4803
|
});
|
|
4669
|
-
return function user_credentials_saml(
|
|
4670
|
-
return
|
|
4804
|
+
return function user_credentials_saml(_x1546, _x1547, _x1548, _x1549) {
|
|
4805
|
+
return _ref446.apply(this, arguments);
|
|
4671
4806
|
};
|
|
4672
4807
|
}();
|
|
4673
4808
|
export var delete_user_credentials_saml = function () {
|
|
4674
|
-
var
|
|
4809
|
+
var _ref447 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4675
4810
|
user_id = encodeParam(user_id);
|
|
4676
4811
|
return sdk.delete("/users/".concat(user_id, "/credentials_saml"), null, null, options);
|
|
4677
4812
|
});
|
|
4678
|
-
return function delete_user_credentials_saml(
|
|
4679
|
-
return
|
|
4813
|
+
return function delete_user_credentials_saml(_x1550, _x1551, _x1552) {
|
|
4814
|
+
return _ref447.apply(this, arguments);
|
|
4680
4815
|
};
|
|
4681
4816
|
}();
|
|
4682
4817
|
export var user_credentials_oidc = function () {
|
|
4683
|
-
var
|
|
4818
|
+
var _ref448 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4684
4819
|
user_id = encodeParam(user_id);
|
|
4685
4820
|
return sdk.get("/users/".concat(user_id, "/credentials_oidc"), {
|
|
4686
4821
|
fields
|
|
4687
4822
|
}, null, options);
|
|
4688
4823
|
});
|
|
4689
|
-
return function user_credentials_oidc(
|
|
4690
|
-
return
|
|
4824
|
+
return function user_credentials_oidc(_x1553, _x1554, _x1555, _x1556) {
|
|
4825
|
+
return _ref448.apply(this, arguments);
|
|
4691
4826
|
};
|
|
4692
4827
|
}();
|
|
4693
4828
|
export var delete_user_credentials_oidc = function () {
|
|
4694
|
-
var
|
|
4829
|
+
var _ref449 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4695
4830
|
user_id = encodeParam(user_id);
|
|
4696
4831
|
return sdk.delete("/users/".concat(user_id, "/credentials_oidc"), null, null, options);
|
|
4697
4832
|
});
|
|
4698
|
-
return function delete_user_credentials_oidc(
|
|
4699
|
-
return
|
|
4833
|
+
return function delete_user_credentials_oidc(_x1557, _x1558, _x1559) {
|
|
4834
|
+
return _ref449.apply(this, arguments);
|
|
4700
4835
|
};
|
|
4701
4836
|
}();
|
|
4702
4837
|
export var user_credentials_api3 = function () {
|
|
4703
|
-
var
|
|
4838
|
+
var _ref450 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, fields, options) {
|
|
4704
4839
|
user_id = encodeParam(user_id);
|
|
4705
4840
|
credentials_api3_id = encodeParam(credentials_api3_id);
|
|
4706
4841
|
return sdk.get("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), {
|
|
4707
4842
|
fields
|
|
4708
4843
|
}, null, options);
|
|
4709
4844
|
});
|
|
4710
|
-
return function user_credentials_api3(
|
|
4711
|
-
return
|
|
4845
|
+
return function user_credentials_api3(_x1560, _x1561, _x1562, _x1563, _x1564) {
|
|
4846
|
+
return _ref450.apply(this, arguments);
|
|
4712
4847
|
};
|
|
4713
4848
|
}();
|
|
4714
4849
|
export var update_user_credentials_api3 = function () {
|
|
4715
|
-
var
|
|
4850
|
+
var _ref451 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, body, fields, options) {
|
|
4716
4851
|
user_id = encodeParam(user_id);
|
|
4717
4852
|
credentials_api3_id = encodeParam(credentials_api3_id);
|
|
4718
4853
|
return sdk.patch("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), {
|
|
4719
4854
|
fields
|
|
4720
4855
|
}, body, options);
|
|
4721
4856
|
});
|
|
4722
|
-
return function update_user_credentials_api3(
|
|
4723
|
-
return
|
|
4857
|
+
return function update_user_credentials_api3(_x1565, _x1566, _x1567, _x1568, _x1569, _x1570) {
|
|
4858
|
+
return _ref451.apply(this, arguments);
|
|
4724
4859
|
};
|
|
4725
4860
|
}();
|
|
4726
4861
|
export var delete_user_credentials_api3 = function () {
|
|
4727
|
-
var
|
|
4862
|
+
var _ref452 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, options) {
|
|
4728
4863
|
user_id = encodeParam(user_id);
|
|
4729
4864
|
credentials_api3_id = encodeParam(credentials_api3_id);
|
|
4730
4865
|
return sdk.delete("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), null, null, options);
|
|
4731
4866
|
});
|
|
4732
|
-
return function delete_user_credentials_api3(
|
|
4733
|
-
return
|
|
4867
|
+
return function delete_user_credentials_api3(_x1571, _x1572, _x1573, _x1574) {
|
|
4868
|
+
return _ref452.apply(this, arguments);
|
|
4734
4869
|
};
|
|
4735
4870
|
}();
|
|
4736
4871
|
export var all_user_credentials_api3s = function () {
|
|
4737
|
-
var
|
|
4872
|
+
var _ref453 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4738
4873
|
user_id = encodeParam(user_id);
|
|
4739
4874
|
return sdk.get("/users/".concat(user_id, "/credentials_api3"), {
|
|
4740
4875
|
fields
|
|
4741
4876
|
}, null, options);
|
|
4742
4877
|
});
|
|
4743
|
-
return function all_user_credentials_api3s(
|
|
4744
|
-
return
|
|
4878
|
+
return function all_user_credentials_api3s(_x1575, _x1576, _x1577, _x1578) {
|
|
4879
|
+
return _ref453.apply(this, arguments);
|
|
4745
4880
|
};
|
|
4746
4881
|
}();
|
|
4747
4882
|
export var create_user_credentials_api3 = function () {
|
|
4748
|
-
var
|
|
4883
|
+
var _ref454 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4749
4884
|
user_id = encodeParam(user_id);
|
|
4750
4885
|
return sdk.post("/users/".concat(user_id, "/credentials_api3"), {
|
|
4751
4886
|
fields
|
|
4752
4887
|
}, null, options);
|
|
4753
4888
|
});
|
|
4754
|
-
return function create_user_credentials_api3(
|
|
4755
|
-
return
|
|
4889
|
+
return function create_user_credentials_api3(_x1579, _x1580, _x1581, _x1582) {
|
|
4890
|
+
return _ref454.apply(this, arguments);
|
|
4756
4891
|
};
|
|
4757
4892
|
}();
|
|
4758
4893
|
export var user_credentials_embed = function () {
|
|
4759
|
-
var
|
|
4894
|
+
var _ref455 = _asyncToGenerator(function* (sdk, user_id, credentials_embed_id, fields, options) {
|
|
4760
4895
|
user_id = encodeParam(user_id);
|
|
4761
4896
|
credentials_embed_id = encodeParam(credentials_embed_id);
|
|
4762
4897
|
return sdk.get("/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), {
|
|
4763
4898
|
fields
|
|
4764
4899
|
}, null, options);
|
|
4765
4900
|
});
|
|
4766
|
-
return function user_credentials_embed(
|
|
4767
|
-
return
|
|
4901
|
+
return function user_credentials_embed(_x1583, _x1584, _x1585, _x1586, _x1587) {
|
|
4902
|
+
return _ref455.apply(this, arguments);
|
|
4768
4903
|
};
|
|
4769
4904
|
}();
|
|
4770
4905
|
export var delete_user_credentials_embed = function () {
|
|
4771
|
-
var
|
|
4906
|
+
var _ref456 = _asyncToGenerator(function* (sdk, user_id, credentials_embed_id, options) {
|
|
4772
4907
|
user_id = encodeParam(user_id);
|
|
4773
4908
|
credentials_embed_id = encodeParam(credentials_embed_id);
|
|
4774
4909
|
return sdk.delete("/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), null, null, options);
|
|
4775
4910
|
});
|
|
4776
|
-
return function delete_user_credentials_embed(
|
|
4777
|
-
return
|
|
4911
|
+
return function delete_user_credentials_embed(_x1588, _x1589, _x1590, _x1591) {
|
|
4912
|
+
return _ref456.apply(this, arguments);
|
|
4778
4913
|
};
|
|
4779
4914
|
}();
|
|
4780
4915
|
export var all_user_credentials_embeds = function () {
|
|
4781
|
-
var
|
|
4916
|
+
var _ref457 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4782
4917
|
user_id = encodeParam(user_id);
|
|
4783
4918
|
return sdk.get("/users/".concat(user_id, "/credentials_embed"), {
|
|
4784
4919
|
fields
|
|
4785
4920
|
}, null, options);
|
|
4786
4921
|
});
|
|
4787
|
-
return function all_user_credentials_embeds(
|
|
4788
|
-
return
|
|
4922
|
+
return function all_user_credentials_embeds(_x1592, _x1593, _x1594, _x1595) {
|
|
4923
|
+
return _ref457.apply(this, arguments);
|
|
4789
4924
|
};
|
|
4790
4925
|
}();
|
|
4791
4926
|
export var user_credentials_looker_openid = function () {
|
|
4792
|
-
var
|
|
4927
|
+
var _ref458 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4793
4928
|
user_id = encodeParam(user_id);
|
|
4794
4929
|
return sdk.get("/users/".concat(user_id, "/credentials_looker_openid"), {
|
|
4795
4930
|
fields
|
|
4796
4931
|
}, null, options);
|
|
4797
4932
|
});
|
|
4798
|
-
return function user_credentials_looker_openid(
|
|
4799
|
-
return
|
|
4933
|
+
return function user_credentials_looker_openid(_x1596, _x1597, _x1598, _x1599) {
|
|
4934
|
+
return _ref458.apply(this, arguments);
|
|
4800
4935
|
};
|
|
4801
4936
|
}();
|
|
4802
4937
|
export var delete_user_credentials_looker_openid = function () {
|
|
4803
|
-
var
|
|
4938
|
+
var _ref459 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
4804
4939
|
user_id = encodeParam(user_id);
|
|
4805
4940
|
return sdk.delete("/users/".concat(user_id, "/credentials_looker_openid"), null, null, options);
|
|
4806
4941
|
});
|
|
4807
|
-
return function delete_user_credentials_looker_openid(
|
|
4808
|
-
return
|
|
4942
|
+
return function delete_user_credentials_looker_openid(_x1600, _x1601, _x1602) {
|
|
4943
|
+
return _ref459.apply(this, arguments);
|
|
4809
4944
|
};
|
|
4810
4945
|
}();
|
|
4811
4946
|
export var user_session = function () {
|
|
4812
|
-
var
|
|
4947
|
+
var _ref460 = _asyncToGenerator(function* (sdk, user_id, session_id, fields, options) {
|
|
4813
4948
|
user_id = encodeParam(user_id);
|
|
4814
4949
|
session_id = encodeParam(session_id);
|
|
4815
4950
|
return sdk.get("/users/".concat(user_id, "/sessions/").concat(session_id), {
|
|
4816
4951
|
fields
|
|
4817
4952
|
}, null, options);
|
|
4818
4953
|
});
|
|
4819
|
-
return function user_session(
|
|
4820
|
-
return
|
|
4954
|
+
return function user_session(_x1603, _x1604, _x1605, _x1606, _x1607) {
|
|
4955
|
+
return _ref460.apply(this, arguments);
|
|
4821
4956
|
};
|
|
4822
4957
|
}();
|
|
4823
4958
|
export var delete_user_session = function () {
|
|
4824
|
-
var
|
|
4959
|
+
var _ref461 = _asyncToGenerator(function* (sdk, user_id, session_id, options) {
|
|
4825
4960
|
user_id = encodeParam(user_id);
|
|
4826
4961
|
session_id = encodeParam(session_id);
|
|
4827
4962
|
return sdk.delete("/users/".concat(user_id, "/sessions/").concat(session_id), null, null, options);
|
|
4828
4963
|
});
|
|
4829
|
-
return function delete_user_session(
|
|
4830
|
-
return
|
|
4964
|
+
return function delete_user_session(_x1608, _x1609, _x1610, _x1611) {
|
|
4965
|
+
return _ref461.apply(this, arguments);
|
|
4831
4966
|
};
|
|
4832
4967
|
}();
|
|
4833
4968
|
export var all_user_sessions = function () {
|
|
4834
|
-
var
|
|
4969
|
+
var _ref462 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4835
4970
|
user_id = encodeParam(user_id);
|
|
4836
4971
|
return sdk.get("/users/".concat(user_id, "/sessions"), {
|
|
4837
4972
|
fields
|
|
4838
4973
|
}, null, options);
|
|
4839
4974
|
});
|
|
4840
|
-
return function all_user_sessions(
|
|
4841
|
-
return
|
|
4975
|
+
return function all_user_sessions(_x1612, _x1613, _x1614, _x1615) {
|
|
4976
|
+
return _ref462.apply(this, arguments);
|
|
4842
4977
|
};
|
|
4843
4978
|
}();
|
|
4844
4979
|
export var create_user_credentials_email_password_reset = function () {
|
|
4845
|
-
var
|
|
4980
|
+
var _ref463 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4846
4981
|
request.user_id = encodeParam(request.user_id);
|
|
4847
4982
|
return sdk.post("/users/".concat(request.user_id, "/credentials_email/password_reset"), {
|
|
4848
4983
|
expires: request.expires,
|
|
4849
4984
|
fields: request.fields
|
|
4850
4985
|
}, null, options);
|
|
4851
4986
|
});
|
|
4852
|
-
return function create_user_credentials_email_password_reset(
|
|
4853
|
-
return
|
|
4987
|
+
return function create_user_credentials_email_password_reset(_x1616, _x1617, _x1618) {
|
|
4988
|
+
return _ref463.apply(this, arguments);
|
|
4854
4989
|
};
|
|
4855
4990
|
}();
|
|
4856
4991
|
export var user_roles = function () {
|
|
4857
|
-
var
|
|
4992
|
+
var _ref464 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4858
4993
|
request.user_id = encodeParam(request.user_id);
|
|
4859
4994
|
return sdk.get("/users/".concat(request.user_id, "/roles"), {
|
|
4860
4995
|
fields: request.fields,
|
|
4861
4996
|
direct_association_only: request.direct_association_only
|
|
4862
4997
|
}, null, options);
|
|
4863
4998
|
});
|
|
4864
|
-
return function user_roles(
|
|
4865
|
-
return
|
|
4999
|
+
return function user_roles(_x1619, _x1620, _x1621) {
|
|
5000
|
+
return _ref464.apply(this, arguments);
|
|
4866
5001
|
};
|
|
4867
5002
|
}();
|
|
4868
5003
|
export var set_user_roles = function () {
|
|
4869
|
-
var
|
|
5004
|
+
var _ref465 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4870
5005
|
user_id = encodeParam(user_id);
|
|
4871
5006
|
return sdk.put("/users/".concat(user_id, "/roles"), {
|
|
4872
5007
|
fields
|
|
4873
5008
|
}, body, options);
|
|
4874
5009
|
});
|
|
4875
|
-
return function set_user_roles(
|
|
4876
|
-
return
|
|
5010
|
+
return function set_user_roles(_x1622, _x1623, _x1624, _x1625, _x1626) {
|
|
5011
|
+
return _ref465.apply(this, arguments);
|
|
4877
5012
|
};
|
|
4878
5013
|
}();
|
|
4879
5014
|
export var user_attribute_user_values = function () {
|
|
4880
|
-
var
|
|
5015
|
+
var _ref466 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4881
5016
|
request.user_id = encodeParam(request.user_id);
|
|
4882
5017
|
return sdk.get("/users/".concat(request.user_id, "/attribute_values"), {
|
|
4883
5018
|
fields: request.fields,
|
|
@@ -4886,157 +5021,157 @@ export var user_attribute_user_values = function () {
|
|
|
4886
5021
|
include_unset: request.include_unset
|
|
4887
5022
|
}, null, options);
|
|
4888
5023
|
});
|
|
4889
|
-
return function user_attribute_user_values(
|
|
4890
|
-
return
|
|
5024
|
+
return function user_attribute_user_values(_x1627, _x1628, _x1629) {
|
|
5025
|
+
return _ref466.apply(this, arguments);
|
|
4891
5026
|
};
|
|
4892
5027
|
}();
|
|
4893
5028
|
export var set_user_attribute_user_value = function () {
|
|
4894
|
-
var
|
|
5029
|
+
var _ref467 = _asyncToGenerator(function* (sdk, user_id, user_attribute_id, body, options) {
|
|
4895
5030
|
user_id = encodeParam(user_id);
|
|
4896
5031
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4897
5032
|
return sdk.patch("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
|
|
4898
5033
|
});
|
|
4899
|
-
return function set_user_attribute_user_value(
|
|
4900
|
-
return
|
|
5034
|
+
return function set_user_attribute_user_value(_x1630, _x1631, _x1632, _x1633, _x1634) {
|
|
5035
|
+
return _ref467.apply(this, arguments);
|
|
4901
5036
|
};
|
|
4902
5037
|
}();
|
|
4903
5038
|
export var delete_user_attribute_user_value = function () {
|
|
4904
|
-
var
|
|
5039
|
+
var _ref468 = _asyncToGenerator(function* (sdk, user_id, user_attribute_id, options) {
|
|
4905
5040
|
user_id = encodeParam(user_id);
|
|
4906
5041
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4907
5042
|
return sdk.delete("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
|
|
4908
5043
|
});
|
|
4909
|
-
return function delete_user_attribute_user_value(
|
|
4910
|
-
return
|
|
5044
|
+
return function delete_user_attribute_user_value(_x1635, _x1636, _x1637, _x1638) {
|
|
5045
|
+
return _ref468.apply(this, arguments);
|
|
4911
5046
|
};
|
|
4912
5047
|
}();
|
|
4913
5048
|
export var send_user_credentials_email_password_reset = function () {
|
|
4914
|
-
var
|
|
5049
|
+
var _ref469 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
4915
5050
|
user_id = encodeParam(user_id);
|
|
4916
5051
|
return sdk.post("/users/".concat(user_id, "/credentials_email/send_password_reset"), {
|
|
4917
5052
|
fields
|
|
4918
5053
|
}, null, options);
|
|
4919
5054
|
});
|
|
4920
|
-
return function send_user_credentials_email_password_reset(
|
|
4921
|
-
return
|
|
5055
|
+
return function send_user_credentials_email_password_reset(_x1639, _x1640, _x1641, _x1642) {
|
|
5056
|
+
return _ref469.apply(this, arguments);
|
|
4922
5057
|
};
|
|
4923
5058
|
}();
|
|
4924
5059
|
export var wipeout_user_emails = function () {
|
|
4925
|
-
var
|
|
5060
|
+
var _ref470 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
4926
5061
|
user_id = encodeParam(user_id);
|
|
4927
5062
|
return sdk.post("/users/".concat(user_id, "/update_emails"), {
|
|
4928
5063
|
fields
|
|
4929
5064
|
}, body, options);
|
|
4930
5065
|
});
|
|
4931
|
-
return function wipeout_user_emails(
|
|
4932
|
-
return
|
|
5066
|
+
return function wipeout_user_emails(_x1643, _x1644, _x1645, _x1646, _x1647) {
|
|
5067
|
+
return _ref470.apply(this, arguments);
|
|
4933
5068
|
};
|
|
4934
5069
|
}();
|
|
4935
5070
|
export var create_embed_user = function () {
|
|
4936
|
-
var
|
|
5071
|
+
var _ref471 = _asyncToGenerator(function* (sdk, body, options) {
|
|
4937
5072
|
return sdk.post('/users/embed_user', null, body, options);
|
|
4938
5073
|
});
|
|
4939
|
-
return function create_embed_user(
|
|
4940
|
-
return
|
|
5074
|
+
return function create_embed_user(_x1648, _x1649, _x1650) {
|
|
5075
|
+
return _ref471.apply(this, arguments);
|
|
4941
5076
|
};
|
|
4942
5077
|
}();
|
|
4943
5078
|
export var create_service_account = function () {
|
|
4944
|
-
var
|
|
5079
|
+
var _ref472 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
4945
5080
|
return sdk.post('/users/service_accounts', {
|
|
4946
5081
|
fields
|
|
4947
5082
|
}, body, options);
|
|
4948
5083
|
});
|
|
4949
|
-
return function create_service_account(
|
|
4950
|
-
return
|
|
5084
|
+
return function create_service_account(_x1651, _x1652, _x1653, _x1654) {
|
|
5085
|
+
return _ref472.apply(this, arguments);
|
|
4951
5086
|
};
|
|
4952
5087
|
}();
|
|
4953
5088
|
export var all_user_attributes = function () {
|
|
4954
|
-
var
|
|
5089
|
+
var _ref473 = _asyncToGenerator(function* (sdk, request, options) {
|
|
4955
5090
|
return sdk.get('/user_attributes', {
|
|
4956
5091
|
fields: request.fields,
|
|
4957
5092
|
sorts: request.sorts
|
|
4958
5093
|
}, null, options);
|
|
4959
5094
|
});
|
|
4960
|
-
return function all_user_attributes(
|
|
4961
|
-
return
|
|
5095
|
+
return function all_user_attributes(_x1655, _x1656, _x1657) {
|
|
5096
|
+
return _ref473.apply(this, arguments);
|
|
4962
5097
|
};
|
|
4963
5098
|
}();
|
|
4964
5099
|
export var create_user_attribute = function () {
|
|
4965
|
-
var
|
|
5100
|
+
var _ref474 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
4966
5101
|
return sdk.post('/user_attributes', {
|
|
4967
5102
|
fields
|
|
4968
5103
|
}, body, options);
|
|
4969
5104
|
});
|
|
4970
|
-
return function create_user_attribute(
|
|
4971
|
-
return
|
|
5105
|
+
return function create_user_attribute(_x1658, _x1659, _x1660, _x1661) {
|
|
5106
|
+
return _ref474.apply(this, arguments);
|
|
4972
5107
|
};
|
|
4973
5108
|
}();
|
|
4974
5109
|
export var user_attribute = function () {
|
|
4975
|
-
var
|
|
5110
|
+
var _ref475 = _asyncToGenerator(function* (sdk, user_attribute_id, fields, options) {
|
|
4976
5111
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4977
5112
|
return sdk.get("/user_attributes/".concat(user_attribute_id), {
|
|
4978
5113
|
fields
|
|
4979
5114
|
}, null, options);
|
|
4980
5115
|
});
|
|
4981
|
-
return function user_attribute(
|
|
4982
|
-
return
|
|
5116
|
+
return function user_attribute(_x1662, _x1663, _x1664, _x1665) {
|
|
5117
|
+
return _ref475.apply(this, arguments);
|
|
4983
5118
|
};
|
|
4984
5119
|
}();
|
|
4985
5120
|
export var update_user_attribute = function () {
|
|
4986
|
-
var
|
|
5121
|
+
var _ref476 = _asyncToGenerator(function* (sdk, user_attribute_id, body, fields, options) {
|
|
4987
5122
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4988
5123
|
return sdk.patch("/user_attributes/".concat(user_attribute_id), {
|
|
4989
5124
|
fields
|
|
4990
5125
|
}, body, options);
|
|
4991
5126
|
});
|
|
4992
|
-
return function update_user_attribute(
|
|
4993
|
-
return
|
|
5127
|
+
return function update_user_attribute(_x1666, _x1667, _x1668, _x1669, _x1670) {
|
|
5128
|
+
return _ref476.apply(this, arguments);
|
|
4994
5129
|
};
|
|
4995
5130
|
}();
|
|
4996
5131
|
export var delete_user_attribute = function () {
|
|
4997
|
-
var
|
|
5132
|
+
var _ref477 = _asyncToGenerator(function* (sdk, user_attribute_id, options) {
|
|
4998
5133
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
4999
5134
|
return sdk.delete("/user_attributes/".concat(user_attribute_id), null, null, options);
|
|
5000
5135
|
});
|
|
5001
|
-
return function delete_user_attribute(
|
|
5002
|
-
return
|
|
5136
|
+
return function delete_user_attribute(_x1671, _x1672, _x1673) {
|
|
5137
|
+
return _ref477.apply(this, arguments);
|
|
5003
5138
|
};
|
|
5004
5139
|
}();
|
|
5005
5140
|
export var all_user_attribute_group_values = function () {
|
|
5006
|
-
var
|
|
5141
|
+
var _ref478 = _asyncToGenerator(function* (sdk, user_attribute_id, fields, options) {
|
|
5007
5142
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
5008
5143
|
return sdk.get("/user_attributes/".concat(user_attribute_id, "/group_values"), {
|
|
5009
5144
|
fields
|
|
5010
5145
|
}, null, options);
|
|
5011
5146
|
});
|
|
5012
|
-
return function all_user_attribute_group_values(
|
|
5013
|
-
return
|
|
5147
|
+
return function all_user_attribute_group_values(_x1674, _x1675, _x1676, _x1677) {
|
|
5148
|
+
return _ref478.apply(this, arguments);
|
|
5014
5149
|
};
|
|
5015
5150
|
}();
|
|
5016
5151
|
export var set_user_attribute_group_values = function () {
|
|
5017
|
-
var
|
|
5152
|
+
var _ref479 = _asyncToGenerator(function* (sdk, user_attribute_id, body, options) {
|
|
5018
5153
|
user_attribute_id = encodeParam(user_attribute_id);
|
|
5019
5154
|
return sdk.post("/user_attributes/".concat(user_attribute_id, "/group_values"), null, body, options);
|
|
5020
5155
|
});
|
|
5021
|
-
return function set_user_attribute_group_values(
|
|
5022
|
-
return
|
|
5156
|
+
return function set_user_attribute_group_values(_x1678, _x1679, _x1680, _x1681) {
|
|
5157
|
+
return _ref479.apply(this, arguments);
|
|
5023
5158
|
};
|
|
5024
5159
|
}();
|
|
5025
5160
|
export var all_workspaces = function () {
|
|
5026
|
-
var
|
|
5161
|
+
var _ref480 = _asyncToGenerator(function* (sdk, options) {
|
|
5027
5162
|
return sdk.get('/workspaces', null, null, options);
|
|
5028
5163
|
});
|
|
5029
|
-
return function all_workspaces(
|
|
5030
|
-
return
|
|
5164
|
+
return function all_workspaces(_x1682, _x1683) {
|
|
5165
|
+
return _ref480.apply(this, arguments);
|
|
5031
5166
|
};
|
|
5032
5167
|
}();
|
|
5033
5168
|
export var workspace = function () {
|
|
5034
|
-
var
|
|
5169
|
+
var _ref481 = _asyncToGenerator(function* (sdk, workspace_id, options) {
|
|
5035
5170
|
workspace_id = encodeParam(workspace_id);
|
|
5036
5171
|
return sdk.get("/workspaces/".concat(workspace_id), null, null, options);
|
|
5037
5172
|
});
|
|
5038
|
-
return function workspace(
|
|
5039
|
-
return
|
|
5173
|
+
return function workspace(_x1684, _x1685, _x1686) {
|
|
5174
|
+
return _ref481.apply(this, arguments);
|
|
5040
5175
|
};
|
|
5041
5176
|
}();
|
|
5042
5177
|
//# sourceMappingURL=funcs.js.map
|