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