@looker/sdk 21.16.0 → 21.20.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +63 -1
- package/lib/3.1/funcs.d.ts +3 -2
- package/lib/3.1/funcs.js +725 -709
- package/lib/3.1/funcs.js.map +1 -1
- package/lib/3.1/methods.d.ts +3 -2
- package/lib/3.1/methods.js +484 -472
- package/lib/3.1/methods.js.map +1 -1
- package/lib/3.1/methodsInterface.d.ts +3 -2
- package/lib/3.1/models.d.ts +1666 -1656
- package/lib/3.1/models.js.map +1 -1
- package/lib/3.1/streams.d.ts +3 -2
- package/lib/3.1/streams.js +484 -472
- package/lib/3.1/streams.js.map +1 -1
- package/lib/4.0/funcs.d.ts +12 -9
- package/lib/4.0/funcs.js +1231 -1184
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +12 -9
- package/lib/4.0/methods.js +820 -785
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +12 -9
- package/lib/4.0/models.d.ts +1866 -1824
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +12 -9
- package/lib/4.0/streams.js +820 -785
- package/lib/4.0/streams.js.map +1 -1
- package/lib/constants.d.ts +1 -1
- package/lib/constants.js +1 -1
- package/lib/constants.js.map +1 -1
- package/lib/esm/3.1/funcs.js +716 -703
- package/lib/esm/3.1/funcs.js.map +1 -1
- package/lib/esm/3.1/methods.js +484 -472
- package/lib/esm/3.1/methods.js.map +1 -1
- package/lib/esm/3.1/models.js.map +1 -1
- package/lib/esm/3.1/streams.js +484 -472
- package/lib/esm/3.1/streams.js.map +1 -1
- package/lib/esm/4.0/funcs.js +1208 -1170
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +820 -785
- package/lib/esm/4.0/methods.js.map +1 -1
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js +820 -785
- package/lib/esm/4.0/streams.js.map +1 -1
- package/lib/esm/constants.js +1 -1
- package/lib/esm/constants.js.map +1 -1
- package/package.json +4 -4
package/lib/esm/3.1/funcs.js
CHANGED
|
@@ -1276,8 +1276,34 @@ export var update_datagroup = function () {
|
|
|
1276
1276
|
return _ref119.apply(this, arguments);
|
|
1277
1277
|
};
|
|
1278
1278
|
}();
|
|
1279
|
-
export var
|
|
1279
|
+
export var graph_derived_tables_for_model = function () {
|
|
1280
1280
|
var _ref120 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1281
|
+
request.model = encodeParam(request.model);
|
|
1282
|
+
return sdk.get("/derived_table/graph/model/".concat(request.model), {
|
|
1283
|
+
format: request.format,
|
|
1284
|
+
color: request.color
|
|
1285
|
+
}, null, options);
|
|
1286
|
+
});
|
|
1287
|
+
|
|
1288
|
+
return function graph_derived_tables_for_model(_x385, _x386, _x387) {
|
|
1289
|
+
return _ref120.apply(this, arguments);
|
|
1290
|
+
};
|
|
1291
|
+
}();
|
|
1292
|
+
export var graph_derived_tables_for_view = function () {
|
|
1293
|
+
var _ref121 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1294
|
+
request.view = encodeParam(request.view);
|
|
1295
|
+
return sdk.get("/derived_table/graph/view/".concat(request.view), {
|
|
1296
|
+
models: request.models,
|
|
1297
|
+
workspace: request.workspace
|
|
1298
|
+
}, null, options);
|
|
1299
|
+
});
|
|
1300
|
+
|
|
1301
|
+
return function graph_derived_tables_for_view(_x388, _x389, _x390) {
|
|
1302
|
+
return _ref121.apply(this, arguments);
|
|
1303
|
+
};
|
|
1304
|
+
}();
|
|
1305
|
+
export var search_folders = function () {
|
|
1306
|
+
var _ref122 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1281
1307
|
return sdk.get('/folders/search', {
|
|
1282
1308
|
fields: request.fields,
|
|
1283
1309
|
page: request.page,
|
|
@@ -1294,64 +1320,64 @@ export var search_folders = function () {
|
|
|
1294
1320
|
}, null, options);
|
|
1295
1321
|
});
|
|
1296
1322
|
|
|
1297
|
-
return function search_folders(
|
|
1298
|
-
return
|
|
1323
|
+
return function search_folders(_x391, _x392, _x393) {
|
|
1324
|
+
return _ref122.apply(this, arguments);
|
|
1299
1325
|
};
|
|
1300
1326
|
}();
|
|
1301
1327
|
export var folder = function () {
|
|
1302
|
-
var
|
|
1328
|
+
var _ref123 = _asyncToGenerator(function* (sdk, folder_id, fields, options) {
|
|
1303
1329
|
folder_id = encodeParam(folder_id);
|
|
1304
1330
|
return sdk.get("/folders/".concat(folder_id), {
|
|
1305
1331
|
fields
|
|
1306
1332
|
}, null, options);
|
|
1307
1333
|
});
|
|
1308
1334
|
|
|
1309
|
-
return function folder(
|
|
1310
|
-
return
|
|
1335
|
+
return function folder(_x394, _x395, _x396, _x397) {
|
|
1336
|
+
return _ref123.apply(this, arguments);
|
|
1311
1337
|
};
|
|
1312
1338
|
}();
|
|
1313
1339
|
export var update_folder = function () {
|
|
1314
|
-
var
|
|
1340
|
+
var _ref124 = _asyncToGenerator(function* (sdk, folder_id, body, options) {
|
|
1315
1341
|
folder_id = encodeParam(folder_id);
|
|
1316
1342
|
return sdk.patch("/folders/".concat(folder_id), null, body, options);
|
|
1317
1343
|
});
|
|
1318
1344
|
|
|
1319
|
-
return function update_folder(
|
|
1320
|
-
return
|
|
1345
|
+
return function update_folder(_x398, _x399, _x400, _x401) {
|
|
1346
|
+
return _ref124.apply(this, arguments);
|
|
1321
1347
|
};
|
|
1322
1348
|
}();
|
|
1323
1349
|
export var delete_folder = function () {
|
|
1324
|
-
var
|
|
1350
|
+
var _ref125 = _asyncToGenerator(function* (sdk, folder_id, options) {
|
|
1325
1351
|
folder_id = encodeParam(folder_id);
|
|
1326
1352
|
return sdk.delete("/folders/".concat(folder_id), null, null, options);
|
|
1327
1353
|
});
|
|
1328
1354
|
|
|
1329
|
-
return function delete_folder(
|
|
1330
|
-
return
|
|
1355
|
+
return function delete_folder(_x402, _x403, _x404) {
|
|
1356
|
+
return _ref125.apply(this, arguments);
|
|
1331
1357
|
};
|
|
1332
1358
|
}();
|
|
1333
1359
|
export var all_folders = function () {
|
|
1334
|
-
var
|
|
1360
|
+
var _ref126 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1335
1361
|
return sdk.get('/folders', {
|
|
1336
1362
|
fields
|
|
1337
1363
|
}, null, options);
|
|
1338
1364
|
});
|
|
1339
1365
|
|
|
1340
|
-
return function all_folders(
|
|
1341
|
-
return
|
|
1366
|
+
return function all_folders(_x405, _x406, _x407) {
|
|
1367
|
+
return _ref126.apply(this, arguments);
|
|
1342
1368
|
};
|
|
1343
1369
|
}();
|
|
1344
1370
|
export var create_folder = function () {
|
|
1345
|
-
var
|
|
1371
|
+
var _ref127 = _asyncToGenerator(function* (sdk, body, options) {
|
|
1346
1372
|
return sdk.post('/folders', null, body, options);
|
|
1347
1373
|
});
|
|
1348
1374
|
|
|
1349
|
-
return function create_folder(
|
|
1350
|
-
return
|
|
1375
|
+
return function create_folder(_x408, _x409, _x410) {
|
|
1376
|
+
return _ref127.apply(this, arguments);
|
|
1351
1377
|
};
|
|
1352
1378
|
}();
|
|
1353
1379
|
export var folder_children = function () {
|
|
1354
|
-
var
|
|
1380
|
+
var _ref128 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1355
1381
|
request.folder_id = encodeParam(request.folder_id);
|
|
1356
1382
|
return sdk.get("/folders/".concat(request.folder_id, "/children"), {
|
|
1357
1383
|
fields: request.fields,
|
|
@@ -1361,12 +1387,12 @@ export var folder_children = function () {
|
|
|
1361
1387
|
}, null, options);
|
|
1362
1388
|
});
|
|
1363
1389
|
|
|
1364
|
-
return function folder_children(
|
|
1365
|
-
return
|
|
1390
|
+
return function folder_children(_x411, _x412, _x413) {
|
|
1391
|
+
return _ref128.apply(this, arguments);
|
|
1366
1392
|
};
|
|
1367
1393
|
}();
|
|
1368
1394
|
export var folder_children_search = function () {
|
|
1369
|
-
var
|
|
1395
|
+
var _ref129 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1370
1396
|
request.folder_id = encodeParam(request.folder_id);
|
|
1371
1397
|
return sdk.get("/folders/".concat(request.folder_id, "/children/search"), {
|
|
1372
1398
|
fields: request.fields,
|
|
@@ -1375,60 +1401,60 @@ export var folder_children_search = function () {
|
|
|
1375
1401
|
}, null, options);
|
|
1376
1402
|
});
|
|
1377
1403
|
|
|
1378
|
-
return function folder_children_search(
|
|
1379
|
-
return
|
|
1404
|
+
return function folder_children_search(_x414, _x415, _x416) {
|
|
1405
|
+
return _ref129.apply(this, arguments);
|
|
1380
1406
|
};
|
|
1381
1407
|
}();
|
|
1382
1408
|
export var folder_parent = function () {
|
|
1383
|
-
var
|
|
1409
|
+
var _ref130 = _asyncToGenerator(function* (sdk, folder_id, fields, options) {
|
|
1384
1410
|
folder_id = encodeParam(folder_id);
|
|
1385
1411
|
return sdk.get("/folders/".concat(folder_id, "/parent"), {
|
|
1386
1412
|
fields
|
|
1387
1413
|
}, null, options);
|
|
1388
1414
|
});
|
|
1389
1415
|
|
|
1390
|
-
return function folder_parent(
|
|
1391
|
-
return
|
|
1416
|
+
return function folder_parent(_x417, _x418, _x419, _x420) {
|
|
1417
|
+
return _ref130.apply(this, arguments);
|
|
1392
1418
|
};
|
|
1393
1419
|
}();
|
|
1394
1420
|
export var folder_ancestors = function () {
|
|
1395
|
-
var
|
|
1421
|
+
var _ref131 = _asyncToGenerator(function* (sdk, folder_id, fields, options) {
|
|
1396
1422
|
folder_id = encodeParam(folder_id);
|
|
1397
1423
|
return sdk.get("/folders/".concat(folder_id, "/ancestors"), {
|
|
1398
1424
|
fields
|
|
1399
1425
|
}, null, options);
|
|
1400
1426
|
});
|
|
1401
1427
|
|
|
1402
|
-
return function folder_ancestors(
|
|
1403
|
-
return
|
|
1428
|
+
return function folder_ancestors(_x421, _x422, _x423, _x424) {
|
|
1429
|
+
return _ref131.apply(this, arguments);
|
|
1404
1430
|
};
|
|
1405
1431
|
}();
|
|
1406
1432
|
export var folder_looks = function () {
|
|
1407
|
-
var
|
|
1433
|
+
var _ref132 = _asyncToGenerator(function* (sdk, folder_id, fields, options) {
|
|
1408
1434
|
folder_id = encodeParam(folder_id);
|
|
1409
1435
|
return sdk.get("/folders/".concat(folder_id, "/looks"), {
|
|
1410
1436
|
fields
|
|
1411
1437
|
}, null, options);
|
|
1412
1438
|
});
|
|
1413
1439
|
|
|
1414
|
-
return function folder_looks(
|
|
1415
|
-
return
|
|
1440
|
+
return function folder_looks(_x425, _x426, _x427, _x428) {
|
|
1441
|
+
return _ref132.apply(this, arguments);
|
|
1416
1442
|
};
|
|
1417
1443
|
}();
|
|
1418
1444
|
export var folder_dashboards = function () {
|
|
1419
|
-
var
|
|
1445
|
+
var _ref133 = _asyncToGenerator(function* (sdk, folder_id, fields, options) {
|
|
1420
1446
|
folder_id = encodeParam(folder_id);
|
|
1421
1447
|
return sdk.get("/folders/".concat(folder_id, "/dashboards"), {
|
|
1422
1448
|
fields
|
|
1423
1449
|
}, null, options);
|
|
1424
1450
|
});
|
|
1425
1451
|
|
|
1426
|
-
return function folder_dashboards(
|
|
1427
|
-
return
|
|
1452
|
+
return function folder_dashboards(_x429, _x430, _x431, _x432) {
|
|
1453
|
+
return _ref133.apply(this, arguments);
|
|
1428
1454
|
};
|
|
1429
1455
|
}();
|
|
1430
1456
|
export var all_groups = function () {
|
|
1431
|
-
var
|
|
1457
|
+
var _ref134 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1432
1458
|
return sdk.get('/groups', {
|
|
1433
1459
|
fields: request.fields,
|
|
1434
1460
|
page: request.page,
|
|
@@ -1440,23 +1466,23 @@ export var all_groups = function () {
|
|
|
1440
1466
|
}, null, options);
|
|
1441
1467
|
});
|
|
1442
1468
|
|
|
1443
|
-
return function all_groups(
|
|
1444
|
-
return
|
|
1469
|
+
return function all_groups(_x433, _x434, _x435) {
|
|
1470
|
+
return _ref134.apply(this, arguments);
|
|
1445
1471
|
};
|
|
1446
1472
|
}();
|
|
1447
1473
|
export var create_group = function () {
|
|
1448
|
-
var
|
|
1474
|
+
var _ref135 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
1449
1475
|
return sdk.post('/groups', {
|
|
1450
1476
|
fields
|
|
1451
1477
|
}, body, options);
|
|
1452
1478
|
});
|
|
1453
1479
|
|
|
1454
|
-
return function create_group(
|
|
1455
|
-
return
|
|
1480
|
+
return function create_group(_x436, _x437, _x438, _x439) {
|
|
1481
|
+
return _ref135.apply(this, arguments);
|
|
1456
1482
|
};
|
|
1457
1483
|
}();
|
|
1458
1484
|
export var search_groups = function () {
|
|
1459
|
-
var
|
|
1485
|
+
var _ref136 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1460
1486
|
return sdk.get('/groups/search', {
|
|
1461
1487
|
fields: request.fields,
|
|
1462
1488
|
limit: request.limit,
|
|
@@ -1471,63 +1497,63 @@ export var search_groups = function () {
|
|
|
1471
1497
|
}, null, options);
|
|
1472
1498
|
});
|
|
1473
1499
|
|
|
1474
|
-
return function search_groups(
|
|
1475
|
-
return
|
|
1500
|
+
return function search_groups(_x440, _x441, _x442) {
|
|
1501
|
+
return _ref136.apply(this, arguments);
|
|
1476
1502
|
};
|
|
1477
1503
|
}();
|
|
1478
1504
|
export var group = function () {
|
|
1479
|
-
var
|
|
1505
|
+
var _ref137 = _asyncToGenerator(function* (sdk, group_id, fields, options) {
|
|
1480
1506
|
return sdk.get("/groups/".concat(group_id), {
|
|
1481
1507
|
fields
|
|
1482
1508
|
}, null, options);
|
|
1483
1509
|
});
|
|
1484
1510
|
|
|
1485
|
-
return function group(
|
|
1486
|
-
return
|
|
1511
|
+
return function group(_x443, _x444, _x445, _x446) {
|
|
1512
|
+
return _ref137.apply(this, arguments);
|
|
1487
1513
|
};
|
|
1488
1514
|
}();
|
|
1489
1515
|
export var update_group = function () {
|
|
1490
|
-
var
|
|
1516
|
+
var _ref138 = _asyncToGenerator(function* (sdk, group_id, body, fields, options) {
|
|
1491
1517
|
return sdk.patch("/groups/".concat(group_id), {
|
|
1492
1518
|
fields
|
|
1493
1519
|
}, body, options);
|
|
1494
1520
|
});
|
|
1495
1521
|
|
|
1496
|
-
return function update_group(
|
|
1497
|
-
return
|
|
1522
|
+
return function update_group(_x447, _x448, _x449, _x450, _x451) {
|
|
1523
|
+
return _ref138.apply(this, arguments);
|
|
1498
1524
|
};
|
|
1499
1525
|
}();
|
|
1500
1526
|
export var delete_group = function () {
|
|
1501
|
-
var
|
|
1527
|
+
var _ref139 = _asyncToGenerator(function* (sdk, group_id, options) {
|
|
1502
1528
|
return sdk.delete("/groups/".concat(group_id), null, null, options);
|
|
1503
1529
|
});
|
|
1504
1530
|
|
|
1505
|
-
return function delete_group(
|
|
1506
|
-
return
|
|
1531
|
+
return function delete_group(_x452, _x453, _x454) {
|
|
1532
|
+
return _ref139.apply(this, arguments);
|
|
1507
1533
|
};
|
|
1508
1534
|
}();
|
|
1509
1535
|
export var all_group_groups = function () {
|
|
1510
|
-
var
|
|
1536
|
+
var _ref140 = _asyncToGenerator(function* (sdk, group_id, fields, options) {
|
|
1511
1537
|
return sdk.get("/groups/".concat(group_id, "/groups"), {
|
|
1512
1538
|
fields
|
|
1513
1539
|
}, null, options);
|
|
1514
1540
|
});
|
|
1515
1541
|
|
|
1516
|
-
return function all_group_groups(
|
|
1517
|
-
return
|
|
1542
|
+
return function all_group_groups(_x455, _x456, _x457, _x458) {
|
|
1543
|
+
return _ref140.apply(this, arguments);
|
|
1518
1544
|
};
|
|
1519
1545
|
}();
|
|
1520
1546
|
export var add_group_group = function () {
|
|
1521
|
-
var
|
|
1547
|
+
var _ref141 = _asyncToGenerator(function* (sdk, group_id, body, options) {
|
|
1522
1548
|
return sdk.post("/groups/".concat(group_id, "/groups"), null, body, options);
|
|
1523
1549
|
});
|
|
1524
1550
|
|
|
1525
|
-
return function add_group_group(
|
|
1526
|
-
return
|
|
1551
|
+
return function add_group_group(_x459, _x460, _x461, _x462) {
|
|
1552
|
+
return _ref141.apply(this, arguments);
|
|
1527
1553
|
};
|
|
1528
1554
|
}();
|
|
1529
1555
|
export var all_group_users = function () {
|
|
1530
|
-
var
|
|
1556
|
+
var _ref142 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1531
1557
|
return sdk.get("/groups/".concat(request.group_id, "/users"), {
|
|
1532
1558
|
fields: request.fields,
|
|
1533
1559
|
page: request.page,
|
|
@@ -1536,79 +1562,79 @@ export var all_group_users = function () {
|
|
|
1536
1562
|
}, null, options);
|
|
1537
1563
|
});
|
|
1538
1564
|
|
|
1539
|
-
return function all_group_users(
|
|
1540
|
-
return
|
|
1565
|
+
return function all_group_users(_x463, _x464, _x465) {
|
|
1566
|
+
return _ref142.apply(this, arguments);
|
|
1541
1567
|
};
|
|
1542
1568
|
}();
|
|
1543
1569
|
export var add_group_user = function () {
|
|
1544
|
-
var
|
|
1570
|
+
var _ref143 = _asyncToGenerator(function* (sdk, group_id, body, options) {
|
|
1545
1571
|
return sdk.post("/groups/".concat(group_id, "/users"), null, body, options);
|
|
1546
1572
|
});
|
|
1547
1573
|
|
|
1548
|
-
return function add_group_user(
|
|
1549
|
-
return
|
|
1574
|
+
return function add_group_user(_x466, _x467, _x468, _x469) {
|
|
1575
|
+
return _ref143.apply(this, arguments);
|
|
1550
1576
|
};
|
|
1551
1577
|
}();
|
|
1552
1578
|
export var delete_group_user = function () {
|
|
1553
|
-
var
|
|
1579
|
+
var _ref144 = _asyncToGenerator(function* (sdk, group_id, user_id, options) {
|
|
1554
1580
|
return sdk.delete("/groups/".concat(group_id, "/users/").concat(user_id), null, null, options);
|
|
1555
1581
|
});
|
|
1556
1582
|
|
|
1557
|
-
return function delete_group_user(
|
|
1558
|
-
return
|
|
1583
|
+
return function delete_group_user(_x470, _x471, _x472, _x473) {
|
|
1584
|
+
return _ref144.apply(this, arguments);
|
|
1559
1585
|
};
|
|
1560
1586
|
}();
|
|
1561
1587
|
export var delete_group_from_group = function () {
|
|
1562
|
-
var
|
|
1588
|
+
var _ref145 = _asyncToGenerator(function* (sdk, group_id, deleting_group_id, options) {
|
|
1563
1589
|
return sdk.delete("/groups/".concat(group_id, "/groups/").concat(deleting_group_id), null, null, options);
|
|
1564
1590
|
});
|
|
1565
1591
|
|
|
1566
|
-
return function delete_group_from_group(
|
|
1567
|
-
return
|
|
1592
|
+
return function delete_group_from_group(_x474, _x475, _x476, _x477) {
|
|
1593
|
+
return _ref145.apply(this, arguments);
|
|
1568
1594
|
};
|
|
1569
1595
|
}();
|
|
1570
1596
|
export var update_user_attribute_group_value = function () {
|
|
1571
|
-
var
|
|
1597
|
+
var _ref146 = _asyncToGenerator(function* (sdk, group_id, user_attribute_id, body, options) {
|
|
1572
1598
|
return sdk.patch("/groups/".concat(group_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
|
|
1573
1599
|
});
|
|
1574
1600
|
|
|
1575
|
-
return function update_user_attribute_group_value(
|
|
1576
|
-
return
|
|
1601
|
+
return function update_user_attribute_group_value(_x478, _x479, _x480, _x481, _x482) {
|
|
1602
|
+
return _ref146.apply(this, arguments);
|
|
1577
1603
|
};
|
|
1578
1604
|
}();
|
|
1579
1605
|
export var delete_user_attribute_group_value = function () {
|
|
1580
|
-
var
|
|
1606
|
+
var _ref147 = _asyncToGenerator(function* (sdk, group_id, user_attribute_id, options) {
|
|
1581
1607
|
return sdk.delete("/groups/".concat(group_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
|
|
1582
1608
|
});
|
|
1583
1609
|
|
|
1584
|
-
return function delete_user_attribute_group_value(
|
|
1585
|
-
return
|
|
1610
|
+
return function delete_user_attribute_group_value(_x483, _x484, _x485, _x486) {
|
|
1611
|
+
return _ref147.apply(this, arguments);
|
|
1586
1612
|
};
|
|
1587
1613
|
}();
|
|
1588
1614
|
export var all_homepages = function () {
|
|
1589
|
-
var
|
|
1615
|
+
var _ref148 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1590
1616
|
return sdk.get('/homepages', {
|
|
1591
1617
|
fields
|
|
1592
1618
|
}, null, options);
|
|
1593
1619
|
});
|
|
1594
1620
|
|
|
1595
|
-
return function all_homepages(
|
|
1596
|
-
return
|
|
1621
|
+
return function all_homepages(_x487, _x488, _x489) {
|
|
1622
|
+
return _ref148.apply(this, arguments);
|
|
1597
1623
|
};
|
|
1598
1624
|
}();
|
|
1599
1625
|
export var create_homepage = function () {
|
|
1600
|
-
var
|
|
1626
|
+
var _ref149 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
1601
1627
|
return sdk.post('/homepages', {
|
|
1602
1628
|
fields
|
|
1603
1629
|
}, body, options);
|
|
1604
1630
|
});
|
|
1605
1631
|
|
|
1606
|
-
return function create_homepage(
|
|
1607
|
-
return
|
|
1632
|
+
return function create_homepage(_x490, _x491, _x492, _x493) {
|
|
1633
|
+
return _ref149.apply(this, arguments);
|
|
1608
1634
|
};
|
|
1609
1635
|
}();
|
|
1610
1636
|
export var search_homepages = function () {
|
|
1611
|
-
var
|
|
1637
|
+
var _ref150 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1612
1638
|
return sdk.get('/homepages/search', {
|
|
1613
1639
|
title: request.title,
|
|
1614
1640
|
created_at: request.created_at,
|
|
@@ -1626,43 +1652,43 @@ export var search_homepages = function () {
|
|
|
1626
1652
|
}, null, options);
|
|
1627
1653
|
});
|
|
1628
1654
|
|
|
1629
|
-
return function search_homepages(
|
|
1630
|
-
return
|
|
1655
|
+
return function search_homepages(_x494, _x495, _x496) {
|
|
1656
|
+
return _ref150.apply(this, arguments);
|
|
1631
1657
|
};
|
|
1632
1658
|
}();
|
|
1633
1659
|
export var homepage = function () {
|
|
1634
|
-
var
|
|
1660
|
+
var _ref151 = _asyncToGenerator(function* (sdk, homepage_id, fields, options) {
|
|
1635
1661
|
return sdk.get("/homepages/".concat(homepage_id), {
|
|
1636
1662
|
fields
|
|
1637
1663
|
}, null, options);
|
|
1638
1664
|
});
|
|
1639
1665
|
|
|
1640
|
-
return function homepage(
|
|
1641
|
-
return
|
|
1666
|
+
return function homepage(_x497, _x498, _x499, _x500) {
|
|
1667
|
+
return _ref151.apply(this, arguments);
|
|
1642
1668
|
};
|
|
1643
1669
|
}();
|
|
1644
1670
|
export var update_homepage = function () {
|
|
1645
|
-
var
|
|
1671
|
+
var _ref152 = _asyncToGenerator(function* (sdk, homepage_id, body, fields, options) {
|
|
1646
1672
|
return sdk.patch("/homepages/".concat(homepage_id), {
|
|
1647
1673
|
fields
|
|
1648
1674
|
}, body, options);
|
|
1649
1675
|
});
|
|
1650
1676
|
|
|
1651
|
-
return function update_homepage(
|
|
1652
|
-
return
|
|
1677
|
+
return function update_homepage(_x501, _x502, _x503, _x504, _x505) {
|
|
1678
|
+
return _ref152.apply(this, arguments);
|
|
1653
1679
|
};
|
|
1654
1680
|
}();
|
|
1655
1681
|
export var delete_homepage = function () {
|
|
1656
|
-
var
|
|
1682
|
+
var _ref153 = _asyncToGenerator(function* (sdk, homepage_id, options) {
|
|
1657
1683
|
return sdk.delete("/homepages/".concat(homepage_id), null, null, options);
|
|
1658
1684
|
});
|
|
1659
1685
|
|
|
1660
|
-
return function delete_homepage(
|
|
1661
|
-
return
|
|
1686
|
+
return function delete_homepage(_x506, _x507, _x508) {
|
|
1687
|
+
return _ref153.apply(this, arguments);
|
|
1662
1688
|
};
|
|
1663
1689
|
}();
|
|
1664
1690
|
export var all_homepage_items = function () {
|
|
1665
|
-
var
|
|
1691
|
+
var _ref154 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1666
1692
|
return sdk.get('/homepage_items', {
|
|
1667
1693
|
fields: request.fields,
|
|
1668
1694
|
sorts: request.sorts,
|
|
@@ -1670,259 +1696,259 @@ export var all_homepage_items = function () {
|
|
|
1670
1696
|
}, null, options);
|
|
1671
1697
|
});
|
|
1672
1698
|
|
|
1673
|
-
return function all_homepage_items(
|
|
1674
|
-
return
|
|
1699
|
+
return function all_homepage_items(_x509, _x510, _x511) {
|
|
1700
|
+
return _ref154.apply(this, arguments);
|
|
1675
1701
|
};
|
|
1676
1702
|
}();
|
|
1677
1703
|
export var create_homepage_item = function () {
|
|
1678
|
-
var
|
|
1704
|
+
var _ref155 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
1679
1705
|
return sdk.post('/homepage_items', {
|
|
1680
1706
|
fields
|
|
1681
1707
|
}, body, options);
|
|
1682
1708
|
});
|
|
1683
1709
|
|
|
1684
|
-
return function create_homepage_item(
|
|
1685
|
-
return
|
|
1710
|
+
return function create_homepage_item(_x512, _x513, _x514, _x515) {
|
|
1711
|
+
return _ref155.apply(this, arguments);
|
|
1686
1712
|
};
|
|
1687
1713
|
}();
|
|
1688
1714
|
export var homepage_item = function () {
|
|
1689
|
-
var
|
|
1715
|
+
var _ref156 = _asyncToGenerator(function* (sdk, homepage_item_id, fields, options) {
|
|
1690
1716
|
return sdk.get("/homepage_items/".concat(homepage_item_id), {
|
|
1691
1717
|
fields
|
|
1692
1718
|
}, null, options);
|
|
1693
1719
|
});
|
|
1694
1720
|
|
|
1695
|
-
return function homepage_item(
|
|
1696
|
-
return
|
|
1721
|
+
return function homepage_item(_x516, _x517, _x518, _x519) {
|
|
1722
|
+
return _ref156.apply(this, arguments);
|
|
1697
1723
|
};
|
|
1698
1724
|
}();
|
|
1699
1725
|
export var update_homepage_item = function () {
|
|
1700
|
-
var
|
|
1726
|
+
var _ref157 = _asyncToGenerator(function* (sdk, homepage_item_id, body, fields, options) {
|
|
1701
1727
|
return sdk.patch("/homepage_items/".concat(homepage_item_id), {
|
|
1702
1728
|
fields
|
|
1703
1729
|
}, body, options);
|
|
1704
1730
|
});
|
|
1705
1731
|
|
|
1706
|
-
return function update_homepage_item(
|
|
1707
|
-
return
|
|
1732
|
+
return function update_homepage_item(_x520, _x521, _x522, _x523, _x524) {
|
|
1733
|
+
return _ref157.apply(this, arguments);
|
|
1708
1734
|
};
|
|
1709
1735
|
}();
|
|
1710
1736
|
export var delete_homepage_item = function () {
|
|
1711
|
-
var
|
|
1737
|
+
var _ref158 = _asyncToGenerator(function* (sdk, homepage_item_id, options) {
|
|
1712
1738
|
return sdk.delete("/homepage_items/".concat(homepage_item_id), null, null, options);
|
|
1713
1739
|
});
|
|
1714
1740
|
|
|
1715
|
-
return function delete_homepage_item(
|
|
1716
|
-
return
|
|
1741
|
+
return function delete_homepage_item(_x525, _x526, _x527) {
|
|
1742
|
+
return _ref158.apply(this, arguments);
|
|
1717
1743
|
};
|
|
1718
1744
|
}();
|
|
1719
1745
|
export var all_homepage_sections = function () {
|
|
1720
|
-
var
|
|
1746
|
+
var _ref159 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1721
1747
|
return sdk.get('/homepage_sections', {
|
|
1722
1748
|
fields: request.fields,
|
|
1723
1749
|
sorts: request.sorts
|
|
1724
1750
|
}, null, options);
|
|
1725
1751
|
});
|
|
1726
1752
|
|
|
1727
|
-
return function all_homepage_sections(
|
|
1728
|
-
return
|
|
1753
|
+
return function all_homepage_sections(_x528, _x529, _x530) {
|
|
1754
|
+
return _ref159.apply(this, arguments);
|
|
1729
1755
|
};
|
|
1730
1756
|
}();
|
|
1731
1757
|
export var create_homepage_section = function () {
|
|
1732
|
-
var
|
|
1758
|
+
var _ref160 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
1733
1759
|
return sdk.post('/homepage_sections', {
|
|
1734
1760
|
fields
|
|
1735
1761
|
}, body, options);
|
|
1736
1762
|
});
|
|
1737
1763
|
|
|
1738
|
-
return function create_homepage_section(
|
|
1739
|
-
return
|
|
1764
|
+
return function create_homepage_section(_x531, _x532, _x533, _x534) {
|
|
1765
|
+
return _ref160.apply(this, arguments);
|
|
1740
1766
|
};
|
|
1741
1767
|
}();
|
|
1742
1768
|
export var homepage_section = function () {
|
|
1743
|
-
var
|
|
1769
|
+
var _ref161 = _asyncToGenerator(function* (sdk, homepage_section_id, fields, options) {
|
|
1744
1770
|
return sdk.get("/homepage_sections/".concat(homepage_section_id), {
|
|
1745
1771
|
fields
|
|
1746
1772
|
}, null, options);
|
|
1747
1773
|
});
|
|
1748
1774
|
|
|
1749
|
-
return function homepage_section(
|
|
1750
|
-
return
|
|
1775
|
+
return function homepage_section(_x535, _x536, _x537, _x538) {
|
|
1776
|
+
return _ref161.apply(this, arguments);
|
|
1751
1777
|
};
|
|
1752
1778
|
}();
|
|
1753
1779
|
export var update_homepage_section = function () {
|
|
1754
|
-
var
|
|
1780
|
+
var _ref162 = _asyncToGenerator(function* (sdk, homepage_section_id, body, fields, options) {
|
|
1755
1781
|
return sdk.patch("/homepage_sections/".concat(homepage_section_id), {
|
|
1756
1782
|
fields
|
|
1757
1783
|
}, body, options);
|
|
1758
1784
|
});
|
|
1759
1785
|
|
|
1760
|
-
return function update_homepage_section(
|
|
1761
|
-
return
|
|
1786
|
+
return function update_homepage_section(_x539, _x540, _x541, _x542, _x543) {
|
|
1787
|
+
return _ref162.apply(this, arguments);
|
|
1762
1788
|
};
|
|
1763
1789
|
}();
|
|
1764
1790
|
export var delete_homepage_section = function () {
|
|
1765
|
-
var
|
|
1791
|
+
var _ref163 = _asyncToGenerator(function* (sdk, homepage_section_id, options) {
|
|
1766
1792
|
return sdk.delete("/homepage_sections/".concat(homepage_section_id), null, null, options);
|
|
1767
1793
|
});
|
|
1768
1794
|
|
|
1769
|
-
return function delete_homepage_section(
|
|
1770
|
-
return
|
|
1795
|
+
return function delete_homepage_section(_x544, _x545, _x546) {
|
|
1796
|
+
return _ref163.apply(this, arguments);
|
|
1771
1797
|
};
|
|
1772
1798
|
}();
|
|
1773
1799
|
export var all_primary_homepage_sections = function () {
|
|
1774
|
-
var
|
|
1800
|
+
var _ref164 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1775
1801
|
return sdk.get('/primary_homepage_sections', {
|
|
1776
1802
|
fields
|
|
1777
1803
|
}, null, options);
|
|
1778
1804
|
});
|
|
1779
1805
|
|
|
1780
|
-
return function all_primary_homepage_sections(
|
|
1781
|
-
return
|
|
1806
|
+
return function all_primary_homepage_sections(_x547, _x548, _x549) {
|
|
1807
|
+
return _ref164.apply(this, arguments);
|
|
1782
1808
|
};
|
|
1783
1809
|
}();
|
|
1784
1810
|
export var all_integration_hubs = function () {
|
|
1785
|
-
var
|
|
1811
|
+
var _ref165 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1786
1812
|
return sdk.get('/integration_hubs', {
|
|
1787
1813
|
fields
|
|
1788
1814
|
}, null, options);
|
|
1789
1815
|
});
|
|
1790
1816
|
|
|
1791
|
-
return function all_integration_hubs(
|
|
1792
|
-
return
|
|
1817
|
+
return function all_integration_hubs(_x550, _x551, _x552) {
|
|
1818
|
+
return _ref165.apply(this, arguments);
|
|
1793
1819
|
};
|
|
1794
1820
|
}();
|
|
1795
1821
|
export var create_integration_hub = function () {
|
|
1796
|
-
var
|
|
1822
|
+
var _ref166 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
1797
1823
|
return sdk.post('/integration_hubs', {
|
|
1798
1824
|
fields
|
|
1799
1825
|
}, body, options);
|
|
1800
1826
|
});
|
|
1801
1827
|
|
|
1802
|
-
return function create_integration_hub(
|
|
1803
|
-
return
|
|
1828
|
+
return function create_integration_hub(_x553, _x554, _x555, _x556) {
|
|
1829
|
+
return _ref166.apply(this, arguments);
|
|
1804
1830
|
};
|
|
1805
1831
|
}();
|
|
1806
1832
|
export var integration_hub = function () {
|
|
1807
|
-
var
|
|
1833
|
+
var _ref167 = _asyncToGenerator(function* (sdk, integration_hub_id, fields, options) {
|
|
1808
1834
|
return sdk.get("/integration_hubs/".concat(integration_hub_id), {
|
|
1809
1835
|
fields
|
|
1810
1836
|
}, null, options);
|
|
1811
1837
|
});
|
|
1812
1838
|
|
|
1813
|
-
return function integration_hub(
|
|
1814
|
-
return
|
|
1839
|
+
return function integration_hub(_x557, _x558, _x559, _x560) {
|
|
1840
|
+
return _ref167.apply(this, arguments);
|
|
1815
1841
|
};
|
|
1816
1842
|
}();
|
|
1817
1843
|
export var update_integration_hub = function () {
|
|
1818
|
-
var
|
|
1844
|
+
var _ref168 = _asyncToGenerator(function* (sdk, integration_hub_id, body, fields, options) {
|
|
1819
1845
|
return sdk.patch("/integration_hubs/".concat(integration_hub_id), {
|
|
1820
1846
|
fields
|
|
1821
1847
|
}, body, options);
|
|
1822
1848
|
});
|
|
1823
1849
|
|
|
1824
|
-
return function update_integration_hub(
|
|
1825
|
-
return
|
|
1850
|
+
return function update_integration_hub(_x561, _x562, _x563, _x564, _x565) {
|
|
1851
|
+
return _ref168.apply(this, arguments);
|
|
1826
1852
|
};
|
|
1827
1853
|
}();
|
|
1828
1854
|
export var delete_integration_hub = function () {
|
|
1829
|
-
var
|
|
1855
|
+
var _ref169 = _asyncToGenerator(function* (sdk, integration_hub_id, options) {
|
|
1830
1856
|
return sdk.delete("/integration_hubs/".concat(integration_hub_id), null, null, options);
|
|
1831
1857
|
});
|
|
1832
1858
|
|
|
1833
|
-
return function delete_integration_hub(
|
|
1834
|
-
return
|
|
1859
|
+
return function delete_integration_hub(_x566, _x567, _x568) {
|
|
1860
|
+
return _ref169.apply(this, arguments);
|
|
1835
1861
|
};
|
|
1836
1862
|
}();
|
|
1837
1863
|
export var accept_integration_hub_legal_agreement = function () {
|
|
1838
|
-
var
|
|
1864
|
+
var _ref170 = _asyncToGenerator(function* (sdk, integration_hub_id, options) {
|
|
1839
1865
|
return sdk.post("/integration_hubs/".concat(integration_hub_id, "/accept_legal_agreement"), null, null, options);
|
|
1840
1866
|
});
|
|
1841
1867
|
|
|
1842
|
-
return function accept_integration_hub_legal_agreement(
|
|
1843
|
-
return
|
|
1868
|
+
return function accept_integration_hub_legal_agreement(_x569, _x570, _x571) {
|
|
1869
|
+
return _ref170.apply(this, arguments);
|
|
1844
1870
|
};
|
|
1845
1871
|
}();
|
|
1846
1872
|
export var all_integrations = function () {
|
|
1847
|
-
var
|
|
1873
|
+
var _ref171 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1848
1874
|
return sdk.get('/integrations', {
|
|
1849
1875
|
fields: request.fields,
|
|
1850
1876
|
integration_hub_id: request.integration_hub_id
|
|
1851
1877
|
}, null, options);
|
|
1852
1878
|
});
|
|
1853
1879
|
|
|
1854
|
-
return function all_integrations(
|
|
1855
|
-
return
|
|
1880
|
+
return function all_integrations(_x572, _x573, _x574) {
|
|
1881
|
+
return _ref171.apply(this, arguments);
|
|
1856
1882
|
};
|
|
1857
1883
|
}();
|
|
1858
1884
|
export var integration = function () {
|
|
1859
|
-
var
|
|
1885
|
+
var _ref172 = _asyncToGenerator(function* (sdk, integration_id, fields, options) {
|
|
1860
1886
|
integration_id = encodeParam(integration_id);
|
|
1861
1887
|
return sdk.get("/integrations/".concat(integration_id), {
|
|
1862
1888
|
fields
|
|
1863
1889
|
}, null, options);
|
|
1864
1890
|
});
|
|
1865
1891
|
|
|
1866
|
-
return function integration(
|
|
1867
|
-
return
|
|
1892
|
+
return function integration(_x575, _x576, _x577, _x578) {
|
|
1893
|
+
return _ref172.apply(this, arguments);
|
|
1868
1894
|
};
|
|
1869
1895
|
}();
|
|
1870
1896
|
export var update_integration = function () {
|
|
1871
|
-
var
|
|
1897
|
+
var _ref173 = _asyncToGenerator(function* (sdk, integration_id, body, fields, options) {
|
|
1872
1898
|
integration_id = encodeParam(integration_id);
|
|
1873
1899
|
return sdk.patch("/integrations/".concat(integration_id), {
|
|
1874
1900
|
fields
|
|
1875
1901
|
}, body, options);
|
|
1876
1902
|
});
|
|
1877
1903
|
|
|
1878
|
-
return function update_integration(
|
|
1879
|
-
return
|
|
1904
|
+
return function update_integration(_x579, _x580, _x581, _x582, _x583) {
|
|
1905
|
+
return _ref173.apply(this, arguments);
|
|
1880
1906
|
};
|
|
1881
1907
|
}();
|
|
1882
1908
|
export var fetch_integration_form = function () {
|
|
1883
|
-
var
|
|
1909
|
+
var _ref174 = _asyncToGenerator(function* (sdk, integration_id, body, options) {
|
|
1884
1910
|
integration_id = encodeParam(integration_id);
|
|
1885
1911
|
return sdk.post("/integrations/".concat(integration_id, "/form"), null, body, options);
|
|
1886
1912
|
});
|
|
1887
1913
|
|
|
1888
|
-
return function fetch_integration_form(
|
|
1889
|
-
return
|
|
1914
|
+
return function fetch_integration_form(_x584, _x585, _x586, _x587) {
|
|
1915
|
+
return _ref174.apply(this, arguments);
|
|
1890
1916
|
};
|
|
1891
1917
|
}();
|
|
1892
1918
|
export var test_integration = function () {
|
|
1893
|
-
var
|
|
1919
|
+
var _ref175 = _asyncToGenerator(function* (sdk, integration_id, options) {
|
|
1894
1920
|
integration_id = encodeParam(integration_id);
|
|
1895
1921
|
return sdk.post("/integrations/".concat(integration_id, "/test"), null, null, options);
|
|
1896
1922
|
});
|
|
1897
1923
|
|
|
1898
|
-
return function test_integration(
|
|
1899
|
-
return
|
|
1924
|
+
return function test_integration(_x588, _x589, _x590) {
|
|
1925
|
+
return _ref175.apply(this, arguments);
|
|
1900
1926
|
};
|
|
1901
1927
|
}();
|
|
1902
1928
|
export var all_looks = function () {
|
|
1903
|
-
var
|
|
1929
|
+
var _ref176 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
1904
1930
|
return sdk.get('/looks', {
|
|
1905
1931
|
fields
|
|
1906
1932
|
}, null, options);
|
|
1907
1933
|
});
|
|
1908
1934
|
|
|
1909
|
-
return function all_looks(
|
|
1910
|
-
return
|
|
1935
|
+
return function all_looks(_x591, _x592, _x593) {
|
|
1936
|
+
return _ref176.apply(this, arguments);
|
|
1911
1937
|
};
|
|
1912
1938
|
}();
|
|
1913
1939
|
export var create_look = function () {
|
|
1914
|
-
var
|
|
1940
|
+
var _ref177 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
1915
1941
|
return sdk.post('/looks', {
|
|
1916
1942
|
fields
|
|
1917
1943
|
}, body, options);
|
|
1918
1944
|
});
|
|
1919
1945
|
|
|
1920
|
-
return function create_look(
|
|
1921
|
-
return
|
|
1946
|
+
return function create_look(_x594, _x595, _x596, _x597) {
|
|
1947
|
+
return _ref177.apply(this, arguments);
|
|
1922
1948
|
};
|
|
1923
1949
|
}();
|
|
1924
1950
|
export var search_looks = function () {
|
|
1925
|
-
var
|
|
1951
|
+
var _ref178 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1926
1952
|
return sdk.get('/looks/search', {
|
|
1927
1953
|
id: request.id,
|
|
1928
1954
|
title: request.title,
|
|
@@ -1944,43 +1970,43 @@ export var search_looks = function () {
|
|
|
1944
1970
|
}, null, options);
|
|
1945
1971
|
});
|
|
1946
1972
|
|
|
1947
|
-
return function search_looks(
|
|
1948
|
-
return
|
|
1973
|
+
return function search_looks(_x598, _x599, _x600) {
|
|
1974
|
+
return _ref178.apply(this, arguments);
|
|
1949
1975
|
};
|
|
1950
1976
|
}();
|
|
1951
1977
|
export var look = function () {
|
|
1952
|
-
var
|
|
1978
|
+
var _ref179 = _asyncToGenerator(function* (sdk, look_id, fields, options) {
|
|
1953
1979
|
return sdk.get("/looks/".concat(look_id), {
|
|
1954
1980
|
fields
|
|
1955
1981
|
}, null, options);
|
|
1956
1982
|
});
|
|
1957
1983
|
|
|
1958
|
-
return function look(
|
|
1959
|
-
return
|
|
1984
|
+
return function look(_x601, _x602, _x603, _x604) {
|
|
1985
|
+
return _ref179.apply(this, arguments);
|
|
1960
1986
|
};
|
|
1961
1987
|
}();
|
|
1962
1988
|
export var update_look = function () {
|
|
1963
|
-
var
|
|
1989
|
+
var _ref180 = _asyncToGenerator(function* (sdk, look_id, body, fields, options) {
|
|
1964
1990
|
return sdk.patch("/looks/".concat(look_id), {
|
|
1965
1991
|
fields
|
|
1966
1992
|
}, body, options);
|
|
1967
1993
|
});
|
|
1968
1994
|
|
|
1969
|
-
return function update_look(
|
|
1970
|
-
return
|
|
1995
|
+
return function update_look(_x605, _x606, _x607, _x608, _x609) {
|
|
1996
|
+
return _ref180.apply(this, arguments);
|
|
1971
1997
|
};
|
|
1972
1998
|
}();
|
|
1973
1999
|
export var delete_look = function () {
|
|
1974
|
-
var
|
|
2000
|
+
var _ref181 = _asyncToGenerator(function* (sdk, look_id, options) {
|
|
1975
2001
|
return sdk.delete("/looks/".concat(look_id), null, null, options);
|
|
1976
2002
|
});
|
|
1977
2003
|
|
|
1978
|
-
return function delete_look(
|
|
1979
|
-
return
|
|
2004
|
+
return function delete_look(_x610, _x611, _x612) {
|
|
2005
|
+
return _ref181.apply(this, arguments);
|
|
1980
2006
|
};
|
|
1981
2007
|
}();
|
|
1982
2008
|
export var run_look = function () {
|
|
1983
|
-
var
|
|
2009
|
+
var _ref182 = _asyncToGenerator(function* (sdk, request, options) {
|
|
1984
2010
|
request.result_format = encodeParam(request.result_format);
|
|
1985
2011
|
return sdk.get("/looks/".concat(request.look_id, "/run/").concat(request.result_format), {
|
|
1986
2012
|
limit: request.limit,
|
|
@@ -1998,77 +2024,64 @@ export var run_look = function () {
|
|
|
1998
2024
|
}, null, options);
|
|
1999
2025
|
});
|
|
2000
2026
|
|
|
2001
|
-
return function run_look(
|
|
2002
|
-
return
|
|
2003
|
-
};
|
|
2004
|
-
}();
|
|
2005
|
-
export var graph_derived_tables_for_model = function () {
|
|
2006
|
-
var _ref181 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2007
|
-
request.model = encodeParam(request.model);
|
|
2008
|
-
return sdk.get("/derived_table/graph/model/".concat(request.model), {
|
|
2009
|
-
format: request.format,
|
|
2010
|
-
color: request.color
|
|
2011
|
-
}, null, options);
|
|
2012
|
-
});
|
|
2013
|
-
|
|
2014
|
-
return function graph_derived_tables_for_model(_x610, _x611, _x612) {
|
|
2015
|
-
return _ref181.apply(this, arguments);
|
|
2027
|
+
return function run_look(_x613, _x614, _x615) {
|
|
2028
|
+
return _ref182.apply(this, arguments);
|
|
2016
2029
|
};
|
|
2017
2030
|
}();
|
|
2018
2031
|
export var all_lookml_models = function () {
|
|
2019
|
-
var
|
|
2032
|
+
var _ref183 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
2020
2033
|
return sdk.get('/lookml_models', {
|
|
2021
2034
|
fields
|
|
2022
2035
|
}, null, options);
|
|
2023
2036
|
});
|
|
2024
2037
|
|
|
2025
|
-
return function all_lookml_models(
|
|
2026
|
-
return
|
|
2038
|
+
return function all_lookml_models(_x616, _x617, _x618) {
|
|
2039
|
+
return _ref183.apply(this, arguments);
|
|
2027
2040
|
};
|
|
2028
2041
|
}();
|
|
2029
2042
|
export var create_lookml_model = function () {
|
|
2030
|
-
var
|
|
2043
|
+
var _ref184 = _asyncToGenerator(function* (sdk, body, options) {
|
|
2031
2044
|
return sdk.post('/lookml_models', null, body, options);
|
|
2032
2045
|
});
|
|
2033
2046
|
|
|
2034
|
-
return function create_lookml_model(
|
|
2035
|
-
return
|
|
2047
|
+
return function create_lookml_model(_x619, _x620, _x621) {
|
|
2048
|
+
return _ref184.apply(this, arguments);
|
|
2036
2049
|
};
|
|
2037
2050
|
}();
|
|
2038
2051
|
export var lookml_model = function () {
|
|
2039
|
-
var
|
|
2052
|
+
var _ref185 = _asyncToGenerator(function* (sdk, lookml_model_name, fields, options) {
|
|
2040
2053
|
lookml_model_name = encodeParam(lookml_model_name);
|
|
2041
2054
|
return sdk.get("/lookml_models/".concat(lookml_model_name), {
|
|
2042
2055
|
fields
|
|
2043
2056
|
}, null, options);
|
|
2044
2057
|
});
|
|
2045
2058
|
|
|
2046
|
-
return function lookml_model(
|
|
2047
|
-
return
|
|
2059
|
+
return function lookml_model(_x622, _x623, _x624, _x625) {
|
|
2060
|
+
return _ref185.apply(this, arguments);
|
|
2048
2061
|
};
|
|
2049
2062
|
}();
|
|
2050
2063
|
export var update_lookml_model = function () {
|
|
2051
|
-
var
|
|
2064
|
+
var _ref186 = _asyncToGenerator(function* (sdk, lookml_model_name, body, options) {
|
|
2052
2065
|
lookml_model_name = encodeParam(lookml_model_name);
|
|
2053
2066
|
return sdk.patch("/lookml_models/".concat(lookml_model_name), null, body, options);
|
|
2054
2067
|
});
|
|
2055
2068
|
|
|
2056
|
-
return function update_lookml_model(
|
|
2057
|
-
return
|
|
2069
|
+
return function update_lookml_model(_x626, _x627, _x628, _x629) {
|
|
2070
|
+
return _ref186.apply(this, arguments);
|
|
2058
2071
|
};
|
|
2059
2072
|
}();
|
|
2060
2073
|
export var delete_lookml_model = function () {
|
|
2061
|
-
var
|
|
2074
|
+
var _ref187 = _asyncToGenerator(function* (sdk, lookml_model_name, options) {
|
|
2062
2075
|
lookml_model_name = encodeParam(lookml_model_name);
|
|
2063
2076
|
return sdk.delete("/lookml_models/".concat(lookml_model_name), null, null, options);
|
|
2064
2077
|
});
|
|
2065
2078
|
|
|
2066
|
-
return function delete_lookml_model(
|
|
2067
|
-
return
|
|
2079
|
+
return function delete_lookml_model(_x630, _x631, _x632) {
|
|
2080
|
+
return _ref187.apply(this, arguments);
|
|
2068
2081
|
};
|
|
2069
2082
|
}();
|
|
2070
2083
|
export var lookml_model_explore = function () {
|
|
2071
|
-
var
|
|
2084
|
+
var _ref188 = _asyncToGenerator(function* (sdk, lookml_model_name, explore_name, fields, options) {
|
|
2072
2085
|
lookml_model_name = encodeParam(lookml_model_name);
|
|
2073
2086
|
explore_name = encodeParam(explore_name);
|
|
2074
2087
|
return sdk.get("/lookml_models/".concat(lookml_model_name, "/explores/").concat(explore_name), {
|
|
@@ -2076,74 +2089,74 @@ export var lookml_model_explore = function () {
|
|
|
2076
2089
|
}, null, options);
|
|
2077
2090
|
});
|
|
2078
2091
|
|
|
2079
|
-
return function lookml_model_explore(
|
|
2080
|
-
return
|
|
2092
|
+
return function lookml_model_explore(_x633, _x634, _x635, _x636, _x637) {
|
|
2093
|
+
return _ref188.apply(this, arguments);
|
|
2081
2094
|
};
|
|
2082
2095
|
}();
|
|
2083
2096
|
export var all_git_branches = function () {
|
|
2084
|
-
var
|
|
2097
|
+
var _ref189 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2085
2098
|
project_id = encodeParam(project_id);
|
|
2086
2099
|
return sdk.get("/projects/".concat(project_id, "/git_branches"), null, null, options);
|
|
2087
2100
|
});
|
|
2088
2101
|
|
|
2089
|
-
return function all_git_branches(
|
|
2090
|
-
return
|
|
2102
|
+
return function all_git_branches(_x638, _x639, _x640) {
|
|
2103
|
+
return _ref189.apply(this, arguments);
|
|
2091
2104
|
};
|
|
2092
2105
|
}();
|
|
2093
2106
|
export var git_branch = function () {
|
|
2094
|
-
var
|
|
2107
|
+
var _ref190 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2095
2108
|
project_id = encodeParam(project_id);
|
|
2096
2109
|
return sdk.get("/projects/".concat(project_id, "/git_branch"), null, null, options);
|
|
2097
2110
|
});
|
|
2098
2111
|
|
|
2099
|
-
return function git_branch(
|
|
2100
|
-
return
|
|
2112
|
+
return function git_branch(_x641, _x642, _x643) {
|
|
2113
|
+
return _ref190.apply(this, arguments);
|
|
2101
2114
|
};
|
|
2102
2115
|
}();
|
|
2103
2116
|
export var update_git_branch = function () {
|
|
2104
|
-
var
|
|
2117
|
+
var _ref191 = _asyncToGenerator(function* (sdk, project_id, body, options) {
|
|
2105
2118
|
project_id = encodeParam(project_id);
|
|
2106
2119
|
return sdk.put("/projects/".concat(project_id, "/git_branch"), null, body, options);
|
|
2107
2120
|
});
|
|
2108
2121
|
|
|
2109
|
-
return function update_git_branch(
|
|
2110
|
-
return
|
|
2122
|
+
return function update_git_branch(_x644, _x645, _x646, _x647) {
|
|
2123
|
+
return _ref191.apply(this, arguments);
|
|
2111
2124
|
};
|
|
2112
2125
|
}();
|
|
2113
2126
|
export var create_git_branch = function () {
|
|
2114
|
-
var
|
|
2127
|
+
var _ref192 = _asyncToGenerator(function* (sdk, project_id, body, options) {
|
|
2115
2128
|
project_id = encodeParam(project_id);
|
|
2116
2129
|
return sdk.post("/projects/".concat(project_id, "/git_branch"), null, body, options);
|
|
2117
2130
|
});
|
|
2118
2131
|
|
|
2119
|
-
return function create_git_branch(
|
|
2120
|
-
return
|
|
2132
|
+
return function create_git_branch(_x648, _x649, _x650, _x651) {
|
|
2133
|
+
return _ref192.apply(this, arguments);
|
|
2121
2134
|
};
|
|
2122
2135
|
}();
|
|
2123
2136
|
export var find_git_branch = function () {
|
|
2124
|
-
var
|
|
2137
|
+
var _ref193 = _asyncToGenerator(function* (sdk, project_id, branch_name, options) {
|
|
2125
2138
|
project_id = encodeParam(project_id);
|
|
2126
2139
|
branch_name = encodeParam(branch_name);
|
|
2127
2140
|
return sdk.get("/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
|
|
2128
2141
|
});
|
|
2129
2142
|
|
|
2130
|
-
return function find_git_branch(
|
|
2131
|
-
return
|
|
2143
|
+
return function find_git_branch(_x652, _x653, _x654, _x655) {
|
|
2144
|
+
return _ref193.apply(this, arguments);
|
|
2132
2145
|
};
|
|
2133
2146
|
}();
|
|
2134
2147
|
export var delete_git_branch = function () {
|
|
2135
|
-
var
|
|
2148
|
+
var _ref194 = _asyncToGenerator(function* (sdk, project_id, branch_name, options) {
|
|
2136
2149
|
project_id = encodeParam(project_id);
|
|
2137
2150
|
branch_name = encodeParam(branch_name);
|
|
2138
2151
|
return sdk.delete("/projects/".concat(project_id, "/git_branch/").concat(branch_name), null, null, options);
|
|
2139
2152
|
});
|
|
2140
2153
|
|
|
2141
|
-
return function delete_git_branch(
|
|
2142
|
-
return
|
|
2154
|
+
return function delete_git_branch(_x656, _x657, _x658, _x659) {
|
|
2155
|
+
return _ref194.apply(this, arguments);
|
|
2143
2156
|
};
|
|
2144
2157
|
}();
|
|
2145
2158
|
export var deploy_ref_to_production = function () {
|
|
2146
|
-
var
|
|
2159
|
+
var _ref195 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2147
2160
|
request.project_id = encodeParam(request.project_id);
|
|
2148
2161
|
return sdk.post("/projects/".concat(request.project_id, "/deploy_ref_to_production"), {
|
|
2149
2162
|
branch: request.branch,
|
|
@@ -2151,164 +2164,164 @@ export var deploy_ref_to_production = function () {
|
|
|
2151
2164
|
}, null, options);
|
|
2152
2165
|
});
|
|
2153
2166
|
|
|
2154
|
-
return function deploy_ref_to_production(
|
|
2155
|
-
return
|
|
2167
|
+
return function deploy_ref_to_production(_x660, _x661, _x662) {
|
|
2168
|
+
return _ref195.apply(this, arguments);
|
|
2156
2169
|
};
|
|
2157
2170
|
}();
|
|
2158
2171
|
export var deploy_to_production = function () {
|
|
2159
|
-
var
|
|
2172
|
+
var _ref196 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2160
2173
|
project_id = encodeParam(project_id);
|
|
2161
2174
|
return sdk.post("/projects/".concat(project_id, "/deploy_to_production"), null, null, options);
|
|
2162
2175
|
});
|
|
2163
2176
|
|
|
2164
|
-
return function deploy_to_production(
|
|
2165
|
-
return
|
|
2177
|
+
return function deploy_to_production(_x663, _x664, _x665) {
|
|
2178
|
+
return _ref196.apply(this, arguments);
|
|
2166
2179
|
};
|
|
2167
2180
|
}();
|
|
2168
2181
|
export var reset_project_to_production = function () {
|
|
2169
|
-
var
|
|
2182
|
+
var _ref197 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2170
2183
|
project_id = encodeParam(project_id);
|
|
2171
2184
|
return sdk.post("/projects/".concat(project_id, "/reset_to_production"), null, null, options);
|
|
2172
2185
|
});
|
|
2173
2186
|
|
|
2174
|
-
return function reset_project_to_production(
|
|
2175
|
-
return
|
|
2187
|
+
return function reset_project_to_production(_x666, _x667, _x668) {
|
|
2188
|
+
return _ref197.apply(this, arguments);
|
|
2176
2189
|
};
|
|
2177
2190
|
}();
|
|
2178
2191
|
export var reset_project_to_remote = function () {
|
|
2179
|
-
var
|
|
2192
|
+
var _ref198 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2180
2193
|
project_id = encodeParam(project_id);
|
|
2181
2194
|
return sdk.post("/projects/".concat(project_id, "/reset_to_remote"), null, null, options);
|
|
2182
2195
|
});
|
|
2183
2196
|
|
|
2184
|
-
return function reset_project_to_remote(
|
|
2185
|
-
return
|
|
2197
|
+
return function reset_project_to_remote(_x669, _x670, _x671) {
|
|
2198
|
+
return _ref198.apply(this, arguments);
|
|
2186
2199
|
};
|
|
2187
2200
|
}();
|
|
2188
2201
|
export var all_projects = function () {
|
|
2189
|
-
var
|
|
2202
|
+
var _ref199 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
2190
2203
|
return sdk.get('/projects', {
|
|
2191
2204
|
fields
|
|
2192
2205
|
}, null, options);
|
|
2193
2206
|
});
|
|
2194
2207
|
|
|
2195
|
-
return function all_projects(
|
|
2196
|
-
return
|
|
2208
|
+
return function all_projects(_x672, _x673, _x674) {
|
|
2209
|
+
return _ref199.apply(this, arguments);
|
|
2197
2210
|
};
|
|
2198
2211
|
}();
|
|
2199
2212
|
export var create_project = function () {
|
|
2200
|
-
var
|
|
2213
|
+
var _ref200 = _asyncToGenerator(function* (sdk, body, options) {
|
|
2201
2214
|
return sdk.post('/projects', null, body, options);
|
|
2202
2215
|
});
|
|
2203
2216
|
|
|
2204
|
-
return function create_project(
|
|
2205
|
-
return
|
|
2217
|
+
return function create_project(_x675, _x676, _x677) {
|
|
2218
|
+
return _ref200.apply(this, arguments);
|
|
2206
2219
|
};
|
|
2207
2220
|
}();
|
|
2208
2221
|
export var project = function () {
|
|
2209
|
-
var
|
|
2222
|
+
var _ref201 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
2210
2223
|
project_id = encodeParam(project_id);
|
|
2211
2224
|
return sdk.get("/projects/".concat(project_id), {
|
|
2212
2225
|
fields
|
|
2213
2226
|
}, null, options);
|
|
2214
2227
|
});
|
|
2215
2228
|
|
|
2216
|
-
return function project(
|
|
2217
|
-
return
|
|
2229
|
+
return function project(_x678, _x679, _x680, _x681) {
|
|
2230
|
+
return _ref201.apply(this, arguments);
|
|
2218
2231
|
};
|
|
2219
2232
|
}();
|
|
2220
2233
|
export var update_project = function () {
|
|
2221
|
-
var
|
|
2234
|
+
var _ref202 = _asyncToGenerator(function* (sdk, project_id, body, fields, options) {
|
|
2222
2235
|
project_id = encodeParam(project_id);
|
|
2223
2236
|
return sdk.patch("/projects/".concat(project_id), {
|
|
2224
2237
|
fields
|
|
2225
2238
|
}, body, options);
|
|
2226
2239
|
});
|
|
2227
2240
|
|
|
2228
|
-
return function update_project(
|
|
2229
|
-
return
|
|
2241
|
+
return function update_project(_x682, _x683, _x684, _x685, _x686) {
|
|
2242
|
+
return _ref202.apply(this, arguments);
|
|
2230
2243
|
};
|
|
2231
2244
|
}();
|
|
2232
2245
|
export var manifest = function () {
|
|
2233
|
-
var
|
|
2246
|
+
var _ref203 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2234
2247
|
project_id = encodeParam(project_id);
|
|
2235
2248
|
return sdk.get("/projects/".concat(project_id, "/manifest"), null, null, options);
|
|
2236
2249
|
});
|
|
2237
2250
|
|
|
2238
|
-
return function manifest(
|
|
2239
|
-
return
|
|
2251
|
+
return function manifest(_x687, _x688, _x689) {
|
|
2252
|
+
return _ref203.apply(this, arguments);
|
|
2240
2253
|
};
|
|
2241
2254
|
}();
|
|
2242
2255
|
export var git_deploy_key = function () {
|
|
2243
|
-
var
|
|
2256
|
+
var _ref204 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2244
2257
|
project_id = encodeParam(project_id);
|
|
2245
2258
|
return sdk.get("/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
|
|
2246
2259
|
});
|
|
2247
2260
|
|
|
2248
|
-
return function git_deploy_key(
|
|
2249
|
-
return
|
|
2261
|
+
return function git_deploy_key(_x690, _x691, _x692) {
|
|
2262
|
+
return _ref204.apply(this, arguments);
|
|
2250
2263
|
};
|
|
2251
2264
|
}();
|
|
2252
2265
|
export var create_git_deploy_key = function () {
|
|
2253
|
-
var
|
|
2266
|
+
var _ref205 = _asyncToGenerator(function* (sdk, project_id, options) {
|
|
2254
2267
|
project_id = encodeParam(project_id);
|
|
2255
2268
|
return sdk.post("/projects/".concat(project_id, "/git/deploy_key"), null, null, options);
|
|
2256
2269
|
});
|
|
2257
2270
|
|
|
2258
|
-
return function create_git_deploy_key(
|
|
2259
|
-
return
|
|
2271
|
+
return function create_git_deploy_key(_x693, _x694, _x695) {
|
|
2272
|
+
return _ref205.apply(this, arguments);
|
|
2260
2273
|
};
|
|
2261
2274
|
}();
|
|
2262
2275
|
export var project_validation_results = function () {
|
|
2263
|
-
var
|
|
2276
|
+
var _ref206 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
2264
2277
|
project_id = encodeParam(project_id);
|
|
2265
2278
|
return sdk.get("/projects/".concat(project_id, "/validate"), {
|
|
2266
2279
|
fields
|
|
2267
2280
|
}, null, options);
|
|
2268
2281
|
});
|
|
2269
2282
|
|
|
2270
|
-
return function project_validation_results(
|
|
2271
|
-
return
|
|
2283
|
+
return function project_validation_results(_x696, _x697, _x698, _x699) {
|
|
2284
|
+
return _ref206.apply(this, arguments);
|
|
2272
2285
|
};
|
|
2273
2286
|
}();
|
|
2274
2287
|
export var validate_project = function () {
|
|
2275
|
-
var
|
|
2288
|
+
var _ref207 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
2276
2289
|
project_id = encodeParam(project_id);
|
|
2277
2290
|
return sdk.post("/projects/".concat(project_id, "/validate"), {
|
|
2278
2291
|
fields
|
|
2279
2292
|
}, null, options);
|
|
2280
2293
|
});
|
|
2281
2294
|
|
|
2282
|
-
return function validate_project(
|
|
2283
|
-
return
|
|
2295
|
+
return function validate_project(_x700, _x701, _x702, _x703) {
|
|
2296
|
+
return _ref207.apply(this, arguments);
|
|
2284
2297
|
};
|
|
2285
2298
|
}();
|
|
2286
2299
|
export var project_workspace = function () {
|
|
2287
|
-
var
|
|
2300
|
+
var _ref208 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
2288
2301
|
project_id = encodeParam(project_id);
|
|
2289
2302
|
return sdk.get("/projects/".concat(project_id, "/current_workspace"), {
|
|
2290
2303
|
fields
|
|
2291
2304
|
}, null, options);
|
|
2292
2305
|
});
|
|
2293
2306
|
|
|
2294
|
-
return function project_workspace(
|
|
2295
|
-
return
|
|
2307
|
+
return function project_workspace(_x704, _x705, _x706, _x707) {
|
|
2308
|
+
return _ref208.apply(this, arguments);
|
|
2296
2309
|
};
|
|
2297
2310
|
}();
|
|
2298
2311
|
export var all_project_files = function () {
|
|
2299
|
-
var
|
|
2312
|
+
var _ref209 = _asyncToGenerator(function* (sdk, project_id, fields, options) {
|
|
2300
2313
|
project_id = encodeParam(project_id);
|
|
2301
2314
|
return sdk.get("/projects/".concat(project_id, "/files"), {
|
|
2302
2315
|
fields
|
|
2303
2316
|
}, null, options);
|
|
2304
2317
|
});
|
|
2305
2318
|
|
|
2306
|
-
return function all_project_files(
|
|
2307
|
-
return
|
|
2319
|
+
return function all_project_files(_x708, _x709, _x710, _x711) {
|
|
2320
|
+
return _ref209.apply(this, arguments);
|
|
2308
2321
|
};
|
|
2309
2322
|
}();
|
|
2310
2323
|
export var project_file = function () {
|
|
2311
|
-
var
|
|
2324
|
+
var _ref210 = _asyncToGenerator(function* (sdk, project_id, file_id, fields, options) {
|
|
2312
2325
|
project_id = encodeParam(project_id);
|
|
2313
2326
|
return sdk.get("/projects/".concat(project_id, "/files/file"), {
|
|
2314
2327
|
file_id,
|
|
@@ -2316,24 +2329,24 @@ export var project_file = function () {
|
|
|
2316
2329
|
}, null, options);
|
|
2317
2330
|
});
|
|
2318
2331
|
|
|
2319
|
-
return function project_file(
|
|
2320
|
-
return
|
|
2332
|
+
return function project_file(_x712, _x713, _x714, _x715, _x716) {
|
|
2333
|
+
return _ref210.apply(this, arguments);
|
|
2321
2334
|
};
|
|
2322
2335
|
}();
|
|
2323
2336
|
export var all_git_connection_tests = function () {
|
|
2324
|
-
var
|
|
2337
|
+
var _ref211 = _asyncToGenerator(function* (sdk, project_id, remote_url, options) {
|
|
2325
2338
|
project_id = encodeParam(project_id);
|
|
2326
2339
|
return sdk.get("/projects/".concat(project_id, "/git_connection_tests"), {
|
|
2327
2340
|
remote_url
|
|
2328
2341
|
}, null, options);
|
|
2329
2342
|
});
|
|
2330
2343
|
|
|
2331
|
-
return function all_git_connection_tests(
|
|
2332
|
-
return
|
|
2344
|
+
return function all_git_connection_tests(_x717, _x718, _x719, _x720) {
|
|
2345
|
+
return _ref211.apply(this, arguments);
|
|
2333
2346
|
};
|
|
2334
2347
|
}();
|
|
2335
2348
|
export var run_git_connection_test = function () {
|
|
2336
|
-
var
|
|
2349
|
+
var _ref212 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2337
2350
|
request.project_id = encodeParam(request.project_id);
|
|
2338
2351
|
request.test_id = encodeParam(request.test_id);
|
|
2339
2352
|
return sdk.get("/projects/".concat(request.project_id, "/git_connection_tests/").concat(request.test_id), {
|
|
@@ -2342,24 +2355,24 @@ export var run_git_connection_test = function () {
|
|
|
2342
2355
|
}, null, options);
|
|
2343
2356
|
});
|
|
2344
2357
|
|
|
2345
|
-
return function run_git_connection_test(
|
|
2346
|
-
return
|
|
2358
|
+
return function run_git_connection_test(_x721, _x722, _x723) {
|
|
2359
|
+
return _ref212.apply(this, arguments);
|
|
2347
2360
|
};
|
|
2348
2361
|
}();
|
|
2349
2362
|
export var all_lookml_tests = function () {
|
|
2350
|
-
var
|
|
2363
|
+
var _ref213 = _asyncToGenerator(function* (sdk, project_id, file_id, options) {
|
|
2351
2364
|
project_id = encodeParam(project_id);
|
|
2352
2365
|
return sdk.get("/projects/".concat(project_id, "/lookml_tests"), {
|
|
2353
2366
|
file_id
|
|
2354
2367
|
}, null, options);
|
|
2355
2368
|
});
|
|
2356
2369
|
|
|
2357
|
-
return function all_lookml_tests(
|
|
2358
|
-
return
|
|
2370
|
+
return function all_lookml_tests(_x724, _x725, _x726, _x727) {
|
|
2371
|
+
return _ref213.apply(this, arguments);
|
|
2359
2372
|
};
|
|
2360
2373
|
}();
|
|
2361
2374
|
export var run_lookml_test = function () {
|
|
2362
|
-
var
|
|
2375
|
+
var _ref214 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2363
2376
|
request.project_id = encodeParam(request.project_id);
|
|
2364
2377
|
return sdk.get("/projects/".concat(request.project_id, "/lookml_tests/run"), {
|
|
2365
2378
|
file_id: request.file_id,
|
|
@@ -2368,12 +2381,12 @@ export var run_lookml_test = function () {
|
|
|
2368
2381
|
}, null, options);
|
|
2369
2382
|
});
|
|
2370
2383
|
|
|
2371
|
-
return function run_lookml_test(
|
|
2372
|
-
return
|
|
2384
|
+
return function run_lookml_test(_x728, _x729, _x730) {
|
|
2385
|
+
return _ref214.apply(this, arguments);
|
|
2373
2386
|
};
|
|
2374
2387
|
}();
|
|
2375
2388
|
export var tag_ref = function () {
|
|
2376
|
-
var
|
|
2389
|
+
var _ref215 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2377
2390
|
request.project_id = encodeParam(request.project_id);
|
|
2378
2391
|
return sdk.post("/projects/".concat(request.project_id, "/tag"), {
|
|
2379
2392
|
commit_sha: request.commit_sha,
|
|
@@ -2382,44 +2395,44 @@ export var tag_ref = function () {
|
|
|
2382
2395
|
}, request.body, options);
|
|
2383
2396
|
});
|
|
2384
2397
|
|
|
2385
|
-
return function tag_ref(
|
|
2386
|
-
return
|
|
2398
|
+
return function tag_ref(_x731, _x732, _x733) {
|
|
2399
|
+
return _ref215.apply(this, arguments);
|
|
2387
2400
|
};
|
|
2388
2401
|
}();
|
|
2389
2402
|
export var update_repository_credential = function () {
|
|
2390
|
-
var
|
|
2403
|
+
var _ref216 = _asyncToGenerator(function* (sdk, root_project_id, credential_id, body, options) {
|
|
2391
2404
|
root_project_id = encodeParam(root_project_id);
|
|
2392
2405
|
credential_id = encodeParam(credential_id);
|
|
2393
2406
|
return sdk.put("/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, body, options);
|
|
2394
2407
|
});
|
|
2395
2408
|
|
|
2396
|
-
return function update_repository_credential(
|
|
2397
|
-
return
|
|
2409
|
+
return function update_repository_credential(_x734, _x735, _x736, _x737, _x738) {
|
|
2410
|
+
return _ref216.apply(this, arguments);
|
|
2398
2411
|
};
|
|
2399
2412
|
}();
|
|
2400
2413
|
export var delete_repository_credential = function () {
|
|
2401
|
-
var
|
|
2414
|
+
var _ref217 = _asyncToGenerator(function* (sdk, root_project_id, credential_id, options) {
|
|
2402
2415
|
root_project_id = encodeParam(root_project_id);
|
|
2403
2416
|
credential_id = encodeParam(credential_id);
|
|
2404
2417
|
return sdk.delete("/projects/".concat(root_project_id, "/credential/").concat(credential_id), null, null, options);
|
|
2405
2418
|
});
|
|
2406
2419
|
|
|
2407
|
-
return function delete_repository_credential(
|
|
2408
|
-
return
|
|
2420
|
+
return function delete_repository_credential(_x739, _x740, _x741, _x742) {
|
|
2421
|
+
return _ref217.apply(this, arguments);
|
|
2409
2422
|
};
|
|
2410
2423
|
}();
|
|
2411
2424
|
export var get_all_repository_credentials = function () {
|
|
2412
|
-
var
|
|
2425
|
+
var _ref218 = _asyncToGenerator(function* (sdk, root_project_id, options) {
|
|
2413
2426
|
root_project_id = encodeParam(root_project_id);
|
|
2414
2427
|
return sdk.get("/projects/".concat(root_project_id, "/credentials"), null, null, options);
|
|
2415
2428
|
});
|
|
2416
2429
|
|
|
2417
|
-
return function get_all_repository_credentials(
|
|
2418
|
-
return
|
|
2430
|
+
return function get_all_repository_credentials(_x743, _x744, _x745) {
|
|
2431
|
+
return _ref218.apply(this, arguments);
|
|
2419
2432
|
};
|
|
2420
2433
|
}();
|
|
2421
2434
|
export var create_query_task = function () {
|
|
2422
|
-
var
|
|
2435
|
+
var _ref219 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2423
2436
|
return sdk.post('/query_tasks', {
|
|
2424
2437
|
limit: request.limit,
|
|
2425
2438
|
apply_formatting: request.apply_formatting,
|
|
@@ -2437,79 +2450,79 @@ export var create_query_task = function () {
|
|
|
2437
2450
|
}, request.body, options);
|
|
2438
2451
|
});
|
|
2439
2452
|
|
|
2440
|
-
return function create_query_task(
|
|
2441
|
-
return
|
|
2453
|
+
return function create_query_task(_x746, _x747, _x748) {
|
|
2454
|
+
return _ref219.apply(this, arguments);
|
|
2442
2455
|
};
|
|
2443
2456
|
}();
|
|
2444
2457
|
export var query_task_multi_results = function () {
|
|
2445
|
-
var
|
|
2458
|
+
var _ref220 = _asyncToGenerator(function* (sdk, query_task_ids, options) {
|
|
2446
2459
|
return sdk.get('/query_tasks/multi_results', {
|
|
2447
2460
|
query_task_ids
|
|
2448
2461
|
}, null, options);
|
|
2449
2462
|
});
|
|
2450
2463
|
|
|
2451
|
-
return function query_task_multi_results(
|
|
2452
|
-
return
|
|
2464
|
+
return function query_task_multi_results(_x749, _x750, _x751) {
|
|
2465
|
+
return _ref220.apply(this, arguments);
|
|
2453
2466
|
};
|
|
2454
2467
|
}();
|
|
2455
2468
|
export var query_task = function () {
|
|
2456
|
-
var
|
|
2469
|
+
var _ref221 = _asyncToGenerator(function* (sdk, query_task_id, fields, options) {
|
|
2457
2470
|
query_task_id = encodeParam(query_task_id);
|
|
2458
2471
|
return sdk.get("/query_tasks/".concat(query_task_id), {
|
|
2459
2472
|
fields
|
|
2460
2473
|
}, null, options);
|
|
2461
2474
|
});
|
|
2462
2475
|
|
|
2463
|
-
return function query_task(
|
|
2464
|
-
return
|
|
2476
|
+
return function query_task(_x752, _x753, _x754, _x755) {
|
|
2477
|
+
return _ref221.apply(this, arguments);
|
|
2465
2478
|
};
|
|
2466
2479
|
}();
|
|
2467
2480
|
export var query_task_results = function () {
|
|
2468
|
-
var
|
|
2481
|
+
var _ref222 = _asyncToGenerator(function* (sdk, query_task_id, options) {
|
|
2469
2482
|
query_task_id = encodeParam(query_task_id);
|
|
2470
2483
|
return sdk.get("/query_tasks/".concat(query_task_id, "/results"), null, null, options);
|
|
2471
2484
|
});
|
|
2472
2485
|
|
|
2473
|
-
return function query_task_results(
|
|
2474
|
-
return
|
|
2486
|
+
return function query_task_results(_x756, _x757, _x758) {
|
|
2487
|
+
return _ref222.apply(this, arguments);
|
|
2475
2488
|
};
|
|
2476
2489
|
}();
|
|
2477
2490
|
export var query = function () {
|
|
2478
|
-
var
|
|
2491
|
+
var _ref223 = _asyncToGenerator(function* (sdk, query_id, fields, options) {
|
|
2479
2492
|
return sdk.get("/queries/".concat(query_id), {
|
|
2480
2493
|
fields
|
|
2481
2494
|
}, null, options);
|
|
2482
2495
|
});
|
|
2483
2496
|
|
|
2484
|
-
return function query(
|
|
2485
|
-
return
|
|
2497
|
+
return function query(_x759, _x760, _x761, _x762) {
|
|
2498
|
+
return _ref223.apply(this, arguments);
|
|
2486
2499
|
};
|
|
2487
2500
|
}();
|
|
2488
2501
|
export var query_for_slug = function () {
|
|
2489
|
-
var
|
|
2502
|
+
var _ref224 = _asyncToGenerator(function* (sdk, slug, fields, options) {
|
|
2490
2503
|
slug = encodeParam(slug);
|
|
2491
2504
|
return sdk.get("/queries/slug/".concat(slug), {
|
|
2492
2505
|
fields
|
|
2493
2506
|
}, null, options);
|
|
2494
2507
|
});
|
|
2495
2508
|
|
|
2496
|
-
return function query_for_slug(
|
|
2497
|
-
return
|
|
2509
|
+
return function query_for_slug(_x763, _x764, _x765, _x766) {
|
|
2510
|
+
return _ref224.apply(this, arguments);
|
|
2498
2511
|
};
|
|
2499
2512
|
}();
|
|
2500
2513
|
export var create_query = function () {
|
|
2501
|
-
var
|
|
2514
|
+
var _ref225 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
2502
2515
|
return sdk.post('/queries', {
|
|
2503
2516
|
fields
|
|
2504
2517
|
}, body, options);
|
|
2505
2518
|
});
|
|
2506
2519
|
|
|
2507
|
-
return function create_query(
|
|
2508
|
-
return
|
|
2520
|
+
return function create_query(_x767, _x768, _x769, _x770) {
|
|
2521
|
+
return _ref225.apply(this, arguments);
|
|
2509
2522
|
};
|
|
2510
2523
|
}();
|
|
2511
2524
|
export var run_query = function () {
|
|
2512
|
-
var
|
|
2525
|
+
var _ref226 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2513
2526
|
request.result_format = encodeParam(request.result_format);
|
|
2514
2527
|
return sdk.get("/queries/".concat(request.query_id, "/run/").concat(request.result_format), {
|
|
2515
2528
|
limit: request.limit,
|
|
@@ -2527,12 +2540,12 @@ export var run_query = function () {
|
|
|
2527
2540
|
}, null, options);
|
|
2528
2541
|
});
|
|
2529
2542
|
|
|
2530
|
-
return function run_query(
|
|
2531
|
-
return
|
|
2543
|
+
return function run_query(_x771, _x772, _x773) {
|
|
2544
|
+
return _ref226.apply(this, arguments);
|
|
2532
2545
|
};
|
|
2533
2546
|
}();
|
|
2534
2547
|
export var run_inline_query = function () {
|
|
2535
|
-
var
|
|
2548
|
+
var _ref227 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2536
2549
|
request.result_format = encodeParam(request.result_format);
|
|
2537
2550
|
return sdk.post("/queries/run/".concat(request.result_format), {
|
|
2538
2551
|
limit: request.limit,
|
|
@@ -2550,85 +2563,85 @@ export var run_inline_query = function () {
|
|
|
2550
2563
|
}, request.body, options);
|
|
2551
2564
|
});
|
|
2552
2565
|
|
|
2553
|
-
return function run_inline_query(
|
|
2554
|
-
return
|
|
2566
|
+
return function run_inline_query(_x774, _x775, _x776) {
|
|
2567
|
+
return _ref227.apply(this, arguments);
|
|
2555
2568
|
};
|
|
2556
2569
|
}();
|
|
2557
2570
|
export var run_url_encoded_query = function () {
|
|
2558
|
-
var
|
|
2571
|
+
var _ref228 = _asyncToGenerator(function* (sdk, model_name, view_name, result_format, options) {
|
|
2559
2572
|
model_name = encodeParam(model_name);
|
|
2560
2573
|
view_name = encodeParam(view_name);
|
|
2561
2574
|
result_format = encodeParam(result_format);
|
|
2562
2575
|
return sdk.get("/queries/models/".concat(model_name, "/views/").concat(view_name, "/run/").concat(result_format), null, null, options);
|
|
2563
2576
|
});
|
|
2564
2577
|
|
|
2565
|
-
return function run_url_encoded_query(
|
|
2566
|
-
return
|
|
2578
|
+
return function run_url_encoded_query(_x777, _x778, _x779, _x780, _x781) {
|
|
2579
|
+
return _ref228.apply(this, arguments);
|
|
2567
2580
|
};
|
|
2568
2581
|
}();
|
|
2569
2582
|
export var merge_query = function () {
|
|
2570
|
-
var
|
|
2583
|
+
var _ref229 = _asyncToGenerator(function* (sdk, merge_query_id, fields, options) {
|
|
2571
2584
|
merge_query_id = encodeParam(merge_query_id);
|
|
2572
2585
|
return sdk.get("/merge_queries/".concat(merge_query_id), {
|
|
2573
2586
|
fields
|
|
2574
2587
|
}, null, options);
|
|
2575
2588
|
});
|
|
2576
2589
|
|
|
2577
|
-
return function merge_query(
|
|
2578
|
-
return
|
|
2590
|
+
return function merge_query(_x782, _x783, _x784, _x785) {
|
|
2591
|
+
return _ref229.apply(this, arguments);
|
|
2579
2592
|
};
|
|
2580
2593
|
}();
|
|
2581
2594
|
export var create_merge_query = function () {
|
|
2582
|
-
var
|
|
2595
|
+
var _ref230 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
2583
2596
|
return sdk.post('/merge_queries', {
|
|
2584
2597
|
fields
|
|
2585
2598
|
}, body, options);
|
|
2586
2599
|
});
|
|
2587
2600
|
|
|
2588
|
-
return function create_merge_query(
|
|
2589
|
-
return
|
|
2601
|
+
return function create_merge_query(_x786, _x787, _x788, _x789) {
|
|
2602
|
+
return _ref230.apply(this, arguments);
|
|
2590
2603
|
};
|
|
2591
2604
|
}();
|
|
2592
2605
|
export var all_running_queries = function () {
|
|
2593
|
-
var
|
|
2606
|
+
var _ref231 = _asyncToGenerator(function* (sdk, options) {
|
|
2594
2607
|
return sdk.get('/running_queries', null, null, options);
|
|
2595
2608
|
});
|
|
2596
2609
|
|
|
2597
|
-
return function all_running_queries(
|
|
2598
|
-
return
|
|
2610
|
+
return function all_running_queries(_x790, _x791) {
|
|
2611
|
+
return _ref231.apply(this, arguments);
|
|
2599
2612
|
};
|
|
2600
2613
|
}();
|
|
2601
2614
|
export var kill_query = function () {
|
|
2602
|
-
var
|
|
2615
|
+
var _ref232 = _asyncToGenerator(function* (sdk, query_task_id, options) {
|
|
2603
2616
|
query_task_id = encodeParam(query_task_id);
|
|
2604
2617
|
return sdk.delete("/running_queries/".concat(query_task_id), null, null, options);
|
|
2605
2618
|
});
|
|
2606
2619
|
|
|
2607
|
-
return function kill_query(
|
|
2608
|
-
return
|
|
2620
|
+
return function kill_query(_x792, _x793, _x794) {
|
|
2621
|
+
return _ref232.apply(this, arguments);
|
|
2609
2622
|
};
|
|
2610
2623
|
}();
|
|
2611
2624
|
export var sql_query = function () {
|
|
2612
|
-
var
|
|
2625
|
+
var _ref233 = _asyncToGenerator(function* (sdk, slug, options) {
|
|
2613
2626
|
slug = encodeParam(slug);
|
|
2614
2627
|
return sdk.get("/sql_queries/".concat(slug), null, null, options);
|
|
2615
2628
|
});
|
|
2616
2629
|
|
|
2617
|
-
return function sql_query(
|
|
2618
|
-
return
|
|
2630
|
+
return function sql_query(_x795, _x796, _x797) {
|
|
2631
|
+
return _ref233.apply(this, arguments);
|
|
2619
2632
|
};
|
|
2620
2633
|
}();
|
|
2621
2634
|
export var create_sql_query = function () {
|
|
2622
|
-
var
|
|
2635
|
+
var _ref234 = _asyncToGenerator(function* (sdk, body, options) {
|
|
2623
2636
|
return sdk.post('/sql_queries', null, body, options);
|
|
2624
2637
|
});
|
|
2625
2638
|
|
|
2626
|
-
return function create_sql_query(
|
|
2627
|
-
return
|
|
2639
|
+
return function create_sql_query(_x798, _x799, _x800) {
|
|
2640
|
+
return _ref234.apply(this, arguments);
|
|
2628
2641
|
};
|
|
2629
2642
|
}();
|
|
2630
2643
|
export var run_sql_query = function () {
|
|
2631
|
-
var
|
|
2644
|
+
var _ref235 = _asyncToGenerator(function* (sdk, slug, result_format, download, options) {
|
|
2632
2645
|
slug = encodeParam(slug);
|
|
2633
2646
|
result_format = encodeParam(result_format);
|
|
2634
2647
|
return sdk.post("/sql_queries/".concat(slug, "/run/").concat(result_format), {
|
|
@@ -2636,12 +2649,12 @@ export var run_sql_query = function () {
|
|
|
2636
2649
|
}, null, options);
|
|
2637
2650
|
});
|
|
2638
2651
|
|
|
2639
|
-
return function run_sql_query(
|
|
2640
|
-
return
|
|
2652
|
+
return function run_sql_query(_x801, _x802, _x803, _x804, _x805) {
|
|
2653
|
+
return _ref235.apply(this, arguments);
|
|
2641
2654
|
};
|
|
2642
2655
|
}();
|
|
2643
2656
|
export var create_lookml_dashboard_render_task = function () {
|
|
2644
|
-
var
|
|
2657
|
+
var _ref236 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2645
2658
|
request.dashboard_id = encodeParam(request.dashboard_id);
|
|
2646
2659
|
request.result_format = encodeParam(request.result_format);
|
|
2647
2660
|
return sdk.post("/render_tasks/lookml_dashboards/".concat(request.dashboard_id, "/").concat(request.result_format), {
|
|
@@ -2653,12 +2666,12 @@ export var create_lookml_dashboard_render_task = function () {
|
|
|
2653
2666
|
}, request.body, options);
|
|
2654
2667
|
});
|
|
2655
2668
|
|
|
2656
|
-
return function create_lookml_dashboard_render_task(
|
|
2657
|
-
return
|
|
2669
|
+
return function create_lookml_dashboard_render_task(_x806, _x807, _x808) {
|
|
2670
|
+
return _ref236.apply(this, arguments);
|
|
2658
2671
|
};
|
|
2659
2672
|
}();
|
|
2660
2673
|
export var create_look_render_task = function () {
|
|
2661
|
-
var
|
|
2674
|
+
var _ref237 = _asyncToGenerator(function* (sdk, look_id, result_format, width, height, fields, options) {
|
|
2662
2675
|
result_format = encodeParam(result_format);
|
|
2663
2676
|
return sdk.post("/render_tasks/looks/".concat(look_id, "/").concat(result_format), {
|
|
2664
2677
|
width,
|
|
@@ -2667,12 +2680,12 @@ export var create_look_render_task = function () {
|
|
|
2667
2680
|
}, null, options);
|
|
2668
2681
|
});
|
|
2669
2682
|
|
|
2670
|
-
return function create_look_render_task(
|
|
2671
|
-
return
|
|
2683
|
+
return function create_look_render_task(_x809, _x810, _x811, _x812, _x813, _x814, _x815) {
|
|
2684
|
+
return _ref237.apply(this, arguments);
|
|
2672
2685
|
};
|
|
2673
2686
|
}();
|
|
2674
2687
|
export var create_query_render_task = function () {
|
|
2675
|
-
var
|
|
2688
|
+
var _ref238 = _asyncToGenerator(function* (sdk, query_id, result_format, width, height, fields, options) {
|
|
2676
2689
|
result_format = encodeParam(result_format);
|
|
2677
2690
|
return sdk.post("/render_tasks/queries/".concat(query_id, "/").concat(result_format), {
|
|
2678
2691
|
width,
|
|
@@ -2681,12 +2694,12 @@ export var create_query_render_task = function () {
|
|
|
2681
2694
|
}, null, options);
|
|
2682
2695
|
});
|
|
2683
2696
|
|
|
2684
|
-
return function create_query_render_task(
|
|
2685
|
-
return
|
|
2697
|
+
return function create_query_render_task(_x816, _x817, _x818, _x819, _x820, _x821, _x822) {
|
|
2698
|
+
return _ref238.apply(this, arguments);
|
|
2686
2699
|
};
|
|
2687
2700
|
}();
|
|
2688
2701
|
export var create_dashboard_render_task = function () {
|
|
2689
|
-
var
|
|
2702
|
+
var _ref239 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2690
2703
|
request.result_format = encodeParam(request.result_format);
|
|
2691
2704
|
return sdk.post("/render_tasks/dashboards/".concat(request.dashboard_id, "/").concat(request.result_format), {
|
|
2692
2705
|
width: request.width,
|
|
@@ -2697,34 +2710,34 @@ export var create_dashboard_render_task = function () {
|
|
|
2697
2710
|
}, request.body, options);
|
|
2698
2711
|
});
|
|
2699
2712
|
|
|
2700
|
-
return function create_dashboard_render_task(
|
|
2701
|
-
return
|
|
2713
|
+
return function create_dashboard_render_task(_x823, _x824, _x825) {
|
|
2714
|
+
return _ref239.apply(this, arguments);
|
|
2702
2715
|
};
|
|
2703
2716
|
}();
|
|
2704
2717
|
export var render_task = function () {
|
|
2705
|
-
var
|
|
2718
|
+
var _ref240 = _asyncToGenerator(function* (sdk, render_task_id, fields, options) {
|
|
2706
2719
|
render_task_id = encodeParam(render_task_id);
|
|
2707
2720
|
return sdk.get("/render_tasks/".concat(render_task_id), {
|
|
2708
2721
|
fields
|
|
2709
2722
|
}, null, options);
|
|
2710
2723
|
});
|
|
2711
2724
|
|
|
2712
|
-
return function render_task(
|
|
2713
|
-
return
|
|
2725
|
+
return function render_task(_x826, _x827, _x828, _x829) {
|
|
2726
|
+
return _ref240.apply(this, arguments);
|
|
2714
2727
|
};
|
|
2715
2728
|
}();
|
|
2716
2729
|
export var render_task_results = function () {
|
|
2717
|
-
var
|
|
2730
|
+
var _ref241 = _asyncToGenerator(function* (sdk, render_task_id, options) {
|
|
2718
2731
|
render_task_id = encodeParam(render_task_id);
|
|
2719
2732
|
return sdk.get("/render_tasks/".concat(render_task_id, "/results"), null, null, options);
|
|
2720
2733
|
});
|
|
2721
2734
|
|
|
2722
|
-
return function render_task_results(
|
|
2723
|
-
return
|
|
2735
|
+
return function render_task_results(_x830, _x831, _x832) {
|
|
2736
|
+
return _ref241.apply(this, arguments);
|
|
2724
2737
|
};
|
|
2725
2738
|
}();
|
|
2726
2739
|
export var search_model_sets = function () {
|
|
2727
|
-
var
|
|
2740
|
+
var _ref242 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2728
2741
|
return sdk.get('/model_sets/search', {
|
|
2729
2742
|
fields: request.fields,
|
|
2730
2743
|
limit: request.limit,
|
|
@@ -2738,70 +2751,70 @@ export var search_model_sets = function () {
|
|
|
2738
2751
|
}, null, options);
|
|
2739
2752
|
});
|
|
2740
2753
|
|
|
2741
|
-
return function search_model_sets(
|
|
2742
|
-
return
|
|
2754
|
+
return function search_model_sets(_x833, _x834, _x835) {
|
|
2755
|
+
return _ref242.apply(this, arguments);
|
|
2743
2756
|
};
|
|
2744
2757
|
}();
|
|
2745
2758
|
export var model_set = function () {
|
|
2746
|
-
var
|
|
2759
|
+
var _ref243 = _asyncToGenerator(function* (sdk, model_set_id, fields, options) {
|
|
2747
2760
|
return sdk.get("/model_sets/".concat(model_set_id), {
|
|
2748
2761
|
fields
|
|
2749
2762
|
}, null, options);
|
|
2750
2763
|
});
|
|
2751
2764
|
|
|
2752
|
-
return function model_set(
|
|
2753
|
-
return
|
|
2765
|
+
return function model_set(_x836, _x837, _x838, _x839) {
|
|
2766
|
+
return _ref243.apply(this, arguments);
|
|
2754
2767
|
};
|
|
2755
2768
|
}();
|
|
2756
2769
|
export var update_model_set = function () {
|
|
2757
|
-
var
|
|
2770
|
+
var _ref244 = _asyncToGenerator(function* (sdk, model_set_id, body, options) {
|
|
2758
2771
|
return sdk.patch("/model_sets/".concat(model_set_id), null, body, options);
|
|
2759
2772
|
});
|
|
2760
2773
|
|
|
2761
|
-
return function update_model_set(
|
|
2762
|
-
return
|
|
2774
|
+
return function update_model_set(_x840, _x841, _x842, _x843) {
|
|
2775
|
+
return _ref244.apply(this, arguments);
|
|
2763
2776
|
};
|
|
2764
2777
|
}();
|
|
2765
2778
|
export var delete_model_set = function () {
|
|
2766
|
-
var
|
|
2779
|
+
var _ref245 = _asyncToGenerator(function* (sdk, model_set_id, options) {
|
|
2767
2780
|
return sdk.delete("/model_sets/".concat(model_set_id), null, null, options);
|
|
2768
2781
|
});
|
|
2769
2782
|
|
|
2770
|
-
return function delete_model_set(
|
|
2771
|
-
return
|
|
2783
|
+
return function delete_model_set(_x844, _x845, _x846) {
|
|
2784
|
+
return _ref245.apply(this, arguments);
|
|
2772
2785
|
};
|
|
2773
2786
|
}();
|
|
2774
2787
|
export var all_model_sets = function () {
|
|
2775
|
-
var
|
|
2788
|
+
var _ref246 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
2776
2789
|
return sdk.get('/model_sets', {
|
|
2777
2790
|
fields
|
|
2778
2791
|
}, null, options);
|
|
2779
2792
|
});
|
|
2780
2793
|
|
|
2781
|
-
return function all_model_sets(
|
|
2782
|
-
return
|
|
2794
|
+
return function all_model_sets(_x847, _x848, _x849) {
|
|
2795
|
+
return _ref246.apply(this, arguments);
|
|
2783
2796
|
};
|
|
2784
2797
|
}();
|
|
2785
2798
|
export var create_model_set = function () {
|
|
2786
|
-
var
|
|
2799
|
+
var _ref247 = _asyncToGenerator(function* (sdk, body, options) {
|
|
2787
2800
|
return sdk.post('/model_sets', null, body, options);
|
|
2788
2801
|
});
|
|
2789
2802
|
|
|
2790
|
-
return function create_model_set(
|
|
2791
|
-
return
|
|
2803
|
+
return function create_model_set(_x850, _x851, _x852) {
|
|
2804
|
+
return _ref247.apply(this, arguments);
|
|
2792
2805
|
};
|
|
2793
2806
|
}();
|
|
2794
2807
|
export var all_permissions = function () {
|
|
2795
|
-
var
|
|
2808
|
+
var _ref248 = _asyncToGenerator(function* (sdk, options) {
|
|
2796
2809
|
return sdk.get('/permissions', null, null, options);
|
|
2797
2810
|
});
|
|
2798
2811
|
|
|
2799
|
-
return function all_permissions(
|
|
2800
|
-
return
|
|
2812
|
+
return function all_permissions(_x853, _x854) {
|
|
2813
|
+
return _ref248.apply(this, arguments);
|
|
2801
2814
|
};
|
|
2802
2815
|
}();
|
|
2803
2816
|
export var search_permission_sets = function () {
|
|
2804
|
-
var
|
|
2817
|
+
var _ref249 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2805
2818
|
return sdk.get('/permission_sets/search', {
|
|
2806
2819
|
fields: request.fields,
|
|
2807
2820
|
limit: request.limit,
|
|
@@ -2815,82 +2828,82 @@ export var search_permission_sets = function () {
|
|
|
2815
2828
|
}, null, options);
|
|
2816
2829
|
});
|
|
2817
2830
|
|
|
2818
|
-
return function search_permission_sets(
|
|
2819
|
-
return
|
|
2831
|
+
return function search_permission_sets(_x855, _x856, _x857) {
|
|
2832
|
+
return _ref249.apply(this, arguments);
|
|
2820
2833
|
};
|
|
2821
2834
|
}();
|
|
2822
2835
|
export var permission_set = function () {
|
|
2823
|
-
var
|
|
2836
|
+
var _ref250 = _asyncToGenerator(function* (sdk, permission_set_id, fields, options) {
|
|
2824
2837
|
return sdk.get("/permission_sets/".concat(permission_set_id), {
|
|
2825
2838
|
fields
|
|
2826
2839
|
}, null, options);
|
|
2827
2840
|
});
|
|
2828
2841
|
|
|
2829
|
-
return function permission_set(
|
|
2830
|
-
return
|
|
2842
|
+
return function permission_set(_x858, _x859, _x860, _x861) {
|
|
2843
|
+
return _ref250.apply(this, arguments);
|
|
2831
2844
|
};
|
|
2832
2845
|
}();
|
|
2833
2846
|
export var update_permission_set = function () {
|
|
2834
|
-
var
|
|
2847
|
+
var _ref251 = _asyncToGenerator(function* (sdk, permission_set_id, body, options) {
|
|
2835
2848
|
return sdk.patch("/permission_sets/".concat(permission_set_id), null, body, options);
|
|
2836
2849
|
});
|
|
2837
2850
|
|
|
2838
|
-
return function update_permission_set(
|
|
2839
|
-
return
|
|
2851
|
+
return function update_permission_set(_x862, _x863, _x864, _x865) {
|
|
2852
|
+
return _ref251.apply(this, arguments);
|
|
2840
2853
|
};
|
|
2841
2854
|
}();
|
|
2842
2855
|
export var delete_permission_set = function () {
|
|
2843
|
-
var
|
|
2856
|
+
var _ref252 = _asyncToGenerator(function* (sdk, permission_set_id, options) {
|
|
2844
2857
|
return sdk.delete("/permission_sets/".concat(permission_set_id), null, null, options);
|
|
2845
2858
|
});
|
|
2846
2859
|
|
|
2847
|
-
return function delete_permission_set(
|
|
2848
|
-
return
|
|
2860
|
+
return function delete_permission_set(_x866, _x867, _x868) {
|
|
2861
|
+
return _ref252.apply(this, arguments);
|
|
2849
2862
|
};
|
|
2850
2863
|
}();
|
|
2851
2864
|
export var all_permission_sets = function () {
|
|
2852
|
-
var
|
|
2865
|
+
var _ref253 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
2853
2866
|
return sdk.get('/permission_sets', {
|
|
2854
2867
|
fields
|
|
2855
2868
|
}, null, options);
|
|
2856
2869
|
});
|
|
2857
2870
|
|
|
2858
|
-
return function all_permission_sets(
|
|
2859
|
-
return
|
|
2871
|
+
return function all_permission_sets(_x869, _x870, _x871) {
|
|
2872
|
+
return _ref253.apply(this, arguments);
|
|
2860
2873
|
};
|
|
2861
2874
|
}();
|
|
2862
2875
|
export var create_permission_set = function () {
|
|
2863
|
-
var
|
|
2876
|
+
var _ref254 = _asyncToGenerator(function* (sdk, body, options) {
|
|
2864
2877
|
return sdk.post('/permission_sets', null, body, options);
|
|
2865
2878
|
});
|
|
2866
2879
|
|
|
2867
|
-
return function create_permission_set(
|
|
2868
|
-
return
|
|
2880
|
+
return function create_permission_set(_x872, _x873, _x874) {
|
|
2881
|
+
return _ref254.apply(this, arguments);
|
|
2869
2882
|
};
|
|
2870
2883
|
}();
|
|
2871
2884
|
export var all_roles = function () {
|
|
2872
|
-
var
|
|
2885
|
+
var _ref255 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2873
2886
|
return sdk.get('/roles', {
|
|
2874
2887
|
fields: request.fields,
|
|
2875
2888
|
ids: request.ids
|
|
2876
2889
|
}, null, options);
|
|
2877
2890
|
});
|
|
2878
2891
|
|
|
2879
|
-
return function all_roles(
|
|
2880
|
-
return
|
|
2892
|
+
return function all_roles(_x875, _x876, _x877) {
|
|
2893
|
+
return _ref255.apply(this, arguments);
|
|
2881
2894
|
};
|
|
2882
2895
|
}();
|
|
2883
2896
|
export var create_role = function () {
|
|
2884
|
-
var
|
|
2897
|
+
var _ref256 = _asyncToGenerator(function* (sdk, body, options) {
|
|
2885
2898
|
return sdk.post('/roles', null, body, options);
|
|
2886
2899
|
});
|
|
2887
2900
|
|
|
2888
|
-
return function create_role(
|
|
2889
|
-
return
|
|
2901
|
+
return function create_role(_x878, _x879, _x880) {
|
|
2902
|
+
return _ref256.apply(this, arguments);
|
|
2890
2903
|
};
|
|
2891
2904
|
}();
|
|
2892
2905
|
export var search_roles = function () {
|
|
2893
|
-
var
|
|
2906
|
+
var _ref257 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2894
2907
|
return sdk.get('/roles/search', {
|
|
2895
2908
|
fields: request.fields,
|
|
2896
2909
|
limit: request.limit,
|
|
@@ -2903,120 +2916,120 @@ export var search_roles = function () {
|
|
|
2903
2916
|
}, null, options);
|
|
2904
2917
|
});
|
|
2905
2918
|
|
|
2906
|
-
return function search_roles(
|
|
2907
|
-
return
|
|
2919
|
+
return function search_roles(_x881, _x882, _x883) {
|
|
2920
|
+
return _ref257.apply(this, arguments);
|
|
2908
2921
|
};
|
|
2909
2922
|
}();
|
|
2910
2923
|
export var role = function () {
|
|
2911
|
-
var
|
|
2924
|
+
var _ref258 = _asyncToGenerator(function* (sdk, role_id, options) {
|
|
2912
2925
|
return sdk.get("/roles/".concat(role_id), null, null, options);
|
|
2913
2926
|
});
|
|
2914
2927
|
|
|
2915
|
-
return function role(
|
|
2916
|
-
return
|
|
2928
|
+
return function role(_x884, _x885, _x886) {
|
|
2929
|
+
return _ref258.apply(this, arguments);
|
|
2917
2930
|
};
|
|
2918
2931
|
}();
|
|
2919
2932
|
export var update_role = function () {
|
|
2920
|
-
var
|
|
2933
|
+
var _ref259 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
2921
2934
|
return sdk.patch("/roles/".concat(role_id), null, body, options);
|
|
2922
2935
|
});
|
|
2923
2936
|
|
|
2924
|
-
return function update_role(
|
|
2925
|
-
return
|
|
2937
|
+
return function update_role(_x887, _x888, _x889, _x890) {
|
|
2938
|
+
return _ref259.apply(this, arguments);
|
|
2926
2939
|
};
|
|
2927
2940
|
}();
|
|
2928
2941
|
export var delete_role = function () {
|
|
2929
|
-
var
|
|
2942
|
+
var _ref260 = _asyncToGenerator(function* (sdk, role_id, options) {
|
|
2930
2943
|
return sdk.delete("/roles/".concat(role_id), null, null, options);
|
|
2931
2944
|
});
|
|
2932
2945
|
|
|
2933
|
-
return function delete_role(
|
|
2934
|
-
return
|
|
2946
|
+
return function delete_role(_x891, _x892, _x893) {
|
|
2947
|
+
return _ref260.apply(this, arguments);
|
|
2935
2948
|
};
|
|
2936
2949
|
}();
|
|
2937
2950
|
export var role_groups = function () {
|
|
2938
|
-
var
|
|
2951
|
+
var _ref261 = _asyncToGenerator(function* (sdk, role_id, fields, options) {
|
|
2939
2952
|
return sdk.get("/roles/".concat(role_id, "/groups"), {
|
|
2940
2953
|
fields
|
|
2941
2954
|
}, null, options);
|
|
2942
2955
|
});
|
|
2943
2956
|
|
|
2944
|
-
return function role_groups(
|
|
2945
|
-
return
|
|
2957
|
+
return function role_groups(_x894, _x895, _x896, _x897) {
|
|
2958
|
+
return _ref261.apply(this, arguments);
|
|
2946
2959
|
};
|
|
2947
2960
|
}();
|
|
2948
2961
|
export var set_role_groups = function () {
|
|
2949
|
-
var
|
|
2962
|
+
var _ref262 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
2950
2963
|
return sdk.put("/roles/".concat(role_id, "/groups"), null, body, options);
|
|
2951
2964
|
});
|
|
2952
2965
|
|
|
2953
|
-
return function set_role_groups(
|
|
2954
|
-
return
|
|
2966
|
+
return function set_role_groups(_x898, _x899, _x900, _x901) {
|
|
2967
|
+
return _ref262.apply(this, arguments);
|
|
2955
2968
|
};
|
|
2956
2969
|
}();
|
|
2957
2970
|
export var role_users = function () {
|
|
2958
|
-
var
|
|
2971
|
+
var _ref263 = _asyncToGenerator(function* (sdk, request, options) {
|
|
2959
2972
|
return sdk.get("/roles/".concat(request.role_id, "/users"), {
|
|
2960
2973
|
fields: request.fields,
|
|
2961
2974
|
direct_association_only: request.direct_association_only
|
|
2962
2975
|
}, null, options);
|
|
2963
2976
|
});
|
|
2964
2977
|
|
|
2965
|
-
return function role_users(
|
|
2966
|
-
return
|
|
2978
|
+
return function role_users(_x902, _x903, _x904) {
|
|
2979
|
+
return _ref263.apply(this, arguments);
|
|
2967
2980
|
};
|
|
2968
2981
|
}();
|
|
2969
2982
|
export var set_role_users = function () {
|
|
2970
|
-
var
|
|
2983
|
+
var _ref264 = _asyncToGenerator(function* (sdk, role_id, body, options) {
|
|
2971
2984
|
return sdk.put("/roles/".concat(role_id, "/users"), null, body, options);
|
|
2972
2985
|
});
|
|
2973
2986
|
|
|
2974
|
-
return function set_role_users(
|
|
2975
|
-
return
|
|
2987
|
+
return function set_role_users(_x905, _x906, _x907, _x908) {
|
|
2988
|
+
return _ref264.apply(this, arguments);
|
|
2976
2989
|
};
|
|
2977
2990
|
}();
|
|
2978
2991
|
export var scheduled_plans_for_space = function () {
|
|
2979
|
-
var
|
|
2992
|
+
var _ref265 = _asyncToGenerator(function* (sdk, space_id, fields, options) {
|
|
2980
2993
|
return sdk.get("/scheduled_plans/space/".concat(space_id), {
|
|
2981
2994
|
fields
|
|
2982
2995
|
}, null, options);
|
|
2983
2996
|
});
|
|
2984
2997
|
|
|
2985
|
-
return function scheduled_plans_for_space(
|
|
2986
|
-
return
|
|
2998
|
+
return function scheduled_plans_for_space(_x909, _x910, _x911, _x912) {
|
|
2999
|
+
return _ref265.apply(this, arguments);
|
|
2987
3000
|
};
|
|
2988
3001
|
}();
|
|
2989
3002
|
export var scheduled_plan = function () {
|
|
2990
|
-
var
|
|
3003
|
+
var _ref266 = _asyncToGenerator(function* (sdk, scheduled_plan_id, fields, options) {
|
|
2991
3004
|
return sdk.get("/scheduled_plans/".concat(scheduled_plan_id), {
|
|
2992
3005
|
fields
|
|
2993
3006
|
}, null, options);
|
|
2994
3007
|
});
|
|
2995
3008
|
|
|
2996
|
-
return function scheduled_plan(
|
|
2997
|
-
return
|
|
3009
|
+
return function scheduled_plan(_x913, _x914, _x915, _x916) {
|
|
3010
|
+
return _ref266.apply(this, arguments);
|
|
2998
3011
|
};
|
|
2999
3012
|
}();
|
|
3000
3013
|
export var update_scheduled_plan = function () {
|
|
3001
|
-
var
|
|
3014
|
+
var _ref267 = _asyncToGenerator(function* (sdk, scheduled_plan_id, body, options) {
|
|
3002
3015
|
return sdk.patch("/scheduled_plans/".concat(scheduled_plan_id), null, body, options);
|
|
3003
3016
|
});
|
|
3004
3017
|
|
|
3005
|
-
return function update_scheduled_plan(
|
|
3006
|
-
return
|
|
3018
|
+
return function update_scheduled_plan(_x917, _x918, _x919, _x920) {
|
|
3019
|
+
return _ref267.apply(this, arguments);
|
|
3007
3020
|
};
|
|
3008
3021
|
}();
|
|
3009
3022
|
export var delete_scheduled_plan = function () {
|
|
3010
|
-
var
|
|
3023
|
+
var _ref268 = _asyncToGenerator(function* (sdk, scheduled_plan_id, options) {
|
|
3011
3024
|
return sdk.delete("/scheduled_plans/".concat(scheduled_plan_id), null, null, options);
|
|
3012
3025
|
});
|
|
3013
3026
|
|
|
3014
|
-
return function delete_scheduled_plan(
|
|
3015
|
-
return
|
|
3027
|
+
return function delete_scheduled_plan(_x921, _x922, _x923) {
|
|
3028
|
+
return _ref268.apply(this, arguments);
|
|
3016
3029
|
};
|
|
3017
3030
|
}();
|
|
3018
3031
|
export var all_scheduled_plans = function () {
|
|
3019
|
-
var
|
|
3032
|
+
var _ref269 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3020
3033
|
return sdk.get('/scheduled_plans', {
|
|
3021
3034
|
user_id: request.user_id,
|
|
3022
3035
|
fields: request.fields,
|
|
@@ -3024,30 +3037,30 @@ export var all_scheduled_plans = function () {
|
|
|
3024
3037
|
}, null, options);
|
|
3025
3038
|
});
|
|
3026
3039
|
|
|
3027
|
-
return function all_scheduled_plans(
|
|
3028
|
-
return
|
|
3040
|
+
return function all_scheduled_plans(_x924, _x925, _x926) {
|
|
3041
|
+
return _ref269.apply(this, arguments);
|
|
3029
3042
|
};
|
|
3030
3043
|
}();
|
|
3031
3044
|
export var create_scheduled_plan = function () {
|
|
3032
|
-
var
|
|
3045
|
+
var _ref270 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3033
3046
|
return sdk.post('/scheduled_plans', null, body, options);
|
|
3034
3047
|
});
|
|
3035
3048
|
|
|
3036
|
-
return function create_scheduled_plan(
|
|
3037
|
-
return
|
|
3049
|
+
return function create_scheduled_plan(_x927, _x928, _x929) {
|
|
3050
|
+
return _ref270.apply(this, arguments);
|
|
3038
3051
|
};
|
|
3039
3052
|
}();
|
|
3040
3053
|
export var scheduled_plan_run_once = function () {
|
|
3041
|
-
var
|
|
3054
|
+
var _ref271 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3042
3055
|
return sdk.post('/scheduled_plans/run_once', null, body, options);
|
|
3043
3056
|
});
|
|
3044
3057
|
|
|
3045
|
-
return function scheduled_plan_run_once(
|
|
3046
|
-
return
|
|
3058
|
+
return function scheduled_plan_run_once(_x930, _x931, _x932) {
|
|
3059
|
+
return _ref271.apply(this, arguments);
|
|
3047
3060
|
};
|
|
3048
3061
|
}();
|
|
3049
3062
|
export var scheduled_plans_for_look = function () {
|
|
3050
|
-
var
|
|
3063
|
+
var _ref272 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3051
3064
|
return sdk.get("/scheduled_plans/look/".concat(request.look_id), {
|
|
3052
3065
|
user_id: request.user_id,
|
|
3053
3066
|
fields: request.fields,
|
|
@@ -3055,12 +3068,12 @@ export var scheduled_plans_for_look = function () {
|
|
|
3055
3068
|
}, null, options);
|
|
3056
3069
|
});
|
|
3057
3070
|
|
|
3058
|
-
return function scheduled_plans_for_look(
|
|
3059
|
-
return
|
|
3071
|
+
return function scheduled_plans_for_look(_x933, _x934, _x935) {
|
|
3072
|
+
return _ref272.apply(this, arguments);
|
|
3060
3073
|
};
|
|
3061
3074
|
}();
|
|
3062
3075
|
export var scheduled_plans_for_dashboard = function () {
|
|
3063
|
-
var
|
|
3076
|
+
var _ref273 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3064
3077
|
return sdk.get("/scheduled_plans/dashboard/".concat(request.dashboard_id), {
|
|
3065
3078
|
user_id: request.user_id,
|
|
3066
3079
|
all_users: request.all_users,
|
|
@@ -3068,12 +3081,12 @@ export var scheduled_plans_for_dashboard = function () {
|
|
|
3068
3081
|
}, null, options);
|
|
3069
3082
|
});
|
|
3070
3083
|
|
|
3071
|
-
return function scheduled_plans_for_dashboard(
|
|
3072
|
-
return
|
|
3084
|
+
return function scheduled_plans_for_dashboard(_x936, _x937, _x938) {
|
|
3085
|
+
return _ref273.apply(this, arguments);
|
|
3073
3086
|
};
|
|
3074
3087
|
}();
|
|
3075
3088
|
export var scheduled_plans_for_lookml_dashboard = function () {
|
|
3076
|
-
var
|
|
3089
|
+
var _ref274 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3077
3090
|
request.lookml_dashboard_id = encodeParam(request.lookml_dashboard_id);
|
|
3078
3091
|
return sdk.get("/scheduled_plans/lookml_dashboard/".concat(request.lookml_dashboard_id), {
|
|
3079
3092
|
user_id: request.user_id,
|
|
@@ -3082,39 +3095,39 @@ export var scheduled_plans_for_lookml_dashboard = function () {
|
|
|
3082
3095
|
}, null, options);
|
|
3083
3096
|
});
|
|
3084
3097
|
|
|
3085
|
-
return function scheduled_plans_for_lookml_dashboard(
|
|
3086
|
-
return
|
|
3098
|
+
return function scheduled_plans_for_lookml_dashboard(_x939, _x940, _x941) {
|
|
3099
|
+
return _ref274.apply(this, arguments);
|
|
3087
3100
|
};
|
|
3088
3101
|
}();
|
|
3089
3102
|
export var scheduled_plan_run_once_by_id = function () {
|
|
3090
|
-
var
|
|
3103
|
+
var _ref275 = _asyncToGenerator(function* (sdk, scheduled_plan_id, body, options) {
|
|
3091
3104
|
return sdk.post("/scheduled_plans/".concat(scheduled_plan_id, "/run_once"), null, body, options);
|
|
3092
3105
|
});
|
|
3093
3106
|
|
|
3094
|
-
return function scheduled_plan_run_once_by_id(
|
|
3095
|
-
return
|
|
3107
|
+
return function scheduled_plan_run_once_by_id(_x942, _x943, _x944, _x945) {
|
|
3108
|
+
return _ref275.apply(this, arguments);
|
|
3096
3109
|
};
|
|
3097
3110
|
}();
|
|
3098
3111
|
export var session = function () {
|
|
3099
|
-
var
|
|
3112
|
+
var _ref276 = _asyncToGenerator(function* (sdk, options) {
|
|
3100
3113
|
return sdk.get('/session', null, null, options);
|
|
3101
3114
|
});
|
|
3102
3115
|
|
|
3103
|
-
return function session(
|
|
3104
|
-
return
|
|
3116
|
+
return function session(_x946, _x947) {
|
|
3117
|
+
return _ref276.apply(this, arguments);
|
|
3105
3118
|
};
|
|
3106
3119
|
}();
|
|
3107
3120
|
export var update_session = function () {
|
|
3108
|
-
var
|
|
3121
|
+
var _ref277 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3109
3122
|
return sdk.patch('/session', null, body, options);
|
|
3110
3123
|
});
|
|
3111
3124
|
|
|
3112
|
-
return function update_session(
|
|
3113
|
-
return
|
|
3125
|
+
return function update_session(_x948, _x949, _x950) {
|
|
3126
|
+
return _ref277.apply(this, arguments);
|
|
3114
3127
|
};
|
|
3115
3128
|
}();
|
|
3116
3129
|
export var search_spaces = function () {
|
|
3117
|
-
var
|
|
3130
|
+
var _ref278 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3118
3131
|
return sdk.get('/spaces/search', {
|
|
3119
3132
|
fields: request.fields,
|
|
3120
3133
|
page: request.page,
|
|
@@ -3131,64 +3144,64 @@ export var search_spaces = function () {
|
|
|
3131
3144
|
}, null, options);
|
|
3132
3145
|
});
|
|
3133
3146
|
|
|
3134
|
-
return function search_spaces(
|
|
3135
|
-
return
|
|
3147
|
+
return function search_spaces(_x951, _x952, _x953) {
|
|
3148
|
+
return _ref278.apply(this, arguments);
|
|
3136
3149
|
};
|
|
3137
3150
|
}();
|
|
3138
3151
|
export var space = function () {
|
|
3139
|
-
var
|
|
3152
|
+
var _ref279 = _asyncToGenerator(function* (sdk, space_id, fields, options) {
|
|
3140
3153
|
space_id = encodeParam(space_id);
|
|
3141
3154
|
return sdk.get("/spaces/".concat(space_id), {
|
|
3142
3155
|
fields
|
|
3143
3156
|
}, null, options);
|
|
3144
3157
|
});
|
|
3145
3158
|
|
|
3146
|
-
return function space(
|
|
3147
|
-
return
|
|
3159
|
+
return function space(_x954, _x955, _x956, _x957) {
|
|
3160
|
+
return _ref279.apply(this, arguments);
|
|
3148
3161
|
};
|
|
3149
3162
|
}();
|
|
3150
3163
|
export var update_space = function () {
|
|
3151
|
-
var
|
|
3164
|
+
var _ref280 = _asyncToGenerator(function* (sdk, space_id, body, options) {
|
|
3152
3165
|
space_id = encodeParam(space_id);
|
|
3153
3166
|
return sdk.patch("/spaces/".concat(space_id), null, body, options);
|
|
3154
3167
|
});
|
|
3155
3168
|
|
|
3156
|
-
return function update_space(
|
|
3157
|
-
return
|
|
3169
|
+
return function update_space(_x958, _x959, _x960, _x961) {
|
|
3170
|
+
return _ref280.apply(this, arguments);
|
|
3158
3171
|
};
|
|
3159
3172
|
}();
|
|
3160
3173
|
export var delete_space = function () {
|
|
3161
|
-
var
|
|
3174
|
+
var _ref281 = _asyncToGenerator(function* (sdk, space_id, options) {
|
|
3162
3175
|
space_id = encodeParam(space_id);
|
|
3163
3176
|
return sdk.delete("/spaces/".concat(space_id), null, null, options);
|
|
3164
3177
|
});
|
|
3165
3178
|
|
|
3166
|
-
return function delete_space(
|
|
3167
|
-
return
|
|
3179
|
+
return function delete_space(_x962, _x963, _x964) {
|
|
3180
|
+
return _ref281.apply(this, arguments);
|
|
3168
3181
|
};
|
|
3169
3182
|
}();
|
|
3170
3183
|
export var all_spaces = function () {
|
|
3171
|
-
var
|
|
3184
|
+
var _ref282 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3172
3185
|
return sdk.get('/spaces', {
|
|
3173
3186
|
fields
|
|
3174
3187
|
}, null, options);
|
|
3175
3188
|
});
|
|
3176
3189
|
|
|
3177
|
-
return function all_spaces(
|
|
3178
|
-
return
|
|
3190
|
+
return function all_spaces(_x965, _x966, _x967) {
|
|
3191
|
+
return _ref282.apply(this, arguments);
|
|
3179
3192
|
};
|
|
3180
3193
|
}();
|
|
3181
3194
|
export var create_space = function () {
|
|
3182
|
-
var
|
|
3195
|
+
var _ref283 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3183
3196
|
return sdk.post('/spaces', null, body, options);
|
|
3184
3197
|
});
|
|
3185
3198
|
|
|
3186
|
-
return function create_space(
|
|
3187
|
-
return
|
|
3199
|
+
return function create_space(_x968, _x969, _x970) {
|
|
3200
|
+
return _ref283.apply(this, arguments);
|
|
3188
3201
|
};
|
|
3189
3202
|
}();
|
|
3190
3203
|
export var space_children = function () {
|
|
3191
|
-
var
|
|
3204
|
+
var _ref284 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3192
3205
|
request.space_id = encodeParam(request.space_id);
|
|
3193
3206
|
return sdk.get("/spaces/".concat(request.space_id, "/children"), {
|
|
3194
3207
|
fields: request.fields,
|
|
@@ -3198,12 +3211,12 @@ export var space_children = function () {
|
|
|
3198
3211
|
}, null, options);
|
|
3199
3212
|
});
|
|
3200
3213
|
|
|
3201
|
-
return function space_children(
|
|
3202
|
-
return
|
|
3214
|
+
return function space_children(_x971, _x972, _x973) {
|
|
3215
|
+
return _ref284.apply(this, arguments);
|
|
3203
3216
|
};
|
|
3204
3217
|
}();
|
|
3205
3218
|
export var space_children_search = function () {
|
|
3206
|
-
var
|
|
3219
|
+
var _ref285 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3207
3220
|
request.space_id = encodeParam(request.space_id);
|
|
3208
3221
|
return sdk.get("/spaces/".concat(request.space_id, "/children/search"), {
|
|
3209
3222
|
fields: request.fields,
|
|
@@ -3212,80 +3225,80 @@ export var space_children_search = function () {
|
|
|
3212
3225
|
}, null, options);
|
|
3213
3226
|
});
|
|
3214
3227
|
|
|
3215
|
-
return function space_children_search(
|
|
3216
|
-
return
|
|
3228
|
+
return function space_children_search(_x974, _x975, _x976) {
|
|
3229
|
+
return _ref285.apply(this, arguments);
|
|
3217
3230
|
};
|
|
3218
3231
|
}();
|
|
3219
3232
|
export var space_parent = function () {
|
|
3220
|
-
var
|
|
3233
|
+
var _ref286 = _asyncToGenerator(function* (sdk, space_id, fields, options) {
|
|
3221
3234
|
space_id = encodeParam(space_id);
|
|
3222
3235
|
return sdk.get("/spaces/".concat(space_id, "/parent"), {
|
|
3223
3236
|
fields
|
|
3224
3237
|
}, null, options);
|
|
3225
3238
|
});
|
|
3226
3239
|
|
|
3227
|
-
return function space_parent(
|
|
3228
|
-
return
|
|
3240
|
+
return function space_parent(_x977, _x978, _x979, _x980) {
|
|
3241
|
+
return _ref286.apply(this, arguments);
|
|
3229
3242
|
};
|
|
3230
3243
|
}();
|
|
3231
3244
|
export var space_ancestors = function () {
|
|
3232
|
-
var
|
|
3245
|
+
var _ref287 = _asyncToGenerator(function* (sdk, space_id, fields, options) {
|
|
3233
3246
|
space_id = encodeParam(space_id);
|
|
3234
3247
|
return sdk.get("/spaces/".concat(space_id, "/ancestors"), {
|
|
3235
3248
|
fields
|
|
3236
3249
|
}, null, options);
|
|
3237
3250
|
});
|
|
3238
3251
|
|
|
3239
|
-
return function space_ancestors(
|
|
3240
|
-
return
|
|
3252
|
+
return function space_ancestors(_x981, _x982, _x983, _x984) {
|
|
3253
|
+
return _ref287.apply(this, arguments);
|
|
3241
3254
|
};
|
|
3242
3255
|
}();
|
|
3243
3256
|
export var space_looks = function () {
|
|
3244
|
-
var
|
|
3257
|
+
var _ref288 = _asyncToGenerator(function* (sdk, space_id, fields, options) {
|
|
3245
3258
|
space_id = encodeParam(space_id);
|
|
3246
3259
|
return sdk.get("/spaces/".concat(space_id, "/looks"), {
|
|
3247
3260
|
fields
|
|
3248
3261
|
}, null, options);
|
|
3249
3262
|
});
|
|
3250
3263
|
|
|
3251
|
-
return function space_looks(
|
|
3252
|
-
return
|
|
3264
|
+
return function space_looks(_x985, _x986, _x987, _x988) {
|
|
3265
|
+
return _ref288.apply(this, arguments);
|
|
3253
3266
|
};
|
|
3254
3267
|
}();
|
|
3255
3268
|
export var space_dashboards = function () {
|
|
3256
|
-
var
|
|
3269
|
+
var _ref289 = _asyncToGenerator(function* (sdk, space_id, fields, options) {
|
|
3257
3270
|
space_id = encodeParam(space_id);
|
|
3258
3271
|
return sdk.get("/spaces/".concat(space_id, "/dashboards"), {
|
|
3259
3272
|
fields
|
|
3260
3273
|
}, null, options);
|
|
3261
3274
|
});
|
|
3262
3275
|
|
|
3263
|
-
return function space_dashboards(
|
|
3264
|
-
return
|
|
3276
|
+
return function space_dashboards(_x989, _x990, _x991, _x992) {
|
|
3277
|
+
return _ref289.apply(this, arguments);
|
|
3265
3278
|
};
|
|
3266
3279
|
}();
|
|
3267
3280
|
export var all_themes = function () {
|
|
3268
|
-
var
|
|
3281
|
+
var _ref290 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3269
3282
|
return sdk.get('/themes', {
|
|
3270
3283
|
fields
|
|
3271
3284
|
}, null, options);
|
|
3272
3285
|
});
|
|
3273
3286
|
|
|
3274
|
-
return function all_themes(
|
|
3275
|
-
return
|
|
3287
|
+
return function all_themes(_x993, _x994, _x995) {
|
|
3288
|
+
return _ref290.apply(this, arguments);
|
|
3276
3289
|
};
|
|
3277
3290
|
}();
|
|
3278
3291
|
export var create_theme = function () {
|
|
3279
|
-
var
|
|
3292
|
+
var _ref291 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3280
3293
|
return sdk.post('/themes', null, body, options);
|
|
3281
3294
|
});
|
|
3282
3295
|
|
|
3283
|
-
return function create_theme(
|
|
3284
|
-
return
|
|
3296
|
+
return function create_theme(_x996, _x997, _x998) {
|
|
3297
|
+
return _ref291.apply(this, arguments);
|
|
3285
3298
|
};
|
|
3286
3299
|
}();
|
|
3287
3300
|
export var search_themes = function () {
|
|
3288
|
-
var
|
|
3301
|
+
var _ref292 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3289
3302
|
return sdk.get('/themes/search', {
|
|
3290
3303
|
id: request.id,
|
|
3291
3304
|
name: request.name,
|
|
@@ -3299,34 +3312,34 @@ export var search_themes = function () {
|
|
|
3299
3312
|
}, null, options);
|
|
3300
3313
|
});
|
|
3301
3314
|
|
|
3302
|
-
return function search_themes(
|
|
3303
|
-
return
|
|
3315
|
+
return function search_themes(_x999, _x1000, _x1001) {
|
|
3316
|
+
return _ref292.apply(this, arguments);
|
|
3304
3317
|
};
|
|
3305
3318
|
}();
|
|
3306
3319
|
export var default_theme = function () {
|
|
3307
|
-
var
|
|
3320
|
+
var _ref293 = _asyncToGenerator(function* (sdk, ts, options) {
|
|
3308
3321
|
return sdk.get('/themes/default', {
|
|
3309
3322
|
ts
|
|
3310
3323
|
}, null, options);
|
|
3311
3324
|
});
|
|
3312
3325
|
|
|
3313
|
-
return function default_theme(
|
|
3314
|
-
return
|
|
3326
|
+
return function default_theme(_x1002, _x1003, _x1004) {
|
|
3327
|
+
return _ref293.apply(this, arguments);
|
|
3315
3328
|
};
|
|
3316
3329
|
}();
|
|
3317
3330
|
export var set_default_theme = function () {
|
|
3318
|
-
var
|
|
3331
|
+
var _ref294 = _asyncToGenerator(function* (sdk, name, options) {
|
|
3319
3332
|
return sdk.put('/themes/default', {
|
|
3320
3333
|
name
|
|
3321
3334
|
}, null, options);
|
|
3322
3335
|
});
|
|
3323
3336
|
|
|
3324
|
-
return function set_default_theme(
|
|
3325
|
-
return
|
|
3337
|
+
return function set_default_theme(_x1005, _x1006, _x1007) {
|
|
3338
|
+
return _ref294.apply(this, arguments);
|
|
3326
3339
|
};
|
|
3327
3340
|
}();
|
|
3328
3341
|
export var active_themes = function () {
|
|
3329
|
-
var
|
|
3342
|
+
var _ref295 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3330
3343
|
return sdk.get('/themes/active', {
|
|
3331
3344
|
name: request.name,
|
|
3332
3345
|
ts: request.ts,
|
|
@@ -3334,76 +3347,76 @@ export var active_themes = function () {
|
|
|
3334
3347
|
}, null, options);
|
|
3335
3348
|
});
|
|
3336
3349
|
|
|
3337
|
-
return function active_themes(
|
|
3338
|
-
return
|
|
3350
|
+
return function active_themes(_x1008, _x1009, _x1010) {
|
|
3351
|
+
return _ref295.apply(this, arguments);
|
|
3339
3352
|
};
|
|
3340
3353
|
}();
|
|
3341
3354
|
export var theme_or_default = function () {
|
|
3342
|
-
var
|
|
3355
|
+
var _ref296 = _asyncToGenerator(function* (sdk, name, ts, options) {
|
|
3343
3356
|
return sdk.get('/themes/theme_or_default', {
|
|
3344
3357
|
name,
|
|
3345
3358
|
ts
|
|
3346
3359
|
}, null, options);
|
|
3347
3360
|
});
|
|
3348
3361
|
|
|
3349
|
-
return function theme_or_default(
|
|
3350
|
-
return
|
|
3362
|
+
return function theme_or_default(_x1011, _x1012, _x1013, _x1014) {
|
|
3363
|
+
return _ref296.apply(this, arguments);
|
|
3351
3364
|
};
|
|
3352
3365
|
}();
|
|
3353
3366
|
export var validate_theme = function () {
|
|
3354
|
-
var
|
|
3367
|
+
var _ref297 = _asyncToGenerator(function* (sdk, body, options) {
|
|
3355
3368
|
return sdk.post('/themes/validate', null, body, options);
|
|
3356
3369
|
});
|
|
3357
3370
|
|
|
3358
|
-
return function validate_theme(
|
|
3359
|
-
return
|
|
3371
|
+
return function validate_theme(_x1015, _x1016, _x1017) {
|
|
3372
|
+
return _ref297.apply(this, arguments);
|
|
3360
3373
|
};
|
|
3361
3374
|
}();
|
|
3362
3375
|
export var theme = function () {
|
|
3363
|
-
var
|
|
3376
|
+
var _ref298 = _asyncToGenerator(function* (sdk, theme_id, fields, options) {
|
|
3364
3377
|
theme_id = encodeParam(theme_id);
|
|
3365
3378
|
return sdk.get("/themes/".concat(theme_id), {
|
|
3366
3379
|
fields
|
|
3367
3380
|
}, null, options);
|
|
3368
3381
|
});
|
|
3369
3382
|
|
|
3370
|
-
return function theme(
|
|
3371
|
-
return
|
|
3383
|
+
return function theme(_x1018, _x1019, _x1020, _x1021) {
|
|
3384
|
+
return _ref298.apply(this, arguments);
|
|
3372
3385
|
};
|
|
3373
3386
|
}();
|
|
3374
3387
|
export var update_theme = function () {
|
|
3375
|
-
var
|
|
3388
|
+
var _ref299 = _asyncToGenerator(function* (sdk, theme_id, body, options) {
|
|
3376
3389
|
theme_id = encodeParam(theme_id);
|
|
3377
3390
|
return sdk.patch("/themes/".concat(theme_id), null, body, options);
|
|
3378
3391
|
});
|
|
3379
3392
|
|
|
3380
|
-
return function update_theme(
|
|
3381
|
-
return
|
|
3393
|
+
return function update_theme(_x1022, _x1023, _x1024, _x1025) {
|
|
3394
|
+
return _ref299.apply(this, arguments);
|
|
3382
3395
|
};
|
|
3383
3396
|
}();
|
|
3384
3397
|
export var delete_theme = function () {
|
|
3385
|
-
var
|
|
3398
|
+
var _ref300 = _asyncToGenerator(function* (sdk, theme_id, options) {
|
|
3386
3399
|
theme_id = encodeParam(theme_id);
|
|
3387
3400
|
return sdk.delete("/themes/".concat(theme_id), null, null, options);
|
|
3388
3401
|
});
|
|
3389
3402
|
|
|
3390
|
-
return function delete_theme(
|
|
3391
|
-
return
|
|
3403
|
+
return function delete_theme(_x1026, _x1027, _x1028) {
|
|
3404
|
+
return _ref300.apply(this, arguments);
|
|
3392
3405
|
};
|
|
3393
3406
|
}();
|
|
3394
3407
|
export var me = function () {
|
|
3395
|
-
var
|
|
3408
|
+
var _ref301 = _asyncToGenerator(function* (sdk, fields, options) {
|
|
3396
3409
|
return sdk.get('/user', {
|
|
3397
3410
|
fields
|
|
3398
3411
|
}, null, options);
|
|
3399
3412
|
});
|
|
3400
3413
|
|
|
3401
|
-
return function me(
|
|
3402
|
-
return
|
|
3414
|
+
return function me(_x1029, _x1030, _x1031) {
|
|
3415
|
+
return _ref301.apply(this, arguments);
|
|
3403
3416
|
};
|
|
3404
3417
|
}();
|
|
3405
3418
|
export var all_users = function () {
|
|
3406
|
-
var
|
|
3419
|
+
var _ref302 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3407
3420
|
return sdk.get('/users', {
|
|
3408
3421
|
fields: request.fields,
|
|
3409
3422
|
page: request.page,
|
|
@@ -3413,23 +3426,23 @@ export var all_users = function () {
|
|
|
3413
3426
|
}, null, options);
|
|
3414
3427
|
});
|
|
3415
3428
|
|
|
3416
|
-
return function all_users(
|
|
3417
|
-
return
|
|
3429
|
+
return function all_users(_x1032, _x1033, _x1034) {
|
|
3430
|
+
return _ref302.apply(this, arguments);
|
|
3418
3431
|
};
|
|
3419
3432
|
}();
|
|
3420
3433
|
export var create_user = function () {
|
|
3421
|
-
var
|
|
3434
|
+
var _ref303 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
3422
3435
|
return sdk.post('/users', {
|
|
3423
3436
|
fields
|
|
3424
3437
|
}, body, options);
|
|
3425
3438
|
});
|
|
3426
3439
|
|
|
3427
|
-
return function create_user(
|
|
3428
|
-
return
|
|
3440
|
+
return function create_user(_x1035, _x1036, _x1037, _x1038) {
|
|
3441
|
+
return _ref303.apply(this, arguments);
|
|
3429
3442
|
};
|
|
3430
3443
|
}();
|
|
3431
3444
|
export var search_users = function () {
|
|
3432
|
-
var
|
|
3445
|
+
var _ref304 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3433
3446
|
return sdk.get('/users/search', {
|
|
3434
3447
|
fields: request.fields,
|
|
3435
3448
|
page: request.page,
|
|
@@ -3448,12 +3461,12 @@ export var search_users = function () {
|
|
|
3448
3461
|
}, null, options);
|
|
3449
3462
|
});
|
|
3450
3463
|
|
|
3451
|
-
return function search_users(
|
|
3452
|
-
return
|
|
3464
|
+
return function search_users(_x1039, _x1040, _x1041) {
|
|
3465
|
+
return _ref304.apply(this, arguments);
|
|
3453
3466
|
};
|
|
3454
3467
|
}();
|
|
3455
3468
|
export var search_users_names = function () {
|
|
3456
|
-
var
|
|
3469
|
+
var _ref305 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3457
3470
|
request.pattern = encodeParam(request.pattern);
|
|
3458
3471
|
return sdk.get("/users/search/names/".concat(request.pattern), {
|
|
3459
3472
|
fields: request.fields,
|
|
@@ -3469,43 +3482,43 @@ export var search_users_names = function () {
|
|
|
3469
3482
|
}, null, options);
|
|
3470
3483
|
});
|
|
3471
3484
|
|
|
3472
|
-
return function search_users_names(
|
|
3473
|
-
return
|
|
3485
|
+
return function search_users_names(_x1042, _x1043, _x1044) {
|
|
3486
|
+
return _ref305.apply(this, arguments);
|
|
3474
3487
|
};
|
|
3475
3488
|
}();
|
|
3476
3489
|
export var user = function () {
|
|
3477
|
-
var
|
|
3490
|
+
var _ref306 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
3478
3491
|
return sdk.get("/users/".concat(user_id), {
|
|
3479
3492
|
fields
|
|
3480
3493
|
}, null, options);
|
|
3481
3494
|
});
|
|
3482
3495
|
|
|
3483
|
-
return function user(
|
|
3484
|
-
return
|
|
3496
|
+
return function user(_x1045, _x1046, _x1047, _x1048) {
|
|
3497
|
+
return _ref306.apply(this, arguments);
|
|
3485
3498
|
};
|
|
3486
3499
|
}();
|
|
3487
3500
|
export var update_user = function () {
|
|
3488
|
-
var
|
|
3501
|
+
var _ref307 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
3489
3502
|
return sdk.patch("/users/".concat(user_id), {
|
|
3490
3503
|
fields
|
|
3491
3504
|
}, body, options);
|
|
3492
3505
|
});
|
|
3493
3506
|
|
|
3494
|
-
return function update_user(
|
|
3495
|
-
return
|
|
3507
|
+
return function update_user(_x1049, _x1050, _x1051, _x1052, _x1053) {
|
|
3508
|
+
return _ref307.apply(this, arguments);
|
|
3496
3509
|
};
|
|
3497
3510
|
}();
|
|
3498
3511
|
export var delete_user = function () {
|
|
3499
|
-
var
|
|
3512
|
+
var _ref308 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
3500
3513
|
return sdk.delete("/users/".concat(user_id), null, null, options);
|
|
3501
3514
|
});
|
|
3502
3515
|
|
|
3503
|
-
return function delete_user(
|
|
3504
|
-
return
|
|
3516
|
+
return function delete_user(_x1054, _x1055, _x1056) {
|
|
3517
|
+
return _ref308.apply(this, arguments);
|
|
3505
3518
|
};
|
|
3506
3519
|
}();
|
|
3507
3520
|
export var user_for_credential = function () {
|
|
3508
|
-
var
|
|
3521
|
+
var _ref309 = _asyncToGenerator(function* (sdk, credential_type, credential_id, fields, options) {
|
|
3509
3522
|
credential_type = encodeParam(credential_type);
|
|
3510
3523
|
credential_id = encodeParam(credential_id);
|
|
3511
3524
|
return sdk.get("/users/credential/".concat(credential_type, "/").concat(credential_id), {
|
|
@@ -3513,324 +3526,324 @@ export var user_for_credential = function () {
|
|
|
3513
3526
|
}, null, options);
|
|
3514
3527
|
});
|
|
3515
3528
|
|
|
3516
|
-
return function user_for_credential(
|
|
3517
|
-
return
|
|
3529
|
+
return function user_for_credential(_x1057, _x1058, _x1059, _x1060, _x1061) {
|
|
3530
|
+
return _ref309.apply(this, arguments);
|
|
3518
3531
|
};
|
|
3519
3532
|
}();
|
|
3520
3533
|
export var user_credentials_email = function () {
|
|
3521
|
-
var
|
|
3534
|
+
var _ref310 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
3522
3535
|
return sdk.get("/users/".concat(user_id, "/credentials_email"), {
|
|
3523
3536
|
fields
|
|
3524
3537
|
}, null, options);
|
|
3525
3538
|
});
|
|
3526
3539
|
|
|
3527
|
-
return function user_credentials_email(
|
|
3528
|
-
return
|
|
3540
|
+
return function user_credentials_email(_x1062, _x1063, _x1064, _x1065) {
|
|
3541
|
+
return _ref310.apply(this, arguments);
|
|
3529
3542
|
};
|
|
3530
3543
|
}();
|
|
3531
3544
|
export var create_user_credentials_email = function () {
|
|
3532
|
-
var
|
|
3545
|
+
var _ref311 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
3533
3546
|
return sdk.post("/users/".concat(user_id, "/credentials_email"), {
|
|
3534
3547
|
fields
|
|
3535
3548
|
}, body, options);
|
|
3536
3549
|
});
|
|
3537
3550
|
|
|
3538
|
-
return function create_user_credentials_email(
|
|
3539
|
-
return
|
|
3551
|
+
return function create_user_credentials_email(_x1066, _x1067, _x1068, _x1069, _x1070) {
|
|
3552
|
+
return _ref311.apply(this, arguments);
|
|
3540
3553
|
};
|
|
3541
3554
|
}();
|
|
3542
3555
|
export var update_user_credentials_email = function () {
|
|
3543
|
-
var
|
|
3556
|
+
var _ref312 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
3544
3557
|
return sdk.patch("/users/".concat(user_id, "/credentials_email"), {
|
|
3545
3558
|
fields
|
|
3546
3559
|
}, body, options);
|
|
3547
3560
|
});
|
|
3548
3561
|
|
|
3549
|
-
return function update_user_credentials_email(
|
|
3550
|
-
return
|
|
3562
|
+
return function update_user_credentials_email(_x1071, _x1072, _x1073, _x1074, _x1075) {
|
|
3563
|
+
return _ref312.apply(this, arguments);
|
|
3551
3564
|
};
|
|
3552
3565
|
}();
|
|
3553
3566
|
export var delete_user_credentials_email = function () {
|
|
3554
|
-
var
|
|
3567
|
+
var _ref313 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
3555
3568
|
return sdk.delete("/users/".concat(user_id, "/credentials_email"), null, null, options);
|
|
3556
3569
|
});
|
|
3557
3570
|
|
|
3558
|
-
return function delete_user_credentials_email(
|
|
3559
|
-
return
|
|
3571
|
+
return function delete_user_credentials_email(_x1076, _x1077, _x1078) {
|
|
3572
|
+
return _ref313.apply(this, arguments);
|
|
3560
3573
|
};
|
|
3561
3574
|
}();
|
|
3562
3575
|
export var user_credentials_totp = function () {
|
|
3563
|
-
var
|
|
3576
|
+
var _ref314 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
3564
3577
|
return sdk.get("/users/".concat(user_id, "/credentials_totp"), {
|
|
3565
3578
|
fields
|
|
3566
3579
|
}, null, options);
|
|
3567
3580
|
});
|
|
3568
3581
|
|
|
3569
|
-
return function user_credentials_totp(
|
|
3570
|
-
return
|
|
3582
|
+
return function user_credentials_totp(_x1079, _x1080, _x1081, _x1082) {
|
|
3583
|
+
return _ref314.apply(this, arguments);
|
|
3571
3584
|
};
|
|
3572
3585
|
}();
|
|
3573
3586
|
export var create_user_credentials_totp = function () {
|
|
3574
|
-
var
|
|
3587
|
+
var _ref315 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
3575
3588
|
return sdk.post("/users/".concat(user_id, "/credentials_totp"), {
|
|
3576
3589
|
fields
|
|
3577
3590
|
}, body, options);
|
|
3578
3591
|
});
|
|
3579
3592
|
|
|
3580
|
-
return function create_user_credentials_totp(
|
|
3581
|
-
return
|
|
3593
|
+
return function create_user_credentials_totp(_x1083, _x1084, _x1085, _x1086, _x1087) {
|
|
3594
|
+
return _ref315.apply(this, arguments);
|
|
3582
3595
|
};
|
|
3583
3596
|
}();
|
|
3584
3597
|
export var delete_user_credentials_totp = function () {
|
|
3585
|
-
var
|
|
3598
|
+
var _ref316 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
3586
3599
|
return sdk.delete("/users/".concat(user_id, "/credentials_totp"), null, null, options);
|
|
3587
3600
|
});
|
|
3588
3601
|
|
|
3589
|
-
return function delete_user_credentials_totp(
|
|
3590
|
-
return
|
|
3602
|
+
return function delete_user_credentials_totp(_x1088, _x1089, _x1090) {
|
|
3603
|
+
return _ref316.apply(this, arguments);
|
|
3591
3604
|
};
|
|
3592
3605
|
}();
|
|
3593
3606
|
export var user_credentials_ldap = function () {
|
|
3594
|
-
var
|
|
3607
|
+
var _ref317 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
3595
3608
|
return sdk.get("/users/".concat(user_id, "/credentials_ldap"), {
|
|
3596
3609
|
fields
|
|
3597
3610
|
}, null, options);
|
|
3598
3611
|
});
|
|
3599
3612
|
|
|
3600
|
-
return function user_credentials_ldap(
|
|
3601
|
-
return
|
|
3613
|
+
return function user_credentials_ldap(_x1091, _x1092, _x1093, _x1094) {
|
|
3614
|
+
return _ref317.apply(this, arguments);
|
|
3602
3615
|
};
|
|
3603
3616
|
}();
|
|
3604
3617
|
export var delete_user_credentials_ldap = function () {
|
|
3605
|
-
var
|
|
3618
|
+
var _ref318 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
3606
3619
|
return sdk.delete("/users/".concat(user_id, "/credentials_ldap"), null, null, options);
|
|
3607
3620
|
});
|
|
3608
3621
|
|
|
3609
|
-
return function delete_user_credentials_ldap(
|
|
3610
|
-
return
|
|
3622
|
+
return function delete_user_credentials_ldap(_x1095, _x1096, _x1097) {
|
|
3623
|
+
return _ref318.apply(this, arguments);
|
|
3611
3624
|
};
|
|
3612
3625
|
}();
|
|
3613
3626
|
export var user_credentials_google = function () {
|
|
3614
|
-
var
|
|
3627
|
+
var _ref319 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
3615
3628
|
return sdk.get("/users/".concat(user_id, "/credentials_google"), {
|
|
3616
3629
|
fields
|
|
3617
3630
|
}, null, options);
|
|
3618
3631
|
});
|
|
3619
3632
|
|
|
3620
|
-
return function user_credentials_google(
|
|
3621
|
-
return
|
|
3633
|
+
return function user_credentials_google(_x1098, _x1099, _x1100, _x1101) {
|
|
3634
|
+
return _ref319.apply(this, arguments);
|
|
3622
3635
|
};
|
|
3623
3636
|
}();
|
|
3624
3637
|
export var delete_user_credentials_google = function () {
|
|
3625
|
-
var
|
|
3638
|
+
var _ref320 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
3626
3639
|
return sdk.delete("/users/".concat(user_id, "/credentials_google"), null, null, options);
|
|
3627
3640
|
});
|
|
3628
3641
|
|
|
3629
|
-
return function delete_user_credentials_google(
|
|
3630
|
-
return
|
|
3642
|
+
return function delete_user_credentials_google(_x1102, _x1103, _x1104) {
|
|
3643
|
+
return _ref320.apply(this, arguments);
|
|
3631
3644
|
};
|
|
3632
3645
|
}();
|
|
3633
3646
|
export var user_credentials_saml = function () {
|
|
3634
|
-
var
|
|
3647
|
+
var _ref321 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
3635
3648
|
return sdk.get("/users/".concat(user_id, "/credentials_saml"), {
|
|
3636
3649
|
fields
|
|
3637
3650
|
}, null, options);
|
|
3638
3651
|
});
|
|
3639
3652
|
|
|
3640
|
-
return function user_credentials_saml(
|
|
3641
|
-
return
|
|
3653
|
+
return function user_credentials_saml(_x1105, _x1106, _x1107, _x1108) {
|
|
3654
|
+
return _ref321.apply(this, arguments);
|
|
3642
3655
|
};
|
|
3643
3656
|
}();
|
|
3644
3657
|
export var delete_user_credentials_saml = function () {
|
|
3645
|
-
var
|
|
3658
|
+
var _ref322 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
3646
3659
|
return sdk.delete("/users/".concat(user_id, "/credentials_saml"), null, null, options);
|
|
3647
3660
|
});
|
|
3648
3661
|
|
|
3649
|
-
return function delete_user_credentials_saml(
|
|
3650
|
-
return
|
|
3662
|
+
return function delete_user_credentials_saml(_x1109, _x1110, _x1111) {
|
|
3663
|
+
return _ref322.apply(this, arguments);
|
|
3651
3664
|
};
|
|
3652
3665
|
}();
|
|
3653
3666
|
export var user_credentials_oidc = function () {
|
|
3654
|
-
var
|
|
3667
|
+
var _ref323 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
3655
3668
|
return sdk.get("/users/".concat(user_id, "/credentials_oidc"), {
|
|
3656
3669
|
fields
|
|
3657
3670
|
}, null, options);
|
|
3658
3671
|
});
|
|
3659
3672
|
|
|
3660
|
-
return function user_credentials_oidc(
|
|
3661
|
-
return
|
|
3673
|
+
return function user_credentials_oidc(_x1112, _x1113, _x1114, _x1115) {
|
|
3674
|
+
return _ref323.apply(this, arguments);
|
|
3662
3675
|
};
|
|
3663
3676
|
}();
|
|
3664
3677
|
export var delete_user_credentials_oidc = function () {
|
|
3665
|
-
var
|
|
3678
|
+
var _ref324 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
3666
3679
|
return sdk.delete("/users/".concat(user_id, "/credentials_oidc"), null, null, options);
|
|
3667
3680
|
});
|
|
3668
3681
|
|
|
3669
|
-
return function delete_user_credentials_oidc(
|
|
3670
|
-
return
|
|
3682
|
+
return function delete_user_credentials_oidc(_x1116, _x1117, _x1118) {
|
|
3683
|
+
return _ref324.apply(this, arguments);
|
|
3671
3684
|
};
|
|
3672
3685
|
}();
|
|
3673
3686
|
export var user_credentials_api3 = function () {
|
|
3674
|
-
var
|
|
3687
|
+
var _ref325 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, fields, options) {
|
|
3675
3688
|
return sdk.get("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), {
|
|
3676
3689
|
fields
|
|
3677
3690
|
}, null, options);
|
|
3678
3691
|
});
|
|
3679
3692
|
|
|
3680
|
-
return function user_credentials_api3(
|
|
3681
|
-
return
|
|
3693
|
+
return function user_credentials_api3(_x1119, _x1120, _x1121, _x1122, _x1123) {
|
|
3694
|
+
return _ref325.apply(this, arguments);
|
|
3682
3695
|
};
|
|
3683
3696
|
}();
|
|
3684
3697
|
export var delete_user_credentials_api3 = function () {
|
|
3685
|
-
var
|
|
3698
|
+
var _ref326 = _asyncToGenerator(function* (sdk, user_id, credentials_api3_id, options) {
|
|
3686
3699
|
return sdk.delete("/users/".concat(user_id, "/credentials_api3/").concat(credentials_api3_id), null, null, options);
|
|
3687
3700
|
});
|
|
3688
3701
|
|
|
3689
|
-
return function delete_user_credentials_api3(
|
|
3690
|
-
return
|
|
3702
|
+
return function delete_user_credentials_api3(_x1124, _x1125, _x1126, _x1127) {
|
|
3703
|
+
return _ref326.apply(this, arguments);
|
|
3691
3704
|
};
|
|
3692
3705
|
}();
|
|
3693
3706
|
export var all_user_credentials_api3s = function () {
|
|
3694
|
-
var
|
|
3707
|
+
var _ref327 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
3695
3708
|
return sdk.get("/users/".concat(user_id, "/credentials_api3"), {
|
|
3696
3709
|
fields
|
|
3697
3710
|
}, null, options);
|
|
3698
3711
|
});
|
|
3699
3712
|
|
|
3700
|
-
return function all_user_credentials_api3s(
|
|
3701
|
-
return
|
|
3713
|
+
return function all_user_credentials_api3s(_x1128, _x1129, _x1130, _x1131) {
|
|
3714
|
+
return _ref327.apply(this, arguments);
|
|
3702
3715
|
};
|
|
3703
3716
|
}();
|
|
3704
3717
|
export var create_user_credentials_api3 = function () {
|
|
3705
|
-
var
|
|
3718
|
+
var _ref328 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
3706
3719
|
return sdk.post("/users/".concat(user_id, "/credentials_api3"), {
|
|
3707
3720
|
fields
|
|
3708
3721
|
}, body, options);
|
|
3709
3722
|
});
|
|
3710
3723
|
|
|
3711
|
-
return function create_user_credentials_api3(
|
|
3712
|
-
return
|
|
3724
|
+
return function create_user_credentials_api3(_x1132, _x1133, _x1134, _x1135, _x1136) {
|
|
3725
|
+
return _ref328.apply(this, arguments);
|
|
3713
3726
|
};
|
|
3714
3727
|
}();
|
|
3715
3728
|
export var user_credentials_embed = function () {
|
|
3716
|
-
var
|
|
3729
|
+
var _ref329 = _asyncToGenerator(function* (sdk, user_id, credentials_embed_id, fields, options) {
|
|
3717
3730
|
return sdk.get("/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), {
|
|
3718
3731
|
fields
|
|
3719
3732
|
}, null, options);
|
|
3720
3733
|
});
|
|
3721
3734
|
|
|
3722
|
-
return function user_credentials_embed(
|
|
3723
|
-
return
|
|
3735
|
+
return function user_credentials_embed(_x1137, _x1138, _x1139, _x1140, _x1141) {
|
|
3736
|
+
return _ref329.apply(this, arguments);
|
|
3724
3737
|
};
|
|
3725
3738
|
}();
|
|
3726
3739
|
export var delete_user_credentials_embed = function () {
|
|
3727
|
-
var
|
|
3740
|
+
var _ref330 = _asyncToGenerator(function* (sdk, user_id, credentials_embed_id, options) {
|
|
3728
3741
|
return sdk.delete("/users/".concat(user_id, "/credentials_embed/").concat(credentials_embed_id), null, null, options);
|
|
3729
3742
|
});
|
|
3730
3743
|
|
|
3731
|
-
return function delete_user_credentials_embed(
|
|
3732
|
-
return
|
|
3744
|
+
return function delete_user_credentials_embed(_x1142, _x1143, _x1144, _x1145) {
|
|
3745
|
+
return _ref330.apply(this, arguments);
|
|
3733
3746
|
};
|
|
3734
3747
|
}();
|
|
3735
3748
|
export var all_user_credentials_embeds = function () {
|
|
3736
|
-
var
|
|
3749
|
+
var _ref331 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
3737
3750
|
return sdk.get("/users/".concat(user_id, "/credentials_embed"), {
|
|
3738
3751
|
fields
|
|
3739
3752
|
}, null, options);
|
|
3740
3753
|
});
|
|
3741
3754
|
|
|
3742
|
-
return function all_user_credentials_embeds(
|
|
3743
|
-
return
|
|
3755
|
+
return function all_user_credentials_embeds(_x1146, _x1147, _x1148, _x1149) {
|
|
3756
|
+
return _ref331.apply(this, arguments);
|
|
3744
3757
|
};
|
|
3745
3758
|
}();
|
|
3746
3759
|
export var user_credentials_looker_openid = function () {
|
|
3747
|
-
var
|
|
3760
|
+
var _ref332 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
3748
3761
|
return sdk.get("/users/".concat(user_id, "/credentials_looker_openid"), {
|
|
3749
3762
|
fields
|
|
3750
3763
|
}, null, options);
|
|
3751
3764
|
});
|
|
3752
3765
|
|
|
3753
|
-
return function user_credentials_looker_openid(
|
|
3754
|
-
return
|
|
3766
|
+
return function user_credentials_looker_openid(_x1150, _x1151, _x1152, _x1153) {
|
|
3767
|
+
return _ref332.apply(this, arguments);
|
|
3755
3768
|
};
|
|
3756
3769
|
}();
|
|
3757
3770
|
export var delete_user_credentials_looker_openid = function () {
|
|
3758
|
-
var
|
|
3771
|
+
var _ref333 = _asyncToGenerator(function* (sdk, user_id, options) {
|
|
3759
3772
|
return sdk.delete("/users/".concat(user_id, "/credentials_looker_openid"), null, null, options);
|
|
3760
3773
|
});
|
|
3761
3774
|
|
|
3762
|
-
return function delete_user_credentials_looker_openid(
|
|
3763
|
-
return
|
|
3775
|
+
return function delete_user_credentials_looker_openid(_x1154, _x1155, _x1156) {
|
|
3776
|
+
return _ref333.apply(this, arguments);
|
|
3764
3777
|
};
|
|
3765
3778
|
}();
|
|
3766
3779
|
export var user_session = function () {
|
|
3767
|
-
var
|
|
3780
|
+
var _ref334 = _asyncToGenerator(function* (sdk, user_id, session_id, fields, options) {
|
|
3768
3781
|
return sdk.get("/users/".concat(user_id, "/sessions/").concat(session_id), {
|
|
3769
3782
|
fields
|
|
3770
3783
|
}, null, options);
|
|
3771
3784
|
});
|
|
3772
3785
|
|
|
3773
|
-
return function user_session(
|
|
3774
|
-
return
|
|
3786
|
+
return function user_session(_x1157, _x1158, _x1159, _x1160, _x1161) {
|
|
3787
|
+
return _ref334.apply(this, arguments);
|
|
3775
3788
|
};
|
|
3776
3789
|
}();
|
|
3777
3790
|
export var delete_user_session = function () {
|
|
3778
|
-
var
|
|
3791
|
+
var _ref335 = _asyncToGenerator(function* (sdk, user_id, session_id, options) {
|
|
3779
3792
|
return sdk.delete("/users/".concat(user_id, "/sessions/").concat(session_id), null, null, options);
|
|
3780
3793
|
});
|
|
3781
3794
|
|
|
3782
|
-
return function delete_user_session(
|
|
3783
|
-
return
|
|
3795
|
+
return function delete_user_session(_x1162, _x1163, _x1164, _x1165) {
|
|
3796
|
+
return _ref335.apply(this, arguments);
|
|
3784
3797
|
};
|
|
3785
3798
|
}();
|
|
3786
3799
|
export var all_user_sessions = function () {
|
|
3787
|
-
var
|
|
3800
|
+
var _ref336 = _asyncToGenerator(function* (sdk, user_id, fields, options) {
|
|
3788
3801
|
return sdk.get("/users/".concat(user_id, "/sessions"), {
|
|
3789
3802
|
fields
|
|
3790
3803
|
}, null, options);
|
|
3791
3804
|
});
|
|
3792
3805
|
|
|
3793
|
-
return function all_user_sessions(
|
|
3794
|
-
return
|
|
3806
|
+
return function all_user_sessions(_x1166, _x1167, _x1168, _x1169) {
|
|
3807
|
+
return _ref336.apply(this, arguments);
|
|
3795
3808
|
};
|
|
3796
3809
|
}();
|
|
3797
3810
|
export var create_user_credentials_email_password_reset = function () {
|
|
3798
|
-
var
|
|
3811
|
+
var _ref337 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3799
3812
|
return sdk.post("/users/".concat(request.user_id, "/credentials_email/password_reset"), {
|
|
3800
3813
|
expires: request.expires,
|
|
3801
3814
|
fields: request.fields
|
|
3802
3815
|
}, null, options);
|
|
3803
3816
|
});
|
|
3804
3817
|
|
|
3805
|
-
return function create_user_credentials_email_password_reset(
|
|
3806
|
-
return
|
|
3818
|
+
return function create_user_credentials_email_password_reset(_x1170, _x1171, _x1172) {
|
|
3819
|
+
return _ref337.apply(this, arguments);
|
|
3807
3820
|
};
|
|
3808
3821
|
}();
|
|
3809
3822
|
export var user_roles = function () {
|
|
3810
|
-
var
|
|
3823
|
+
var _ref338 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3811
3824
|
return sdk.get("/users/".concat(request.user_id, "/roles"), {
|
|
3812
3825
|
fields: request.fields,
|
|
3813
3826
|
direct_association_only: request.direct_association_only
|
|
3814
3827
|
}, null, options);
|
|
3815
3828
|
});
|
|
3816
3829
|
|
|
3817
|
-
return function user_roles(
|
|
3818
|
-
return
|
|
3830
|
+
return function user_roles(_x1173, _x1174, _x1175) {
|
|
3831
|
+
return _ref338.apply(this, arguments);
|
|
3819
3832
|
};
|
|
3820
3833
|
}();
|
|
3821
3834
|
export var set_user_roles = function () {
|
|
3822
|
-
var
|
|
3835
|
+
var _ref339 = _asyncToGenerator(function* (sdk, user_id, body, fields, options) {
|
|
3823
3836
|
return sdk.put("/users/".concat(user_id, "/roles"), {
|
|
3824
3837
|
fields
|
|
3825
3838
|
}, body, options);
|
|
3826
3839
|
});
|
|
3827
3840
|
|
|
3828
|
-
return function set_user_roles(
|
|
3829
|
-
return
|
|
3841
|
+
return function set_user_roles(_x1176, _x1177, _x1178, _x1179, _x1180) {
|
|
3842
|
+
return _ref339.apply(this, arguments);
|
|
3830
3843
|
};
|
|
3831
3844
|
}();
|
|
3832
3845
|
export var user_attribute_user_values = function () {
|
|
3833
|
-
var
|
|
3846
|
+
var _ref340 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3834
3847
|
return sdk.get("/users/".concat(request.user_id, "/attribute_values"), {
|
|
3835
3848
|
fields: request.fields,
|
|
3836
3849
|
user_attribute_ids: request.user_attribute_ids,
|
|
@@ -3839,119 +3852,119 @@ export var user_attribute_user_values = function () {
|
|
|
3839
3852
|
}, null, options);
|
|
3840
3853
|
});
|
|
3841
3854
|
|
|
3842
|
-
return function user_attribute_user_values(
|
|
3843
|
-
return
|
|
3855
|
+
return function user_attribute_user_values(_x1181, _x1182, _x1183) {
|
|
3856
|
+
return _ref340.apply(this, arguments);
|
|
3844
3857
|
};
|
|
3845
3858
|
}();
|
|
3846
3859
|
export var set_user_attribute_user_value = function () {
|
|
3847
|
-
var
|
|
3860
|
+
var _ref341 = _asyncToGenerator(function* (sdk, user_id, user_attribute_id, body, options) {
|
|
3848
3861
|
return sdk.patch("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, body, options);
|
|
3849
3862
|
});
|
|
3850
3863
|
|
|
3851
|
-
return function set_user_attribute_user_value(
|
|
3852
|
-
return
|
|
3864
|
+
return function set_user_attribute_user_value(_x1184, _x1185, _x1186, _x1187, _x1188) {
|
|
3865
|
+
return _ref341.apply(this, arguments);
|
|
3853
3866
|
};
|
|
3854
3867
|
}();
|
|
3855
3868
|
export var delete_user_attribute_user_value = function () {
|
|
3856
|
-
var
|
|
3869
|
+
var _ref342 = _asyncToGenerator(function* (sdk, user_id, user_attribute_id, options) {
|
|
3857
3870
|
return sdk.delete("/users/".concat(user_id, "/attribute_values/").concat(user_attribute_id), null, null, options);
|
|
3858
3871
|
});
|
|
3859
3872
|
|
|
3860
|
-
return function delete_user_attribute_user_value(
|
|
3861
|
-
return
|
|
3873
|
+
return function delete_user_attribute_user_value(_x1189, _x1190, _x1191, _x1192) {
|
|
3874
|
+
return _ref342.apply(this, arguments);
|
|
3862
3875
|
};
|
|
3863
3876
|
}();
|
|
3864
3877
|
export var all_user_attributes = function () {
|
|
3865
|
-
var
|
|
3878
|
+
var _ref343 = _asyncToGenerator(function* (sdk, request, options) {
|
|
3866
3879
|
return sdk.get('/user_attributes', {
|
|
3867
3880
|
fields: request.fields,
|
|
3868
3881
|
sorts: request.sorts
|
|
3869
3882
|
}, null, options);
|
|
3870
3883
|
});
|
|
3871
3884
|
|
|
3872
|
-
return function all_user_attributes(
|
|
3873
|
-
return
|
|
3885
|
+
return function all_user_attributes(_x1193, _x1194, _x1195) {
|
|
3886
|
+
return _ref343.apply(this, arguments);
|
|
3874
3887
|
};
|
|
3875
3888
|
}();
|
|
3876
3889
|
export var create_user_attribute = function () {
|
|
3877
|
-
var
|
|
3890
|
+
var _ref344 = _asyncToGenerator(function* (sdk, body, fields, options) {
|
|
3878
3891
|
return sdk.post('/user_attributes', {
|
|
3879
3892
|
fields
|
|
3880
3893
|
}, body, options);
|
|
3881
3894
|
});
|
|
3882
3895
|
|
|
3883
|
-
return function create_user_attribute(
|
|
3884
|
-
return
|
|
3896
|
+
return function create_user_attribute(_x1196, _x1197, _x1198, _x1199) {
|
|
3897
|
+
return _ref344.apply(this, arguments);
|
|
3885
3898
|
};
|
|
3886
3899
|
}();
|
|
3887
3900
|
export var user_attribute = function () {
|
|
3888
|
-
var
|
|
3901
|
+
var _ref345 = _asyncToGenerator(function* (sdk, user_attribute_id, fields, options) {
|
|
3889
3902
|
return sdk.get("/user_attributes/".concat(user_attribute_id), {
|
|
3890
3903
|
fields
|
|
3891
3904
|
}, null, options);
|
|
3892
3905
|
});
|
|
3893
3906
|
|
|
3894
|
-
return function user_attribute(
|
|
3895
|
-
return
|
|
3907
|
+
return function user_attribute(_x1200, _x1201, _x1202, _x1203) {
|
|
3908
|
+
return _ref345.apply(this, arguments);
|
|
3896
3909
|
};
|
|
3897
3910
|
}();
|
|
3898
3911
|
export var update_user_attribute = function () {
|
|
3899
|
-
var
|
|
3912
|
+
var _ref346 = _asyncToGenerator(function* (sdk, user_attribute_id, body, fields, options) {
|
|
3900
3913
|
return sdk.patch("/user_attributes/".concat(user_attribute_id), {
|
|
3901
3914
|
fields
|
|
3902
3915
|
}, body, options);
|
|
3903
3916
|
});
|
|
3904
3917
|
|
|
3905
|
-
return function update_user_attribute(
|
|
3906
|
-
return
|
|
3918
|
+
return function update_user_attribute(_x1204, _x1205, _x1206, _x1207, _x1208) {
|
|
3919
|
+
return _ref346.apply(this, arguments);
|
|
3907
3920
|
};
|
|
3908
3921
|
}();
|
|
3909
3922
|
export var delete_user_attribute = function () {
|
|
3910
|
-
var
|
|
3923
|
+
var _ref347 = _asyncToGenerator(function* (sdk, user_attribute_id, options) {
|
|
3911
3924
|
return sdk.delete("/user_attributes/".concat(user_attribute_id), null, null, options);
|
|
3912
3925
|
});
|
|
3913
3926
|
|
|
3914
|
-
return function delete_user_attribute(
|
|
3915
|
-
return
|
|
3927
|
+
return function delete_user_attribute(_x1209, _x1210, _x1211) {
|
|
3928
|
+
return _ref347.apply(this, arguments);
|
|
3916
3929
|
};
|
|
3917
3930
|
}();
|
|
3918
3931
|
export var all_user_attribute_group_values = function () {
|
|
3919
|
-
var
|
|
3932
|
+
var _ref348 = _asyncToGenerator(function* (sdk, user_attribute_id, fields, options) {
|
|
3920
3933
|
return sdk.get("/user_attributes/".concat(user_attribute_id, "/group_values"), {
|
|
3921
3934
|
fields
|
|
3922
3935
|
}, null, options);
|
|
3923
3936
|
});
|
|
3924
3937
|
|
|
3925
|
-
return function all_user_attribute_group_values(
|
|
3926
|
-
return
|
|
3938
|
+
return function all_user_attribute_group_values(_x1212, _x1213, _x1214, _x1215) {
|
|
3939
|
+
return _ref348.apply(this, arguments);
|
|
3927
3940
|
};
|
|
3928
3941
|
}();
|
|
3929
3942
|
export var set_user_attribute_group_values = function () {
|
|
3930
|
-
var
|
|
3943
|
+
var _ref349 = _asyncToGenerator(function* (sdk, user_attribute_id, body, options) {
|
|
3931
3944
|
return sdk.post("/user_attributes/".concat(user_attribute_id, "/group_values"), null, body, options);
|
|
3932
3945
|
});
|
|
3933
3946
|
|
|
3934
|
-
return function set_user_attribute_group_values(
|
|
3935
|
-
return
|
|
3947
|
+
return function set_user_attribute_group_values(_x1216, _x1217, _x1218, _x1219) {
|
|
3948
|
+
return _ref349.apply(this, arguments);
|
|
3936
3949
|
};
|
|
3937
3950
|
}();
|
|
3938
3951
|
export var all_workspaces = function () {
|
|
3939
|
-
var
|
|
3952
|
+
var _ref350 = _asyncToGenerator(function* (sdk, options) {
|
|
3940
3953
|
return sdk.get('/workspaces', null, null, options);
|
|
3941
3954
|
});
|
|
3942
3955
|
|
|
3943
|
-
return function all_workspaces(
|
|
3944
|
-
return
|
|
3956
|
+
return function all_workspaces(_x1220, _x1221) {
|
|
3957
|
+
return _ref350.apply(this, arguments);
|
|
3945
3958
|
};
|
|
3946
3959
|
}();
|
|
3947
3960
|
export var workspace = function () {
|
|
3948
|
-
var
|
|
3961
|
+
var _ref351 = _asyncToGenerator(function* (sdk, workspace_id, options) {
|
|
3949
3962
|
workspace_id = encodeParam(workspace_id);
|
|
3950
3963
|
return sdk.get("/workspaces/".concat(workspace_id), null, null, options);
|
|
3951
3964
|
});
|
|
3952
3965
|
|
|
3953
|
-
return function workspace(
|
|
3954
|
-
return
|
|
3966
|
+
return function workspace(_x1222, _x1223, _x1224) {
|
|
3967
|
+
return _ref351.apply(this, arguments);
|
|
3955
3968
|
};
|
|
3956
3969
|
}();
|
|
3957
3970
|
//# sourceMappingURL=funcs.js.map
|