@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
@@ -926,8 +926,6 @@ export var search_dashboards = function () {
926
926
  fields: request.fields,
927
927
  page: request.page,
928
928
  per_page: request.per_page,
929
- limit: request.limit,
930
- offset: request.offset,
931
929
  sorts: request.sorts,
932
930
  filter_or: request.filter_or
933
931
  }, null, options);
@@ -1078,13 +1076,14 @@ export var dashboard_dashboard_elements = function () {
1078
1076
  };
1079
1077
  }();
1080
1078
  export var create_dashboard_element = function () {
1081
- var _ref102 = _asyncToGenerator(function* (sdk, body, fields, options) {
1079
+ var _ref102 = _asyncToGenerator(function* (sdk, request, options) {
1082
1080
  return sdk.post('/dashboard_elements', {
1083
- fields
1084
- }, body, options);
1081
+ fields: request.fields,
1082
+ apply_filters: request.apply_filters
1083
+ }, request.body, options);
1085
1084
  });
1086
1085
 
1087
- return function create_dashboard_element(_x316, _x317, _x318, _x319) {
1086
+ return function create_dashboard_element(_x316, _x317, _x318) {
1088
1087
  return _ref102.apply(this, arguments);
1089
1088
  };
1090
1089
  }();
@@ -1096,7 +1095,7 @@ export var dashboard_filter = function () {
1096
1095
  }, null, options);
1097
1096
  });
1098
1097
 
1099
- return function dashboard_filter(_x320, _x321, _x322, _x323) {
1098
+ return function dashboard_filter(_x319, _x320, _x321, _x322) {
1100
1099
  return _ref103.apply(this, arguments);
1101
1100
  };
1102
1101
  }();
@@ -1108,7 +1107,7 @@ export var update_dashboard_filter = function () {
1108
1107
  }, body, options);
1109
1108
  });
1110
1109
 
1111
- return function update_dashboard_filter(_x324, _x325, _x326, _x327, _x328) {
1110
+ return function update_dashboard_filter(_x323, _x324, _x325, _x326, _x327) {
1112
1111
  return _ref104.apply(this, arguments);
1113
1112
  };
1114
1113
  }();
@@ -1118,7 +1117,7 @@ export var delete_dashboard_filter = function () {
1118
1117
  return sdk.delete("/dashboard_filters/".concat(dashboard_filter_id), null, null, options);
1119
1118
  });
1120
1119
 
1121
- return function delete_dashboard_filter(_x329, _x330, _x331) {
1120
+ return function delete_dashboard_filter(_x328, _x329, _x330) {
1122
1121
  return _ref105.apply(this, arguments);
1123
1122
  };
1124
1123
  }();
@@ -1130,7 +1129,7 @@ export var dashboard_dashboard_filters = function () {
1130
1129
  }, null, options);
1131
1130
  });
1132
1131
 
1133
- return function dashboard_dashboard_filters(_x332, _x333, _x334, _x335) {
1132
+ return function dashboard_dashboard_filters(_x331, _x332, _x333, _x334) {
1134
1133
  return _ref106.apply(this, arguments);
1135
1134
  };
1136
1135
  }();
@@ -1141,7 +1140,7 @@ export var create_dashboard_filter = function () {
1141
1140
  }, body, options);
1142
1141
  });
1143
1142
 
1144
- return function create_dashboard_filter(_x336, _x337, _x338, _x339) {
1143
+ return function create_dashboard_filter(_x335, _x336, _x337, _x338) {
1145
1144
  return _ref107.apply(this, arguments);
1146
1145
  };
1147
1146
  }();
@@ -1153,7 +1152,7 @@ export var dashboard_layout_component = function () {
1153
1152
  }, null, options);
1154
1153
  });
1155
1154
 
1156
- return function dashboard_layout_component(_x340, _x341, _x342, _x343) {
1155
+ return function dashboard_layout_component(_x339, _x340, _x341, _x342) {
1157
1156
  return _ref108.apply(this, arguments);
1158
1157
  };
1159
1158
  }();
@@ -1165,7 +1164,7 @@ export var update_dashboard_layout_component = function () {
1165
1164
  }, body, options);
1166
1165
  });
1167
1166
 
1168
- return function update_dashboard_layout_component(_x344, _x345, _x346, _x347, _x348) {
1167
+ return function update_dashboard_layout_component(_x343, _x344, _x345, _x346, _x347) {
1169
1168
  return _ref109.apply(this, arguments);
1170
1169
  };
1171
1170
  }();
@@ -1177,7 +1176,7 @@ export var dashboard_layout_dashboard_layout_components = function () {
1177
1176
  }, null, options);
1178
1177
  });
1179
1178
 
1180
- return function dashboard_layout_dashboard_layout_components(_x349, _x350, _x351, _x352) {
1179
+ return function dashboard_layout_dashboard_layout_components(_x348, _x349, _x350, _x351) {
1181
1180
  return _ref110.apply(this, arguments);
1182
1181
  };
1183
1182
  }();
@@ -1189,7 +1188,7 @@ export var dashboard_layout = function () {
1189
1188
  }, null, options);
1190
1189
  });
1191
1190
 
1192
- return function dashboard_layout(_x353, _x354, _x355, _x356) {
1191
+ return function dashboard_layout(_x352, _x353, _x354, _x355) {
1193
1192
  return _ref111.apply(this, arguments);
1194
1193
  };
1195
1194
  }();
@@ -1201,7 +1200,7 @@ export var update_dashboard_layout = function () {
1201
1200
  }, body, options);
1202
1201
  });
1203
1202
 
1204
- return function update_dashboard_layout(_x357, _x358, _x359, _x360, _x361) {
1203
+ return function update_dashboard_layout(_x356, _x357, _x358, _x359, _x360) {
1205
1204
  return _ref112.apply(this, arguments);
1206
1205
  };
1207
1206
  }();
@@ -1211,7 +1210,7 @@ export var delete_dashboard_layout = function () {
1211
1210
  return sdk.delete("/dashboard_layouts/".concat(dashboard_layout_id), null, null, options);
1212
1211
  });
1213
1212
 
1214
- return function delete_dashboard_layout(_x362, _x363, _x364) {
1213
+ return function delete_dashboard_layout(_x361, _x362, _x363) {
1215
1214
  return _ref113.apply(this, arguments);
1216
1215
  };
1217
1216
  }();
@@ -1223,7 +1222,7 @@ export var dashboard_dashboard_layouts = function () {
1223
1222
  }, null, options);
1224
1223
  });
1225
1224
 
1226
- return function dashboard_dashboard_layouts(_x365, _x366, _x367, _x368) {
1225
+ return function dashboard_dashboard_layouts(_x364, _x365, _x366, _x367) {
1227
1226
  return _ref114.apply(this, arguments);
1228
1227
  };
1229
1228
  }();
@@ -1234,7 +1233,7 @@ export var create_dashboard_layout = function () {
1234
1233
  }, body, options);
1235
1234
  });
1236
1235
 
1237
- return function create_dashboard_layout(_x369, _x370, _x371, _x372) {
1236
+ return function create_dashboard_layout(_x368, _x369, _x370, _x371) {
1238
1237
  return _ref115.apply(this, arguments);
1239
1238
  };
1240
1239
  }();
@@ -1243,7 +1242,7 @@ export var perform_data_action = function () {
1243
1242
  return sdk.post('/data_actions', null, body, options);
1244
1243
  });
1245
1244
 
1246
- return function perform_data_action(_x373, _x374, _x375) {
1245
+ return function perform_data_action(_x372, _x373, _x374) {
1247
1246
  return _ref116.apply(this, arguments);
1248
1247
  };
1249
1248
  }();
@@ -1252,7 +1251,7 @@ export var fetch_remote_data_action_form = function () {
1252
1251
  return sdk.post('/data_actions/form', null, body, options);
1253
1252
  });
1254
1253
 
1255
- return function fetch_remote_data_action_form(_x376, _x377, _x378) {
1254
+ return function fetch_remote_data_action_form(_x375, _x376, _x377) {
1256
1255
  return _ref117.apply(this, arguments);
1257
1256
  };
1258
1257
  }();
@@ -1261,7 +1260,7 @@ export var all_datagroups = function () {
1261
1260
  return sdk.get('/datagroups', null, null, options);
1262
1261
  });
1263
1262
 
1264
- return function all_datagroups(_x379, _x380) {
1263
+ return function all_datagroups(_x378, _x379) {
1265
1264
  return _ref118.apply(this, arguments);
1266
1265
  };
1267
1266
  }();
@@ -1271,7 +1270,7 @@ export var datagroup = function () {
1271
1270
  return sdk.get("/datagroups/".concat(datagroup_id), null, null, options);
1272
1271
  });
1273
1272
 
1274
- return function datagroup(_x381, _x382, _x383) {
1273
+ return function datagroup(_x380, _x381, _x382) {
1275
1274
  return _ref119.apply(this, arguments);
1276
1275
  };
1277
1276
  }();
@@ -1281,7 +1280,7 @@ export var update_datagroup = function () {
1281
1280
  return sdk.patch("/datagroups/".concat(datagroup_id), null, body, options);
1282
1281
  });
1283
1282
 
1284
- return function update_datagroup(_x384, _x385, _x386, _x387) {
1283
+ return function update_datagroup(_x383, _x384, _x385, _x386) {
1285
1284
  return _ref120.apply(this, arguments);
1286
1285
  };
1287
1286
  }();
@@ -1294,7 +1293,7 @@ export var graph_derived_tables_for_model = function () {
1294
1293
  }, null, options);
1295
1294
  });
1296
1295
 
1297
- return function graph_derived_tables_for_model(_x388, _x389, _x390) {
1296
+ return function graph_derived_tables_for_model(_x387, _x388, _x389) {
1298
1297
  return _ref121.apply(this, arguments);
1299
1298
  };
1300
1299
  }();
@@ -1307,7 +1306,7 @@ export var graph_derived_tables_for_view = function () {
1307
1306
  }, null, options);
1308
1307
  });
1309
1308
 
1310
- return function graph_derived_tables_for_view(_x391, _x392, _x393) {
1309
+ return function graph_derived_tables_for_view(_x390, _x391, _x392) {
1311
1310
  return _ref122.apply(this, arguments);
1312
1311
  };
1313
1312
  }();
@@ -1323,7 +1322,7 @@ export var start_pdt_build = function () {
1323
1322
  }, null, options);
1324
1323
  });
1325
1324
 
1326
- return function start_pdt_build(_x394, _x395, _x396) {
1325
+ return function start_pdt_build(_x393, _x394, _x395) {
1327
1326
  return _ref123.apply(this, arguments);
1328
1327
  };
1329
1328
  }();
@@ -1333,7 +1332,7 @@ export var check_pdt_build = function () {
1333
1332
  return sdk.get("/derived_table/".concat(materialization_id, "/status"), null, null, options);
1334
1333
  });
1335
1334
 
1336
- return function check_pdt_build(_x397, _x398, _x399) {
1335
+ return function check_pdt_build(_x396, _x397, _x398) {
1337
1336
  return _ref124.apply(this, arguments);
1338
1337
  };
1339
1338
  }();
@@ -1345,7 +1344,7 @@ export var stop_pdt_build = function () {
1345
1344
  }, null, options);
1346
1345
  });
1347
1346
 
1348
- return function stop_pdt_build(_x400, _x401, _x402, _x403) {
1347
+ return function stop_pdt_build(_x399, _x400, _x401, _x402) {
1349
1348
  return _ref125.apply(this, arguments);
1350
1349
  };
1351
1350
  }();
@@ -1367,7 +1366,7 @@ export var search_folders = function () {
1367
1366
  }, null, options);
1368
1367
  });
1369
1368
 
1370
- return function search_folders(_x404, _x405, _x406) {
1369
+ return function search_folders(_x403, _x404, _x405) {
1371
1370
  return _ref126.apply(this, arguments);
1372
1371
  };
1373
1372
  }();
@@ -1379,7 +1378,7 @@ export var folder = function () {
1379
1378
  }, null, options);
1380
1379
  });
1381
1380
 
1382
- return function folder(_x407, _x408, _x409, _x410) {
1381
+ return function folder(_x406, _x407, _x408, _x409) {
1383
1382
  return _ref127.apply(this, arguments);
1384
1383
  };
1385
1384
  }();
@@ -1389,7 +1388,7 @@ export var update_folder = function () {
1389
1388
  return sdk.patch("/folders/".concat(folder_id), null, body, options);
1390
1389
  });
1391
1390
 
1392
- return function update_folder(_x411, _x412, _x413, _x414) {
1391
+ return function update_folder(_x410, _x411, _x412, _x413) {
1393
1392
  return _ref128.apply(this, arguments);
1394
1393
  };
1395
1394
  }();
@@ -1399,7 +1398,7 @@ export var delete_folder = function () {
1399
1398
  return sdk.delete("/folders/".concat(folder_id), null, null, options);
1400
1399
  });
1401
1400
 
1402
- return function delete_folder(_x415, _x416, _x417) {
1401
+ return function delete_folder(_x414, _x415, _x416) {
1403
1402
  return _ref129.apply(this, arguments);
1404
1403
  };
1405
1404
  }();
@@ -1410,7 +1409,7 @@ export var all_folders = function () {
1410
1409
  }, null, options);
1411
1410
  });
1412
1411
 
1413
- return function all_folders(_x418, _x419, _x420) {
1412
+ return function all_folders(_x417, _x418, _x419) {
1414
1413
  return _ref130.apply(this, arguments);
1415
1414
  };
1416
1415
  }();
@@ -1419,7 +1418,7 @@ export var create_folder = function () {
1419
1418
  return sdk.post('/folders', null, body, options);
1420
1419
  });
1421
1420
 
1422
- return function create_folder(_x421, _x422, _x423) {
1421
+ return function create_folder(_x420, _x421, _x422) {
1423
1422
  return _ref131.apply(this, arguments);
1424
1423
  };
1425
1424
  }();
@@ -1434,7 +1433,7 @@ export var folder_children = function () {
1434
1433
  }, null, options);
1435
1434
  });
1436
1435
 
1437
- return function folder_children(_x424, _x425, _x426) {
1436
+ return function folder_children(_x423, _x424, _x425) {
1438
1437
  return _ref132.apply(this, arguments);
1439
1438
  };
1440
1439
  }();
@@ -1448,7 +1447,7 @@ export var folder_children_search = function () {
1448
1447
  }, null, options);
1449
1448
  });
1450
1449
 
1451
- return function folder_children_search(_x427, _x428, _x429) {
1450
+ return function folder_children_search(_x426, _x427, _x428) {
1452
1451
  return _ref133.apply(this, arguments);
1453
1452
  };
1454
1453
  }();
@@ -1460,7 +1459,7 @@ export var folder_parent = function () {
1460
1459
  }, null, options);
1461
1460
  });
1462
1461
 
1463
- return function folder_parent(_x430, _x431, _x432, _x433) {
1462
+ return function folder_parent(_x429, _x430, _x431, _x432) {
1464
1463
  return _ref134.apply(this, arguments);
1465
1464
  };
1466
1465
  }();
@@ -1472,7 +1471,7 @@ export var folder_ancestors = function () {
1472
1471
  }, null, options);
1473
1472
  });
1474
1473
 
1475
- return function folder_ancestors(_x434, _x435, _x436, _x437) {
1474
+ return function folder_ancestors(_x433, _x434, _x435, _x436) {
1476
1475
  return _ref135.apply(this, arguments);
1477
1476
  };
1478
1477
  }();
@@ -1484,7 +1483,7 @@ export var folder_looks = function () {
1484
1483
  }, null, options);
1485
1484
  });
1486
1485
 
1487
- return function folder_looks(_x438, _x439, _x440, _x441) {
1486
+ return function folder_looks(_x437, _x438, _x439, _x440) {
1488
1487
  return _ref136.apply(this, arguments);
1489
1488
  };
1490
1489
  }();
@@ -1496,7 +1495,7 @@ export var folder_dashboards = function () {
1496
1495
  }, null, options);
1497
1496
  });
1498
1497
 
1499
- return function folder_dashboards(_x442, _x443, _x444, _x445) {
1498
+ return function folder_dashboards(_x441, _x442, _x443, _x444) {
1500
1499
  return _ref137.apply(this, arguments);
1501
1500
  };
1502
1501
  }();
@@ -1513,7 +1512,7 @@ export var all_groups = function () {
1513
1512
  }, null, options);
1514
1513
  });
1515
1514
 
1516
- return function all_groups(_x446, _x447, _x448) {
1515
+ return function all_groups(_x445, _x446, _x447) {
1517
1516
  return _ref138.apply(this, arguments);
1518
1517
  };
1519
1518
  }();
@@ -1524,7 +1523,7 @@ export var create_group = function () {
1524
1523
  }, body, options);
1525
1524
  });
1526
1525
 
1527
- return function create_group(_x449, _x450, _x451, _x452) {
1526
+ return function create_group(_x448, _x449, _x450, _x451) {
1528
1527
  return _ref139.apply(this, arguments);
1529
1528
  };
1530
1529
  }();
@@ -1544,7 +1543,7 @@ export var search_groups = function () {
1544
1543
  }, null, options);
1545
1544
  });
1546
1545
 
1547
- return function search_groups(_x453, _x454, _x455) {
1546
+ return function search_groups(_x452, _x453, _x454) {
1548
1547
  return _ref140.apply(this, arguments);
1549
1548
  };
1550
1549
  }();
@@ -1555,7 +1554,7 @@ export var group = function () {
1555
1554
  }, null, options);
1556
1555
  });
1557
1556
 
1558
- return function group(_x456, _x457, _x458, _x459) {
1557
+ return function group(_x455, _x456, _x457, _x458) {
1559
1558
  return _ref141.apply(this, arguments);
1560
1559
  };
1561
1560
  }();
@@ -1566,7 +1565,7 @@ export var update_group = function () {
1566
1565
  }, body, options);
1567
1566
  });
1568
1567
 
1569
- return function update_group(_x460, _x461, _x462, _x463, _x464) {
1568
+ return function update_group(_x459, _x460, _x461, _x462, _x463) {
1570
1569
  return _ref142.apply(this, arguments);
1571
1570
  };
1572
1571
  }();
@@ -1575,7 +1574,7 @@ export var delete_group = function () {
1575
1574
  return sdk.delete("/groups/".concat(group_id), null, null, options);
1576
1575
  });
1577
1576
 
1578
- return function delete_group(_x465, _x466, _x467) {
1577
+ return function delete_group(_x464, _x465, _x466) {
1579
1578
  return _ref143.apply(this, arguments);
1580
1579
  };
1581
1580
  }();
@@ -1586,7 +1585,7 @@ export var all_group_groups = function () {
1586
1585
  }, null, options);
1587
1586
  });
1588
1587
 
1589
- return function all_group_groups(_x468, _x469, _x470, _x471) {
1588
+ return function all_group_groups(_x467, _x468, _x469, _x470) {
1590
1589
  return _ref144.apply(this, arguments);
1591
1590
  };
1592
1591
  }();
@@ -1595,7 +1594,7 @@ export var add_group_group = function () {
1595
1594
  return sdk.post("/groups/".concat(group_id, "/groups"), null, body, options);
1596
1595
  });
1597
1596
 
1598
- return function add_group_group(_x472, _x473, _x474, _x475) {
1597
+ return function add_group_group(_x471, _x472, _x473, _x474) {
1599
1598
  return _ref145.apply(this, arguments);
1600
1599
  };
1601
1600
  }();
@@ -1609,7 +1608,7 @@ export var all_group_users = function () {
1609
1608
  }, null, options);
1610
1609
  });
1611
1610
 
1612
- return function all_group_users(_x476, _x477, _x478) {
1611
+ return function all_group_users(_x475, _x476, _x477) {
1613
1612
  return _ref146.apply(this, arguments);
1614
1613
  };
1615
1614
  }();
@@ -1618,7 +1617,7 @@ export var add_group_user = function () {
1618
1617
  return sdk.post("/groups/".concat(group_id, "/users"), null, body, options);
1619
1618
  });
1620
1619
 
1621
- return function add_group_user(_x479, _x480, _x481, _x482) {
1620
+ return function add_group_user(_x478, _x479, _x480, _x481) {
1622
1621
  return _ref147.apply(this, arguments);
1623
1622
  };
1624
1623
  }();
@@ -1627,7 +1626,7 @@ export var delete_group_user = function () {
1627
1626
  return sdk.delete("/groups/".concat(group_id, "/users/").concat(user_id), null, null, options);
1628
1627
  });
1629
1628
 
1630
- return function delete_group_user(_x483, _x484, _x485, _x486) {
1629
+ return function delete_group_user(_x482, _x483, _x484, _x485) {
1631
1630
  return _ref148.apply(this, arguments);
1632
1631
  };
1633
1632
  }();
@@ -1636,7 +1635,7 @@ export var delete_group_from_group = function () {
1636
1635
  return sdk.delete("/groups/".concat(group_id, "/groups/").concat(deleting_group_id), null, null, options);
1637
1636
  });
1638
1637
 
1639
- return function delete_group_from_group(_x487, _x488, _x489, _x490) {
1638
+ return function delete_group_from_group(_x486, _x487, _x488, _x489) {
1640
1639
  return _ref149.apply(this, arguments);
1641
1640
  };
1642
1641
  }();
@@ -1645,7 +1644,7 @@ export var update_user_attribute_group_value = function () {
1645
1644
  return sdk.patch("/groups/".concat(group_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
1646
1645
  });
1647
1646
 
1648
- return function update_user_attribute_group_value(_x491, _x492, _x493, _x494, _x495) {
1647
+ return function update_user_attribute_group_value(_x490, _x491, _x492, _x493, _x494) {
1649
1648
  return _ref150.apply(this, arguments);
1650
1649
  };
1651
1650
  }();
@@ -1654,7 +1653,7 @@ export var delete_user_attribute_group_value = function () {
1654
1653
  return sdk.delete("/groups/".concat(group_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
1655
1654
  });
1656
1655
 
1657
- return function delete_user_attribute_group_value(_x496, _x497, _x498, _x499) {
1656
+ return function delete_user_attribute_group_value(_x495, _x496, _x497, _x498) {
1658
1657
  return _ref151.apply(this, arguments);
1659
1658
  };
1660
1659
  }();
@@ -1665,7 +1664,7 @@ export var all_homepages = function () {
1665
1664
  }, null, options);
1666
1665
  });
1667
1666
 
1668
- return function all_homepages(_x500, _x501, _x502) {
1667
+ return function all_homepages(_x499, _x500, _x501) {
1669
1668
  return _ref152.apply(this, arguments);
1670
1669
  };
1671
1670
  }();
@@ -1676,7 +1675,7 @@ export var create_homepage = function () {
1676
1675
  }, body, options);
1677
1676
  });
1678
1677
 
1679
- return function create_homepage(_x503, _x504, _x505, _x506) {
1678
+ return function create_homepage(_x502, _x503, _x504, _x505) {
1680
1679
  return _ref153.apply(this, arguments);
1681
1680
  };
1682
1681
  }();
@@ -1699,7 +1698,7 @@ export var search_homepages = function () {
1699
1698
  }, null, options);
1700
1699
  });
1701
1700
 
1702
- return function search_homepages(_x507, _x508, _x509) {
1701
+ return function search_homepages(_x506, _x507, _x508) {
1703
1702
  return _ref154.apply(this, arguments);
1704
1703
  };
1705
1704
  }();
@@ -1710,7 +1709,7 @@ export var homepage = function () {
1710
1709
  }, null, options);
1711
1710
  });
1712
1711
 
1713
- return function homepage(_x510, _x511, _x512, _x513) {
1712
+ return function homepage(_x509, _x510, _x511, _x512) {
1714
1713
  return _ref155.apply(this, arguments);
1715
1714
  };
1716
1715
  }();
@@ -1721,7 +1720,7 @@ export var update_homepage = function () {
1721
1720
  }, body, options);
1722
1721
  });
1723
1722
 
1724
- return function update_homepage(_x514, _x515, _x516, _x517, _x518) {
1723
+ return function update_homepage(_x513, _x514, _x515, _x516, _x517) {
1725
1724
  return _ref156.apply(this, arguments);
1726
1725
  };
1727
1726
  }();
@@ -1730,7 +1729,7 @@ export var delete_homepage = function () {
1730
1729
  return sdk.delete("/homepages/".concat(homepage_id), null, null, options);
1731
1730
  });
1732
1731
 
1733
- return function delete_homepage(_x519, _x520, _x521) {
1732
+ return function delete_homepage(_x518, _x519, _x520) {
1734
1733
  return _ref157.apply(this, arguments);
1735
1734
  };
1736
1735
  }();
@@ -1743,7 +1742,7 @@ export var all_homepage_items = function () {
1743
1742
  }, null, options);
1744
1743
  });
1745
1744
 
1746
- return function all_homepage_items(_x522, _x523, _x524) {
1745
+ return function all_homepage_items(_x521, _x522, _x523) {
1747
1746
  return _ref158.apply(this, arguments);
1748
1747
  };
1749
1748
  }();
@@ -1754,7 +1753,7 @@ export var create_homepage_item = function () {
1754
1753
  }, body, options);
1755
1754
  });
1756
1755
 
1757
- return function create_homepage_item(_x525, _x526, _x527, _x528) {
1756
+ return function create_homepage_item(_x524, _x525, _x526, _x527) {
1758
1757
  return _ref159.apply(this, arguments);
1759
1758
  };
1760
1759
  }();
@@ -1765,7 +1764,7 @@ export var homepage_item = function () {
1765
1764
  }, null, options);
1766
1765
  });
1767
1766
 
1768
- return function homepage_item(_x529, _x530, _x531, _x532) {
1767
+ return function homepage_item(_x528, _x529, _x530, _x531) {
1769
1768
  return _ref160.apply(this, arguments);
1770
1769
  };
1771
1770
  }();
@@ -1776,7 +1775,7 @@ export var update_homepage_item = function () {
1776
1775
  }, body, options);
1777
1776
  });
1778
1777
 
1779
- return function update_homepage_item(_x533, _x534, _x535, _x536, _x537) {
1778
+ return function update_homepage_item(_x532, _x533, _x534, _x535, _x536) {
1780
1779
  return _ref161.apply(this, arguments);
1781
1780
  };
1782
1781
  }();
@@ -1785,7 +1784,7 @@ export var delete_homepage_item = function () {
1785
1784
  return sdk.delete("/homepage_items/".concat(homepage_item_id), null, null, options);
1786
1785
  });
1787
1786
 
1788
- return function delete_homepage_item(_x538, _x539, _x540) {
1787
+ return function delete_homepage_item(_x537, _x538, _x539) {
1789
1788
  return _ref162.apply(this, arguments);
1790
1789
  };
1791
1790
  }();
@@ -1797,7 +1796,7 @@ export var all_homepage_sections = function () {
1797
1796
  }, null, options);
1798
1797
  });
1799
1798
 
1800
- return function all_homepage_sections(_x541, _x542, _x543) {
1799
+ return function all_homepage_sections(_x540, _x541, _x542) {
1801
1800
  return _ref163.apply(this, arguments);
1802
1801
  };
1803
1802
  }();
@@ -1808,7 +1807,7 @@ export var create_homepage_section = function () {
1808
1807
  }, body, options);
1809
1808
  });
1810
1809
 
1811
- return function create_homepage_section(_x544, _x545, _x546, _x547) {
1810
+ return function create_homepage_section(_x543, _x544, _x545, _x546) {
1812
1811
  return _ref164.apply(this, arguments);
1813
1812
  };
1814
1813
  }();
@@ -1819,7 +1818,7 @@ export var homepage_section = function () {
1819
1818
  }, null, options);
1820
1819
  });
1821
1820
 
1822
- return function homepage_section(_x548, _x549, _x550, _x551) {
1821
+ return function homepage_section(_x547, _x548, _x549, _x550) {
1823
1822
  return _ref165.apply(this, arguments);
1824
1823
  };
1825
1824
  }();
@@ -1830,7 +1829,7 @@ export var update_homepage_section = function () {
1830
1829
  }, body, options);
1831
1830
  });
1832
1831
 
1833
- return function update_homepage_section(_x552, _x553, _x554, _x555, _x556) {
1832
+ return function update_homepage_section(_x551, _x552, _x553, _x554, _x555) {
1834
1833
  return _ref166.apply(this, arguments);
1835
1834
  };
1836
1835
  }();
@@ -1839,7 +1838,7 @@ export var delete_homepage_section = function () {
1839
1838
  return sdk.delete("/homepage_sections/".concat(homepage_section_id), null, null, options);
1840
1839
  });
1841
1840
 
1842
- return function delete_homepage_section(_x557, _x558, _x559) {
1841
+ return function delete_homepage_section(_x556, _x557, _x558) {
1843
1842
  return _ref167.apply(this, arguments);
1844
1843
  };
1845
1844
  }();
@@ -1850,7 +1849,7 @@ export var all_primary_homepage_sections = function () {
1850
1849
  }, null, options);
1851
1850
  });
1852
1851
 
1853
- return function all_primary_homepage_sections(_x560, _x561, _x562) {
1852
+ return function all_primary_homepage_sections(_x559, _x560, _x561) {
1854
1853
  return _ref168.apply(this, arguments);
1855
1854
  };
1856
1855
  }();
@@ -1861,7 +1860,7 @@ export var all_integration_hubs = function () {
1861
1860
  }, null, options);
1862
1861
  });
1863
1862
 
1864
- return function all_integration_hubs(_x563, _x564, _x565) {
1863
+ return function all_integration_hubs(_x562, _x563, _x564) {
1865
1864
  return _ref169.apply(this, arguments);
1866
1865
  };
1867
1866
  }();
@@ -1872,7 +1871,7 @@ export var create_integration_hub = function () {
1872
1871
  }, body, options);
1873
1872
  });
1874
1873
 
1875
- return function create_integration_hub(_x566, _x567, _x568, _x569) {
1874
+ return function create_integration_hub(_x565, _x566, _x567, _x568) {
1876
1875
  return _ref170.apply(this, arguments);
1877
1876
  };
1878
1877
  }();
@@ -1883,7 +1882,7 @@ export var integration_hub = function () {
1883
1882
  }, null, options);
1884
1883
  });
1885
1884
 
1886
- return function integration_hub(_x570, _x571, _x572, _x573) {
1885
+ return function integration_hub(_x569, _x570, _x571, _x572) {
1887
1886
  return _ref171.apply(this, arguments);
1888
1887
  };
1889
1888
  }();
@@ -1894,7 +1893,7 @@ export var update_integration_hub = function () {
1894
1893
  }, body, options);
1895
1894
  });
1896
1895
 
1897
- return function update_integration_hub(_x574, _x575, _x576, _x577, _x578) {
1896
+ return function update_integration_hub(_x573, _x574, _x575, _x576, _x577) {
1898
1897
  return _ref172.apply(this, arguments);
1899
1898
  };
1900
1899
  }();
@@ -1903,7 +1902,7 @@ export var delete_integration_hub = function () {
1903
1902
  return sdk.delete("/integration_hubs/".concat(integration_hub_id), null, null, options);
1904
1903
  });
1905
1904
 
1906
- return function delete_integration_hub(_x579, _x580, _x581) {
1905
+ return function delete_integration_hub(_x578, _x579, _x580) {
1907
1906
  return _ref173.apply(this, arguments);
1908
1907
  };
1909
1908
  }();
@@ -1912,7 +1911,7 @@ export var accept_integration_hub_legal_agreement = function () {
1912
1911
  return sdk.post("/integration_hubs/".concat(integration_hub_id, "/accept_legal_agreement"), null, null, options);
1913
1912
  });
1914
1913
 
1915
- return function accept_integration_hub_legal_agreement(_x582, _x583, _x584) {
1914
+ return function accept_integration_hub_legal_agreement(_x581, _x582, _x583) {
1916
1915
  return _ref174.apply(this, arguments);
1917
1916
  };
1918
1917
  }();
@@ -1924,7 +1923,7 @@ export var all_integrations = function () {
1924
1923
  }, null, options);
1925
1924
  });
1926
1925
 
1927
- return function all_integrations(_x585, _x586, _x587) {
1926
+ return function all_integrations(_x584, _x585, _x586) {
1928
1927
  return _ref175.apply(this, arguments);
1929
1928
  };
1930
1929
  }();
@@ -1936,7 +1935,7 @@ export var integration = function () {
1936
1935
  }, null, options);
1937
1936
  });
1938
1937
 
1939
- return function integration(_x588, _x589, _x590, _x591) {
1938
+ return function integration(_x587, _x588, _x589, _x590) {
1940
1939
  return _ref176.apply(this, arguments);
1941
1940
  };
1942
1941
  }();
@@ -1948,7 +1947,7 @@ export var update_integration = function () {
1948
1947
  }, body, options);
1949
1948
  });
1950
1949
 
1951
- return function update_integration(_x592, _x593, _x594, _x595, _x596) {
1950
+ return function update_integration(_x591, _x592, _x593, _x594, _x595) {
1952
1951
  return _ref177.apply(this, arguments);
1953
1952
  };
1954
1953
  }();
@@ -1958,7 +1957,7 @@ export var fetch_integration_form = function () {
1958
1957
  return sdk.post("/integrations/".concat(integration_id, "/form"), null, body, options);
1959
1958
  });
1960
1959
 
1961
- return function fetch_integration_form(_x597, _x598, _x599, _x600) {
1960
+ return function fetch_integration_form(_x596, _x597, _x598, _x599) {
1962
1961
  return _ref178.apply(this, arguments);
1963
1962
  };
1964
1963
  }();
@@ -1968,7 +1967,7 @@ export var test_integration = function () {
1968
1967
  return sdk.post("/integrations/".concat(integration_id, "/test"), null, null, options);
1969
1968
  });
1970
1969
 
1971
- return function test_integration(_x601, _x602, _x603) {
1970
+ return function test_integration(_x600, _x601, _x602) {
1972
1971
  return _ref179.apply(this, arguments);
1973
1972
  };
1974
1973
  }();
@@ -1979,7 +1978,7 @@ export var all_looks = function () {
1979
1978
  }, null, options);
1980
1979
  });
1981
1980
 
1982
- return function all_looks(_x604, _x605, _x606) {
1981
+ return function all_looks(_x603, _x604, _x605) {
1983
1982
  return _ref180.apply(this, arguments);
1984
1983
  };
1985
1984
  }();
@@ -1990,7 +1989,7 @@ export var create_look = function () {
1990
1989
  }, body, options);
1991
1990
  });
1992
1991
 
1993
- return function create_look(_x607, _x608, _x609, _x610) {
1992
+ return function create_look(_x606, _x607, _x608, _x609) {
1994
1993
  return _ref181.apply(this, arguments);
1995
1994
  };
1996
1995
  }();
@@ -2010,14 +2009,12 @@ export var search_looks = function () {
2010
2009
  fields: request.fields,
2011
2010
  page: request.page,
2012
2011
  per_page: request.per_page,
2013
- limit: request.limit,
2014
- offset: request.offset,
2015
2012
  sorts: request.sorts,
2016
2013
  filter_or: request.filter_or
2017
2014
  }, null, options);
2018
2015
  });
2019
2016
 
2020
- return function search_looks(_x611, _x612, _x613) {
2017
+ return function search_looks(_x610, _x611, _x612) {
2021
2018
  return _ref182.apply(this, arguments);
2022
2019
  };
2023
2020
  }();
@@ -2028,7 +2025,7 @@ export var look = function () {
2028
2025
  }, null, options);
2029
2026
  });
2030
2027
 
2031
- return function look(_x614, _x615, _x616, _x617) {
2028
+ return function look(_x613, _x614, _x615, _x616) {
2032
2029
  return _ref183.apply(this, arguments);
2033
2030
  };
2034
2031
  }();
@@ -2039,7 +2036,7 @@ export var update_look = function () {
2039
2036
  }, body, options);
2040
2037
  });
2041
2038
 
2042
- return function update_look(_x618, _x619, _x620, _x621, _x622) {
2039
+ return function update_look(_x617, _x618, _x619, _x620, _x621) {
2043
2040
  return _ref184.apply(this, arguments);
2044
2041
  };
2045
2042
  }();
@@ -2048,7 +2045,7 @@ export var delete_look = function () {
2048
2045
  return sdk.delete("/looks/".concat(look_id), null, null, options);
2049
2046
  });
2050
2047
 
2051
- return function delete_look(_x623, _x624, _x625) {
2048
+ return function delete_look(_x622, _x623, _x624) {
2052
2049
  return _ref185.apply(this, arguments);
2053
2050
  };
2054
2051
  }();
@@ -2071,7 +2068,7 @@ export var run_look = function () {
2071
2068
  }, null, options);
2072
2069
  });
2073
2070
 
2074
- return function run_look(_x626, _x627, _x628) {
2071
+ return function run_look(_x625, _x626, _x627) {
2075
2072
  return _ref186.apply(this, arguments);
2076
2073
  };
2077
2074
  }();
@@ -2082,7 +2079,7 @@ export var all_lookml_models = function () {
2082
2079
  }, null, options);
2083
2080
  });
2084
2081
 
2085
- return function all_lookml_models(_x629, _x630, _x631) {
2082
+ return function all_lookml_models(_x628, _x629, _x630) {
2086
2083
  return _ref187.apply(this, arguments);
2087
2084
  };
2088
2085
  }();
@@ -2091,7 +2088,7 @@ export var create_lookml_model = function () {
2091
2088
  return sdk.post('/lookml_models', null, body, options);
2092
2089
  });
2093
2090
 
2094
- return function create_lookml_model(_x632, _x633, _x634) {
2091
+ return function create_lookml_model(_x631, _x632, _x633) {
2095
2092
  return _ref188.apply(this, arguments);
2096
2093
  };
2097
2094
  }();
@@ -2103,7 +2100,7 @@ export var lookml_model = function () {
2103
2100
  }, null, options);
2104
2101
  });
2105
2102
 
2106
- return function lookml_model(_x635, _x636, _x637, _x638) {
2103
+ return function lookml_model(_x634, _x635, _x636, _x637) {
2107
2104
  return _ref189.apply(this, arguments);
2108
2105
  };
2109
2106
  }();
@@ -2113,7 +2110,7 @@ export var update_lookml_model = function () {
2113
2110
  return sdk.patch("/lookml_models/".concat(lookml_model_name), null, body, options);
2114
2111
  });
2115
2112
 
2116
- return function update_lookml_model(_x639, _x640, _x641, _x642) {
2113
+ return function update_lookml_model(_x638, _x639, _x640, _x641) {
2117
2114
  return _ref190.apply(this, arguments);
2118
2115
  };
2119
2116
  }();
@@ -2123,7 +2120,7 @@ export var delete_lookml_model = function () {
2123
2120
  return sdk.delete("/lookml_models/".concat(lookml_model_name), null, null, options);
2124
2121
  });
2125
2122
 
2126
- return function delete_lookml_model(_x643, _x644, _x645) {
2123
+ return function delete_lookml_model(_x642, _x643, _x644) {
2127
2124
  return _ref191.apply(this, arguments);
2128
2125
  };
2129
2126
  }();
@@ -2136,7 +2133,7 @@ export var lookml_model_explore = function () {
2136
2133
  }, null, options);
2137
2134
  });
2138
2135
 
2139
- return function lookml_model_explore(_x646, _x647, _x648, _x649, _x650) {
2136
+ return function lookml_model_explore(_x645, _x646, _x647, _x648, _x649) {
2140
2137
  return _ref192.apply(this, arguments);
2141
2138
  };
2142
2139
  }();
@@ -2146,7 +2143,7 @@ export var all_git_branches = function () {
2146
2143
  return sdk.get("/projects/".concat(project_id, "/git_branches"), null, null, options);
2147
2144
  });
2148
2145
 
2149
- return function all_git_branches(_x651, _x652, _x653) {
2146
+ return function all_git_branches(_x650, _x651, _x652) {
2150
2147
  return _ref193.apply(this, arguments);
2151
2148
  };
2152
2149
  }();
@@ -2156,7 +2153,7 @@ export var git_branch = function () {
2156
2153
  return sdk.get("/projects/".concat(project_id, "/git_branch"), null, null, options);
2157
2154
  });
2158
2155
 
2159
- return function git_branch(_x654, _x655, _x656) {
2156
+ return function git_branch(_x653, _x654, _x655) {
2160
2157
  return _ref194.apply(this, arguments);
2161
2158
  };
2162
2159
  }();
@@ -2166,7 +2163,7 @@ export var update_git_branch = function () {
2166
2163
  return sdk.put("/projects/".concat(project_id, "/git_branch"), null, body, options);
2167
2164
  });
2168
2165
 
2169
- return function update_git_branch(_x657, _x658, _x659, _x660) {
2166
+ return function update_git_branch(_x656, _x657, _x658, _x659) {
2170
2167
  return _ref195.apply(this, arguments);
2171
2168
  };
2172
2169
  }();
@@ -2176,7 +2173,7 @@ export var create_git_branch = function () {
2176
2173
  return sdk.post("/projects/".concat(project_id, "/git_branch"), null, body, options);
2177
2174
  });
2178
2175
 
2179
- return function create_git_branch(_x661, _x662, _x663, _x664) {
2176
+ return function create_git_branch(_x660, _x661, _x662, _x663) {
2180
2177
  return _ref196.apply(this, arguments);
2181
2178
  };
2182
2179
  }();
@@ -2187,7 +2184,7 @@ export var find_git_branch = function () {
2187
2184
  return sdk.get("/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
2188
2185
  });
2189
2186
 
2190
- return function find_git_branch(_x665, _x666, _x667, _x668) {
2187
+ return function find_git_branch(_x664, _x665, _x666, _x667) {
2191
2188
  return _ref197.apply(this, arguments);
2192
2189
  };
2193
2190
  }();
@@ -2198,7 +2195,7 @@ export var delete_git_branch = function () {
2198
2195
  return sdk.delete("/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
2199
2196
  });
2200
2197
 
2201
- return function delete_git_branch(_x669, _x670, _x671, _x672) {
2198
+ return function delete_git_branch(_x668, _x669, _x670, _x671) {
2202
2199
  return _ref198.apply(this, arguments);
2203
2200
  };
2204
2201
  }();
@@ -2211,7 +2208,7 @@ export var deploy_ref_to_production = function () {
2211
2208
  }, null, options);
2212
2209
  });
2213
2210
 
2214
- return function deploy_ref_to_production(_x673, _x674, _x675) {
2211
+ return function deploy_ref_to_production(_x672, _x673, _x674) {
2215
2212
  return _ref199.apply(this, arguments);
2216
2213
  };
2217
2214
  }();
@@ -2221,7 +2218,7 @@ export var deploy_to_production = function () {
2221
2218
  return sdk.post("/projects/".concat(project_id, "/deploy_to_production"), null, null, options);
2222
2219
  });
2223
2220
 
2224
- return function deploy_to_production(_x676, _x677, _x678) {
2221
+ return function deploy_to_production(_x675, _x676, _x677) {
2225
2222
  return _ref200.apply(this, arguments);
2226
2223
  };
2227
2224
  }();
@@ -2231,7 +2228,7 @@ export var reset_project_to_production = function () {
2231
2228
  return sdk.post("/projects/".concat(project_id, "/reset_to_production"), null, null, options);
2232
2229
  });
2233
2230
 
2234
- return function reset_project_to_production(_x679, _x680, _x681) {
2231
+ return function reset_project_to_production(_x678, _x679, _x680) {
2235
2232
  return _ref201.apply(this, arguments);
2236
2233
  };
2237
2234
  }();
@@ -2241,7 +2238,7 @@ export var reset_project_to_remote = function () {
2241
2238
  return sdk.post("/projects/".concat(project_id, "/reset_to_remote"), null, null, options);
2242
2239
  });
2243
2240
 
2244
- return function reset_project_to_remote(_x682, _x683, _x684) {
2241
+ return function reset_project_to_remote(_x681, _x682, _x683) {
2245
2242
  return _ref202.apply(this, arguments);
2246
2243
  };
2247
2244
  }();
@@ -2252,7 +2249,7 @@ export var all_projects = function () {
2252
2249
  }, null, options);
2253
2250
  });
2254
2251
 
2255
- return function all_projects(_x685, _x686, _x687) {
2252
+ return function all_projects(_x684, _x685, _x686) {
2256
2253
  return _ref203.apply(this, arguments);
2257
2254
  };
2258
2255
  }();
@@ -2261,7 +2258,7 @@ export var create_project = function () {
2261
2258
  return sdk.post('/projects', null, body, options);
2262
2259
  });
2263
2260
 
2264
- return function create_project(_x688, _x689, _x690) {
2261
+ return function create_project(_x687, _x688, _x689) {
2265
2262
  return _ref204.apply(this, arguments);
2266
2263
  };
2267
2264
  }();
@@ -2273,7 +2270,7 @@ export var project = function () {
2273
2270
  }, null, options);
2274
2271
  });
2275
2272
 
2276
- return function project(_x691, _x692, _x693, _x694) {
2273
+ return function project(_x690, _x691, _x692, _x693) {
2277
2274
  return _ref205.apply(this, arguments);
2278
2275
  };
2279
2276
  }();
@@ -2285,7 +2282,7 @@ export var update_project = function () {
2285
2282
  }, body, options);
2286
2283
  });
2287
2284
 
2288
- return function update_project(_x695, _x696, _x697, _x698, _x699) {
2285
+ return function update_project(_x694, _x695, _x696, _x697, _x698) {
2289
2286
  return _ref206.apply(this, arguments);
2290
2287
  };
2291
2288
  }();
@@ -2295,7 +2292,7 @@ export var manifest = function () {
2295
2292
  return sdk.get("/projects/".concat(project_id, "/manifest"), null, null, options);
2296
2293
  });
2297
2294
 
2298
- return function manifest(_x700, _x701, _x702) {
2295
+ return function manifest(_x699, _x700, _x701) {
2299
2296
  return _ref207.apply(this, arguments);
2300
2297
  };
2301
2298
  }();
@@ -2305,7 +2302,7 @@ export var git_deploy_key = function () {
2305
2302
  return sdk.get("/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
2306
2303
  });
2307
2304
 
2308
- return function git_deploy_key(_x703, _x704, _x705) {
2305
+ return function git_deploy_key(_x702, _x703, _x704) {
2309
2306
  return _ref208.apply(this, arguments);
2310
2307
  };
2311
2308
  }();
@@ -2315,7 +2312,7 @@ export var create_git_deploy_key = function () {
2315
2312
  return sdk.post("/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
2316
2313
  });
2317
2314
 
2318
- return function create_git_deploy_key(_x706, _x707, _x708) {
2315
+ return function create_git_deploy_key(_x705, _x706, _x707) {
2319
2316
  return _ref209.apply(this, arguments);
2320
2317
  };
2321
2318
  }();
@@ -2327,7 +2324,7 @@ export var project_validation_results = function () {
2327
2324
  }, null, options);
2328
2325
  });
2329
2326
 
2330
- return function project_validation_results(_x709, _x710, _x711, _x712) {
2327
+ return function project_validation_results(_x708, _x709, _x710, _x711) {
2331
2328
  return _ref210.apply(this, arguments);
2332
2329
  };
2333
2330
  }();
@@ -2339,7 +2336,7 @@ export var validate_project = function () {
2339
2336
  }, null, options);
2340
2337
  });
2341
2338
 
2342
- return function validate_project(_x713, _x714, _x715, _x716) {
2339
+ return function validate_project(_x712, _x713, _x714, _x715) {
2343
2340
  return _ref211.apply(this, arguments);
2344
2341
  };
2345
2342
  }();
@@ -2351,7 +2348,7 @@ export var project_workspace = function () {
2351
2348
  }, null, options);
2352
2349
  });
2353
2350
 
2354
- return function project_workspace(_x717, _x718, _x719, _x720) {
2351
+ return function project_workspace(_x716, _x717, _x718, _x719) {
2355
2352
  return _ref212.apply(this, arguments);
2356
2353
  };
2357
2354
  }();
@@ -2363,7 +2360,7 @@ export var all_project_files = function () {
2363
2360
  }, null, options);
2364
2361
  });
2365
2362
 
2366
- return function all_project_files(_x721, _x722, _x723, _x724) {
2363
+ return function all_project_files(_x720, _x721, _x722, _x723) {
2367
2364
  return _ref213.apply(this, arguments);
2368
2365
  };
2369
2366
  }();
@@ -2376,7 +2373,7 @@ export var project_file = function () {
2376
2373
  }, null, options);
2377
2374
  });
2378
2375
 
2379
- return function project_file(_x725, _x726, _x727, _x728, _x729) {
2376
+ return function project_file(_x724, _x725, _x726, _x727, _x728) {
2380
2377
  return _ref214.apply(this, arguments);
2381
2378
  };
2382
2379
  }();
@@ -2388,7 +2385,7 @@ export var all_git_connection_tests = function () {
2388
2385
  }, null, options);
2389
2386
  });
2390
2387
 
2391
- return function all_git_connection_tests(_x730, _x731, _x732, _x733) {
2388
+ return function all_git_connection_tests(_x729, _x730, _x731, _x732) {
2392
2389
  return _ref215.apply(this, arguments);
2393
2390
  };
2394
2391
  }();
@@ -2402,7 +2399,7 @@ export var run_git_connection_test = function () {
2402
2399
  }, null, options);
2403
2400
  });
2404
2401
 
2405
- return function run_git_connection_test(_x734, _x735, _x736) {
2402
+ return function run_git_connection_test(_x733, _x734, _x735) {
2406
2403
  return _ref216.apply(this, arguments);
2407
2404
  };
2408
2405
  }();
@@ -2414,7 +2411,7 @@ export var all_lookml_tests = function () {
2414
2411
  }, null, options);
2415
2412
  });
2416
2413
 
2417
- return function all_lookml_tests(_x737, _x738, _x739, _x740) {
2414
+ return function all_lookml_tests(_x736, _x737, _x738, _x739) {
2418
2415
  return _ref217.apply(this, arguments);
2419
2416
  };
2420
2417
  }();
@@ -2428,7 +2425,7 @@ export var run_lookml_test = function () {
2428
2425
  }, null, options);
2429
2426
  });
2430
2427
 
2431
- return function run_lookml_test(_x741, _x742, _x743) {
2428
+ return function run_lookml_test(_x740, _x741, _x742) {
2432
2429
  return _ref218.apply(this, arguments);
2433
2430
  };
2434
2431
  }();
@@ -2442,7 +2439,7 @@ export var tag_ref = function () {
2442
2439
  }, request.body, options);
2443
2440
  });
2444
2441
 
2445
- return function tag_ref(_x744, _x745, _x746) {
2442
+ return function tag_ref(_x743, _x744, _x745) {
2446
2443
  return _ref219.apply(this, arguments);
2447
2444
  };
2448
2445
  }();
@@ -2453,7 +2450,7 @@ export var update_repository_credential = function () {
2453
2450
  return sdk.put("/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, body, options);
2454
2451
  });
2455
2452
 
2456
- return function update_repository_credential(_x747, _x748, _x749, _x750, _x751) {
2453
+ return function update_repository_credential(_x746, _x747, _x748, _x749, _x750) {
2457
2454
  return _ref220.apply(this, arguments);
2458
2455
  };
2459
2456
  }();
@@ -2464,7 +2461,7 @@ export var delete_repository_credential = function () {
2464
2461
  return sdk.delete("/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, null, options);
2465
2462
  });
2466
2463
 
2467
- return function delete_repository_credential(_x752, _x753, _x754, _x755) {
2464
+ return function delete_repository_credential(_x751, _x752, _x753, _x754) {
2468
2465
  return _ref221.apply(this, arguments);
2469
2466
  };
2470
2467
  }();
@@ -2474,7 +2471,7 @@ export var get_all_repository_credentials = function () {
2474
2471
  return sdk.get("/projects/".concat(root_project_id, "/credentials"), null, null, options);
2475
2472
  });
2476
2473
 
2477
- return function get_all_repository_credentials(_x756, _x757, _x758) {
2474
+ return function get_all_repository_credentials(_x755, _x756, _x757) {
2478
2475
  return _ref222.apply(this, arguments);
2479
2476
  };
2480
2477
  }();
@@ -2497,7 +2494,7 @@ export var create_query_task = function () {
2497
2494
  }, request.body, options);
2498
2495
  });
2499
2496
 
2500
- return function create_query_task(_x759, _x760, _x761) {
2497
+ return function create_query_task(_x758, _x759, _x760) {
2501
2498
  return _ref223.apply(this, arguments);
2502
2499
  };
2503
2500
  }();
@@ -2508,7 +2505,7 @@ export var query_task_multi_results = function () {
2508
2505
  }, null, options);
2509
2506
  });
2510
2507
 
2511
- return function query_task_multi_results(_x762, _x763, _x764) {
2508
+ return function query_task_multi_results(_x761, _x762, _x763) {
2512
2509
  return _ref224.apply(this, arguments);
2513
2510
  };
2514
2511
  }();
@@ -2520,7 +2517,7 @@ export var query_task = function () {
2520
2517
  }, null, options);
2521
2518
  });
2522
2519
 
2523
- return function query_task(_x765, _x766, _x767, _x768) {
2520
+ return function query_task(_x764, _x765, _x766, _x767) {
2524
2521
  return _ref225.apply(this, arguments);
2525
2522
  };
2526
2523
  }();
@@ -2530,7 +2527,7 @@ export var query_task_results = function () {
2530
2527
  return sdk.get("/query_tasks/".concat(query_task_id, "/results"), null, null, options);
2531
2528
  });
2532
2529
 
2533
- return function query_task_results(_x769, _x770, _x771) {
2530
+ return function query_task_results(_x768, _x769, _x770) {
2534
2531
  return _ref226.apply(this, arguments);
2535
2532
  };
2536
2533
  }();
@@ -2541,7 +2538,7 @@ export var query = function () {
2541
2538
  }, null, options);
2542
2539
  });
2543
2540
 
2544
- return function query(_x772, _x773, _x774, _x775) {
2541
+ return function query(_x771, _x772, _x773, _x774) {
2545
2542
  return _ref227.apply(this, arguments);
2546
2543
  };
2547
2544
  }();
@@ -2553,7 +2550,7 @@ export var query_for_slug = function () {
2553
2550
  }, null, options);
2554
2551
  });
2555
2552
 
2556
- return function query_for_slug(_x776, _x777, _x778, _x779) {
2553
+ return function query_for_slug(_x775, _x776, _x777, _x778) {
2557
2554
  return _ref228.apply(this, arguments);
2558
2555
  };
2559
2556
  }();
@@ -2564,7 +2561,7 @@ export var create_query = function () {
2564
2561
  }, body, options);
2565
2562
  });
2566
2563
 
2567
- return function create_query(_x780, _x781, _x782, _x783) {
2564
+ return function create_query(_x779, _x780, _x781, _x782) {
2568
2565
  return _ref229.apply(this, arguments);
2569
2566
  };
2570
2567
  }();
@@ -2587,7 +2584,7 @@ export var run_query = function () {
2587
2584
  }, null, options);
2588
2585
  });
2589
2586
 
2590
- return function run_query(_x784, _x785, _x786) {
2587
+ return function run_query(_x783, _x784, _x785) {
2591
2588
  return _ref230.apply(this, arguments);
2592
2589
  };
2593
2590
  }();
@@ -2610,7 +2607,7 @@ export var run_inline_query = function () {
2610
2607
  }, request.body, options);
2611
2608
  });
2612
2609
 
2613
- return function run_inline_query(_x787, _x788, _x789) {
2610
+ return function run_inline_query(_x786, _x787, _x788) {
2614
2611
  return _ref231.apply(this, arguments);
2615
2612
  };
2616
2613
  }();
@@ -2622,7 +2619,7 @@ export var run_url_encoded_query = function () {
2622
2619
  return sdk.get("/queries/models/".concat(model_name, "/views/").concat(view_name, "/run/").concat(result_format), null, null, options);
2623
2620
  });
2624
2621
 
2625
- return function run_url_encoded_query(_x790, _x791, _x792, _x793, _x794) {
2622
+ return function run_url_encoded_query(_x789, _x790, _x791, _x792, _x793) {
2626
2623
  return _ref232.apply(this, arguments);
2627
2624
  };
2628
2625
  }();
@@ -2634,7 +2631,7 @@ export var merge_query = function () {
2634
2631
  }, null, options);
2635
2632
  });
2636
2633
 
2637
- return function merge_query(_x795, _x796, _x797, _x798) {
2634
+ return function merge_query(_x794, _x795, _x796, _x797) {
2638
2635
  return _ref233.apply(this, arguments);
2639
2636
  };
2640
2637
  }();
@@ -2645,7 +2642,7 @@ export var create_merge_query = function () {
2645
2642
  }, body, options);
2646
2643
  });
2647
2644
 
2648
- return function create_merge_query(_x799, _x800, _x801, _x802) {
2645
+ return function create_merge_query(_x798, _x799, _x800, _x801) {
2649
2646
  return _ref234.apply(this, arguments);
2650
2647
  };
2651
2648
  }();
@@ -2654,7 +2651,7 @@ export var all_running_queries = function () {
2654
2651
  return sdk.get('/running_queries', null, null, options);
2655
2652
  });
2656
2653
 
2657
- return function all_running_queries(_x803, _x804) {
2654
+ return function all_running_queries(_x802, _x803) {
2658
2655
  return _ref235.apply(this, arguments);
2659
2656
  };
2660
2657
  }();
@@ -2664,7 +2661,7 @@ export var kill_query = function () {
2664
2661
  return sdk.delete("/running_queries/".concat(query_task_id), null, null, options);
2665
2662
  });
2666
2663
 
2667
- return function kill_query(_x805, _x806, _x807) {
2664
+ return function kill_query(_x804, _x805, _x806) {
2668
2665
  return _ref236.apply(this, arguments);
2669
2666
  };
2670
2667
  }();
@@ -2674,7 +2671,7 @@ export var sql_query = function () {
2674
2671
  return sdk.get("/sql_queries/".concat(slug), null, null, options);
2675
2672
  });
2676
2673
 
2677
- return function sql_query(_x808, _x809, _x810) {
2674
+ return function sql_query(_x807, _x808, _x809) {
2678
2675
  return _ref237.apply(this, arguments);
2679
2676
  };
2680
2677
  }();
@@ -2683,7 +2680,7 @@ export var create_sql_query = function () {
2683
2680
  return sdk.post('/sql_queries', null, body, options);
2684
2681
  });
2685
2682
 
2686
- return function create_sql_query(_x811, _x812, _x813) {
2683
+ return function create_sql_query(_x810, _x811, _x812) {
2687
2684
  return _ref238.apply(this, arguments);
2688
2685
  };
2689
2686
  }();
@@ -2696,7 +2693,7 @@ export var run_sql_query = function () {
2696
2693
  }, null, options);
2697
2694
  });
2698
2695
 
2699
- return function run_sql_query(_x814, _x815, _x816, _x817, _x818) {
2696
+ return function run_sql_query(_x813, _x814, _x815, _x816, _x817) {
2700
2697
  return _ref239.apply(this, arguments);
2701
2698
  };
2702
2699
  }();
@@ -2713,7 +2710,7 @@ export var create_lookml_dashboard_render_task = function () {
2713
2710
  }, request.body, options);
2714
2711
  });
2715
2712
 
2716
- return function create_lookml_dashboard_render_task(_x819, _x820, _x821) {
2713
+ return function create_lookml_dashboard_render_task(_x818, _x819, _x820) {
2717
2714
  return _ref240.apply(this, arguments);
2718
2715
  };
2719
2716
  }();
@@ -2727,7 +2724,7 @@ export var create_look_render_task = function () {
2727
2724
  }, null, options);
2728
2725
  });
2729
2726
 
2730
- return function create_look_render_task(_x822, _x823, _x824, _x825, _x826, _x827, _x828) {
2727
+ return function create_look_render_task(_x821, _x822, _x823, _x824, _x825, _x826, _x827) {
2731
2728
  return _ref241.apply(this, arguments);
2732
2729
  };
2733
2730
  }();
@@ -2741,7 +2738,7 @@ export var create_query_render_task = function () {
2741
2738
  }, null, options);
2742
2739
  });
2743
2740
 
2744
- return function create_query_render_task(_x829, _x830, _x831, _x832, _x833, _x834, _x835) {
2741
+ return function create_query_render_task(_x828, _x829, _x830, _x831, _x832, _x833, _x834) {
2745
2742
  return _ref242.apply(this, arguments);
2746
2743
  };
2747
2744
  }();
@@ -2757,7 +2754,7 @@ export var create_dashboard_render_task = function () {
2757
2754
  }, request.body, options);
2758
2755
  });
2759
2756
 
2760
- return function create_dashboard_render_task(_x836, _x837, _x838) {
2757
+ return function create_dashboard_render_task(_x835, _x836, _x837) {
2761
2758
  return _ref243.apply(this, arguments);
2762
2759
  };
2763
2760
  }();
@@ -2769,7 +2766,7 @@ export var render_task = function () {
2769
2766
  }, null, options);
2770
2767
  });
2771
2768
 
2772
- return function render_task(_x839, _x840, _x841, _x842) {
2769
+ return function render_task(_x838, _x839, _x840, _x841) {
2773
2770
  return _ref244.apply(this, arguments);
2774
2771
  };
2775
2772
  }();
@@ -2779,7 +2776,7 @@ export var render_task_results = function () {
2779
2776
  return sdk.get("/render_tasks/".concat(render_task_id, "/results"), null, null, options);
2780
2777
  });
2781
2778
 
2782
- return function render_task_results(_x843, _x844, _x845) {
2779
+ return function render_task_results(_x842, _x843, _x844) {
2783
2780
  return _ref245.apply(this, arguments);
2784
2781
  };
2785
2782
  }();
@@ -2798,7 +2795,7 @@ export var search_model_sets = function () {
2798
2795
  }, null, options);
2799
2796
  });
2800
2797
 
2801
- return function search_model_sets(_x846, _x847, _x848) {
2798
+ return function search_model_sets(_x845, _x846, _x847) {
2802
2799
  return _ref246.apply(this, arguments);
2803
2800
  };
2804
2801
  }();
@@ -2809,7 +2806,7 @@ export var model_set = function () {
2809
2806
  }, null, options);
2810
2807
  });
2811
2808
 
2812
- return function model_set(_x849, _x850, _x851, _x852) {
2809
+ return function model_set(_x848, _x849, _x850, _x851) {
2813
2810
  return _ref247.apply(this, arguments);
2814
2811
  };
2815
2812
  }();
@@ -2818,7 +2815,7 @@ export var update_model_set = function () {
2818
2815
  return sdk.patch("/model_sets/".concat(model_set_id), null, body, options);
2819
2816
  });
2820
2817
 
2821
- return function update_model_set(_x853, _x854, _x855, _x856) {
2818
+ return function update_model_set(_x852, _x853, _x854, _x855) {
2822
2819
  return _ref248.apply(this, arguments);
2823
2820
  };
2824
2821
  }();
@@ -2827,7 +2824,7 @@ export var delete_model_set = function () {
2827
2824
  return sdk.delete("/model_sets/".concat(model_set_id), null, null, options);
2828
2825
  });
2829
2826
 
2830
- return function delete_model_set(_x857, _x858, _x859) {
2827
+ return function delete_model_set(_x856, _x857, _x858) {
2831
2828
  return _ref249.apply(this, arguments);
2832
2829
  };
2833
2830
  }();
@@ -2838,7 +2835,7 @@ export var all_model_sets = function () {
2838
2835
  }, null, options);
2839
2836
  });
2840
2837
 
2841
- return function all_model_sets(_x860, _x861, _x862) {
2838
+ return function all_model_sets(_x859, _x860, _x861) {
2842
2839
  return _ref250.apply(this, arguments);
2843
2840
  };
2844
2841
  }();
@@ -2847,7 +2844,7 @@ export var create_model_set = function () {
2847
2844
  return sdk.post('/model_sets', null, body, options);
2848
2845
  });
2849
2846
 
2850
- return function create_model_set(_x863, _x864, _x865) {
2847
+ return function create_model_set(_x862, _x863, _x864) {
2851
2848
  return _ref251.apply(this, arguments);
2852
2849
  };
2853
2850
  }();
@@ -2856,7 +2853,7 @@ export var all_permissions = function () {
2856
2853
  return sdk.get('/permissions', null, null, options);
2857
2854
  });
2858
2855
 
2859
- return function all_permissions(_x866, _x867) {
2856
+ return function all_permissions(_x865, _x866) {
2860
2857
  return _ref252.apply(this, arguments);
2861
2858
  };
2862
2859
  }();
@@ -2875,7 +2872,7 @@ export var search_permission_sets = function () {
2875
2872
  }, null, options);
2876
2873
  });
2877
2874
 
2878
- return function search_permission_sets(_x868, _x869, _x870) {
2875
+ return function search_permission_sets(_x867, _x868, _x869) {
2879
2876
  return _ref253.apply(this, arguments);
2880
2877
  };
2881
2878
  }();
@@ -2886,7 +2883,7 @@ export var permission_set = function () {
2886
2883
  }, null, options);
2887
2884
  });
2888
2885
 
2889
- return function permission_set(_x871, _x872, _x873, _x874) {
2886
+ return function permission_set(_x870, _x871, _x872, _x873) {
2890
2887
  return _ref254.apply(this, arguments);
2891
2888
  };
2892
2889
  }();
@@ -2895,7 +2892,7 @@ export var update_permission_set = function () {
2895
2892
  return sdk.patch("/permission_sets/".concat(permission_set_id), null, body, options);
2896
2893
  });
2897
2894
 
2898
- return function update_permission_set(_x875, _x876, _x877, _x878) {
2895
+ return function update_permission_set(_x874, _x875, _x876, _x877) {
2899
2896
  return _ref255.apply(this, arguments);
2900
2897
  };
2901
2898
  }();
@@ -2904,7 +2901,7 @@ export var delete_permission_set = function () {
2904
2901
  return sdk.delete("/permission_sets/".concat(permission_set_id), null, null, options);
2905
2902
  });
2906
2903
 
2907
- return function delete_permission_set(_x879, _x880, _x881) {
2904
+ return function delete_permission_set(_x878, _x879, _x880) {
2908
2905
  return _ref256.apply(this, arguments);
2909
2906
  };
2910
2907
  }();
@@ -2915,7 +2912,7 @@ export var all_permission_sets = function () {
2915
2912
  }, null, options);
2916
2913
  });
2917
2914
 
2918
- return function all_permission_sets(_x882, _x883, _x884) {
2915
+ return function all_permission_sets(_x881, _x882, _x883) {
2919
2916
  return _ref257.apply(this, arguments);
2920
2917
  };
2921
2918
  }();
@@ -2924,7 +2921,7 @@ export var create_permission_set = function () {
2924
2921
  return sdk.post('/permission_sets', null, body, options);
2925
2922
  });
2926
2923
 
2927
- return function create_permission_set(_x885, _x886, _x887) {
2924
+ return function create_permission_set(_x884, _x885, _x886) {
2928
2925
  return _ref258.apply(this, arguments);
2929
2926
  };
2930
2927
  }();
@@ -2936,7 +2933,7 @@ export var all_roles = function () {
2936
2933
  }, null, options);
2937
2934
  });
2938
2935
 
2939
- return function all_roles(_x888, _x889, _x890) {
2936
+ return function all_roles(_x887, _x888, _x889) {
2940
2937
  return _ref259.apply(this, arguments);
2941
2938
  };
2942
2939
  }();
@@ -2945,7 +2942,7 @@ export var create_role = function () {
2945
2942
  return sdk.post('/roles', null, body, options);
2946
2943
  });
2947
2944
 
2948
- return function create_role(_x891, _x892, _x893) {
2945
+ return function create_role(_x890, _x891, _x892) {
2949
2946
  return _ref260.apply(this, arguments);
2950
2947
  };
2951
2948
  }();
@@ -2963,7 +2960,7 @@ export var search_roles = function () {
2963
2960
  }, null, options);
2964
2961
  });
2965
2962
 
2966
- return function search_roles(_x894, _x895, _x896) {
2963
+ return function search_roles(_x893, _x894, _x895) {
2967
2964
  return _ref261.apply(this, arguments);
2968
2965
  };
2969
2966
  }();
@@ -2972,7 +2969,7 @@ export var role = function () {
2972
2969
  return sdk.get("/roles/".concat(role_id), null, null, options);
2973
2970
  });
2974
2971
 
2975
- return function role(_x897, _x898, _x899) {
2972
+ return function role(_x896, _x897, _x898) {
2976
2973
  return _ref262.apply(this, arguments);
2977
2974
  };
2978
2975
  }();
@@ -2981,7 +2978,7 @@ export var update_role = function () {
2981
2978
  return sdk.patch("/roles/".concat(role_id), null, body, options);
2982
2979
  });
2983
2980
 
2984
- return function update_role(_x900, _x901, _x902, _x903) {
2981
+ return function update_role(_x899, _x900, _x901, _x902) {
2985
2982
  return _ref263.apply(this, arguments);
2986
2983
  };
2987
2984
  }();
@@ -2990,7 +2987,7 @@ export var delete_role = function () {
2990
2987
  return sdk.delete("/roles/".concat(role_id), null, null, options);
2991
2988
  });
2992
2989
 
2993
- return function delete_role(_x904, _x905, _x906) {
2990
+ return function delete_role(_x903, _x904, _x905) {
2994
2991
  return _ref264.apply(this, arguments);
2995
2992
  };
2996
2993
  }();
@@ -3001,7 +2998,7 @@ export var role_groups = function () {
3001
2998
  }, null, options);
3002
2999
  });
3003
3000
 
3004
- return function role_groups(_x907, _x908, _x909, _x910) {
3001
+ return function role_groups(_x906, _x907, _x908, _x909) {
3005
3002
  return _ref265.apply(this, arguments);
3006
3003
  };
3007
3004
  }();
@@ -3010,7 +3007,7 @@ export var set_role_groups = function () {
3010
3007
  return sdk.put("/roles/".concat(role_id, "/groups"), null, body, options);
3011
3008
  });
3012
3009
 
3013
- return function set_role_groups(_x911, _x912, _x913, _x914) {
3010
+ return function set_role_groups(_x910, _x911, _x912, _x913) {
3014
3011
  return _ref266.apply(this, arguments);
3015
3012
  };
3016
3013
  }();
@@ -3022,7 +3019,7 @@ export var role_users = function () {
3022
3019
  }, null, options);
3023
3020
  });
3024
3021
 
3025
- return function role_users(_x915, _x916, _x917) {
3022
+ return function role_users(_x914, _x915, _x916) {
3026
3023
  return _ref267.apply(this, arguments);
3027
3024
  };
3028
3025
  }();
@@ -3031,7 +3028,7 @@ export var set_role_users = function () {
3031
3028
  return sdk.put("/roles/".concat(role_id, "/users"), null, body, options);
3032
3029
  });
3033
3030
 
3034
- return function set_role_users(_x918, _x919, _x920, _x921) {
3031
+ return function set_role_users(_x917, _x918, _x919, _x920) {
3035
3032
  return _ref268.apply(this, arguments);
3036
3033
  };
3037
3034
  }();
@@ -3042,7 +3039,7 @@ export var scheduled_plans_for_space = function () {
3042
3039
  }, null, options);
3043
3040
  });
3044
3041
 
3045
- return function scheduled_plans_for_space(_x922, _x923, _x924, _x925) {
3042
+ return function scheduled_plans_for_space(_x921, _x922, _x923, _x924) {
3046
3043
  return _ref269.apply(this, arguments);
3047
3044
  };
3048
3045
  }();
@@ -3053,7 +3050,7 @@ export var scheduled_plan = function () {
3053
3050
  }, null, options);
3054
3051
  });
3055
3052
 
3056
- return function scheduled_plan(_x926, _x927, _x928, _x929) {
3053
+ return function scheduled_plan(_x925, _x926, _x927, _x928) {
3057
3054
  return _ref270.apply(this, arguments);
3058
3055
  };
3059
3056
  }();
@@ -3062,7 +3059,7 @@ export var update_scheduled_plan = function () {
3062
3059
  return sdk.patch("/scheduled_plans/".concat(scheduled_plan_id), null, body, options);
3063
3060
  });
3064
3061
 
3065
- return function update_scheduled_plan(_x930, _x931, _x932, _x933) {
3062
+ return function update_scheduled_plan(_x929, _x930, _x931, _x932) {
3066
3063
  return _ref271.apply(this, arguments);
3067
3064
  };
3068
3065
  }();
@@ -3071,7 +3068,7 @@ export var delete_scheduled_plan = function () {
3071
3068
  return sdk.delete("/scheduled_plans/".concat(scheduled_plan_id), null, null, options);
3072
3069
  });
3073
3070
 
3074
- return function delete_scheduled_plan(_x934, _x935, _x936) {
3071
+ return function delete_scheduled_plan(_x933, _x934, _x935) {
3075
3072
  return _ref272.apply(this, arguments);
3076
3073
  };
3077
3074
  }();
@@ -3084,7 +3081,7 @@ export var all_scheduled_plans = function () {
3084
3081
  }, null, options);
3085
3082
  });
3086
3083
 
3087
- return function all_scheduled_plans(_x937, _x938, _x939) {
3084
+ return function all_scheduled_plans(_x936, _x937, _x938) {
3088
3085
  return _ref273.apply(this, arguments);
3089
3086
  };
3090
3087
  }();
@@ -3093,7 +3090,7 @@ export var create_scheduled_plan = function () {
3093
3090
  return sdk.post('/scheduled_plans', null, body, options);
3094
3091
  });
3095
3092
 
3096
- return function create_scheduled_plan(_x940, _x941, _x942) {
3093
+ return function create_scheduled_plan(_x939, _x940, _x941) {
3097
3094
  return _ref274.apply(this, arguments);
3098
3095
  };
3099
3096
  }();
@@ -3102,7 +3099,7 @@ export var scheduled_plan_run_once = function () {
3102
3099
  return sdk.post('/scheduled_plans/run_once', null, body, options);
3103
3100
  });
3104
3101
 
3105
- return function scheduled_plan_run_once(_x943, _x944, _x945) {
3102
+ return function scheduled_plan_run_once(_x942, _x943, _x944) {
3106
3103
  return _ref275.apply(this, arguments);
3107
3104
  };
3108
3105
  }();
@@ -3115,7 +3112,7 @@ export var scheduled_plans_for_look = function () {
3115
3112
  }, null, options);
3116
3113
  });
3117
3114
 
3118
- return function scheduled_plans_for_look(_x946, _x947, _x948) {
3115
+ return function scheduled_plans_for_look(_x945, _x946, _x947) {
3119
3116
  return _ref276.apply(this, arguments);
3120
3117
  };
3121
3118
  }();
@@ -3128,7 +3125,7 @@ export var scheduled_plans_for_dashboard = function () {
3128
3125
  }, null, options);
3129
3126
  });
3130
3127
 
3131
- return function scheduled_plans_for_dashboard(_x949, _x950, _x951) {
3128
+ return function scheduled_plans_for_dashboard(_x948, _x949, _x950) {
3132
3129
  return _ref277.apply(this, arguments);
3133
3130
  };
3134
3131
  }();
@@ -3142,7 +3139,7 @@ export var scheduled_plans_for_lookml_dashboard = function () {
3142
3139
  }, null, options);
3143
3140
  });
3144
3141
 
3145
- return function scheduled_plans_for_lookml_dashboard(_x952, _x953, _x954) {
3142
+ return function scheduled_plans_for_lookml_dashboard(_x951, _x952, _x953) {
3146
3143
  return _ref278.apply(this, arguments);
3147
3144
  };
3148
3145
  }();
@@ -3151,7 +3148,7 @@ export var scheduled_plan_run_once_by_id = function () {
3151
3148
  return sdk.post("/scheduled_plans/".concat(scheduled_plan_id, "/run_once"), null, body, options);
3152
3149
  });
3153
3150
 
3154
- return function scheduled_plan_run_once_by_id(_x955, _x956, _x957, _x958) {
3151
+ return function scheduled_plan_run_once_by_id(_x954, _x955, _x956, _x957) {
3155
3152
  return _ref279.apply(this, arguments);
3156
3153
  };
3157
3154
  }();
@@ -3160,7 +3157,7 @@ export var session = function () {
3160
3157
  return sdk.get('/session', null, null, options);
3161
3158
  });
3162
3159
 
3163
- return function session(_x959, _x960) {
3160
+ return function session(_x958, _x959) {
3164
3161
  return _ref280.apply(this, arguments);
3165
3162
  };
3166
3163
  }();
@@ -3169,7 +3166,7 @@ export var update_session = function () {
3169
3166
  return sdk.patch('/session', null, body, options);
3170
3167
  });
3171
3168
 
3172
- return function update_session(_x961, _x962, _x963) {
3169
+ return function update_session(_x960, _x961, _x962) {
3173
3170
  return _ref281.apply(this, arguments);
3174
3171
  };
3175
3172
  }();
@@ -3191,7 +3188,7 @@ export var search_spaces = function () {
3191
3188
  }, null, options);
3192
3189
  });
3193
3190
 
3194
- return function search_spaces(_x964, _x965, _x966) {
3191
+ return function search_spaces(_x963, _x964, _x965) {
3195
3192
  return _ref282.apply(this, arguments);
3196
3193
  };
3197
3194
  }();
@@ -3203,7 +3200,7 @@ export var space = function () {
3203
3200
  }, null, options);
3204
3201
  });
3205
3202
 
3206
- return function space(_x967, _x968, _x969, _x970) {
3203
+ return function space(_x966, _x967, _x968, _x969) {
3207
3204
  return _ref283.apply(this, arguments);
3208
3205
  };
3209
3206
  }();
@@ -3213,7 +3210,7 @@ export var update_space = function () {
3213
3210
  return sdk.patch("/spaces/".concat(space_id), null, body, options);
3214
3211
  });
3215
3212
 
3216
- return function update_space(_x971, _x972, _x973, _x974) {
3213
+ return function update_space(_x970, _x971, _x972, _x973) {
3217
3214
  return _ref284.apply(this, arguments);
3218
3215
  };
3219
3216
  }();
@@ -3223,7 +3220,7 @@ export var delete_space = function () {
3223
3220
  return sdk.delete("/spaces/".concat(space_id), null, null, options);
3224
3221
  });
3225
3222
 
3226
- return function delete_space(_x975, _x976, _x977) {
3223
+ return function delete_space(_x974, _x975, _x976) {
3227
3224
  return _ref285.apply(this, arguments);
3228
3225
  };
3229
3226
  }();
@@ -3234,7 +3231,7 @@ export var all_spaces = function () {
3234
3231
  }, null, options);
3235
3232
  });
3236
3233
 
3237
- return function all_spaces(_x978, _x979, _x980) {
3234
+ return function all_spaces(_x977, _x978, _x979) {
3238
3235
  return _ref286.apply(this, arguments);
3239
3236
  };
3240
3237
  }();
@@ -3243,7 +3240,7 @@ export var create_space = function () {
3243
3240
  return sdk.post('/spaces', null, body, options);
3244
3241
  });
3245
3242
 
3246
- return function create_space(_x981, _x982, _x983) {
3243
+ return function create_space(_x980, _x981, _x982) {
3247
3244
  return _ref287.apply(this, arguments);
3248
3245
  };
3249
3246
  }();
@@ -3258,7 +3255,7 @@ export var space_children = function () {
3258
3255
  }, null, options);
3259
3256
  });
3260
3257
 
3261
- return function space_children(_x984, _x985, _x986) {
3258
+ return function space_children(_x983, _x984, _x985) {
3262
3259
  return _ref288.apply(this, arguments);
3263
3260
  };
3264
3261
  }();
@@ -3272,7 +3269,7 @@ export var space_children_search = function () {
3272
3269
  }, null, options);
3273
3270
  });
3274
3271
 
3275
- return function space_children_search(_x987, _x988, _x989) {
3272
+ return function space_children_search(_x986, _x987, _x988) {
3276
3273
  return _ref289.apply(this, arguments);
3277
3274
  };
3278
3275
  }();
@@ -3284,7 +3281,7 @@ export var space_parent = function () {
3284
3281
  }, null, options);
3285
3282
  });
3286
3283
 
3287
- return function space_parent(_x990, _x991, _x992, _x993) {
3284
+ return function space_parent(_x989, _x990, _x991, _x992) {
3288
3285
  return _ref290.apply(this, arguments);
3289
3286
  };
3290
3287
  }();
@@ -3296,7 +3293,7 @@ export var space_ancestors = function () {
3296
3293
  }, null, options);
3297
3294
  });
3298
3295
 
3299
- return function space_ancestors(_x994, _x995, _x996, _x997) {
3296
+ return function space_ancestors(_x993, _x994, _x995, _x996) {
3300
3297
  return _ref291.apply(this, arguments);
3301
3298
  };
3302
3299
  }();
@@ -3308,7 +3305,7 @@ export var space_looks = function () {
3308
3305
  }, null, options);
3309
3306
  });
3310
3307
 
3311
- return function space_looks(_x998, _x999, _x1000, _x1001) {
3308
+ return function space_looks(_x997, _x998, _x999, _x1000) {
3312
3309
  return _ref292.apply(this, arguments);
3313
3310
  };
3314
3311
  }();
@@ -3320,7 +3317,7 @@ export var space_dashboards = function () {
3320
3317
  }, null, options);
3321
3318
  });
3322
3319
 
3323
- return function space_dashboards(_x1002, _x1003, _x1004, _x1005) {
3320
+ return function space_dashboards(_x1001, _x1002, _x1003, _x1004) {
3324
3321
  return _ref293.apply(this, arguments);
3325
3322
  };
3326
3323
  }();
@@ -3331,7 +3328,7 @@ export var all_themes = function () {
3331
3328
  }, null, options);
3332
3329
  });
3333
3330
 
3334
- return function all_themes(_x1006, _x1007, _x1008) {
3331
+ return function all_themes(_x1005, _x1006, _x1007) {
3335
3332
  return _ref294.apply(this, arguments);
3336
3333
  };
3337
3334
  }();
@@ -3340,7 +3337,7 @@ export var create_theme = function () {
3340
3337
  return sdk.post('/themes', null, body, options);
3341
3338
  });
3342
3339
 
3343
- return function create_theme(_x1009, _x1010, _x1011) {
3340
+ return function create_theme(_x1008, _x1009, _x1010) {
3344
3341
  return _ref295.apply(this, arguments);
3345
3342
  };
3346
3343
  }();
@@ -3359,7 +3356,7 @@ export var search_themes = function () {
3359
3356
  }, null, options);
3360
3357
  });
3361
3358
 
3362
- return function search_themes(_x1012, _x1013, _x1014) {
3359
+ return function search_themes(_x1011, _x1012, _x1013) {
3363
3360
  return _ref296.apply(this, arguments);
3364
3361
  };
3365
3362
  }();
@@ -3370,7 +3367,7 @@ export var default_theme = function () {
3370
3367
  }, null, options);
3371
3368
  });
3372
3369
 
3373
- return function default_theme(_x1015, _x1016, _x1017) {
3370
+ return function default_theme(_x1014, _x1015, _x1016) {
3374
3371
  return _ref297.apply(this, arguments);
3375
3372
  };
3376
3373
  }();
@@ -3381,7 +3378,7 @@ export var set_default_theme = function () {
3381
3378
  }, null, options);
3382
3379
  });
3383
3380
 
3384
- return function set_default_theme(_x1018, _x1019, _x1020) {
3381
+ return function set_default_theme(_x1017, _x1018, _x1019) {
3385
3382
  return _ref298.apply(this, arguments);
3386
3383
  };
3387
3384
  }();
@@ -3394,7 +3391,7 @@ export var active_themes = function () {
3394
3391
  }, null, options);
3395
3392
  });
3396
3393
 
3397
- return function active_themes(_x1021, _x1022, _x1023) {
3394
+ return function active_themes(_x1020, _x1021, _x1022) {
3398
3395
  return _ref299.apply(this, arguments);
3399
3396
  };
3400
3397
  }();
@@ -3406,7 +3403,7 @@ export var theme_or_default = function () {
3406
3403
  }, null, options);
3407
3404
  });
3408
3405
 
3409
- return function theme_or_default(_x1024, _x1025, _x1026, _x1027) {
3406
+ return function theme_or_default(_x1023, _x1024, _x1025, _x1026) {
3410
3407
  return _ref300.apply(this, arguments);
3411
3408
  };
3412
3409
  }();
@@ -3415,7 +3412,7 @@ export var validate_theme = function () {
3415
3412
  return sdk.post('/themes/validate', null, body, options);
3416
3413
  });
3417
3414
 
3418
- return function validate_theme(_x1028, _x1029, _x1030) {
3415
+ return function validate_theme(_x1027, _x1028, _x1029) {
3419
3416
  return _ref301.apply(this, arguments);
3420
3417
  };
3421
3418
  }();
@@ -3427,7 +3424,7 @@ export var theme = function () {
3427
3424
  }, null, options);
3428
3425
  });
3429
3426
 
3430
- return function theme(_x1031, _x1032, _x1033, _x1034) {
3427
+ return function theme(_x1030, _x1031, _x1032, _x1033) {
3431
3428
  return _ref302.apply(this, arguments);
3432
3429
  };
3433
3430
  }();
@@ -3437,7 +3434,7 @@ export var update_theme = function () {
3437
3434
  return sdk.patch("/themes/".concat(theme_id), null, body, options);
3438
3435
  });
3439
3436
 
3440
- return function update_theme(_x1035, _x1036, _x1037, _x1038) {
3437
+ return function update_theme(_x1034, _x1035, _x1036, _x1037) {
3441
3438
  return _ref303.apply(this, arguments);
3442
3439
  };
3443
3440
  }();
@@ -3447,7 +3444,7 @@ export var delete_theme = function () {
3447
3444
  return sdk.delete("/themes/".concat(theme_id), null, null, options);
3448
3445
  });
3449
3446
 
3450
- return function delete_theme(_x1039, _x1040, _x1041) {
3447
+ return function delete_theme(_x1038, _x1039, _x1040) {
3451
3448
  return _ref304.apply(this, arguments);
3452
3449
  };
3453
3450
  }();
@@ -3458,7 +3455,7 @@ export var me = function () {
3458
3455
  }, null, options);
3459
3456
  });
3460
3457
 
3461
- return function me(_x1042, _x1043, _x1044) {
3458
+ return function me(_x1041, _x1042, _x1043) {
3462
3459
  return _ref305.apply(this, arguments);
3463
3460
  };
3464
3461
  }();
@@ -3473,7 +3470,7 @@ export var all_users = function () {
3473
3470
  }, null, options);
3474
3471
  });
3475
3472
 
3476
- return function all_users(_x1045, _x1046, _x1047) {
3473
+ return function all_users(_x1044, _x1045, _x1046) {
3477
3474
  return _ref306.apply(this, arguments);
3478
3475
  };
3479
3476
  }();
@@ -3484,7 +3481,7 @@ export var create_user = function () {
3484
3481
  }, body, options);
3485
3482
  });
3486
3483
 
3487
- return function create_user(_x1048, _x1049, _x1050, _x1051) {
3484
+ return function create_user(_x1047, _x1048, _x1049, _x1050) {
3488
3485
  return _ref307.apply(this, arguments);
3489
3486
  };
3490
3487
  }();
@@ -3508,7 +3505,7 @@ export var search_users = function () {
3508
3505
  }, null, options);
3509
3506
  });
3510
3507
 
3511
- return function search_users(_x1052, _x1053, _x1054) {
3508
+ return function search_users(_x1051, _x1052, _x1053) {
3512
3509
  return _ref308.apply(this, arguments);
3513
3510
  };
3514
3511
  }();
@@ -3529,7 +3526,7 @@ export var search_users_names = function () {
3529
3526
  }, null, options);
3530
3527
  });
3531
3528
 
3532
- return function search_users_names(_x1055, _x1056, _x1057) {
3529
+ return function search_users_names(_x1054, _x1055, _x1056) {
3533
3530
  return _ref309.apply(this, arguments);
3534
3531
  };
3535
3532
  }();
@@ -3540,7 +3537,7 @@ export var user = function () {
3540
3537
  }, null, options);
3541
3538
  });
3542
3539
 
3543
- return function user(_x1058, _x1059, _x1060, _x1061) {
3540
+ return function user(_x1057, _x1058, _x1059, _x1060) {
3544
3541
  return _ref310.apply(this, arguments);
3545
3542
  };
3546
3543
  }();
@@ -3551,7 +3548,7 @@ export var update_user = function () {
3551
3548
  }, body, options);
3552
3549
  });
3553
3550
 
3554
- return function update_user(_x1062, _x1063, _x1064, _x1065, _x1066) {
3551
+ return function update_user(_x1061, _x1062, _x1063, _x1064, _x1065) {
3555
3552
  return _ref311.apply(this, arguments);
3556
3553
  };
3557
3554
  }();
@@ -3560,7 +3557,7 @@ export var delete_user = function () {
3560
3557
  return sdk.delete("/users/".concat(user_id), null, null, options);
3561
3558
  });
3562
3559
 
3563
- return function delete_user(_x1067, _x1068, _x1069) {
3560
+ return function delete_user(_x1066, _x1067, _x1068) {
3564
3561
  return _ref312.apply(this, arguments);
3565
3562
  };
3566
3563
  }();
@@ -3573,7 +3570,7 @@ export var user_for_credential = function () {
3573
3570
  }, null, options);
3574
3571
  });
3575
3572
 
3576
- return function user_for_credential(_x1070, _x1071, _x1072, _x1073, _x1074) {
3573
+ return function user_for_credential(_x1069, _x1070, _x1071, _x1072, _x1073) {
3577
3574
  return _ref313.apply(this, arguments);
3578
3575
  };
3579
3576
  }();
@@ -3584,7 +3581,7 @@ export var user_credentials_email = function () {
3584
3581
  }, null, options);
3585
3582
  });
3586
3583
 
3587
- return function user_credentials_email(_x1075, _x1076, _x1077, _x1078) {
3584
+ return function user_credentials_email(_x1074, _x1075, _x1076, _x1077) {
3588
3585
  return _ref314.apply(this, arguments);
3589
3586
  };
3590
3587
  }();
@@ -3595,7 +3592,7 @@ export var create_user_credentials_email = function () {
3595
3592
  }, body, options);
3596
3593
  });
3597
3594
 
3598
- return function create_user_credentials_email(_x1079, _x1080, _x1081, _x1082, _x1083) {
3595
+ return function create_user_credentials_email(_x1078, _x1079, _x1080, _x1081, _x1082) {
3599
3596
  return _ref315.apply(this, arguments);
3600
3597
  };
3601
3598
  }();
@@ -3606,7 +3603,7 @@ export var update_user_credentials_email = function () {
3606
3603
  }, body, options);
3607
3604
  });
3608
3605
 
3609
- return function update_user_credentials_email(_x1084, _x1085, _x1086, _x1087, _x1088) {
3606
+ return function update_user_credentials_email(_x1083, _x1084, _x1085, _x1086, _x1087) {
3610
3607
  return _ref316.apply(this, arguments);
3611
3608
  };
3612
3609
  }();
@@ -3615,7 +3612,7 @@ export var delete_user_credentials_email = function () {
3615
3612
  return sdk.delete("/users/".concat(user_id, "/credentials_email"), null, null, options);
3616
3613
  });
3617
3614
 
3618
- return function delete_user_credentials_email(_x1089, _x1090, _x1091) {
3615
+ return function delete_user_credentials_email(_x1088, _x1089, _x1090) {
3619
3616
  return _ref317.apply(this, arguments);
3620
3617
  };
3621
3618
  }();
@@ -3626,7 +3623,7 @@ export var user_credentials_totp = function () {
3626
3623
  }, null, options);
3627
3624
  });
3628
3625
 
3629
- return function user_credentials_totp(_x1092, _x1093, _x1094, _x1095) {
3626
+ return function user_credentials_totp(_x1091, _x1092, _x1093, _x1094) {
3630
3627
  return _ref318.apply(this, arguments);
3631
3628
  };
3632
3629
  }();
@@ -3637,7 +3634,7 @@ export var create_user_credentials_totp = function () {
3637
3634
  }, body, options);
3638
3635
  });
3639
3636
 
3640
- return function create_user_credentials_totp(_x1096, _x1097, _x1098, _x1099, _x1100) {
3637
+ return function create_user_credentials_totp(_x1095, _x1096, _x1097, _x1098, _x1099) {
3641
3638
  return _ref319.apply(this, arguments);
3642
3639
  };
3643
3640
  }();
@@ -3646,7 +3643,7 @@ export var delete_user_credentials_totp = function () {
3646
3643
  return sdk.delete("/users/".concat(user_id, "/credentials_totp"), null, null, options);
3647
3644
  });
3648
3645
 
3649
- return function delete_user_credentials_totp(_x1101, _x1102, _x1103) {
3646
+ return function delete_user_credentials_totp(_x1100, _x1101, _x1102) {
3650
3647
  return _ref320.apply(this, arguments);
3651
3648
  };
3652
3649
  }();
@@ -3657,7 +3654,7 @@ export var user_credentials_ldap = function () {
3657
3654
  }, null, options);
3658
3655
  });
3659
3656
 
3660
- return function user_credentials_ldap(_x1104, _x1105, _x1106, _x1107) {
3657
+ return function user_credentials_ldap(_x1103, _x1104, _x1105, _x1106) {
3661
3658
  return _ref321.apply(this, arguments);
3662
3659
  };
3663
3660
  }();
@@ -3666,7 +3663,7 @@ export var delete_user_credentials_ldap = function () {
3666
3663
  return sdk.delete("/users/".concat(user_id, "/credentials_ldap"), null, null, options);
3667
3664
  });
3668
3665
 
3669
- return function delete_user_credentials_ldap(_x1108, _x1109, _x1110) {
3666
+ return function delete_user_credentials_ldap(_x1107, _x1108, _x1109) {
3670
3667
  return _ref322.apply(this, arguments);
3671
3668
  };
3672
3669
  }();
@@ -3677,7 +3674,7 @@ export var user_credentials_google = function () {
3677
3674
  }, null, options);
3678
3675
  });
3679
3676
 
3680
- return function user_credentials_google(_x1111, _x1112, _x1113, _x1114) {
3677
+ return function user_credentials_google(_x1110, _x1111, _x1112, _x1113) {
3681
3678
  return _ref323.apply(this, arguments);
3682
3679
  };
3683
3680
  }();
@@ -3686,7 +3683,7 @@ export var delete_user_credentials_google = function () {
3686
3683
  return sdk.delete("/users/".concat(user_id, "/credentials_google"), null, null, options);
3687
3684
  });
3688
3685
 
3689
- return function delete_user_credentials_google(_x1115, _x1116, _x1117) {
3686
+ return function delete_user_credentials_google(_x1114, _x1115, _x1116) {
3690
3687
  return _ref324.apply(this, arguments);
3691
3688
  };
3692
3689
  }();
@@ -3697,7 +3694,7 @@ export var user_credentials_saml = function () {
3697
3694
  }, null, options);
3698
3695
  });
3699
3696
 
3700
- return function user_credentials_saml(_x1118, _x1119, _x1120, _x1121) {
3697
+ return function user_credentials_saml(_x1117, _x1118, _x1119, _x1120) {
3701
3698
  return _ref325.apply(this, arguments);
3702
3699
  };
3703
3700
  }();
@@ -3706,7 +3703,7 @@ export var delete_user_credentials_saml = function () {
3706
3703
  return sdk.delete("/users/".concat(user_id, "/credentials_saml"), null, null, options);
3707
3704
  });
3708
3705
 
3709
- return function delete_user_credentials_saml(_x1122, _x1123, _x1124) {
3706
+ return function delete_user_credentials_saml(_x1121, _x1122, _x1123) {
3710
3707
  return _ref326.apply(this, arguments);
3711
3708
  };
3712
3709
  }();
@@ -3717,7 +3714,7 @@ export var user_credentials_oidc = function () {
3717
3714
  }, null, options);
3718
3715
  });
3719
3716
 
3720
- return function user_credentials_oidc(_x1125, _x1126, _x1127, _x1128) {
3717
+ return function user_credentials_oidc(_x1124, _x1125, _x1126, _x1127) {
3721
3718
  return _ref327.apply(this, arguments);
3722
3719
  };
3723
3720
  }();
@@ -3726,7 +3723,7 @@ export var delete_user_credentials_oidc = function () {
3726
3723
  return sdk.delete("/users/".concat(user_id, "/credentials_oidc"), null, null, options);
3727
3724
  });
3728
3725
 
3729
- return function delete_user_credentials_oidc(_x1129, _x1130, _x1131) {
3726
+ return function delete_user_credentials_oidc(_x1128, _x1129, _x1130) {
3730
3727
  return _ref328.apply(this, arguments);
3731
3728
  };
3732
3729
  }();
@@ -3737,7 +3734,7 @@ export var user_credentials_api3 = function () {
3737
3734
  }, null, options);
3738
3735
  });
3739
3736
 
3740
- return function user_credentials_api3(_x1132, _x1133, _x1134, _x1135, _x1136) {
3737
+ return function user_credentials_api3(_x1131, _x1132, _x1133, _x1134, _x1135) {
3741
3738
  return _ref329.apply(this, arguments);
3742
3739
  };
3743
3740
  }();
@@ -3746,7 +3743,7 @@ export var delete_user_credentials_api3 = function () {
3746
3743
  return sdk.delete("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), null, null, options);
3747
3744
  });
3748
3745
 
3749
- return function delete_user_credentials_api3(_x1137, _x1138, _x1139, _x1140) {
3746
+ return function delete_user_credentials_api3(_x1136, _x1137, _x1138, _x1139) {
3750
3747
  return _ref330.apply(this, arguments);
3751
3748
  };
3752
3749
  }();
@@ -3757,7 +3754,7 @@ export var all_user_credentials_api3s = function () {
3757
3754
  }, null, options);
3758
3755
  });
3759
3756
 
3760
- return function all_user_credentials_api3s(_x1141, _x1142, _x1143, _x1144) {
3757
+ return function all_user_credentials_api3s(_x1140, _x1141, _x1142, _x1143) {
3761
3758
  return _ref331.apply(this, arguments);
3762
3759
  };
3763
3760
  }();
@@ -3768,7 +3765,7 @@ export var create_user_credentials_api3 = function () {
3768
3765
  }, body, options);
3769
3766
  });
3770
3767
 
3771
- return function create_user_credentials_api3(_x1145, _x1146, _x1147, _x1148, _x1149) {
3768
+ return function create_user_credentials_api3(_x1144, _x1145, _x1146, _x1147, _x1148) {
3772
3769
  return _ref332.apply(this, arguments);
3773
3770
  };
3774
3771
  }();
@@ -3779,7 +3776,7 @@ export var user_credentials_embed = function () {
3779
3776
  }, null, options);
3780
3777
  });
3781
3778
 
3782
- return function user_credentials_embed(_x1150, _x1151, _x1152, _x1153, _x1154) {
3779
+ return function user_credentials_embed(_x1149, _x1150, _x1151, _x1152, _x1153) {
3783
3780
  return _ref333.apply(this, arguments);
3784
3781
  };
3785
3782
  }();
@@ -3788,7 +3785,7 @@ export var delete_user_credentials_embed = function () {
3788
3785
  return sdk.delete("/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), null, null, options);
3789
3786
  });
3790
3787
 
3791
- return function delete_user_credentials_embed(_x1155, _x1156, _x1157, _x1158) {
3788
+ return function delete_user_credentials_embed(_x1154, _x1155, _x1156, _x1157) {
3792
3789
  return _ref334.apply(this, arguments);
3793
3790
  };
3794
3791
  }();
@@ -3799,7 +3796,7 @@ export var all_user_credentials_embeds = function () {
3799
3796
  }, null, options);
3800
3797
  });
3801
3798
 
3802
- return function all_user_credentials_embeds(_x1159, _x1160, _x1161, _x1162) {
3799
+ return function all_user_credentials_embeds(_x1158, _x1159, _x1160, _x1161) {
3803
3800
  return _ref335.apply(this, arguments);
3804
3801
  };
3805
3802
  }();
@@ -3810,7 +3807,7 @@ export var user_credentials_looker_openid = function () {
3810
3807
  }, null, options);
3811
3808
  });
3812
3809
 
3813
- return function user_credentials_looker_openid(_x1163, _x1164, _x1165, _x1166) {
3810
+ return function user_credentials_looker_openid(_x1162, _x1163, _x1164, _x1165) {
3814
3811
  return _ref336.apply(this, arguments);
3815
3812
  };
3816
3813
  }();
@@ -3819,7 +3816,7 @@ export var delete_user_credentials_looker_openid = function () {
3819
3816
  return sdk.delete("/users/".concat(user_id, "/credentials_looker_openid"), null, null, options);
3820
3817
  });
3821
3818
 
3822
- return function delete_user_credentials_looker_openid(_x1167, _x1168, _x1169) {
3819
+ return function delete_user_credentials_looker_openid(_x1166, _x1167, _x1168) {
3823
3820
  return _ref337.apply(this, arguments);
3824
3821
  };
3825
3822
  }();
@@ -3830,7 +3827,7 @@ export var user_session = function () {
3830
3827
  }, null, options);
3831
3828
  });
3832
3829
 
3833
- return function user_session(_x1170, _x1171, _x1172, _x1173, _x1174) {
3830
+ return function user_session(_x1169, _x1170, _x1171, _x1172, _x1173) {
3834
3831
  return _ref338.apply(this, arguments);
3835
3832
  };
3836
3833
  }();
@@ -3839,7 +3836,7 @@ export var delete_user_session = function () {
3839
3836
  return sdk.delete("/users/".concat(user_id, "/sessions/").concat(session_id), null, null, options);
3840
3837
  });
3841
3838
 
3842
- return function delete_user_session(_x1175, _x1176, _x1177, _x1178) {
3839
+ return function delete_user_session(_x1174, _x1175, _x1176, _x1177) {
3843
3840
  return _ref339.apply(this, arguments);
3844
3841
  };
3845
3842
  }();
@@ -3850,7 +3847,7 @@ export var all_user_sessions = function () {
3850
3847
  }, null, options);
3851
3848
  });
3852
3849
 
3853
- return function all_user_sessions(_x1179, _x1180, _x1181, _x1182) {
3850
+ return function all_user_sessions(_x1178, _x1179, _x1180, _x1181) {
3854
3851
  return _ref340.apply(this, arguments);
3855
3852
  };
3856
3853
  }();
@@ -3862,7 +3859,7 @@ export var create_user_credentials_email_password_reset = function () {
3862
3859
  }, null, options);
3863
3860
  });
3864
3861
 
3865
- return function create_user_credentials_email_password_reset(_x1183, _x1184, _x1185) {
3862
+ return function create_user_credentials_email_password_reset(_x1182, _x1183, _x1184) {
3866
3863
  return _ref341.apply(this, arguments);
3867
3864
  };
3868
3865
  }();
@@ -3874,7 +3871,7 @@ export var user_roles = function () {
3874
3871
  }, null, options);
3875
3872
  });
3876
3873
 
3877
- return function user_roles(_x1186, _x1187, _x1188) {
3874
+ return function user_roles(_x1185, _x1186, _x1187) {
3878
3875
  return _ref342.apply(this, arguments);
3879
3876
  };
3880
3877
  }();
@@ -3885,7 +3882,7 @@ export var set_user_roles = function () {
3885
3882
  }, body, options);
3886
3883
  });
3887
3884
 
3888
- return function set_user_roles(_x1189, _x1190, _x1191, _x1192, _x1193) {
3885
+ return function set_user_roles(_x1188, _x1189, _x1190, _x1191, _x1192) {
3889
3886
  return _ref343.apply(this, arguments);
3890
3887
  };
3891
3888
  }();
@@ -3899,7 +3896,7 @@ export var user_attribute_user_values = function () {
3899
3896
  }, null, options);
3900
3897
  });
3901
3898
 
3902
- return function user_attribute_user_values(_x1194, _x1195, _x1196) {
3899
+ return function user_attribute_user_values(_x1193, _x1194, _x1195) {
3903
3900
  return _ref344.apply(this, arguments);
3904
3901
  };
3905
3902
  }();
@@ -3908,7 +3905,7 @@ export var set_user_attribute_user_value = function () {
3908
3905
  return sdk.patch("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
3909
3906
  });
3910
3907
 
3911
- return function set_user_attribute_user_value(_x1197, _x1198, _x1199, _x1200, _x1201) {
3908
+ return function set_user_attribute_user_value(_x1196, _x1197, _x1198, _x1199, _x1200) {
3912
3909
  return _ref345.apply(this, arguments);
3913
3910
  };
3914
3911
  }();
@@ -3917,7 +3914,7 @@ export var delete_user_attribute_user_value = function () {
3917
3914
  return sdk.delete("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
3918
3915
  });
3919
3916
 
3920
- return function delete_user_attribute_user_value(_x1202, _x1203, _x1204, _x1205) {
3917
+ return function delete_user_attribute_user_value(_x1201, _x1202, _x1203, _x1204) {
3921
3918
  return _ref346.apply(this, arguments);
3922
3919
  };
3923
3920
  }();
@@ -3929,7 +3926,7 @@ export var all_user_attributes = function () {
3929
3926
  }, null, options);
3930
3927
  });
3931
3928
 
3932
- return function all_user_attributes(_x1206, _x1207, _x1208) {
3929
+ return function all_user_attributes(_x1205, _x1206, _x1207) {
3933
3930
  return _ref347.apply(this, arguments);
3934
3931
  };
3935
3932
  }();
@@ -3940,7 +3937,7 @@ export var create_user_attribute = function () {
3940
3937
  }, body, options);
3941
3938
  });
3942
3939
 
3943
- return function create_user_attribute(_x1209, _x1210, _x1211, _x1212) {
3940
+ return function create_user_attribute(_x1208, _x1209, _x1210, _x1211) {
3944
3941
  return _ref348.apply(this, arguments);
3945
3942
  };
3946
3943
  }();
@@ -3951,7 +3948,7 @@ export var user_attribute = function () {
3951
3948
  }, null, options);
3952
3949
  });
3953
3950
 
3954
- return function user_attribute(_x1213, _x1214, _x1215, _x1216) {
3951
+ return function user_attribute(_x1212, _x1213, _x1214, _x1215) {
3955
3952
  return _ref349.apply(this, arguments);
3956
3953
  };
3957
3954
  }();
@@ -3962,7 +3959,7 @@ export var update_user_attribute = function () {
3962
3959
  }, body, options);
3963
3960
  });
3964
3961
 
3965
- return function update_user_attribute(_x1217, _x1218, _x1219, _x1220, _x1221) {
3962
+ return function update_user_attribute(_x1216, _x1217, _x1218, _x1219, _x1220) {
3966
3963
  return _ref350.apply(this, arguments);
3967
3964
  };
3968
3965
  }();
@@ -3971,7 +3968,7 @@ export var delete_user_attribute = function () {
3971
3968
  return sdk.delete("/user_attributes/".concat(user_attribute_id), null, null, options);
3972
3969
  });
3973
3970
 
3974
- return function delete_user_attribute(_x1222, _x1223, _x1224) {
3971
+ return function delete_user_attribute(_x1221, _x1222, _x1223) {
3975
3972
  return _ref351.apply(this, arguments);
3976
3973
  };
3977
3974
  }();
@@ -3982,7 +3979,7 @@ export var all_user_attribute_group_values = function () {
3982
3979
  }, null, options);
3983
3980
  });
3984
3981
 
3985
- return function all_user_attribute_group_values(_x1225, _x1226, _x1227, _x1228) {
3982
+ return function all_user_attribute_group_values(_x1224, _x1225, _x1226, _x1227) {
3986
3983
  return _ref352.apply(this, arguments);
3987
3984
  };
3988
3985
  }();
@@ -3991,7 +3988,7 @@ export var set_user_attribute_group_values = function () {
3991
3988
  return sdk.post("/user_attributes/".concat(user_attribute_id, "/group_values"), null, body, options);
3992
3989
  });
3993
3990
 
3994
- return function set_user_attribute_group_values(_x1229, _x1230, _x1231, _x1232) {
3991
+ return function set_user_attribute_group_values(_x1228, _x1229, _x1230, _x1231) {
3995
3992
  return _ref353.apply(this, arguments);
3996
3993
  };
3997
3994
  }();
@@ -4000,7 +3997,7 @@ export var all_workspaces = function () {
4000
3997
  return sdk.get('/workspaces', null, null, options);
4001
3998
  });
4002
3999
 
4003
- return function all_workspaces(_x1233, _x1234) {
4000
+ return function all_workspaces(_x1232, _x1233) {
4004
4001
  return _ref354.apply(this, arguments);
4005
4002
  };
4006
4003
  }();
@@ -4010,7 +4007,7 @@ export var workspace = function () {
4010
4007
  return sdk.get("/workspaces/".concat(workspace_id), null, null, options);
4011
4008
  });
4012
4009
 
4013
- return function workspace(_x1235, _x1236, _x1237) {
4010
+ return function workspace(_x1234, _x1235, _x1236) {
4014
4011
  return _ref355.apply(this, arguments);
4015
4012
  };
4016
4013
  }();