@looker/sdk 22.2.0 → 22.4.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.
Files changed (49) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/lib/3.1/funcs.d.ts +5 -5
  3. package/lib/3.1/funcs.js +258 -261
  4. package/lib/3.1/funcs.js.map +1 -1
  5. package/lib/3.1/methods.d.ts +5 -5
  6. package/lib/3.1/methods.js +4 -7
  7. package/lib/3.1/methods.js.map +1 -1
  8. package/lib/3.1/methodsInterface.d.ts +5 -5
  9. package/lib/3.1/models.d.ts +55 -49
  10. package/lib/3.1/models.js +1 -0
  11. package/lib/3.1/models.js.map +1 -1
  12. package/lib/3.1/streams.d.ts +5 -5
  13. package/lib/3.1/streams.js +4 -7
  14. package/lib/3.1/streams.js.map +1 -1
  15. package/lib/4.0/funcs.d.ts +105 -109
  16. package/lib/4.0/funcs.js +1125 -1049
  17. package/lib/4.0/funcs.js.map +1 -1
  18. package/lib/4.0/methods.d.ts +105 -109
  19. package/lib/4.0/methods.js +791 -699
  20. package/lib/4.0/methods.js.map +1 -1
  21. package/lib/4.0/methodsInterface.d.ts +105 -109
  22. package/lib/4.0/models.d.ts +294 -261
  23. package/lib/4.0/models.js +2 -9
  24. package/lib/4.0/models.js.map +1 -1
  25. package/lib/4.0/streams.d.ts +105 -109
  26. package/lib/4.0/streams.js +791 -699
  27. package/lib/4.0/streams.js.map +1 -1
  28. package/lib/constants.d.ts +1 -1
  29. package/lib/constants.js +1 -1
  30. package/lib/constants.js.map +1 -1
  31. package/lib/esm/3.1/funcs.js +258 -261
  32. package/lib/esm/3.1/funcs.js.map +1 -1
  33. package/lib/esm/3.1/methods.js +4 -7
  34. package/lib/esm/3.1/methods.js.map +1 -1
  35. package/lib/esm/3.1/models.js +1 -0
  36. package/lib/esm/3.1/models.js.map +1 -1
  37. package/lib/esm/3.1/streams.js +4 -7
  38. package/lib/esm/3.1/streams.js.map +1 -1
  39. package/lib/esm/4.0/funcs.js +1120 -1032
  40. package/lib/esm/4.0/funcs.js.map +1 -1
  41. package/lib/esm/4.0/methods.js +791 -699
  42. package/lib/esm/4.0/methods.js.map +1 -1
  43. package/lib/esm/4.0/models.js +1 -7
  44. package/lib/esm/4.0/models.js.map +1 -1
  45. package/lib/esm/4.0/streams.js +791 -699
  46. package/lib/esm/4.0/streams.js.map +1 -1
  47. package/lib/esm/constants.js +1 -1
  48. package/lib/esm/constants.js.map +1 -1
  49. package/package.json +2 -2
package/lib/3.1/funcs.js CHANGED
@@ -1205,8 +1205,6 @@ var search_dashboards = function () {
1205
1205
  fields: request.fields,
1206
1206
  page: request.page,
1207
1207
  per_page: request.per_page,
1208
- limit: request.limit,
1209
- offset: request.offset,
1210
1208
  sorts: request.sorts,
1211
1209
  filter_or: request.filter_or
1212
1210
  }, null, options);
@@ -1396,13 +1394,14 @@ var dashboard_dashboard_elements = function () {
1396
1394
  exports.dashboard_dashboard_elements = dashboard_dashboard_elements;
1397
1395
 
1398
1396
  var create_dashboard_element = function () {
1399
- var _ref102 = _asyncToGenerator(function* (sdk, body, fields, options) {
1397
+ var _ref102 = _asyncToGenerator(function* (sdk, request, options) {
1400
1398
  return sdk.post('/dashboard_elements', {
1401
- fields
1402
- }, body, options);
1399
+ fields: request.fields,
1400
+ apply_filters: request.apply_filters
1401
+ }, request.body, options);
1403
1402
  });
1404
1403
 
1405
- return function create_dashboard_element(_x316, _x317, _x318, _x319) {
1404
+ return function create_dashboard_element(_x316, _x317, _x318) {
1406
1405
  return _ref102.apply(this, arguments);
1407
1406
  };
1408
1407
  }();
@@ -1417,7 +1416,7 @@ var dashboard_filter = function () {
1417
1416
  }, null, options);
1418
1417
  });
1419
1418
 
1420
- return function dashboard_filter(_x320, _x321, _x322, _x323) {
1419
+ return function dashboard_filter(_x319, _x320, _x321, _x322) {
1421
1420
  return _ref103.apply(this, arguments);
1422
1421
  };
1423
1422
  }();
@@ -1432,7 +1431,7 @@ var update_dashboard_filter = function () {
1432
1431
  }, body, options);
1433
1432
  });
1434
1433
 
1435
- return function update_dashboard_filter(_x324, _x325, _x326, _x327, _x328) {
1434
+ return function update_dashboard_filter(_x323, _x324, _x325, _x326, _x327) {
1436
1435
  return _ref104.apply(this, arguments);
1437
1436
  };
1438
1437
  }();
@@ -1445,7 +1444,7 @@ var delete_dashboard_filter = function () {
1445
1444
  return sdk.delete("/dashboard_filters/".concat(dashboard_filter_id), null, null, options);
1446
1445
  });
1447
1446
 
1448
- return function delete_dashboard_filter(_x329, _x330, _x331) {
1447
+ return function delete_dashboard_filter(_x328, _x329, _x330) {
1449
1448
  return _ref105.apply(this, arguments);
1450
1449
  };
1451
1450
  }();
@@ -1460,7 +1459,7 @@ var dashboard_dashboard_filters = function () {
1460
1459
  }, null, options);
1461
1460
  });
1462
1461
 
1463
- return function dashboard_dashboard_filters(_x332, _x333, _x334, _x335) {
1462
+ return function dashboard_dashboard_filters(_x331, _x332, _x333, _x334) {
1464
1463
  return _ref106.apply(this, arguments);
1465
1464
  };
1466
1465
  }();
@@ -1474,7 +1473,7 @@ var create_dashboard_filter = function () {
1474
1473
  }, body, options);
1475
1474
  });
1476
1475
 
1477
- return function create_dashboard_filter(_x336, _x337, _x338, _x339) {
1476
+ return function create_dashboard_filter(_x335, _x336, _x337, _x338) {
1478
1477
  return _ref107.apply(this, arguments);
1479
1478
  };
1480
1479
  }();
@@ -1489,7 +1488,7 @@ var dashboard_layout_component = function () {
1489
1488
  }, null, options);
1490
1489
  });
1491
1490
 
1492
- return function dashboard_layout_component(_x340, _x341, _x342, _x343) {
1491
+ return function dashboard_layout_component(_x339, _x340, _x341, _x342) {
1493
1492
  return _ref108.apply(this, arguments);
1494
1493
  };
1495
1494
  }();
@@ -1504,7 +1503,7 @@ var update_dashboard_layout_component = function () {
1504
1503
  }, body, options);
1505
1504
  });
1506
1505
 
1507
- return function update_dashboard_layout_component(_x344, _x345, _x346, _x347, _x348) {
1506
+ return function update_dashboard_layout_component(_x343, _x344, _x345, _x346, _x347) {
1508
1507
  return _ref109.apply(this, arguments);
1509
1508
  };
1510
1509
  }();
@@ -1519,7 +1518,7 @@ var dashboard_layout_dashboard_layout_components = function () {
1519
1518
  }, null, options);
1520
1519
  });
1521
1520
 
1522
- return function dashboard_layout_dashboard_layout_components(_x349, _x350, _x351, _x352) {
1521
+ return function dashboard_layout_dashboard_layout_components(_x348, _x349, _x350, _x351) {
1523
1522
  return _ref110.apply(this, arguments);
1524
1523
  };
1525
1524
  }();
@@ -1534,7 +1533,7 @@ var dashboard_layout = function () {
1534
1533
  }, null, options);
1535
1534
  });
1536
1535
 
1537
- return function dashboard_layout(_x353, _x354, _x355, _x356) {
1536
+ return function dashboard_layout(_x352, _x353, _x354, _x355) {
1538
1537
  return _ref111.apply(this, arguments);
1539
1538
  };
1540
1539
  }();
@@ -1549,7 +1548,7 @@ var update_dashboard_layout = function () {
1549
1548
  }, body, options);
1550
1549
  });
1551
1550
 
1552
- return function update_dashboard_layout(_x357, _x358, _x359, _x360, _x361) {
1551
+ return function update_dashboard_layout(_x356, _x357, _x358, _x359, _x360) {
1553
1552
  return _ref112.apply(this, arguments);
1554
1553
  };
1555
1554
  }();
@@ -1562,7 +1561,7 @@ var delete_dashboard_layout = function () {
1562
1561
  return sdk.delete("/dashboard_layouts/".concat(dashboard_layout_id), null, null, options);
1563
1562
  });
1564
1563
 
1565
- return function delete_dashboard_layout(_x362, _x363, _x364) {
1564
+ return function delete_dashboard_layout(_x361, _x362, _x363) {
1566
1565
  return _ref113.apply(this, arguments);
1567
1566
  };
1568
1567
  }();
@@ -1577,7 +1576,7 @@ var dashboard_dashboard_layouts = function () {
1577
1576
  }, null, options);
1578
1577
  });
1579
1578
 
1580
- return function dashboard_dashboard_layouts(_x365, _x366, _x367, _x368) {
1579
+ return function dashboard_dashboard_layouts(_x364, _x365, _x366, _x367) {
1581
1580
  return _ref114.apply(this, arguments);
1582
1581
  };
1583
1582
  }();
@@ -1591,7 +1590,7 @@ var create_dashboard_layout = function () {
1591
1590
  }, body, options);
1592
1591
  });
1593
1592
 
1594
- return function create_dashboard_layout(_x369, _x370, _x371, _x372) {
1593
+ return function create_dashboard_layout(_x368, _x369, _x370, _x371) {
1595
1594
  return _ref115.apply(this, arguments);
1596
1595
  };
1597
1596
  }();
@@ -1603,7 +1602,7 @@ var perform_data_action = function () {
1603
1602
  return sdk.post('/data_actions', null, body, options);
1604
1603
  });
1605
1604
 
1606
- return function perform_data_action(_x373, _x374, _x375) {
1605
+ return function perform_data_action(_x372, _x373, _x374) {
1607
1606
  return _ref116.apply(this, arguments);
1608
1607
  };
1609
1608
  }();
@@ -1615,7 +1614,7 @@ var fetch_remote_data_action_form = function () {
1615
1614
  return sdk.post('/data_actions/form', null, body, options);
1616
1615
  });
1617
1616
 
1618
- return function fetch_remote_data_action_form(_x376, _x377, _x378) {
1617
+ return function fetch_remote_data_action_form(_x375, _x376, _x377) {
1619
1618
  return _ref117.apply(this, arguments);
1620
1619
  };
1621
1620
  }();
@@ -1627,7 +1626,7 @@ var all_datagroups = function () {
1627
1626
  return sdk.get('/datagroups', null, null, options);
1628
1627
  });
1629
1628
 
1630
- return function all_datagroups(_x379, _x380) {
1629
+ return function all_datagroups(_x378, _x379) {
1631
1630
  return _ref118.apply(this, arguments);
1632
1631
  };
1633
1632
  }();
@@ -1640,7 +1639,7 @@ var datagroup = function () {
1640
1639
  return sdk.get("/datagroups/".concat(datagroup_id), null, null, options);
1641
1640
  });
1642
1641
 
1643
- return function datagroup(_x381, _x382, _x383) {
1642
+ return function datagroup(_x380, _x381, _x382) {
1644
1643
  return _ref119.apply(this, arguments);
1645
1644
  };
1646
1645
  }();
@@ -1653,7 +1652,7 @@ var update_datagroup = function () {
1653
1652
  return sdk.patch("/datagroups/".concat(datagroup_id), null, body, options);
1654
1653
  });
1655
1654
 
1656
- return function update_datagroup(_x384, _x385, _x386, _x387) {
1655
+ return function update_datagroup(_x383, _x384, _x385, _x386) {
1657
1656
  return _ref120.apply(this, arguments);
1658
1657
  };
1659
1658
  }();
@@ -1669,7 +1668,7 @@ var graph_derived_tables_for_model = function () {
1669
1668
  }, null, options);
1670
1669
  });
1671
1670
 
1672
- return function graph_derived_tables_for_model(_x388, _x389, _x390) {
1671
+ return function graph_derived_tables_for_model(_x387, _x388, _x389) {
1673
1672
  return _ref121.apply(this, arguments);
1674
1673
  };
1675
1674
  }();
@@ -1685,7 +1684,7 @@ var graph_derived_tables_for_view = function () {
1685
1684
  }, null, options);
1686
1685
  });
1687
1686
 
1688
- return function graph_derived_tables_for_view(_x391, _x392, _x393) {
1687
+ return function graph_derived_tables_for_view(_x390, _x391, _x392) {
1689
1688
  return _ref122.apply(this, arguments);
1690
1689
  };
1691
1690
  }();
@@ -1704,7 +1703,7 @@ var start_pdt_build = function () {
1704
1703
  }, null, options);
1705
1704
  });
1706
1705
 
1707
- return function start_pdt_build(_x394, _x395, _x396) {
1706
+ return function start_pdt_build(_x393, _x394, _x395) {
1708
1707
  return _ref123.apply(this, arguments);
1709
1708
  };
1710
1709
  }();
@@ -1717,7 +1716,7 @@ var check_pdt_build = function () {
1717
1716
  return sdk.get("/derived_table/".concat(materialization_id, "/status"), null, null, options);
1718
1717
  });
1719
1718
 
1720
- return function check_pdt_build(_x397, _x398, _x399) {
1719
+ return function check_pdt_build(_x396, _x397, _x398) {
1721
1720
  return _ref124.apply(this, arguments);
1722
1721
  };
1723
1722
  }();
@@ -1732,7 +1731,7 @@ var stop_pdt_build = function () {
1732
1731
  }, null, options);
1733
1732
  });
1734
1733
 
1735
- return function stop_pdt_build(_x400, _x401, _x402, _x403) {
1734
+ return function stop_pdt_build(_x399, _x400, _x401, _x402) {
1736
1735
  return _ref125.apply(this, arguments);
1737
1736
  };
1738
1737
  }();
@@ -1757,7 +1756,7 @@ var search_folders = function () {
1757
1756
  }, null, options);
1758
1757
  });
1759
1758
 
1760
- return function search_folders(_x404, _x405, _x406) {
1759
+ return function search_folders(_x403, _x404, _x405) {
1761
1760
  return _ref126.apply(this, arguments);
1762
1761
  };
1763
1762
  }();
@@ -1772,7 +1771,7 @@ var folder = function () {
1772
1771
  }, null, options);
1773
1772
  });
1774
1773
 
1775
- return function folder(_x407, _x408, _x409, _x410) {
1774
+ return function folder(_x406, _x407, _x408, _x409) {
1776
1775
  return _ref127.apply(this, arguments);
1777
1776
  };
1778
1777
  }();
@@ -1785,7 +1784,7 @@ var update_folder = function () {
1785
1784
  return sdk.patch("/folders/".concat(folder_id), null, body, options);
1786
1785
  });
1787
1786
 
1788
- return function update_folder(_x411, _x412, _x413, _x414) {
1787
+ return function update_folder(_x410, _x411, _x412, _x413) {
1789
1788
  return _ref128.apply(this, arguments);
1790
1789
  };
1791
1790
  }();
@@ -1798,7 +1797,7 @@ var delete_folder = function () {
1798
1797
  return sdk.delete("/folders/".concat(folder_id), null, null, options);
1799
1798
  });
1800
1799
 
1801
- return function delete_folder(_x415, _x416, _x417) {
1800
+ return function delete_folder(_x414, _x415, _x416) {
1802
1801
  return _ref129.apply(this, arguments);
1803
1802
  };
1804
1803
  }();
@@ -1812,7 +1811,7 @@ var all_folders = function () {
1812
1811
  }, null, options);
1813
1812
  });
1814
1813
 
1815
- return function all_folders(_x418, _x419, _x420) {
1814
+ return function all_folders(_x417, _x418, _x419) {
1816
1815
  return _ref130.apply(this, arguments);
1817
1816
  };
1818
1817
  }();
@@ -1824,7 +1823,7 @@ var create_folder = function () {
1824
1823
  return sdk.post('/folders', null, body, options);
1825
1824
  });
1826
1825
 
1827
- return function create_folder(_x421, _x422, _x423) {
1826
+ return function create_folder(_x420, _x421, _x422) {
1828
1827
  return _ref131.apply(this, arguments);
1829
1828
  };
1830
1829
  }();
@@ -1842,7 +1841,7 @@ var folder_children = function () {
1842
1841
  }, null, options);
1843
1842
  });
1844
1843
 
1845
- return function folder_children(_x424, _x425, _x426) {
1844
+ return function folder_children(_x423, _x424, _x425) {
1846
1845
  return _ref132.apply(this, arguments);
1847
1846
  };
1848
1847
  }();
@@ -1859,7 +1858,7 @@ var folder_children_search = function () {
1859
1858
  }, null, options);
1860
1859
  });
1861
1860
 
1862
- return function folder_children_search(_x427, _x428, _x429) {
1861
+ return function folder_children_search(_x426, _x427, _x428) {
1863
1862
  return _ref133.apply(this, arguments);
1864
1863
  };
1865
1864
  }();
@@ -1874,7 +1873,7 @@ var folder_parent = function () {
1874
1873
  }, null, options);
1875
1874
  });
1876
1875
 
1877
- return function folder_parent(_x430, _x431, _x432, _x433) {
1876
+ return function folder_parent(_x429, _x430, _x431, _x432) {
1878
1877
  return _ref134.apply(this, arguments);
1879
1878
  };
1880
1879
  }();
@@ -1889,7 +1888,7 @@ var folder_ancestors = function () {
1889
1888
  }, null, options);
1890
1889
  });
1891
1890
 
1892
- return function folder_ancestors(_x434, _x435, _x436, _x437) {
1891
+ return function folder_ancestors(_x433, _x434, _x435, _x436) {
1893
1892
  return _ref135.apply(this, arguments);
1894
1893
  };
1895
1894
  }();
@@ -1904,7 +1903,7 @@ var folder_looks = function () {
1904
1903
  }, null, options);
1905
1904
  });
1906
1905
 
1907
- return function folder_looks(_x438, _x439, _x440, _x441) {
1906
+ return function folder_looks(_x437, _x438, _x439, _x440) {
1908
1907
  return _ref136.apply(this, arguments);
1909
1908
  };
1910
1909
  }();
@@ -1919,7 +1918,7 @@ var folder_dashboards = function () {
1919
1918
  }, null, options);
1920
1919
  });
1921
1920
 
1922
- return function folder_dashboards(_x442, _x443, _x444, _x445) {
1921
+ return function folder_dashboards(_x441, _x442, _x443, _x444) {
1923
1922
  return _ref137.apply(this, arguments);
1924
1923
  };
1925
1924
  }();
@@ -1939,7 +1938,7 @@ var all_groups = function () {
1939
1938
  }, null, options);
1940
1939
  });
1941
1940
 
1942
- return function all_groups(_x446, _x447, _x448) {
1941
+ return function all_groups(_x445, _x446, _x447) {
1943
1942
  return _ref138.apply(this, arguments);
1944
1943
  };
1945
1944
  }();
@@ -1953,7 +1952,7 @@ var create_group = function () {
1953
1952
  }, body, options);
1954
1953
  });
1955
1954
 
1956
- return function create_group(_x449, _x450, _x451, _x452) {
1955
+ return function create_group(_x448, _x449, _x450, _x451) {
1957
1956
  return _ref139.apply(this, arguments);
1958
1957
  };
1959
1958
  }();
@@ -1976,7 +1975,7 @@ var search_groups = function () {
1976
1975
  }, null, options);
1977
1976
  });
1978
1977
 
1979
- return function search_groups(_x453, _x454, _x455) {
1978
+ return function search_groups(_x452, _x453, _x454) {
1980
1979
  return _ref140.apply(this, arguments);
1981
1980
  };
1982
1981
  }();
@@ -1990,7 +1989,7 @@ var group = function () {
1990
1989
  }, null, options);
1991
1990
  });
1992
1991
 
1993
- return function group(_x456, _x457, _x458, _x459) {
1992
+ return function group(_x455, _x456, _x457, _x458) {
1994
1993
  return _ref141.apply(this, arguments);
1995
1994
  };
1996
1995
  }();
@@ -2004,7 +2003,7 @@ var update_group = function () {
2004
2003
  }, body, options);
2005
2004
  });
2006
2005
 
2007
- return function update_group(_x460, _x461, _x462, _x463, _x464) {
2006
+ return function update_group(_x459, _x460, _x461, _x462, _x463) {
2008
2007
  return _ref142.apply(this, arguments);
2009
2008
  };
2010
2009
  }();
@@ -2016,7 +2015,7 @@ var delete_group = function () {
2016
2015
  return sdk.delete("/groups/".concat(group_id), null, null, options);
2017
2016
  });
2018
2017
 
2019
- return function delete_group(_x465, _x466, _x467) {
2018
+ return function delete_group(_x464, _x465, _x466) {
2020
2019
  return _ref143.apply(this, arguments);
2021
2020
  };
2022
2021
  }();
@@ -2030,7 +2029,7 @@ var all_group_groups = function () {
2030
2029
  }, null, options);
2031
2030
  });
2032
2031
 
2033
- return function all_group_groups(_x468, _x469, _x470, _x471) {
2032
+ return function all_group_groups(_x467, _x468, _x469, _x470) {
2034
2033
  return _ref144.apply(this, arguments);
2035
2034
  };
2036
2035
  }();
@@ -2042,7 +2041,7 @@ var add_group_group = function () {
2042
2041
  return sdk.post("/groups/".concat(group_id, "/groups"), null, body, options);
2043
2042
  });
2044
2043
 
2045
- return function add_group_group(_x472, _x473, _x474, _x475) {
2044
+ return function add_group_group(_x471, _x472, _x473, _x474) {
2046
2045
  return _ref145.apply(this, arguments);
2047
2046
  };
2048
2047
  }();
@@ -2059,7 +2058,7 @@ var all_group_users = function () {
2059
2058
  }, null, options);
2060
2059
  });
2061
2060
 
2062
- return function all_group_users(_x476, _x477, _x478) {
2061
+ return function all_group_users(_x475, _x476, _x477) {
2063
2062
  return _ref146.apply(this, arguments);
2064
2063
  };
2065
2064
  }();
@@ -2071,7 +2070,7 @@ var add_group_user = function () {
2071
2070
  return sdk.post("/groups/".concat(group_id, "/users"), null, body, options);
2072
2071
  });
2073
2072
 
2074
- return function add_group_user(_x479, _x480, _x481, _x482) {
2073
+ return function add_group_user(_x478, _x479, _x480, _x481) {
2075
2074
  return _ref147.apply(this, arguments);
2076
2075
  };
2077
2076
  }();
@@ -2083,7 +2082,7 @@ var delete_group_user = function () {
2083
2082
  return sdk.delete("/groups/".concat(group_id, "/users/").concat(user_id), null, null, options);
2084
2083
  });
2085
2084
 
2086
- return function delete_group_user(_x483, _x484, _x485, _x486) {
2085
+ return function delete_group_user(_x482, _x483, _x484, _x485) {
2087
2086
  return _ref148.apply(this, arguments);
2088
2087
  };
2089
2088
  }();
@@ -2095,7 +2094,7 @@ var delete_group_from_group = function () {
2095
2094
  return sdk.delete("/groups/".concat(group_id, "/groups/").concat(deleting_group_id), null, null, options);
2096
2095
  });
2097
2096
 
2098
- return function delete_group_from_group(_x487, _x488, _x489, _x490) {
2097
+ return function delete_group_from_group(_x486, _x487, _x488, _x489) {
2099
2098
  return _ref149.apply(this, arguments);
2100
2099
  };
2101
2100
  }();
@@ -2107,7 +2106,7 @@ var update_user_attribute_group_value = function () {
2107
2106
  return sdk.patch("/groups/".concat(group_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
2108
2107
  });
2109
2108
 
2110
- return function update_user_attribute_group_value(_x491, _x492, _x493, _x494, _x495) {
2109
+ return function update_user_attribute_group_value(_x490, _x491, _x492, _x493, _x494) {
2111
2110
  return _ref150.apply(this, arguments);
2112
2111
  };
2113
2112
  }();
@@ -2119,7 +2118,7 @@ var delete_user_attribute_group_value = function () {
2119
2118
  return sdk.delete("/groups/".concat(group_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
2120
2119
  });
2121
2120
 
2122
- return function delete_user_attribute_group_value(_x496, _x497, _x498, _x499) {
2121
+ return function delete_user_attribute_group_value(_x495, _x496, _x497, _x498) {
2123
2122
  return _ref151.apply(this, arguments);
2124
2123
  };
2125
2124
  }();
@@ -2133,7 +2132,7 @@ var all_homepages = function () {
2133
2132
  }, null, options);
2134
2133
  });
2135
2134
 
2136
- return function all_homepages(_x500, _x501, _x502) {
2135
+ return function all_homepages(_x499, _x500, _x501) {
2137
2136
  return _ref152.apply(this, arguments);
2138
2137
  };
2139
2138
  }();
@@ -2147,7 +2146,7 @@ var create_homepage = function () {
2147
2146
  }, body, options);
2148
2147
  });
2149
2148
 
2150
- return function create_homepage(_x503, _x504, _x505, _x506) {
2149
+ return function create_homepage(_x502, _x503, _x504, _x505) {
2151
2150
  return _ref153.apply(this, arguments);
2152
2151
  };
2153
2152
  }();
@@ -2173,7 +2172,7 @@ var search_homepages = function () {
2173
2172
  }, null, options);
2174
2173
  });
2175
2174
 
2176
- return function search_homepages(_x507, _x508, _x509) {
2175
+ return function search_homepages(_x506, _x507, _x508) {
2177
2176
  return _ref154.apply(this, arguments);
2178
2177
  };
2179
2178
  }();
@@ -2187,7 +2186,7 @@ var homepage = function () {
2187
2186
  }, null, options);
2188
2187
  });
2189
2188
 
2190
- return function homepage(_x510, _x511, _x512, _x513) {
2189
+ return function homepage(_x509, _x510, _x511, _x512) {
2191
2190
  return _ref155.apply(this, arguments);
2192
2191
  };
2193
2192
  }();
@@ -2201,7 +2200,7 @@ var update_homepage = function () {
2201
2200
  }, body, options);
2202
2201
  });
2203
2202
 
2204
- return function update_homepage(_x514, _x515, _x516, _x517, _x518) {
2203
+ return function update_homepage(_x513, _x514, _x515, _x516, _x517) {
2205
2204
  return _ref156.apply(this, arguments);
2206
2205
  };
2207
2206
  }();
@@ -2213,7 +2212,7 @@ var delete_homepage = function () {
2213
2212
  return sdk.delete("/homepages/".concat(homepage_id), null, null, options);
2214
2213
  });
2215
2214
 
2216
- return function delete_homepage(_x519, _x520, _x521) {
2215
+ return function delete_homepage(_x518, _x519, _x520) {
2217
2216
  return _ref157.apply(this, arguments);
2218
2217
  };
2219
2218
  }();
@@ -2229,7 +2228,7 @@ var all_homepage_items = function () {
2229
2228
  }, null, options);
2230
2229
  });
2231
2230
 
2232
- return function all_homepage_items(_x522, _x523, _x524) {
2231
+ return function all_homepage_items(_x521, _x522, _x523) {
2233
2232
  return _ref158.apply(this, arguments);
2234
2233
  };
2235
2234
  }();
@@ -2243,7 +2242,7 @@ var create_homepage_item = function () {
2243
2242
  }, body, options);
2244
2243
  });
2245
2244
 
2246
- return function create_homepage_item(_x525, _x526, _x527, _x528) {
2245
+ return function create_homepage_item(_x524, _x525, _x526, _x527) {
2247
2246
  return _ref159.apply(this, arguments);
2248
2247
  };
2249
2248
  }();
@@ -2257,7 +2256,7 @@ var homepage_item = function () {
2257
2256
  }, null, options);
2258
2257
  });
2259
2258
 
2260
- return function homepage_item(_x529, _x530, _x531, _x532) {
2259
+ return function homepage_item(_x528, _x529, _x530, _x531) {
2261
2260
  return _ref160.apply(this, arguments);
2262
2261
  };
2263
2262
  }();
@@ -2271,7 +2270,7 @@ var update_homepage_item = function () {
2271
2270
  }, body, options);
2272
2271
  });
2273
2272
 
2274
- return function update_homepage_item(_x533, _x534, _x535, _x536, _x537) {
2273
+ return function update_homepage_item(_x532, _x533, _x534, _x535, _x536) {
2275
2274
  return _ref161.apply(this, arguments);
2276
2275
  };
2277
2276
  }();
@@ -2283,7 +2282,7 @@ var delete_homepage_item = function () {
2283
2282
  return sdk.delete("/homepage_items/".concat(homepage_item_id), null, null, options);
2284
2283
  });
2285
2284
 
2286
- return function delete_homepage_item(_x538, _x539, _x540) {
2285
+ return function delete_homepage_item(_x537, _x538, _x539) {
2287
2286
  return _ref162.apply(this, arguments);
2288
2287
  };
2289
2288
  }();
@@ -2298,7 +2297,7 @@ var all_homepage_sections = function () {
2298
2297
  }, null, options);
2299
2298
  });
2300
2299
 
2301
- return function all_homepage_sections(_x541, _x542, _x543) {
2300
+ return function all_homepage_sections(_x540, _x541, _x542) {
2302
2301
  return _ref163.apply(this, arguments);
2303
2302
  };
2304
2303
  }();
@@ -2312,7 +2311,7 @@ var create_homepage_section = function () {
2312
2311
  }, body, options);
2313
2312
  });
2314
2313
 
2315
- return function create_homepage_section(_x544, _x545, _x546, _x547) {
2314
+ return function create_homepage_section(_x543, _x544, _x545, _x546) {
2316
2315
  return _ref164.apply(this, arguments);
2317
2316
  };
2318
2317
  }();
@@ -2326,7 +2325,7 @@ var homepage_section = function () {
2326
2325
  }, null, options);
2327
2326
  });
2328
2327
 
2329
- return function homepage_section(_x548, _x549, _x550, _x551) {
2328
+ return function homepage_section(_x547, _x548, _x549, _x550) {
2330
2329
  return _ref165.apply(this, arguments);
2331
2330
  };
2332
2331
  }();
@@ -2340,7 +2339,7 @@ var update_homepage_section = function () {
2340
2339
  }, body, options);
2341
2340
  });
2342
2341
 
2343
- return function update_homepage_section(_x552, _x553, _x554, _x555, _x556) {
2342
+ return function update_homepage_section(_x551, _x552, _x553, _x554, _x555) {
2344
2343
  return _ref166.apply(this, arguments);
2345
2344
  };
2346
2345
  }();
@@ -2352,7 +2351,7 @@ var delete_homepage_section = function () {
2352
2351
  return sdk.delete("/homepage_sections/".concat(homepage_section_id), null, null, options);
2353
2352
  });
2354
2353
 
2355
- return function delete_homepage_section(_x557, _x558, _x559) {
2354
+ return function delete_homepage_section(_x556, _x557, _x558) {
2356
2355
  return _ref167.apply(this, arguments);
2357
2356
  };
2358
2357
  }();
@@ -2366,7 +2365,7 @@ var all_primary_homepage_sections = function () {
2366
2365
  }, null, options);
2367
2366
  });
2368
2367
 
2369
- return function all_primary_homepage_sections(_x560, _x561, _x562) {
2368
+ return function all_primary_homepage_sections(_x559, _x560, _x561) {
2370
2369
  return _ref168.apply(this, arguments);
2371
2370
  };
2372
2371
  }();
@@ -2380,7 +2379,7 @@ var all_integration_hubs = function () {
2380
2379
  }, null, options);
2381
2380
  });
2382
2381
 
2383
- return function all_integration_hubs(_x563, _x564, _x565) {
2382
+ return function all_integration_hubs(_x562, _x563, _x564) {
2384
2383
  return _ref169.apply(this, arguments);
2385
2384
  };
2386
2385
  }();
@@ -2394,7 +2393,7 @@ var create_integration_hub = function () {
2394
2393
  }, body, options);
2395
2394
  });
2396
2395
 
2397
- return function create_integration_hub(_x566, _x567, _x568, _x569) {
2396
+ return function create_integration_hub(_x565, _x566, _x567, _x568) {
2398
2397
  return _ref170.apply(this, arguments);
2399
2398
  };
2400
2399
  }();
@@ -2408,7 +2407,7 @@ var integration_hub = function () {
2408
2407
  }, null, options);
2409
2408
  });
2410
2409
 
2411
- return function integration_hub(_x570, _x571, _x572, _x573) {
2410
+ return function integration_hub(_x569, _x570, _x571, _x572) {
2412
2411
  return _ref171.apply(this, arguments);
2413
2412
  };
2414
2413
  }();
@@ -2422,7 +2421,7 @@ var update_integration_hub = function () {
2422
2421
  }, body, options);
2423
2422
  });
2424
2423
 
2425
- return function update_integration_hub(_x574, _x575, _x576, _x577, _x578) {
2424
+ return function update_integration_hub(_x573, _x574, _x575, _x576, _x577) {
2426
2425
  return _ref172.apply(this, arguments);
2427
2426
  };
2428
2427
  }();
@@ -2434,7 +2433,7 @@ var delete_integration_hub = function () {
2434
2433
  return sdk.delete("/integration_hubs/".concat(integration_hub_id), null, null, options);
2435
2434
  });
2436
2435
 
2437
- return function delete_integration_hub(_x579, _x580, _x581) {
2436
+ return function delete_integration_hub(_x578, _x579, _x580) {
2438
2437
  return _ref173.apply(this, arguments);
2439
2438
  };
2440
2439
  }();
@@ -2446,7 +2445,7 @@ var accept_integration_hub_legal_agreement = function () {
2446
2445
  return sdk.post("/integration_hubs/".concat(integration_hub_id, "/accept_legal_agreement"), null, null, options);
2447
2446
  });
2448
2447
 
2449
- return function accept_integration_hub_legal_agreement(_x582, _x583, _x584) {
2448
+ return function accept_integration_hub_legal_agreement(_x581, _x582, _x583) {
2450
2449
  return _ref174.apply(this, arguments);
2451
2450
  };
2452
2451
  }();
@@ -2461,7 +2460,7 @@ var all_integrations = function () {
2461
2460
  }, null, options);
2462
2461
  });
2463
2462
 
2464
- return function all_integrations(_x585, _x586, _x587) {
2463
+ return function all_integrations(_x584, _x585, _x586) {
2465
2464
  return _ref175.apply(this, arguments);
2466
2465
  };
2467
2466
  }();
@@ -2476,7 +2475,7 @@ var integration = function () {
2476
2475
  }, null, options);
2477
2476
  });
2478
2477
 
2479
- return function integration(_x588, _x589, _x590, _x591) {
2478
+ return function integration(_x587, _x588, _x589, _x590) {
2480
2479
  return _ref176.apply(this, arguments);
2481
2480
  };
2482
2481
  }();
@@ -2491,7 +2490,7 @@ var update_integration = function () {
2491
2490
  }, body, options);
2492
2491
  });
2493
2492
 
2494
- return function update_integration(_x592, _x593, _x594, _x595, _x596) {
2493
+ return function update_integration(_x591, _x592, _x593, _x594, _x595) {
2495
2494
  return _ref177.apply(this, arguments);
2496
2495
  };
2497
2496
  }();
@@ -2504,7 +2503,7 @@ var fetch_integration_form = function () {
2504
2503
  return sdk.post("/integrations/".concat(integration_id, "/form"), null, body, options);
2505
2504
  });
2506
2505
 
2507
- return function fetch_integration_form(_x597, _x598, _x599, _x600) {
2506
+ return function fetch_integration_form(_x596, _x597, _x598, _x599) {
2508
2507
  return _ref178.apply(this, arguments);
2509
2508
  };
2510
2509
  }();
@@ -2517,7 +2516,7 @@ var test_integration = function () {
2517
2516
  return sdk.post("/integrations/".concat(integration_id, "/test"), null, null, options);
2518
2517
  });
2519
2518
 
2520
- return function test_integration(_x601, _x602, _x603) {
2519
+ return function test_integration(_x600, _x601, _x602) {
2521
2520
  return _ref179.apply(this, arguments);
2522
2521
  };
2523
2522
  }();
@@ -2531,7 +2530,7 @@ var all_looks = function () {
2531
2530
  }, null, options);
2532
2531
  });
2533
2532
 
2534
- return function all_looks(_x604, _x605, _x606) {
2533
+ return function all_looks(_x603, _x604, _x605) {
2535
2534
  return _ref180.apply(this, arguments);
2536
2535
  };
2537
2536
  }();
@@ -2545,7 +2544,7 @@ var create_look = function () {
2545
2544
  }, body, options);
2546
2545
  });
2547
2546
 
2548
- return function create_look(_x607, _x608, _x609, _x610) {
2547
+ return function create_look(_x606, _x607, _x608, _x609) {
2549
2548
  return _ref181.apply(this, arguments);
2550
2549
  };
2551
2550
  }();
@@ -2568,14 +2567,12 @@ var search_looks = function () {
2568
2567
  fields: request.fields,
2569
2568
  page: request.page,
2570
2569
  per_page: request.per_page,
2571
- limit: request.limit,
2572
- offset: request.offset,
2573
2570
  sorts: request.sorts,
2574
2571
  filter_or: request.filter_or
2575
2572
  }, null, options);
2576
2573
  });
2577
2574
 
2578
- return function search_looks(_x611, _x612, _x613) {
2575
+ return function search_looks(_x610, _x611, _x612) {
2579
2576
  return _ref182.apply(this, arguments);
2580
2577
  };
2581
2578
  }();
@@ -2589,7 +2586,7 @@ var look = function () {
2589
2586
  }, null, options);
2590
2587
  });
2591
2588
 
2592
- return function look(_x614, _x615, _x616, _x617) {
2589
+ return function look(_x613, _x614, _x615, _x616) {
2593
2590
  return _ref183.apply(this, arguments);
2594
2591
  };
2595
2592
  }();
@@ -2603,7 +2600,7 @@ var update_look = function () {
2603
2600
  }, body, options);
2604
2601
  });
2605
2602
 
2606
- return function update_look(_x618, _x619, _x620, _x621, _x622) {
2603
+ return function update_look(_x617, _x618, _x619, _x620, _x621) {
2607
2604
  return _ref184.apply(this, arguments);
2608
2605
  };
2609
2606
  }();
@@ -2615,7 +2612,7 @@ var delete_look = function () {
2615
2612
  return sdk.delete("/looks/".concat(look_id), null, null, options);
2616
2613
  });
2617
2614
 
2618
- return function delete_look(_x623, _x624, _x625) {
2615
+ return function delete_look(_x622, _x623, _x624) {
2619
2616
  return _ref185.apply(this, arguments);
2620
2617
  };
2621
2618
  }();
@@ -2641,7 +2638,7 @@ var run_look = function () {
2641
2638
  }, null, options);
2642
2639
  });
2643
2640
 
2644
- return function run_look(_x626, _x627, _x628) {
2641
+ return function run_look(_x625, _x626, _x627) {
2645
2642
  return _ref186.apply(this, arguments);
2646
2643
  };
2647
2644
  }();
@@ -2655,7 +2652,7 @@ var all_lookml_models = function () {
2655
2652
  }, null, options);
2656
2653
  });
2657
2654
 
2658
- return function all_lookml_models(_x629, _x630, _x631) {
2655
+ return function all_lookml_models(_x628, _x629, _x630) {
2659
2656
  return _ref187.apply(this, arguments);
2660
2657
  };
2661
2658
  }();
@@ -2667,7 +2664,7 @@ var create_lookml_model = function () {
2667
2664
  return sdk.post('/lookml_models', null, body, options);
2668
2665
  });
2669
2666
 
2670
- return function create_lookml_model(_x632, _x633, _x634) {
2667
+ return function create_lookml_model(_x631, _x632, _x633) {
2671
2668
  return _ref188.apply(this, arguments);
2672
2669
  };
2673
2670
  }();
@@ -2682,7 +2679,7 @@ var lookml_model = function () {
2682
2679
  }, null, options);
2683
2680
  });
2684
2681
 
2685
- return function lookml_model(_x635, _x636, _x637, _x638) {
2682
+ return function lookml_model(_x634, _x635, _x636, _x637) {
2686
2683
  return _ref189.apply(this, arguments);
2687
2684
  };
2688
2685
  }();
@@ -2695,7 +2692,7 @@ var update_lookml_model = function () {
2695
2692
  return sdk.patch("/lookml_models/".concat(lookml_model_name), null, body, options);
2696
2693
  });
2697
2694
 
2698
- return function update_lookml_model(_x639, _x640, _x641, _x642) {
2695
+ return function update_lookml_model(_x638, _x639, _x640, _x641) {
2699
2696
  return _ref190.apply(this, arguments);
2700
2697
  };
2701
2698
  }();
@@ -2708,7 +2705,7 @@ var delete_lookml_model = function () {
2708
2705
  return sdk.delete("/lookml_models/".concat(lookml_model_name), null, null, options);
2709
2706
  });
2710
2707
 
2711
- return function delete_lookml_model(_x643, _x644, _x645) {
2708
+ return function delete_lookml_model(_x642, _x643, _x644) {
2712
2709
  return _ref191.apply(this, arguments);
2713
2710
  };
2714
2711
  }();
@@ -2724,7 +2721,7 @@ var lookml_model_explore = function () {
2724
2721
  }, null, options);
2725
2722
  });
2726
2723
 
2727
- return function lookml_model_explore(_x646, _x647, _x648, _x649, _x650) {
2724
+ return function lookml_model_explore(_x645, _x646, _x647, _x648, _x649) {
2728
2725
  return _ref192.apply(this, arguments);
2729
2726
  };
2730
2727
  }();
@@ -2737,7 +2734,7 @@ var all_git_branches = function () {
2737
2734
  return sdk.get("/projects/".concat(project_id, "/git_branches"), null, null, options);
2738
2735
  });
2739
2736
 
2740
- return function all_git_branches(_x651, _x652, _x653) {
2737
+ return function all_git_branches(_x650, _x651, _x652) {
2741
2738
  return _ref193.apply(this, arguments);
2742
2739
  };
2743
2740
  }();
@@ -2750,7 +2747,7 @@ var git_branch = function () {
2750
2747
  return sdk.get("/projects/".concat(project_id, "/git_branch"), null, null, options);
2751
2748
  });
2752
2749
 
2753
- return function git_branch(_x654, _x655, _x656) {
2750
+ return function git_branch(_x653, _x654, _x655) {
2754
2751
  return _ref194.apply(this, arguments);
2755
2752
  };
2756
2753
  }();
@@ -2763,7 +2760,7 @@ var update_git_branch = function () {
2763
2760
  return sdk.put("/projects/".concat(project_id, "/git_branch"), null, body, options);
2764
2761
  });
2765
2762
 
2766
- return function update_git_branch(_x657, _x658, _x659, _x660) {
2763
+ return function update_git_branch(_x656, _x657, _x658, _x659) {
2767
2764
  return _ref195.apply(this, arguments);
2768
2765
  };
2769
2766
  }();
@@ -2776,7 +2773,7 @@ var create_git_branch = function () {
2776
2773
  return sdk.post("/projects/".concat(project_id, "/git_branch"), null, body, options);
2777
2774
  });
2778
2775
 
2779
- return function create_git_branch(_x661, _x662, _x663, _x664) {
2776
+ return function create_git_branch(_x660, _x661, _x662, _x663) {
2780
2777
  return _ref196.apply(this, arguments);
2781
2778
  };
2782
2779
  }();
@@ -2790,7 +2787,7 @@ var find_git_branch = function () {
2790
2787
  return sdk.get("/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
2791
2788
  });
2792
2789
 
2793
- return function find_git_branch(_x665, _x666, _x667, _x668) {
2790
+ return function find_git_branch(_x664, _x665, _x666, _x667) {
2794
2791
  return _ref197.apply(this, arguments);
2795
2792
  };
2796
2793
  }();
@@ -2804,7 +2801,7 @@ var delete_git_branch = function () {
2804
2801
  return sdk.delete("/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
2805
2802
  });
2806
2803
 
2807
- return function delete_git_branch(_x669, _x670, _x671, _x672) {
2804
+ return function delete_git_branch(_x668, _x669, _x670, _x671) {
2808
2805
  return _ref198.apply(this, arguments);
2809
2806
  };
2810
2807
  }();
@@ -2820,7 +2817,7 @@ var deploy_ref_to_production = function () {
2820
2817
  }, null, options);
2821
2818
  });
2822
2819
 
2823
- return function deploy_ref_to_production(_x673, _x674, _x675) {
2820
+ return function deploy_ref_to_production(_x672, _x673, _x674) {
2824
2821
  return _ref199.apply(this, arguments);
2825
2822
  };
2826
2823
  }();
@@ -2833,7 +2830,7 @@ var deploy_to_production = function () {
2833
2830
  return sdk.post("/projects/".concat(project_id, "/deploy_to_production"), null, null, options);
2834
2831
  });
2835
2832
 
2836
- return function deploy_to_production(_x676, _x677, _x678) {
2833
+ return function deploy_to_production(_x675, _x676, _x677) {
2837
2834
  return _ref200.apply(this, arguments);
2838
2835
  };
2839
2836
  }();
@@ -2846,7 +2843,7 @@ var reset_project_to_production = function () {
2846
2843
  return sdk.post("/projects/".concat(project_id, "/reset_to_production"), null, null, options);
2847
2844
  });
2848
2845
 
2849
- return function reset_project_to_production(_x679, _x680, _x681) {
2846
+ return function reset_project_to_production(_x678, _x679, _x680) {
2850
2847
  return _ref201.apply(this, arguments);
2851
2848
  };
2852
2849
  }();
@@ -2859,7 +2856,7 @@ var reset_project_to_remote = function () {
2859
2856
  return sdk.post("/projects/".concat(project_id, "/reset_to_remote"), null, null, options);
2860
2857
  });
2861
2858
 
2862
- return function reset_project_to_remote(_x682, _x683, _x684) {
2859
+ return function reset_project_to_remote(_x681, _x682, _x683) {
2863
2860
  return _ref202.apply(this, arguments);
2864
2861
  };
2865
2862
  }();
@@ -2873,7 +2870,7 @@ var all_projects = function () {
2873
2870
  }, null, options);
2874
2871
  });
2875
2872
 
2876
- return function all_projects(_x685, _x686, _x687) {
2873
+ return function all_projects(_x684, _x685, _x686) {
2877
2874
  return _ref203.apply(this, arguments);
2878
2875
  };
2879
2876
  }();
@@ -2885,7 +2882,7 @@ var create_project = function () {
2885
2882
  return sdk.post('/projects', null, body, options);
2886
2883
  });
2887
2884
 
2888
- return function create_project(_x688, _x689, _x690) {
2885
+ return function create_project(_x687, _x688, _x689) {
2889
2886
  return _ref204.apply(this, arguments);
2890
2887
  };
2891
2888
  }();
@@ -2900,7 +2897,7 @@ var project = function () {
2900
2897
  }, null, options);
2901
2898
  });
2902
2899
 
2903
- return function project(_x691, _x692, _x693, _x694) {
2900
+ return function project(_x690, _x691, _x692, _x693) {
2904
2901
  return _ref205.apply(this, arguments);
2905
2902
  };
2906
2903
  }();
@@ -2915,7 +2912,7 @@ var update_project = function () {
2915
2912
  }, body, options);
2916
2913
  });
2917
2914
 
2918
- return function update_project(_x695, _x696, _x697, _x698, _x699) {
2915
+ return function update_project(_x694, _x695, _x696, _x697, _x698) {
2919
2916
  return _ref206.apply(this, arguments);
2920
2917
  };
2921
2918
  }();
@@ -2928,7 +2925,7 @@ var manifest = function () {
2928
2925
  return sdk.get("/projects/".concat(project_id, "/manifest"), null, null, options);
2929
2926
  });
2930
2927
 
2931
- return function manifest(_x700, _x701, _x702) {
2928
+ return function manifest(_x699, _x700, _x701) {
2932
2929
  return _ref207.apply(this, arguments);
2933
2930
  };
2934
2931
  }();
@@ -2941,7 +2938,7 @@ var git_deploy_key = function () {
2941
2938
  return sdk.get("/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
2942
2939
  });
2943
2940
 
2944
- return function git_deploy_key(_x703, _x704, _x705) {
2941
+ return function git_deploy_key(_x702, _x703, _x704) {
2945
2942
  return _ref208.apply(this, arguments);
2946
2943
  };
2947
2944
  }();
@@ -2954,7 +2951,7 @@ var create_git_deploy_key = function () {
2954
2951
  return sdk.post("/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
2955
2952
  });
2956
2953
 
2957
- return function create_git_deploy_key(_x706, _x707, _x708) {
2954
+ return function create_git_deploy_key(_x705, _x706, _x707) {
2958
2955
  return _ref209.apply(this, arguments);
2959
2956
  };
2960
2957
  }();
@@ -2969,7 +2966,7 @@ var project_validation_results = function () {
2969
2966
  }, null, options);
2970
2967
  });
2971
2968
 
2972
- return function project_validation_results(_x709, _x710, _x711, _x712) {
2969
+ return function project_validation_results(_x708, _x709, _x710, _x711) {
2973
2970
  return _ref210.apply(this, arguments);
2974
2971
  };
2975
2972
  }();
@@ -2984,7 +2981,7 @@ var validate_project = function () {
2984
2981
  }, null, options);
2985
2982
  });
2986
2983
 
2987
- return function validate_project(_x713, _x714, _x715, _x716) {
2984
+ return function validate_project(_x712, _x713, _x714, _x715) {
2988
2985
  return _ref211.apply(this, arguments);
2989
2986
  };
2990
2987
  }();
@@ -2999,7 +2996,7 @@ var project_workspace = function () {
2999
2996
  }, null, options);
3000
2997
  });
3001
2998
 
3002
- return function project_workspace(_x717, _x718, _x719, _x720) {
2999
+ return function project_workspace(_x716, _x717, _x718, _x719) {
3003
3000
  return _ref212.apply(this, arguments);
3004
3001
  };
3005
3002
  }();
@@ -3014,7 +3011,7 @@ var all_project_files = function () {
3014
3011
  }, null, options);
3015
3012
  });
3016
3013
 
3017
- return function all_project_files(_x721, _x722, _x723, _x724) {
3014
+ return function all_project_files(_x720, _x721, _x722, _x723) {
3018
3015
  return _ref213.apply(this, arguments);
3019
3016
  };
3020
3017
  }();
@@ -3030,7 +3027,7 @@ var project_file = function () {
3030
3027
  }, null, options);
3031
3028
  });
3032
3029
 
3033
- return function project_file(_x725, _x726, _x727, _x728, _x729) {
3030
+ return function project_file(_x724, _x725, _x726, _x727, _x728) {
3034
3031
  return _ref214.apply(this, arguments);
3035
3032
  };
3036
3033
  }();
@@ -3045,7 +3042,7 @@ var all_git_connection_tests = function () {
3045
3042
  }, null, options);
3046
3043
  });
3047
3044
 
3048
- return function all_git_connection_tests(_x730, _x731, _x732, _x733) {
3045
+ return function all_git_connection_tests(_x729, _x730, _x731, _x732) {
3049
3046
  return _ref215.apply(this, arguments);
3050
3047
  };
3051
3048
  }();
@@ -3062,7 +3059,7 @@ var run_git_connection_test = function () {
3062
3059
  }, null, options);
3063
3060
  });
3064
3061
 
3065
- return function run_git_connection_test(_x734, _x735, _x736) {
3062
+ return function run_git_connection_test(_x733, _x734, _x735) {
3066
3063
  return _ref216.apply(this, arguments);
3067
3064
  };
3068
3065
  }();
@@ -3077,7 +3074,7 @@ var all_lookml_tests = function () {
3077
3074
  }, null, options);
3078
3075
  });
3079
3076
 
3080
- return function all_lookml_tests(_x737, _x738, _x739, _x740) {
3077
+ return function all_lookml_tests(_x736, _x737, _x738, _x739) {
3081
3078
  return _ref217.apply(this, arguments);
3082
3079
  };
3083
3080
  }();
@@ -3094,7 +3091,7 @@ var run_lookml_test = function () {
3094
3091
  }, null, options);
3095
3092
  });
3096
3093
 
3097
- return function run_lookml_test(_x741, _x742, _x743) {
3094
+ return function run_lookml_test(_x740, _x741, _x742) {
3098
3095
  return _ref218.apply(this, arguments);
3099
3096
  };
3100
3097
  }();
@@ -3111,7 +3108,7 @@ var tag_ref = function () {
3111
3108
  }, request.body, options);
3112
3109
  });
3113
3110
 
3114
- return function tag_ref(_x744, _x745, _x746) {
3111
+ return function tag_ref(_x743, _x744, _x745) {
3115
3112
  return _ref219.apply(this, arguments);
3116
3113
  };
3117
3114
  }();
@@ -3125,7 +3122,7 @@ var update_repository_credential = function () {
3125
3122
  return sdk.put("/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, body, options);
3126
3123
  });
3127
3124
 
3128
- return function update_repository_credential(_x747, _x748, _x749, _x750, _x751) {
3125
+ return function update_repository_credential(_x746, _x747, _x748, _x749, _x750) {
3129
3126
  return _ref220.apply(this, arguments);
3130
3127
  };
3131
3128
  }();
@@ -3139,7 +3136,7 @@ var delete_repository_credential = function () {
3139
3136
  return sdk.delete("/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, null, options);
3140
3137
  });
3141
3138
 
3142
- return function delete_repository_credential(_x752, _x753, _x754, _x755) {
3139
+ return function delete_repository_credential(_x751, _x752, _x753, _x754) {
3143
3140
  return _ref221.apply(this, arguments);
3144
3141
  };
3145
3142
  }();
@@ -3152,7 +3149,7 @@ var get_all_repository_credentials = function () {
3152
3149
  return sdk.get("/projects/".concat(root_project_id, "/credentials"), null, null, options);
3153
3150
  });
3154
3151
 
3155
- return function get_all_repository_credentials(_x756, _x757, _x758) {
3152
+ return function get_all_repository_credentials(_x755, _x756, _x757) {
3156
3153
  return _ref222.apply(this, arguments);
3157
3154
  };
3158
3155
  }();
@@ -3178,7 +3175,7 @@ var create_query_task = function () {
3178
3175
  }, request.body, options);
3179
3176
  });
3180
3177
 
3181
- return function create_query_task(_x759, _x760, _x761) {
3178
+ return function create_query_task(_x758, _x759, _x760) {
3182
3179
  return _ref223.apply(this, arguments);
3183
3180
  };
3184
3181
  }();
@@ -3192,7 +3189,7 @@ var query_task_multi_results = function () {
3192
3189
  }, null, options);
3193
3190
  });
3194
3191
 
3195
- return function query_task_multi_results(_x762, _x763, _x764) {
3192
+ return function query_task_multi_results(_x761, _x762, _x763) {
3196
3193
  return _ref224.apply(this, arguments);
3197
3194
  };
3198
3195
  }();
@@ -3207,7 +3204,7 @@ var query_task = function () {
3207
3204
  }, null, options);
3208
3205
  });
3209
3206
 
3210
- return function query_task(_x765, _x766, _x767, _x768) {
3207
+ return function query_task(_x764, _x765, _x766, _x767) {
3211
3208
  return _ref225.apply(this, arguments);
3212
3209
  };
3213
3210
  }();
@@ -3220,7 +3217,7 @@ var query_task_results = function () {
3220
3217
  return sdk.get("/query_tasks/".concat(query_task_id, "/results"), null, null, options);
3221
3218
  });
3222
3219
 
3223
- return function query_task_results(_x769, _x770, _x771) {
3220
+ return function query_task_results(_x768, _x769, _x770) {
3224
3221
  return _ref226.apply(this, arguments);
3225
3222
  };
3226
3223
  }();
@@ -3234,7 +3231,7 @@ var query = function () {
3234
3231
  }, null, options);
3235
3232
  });
3236
3233
 
3237
- return function query(_x772, _x773, _x774, _x775) {
3234
+ return function query(_x771, _x772, _x773, _x774) {
3238
3235
  return _ref227.apply(this, arguments);
3239
3236
  };
3240
3237
  }();
@@ -3249,7 +3246,7 @@ var query_for_slug = function () {
3249
3246
  }, null, options);
3250
3247
  });
3251
3248
 
3252
- return function query_for_slug(_x776, _x777, _x778, _x779) {
3249
+ return function query_for_slug(_x775, _x776, _x777, _x778) {
3253
3250
  return _ref228.apply(this, arguments);
3254
3251
  };
3255
3252
  }();
@@ -3263,7 +3260,7 @@ var create_query = function () {
3263
3260
  }, body, options);
3264
3261
  });
3265
3262
 
3266
- return function create_query(_x780, _x781, _x782, _x783) {
3263
+ return function create_query(_x779, _x780, _x781, _x782) {
3267
3264
  return _ref229.apply(this, arguments);
3268
3265
  };
3269
3266
  }();
@@ -3289,7 +3286,7 @@ var run_query = function () {
3289
3286
  }, null, options);
3290
3287
  });
3291
3288
 
3292
- return function run_query(_x784, _x785, _x786) {
3289
+ return function run_query(_x783, _x784, _x785) {
3293
3290
  return _ref230.apply(this, arguments);
3294
3291
  };
3295
3292
  }();
@@ -3315,7 +3312,7 @@ var run_inline_query = function () {
3315
3312
  }, request.body, options);
3316
3313
  });
3317
3314
 
3318
- return function run_inline_query(_x787, _x788, _x789) {
3315
+ return function run_inline_query(_x786, _x787, _x788) {
3319
3316
  return _ref231.apply(this, arguments);
3320
3317
  };
3321
3318
  }();
@@ -3330,7 +3327,7 @@ var run_url_encoded_query = function () {
3330
3327
  return sdk.get("/queries/models/".concat(model_name, "/views/").concat(view_name, "/run/").concat(result_format), null, null, options);
3331
3328
  });
3332
3329
 
3333
- return function run_url_encoded_query(_x790, _x791, _x792, _x793, _x794) {
3330
+ return function run_url_encoded_query(_x789, _x790, _x791, _x792, _x793) {
3334
3331
  return _ref232.apply(this, arguments);
3335
3332
  };
3336
3333
  }();
@@ -3345,7 +3342,7 @@ var merge_query = function () {
3345
3342
  }, null, options);
3346
3343
  });
3347
3344
 
3348
- return function merge_query(_x795, _x796, _x797, _x798) {
3345
+ return function merge_query(_x794, _x795, _x796, _x797) {
3349
3346
  return _ref233.apply(this, arguments);
3350
3347
  };
3351
3348
  }();
@@ -3359,7 +3356,7 @@ var create_merge_query = function () {
3359
3356
  }, body, options);
3360
3357
  });
3361
3358
 
3362
- return function create_merge_query(_x799, _x800, _x801, _x802) {
3359
+ return function create_merge_query(_x798, _x799, _x800, _x801) {
3363
3360
  return _ref234.apply(this, arguments);
3364
3361
  };
3365
3362
  }();
@@ -3371,7 +3368,7 @@ var all_running_queries = function () {
3371
3368
  return sdk.get('/running_queries', null, null, options);
3372
3369
  });
3373
3370
 
3374
- return function all_running_queries(_x803, _x804) {
3371
+ return function all_running_queries(_x802, _x803) {
3375
3372
  return _ref235.apply(this, arguments);
3376
3373
  };
3377
3374
  }();
@@ -3384,7 +3381,7 @@ var kill_query = function () {
3384
3381
  return sdk.delete("/running_queries/".concat(query_task_id), null, null, options);
3385
3382
  });
3386
3383
 
3387
- return function kill_query(_x805, _x806, _x807) {
3384
+ return function kill_query(_x804, _x805, _x806) {
3388
3385
  return _ref236.apply(this, arguments);
3389
3386
  };
3390
3387
  }();
@@ -3397,7 +3394,7 @@ var sql_query = function () {
3397
3394
  return sdk.get("/sql_queries/".concat(slug), null, null, options);
3398
3395
  });
3399
3396
 
3400
- return function sql_query(_x808, _x809, _x810) {
3397
+ return function sql_query(_x807, _x808, _x809) {
3401
3398
  return _ref237.apply(this, arguments);
3402
3399
  };
3403
3400
  }();
@@ -3409,7 +3406,7 @@ var create_sql_query = function () {
3409
3406
  return sdk.post('/sql_queries', null, body, options);
3410
3407
  });
3411
3408
 
3412
- return function create_sql_query(_x811, _x812, _x813) {
3409
+ return function create_sql_query(_x810, _x811, _x812) {
3413
3410
  return _ref238.apply(this, arguments);
3414
3411
  };
3415
3412
  }();
@@ -3425,7 +3422,7 @@ var run_sql_query = function () {
3425
3422
  }, null, options);
3426
3423
  });
3427
3424
 
3428
- return function run_sql_query(_x814, _x815, _x816, _x817, _x818) {
3425
+ return function run_sql_query(_x813, _x814, _x815, _x816, _x817) {
3429
3426
  return _ref239.apply(this, arguments);
3430
3427
  };
3431
3428
  }();
@@ -3445,7 +3442,7 @@ var create_lookml_dashboard_render_task = function () {
3445
3442
  }, request.body, options);
3446
3443
  });
3447
3444
 
3448
- return function create_lookml_dashboard_render_task(_x819, _x820, _x821) {
3445
+ return function create_lookml_dashboard_render_task(_x818, _x819, _x820) {
3449
3446
  return _ref240.apply(this, arguments);
3450
3447
  };
3451
3448
  }();
@@ -3462,7 +3459,7 @@ var create_look_render_task = function () {
3462
3459
  }, null, options);
3463
3460
  });
3464
3461
 
3465
- return function create_look_render_task(_x822, _x823, _x824, _x825, _x826, _x827, _x828) {
3462
+ return function create_look_render_task(_x821, _x822, _x823, _x824, _x825, _x826, _x827) {
3466
3463
  return _ref241.apply(this, arguments);
3467
3464
  };
3468
3465
  }();
@@ -3479,7 +3476,7 @@ var create_query_render_task = function () {
3479
3476
  }, null, options);
3480
3477
  });
3481
3478
 
3482
- return function create_query_render_task(_x829, _x830, _x831, _x832, _x833, _x834, _x835) {
3479
+ return function create_query_render_task(_x828, _x829, _x830, _x831, _x832, _x833, _x834) {
3483
3480
  return _ref242.apply(this, arguments);
3484
3481
  };
3485
3482
  }();
@@ -3498,7 +3495,7 @@ var create_dashboard_render_task = function () {
3498
3495
  }, request.body, options);
3499
3496
  });
3500
3497
 
3501
- return function create_dashboard_render_task(_x836, _x837, _x838) {
3498
+ return function create_dashboard_render_task(_x835, _x836, _x837) {
3502
3499
  return _ref243.apply(this, arguments);
3503
3500
  };
3504
3501
  }();
@@ -3513,7 +3510,7 @@ var render_task = function () {
3513
3510
  }, null, options);
3514
3511
  });
3515
3512
 
3516
- return function render_task(_x839, _x840, _x841, _x842) {
3513
+ return function render_task(_x838, _x839, _x840, _x841) {
3517
3514
  return _ref244.apply(this, arguments);
3518
3515
  };
3519
3516
  }();
@@ -3526,7 +3523,7 @@ var render_task_results = function () {
3526
3523
  return sdk.get("/render_tasks/".concat(render_task_id, "/results"), null, null, options);
3527
3524
  });
3528
3525
 
3529
- return function render_task_results(_x843, _x844, _x845) {
3526
+ return function render_task_results(_x842, _x843, _x844) {
3530
3527
  return _ref245.apply(this, arguments);
3531
3528
  };
3532
3529
  }();
@@ -3548,7 +3545,7 @@ var search_model_sets = function () {
3548
3545
  }, null, options);
3549
3546
  });
3550
3547
 
3551
- return function search_model_sets(_x846, _x847, _x848) {
3548
+ return function search_model_sets(_x845, _x846, _x847) {
3552
3549
  return _ref246.apply(this, arguments);
3553
3550
  };
3554
3551
  }();
@@ -3562,7 +3559,7 @@ var model_set = function () {
3562
3559
  }, null, options);
3563
3560
  });
3564
3561
 
3565
- return function model_set(_x849, _x850, _x851, _x852) {
3562
+ return function model_set(_x848, _x849, _x850, _x851) {
3566
3563
  return _ref247.apply(this, arguments);
3567
3564
  };
3568
3565
  }();
@@ -3574,7 +3571,7 @@ var update_model_set = function () {
3574
3571
  return sdk.patch("/model_sets/".concat(model_set_id), null, body, options);
3575
3572
  });
3576
3573
 
3577
- return function update_model_set(_x853, _x854, _x855, _x856) {
3574
+ return function update_model_set(_x852, _x853, _x854, _x855) {
3578
3575
  return _ref248.apply(this, arguments);
3579
3576
  };
3580
3577
  }();
@@ -3586,7 +3583,7 @@ var delete_model_set = function () {
3586
3583
  return sdk.delete("/model_sets/".concat(model_set_id), null, null, options);
3587
3584
  });
3588
3585
 
3589
- return function delete_model_set(_x857, _x858, _x859) {
3586
+ return function delete_model_set(_x856, _x857, _x858) {
3590
3587
  return _ref249.apply(this, arguments);
3591
3588
  };
3592
3589
  }();
@@ -3600,7 +3597,7 @@ var all_model_sets = function () {
3600
3597
  }, null, options);
3601
3598
  });
3602
3599
 
3603
- return function all_model_sets(_x860, _x861, _x862) {
3600
+ return function all_model_sets(_x859, _x860, _x861) {
3604
3601
  return _ref250.apply(this, arguments);
3605
3602
  };
3606
3603
  }();
@@ -3612,7 +3609,7 @@ var create_model_set = function () {
3612
3609
  return sdk.post('/model_sets', null, body, options);
3613
3610
  });
3614
3611
 
3615
- return function create_model_set(_x863, _x864, _x865) {
3612
+ return function create_model_set(_x862, _x863, _x864) {
3616
3613
  return _ref251.apply(this, arguments);
3617
3614
  };
3618
3615
  }();
@@ -3624,7 +3621,7 @@ var all_permissions = function () {
3624
3621
  return sdk.get('/permissions', null, null, options);
3625
3622
  });
3626
3623
 
3627
- return function all_permissions(_x866, _x867) {
3624
+ return function all_permissions(_x865, _x866) {
3628
3625
  return _ref252.apply(this, arguments);
3629
3626
  };
3630
3627
  }();
@@ -3646,7 +3643,7 @@ var search_permission_sets = function () {
3646
3643
  }, null, options);
3647
3644
  });
3648
3645
 
3649
- return function search_permission_sets(_x868, _x869, _x870) {
3646
+ return function search_permission_sets(_x867, _x868, _x869) {
3650
3647
  return _ref253.apply(this, arguments);
3651
3648
  };
3652
3649
  }();
@@ -3660,7 +3657,7 @@ var permission_set = function () {
3660
3657
  }, null, options);
3661
3658
  });
3662
3659
 
3663
- return function permission_set(_x871, _x872, _x873, _x874) {
3660
+ return function permission_set(_x870, _x871, _x872, _x873) {
3664
3661
  return _ref254.apply(this, arguments);
3665
3662
  };
3666
3663
  }();
@@ -3672,7 +3669,7 @@ var update_permission_set = function () {
3672
3669
  return sdk.patch("/permission_sets/".concat(permission_set_id), null, body, options);
3673
3670
  });
3674
3671
 
3675
- return function update_permission_set(_x875, _x876, _x877, _x878) {
3672
+ return function update_permission_set(_x874, _x875, _x876, _x877) {
3676
3673
  return _ref255.apply(this, arguments);
3677
3674
  };
3678
3675
  }();
@@ -3684,7 +3681,7 @@ var delete_permission_set = function () {
3684
3681
  return sdk.delete("/permission_sets/".concat(permission_set_id), null, null, options);
3685
3682
  });
3686
3683
 
3687
- return function delete_permission_set(_x879, _x880, _x881) {
3684
+ return function delete_permission_set(_x878, _x879, _x880) {
3688
3685
  return _ref256.apply(this, arguments);
3689
3686
  };
3690
3687
  }();
@@ -3698,7 +3695,7 @@ var all_permission_sets = function () {
3698
3695
  }, null, options);
3699
3696
  });
3700
3697
 
3701
- return function all_permission_sets(_x882, _x883, _x884) {
3698
+ return function all_permission_sets(_x881, _x882, _x883) {
3702
3699
  return _ref257.apply(this, arguments);
3703
3700
  };
3704
3701
  }();
@@ -3710,7 +3707,7 @@ var create_permission_set = function () {
3710
3707
  return sdk.post('/permission_sets', null, body, options);
3711
3708
  });
3712
3709
 
3713
- return function create_permission_set(_x885, _x886, _x887) {
3710
+ return function create_permission_set(_x884, _x885, _x886) {
3714
3711
  return _ref258.apply(this, arguments);
3715
3712
  };
3716
3713
  }();
@@ -3725,7 +3722,7 @@ var all_roles = function () {
3725
3722
  }, null, options);
3726
3723
  });
3727
3724
 
3728
- return function all_roles(_x888, _x889, _x890) {
3725
+ return function all_roles(_x887, _x888, _x889) {
3729
3726
  return _ref259.apply(this, arguments);
3730
3727
  };
3731
3728
  }();
@@ -3737,7 +3734,7 @@ var create_role = function () {
3737
3734
  return sdk.post('/roles', null, body, options);
3738
3735
  });
3739
3736
 
3740
- return function create_role(_x891, _x892, _x893) {
3737
+ return function create_role(_x890, _x891, _x892) {
3741
3738
  return _ref260.apply(this, arguments);
3742
3739
  };
3743
3740
  }();
@@ -3758,7 +3755,7 @@ var search_roles = function () {
3758
3755
  }, null, options);
3759
3756
  });
3760
3757
 
3761
- return function search_roles(_x894, _x895, _x896) {
3758
+ return function search_roles(_x893, _x894, _x895) {
3762
3759
  return _ref261.apply(this, arguments);
3763
3760
  };
3764
3761
  }();
@@ -3770,7 +3767,7 @@ var role = function () {
3770
3767
  return sdk.get("/roles/".concat(role_id), null, null, options);
3771
3768
  });
3772
3769
 
3773
- return function role(_x897, _x898, _x899) {
3770
+ return function role(_x896, _x897, _x898) {
3774
3771
  return _ref262.apply(this, arguments);
3775
3772
  };
3776
3773
  }();
@@ -3782,7 +3779,7 @@ var update_role = function () {
3782
3779
  return sdk.patch("/roles/".concat(role_id), null, body, options);
3783
3780
  });
3784
3781
 
3785
- return function update_role(_x900, _x901, _x902, _x903) {
3782
+ return function update_role(_x899, _x900, _x901, _x902) {
3786
3783
  return _ref263.apply(this, arguments);
3787
3784
  };
3788
3785
  }();
@@ -3794,7 +3791,7 @@ var delete_role = function () {
3794
3791
  return sdk.delete("/roles/".concat(role_id), null, null, options);
3795
3792
  });
3796
3793
 
3797
- return function delete_role(_x904, _x905, _x906) {
3794
+ return function delete_role(_x903, _x904, _x905) {
3798
3795
  return _ref264.apply(this, arguments);
3799
3796
  };
3800
3797
  }();
@@ -3808,7 +3805,7 @@ var role_groups = function () {
3808
3805
  }, null, options);
3809
3806
  });
3810
3807
 
3811
- return function role_groups(_x907, _x908, _x909, _x910) {
3808
+ return function role_groups(_x906, _x907, _x908, _x909) {
3812
3809
  return _ref265.apply(this, arguments);
3813
3810
  };
3814
3811
  }();
@@ -3820,7 +3817,7 @@ var set_role_groups = function () {
3820
3817
  return sdk.put("/roles/".concat(role_id, "/groups"), null, body, options);
3821
3818
  });
3822
3819
 
3823
- return function set_role_groups(_x911, _x912, _x913, _x914) {
3820
+ return function set_role_groups(_x910, _x911, _x912, _x913) {
3824
3821
  return _ref266.apply(this, arguments);
3825
3822
  };
3826
3823
  }();
@@ -3835,7 +3832,7 @@ var role_users = function () {
3835
3832
  }, null, options);
3836
3833
  });
3837
3834
 
3838
- return function role_users(_x915, _x916, _x917) {
3835
+ return function role_users(_x914, _x915, _x916) {
3839
3836
  return _ref267.apply(this, arguments);
3840
3837
  };
3841
3838
  }();
@@ -3847,7 +3844,7 @@ var set_role_users = function () {
3847
3844
  return sdk.put("/roles/".concat(role_id, "/users"), null, body, options);
3848
3845
  });
3849
3846
 
3850
- return function set_role_users(_x918, _x919, _x920, _x921) {
3847
+ return function set_role_users(_x917, _x918, _x919, _x920) {
3851
3848
  return _ref268.apply(this, arguments);
3852
3849
  };
3853
3850
  }();
@@ -3861,7 +3858,7 @@ var scheduled_plans_for_space = function () {
3861
3858
  }, null, options);
3862
3859
  });
3863
3860
 
3864
- return function scheduled_plans_for_space(_x922, _x923, _x924, _x925) {
3861
+ return function scheduled_plans_for_space(_x921, _x922, _x923, _x924) {
3865
3862
  return _ref269.apply(this, arguments);
3866
3863
  };
3867
3864
  }();
@@ -3875,7 +3872,7 @@ var scheduled_plan = function () {
3875
3872
  }, null, options);
3876
3873
  });
3877
3874
 
3878
- return function scheduled_plan(_x926, _x927, _x928, _x929) {
3875
+ return function scheduled_plan(_x925, _x926, _x927, _x928) {
3879
3876
  return _ref270.apply(this, arguments);
3880
3877
  };
3881
3878
  }();
@@ -3887,7 +3884,7 @@ var update_scheduled_plan = function () {
3887
3884
  return sdk.patch("/scheduled_plans/".concat(scheduled_plan_id), null, body, options);
3888
3885
  });
3889
3886
 
3890
- return function update_scheduled_plan(_x930, _x931, _x932, _x933) {
3887
+ return function update_scheduled_plan(_x929, _x930, _x931, _x932) {
3891
3888
  return _ref271.apply(this, arguments);
3892
3889
  };
3893
3890
  }();
@@ -3899,7 +3896,7 @@ var delete_scheduled_plan = function () {
3899
3896
  return sdk.delete("/scheduled_plans/".concat(scheduled_plan_id), null, null, options);
3900
3897
  });
3901
3898
 
3902
- return function delete_scheduled_plan(_x934, _x935, _x936) {
3899
+ return function delete_scheduled_plan(_x933, _x934, _x935) {
3903
3900
  return _ref272.apply(this, arguments);
3904
3901
  };
3905
3902
  }();
@@ -3915,7 +3912,7 @@ var all_scheduled_plans = function () {
3915
3912
  }, null, options);
3916
3913
  });
3917
3914
 
3918
- return function all_scheduled_plans(_x937, _x938, _x939) {
3915
+ return function all_scheduled_plans(_x936, _x937, _x938) {
3919
3916
  return _ref273.apply(this, arguments);
3920
3917
  };
3921
3918
  }();
@@ -3927,7 +3924,7 @@ var create_scheduled_plan = function () {
3927
3924
  return sdk.post('/scheduled_plans', null, body, options);
3928
3925
  });
3929
3926
 
3930
- return function create_scheduled_plan(_x940, _x941, _x942) {
3927
+ return function create_scheduled_plan(_x939, _x940, _x941) {
3931
3928
  return _ref274.apply(this, arguments);
3932
3929
  };
3933
3930
  }();
@@ -3939,7 +3936,7 @@ var scheduled_plan_run_once = function () {
3939
3936
  return sdk.post('/scheduled_plans/run_once', null, body, options);
3940
3937
  });
3941
3938
 
3942
- return function scheduled_plan_run_once(_x943, _x944, _x945) {
3939
+ return function scheduled_plan_run_once(_x942, _x943, _x944) {
3943
3940
  return _ref275.apply(this, arguments);
3944
3941
  };
3945
3942
  }();
@@ -3955,7 +3952,7 @@ var scheduled_plans_for_look = function () {
3955
3952
  }, null, options);
3956
3953
  });
3957
3954
 
3958
- return function scheduled_plans_for_look(_x946, _x947, _x948) {
3955
+ return function scheduled_plans_for_look(_x945, _x946, _x947) {
3959
3956
  return _ref276.apply(this, arguments);
3960
3957
  };
3961
3958
  }();
@@ -3971,7 +3968,7 @@ var scheduled_plans_for_dashboard = function () {
3971
3968
  }, null, options);
3972
3969
  });
3973
3970
 
3974
- return function scheduled_plans_for_dashboard(_x949, _x950, _x951) {
3971
+ return function scheduled_plans_for_dashboard(_x948, _x949, _x950) {
3975
3972
  return _ref277.apply(this, arguments);
3976
3973
  };
3977
3974
  }();
@@ -3988,7 +3985,7 @@ var scheduled_plans_for_lookml_dashboard = function () {
3988
3985
  }, null, options);
3989
3986
  });
3990
3987
 
3991
- return function scheduled_plans_for_lookml_dashboard(_x952, _x953, _x954) {
3988
+ return function scheduled_plans_for_lookml_dashboard(_x951, _x952, _x953) {
3992
3989
  return _ref278.apply(this, arguments);
3993
3990
  };
3994
3991
  }();
@@ -4000,7 +3997,7 @@ var scheduled_plan_run_once_by_id = function () {
4000
3997
  return sdk.post("/scheduled_plans/".concat(scheduled_plan_id, "/run_once"), null, body, options);
4001
3998
  });
4002
3999
 
4003
- return function scheduled_plan_run_once_by_id(_x955, _x956, _x957, _x958) {
4000
+ return function scheduled_plan_run_once_by_id(_x954, _x955, _x956, _x957) {
4004
4001
  return _ref279.apply(this, arguments);
4005
4002
  };
4006
4003
  }();
@@ -4012,7 +4009,7 @@ var session = function () {
4012
4009
  return sdk.get('/session', null, null, options);
4013
4010
  });
4014
4011
 
4015
- return function session(_x959, _x960) {
4012
+ return function session(_x958, _x959) {
4016
4013
  return _ref280.apply(this, arguments);
4017
4014
  };
4018
4015
  }();
@@ -4024,7 +4021,7 @@ var update_session = function () {
4024
4021
  return sdk.patch('/session', null, body, options);
4025
4022
  });
4026
4023
 
4027
- return function update_session(_x961, _x962, _x963) {
4024
+ return function update_session(_x960, _x961, _x962) {
4028
4025
  return _ref281.apply(this, arguments);
4029
4026
  };
4030
4027
  }();
@@ -4049,7 +4046,7 @@ var search_spaces = function () {
4049
4046
  }, null, options);
4050
4047
  });
4051
4048
 
4052
- return function search_spaces(_x964, _x965, _x966) {
4049
+ return function search_spaces(_x963, _x964, _x965) {
4053
4050
  return _ref282.apply(this, arguments);
4054
4051
  };
4055
4052
  }();
@@ -4064,7 +4061,7 @@ var space = function () {
4064
4061
  }, null, options);
4065
4062
  });
4066
4063
 
4067
- return function space(_x967, _x968, _x969, _x970) {
4064
+ return function space(_x966, _x967, _x968, _x969) {
4068
4065
  return _ref283.apply(this, arguments);
4069
4066
  };
4070
4067
  }();
@@ -4077,7 +4074,7 @@ var update_space = function () {
4077
4074
  return sdk.patch("/spaces/".concat(space_id), null, body, options);
4078
4075
  });
4079
4076
 
4080
- return function update_space(_x971, _x972, _x973, _x974) {
4077
+ return function update_space(_x970, _x971, _x972, _x973) {
4081
4078
  return _ref284.apply(this, arguments);
4082
4079
  };
4083
4080
  }();
@@ -4090,7 +4087,7 @@ var delete_space = function () {
4090
4087
  return sdk.delete("/spaces/".concat(space_id), null, null, options);
4091
4088
  });
4092
4089
 
4093
- return function delete_space(_x975, _x976, _x977) {
4090
+ return function delete_space(_x974, _x975, _x976) {
4094
4091
  return _ref285.apply(this, arguments);
4095
4092
  };
4096
4093
  }();
@@ -4104,7 +4101,7 @@ var all_spaces = function () {
4104
4101
  }, null, options);
4105
4102
  });
4106
4103
 
4107
- return function all_spaces(_x978, _x979, _x980) {
4104
+ return function all_spaces(_x977, _x978, _x979) {
4108
4105
  return _ref286.apply(this, arguments);
4109
4106
  };
4110
4107
  }();
@@ -4116,7 +4113,7 @@ var create_space = function () {
4116
4113
  return sdk.post('/spaces', null, body, options);
4117
4114
  });
4118
4115
 
4119
- return function create_space(_x981, _x982, _x983) {
4116
+ return function create_space(_x980, _x981, _x982) {
4120
4117
  return _ref287.apply(this, arguments);
4121
4118
  };
4122
4119
  }();
@@ -4134,7 +4131,7 @@ var space_children = function () {
4134
4131
  }, null, options);
4135
4132
  });
4136
4133
 
4137
- return function space_children(_x984, _x985, _x986) {
4134
+ return function space_children(_x983, _x984, _x985) {
4138
4135
  return _ref288.apply(this, arguments);
4139
4136
  };
4140
4137
  }();
@@ -4151,7 +4148,7 @@ var space_children_search = function () {
4151
4148
  }, null, options);
4152
4149
  });
4153
4150
 
4154
- return function space_children_search(_x987, _x988, _x989) {
4151
+ return function space_children_search(_x986, _x987, _x988) {
4155
4152
  return _ref289.apply(this, arguments);
4156
4153
  };
4157
4154
  }();
@@ -4166,7 +4163,7 @@ var space_parent = function () {
4166
4163
  }, null, options);
4167
4164
  });
4168
4165
 
4169
- return function space_parent(_x990, _x991, _x992, _x993) {
4166
+ return function space_parent(_x989, _x990, _x991, _x992) {
4170
4167
  return _ref290.apply(this, arguments);
4171
4168
  };
4172
4169
  }();
@@ -4181,7 +4178,7 @@ var space_ancestors = function () {
4181
4178
  }, null, options);
4182
4179
  });
4183
4180
 
4184
- return function space_ancestors(_x994, _x995, _x996, _x997) {
4181
+ return function space_ancestors(_x993, _x994, _x995, _x996) {
4185
4182
  return _ref291.apply(this, arguments);
4186
4183
  };
4187
4184
  }();
@@ -4196,7 +4193,7 @@ var space_looks = function () {
4196
4193
  }, null, options);
4197
4194
  });
4198
4195
 
4199
- return function space_looks(_x998, _x999, _x1000, _x1001) {
4196
+ return function space_looks(_x997, _x998, _x999, _x1000) {
4200
4197
  return _ref292.apply(this, arguments);
4201
4198
  };
4202
4199
  }();
@@ -4211,7 +4208,7 @@ var space_dashboards = function () {
4211
4208
  }, null, options);
4212
4209
  });
4213
4210
 
4214
- return function space_dashboards(_x1002, _x1003, _x1004, _x1005) {
4211
+ return function space_dashboards(_x1001, _x1002, _x1003, _x1004) {
4215
4212
  return _ref293.apply(this, arguments);
4216
4213
  };
4217
4214
  }();
@@ -4225,7 +4222,7 @@ var all_themes = function () {
4225
4222
  }, null, options);
4226
4223
  });
4227
4224
 
4228
- return function all_themes(_x1006, _x1007, _x1008) {
4225
+ return function all_themes(_x1005, _x1006, _x1007) {
4229
4226
  return _ref294.apply(this, arguments);
4230
4227
  };
4231
4228
  }();
@@ -4237,7 +4234,7 @@ var create_theme = function () {
4237
4234
  return sdk.post('/themes', null, body, options);
4238
4235
  });
4239
4236
 
4240
- return function create_theme(_x1009, _x1010, _x1011) {
4237
+ return function create_theme(_x1008, _x1009, _x1010) {
4241
4238
  return _ref295.apply(this, arguments);
4242
4239
  };
4243
4240
  }();
@@ -4259,7 +4256,7 @@ var search_themes = function () {
4259
4256
  }, null, options);
4260
4257
  });
4261
4258
 
4262
- return function search_themes(_x1012, _x1013, _x1014) {
4259
+ return function search_themes(_x1011, _x1012, _x1013) {
4263
4260
  return _ref296.apply(this, arguments);
4264
4261
  };
4265
4262
  }();
@@ -4273,7 +4270,7 @@ var default_theme = function () {
4273
4270
  }, null, options);
4274
4271
  });
4275
4272
 
4276
- return function default_theme(_x1015, _x1016, _x1017) {
4273
+ return function default_theme(_x1014, _x1015, _x1016) {
4277
4274
  return _ref297.apply(this, arguments);
4278
4275
  };
4279
4276
  }();
@@ -4287,7 +4284,7 @@ var set_default_theme = function () {
4287
4284
  }, null, options);
4288
4285
  });
4289
4286
 
4290
- return function set_default_theme(_x1018, _x1019, _x1020) {
4287
+ return function set_default_theme(_x1017, _x1018, _x1019) {
4291
4288
  return _ref298.apply(this, arguments);
4292
4289
  };
4293
4290
  }();
@@ -4303,7 +4300,7 @@ var active_themes = function () {
4303
4300
  }, null, options);
4304
4301
  });
4305
4302
 
4306
- return function active_themes(_x1021, _x1022, _x1023) {
4303
+ return function active_themes(_x1020, _x1021, _x1022) {
4307
4304
  return _ref299.apply(this, arguments);
4308
4305
  };
4309
4306
  }();
@@ -4318,7 +4315,7 @@ var theme_or_default = function () {
4318
4315
  }, null, options);
4319
4316
  });
4320
4317
 
4321
- return function theme_or_default(_x1024, _x1025, _x1026, _x1027) {
4318
+ return function theme_or_default(_x1023, _x1024, _x1025, _x1026) {
4322
4319
  return _ref300.apply(this, arguments);
4323
4320
  };
4324
4321
  }();
@@ -4330,7 +4327,7 @@ var validate_theme = function () {
4330
4327
  return sdk.post('/themes/validate', null, body, options);
4331
4328
  });
4332
4329
 
4333
- return function validate_theme(_x1028, _x1029, _x1030) {
4330
+ return function validate_theme(_x1027, _x1028, _x1029) {
4334
4331
  return _ref301.apply(this, arguments);
4335
4332
  };
4336
4333
  }();
@@ -4345,7 +4342,7 @@ var theme = function () {
4345
4342
  }, null, options);
4346
4343
  });
4347
4344
 
4348
- return function theme(_x1031, _x1032, _x1033, _x1034) {
4345
+ return function theme(_x1030, _x1031, _x1032, _x1033) {
4349
4346
  return _ref302.apply(this, arguments);
4350
4347
  };
4351
4348
  }();
@@ -4358,7 +4355,7 @@ var update_theme = function () {
4358
4355
  return sdk.patch("/themes/".concat(theme_id), null, body, options);
4359
4356
  });
4360
4357
 
4361
- return function update_theme(_x1035, _x1036, _x1037, _x1038) {
4358
+ return function update_theme(_x1034, _x1035, _x1036, _x1037) {
4362
4359
  return _ref303.apply(this, arguments);
4363
4360
  };
4364
4361
  }();
@@ -4371,7 +4368,7 @@ var delete_theme = function () {
4371
4368
  return sdk.delete("/themes/".concat(theme_id), null, null, options);
4372
4369
  });
4373
4370
 
4374
- return function delete_theme(_x1039, _x1040, _x1041) {
4371
+ return function delete_theme(_x1038, _x1039, _x1040) {
4375
4372
  return _ref304.apply(this, arguments);
4376
4373
  };
4377
4374
  }();
@@ -4385,7 +4382,7 @@ var me = function () {
4385
4382
  }, null, options);
4386
4383
  });
4387
4384
 
4388
- return function me(_x1042, _x1043, _x1044) {
4385
+ return function me(_x1041, _x1042, _x1043) {
4389
4386
  return _ref305.apply(this, arguments);
4390
4387
  };
4391
4388
  }();
@@ -4403,7 +4400,7 @@ var all_users = function () {
4403
4400
  }, null, options);
4404
4401
  });
4405
4402
 
4406
- return function all_users(_x1045, _x1046, _x1047) {
4403
+ return function all_users(_x1044, _x1045, _x1046) {
4407
4404
  return _ref306.apply(this, arguments);
4408
4405
  };
4409
4406
  }();
@@ -4417,7 +4414,7 @@ var create_user = function () {
4417
4414
  }, body, options);
4418
4415
  });
4419
4416
 
4420
- return function create_user(_x1048, _x1049, _x1050, _x1051) {
4417
+ return function create_user(_x1047, _x1048, _x1049, _x1050) {
4421
4418
  return _ref307.apply(this, arguments);
4422
4419
  };
4423
4420
  }();
@@ -4444,7 +4441,7 @@ var search_users = function () {
4444
4441
  }, null, options);
4445
4442
  });
4446
4443
 
4447
- return function search_users(_x1052, _x1053, _x1054) {
4444
+ return function search_users(_x1051, _x1052, _x1053) {
4448
4445
  return _ref308.apply(this, arguments);
4449
4446
  };
4450
4447
  }();
@@ -4468,7 +4465,7 @@ var search_users_names = function () {
4468
4465
  }, null, options);
4469
4466
  });
4470
4467
 
4471
- return function search_users_names(_x1055, _x1056, _x1057) {
4468
+ return function search_users_names(_x1054, _x1055, _x1056) {
4472
4469
  return _ref309.apply(this, arguments);
4473
4470
  };
4474
4471
  }();
@@ -4482,7 +4479,7 @@ var user = function () {
4482
4479
  }, null, options);
4483
4480
  });
4484
4481
 
4485
- return function user(_x1058, _x1059, _x1060, _x1061) {
4482
+ return function user(_x1057, _x1058, _x1059, _x1060) {
4486
4483
  return _ref310.apply(this, arguments);
4487
4484
  };
4488
4485
  }();
@@ -4496,7 +4493,7 @@ var update_user = function () {
4496
4493
  }, body, options);
4497
4494
  });
4498
4495
 
4499
- return function update_user(_x1062, _x1063, _x1064, _x1065, _x1066) {
4496
+ return function update_user(_x1061, _x1062, _x1063, _x1064, _x1065) {
4500
4497
  return _ref311.apply(this, arguments);
4501
4498
  };
4502
4499
  }();
@@ -4508,7 +4505,7 @@ var delete_user = function () {
4508
4505
  return sdk.delete("/users/".concat(user_id), null, null, options);
4509
4506
  });
4510
4507
 
4511
- return function delete_user(_x1067, _x1068, _x1069) {
4508
+ return function delete_user(_x1066, _x1067, _x1068) {
4512
4509
  return _ref312.apply(this, arguments);
4513
4510
  };
4514
4511
  }();
@@ -4524,7 +4521,7 @@ var user_for_credential = function () {
4524
4521
  }, null, options);
4525
4522
  });
4526
4523
 
4527
- return function user_for_credential(_x1070, _x1071, _x1072, _x1073, _x1074) {
4524
+ return function user_for_credential(_x1069, _x1070, _x1071, _x1072, _x1073) {
4528
4525
  return _ref313.apply(this, arguments);
4529
4526
  };
4530
4527
  }();
@@ -4538,7 +4535,7 @@ var user_credentials_email = function () {
4538
4535
  }, null, options);
4539
4536
  });
4540
4537
 
4541
- return function user_credentials_email(_x1075, _x1076, _x1077, _x1078) {
4538
+ return function user_credentials_email(_x1074, _x1075, _x1076, _x1077) {
4542
4539
  return _ref314.apply(this, arguments);
4543
4540
  };
4544
4541
  }();
@@ -4552,7 +4549,7 @@ var create_user_credentials_email = function () {
4552
4549
  }, body, options);
4553
4550
  });
4554
4551
 
4555
- return function create_user_credentials_email(_x1079, _x1080, _x1081, _x1082, _x1083) {
4552
+ return function create_user_credentials_email(_x1078, _x1079, _x1080, _x1081, _x1082) {
4556
4553
  return _ref315.apply(this, arguments);
4557
4554
  };
4558
4555
  }();
@@ -4566,7 +4563,7 @@ var update_user_credentials_email = function () {
4566
4563
  }, body, options);
4567
4564
  });
4568
4565
 
4569
- return function update_user_credentials_email(_x1084, _x1085, _x1086, _x1087, _x1088) {
4566
+ return function update_user_credentials_email(_x1083, _x1084, _x1085, _x1086, _x1087) {
4570
4567
  return _ref316.apply(this, arguments);
4571
4568
  };
4572
4569
  }();
@@ -4578,7 +4575,7 @@ var delete_user_credentials_email = function () {
4578
4575
  return sdk.delete("/users/".concat(user_id, "/credentials_email"), null, null, options);
4579
4576
  });
4580
4577
 
4581
- return function delete_user_credentials_email(_x1089, _x1090, _x1091) {
4578
+ return function delete_user_credentials_email(_x1088, _x1089, _x1090) {
4582
4579
  return _ref317.apply(this, arguments);
4583
4580
  };
4584
4581
  }();
@@ -4592,7 +4589,7 @@ var user_credentials_totp = function () {
4592
4589
  }, null, options);
4593
4590
  });
4594
4591
 
4595
- return function user_credentials_totp(_x1092, _x1093, _x1094, _x1095) {
4592
+ return function user_credentials_totp(_x1091, _x1092, _x1093, _x1094) {
4596
4593
  return _ref318.apply(this, arguments);
4597
4594
  };
4598
4595
  }();
@@ -4606,7 +4603,7 @@ var create_user_credentials_totp = function () {
4606
4603
  }, body, options);
4607
4604
  });
4608
4605
 
4609
- return function create_user_credentials_totp(_x1096, _x1097, _x1098, _x1099, _x1100) {
4606
+ return function create_user_credentials_totp(_x1095, _x1096, _x1097, _x1098, _x1099) {
4610
4607
  return _ref319.apply(this, arguments);
4611
4608
  };
4612
4609
  }();
@@ -4618,7 +4615,7 @@ var delete_user_credentials_totp = function () {
4618
4615
  return sdk.delete("/users/".concat(user_id, "/credentials_totp"), null, null, options);
4619
4616
  });
4620
4617
 
4621
- return function delete_user_credentials_totp(_x1101, _x1102, _x1103) {
4618
+ return function delete_user_credentials_totp(_x1100, _x1101, _x1102) {
4622
4619
  return _ref320.apply(this, arguments);
4623
4620
  };
4624
4621
  }();
@@ -4632,7 +4629,7 @@ var user_credentials_ldap = function () {
4632
4629
  }, null, options);
4633
4630
  });
4634
4631
 
4635
- return function user_credentials_ldap(_x1104, _x1105, _x1106, _x1107) {
4632
+ return function user_credentials_ldap(_x1103, _x1104, _x1105, _x1106) {
4636
4633
  return _ref321.apply(this, arguments);
4637
4634
  };
4638
4635
  }();
@@ -4644,7 +4641,7 @@ var delete_user_credentials_ldap = function () {
4644
4641
  return sdk.delete("/users/".concat(user_id, "/credentials_ldap"), null, null, options);
4645
4642
  });
4646
4643
 
4647
- return function delete_user_credentials_ldap(_x1108, _x1109, _x1110) {
4644
+ return function delete_user_credentials_ldap(_x1107, _x1108, _x1109) {
4648
4645
  return _ref322.apply(this, arguments);
4649
4646
  };
4650
4647
  }();
@@ -4658,7 +4655,7 @@ var user_credentials_google = function () {
4658
4655
  }, null, options);
4659
4656
  });
4660
4657
 
4661
- return function user_credentials_google(_x1111, _x1112, _x1113, _x1114) {
4658
+ return function user_credentials_google(_x1110, _x1111, _x1112, _x1113) {
4662
4659
  return _ref323.apply(this, arguments);
4663
4660
  };
4664
4661
  }();
@@ -4670,7 +4667,7 @@ var delete_user_credentials_google = function () {
4670
4667
  return sdk.delete("/users/".concat(user_id, "/credentials_google"), null, null, options);
4671
4668
  });
4672
4669
 
4673
- return function delete_user_credentials_google(_x1115, _x1116, _x1117) {
4670
+ return function delete_user_credentials_google(_x1114, _x1115, _x1116) {
4674
4671
  return _ref324.apply(this, arguments);
4675
4672
  };
4676
4673
  }();
@@ -4684,7 +4681,7 @@ var user_credentials_saml = function () {
4684
4681
  }, null, options);
4685
4682
  });
4686
4683
 
4687
- return function user_credentials_saml(_x1118, _x1119, _x1120, _x1121) {
4684
+ return function user_credentials_saml(_x1117, _x1118, _x1119, _x1120) {
4688
4685
  return _ref325.apply(this, arguments);
4689
4686
  };
4690
4687
  }();
@@ -4696,7 +4693,7 @@ var delete_user_credentials_saml = function () {
4696
4693
  return sdk.delete("/users/".concat(user_id, "/credentials_saml"), null, null, options);
4697
4694
  });
4698
4695
 
4699
- return function delete_user_credentials_saml(_x1122, _x1123, _x1124) {
4696
+ return function delete_user_credentials_saml(_x1121, _x1122, _x1123) {
4700
4697
  return _ref326.apply(this, arguments);
4701
4698
  };
4702
4699
  }();
@@ -4710,7 +4707,7 @@ var user_credentials_oidc = function () {
4710
4707
  }, null, options);
4711
4708
  });
4712
4709
 
4713
- return function user_credentials_oidc(_x1125, _x1126, _x1127, _x1128) {
4710
+ return function user_credentials_oidc(_x1124, _x1125, _x1126, _x1127) {
4714
4711
  return _ref327.apply(this, arguments);
4715
4712
  };
4716
4713
  }();
@@ -4722,7 +4719,7 @@ var delete_user_credentials_oidc = function () {
4722
4719
  return sdk.delete("/users/".concat(user_id, "/credentials_oidc"), null, null, options);
4723
4720
  });
4724
4721
 
4725
- return function delete_user_credentials_oidc(_x1129, _x1130, _x1131) {
4722
+ return function delete_user_credentials_oidc(_x1128, _x1129, _x1130) {
4726
4723
  return _ref328.apply(this, arguments);
4727
4724
  };
4728
4725
  }();
@@ -4736,7 +4733,7 @@ var user_credentials_api3 = function () {
4736
4733
  }, null, options);
4737
4734
  });
4738
4735
 
4739
- return function user_credentials_api3(_x1132, _x1133, _x1134, _x1135, _x1136) {
4736
+ return function user_credentials_api3(_x1131, _x1132, _x1133, _x1134, _x1135) {
4740
4737
  return _ref329.apply(this, arguments);
4741
4738
  };
4742
4739
  }();
@@ -4748,7 +4745,7 @@ var delete_user_credentials_api3 = function () {
4748
4745
  return sdk.delete("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), null, null, options);
4749
4746
  });
4750
4747
 
4751
- return function delete_user_credentials_api3(_x1137, _x1138, _x1139, _x1140) {
4748
+ return function delete_user_credentials_api3(_x1136, _x1137, _x1138, _x1139) {
4752
4749
  return _ref330.apply(this, arguments);
4753
4750
  };
4754
4751
  }();
@@ -4762,7 +4759,7 @@ var all_user_credentials_api3s = function () {
4762
4759
  }, null, options);
4763
4760
  });
4764
4761
 
4765
- return function all_user_credentials_api3s(_x1141, _x1142, _x1143, _x1144) {
4762
+ return function all_user_credentials_api3s(_x1140, _x1141, _x1142, _x1143) {
4766
4763
  return _ref331.apply(this, arguments);
4767
4764
  };
4768
4765
  }();
@@ -4776,7 +4773,7 @@ var create_user_credentials_api3 = function () {
4776
4773
  }, body, options);
4777
4774
  });
4778
4775
 
4779
- return function create_user_credentials_api3(_x1145, _x1146, _x1147, _x1148, _x1149) {
4776
+ return function create_user_credentials_api3(_x1144, _x1145, _x1146, _x1147, _x1148) {
4780
4777
  return _ref332.apply(this, arguments);
4781
4778
  };
4782
4779
  }();
@@ -4790,7 +4787,7 @@ var user_credentials_embed = function () {
4790
4787
  }, null, options);
4791
4788
  });
4792
4789
 
4793
- return function user_credentials_embed(_x1150, _x1151, _x1152, _x1153, _x1154) {
4790
+ return function user_credentials_embed(_x1149, _x1150, _x1151, _x1152, _x1153) {
4794
4791
  return _ref333.apply(this, arguments);
4795
4792
  };
4796
4793
  }();
@@ -4802,7 +4799,7 @@ var delete_user_credentials_embed = function () {
4802
4799
  return sdk.delete("/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), null, null, options);
4803
4800
  });
4804
4801
 
4805
- return function delete_user_credentials_embed(_x1155, _x1156, _x1157, _x1158) {
4802
+ return function delete_user_credentials_embed(_x1154, _x1155, _x1156, _x1157) {
4806
4803
  return _ref334.apply(this, arguments);
4807
4804
  };
4808
4805
  }();
@@ -4816,7 +4813,7 @@ var all_user_credentials_embeds = function () {
4816
4813
  }, null, options);
4817
4814
  });
4818
4815
 
4819
- return function all_user_credentials_embeds(_x1159, _x1160, _x1161, _x1162) {
4816
+ return function all_user_credentials_embeds(_x1158, _x1159, _x1160, _x1161) {
4820
4817
  return _ref335.apply(this, arguments);
4821
4818
  };
4822
4819
  }();
@@ -4830,7 +4827,7 @@ var user_credentials_looker_openid = function () {
4830
4827
  }, null, options);
4831
4828
  });
4832
4829
 
4833
- return function user_credentials_looker_openid(_x1163, _x1164, _x1165, _x1166) {
4830
+ return function user_credentials_looker_openid(_x1162, _x1163, _x1164, _x1165) {
4834
4831
  return _ref336.apply(this, arguments);
4835
4832
  };
4836
4833
  }();
@@ -4842,7 +4839,7 @@ var delete_user_credentials_looker_openid = function () {
4842
4839
  return sdk.delete("/users/".concat(user_id, "/credentials_looker_openid"), null, null, options);
4843
4840
  });
4844
4841
 
4845
- return function delete_user_credentials_looker_openid(_x1167, _x1168, _x1169) {
4842
+ return function delete_user_credentials_looker_openid(_x1166, _x1167, _x1168) {
4846
4843
  return _ref337.apply(this, arguments);
4847
4844
  };
4848
4845
  }();
@@ -4856,7 +4853,7 @@ var user_session = function () {
4856
4853
  }, null, options);
4857
4854
  });
4858
4855
 
4859
- return function user_session(_x1170, _x1171, _x1172, _x1173, _x1174) {
4856
+ return function user_session(_x1169, _x1170, _x1171, _x1172, _x1173) {
4860
4857
  return _ref338.apply(this, arguments);
4861
4858
  };
4862
4859
  }();
@@ -4868,7 +4865,7 @@ var delete_user_session = function () {
4868
4865
  return sdk.delete("/users/".concat(user_id, "/sessions/").concat(session_id), null, null, options);
4869
4866
  });
4870
4867
 
4871
- return function delete_user_session(_x1175, _x1176, _x1177, _x1178) {
4868
+ return function delete_user_session(_x1174, _x1175, _x1176, _x1177) {
4872
4869
  return _ref339.apply(this, arguments);
4873
4870
  };
4874
4871
  }();
@@ -4882,7 +4879,7 @@ var all_user_sessions = function () {
4882
4879
  }, null, options);
4883
4880
  });
4884
4881
 
4885
- return function all_user_sessions(_x1179, _x1180, _x1181, _x1182) {
4882
+ return function all_user_sessions(_x1178, _x1179, _x1180, _x1181) {
4886
4883
  return _ref340.apply(this, arguments);
4887
4884
  };
4888
4885
  }();
@@ -4897,7 +4894,7 @@ var create_user_credentials_email_password_reset = function () {
4897
4894
  }, null, options);
4898
4895
  });
4899
4896
 
4900
- return function create_user_credentials_email_password_reset(_x1183, _x1184, _x1185) {
4897
+ return function create_user_credentials_email_password_reset(_x1182, _x1183, _x1184) {
4901
4898
  return _ref341.apply(this, arguments);
4902
4899
  };
4903
4900
  }();
@@ -4912,7 +4909,7 @@ var user_roles = function () {
4912
4909
  }, null, options);
4913
4910
  });
4914
4911
 
4915
- return function user_roles(_x1186, _x1187, _x1188) {
4912
+ return function user_roles(_x1185, _x1186, _x1187) {
4916
4913
  return _ref342.apply(this, arguments);
4917
4914
  };
4918
4915
  }();
@@ -4926,7 +4923,7 @@ var set_user_roles = function () {
4926
4923
  }, body, options);
4927
4924
  });
4928
4925
 
4929
- return function set_user_roles(_x1189, _x1190, _x1191, _x1192, _x1193) {
4926
+ return function set_user_roles(_x1188, _x1189, _x1190, _x1191, _x1192) {
4930
4927
  return _ref343.apply(this, arguments);
4931
4928
  };
4932
4929
  }();
@@ -4943,7 +4940,7 @@ var user_attribute_user_values = function () {
4943
4940
  }, null, options);
4944
4941
  });
4945
4942
 
4946
- return function user_attribute_user_values(_x1194, _x1195, _x1196) {
4943
+ return function user_attribute_user_values(_x1193, _x1194, _x1195) {
4947
4944
  return _ref344.apply(this, arguments);
4948
4945
  };
4949
4946
  }();
@@ -4955,7 +4952,7 @@ var set_user_attribute_user_value = function () {
4955
4952
  return sdk.patch("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
4956
4953
  });
4957
4954
 
4958
- return function set_user_attribute_user_value(_x1197, _x1198, _x1199, _x1200, _x1201) {
4955
+ return function set_user_attribute_user_value(_x1196, _x1197, _x1198, _x1199, _x1200) {
4959
4956
  return _ref345.apply(this, arguments);
4960
4957
  };
4961
4958
  }();
@@ -4967,7 +4964,7 @@ var delete_user_attribute_user_value = function () {
4967
4964
  return sdk.delete("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
4968
4965
  });
4969
4966
 
4970
- return function delete_user_attribute_user_value(_x1202, _x1203, _x1204, _x1205) {
4967
+ return function delete_user_attribute_user_value(_x1201, _x1202, _x1203, _x1204) {
4971
4968
  return _ref346.apply(this, arguments);
4972
4969
  };
4973
4970
  }();
@@ -4982,7 +4979,7 @@ var all_user_attributes = function () {
4982
4979
  }, null, options);
4983
4980
  });
4984
4981
 
4985
- return function all_user_attributes(_x1206, _x1207, _x1208) {
4982
+ return function all_user_attributes(_x1205, _x1206, _x1207) {
4986
4983
  return _ref347.apply(this, arguments);
4987
4984
  };
4988
4985
  }();
@@ -4996,7 +4993,7 @@ var create_user_attribute = function () {
4996
4993
  }, body, options);
4997
4994
  });
4998
4995
 
4999
- return function create_user_attribute(_x1209, _x1210, _x1211, _x1212) {
4996
+ return function create_user_attribute(_x1208, _x1209, _x1210, _x1211) {
5000
4997
  return _ref348.apply(this, arguments);
5001
4998
  };
5002
4999
  }();
@@ -5010,7 +5007,7 @@ var user_attribute = function () {
5010
5007
  }, null, options);
5011
5008
  });
5012
5009
 
5013
- return function user_attribute(_x1213, _x1214, _x1215, _x1216) {
5010
+ return function user_attribute(_x1212, _x1213, _x1214, _x1215) {
5014
5011
  return _ref349.apply(this, arguments);
5015
5012
  };
5016
5013
  }();
@@ -5024,7 +5021,7 @@ var update_user_attribute = function () {
5024
5021
  }, body, options);
5025
5022
  });
5026
5023
 
5027
- return function update_user_attribute(_x1217, _x1218, _x1219, _x1220, _x1221) {
5024
+ return function update_user_attribute(_x1216, _x1217, _x1218, _x1219, _x1220) {
5028
5025
  return _ref350.apply(this, arguments);
5029
5026
  };
5030
5027
  }();
@@ -5036,7 +5033,7 @@ var delete_user_attribute = function () {
5036
5033
  return sdk.delete("/user_attributes/".concat(user_attribute_id), null, null, options);
5037
5034
  });
5038
5035
 
5039
- return function delete_user_attribute(_x1222, _x1223, _x1224) {
5036
+ return function delete_user_attribute(_x1221, _x1222, _x1223) {
5040
5037
  return _ref351.apply(this, arguments);
5041
5038
  };
5042
5039
  }();
@@ -5050,7 +5047,7 @@ var all_user_attribute_group_values = function () {
5050
5047
  }, null, options);
5051
5048
  });
5052
5049
 
5053
- return function all_user_attribute_group_values(_x1225, _x1226, _x1227, _x1228) {
5050
+ return function all_user_attribute_group_values(_x1224, _x1225, _x1226, _x1227) {
5054
5051
  return _ref352.apply(this, arguments);
5055
5052
  };
5056
5053
  }();
@@ -5062,7 +5059,7 @@ var set_user_attribute_group_values = function () {
5062
5059
  return sdk.post("/user_attributes/".concat(user_attribute_id, "/group_values"), null, body, options);
5063
5060
  });
5064
5061
 
5065
- return function set_user_attribute_group_values(_x1229, _x1230, _x1231, _x1232) {
5062
+ return function set_user_attribute_group_values(_x1228, _x1229, _x1230, _x1231) {
5066
5063
  return _ref353.apply(this, arguments);
5067
5064
  };
5068
5065
  }();
@@ -5074,7 +5071,7 @@ var all_workspaces = function () {
5074
5071
  return sdk.get('/workspaces', null, null, options);
5075
5072
  });
5076
5073
 
5077
- return function all_workspaces(_x1233, _x1234) {
5074
+ return function all_workspaces(_x1232, _x1233) {
5078
5075
  return _ref354.apply(this, arguments);
5079
5076
  };
5080
5077
  }();
@@ -5087,7 +5084,7 @@ var workspace = function () {
5087
5084
  return sdk.get("/workspaces/".concat(workspace_id), null, null, options);
5088
5085
  });
5089
5086
 
5090
- return function workspace(_x1235, _x1236, _x1237) {
5087
+ return function workspace(_x1234, _x1235, _x1236) {
5091
5088
  return _ref355.apply(this, arguments);
5092
5089
  };
5093
5090
  }();