@nixopus/api-client 0.0.3 → 0.0.4
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/dist/index.d.mts +3267 -37
- package/dist/index.d.ts +3267 -37
- package/dist/index.js +1815 -0
- package/dist/index.mjs +1659 -0
- package/package.json +8 -3
package/dist/index.mjs
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
// src/@tanstack/react-query.gen.ts
|
|
2
|
+
import { infiniteQueryOptions, queryOptions } from "@tanstack/react-query";
|
|
3
|
+
|
|
1
4
|
// src/core/bodySerializer.gen.ts
|
|
2
5
|
var jsonBodySerializer = {
|
|
3
6
|
bodySerializer: (body) => JSON.stringify(body, (_key, value) => typeof value === "bigint" ? value.toString() : value)
|
|
@@ -1313,6 +1316,1506 @@ var postApiV1Webhook = (options) => (options?.client ?? client).post({ url: "/ap
|
|
|
1313
1316
|
var getWs = (options) => (options?.client ?? client).get({ url: "/ws", ...options });
|
|
1314
1317
|
var getWsLiveApplicationId = (options) => (options.client ?? client).get({ url: "/ws/live/{application_id}", ...options });
|
|
1315
1318
|
|
|
1319
|
+
// src/@tanstack/react-query.gen.ts
|
|
1320
|
+
var createQueryKey = (id, options, infinite, tags) => {
|
|
1321
|
+
const params = { _id: id, baseUrl: options?.baseUrl || (options?.client ?? client).getConfig().baseUrl };
|
|
1322
|
+
if (infinite) {
|
|
1323
|
+
params._infinite = infinite;
|
|
1324
|
+
}
|
|
1325
|
+
if (tags) {
|
|
1326
|
+
params.tags = tags;
|
|
1327
|
+
}
|
|
1328
|
+
if (options?.body) {
|
|
1329
|
+
params.body = options.body;
|
|
1330
|
+
}
|
|
1331
|
+
if (options?.headers) {
|
|
1332
|
+
params.headers = options.headers;
|
|
1333
|
+
}
|
|
1334
|
+
if (options?.path) {
|
|
1335
|
+
params.path = options.path;
|
|
1336
|
+
}
|
|
1337
|
+
if (options?.query) {
|
|
1338
|
+
params.query = options.query;
|
|
1339
|
+
}
|
|
1340
|
+
return [params];
|
|
1341
|
+
};
|
|
1342
|
+
var getApiV1AuditLogsQueryKey = (options) => createQueryKey("getApiV1AuditLogs", options);
|
|
1343
|
+
var getApiV1AuditLogsOptions = (options) => queryOptions({
|
|
1344
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
1345
|
+
const { data } = await getApiV1AuditLogs({
|
|
1346
|
+
...options,
|
|
1347
|
+
...queryKey[0],
|
|
1348
|
+
signal,
|
|
1349
|
+
throwOnError: true
|
|
1350
|
+
});
|
|
1351
|
+
return data;
|
|
1352
|
+
},
|
|
1353
|
+
queryKey: getApiV1AuditLogsQueryKey(options)
|
|
1354
|
+
});
|
|
1355
|
+
var getApiV1AuthBootstrapQueryKey = (options) => createQueryKey("getApiV1AuthBootstrap", options);
|
|
1356
|
+
var getApiV1AuthBootstrapOptions = (options) => queryOptions({
|
|
1357
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
1358
|
+
const { data } = await getApiV1AuthBootstrap({
|
|
1359
|
+
...options,
|
|
1360
|
+
...queryKey[0],
|
|
1361
|
+
signal,
|
|
1362
|
+
throwOnError: true
|
|
1363
|
+
});
|
|
1364
|
+
return data;
|
|
1365
|
+
},
|
|
1366
|
+
queryKey: getApiV1AuthBootstrapQueryKey(options)
|
|
1367
|
+
});
|
|
1368
|
+
var postApiV1AuthCliInitMutation = (options) => {
|
|
1369
|
+
const mutationOptions = {
|
|
1370
|
+
mutationFn: async (fnOptions) => {
|
|
1371
|
+
const { data } = await postApiV1AuthCliInit({
|
|
1372
|
+
...options,
|
|
1373
|
+
...fnOptions,
|
|
1374
|
+
throwOnError: true
|
|
1375
|
+
});
|
|
1376
|
+
return data;
|
|
1377
|
+
}
|
|
1378
|
+
};
|
|
1379
|
+
return mutationOptions;
|
|
1380
|
+
};
|
|
1381
|
+
var getApiV1AuthIsAdminRegisteredQueryKey = (options) => createQueryKey("getApiV1AuthIsAdminRegistered", options);
|
|
1382
|
+
var getApiV1AuthIsAdminRegisteredOptions = (options) => queryOptions({
|
|
1383
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
1384
|
+
const { data } = await getApiV1AuthIsAdminRegistered({
|
|
1385
|
+
...options,
|
|
1386
|
+
...queryKey[0],
|
|
1387
|
+
signal,
|
|
1388
|
+
throwOnError: true
|
|
1389
|
+
});
|
|
1390
|
+
return data;
|
|
1391
|
+
},
|
|
1392
|
+
queryKey: getApiV1AuthIsAdminRegisteredQueryKey(options)
|
|
1393
|
+
});
|
|
1394
|
+
var getApiV1ContainerQueryKey = (options) => createQueryKey("getApiV1Container", options);
|
|
1395
|
+
var getApiV1ContainerOptions = (options) => queryOptions({
|
|
1396
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
1397
|
+
const { data } = await getApiV1Container({
|
|
1398
|
+
...options,
|
|
1399
|
+
...queryKey[0],
|
|
1400
|
+
signal,
|
|
1401
|
+
throwOnError: true
|
|
1402
|
+
});
|
|
1403
|
+
return data;
|
|
1404
|
+
},
|
|
1405
|
+
queryKey: getApiV1ContainerQueryKey(options)
|
|
1406
|
+
});
|
|
1407
|
+
var postApiV1ContainerImagesMutation = (options) => {
|
|
1408
|
+
const mutationOptions = {
|
|
1409
|
+
mutationFn: async (fnOptions) => {
|
|
1410
|
+
const { data } = await postApiV1ContainerImages({
|
|
1411
|
+
...options,
|
|
1412
|
+
...fnOptions,
|
|
1413
|
+
throwOnError: true
|
|
1414
|
+
});
|
|
1415
|
+
return data;
|
|
1416
|
+
}
|
|
1417
|
+
};
|
|
1418
|
+
return mutationOptions;
|
|
1419
|
+
};
|
|
1420
|
+
var postApiV1ContainerPruneBuildCacheMutation = (options) => {
|
|
1421
|
+
const mutationOptions = {
|
|
1422
|
+
mutationFn: async (fnOptions) => {
|
|
1423
|
+
const { data } = await postApiV1ContainerPruneBuildCache({
|
|
1424
|
+
...options,
|
|
1425
|
+
...fnOptions,
|
|
1426
|
+
throwOnError: true
|
|
1427
|
+
});
|
|
1428
|
+
return data;
|
|
1429
|
+
}
|
|
1430
|
+
};
|
|
1431
|
+
return mutationOptions;
|
|
1432
|
+
};
|
|
1433
|
+
var postApiV1ContainerPruneImagesMutation = (options) => {
|
|
1434
|
+
const mutationOptions = {
|
|
1435
|
+
mutationFn: async (fnOptions) => {
|
|
1436
|
+
const { data } = await postApiV1ContainerPruneImages({
|
|
1437
|
+
...options,
|
|
1438
|
+
...fnOptions,
|
|
1439
|
+
throwOnError: true
|
|
1440
|
+
});
|
|
1441
|
+
return data;
|
|
1442
|
+
}
|
|
1443
|
+
};
|
|
1444
|
+
return mutationOptions;
|
|
1445
|
+
};
|
|
1446
|
+
var deleteApiV1ContainerContainerIdMutation = (options) => {
|
|
1447
|
+
const mutationOptions = {
|
|
1448
|
+
mutationFn: async (fnOptions) => {
|
|
1449
|
+
const { data } = await deleteApiV1ContainerContainerId({
|
|
1450
|
+
...options,
|
|
1451
|
+
...fnOptions,
|
|
1452
|
+
throwOnError: true
|
|
1453
|
+
});
|
|
1454
|
+
return data;
|
|
1455
|
+
}
|
|
1456
|
+
};
|
|
1457
|
+
return mutationOptions;
|
|
1458
|
+
};
|
|
1459
|
+
var getApiV1ContainerContainerIdQueryKey = (options) => createQueryKey("getApiV1ContainerContainerId", options);
|
|
1460
|
+
var getApiV1ContainerContainerIdOptions = (options) => queryOptions({
|
|
1461
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
1462
|
+
const { data } = await getApiV1ContainerContainerId({
|
|
1463
|
+
...options,
|
|
1464
|
+
...queryKey[0],
|
|
1465
|
+
signal,
|
|
1466
|
+
throwOnError: true
|
|
1467
|
+
});
|
|
1468
|
+
return data;
|
|
1469
|
+
},
|
|
1470
|
+
queryKey: getApiV1ContainerContainerIdQueryKey(options)
|
|
1471
|
+
});
|
|
1472
|
+
var postApiV1ContainerContainerIdLogsMutation = (options) => {
|
|
1473
|
+
const mutationOptions = {
|
|
1474
|
+
mutationFn: async (fnOptions) => {
|
|
1475
|
+
const { data } = await postApiV1ContainerContainerIdLogs({
|
|
1476
|
+
...options,
|
|
1477
|
+
...fnOptions,
|
|
1478
|
+
throwOnError: true
|
|
1479
|
+
});
|
|
1480
|
+
return data;
|
|
1481
|
+
}
|
|
1482
|
+
};
|
|
1483
|
+
return mutationOptions;
|
|
1484
|
+
};
|
|
1485
|
+
var putApiV1ContainerContainerIdResourcesMutation = (options) => {
|
|
1486
|
+
const mutationOptions = {
|
|
1487
|
+
mutationFn: async (fnOptions) => {
|
|
1488
|
+
const { data } = await putApiV1ContainerContainerIdResources({
|
|
1489
|
+
...options,
|
|
1490
|
+
...fnOptions,
|
|
1491
|
+
throwOnError: true
|
|
1492
|
+
});
|
|
1493
|
+
return data;
|
|
1494
|
+
}
|
|
1495
|
+
};
|
|
1496
|
+
return mutationOptions;
|
|
1497
|
+
};
|
|
1498
|
+
var postApiV1ContainerContainerIdRestartMutation = (options) => {
|
|
1499
|
+
const mutationOptions = {
|
|
1500
|
+
mutationFn: async (fnOptions) => {
|
|
1501
|
+
const { data } = await postApiV1ContainerContainerIdRestart({
|
|
1502
|
+
...options,
|
|
1503
|
+
...fnOptions,
|
|
1504
|
+
throwOnError: true
|
|
1505
|
+
});
|
|
1506
|
+
return data;
|
|
1507
|
+
}
|
|
1508
|
+
};
|
|
1509
|
+
return mutationOptions;
|
|
1510
|
+
};
|
|
1511
|
+
var postApiV1ContainerContainerIdStartMutation = (options) => {
|
|
1512
|
+
const mutationOptions = {
|
|
1513
|
+
mutationFn: async (fnOptions) => {
|
|
1514
|
+
const { data } = await postApiV1ContainerContainerIdStart({
|
|
1515
|
+
...options,
|
|
1516
|
+
...fnOptions,
|
|
1517
|
+
throwOnError: true
|
|
1518
|
+
});
|
|
1519
|
+
return data;
|
|
1520
|
+
}
|
|
1521
|
+
};
|
|
1522
|
+
return mutationOptions;
|
|
1523
|
+
};
|
|
1524
|
+
var postApiV1ContainerContainerIdStopMutation = (options) => {
|
|
1525
|
+
const mutationOptions = {
|
|
1526
|
+
mutationFn: async (fnOptions) => {
|
|
1527
|
+
const { data } = await postApiV1ContainerContainerIdStop({
|
|
1528
|
+
...options,
|
|
1529
|
+
...fnOptions,
|
|
1530
|
+
throwOnError: true
|
|
1531
|
+
});
|
|
1532
|
+
return data;
|
|
1533
|
+
}
|
|
1534
|
+
};
|
|
1535
|
+
return mutationOptions;
|
|
1536
|
+
};
|
|
1537
|
+
var deleteApiV1DeployApplicationMutation = (options) => {
|
|
1538
|
+
const mutationOptions = {
|
|
1539
|
+
mutationFn: async (fnOptions) => {
|
|
1540
|
+
const { data } = await deleteApiV1DeployApplication({
|
|
1541
|
+
...options,
|
|
1542
|
+
...fnOptions,
|
|
1543
|
+
throwOnError: true
|
|
1544
|
+
});
|
|
1545
|
+
return data;
|
|
1546
|
+
}
|
|
1547
|
+
};
|
|
1548
|
+
return mutationOptions;
|
|
1549
|
+
};
|
|
1550
|
+
var getApiV1DeployApplicationQueryKey = (options) => createQueryKey("getApiV1DeployApplication", options);
|
|
1551
|
+
var getApiV1DeployApplicationOptions = (options) => queryOptions({
|
|
1552
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
1553
|
+
const { data } = await getApiV1DeployApplication({
|
|
1554
|
+
...options,
|
|
1555
|
+
...queryKey[0],
|
|
1556
|
+
signal,
|
|
1557
|
+
throwOnError: true
|
|
1558
|
+
});
|
|
1559
|
+
return data;
|
|
1560
|
+
},
|
|
1561
|
+
queryKey: getApiV1DeployApplicationQueryKey(options)
|
|
1562
|
+
});
|
|
1563
|
+
var postApiV1DeployApplicationMutation = (options) => {
|
|
1564
|
+
const mutationOptions = {
|
|
1565
|
+
mutationFn: async (fnOptions) => {
|
|
1566
|
+
const { data } = await postApiV1DeployApplication({
|
|
1567
|
+
...options,
|
|
1568
|
+
...fnOptions,
|
|
1569
|
+
throwOnError: true
|
|
1570
|
+
});
|
|
1571
|
+
return data;
|
|
1572
|
+
}
|
|
1573
|
+
};
|
|
1574
|
+
return mutationOptions;
|
|
1575
|
+
};
|
|
1576
|
+
var putApiV1DeployApplicationMutation = (options) => {
|
|
1577
|
+
const mutationOptions = {
|
|
1578
|
+
mutationFn: async (fnOptions) => {
|
|
1579
|
+
const { data } = await putApiV1DeployApplication({
|
|
1580
|
+
...options,
|
|
1581
|
+
...fnOptions,
|
|
1582
|
+
throwOnError: true
|
|
1583
|
+
});
|
|
1584
|
+
return data;
|
|
1585
|
+
}
|
|
1586
|
+
};
|
|
1587
|
+
return mutationOptions;
|
|
1588
|
+
};
|
|
1589
|
+
var getApiV1DeployApplicationDeploymentsQueryKey = (options) => createQueryKey("getApiV1DeployApplicationDeployments", options);
|
|
1590
|
+
var getApiV1DeployApplicationDeploymentsOptions = (options) => queryOptions({
|
|
1591
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
1592
|
+
const { data } = await getApiV1DeployApplicationDeployments({
|
|
1593
|
+
...options,
|
|
1594
|
+
...queryKey[0],
|
|
1595
|
+
signal,
|
|
1596
|
+
throwOnError: true
|
|
1597
|
+
});
|
|
1598
|
+
return data;
|
|
1599
|
+
},
|
|
1600
|
+
queryKey: getApiV1DeployApplicationDeploymentsQueryKey(options)
|
|
1601
|
+
});
|
|
1602
|
+
var createInfiniteParams = (queryKey, page) => {
|
|
1603
|
+
const params = { ...queryKey[0] };
|
|
1604
|
+
if (page.body) {
|
|
1605
|
+
params.body = {
|
|
1606
|
+
...queryKey[0].body,
|
|
1607
|
+
...page.body
|
|
1608
|
+
};
|
|
1609
|
+
}
|
|
1610
|
+
if (page.headers) {
|
|
1611
|
+
params.headers = {
|
|
1612
|
+
...queryKey[0].headers,
|
|
1613
|
+
...page.headers
|
|
1614
|
+
};
|
|
1615
|
+
}
|
|
1616
|
+
if (page.path) {
|
|
1617
|
+
params.path = {
|
|
1618
|
+
...queryKey[0].path,
|
|
1619
|
+
...page.path
|
|
1620
|
+
};
|
|
1621
|
+
}
|
|
1622
|
+
if (page.query) {
|
|
1623
|
+
params.query = {
|
|
1624
|
+
...queryKey[0].query,
|
|
1625
|
+
...page.query
|
|
1626
|
+
};
|
|
1627
|
+
}
|
|
1628
|
+
return params;
|
|
1629
|
+
};
|
|
1630
|
+
var getApiV1DeployApplicationDeploymentsInfiniteQueryKey = (options) => createQueryKey("getApiV1DeployApplicationDeployments", options, true);
|
|
1631
|
+
var getApiV1DeployApplicationDeploymentsInfiniteOptions = (options) => infiniteQueryOptions(
|
|
1632
|
+
// @ts-ignore
|
|
1633
|
+
{
|
|
1634
|
+
queryFn: async ({ pageParam, queryKey, signal }) => {
|
|
1635
|
+
const page = typeof pageParam === "object" ? pageParam : {
|
|
1636
|
+
body: {
|
|
1637
|
+
page: pageParam
|
|
1638
|
+
}
|
|
1639
|
+
};
|
|
1640
|
+
const params = createInfiniteParams(queryKey, page);
|
|
1641
|
+
const { data } = await getApiV1DeployApplicationDeployments({
|
|
1642
|
+
...options,
|
|
1643
|
+
...params,
|
|
1644
|
+
signal,
|
|
1645
|
+
throwOnError: true
|
|
1646
|
+
});
|
|
1647
|
+
return data;
|
|
1648
|
+
},
|
|
1649
|
+
queryKey: getApiV1DeployApplicationDeploymentsInfiniteQueryKey(options)
|
|
1650
|
+
}
|
|
1651
|
+
);
|
|
1652
|
+
var getApiV1DeployApplicationDeploymentsDeploymentIdQueryKey = (options) => createQueryKey("getApiV1DeployApplicationDeploymentsDeploymentId", options);
|
|
1653
|
+
var getApiV1DeployApplicationDeploymentsDeploymentIdOptions = (options) => queryOptions({
|
|
1654
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
1655
|
+
const { data } = await getApiV1DeployApplicationDeploymentsDeploymentId({
|
|
1656
|
+
...options,
|
|
1657
|
+
...queryKey[0],
|
|
1658
|
+
signal,
|
|
1659
|
+
throwOnError: true
|
|
1660
|
+
});
|
|
1661
|
+
return data;
|
|
1662
|
+
},
|
|
1663
|
+
queryKey: getApiV1DeployApplicationDeploymentsDeploymentIdQueryKey(options)
|
|
1664
|
+
});
|
|
1665
|
+
var getApiV1DeployApplicationDeploymentsDeploymentIdLogsQueryKey = (options) => createQueryKey("getApiV1DeployApplicationDeploymentsDeploymentIdLogs", options);
|
|
1666
|
+
var getApiV1DeployApplicationDeploymentsDeploymentIdLogsOptions = (options) => queryOptions({
|
|
1667
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
1668
|
+
const { data } = await getApiV1DeployApplicationDeploymentsDeploymentIdLogs({
|
|
1669
|
+
...options,
|
|
1670
|
+
...queryKey[0],
|
|
1671
|
+
signal,
|
|
1672
|
+
throwOnError: true
|
|
1673
|
+
});
|
|
1674
|
+
return data;
|
|
1675
|
+
},
|
|
1676
|
+
queryKey: getApiV1DeployApplicationDeploymentsDeploymentIdLogsQueryKey(options)
|
|
1677
|
+
});
|
|
1678
|
+
var deleteApiV1DeployApplicationDomainsMutation = (options) => {
|
|
1679
|
+
const mutationOptions = {
|
|
1680
|
+
mutationFn: async (fnOptions) => {
|
|
1681
|
+
const { data } = await deleteApiV1DeployApplicationDomains({
|
|
1682
|
+
...options,
|
|
1683
|
+
...fnOptions,
|
|
1684
|
+
throwOnError: true
|
|
1685
|
+
});
|
|
1686
|
+
return data;
|
|
1687
|
+
}
|
|
1688
|
+
};
|
|
1689
|
+
return mutationOptions;
|
|
1690
|
+
};
|
|
1691
|
+
var postApiV1DeployApplicationDomainsMutation = (options) => {
|
|
1692
|
+
const mutationOptions = {
|
|
1693
|
+
mutationFn: async (fnOptions) => {
|
|
1694
|
+
const { data } = await postApiV1DeployApplicationDomains({
|
|
1695
|
+
...options,
|
|
1696
|
+
...fnOptions,
|
|
1697
|
+
throwOnError: true
|
|
1698
|
+
});
|
|
1699
|
+
return data;
|
|
1700
|
+
}
|
|
1701
|
+
};
|
|
1702
|
+
return mutationOptions;
|
|
1703
|
+
};
|
|
1704
|
+
var putApiV1DeployApplicationLabelsMutation = (options) => {
|
|
1705
|
+
const mutationOptions = {
|
|
1706
|
+
mutationFn: async (fnOptions) => {
|
|
1707
|
+
const { data } = await putApiV1DeployApplicationLabels({
|
|
1708
|
+
...options,
|
|
1709
|
+
...fnOptions,
|
|
1710
|
+
throwOnError: true
|
|
1711
|
+
});
|
|
1712
|
+
return data;
|
|
1713
|
+
}
|
|
1714
|
+
};
|
|
1715
|
+
return mutationOptions;
|
|
1716
|
+
};
|
|
1717
|
+
var getApiV1DeployApplicationLogsApplicationIdQueryKey = (options) => createQueryKey("getApiV1DeployApplicationLogsApplicationId", options);
|
|
1718
|
+
var getApiV1DeployApplicationLogsApplicationIdOptions = (options) => queryOptions({
|
|
1719
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
1720
|
+
const { data } = await getApiV1DeployApplicationLogsApplicationId({
|
|
1721
|
+
...options,
|
|
1722
|
+
...queryKey[0],
|
|
1723
|
+
signal,
|
|
1724
|
+
throwOnError: true
|
|
1725
|
+
});
|
|
1726
|
+
return data;
|
|
1727
|
+
},
|
|
1728
|
+
queryKey: getApiV1DeployApplicationLogsApplicationIdQueryKey(options)
|
|
1729
|
+
});
|
|
1730
|
+
var postApiV1DeployApplicationProjectMutation = (options) => {
|
|
1731
|
+
const mutationOptions = {
|
|
1732
|
+
mutationFn: async (fnOptions) => {
|
|
1733
|
+
const { data } = await postApiV1DeployApplicationProject({
|
|
1734
|
+
...options,
|
|
1735
|
+
...fnOptions,
|
|
1736
|
+
throwOnError: true
|
|
1737
|
+
});
|
|
1738
|
+
return data;
|
|
1739
|
+
}
|
|
1740
|
+
};
|
|
1741
|
+
return mutationOptions;
|
|
1742
|
+
};
|
|
1743
|
+
var postApiV1DeployApplicationProjectAddToFamilyMutation = (options) => {
|
|
1744
|
+
const mutationOptions = {
|
|
1745
|
+
mutationFn: async (fnOptions) => {
|
|
1746
|
+
const { data } = await postApiV1DeployApplicationProjectAddToFamily({
|
|
1747
|
+
...options,
|
|
1748
|
+
...fnOptions,
|
|
1749
|
+
throwOnError: true
|
|
1750
|
+
});
|
|
1751
|
+
return data;
|
|
1752
|
+
}
|
|
1753
|
+
};
|
|
1754
|
+
return mutationOptions;
|
|
1755
|
+
};
|
|
1756
|
+
var postApiV1DeployApplicationProjectDeployMutation = (options) => {
|
|
1757
|
+
const mutationOptions = {
|
|
1758
|
+
mutationFn: async (fnOptions) => {
|
|
1759
|
+
const { data } = await postApiV1DeployApplicationProjectDeploy({
|
|
1760
|
+
...options,
|
|
1761
|
+
...fnOptions,
|
|
1762
|
+
throwOnError: true
|
|
1763
|
+
});
|
|
1764
|
+
return data;
|
|
1765
|
+
}
|
|
1766
|
+
};
|
|
1767
|
+
return mutationOptions;
|
|
1768
|
+
};
|
|
1769
|
+
var postApiV1DeployApplicationProjectDuplicateMutation = (options) => {
|
|
1770
|
+
const mutationOptions = {
|
|
1771
|
+
mutationFn: async (fnOptions) => {
|
|
1772
|
+
const { data } = await postApiV1DeployApplicationProjectDuplicate({
|
|
1773
|
+
...options,
|
|
1774
|
+
...fnOptions,
|
|
1775
|
+
throwOnError: true
|
|
1776
|
+
});
|
|
1777
|
+
return data;
|
|
1778
|
+
}
|
|
1779
|
+
};
|
|
1780
|
+
return mutationOptions;
|
|
1781
|
+
};
|
|
1782
|
+
var getApiV1DeployApplicationProjectFamilyQueryKey = (options) => createQueryKey("getApiV1DeployApplicationProjectFamily", options);
|
|
1783
|
+
var getApiV1DeployApplicationProjectFamilyOptions = (options) => queryOptions({
|
|
1784
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
1785
|
+
const { data } = await getApiV1DeployApplicationProjectFamily({
|
|
1786
|
+
...options,
|
|
1787
|
+
...queryKey[0],
|
|
1788
|
+
signal,
|
|
1789
|
+
throwOnError: true
|
|
1790
|
+
});
|
|
1791
|
+
return data;
|
|
1792
|
+
},
|
|
1793
|
+
queryKey: getApiV1DeployApplicationProjectFamilyQueryKey(options)
|
|
1794
|
+
});
|
|
1795
|
+
var getApiV1DeployApplicationProjectFamilyEnvironmentsQueryKey = (options) => createQueryKey("getApiV1DeployApplicationProjectFamilyEnvironments", options);
|
|
1796
|
+
var getApiV1DeployApplicationProjectFamilyEnvironmentsOptions = (options) => queryOptions({
|
|
1797
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
1798
|
+
const { data } = await getApiV1DeployApplicationProjectFamilyEnvironments({
|
|
1799
|
+
...options,
|
|
1800
|
+
...queryKey[0],
|
|
1801
|
+
signal,
|
|
1802
|
+
throwOnError: true
|
|
1803
|
+
});
|
|
1804
|
+
return data;
|
|
1805
|
+
},
|
|
1806
|
+
queryKey: getApiV1DeployApplicationProjectFamilyEnvironmentsQueryKey(options)
|
|
1807
|
+
});
|
|
1808
|
+
var postApiV1DeployApplicationRecoverMutation = (options) => {
|
|
1809
|
+
const mutationOptions = {
|
|
1810
|
+
mutationFn: async (fnOptions) => {
|
|
1811
|
+
const { data } = await postApiV1DeployApplicationRecover({
|
|
1812
|
+
...options,
|
|
1813
|
+
...fnOptions,
|
|
1814
|
+
throwOnError: true
|
|
1815
|
+
});
|
|
1816
|
+
return data;
|
|
1817
|
+
}
|
|
1818
|
+
};
|
|
1819
|
+
return mutationOptions;
|
|
1820
|
+
};
|
|
1821
|
+
var postApiV1DeployApplicationRedeployMutation = (options) => {
|
|
1822
|
+
const mutationOptions = {
|
|
1823
|
+
mutationFn: async (fnOptions) => {
|
|
1824
|
+
const { data } = await postApiV1DeployApplicationRedeploy({
|
|
1825
|
+
...options,
|
|
1826
|
+
...fnOptions,
|
|
1827
|
+
throwOnError: true
|
|
1828
|
+
});
|
|
1829
|
+
return data;
|
|
1830
|
+
}
|
|
1831
|
+
};
|
|
1832
|
+
return mutationOptions;
|
|
1833
|
+
};
|
|
1834
|
+
var postApiV1DeployApplicationRestartMutation = (options) => {
|
|
1835
|
+
const mutationOptions = {
|
|
1836
|
+
mutationFn: async (fnOptions) => {
|
|
1837
|
+
const { data } = await postApiV1DeployApplicationRestart({
|
|
1838
|
+
...options,
|
|
1839
|
+
...fnOptions,
|
|
1840
|
+
throwOnError: true
|
|
1841
|
+
});
|
|
1842
|
+
return data;
|
|
1843
|
+
}
|
|
1844
|
+
};
|
|
1845
|
+
return mutationOptions;
|
|
1846
|
+
};
|
|
1847
|
+
var postApiV1DeployApplicationRollbackMutation = (options) => {
|
|
1848
|
+
const mutationOptions = {
|
|
1849
|
+
mutationFn: async (fnOptions) => {
|
|
1850
|
+
const { data } = await postApiV1DeployApplicationRollback({
|
|
1851
|
+
...options,
|
|
1852
|
+
...fnOptions,
|
|
1853
|
+
throwOnError: true
|
|
1854
|
+
});
|
|
1855
|
+
return data;
|
|
1856
|
+
}
|
|
1857
|
+
};
|
|
1858
|
+
return mutationOptions;
|
|
1859
|
+
};
|
|
1860
|
+
var getApiV1DeployApplicationsQueryKey = (options) => createQueryKey("getApiV1DeployApplications", options);
|
|
1861
|
+
var getApiV1DeployApplicationsOptions = (options) => queryOptions({
|
|
1862
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
1863
|
+
const { data } = await getApiV1DeployApplications({
|
|
1864
|
+
...options,
|
|
1865
|
+
...queryKey[0],
|
|
1866
|
+
signal,
|
|
1867
|
+
throwOnError: true
|
|
1868
|
+
});
|
|
1869
|
+
return data;
|
|
1870
|
+
},
|
|
1871
|
+
queryKey: getApiV1DeployApplicationsQueryKey(options)
|
|
1872
|
+
});
|
|
1873
|
+
var getApiV1DeployApplicationsInfiniteQueryKey = (options) => createQueryKey("getApiV1DeployApplications", options, true);
|
|
1874
|
+
var getApiV1DeployApplicationsInfiniteOptions = (options) => infiniteQueryOptions(
|
|
1875
|
+
// @ts-ignore
|
|
1876
|
+
{
|
|
1877
|
+
queryFn: async ({ pageParam, queryKey, signal }) => {
|
|
1878
|
+
const page = typeof pageParam === "object" ? pageParam : {
|
|
1879
|
+
body: {
|
|
1880
|
+
page: pageParam
|
|
1881
|
+
}
|
|
1882
|
+
};
|
|
1883
|
+
const params = createInfiniteParams(queryKey, page);
|
|
1884
|
+
const { data } = await getApiV1DeployApplications({
|
|
1885
|
+
...options,
|
|
1886
|
+
...params,
|
|
1887
|
+
signal,
|
|
1888
|
+
throwOnError: true
|
|
1889
|
+
});
|
|
1890
|
+
return data;
|
|
1891
|
+
},
|
|
1892
|
+
queryKey: getApiV1DeployApplicationsInfiniteQueryKey(options)
|
|
1893
|
+
}
|
|
1894
|
+
);
|
|
1895
|
+
var deleteApiV1DomainMutation = (options) => {
|
|
1896
|
+
const mutationOptions = {
|
|
1897
|
+
mutationFn: async (fnOptions) => {
|
|
1898
|
+
const { data } = await deleteApiV1Domain({
|
|
1899
|
+
...options,
|
|
1900
|
+
...fnOptions,
|
|
1901
|
+
throwOnError: true
|
|
1902
|
+
});
|
|
1903
|
+
return data;
|
|
1904
|
+
}
|
|
1905
|
+
};
|
|
1906
|
+
return mutationOptions;
|
|
1907
|
+
};
|
|
1908
|
+
var postApiV1DomainMutation = (options) => {
|
|
1909
|
+
const mutationOptions = {
|
|
1910
|
+
mutationFn: async (fnOptions) => {
|
|
1911
|
+
const { data } = await postApiV1Domain({
|
|
1912
|
+
...options,
|
|
1913
|
+
...fnOptions,
|
|
1914
|
+
throwOnError: true
|
|
1915
|
+
});
|
|
1916
|
+
return data;
|
|
1917
|
+
}
|
|
1918
|
+
};
|
|
1919
|
+
return mutationOptions;
|
|
1920
|
+
};
|
|
1921
|
+
var putApiV1DomainMutation = (options) => {
|
|
1922
|
+
const mutationOptions = {
|
|
1923
|
+
mutationFn: async (fnOptions) => {
|
|
1924
|
+
const { data } = await putApiV1Domain({
|
|
1925
|
+
...options,
|
|
1926
|
+
...fnOptions,
|
|
1927
|
+
throwOnError: true
|
|
1928
|
+
});
|
|
1929
|
+
return data;
|
|
1930
|
+
}
|
|
1931
|
+
};
|
|
1932
|
+
return mutationOptions;
|
|
1933
|
+
};
|
|
1934
|
+
var getApiV1DomainGenerateQueryKey = (options) => createQueryKey("getApiV1DomainGenerate", options);
|
|
1935
|
+
var getApiV1DomainGenerateOptions = (options) => queryOptions({
|
|
1936
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
1937
|
+
const { data } = await getApiV1DomainGenerate({
|
|
1938
|
+
...options,
|
|
1939
|
+
...queryKey[0],
|
|
1940
|
+
signal,
|
|
1941
|
+
throwOnError: true
|
|
1942
|
+
});
|
|
1943
|
+
return data;
|
|
1944
|
+
},
|
|
1945
|
+
queryKey: getApiV1DomainGenerateQueryKey(options)
|
|
1946
|
+
});
|
|
1947
|
+
var getApiV1DomainsQueryKey = (options) => createQueryKey("getApiV1Domains", options);
|
|
1948
|
+
var getApiV1DomainsOptions = (options) => queryOptions({
|
|
1949
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
1950
|
+
const { data } = await getApiV1Domains({
|
|
1951
|
+
...options,
|
|
1952
|
+
...queryKey[0],
|
|
1953
|
+
signal,
|
|
1954
|
+
throwOnError: true
|
|
1955
|
+
});
|
|
1956
|
+
return data;
|
|
1957
|
+
},
|
|
1958
|
+
queryKey: getApiV1DomainsQueryKey(options)
|
|
1959
|
+
});
|
|
1960
|
+
var getApiV1ExtensionsQueryKey = (options) => createQueryKey("getApiV1Extensions", options);
|
|
1961
|
+
var getApiV1ExtensionsOptions = (options) => queryOptions({
|
|
1962
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
1963
|
+
const { data } = await getApiV1Extensions({
|
|
1964
|
+
...options,
|
|
1965
|
+
...queryKey[0],
|
|
1966
|
+
signal,
|
|
1967
|
+
throwOnError: true
|
|
1968
|
+
});
|
|
1969
|
+
return data;
|
|
1970
|
+
},
|
|
1971
|
+
queryKey: getApiV1ExtensionsQueryKey(options)
|
|
1972
|
+
});
|
|
1973
|
+
var getApiV1ExtensionsByExtensionIdExtensionIdQueryKey = (options) => createQueryKey("getApiV1ExtensionsByExtensionIdExtensionId", options);
|
|
1974
|
+
var getApiV1ExtensionsByExtensionIdExtensionIdOptions = (options) => queryOptions({
|
|
1975
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
1976
|
+
const { data } = await getApiV1ExtensionsByExtensionIdExtensionId({
|
|
1977
|
+
...options,
|
|
1978
|
+
...queryKey[0],
|
|
1979
|
+
signal,
|
|
1980
|
+
throwOnError: true
|
|
1981
|
+
});
|
|
1982
|
+
return data;
|
|
1983
|
+
},
|
|
1984
|
+
queryKey: getApiV1ExtensionsByExtensionIdExtensionIdQueryKey(options)
|
|
1985
|
+
});
|
|
1986
|
+
var getApiV1ExtensionsByExtensionIdExtensionIdExecutionsQueryKey = (options) => createQueryKey("getApiV1ExtensionsByExtensionIdExtensionIdExecutions", options);
|
|
1987
|
+
var getApiV1ExtensionsByExtensionIdExtensionIdExecutionsOptions = (options) => queryOptions({
|
|
1988
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
1989
|
+
const { data } = await getApiV1ExtensionsByExtensionIdExtensionIdExecutions({
|
|
1990
|
+
...options,
|
|
1991
|
+
...queryKey[0],
|
|
1992
|
+
signal,
|
|
1993
|
+
throwOnError: true
|
|
1994
|
+
});
|
|
1995
|
+
return data;
|
|
1996
|
+
},
|
|
1997
|
+
queryKey: getApiV1ExtensionsByExtensionIdExtensionIdExecutionsQueryKey(options)
|
|
1998
|
+
});
|
|
1999
|
+
var getApiV1ExtensionsCategoriesQueryKey = (options) => createQueryKey("getApiV1ExtensionsCategories", options);
|
|
2000
|
+
var getApiV1ExtensionsCategoriesOptions = (options) => queryOptions({
|
|
2001
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2002
|
+
const { data } = await getApiV1ExtensionsCategories({
|
|
2003
|
+
...options,
|
|
2004
|
+
...queryKey[0],
|
|
2005
|
+
signal,
|
|
2006
|
+
throwOnError: true
|
|
2007
|
+
});
|
|
2008
|
+
return data;
|
|
2009
|
+
},
|
|
2010
|
+
queryKey: getApiV1ExtensionsCategoriesQueryKey(options)
|
|
2011
|
+
});
|
|
2012
|
+
var getApiV1ExtensionsExecutionExecutionIdQueryKey = (options) => createQueryKey("getApiV1ExtensionsExecutionExecutionId", options);
|
|
2013
|
+
var getApiV1ExtensionsExecutionExecutionIdOptions = (options) => queryOptions({
|
|
2014
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2015
|
+
const { data } = await getApiV1ExtensionsExecutionExecutionId({
|
|
2016
|
+
...options,
|
|
2017
|
+
...queryKey[0],
|
|
2018
|
+
signal,
|
|
2019
|
+
throwOnError: true
|
|
2020
|
+
});
|
|
2021
|
+
return data;
|
|
2022
|
+
},
|
|
2023
|
+
queryKey: getApiV1ExtensionsExecutionExecutionIdQueryKey(options)
|
|
2024
|
+
});
|
|
2025
|
+
var postApiV1ExtensionsExecutionExecutionIdCancelMutation = (options) => {
|
|
2026
|
+
const mutationOptions = {
|
|
2027
|
+
mutationFn: async (fnOptions) => {
|
|
2028
|
+
const { data } = await postApiV1ExtensionsExecutionExecutionIdCancel({
|
|
2029
|
+
...options,
|
|
2030
|
+
...fnOptions,
|
|
2031
|
+
throwOnError: true
|
|
2032
|
+
});
|
|
2033
|
+
return data;
|
|
2034
|
+
}
|
|
2035
|
+
};
|
|
2036
|
+
return mutationOptions;
|
|
2037
|
+
};
|
|
2038
|
+
var getApiV1ExtensionsExecutionExecutionIdLogsQueryKey = (options) => createQueryKey("getApiV1ExtensionsExecutionExecutionIdLogs", options);
|
|
2039
|
+
var getApiV1ExtensionsExecutionExecutionIdLogsOptions = (options) => queryOptions({
|
|
2040
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2041
|
+
const { data } = await getApiV1ExtensionsExecutionExecutionIdLogs({
|
|
2042
|
+
...options,
|
|
2043
|
+
...queryKey[0],
|
|
2044
|
+
signal,
|
|
2045
|
+
throwOnError: true
|
|
2046
|
+
});
|
|
2047
|
+
return data;
|
|
2048
|
+
},
|
|
2049
|
+
queryKey: getApiV1ExtensionsExecutionExecutionIdLogsQueryKey(options)
|
|
2050
|
+
});
|
|
2051
|
+
var postApiV1ExtensionsExtensionIdForkMutation = (options) => {
|
|
2052
|
+
const mutationOptions = {
|
|
2053
|
+
mutationFn: async (fnOptions) => {
|
|
2054
|
+
const { data } = await postApiV1ExtensionsExtensionIdFork({
|
|
2055
|
+
...options,
|
|
2056
|
+
...fnOptions,
|
|
2057
|
+
throwOnError: true
|
|
2058
|
+
});
|
|
2059
|
+
return data;
|
|
2060
|
+
}
|
|
2061
|
+
};
|
|
2062
|
+
return mutationOptions;
|
|
2063
|
+
};
|
|
2064
|
+
var postApiV1ExtensionsExtensionIdRunMutation = (options) => {
|
|
2065
|
+
const mutationOptions = {
|
|
2066
|
+
mutationFn: async (fnOptions) => {
|
|
2067
|
+
const { data } = await postApiV1ExtensionsExtensionIdRun({
|
|
2068
|
+
...options,
|
|
2069
|
+
...fnOptions,
|
|
2070
|
+
throwOnError: true
|
|
2071
|
+
});
|
|
2072
|
+
return data;
|
|
2073
|
+
}
|
|
2074
|
+
};
|
|
2075
|
+
return mutationOptions;
|
|
2076
|
+
};
|
|
2077
|
+
var deleteApiV1ExtensionsIdMutation = (options) => {
|
|
2078
|
+
const mutationOptions = {
|
|
2079
|
+
mutationFn: async (fnOptions) => {
|
|
2080
|
+
const { data } = await deleteApiV1ExtensionsId({
|
|
2081
|
+
...options,
|
|
2082
|
+
...fnOptions,
|
|
2083
|
+
throwOnError: true
|
|
2084
|
+
});
|
|
2085
|
+
return data;
|
|
2086
|
+
}
|
|
2087
|
+
};
|
|
2088
|
+
return mutationOptions;
|
|
2089
|
+
};
|
|
2090
|
+
var getApiV1ExtensionsIdQueryKey = (options) => createQueryKey("getApiV1ExtensionsId", options);
|
|
2091
|
+
var getApiV1ExtensionsIdOptions = (options) => queryOptions({
|
|
2092
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2093
|
+
const { data } = await getApiV1ExtensionsId({
|
|
2094
|
+
...options,
|
|
2095
|
+
...queryKey[0],
|
|
2096
|
+
signal,
|
|
2097
|
+
throwOnError: true
|
|
2098
|
+
});
|
|
2099
|
+
return data;
|
|
2100
|
+
},
|
|
2101
|
+
queryKey: getApiV1ExtensionsIdQueryKey(options)
|
|
2102
|
+
});
|
|
2103
|
+
var getApiV1FeatureFlagsQueryKey = (options) => createQueryKey("getApiV1FeatureFlags", options);
|
|
2104
|
+
var getApiV1FeatureFlagsOptions = (options) => queryOptions({
|
|
2105
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2106
|
+
const { data } = await getApiV1FeatureFlags({
|
|
2107
|
+
...options,
|
|
2108
|
+
...queryKey[0],
|
|
2109
|
+
signal,
|
|
2110
|
+
throwOnError: true
|
|
2111
|
+
});
|
|
2112
|
+
return data;
|
|
2113
|
+
},
|
|
2114
|
+
queryKey: getApiV1FeatureFlagsQueryKey(options)
|
|
2115
|
+
});
|
|
2116
|
+
var putApiV1FeatureFlagsMutation = (options) => {
|
|
2117
|
+
const mutationOptions = {
|
|
2118
|
+
mutationFn: async (fnOptions) => {
|
|
2119
|
+
const { data } = await putApiV1FeatureFlags({
|
|
2120
|
+
...options,
|
|
2121
|
+
...fnOptions,
|
|
2122
|
+
throwOnError: true
|
|
2123
|
+
});
|
|
2124
|
+
return data;
|
|
2125
|
+
}
|
|
2126
|
+
};
|
|
2127
|
+
return mutationOptions;
|
|
2128
|
+
};
|
|
2129
|
+
var getApiV1FeatureFlagsCheckQueryKey = (options) => createQueryKey("getApiV1FeatureFlagsCheck", options);
|
|
2130
|
+
var getApiV1FeatureFlagsCheckOptions = (options) => queryOptions({
|
|
2131
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2132
|
+
const { data } = await getApiV1FeatureFlagsCheck({
|
|
2133
|
+
...options,
|
|
2134
|
+
...queryKey[0],
|
|
2135
|
+
signal,
|
|
2136
|
+
throwOnError: true
|
|
2137
|
+
});
|
|
2138
|
+
return data;
|
|
2139
|
+
},
|
|
2140
|
+
queryKey: getApiV1FeatureFlagsCheckQueryKey(options)
|
|
2141
|
+
});
|
|
2142
|
+
var getApiV1FileManagerQueryKey = (options) => createQueryKey("getApiV1FileManager", options);
|
|
2143
|
+
var getApiV1FileManagerOptions = (options) => queryOptions({
|
|
2144
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2145
|
+
const { data } = await getApiV1FileManager({
|
|
2146
|
+
...options,
|
|
2147
|
+
...queryKey[0],
|
|
2148
|
+
signal,
|
|
2149
|
+
throwOnError: true
|
|
2150
|
+
});
|
|
2151
|
+
return data;
|
|
2152
|
+
},
|
|
2153
|
+
queryKey: getApiV1FileManagerQueryKey(options)
|
|
2154
|
+
});
|
|
2155
|
+
var postApiV1FileManagerCopyDirectoryMutation = (options) => {
|
|
2156
|
+
const mutationOptions = {
|
|
2157
|
+
mutationFn: async (fnOptions) => {
|
|
2158
|
+
const { data } = await postApiV1FileManagerCopyDirectory({
|
|
2159
|
+
...options,
|
|
2160
|
+
...fnOptions,
|
|
2161
|
+
throwOnError: true
|
|
2162
|
+
});
|
|
2163
|
+
return data;
|
|
2164
|
+
}
|
|
2165
|
+
};
|
|
2166
|
+
return mutationOptions;
|
|
2167
|
+
};
|
|
2168
|
+
var postApiV1FileManagerCreateDirectoryMutation = (options) => {
|
|
2169
|
+
const mutationOptions = {
|
|
2170
|
+
mutationFn: async (fnOptions) => {
|
|
2171
|
+
const { data } = await postApiV1FileManagerCreateDirectory({
|
|
2172
|
+
...options,
|
|
2173
|
+
...fnOptions,
|
|
2174
|
+
throwOnError: true
|
|
2175
|
+
});
|
|
2176
|
+
return data;
|
|
2177
|
+
}
|
|
2178
|
+
};
|
|
2179
|
+
return mutationOptions;
|
|
2180
|
+
};
|
|
2181
|
+
var deleteApiV1FileManagerDeleteDirectoryMutation = (options) => {
|
|
2182
|
+
const mutationOptions = {
|
|
2183
|
+
mutationFn: async (fnOptions) => {
|
|
2184
|
+
const { data } = await deleteApiV1FileManagerDeleteDirectory({
|
|
2185
|
+
...options,
|
|
2186
|
+
...fnOptions,
|
|
2187
|
+
throwOnError: true
|
|
2188
|
+
});
|
|
2189
|
+
return data;
|
|
2190
|
+
}
|
|
2191
|
+
};
|
|
2192
|
+
return mutationOptions;
|
|
2193
|
+
};
|
|
2194
|
+
var postApiV1FileManagerMoveDirectoryMutation = (options) => {
|
|
2195
|
+
const mutationOptions = {
|
|
2196
|
+
mutationFn: async (fnOptions) => {
|
|
2197
|
+
const { data } = await postApiV1FileManagerMoveDirectory({
|
|
2198
|
+
...options,
|
|
2199
|
+
...fnOptions,
|
|
2200
|
+
throwOnError: true
|
|
2201
|
+
});
|
|
2202
|
+
return data;
|
|
2203
|
+
}
|
|
2204
|
+
};
|
|
2205
|
+
return mutationOptions;
|
|
2206
|
+
};
|
|
2207
|
+
var postApiV1FileManagerUploadMutation = (options) => {
|
|
2208
|
+
const mutationOptions = {
|
|
2209
|
+
mutationFn: async (fnOptions) => {
|
|
2210
|
+
const { data } = await postApiV1FileManagerUpload({
|
|
2211
|
+
...options,
|
|
2212
|
+
...fnOptions,
|
|
2213
|
+
throwOnError: true
|
|
2214
|
+
});
|
|
2215
|
+
return data;
|
|
2216
|
+
}
|
|
2217
|
+
};
|
|
2218
|
+
return mutationOptions;
|
|
2219
|
+
};
|
|
2220
|
+
var deleteApiV1GithubConnectorMutation = (options) => {
|
|
2221
|
+
const mutationOptions = {
|
|
2222
|
+
mutationFn: async (fnOptions) => {
|
|
2223
|
+
const { data } = await deleteApiV1GithubConnector({
|
|
2224
|
+
...options,
|
|
2225
|
+
...fnOptions,
|
|
2226
|
+
throwOnError: true
|
|
2227
|
+
});
|
|
2228
|
+
return data;
|
|
2229
|
+
}
|
|
2230
|
+
};
|
|
2231
|
+
return mutationOptions;
|
|
2232
|
+
};
|
|
2233
|
+
var postApiV1GithubConnectorMutation = (options) => {
|
|
2234
|
+
const mutationOptions = {
|
|
2235
|
+
mutationFn: async (fnOptions) => {
|
|
2236
|
+
const { data } = await postApiV1GithubConnector({
|
|
2237
|
+
...options,
|
|
2238
|
+
...fnOptions,
|
|
2239
|
+
throwOnError: true
|
|
2240
|
+
});
|
|
2241
|
+
return data;
|
|
2242
|
+
}
|
|
2243
|
+
};
|
|
2244
|
+
return mutationOptions;
|
|
2245
|
+
};
|
|
2246
|
+
var putApiV1GithubConnectorMutation = (options) => {
|
|
2247
|
+
const mutationOptions = {
|
|
2248
|
+
mutationFn: async (fnOptions) => {
|
|
2249
|
+
const { data } = await putApiV1GithubConnector({
|
|
2250
|
+
...options,
|
|
2251
|
+
...fnOptions,
|
|
2252
|
+
throwOnError: true
|
|
2253
|
+
});
|
|
2254
|
+
return data;
|
|
2255
|
+
}
|
|
2256
|
+
};
|
|
2257
|
+
return mutationOptions;
|
|
2258
|
+
};
|
|
2259
|
+
var getApiV1GithubConnectorAllQueryKey = (options) => createQueryKey("getApiV1GithubConnectorAll", options);
|
|
2260
|
+
var getApiV1GithubConnectorAllOptions = (options) => queryOptions({
|
|
2261
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2262
|
+
const { data } = await getApiV1GithubConnectorAll({
|
|
2263
|
+
...options,
|
|
2264
|
+
...queryKey[0],
|
|
2265
|
+
signal,
|
|
2266
|
+
throwOnError: true
|
|
2267
|
+
});
|
|
2268
|
+
return data;
|
|
2269
|
+
},
|
|
2270
|
+
queryKey: getApiV1GithubConnectorAllQueryKey(options)
|
|
2271
|
+
});
|
|
2272
|
+
var getApiV1GithubConnectorRepositoriesQueryKey = (options) => createQueryKey("getApiV1GithubConnectorRepositories", options);
|
|
2273
|
+
var getApiV1GithubConnectorRepositoriesOptions = (options) => queryOptions({
|
|
2274
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2275
|
+
const { data } = await getApiV1GithubConnectorRepositories({
|
|
2276
|
+
...options,
|
|
2277
|
+
...queryKey[0],
|
|
2278
|
+
signal,
|
|
2279
|
+
throwOnError: true
|
|
2280
|
+
});
|
|
2281
|
+
return data;
|
|
2282
|
+
},
|
|
2283
|
+
queryKey: getApiV1GithubConnectorRepositoriesQueryKey(options)
|
|
2284
|
+
});
|
|
2285
|
+
var postApiV1GithubConnectorRepositoryBranchesMutation = (options) => {
|
|
2286
|
+
const mutationOptions = {
|
|
2287
|
+
mutationFn: async (fnOptions) => {
|
|
2288
|
+
const { data } = await postApiV1GithubConnectorRepositoryBranches({
|
|
2289
|
+
...options,
|
|
2290
|
+
...fnOptions,
|
|
2291
|
+
throwOnError: true
|
|
2292
|
+
});
|
|
2293
|
+
return data;
|
|
2294
|
+
}
|
|
2295
|
+
};
|
|
2296
|
+
return mutationOptions;
|
|
2297
|
+
};
|
|
2298
|
+
var getApiV1HealthQueryKey = (options) => createQueryKey("getApiV1Health", options);
|
|
2299
|
+
var getApiV1HealthOptions = (options) => queryOptions({
|
|
2300
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2301
|
+
const { data } = await getApiV1Health({
|
|
2302
|
+
...options,
|
|
2303
|
+
...queryKey[0],
|
|
2304
|
+
signal,
|
|
2305
|
+
throwOnError: true
|
|
2306
|
+
});
|
|
2307
|
+
return data;
|
|
2308
|
+
},
|
|
2309
|
+
queryKey: getApiV1HealthQueryKey(options)
|
|
2310
|
+
});
|
|
2311
|
+
var deleteApiV1HealthcheckMutation = (options) => {
|
|
2312
|
+
const mutationOptions = {
|
|
2313
|
+
mutationFn: async (fnOptions) => {
|
|
2314
|
+
const { data } = await deleteApiV1Healthcheck({
|
|
2315
|
+
...options,
|
|
2316
|
+
...fnOptions,
|
|
2317
|
+
throwOnError: true
|
|
2318
|
+
});
|
|
2319
|
+
return data;
|
|
2320
|
+
}
|
|
2321
|
+
};
|
|
2322
|
+
return mutationOptions;
|
|
2323
|
+
};
|
|
2324
|
+
var getApiV1HealthcheckQueryKey = (options) => createQueryKey("getApiV1Healthcheck", options);
|
|
2325
|
+
var getApiV1HealthcheckOptions = (options) => queryOptions({
|
|
2326
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2327
|
+
const { data } = await getApiV1Healthcheck({
|
|
2328
|
+
...options,
|
|
2329
|
+
...queryKey[0],
|
|
2330
|
+
signal,
|
|
2331
|
+
throwOnError: true
|
|
2332
|
+
});
|
|
2333
|
+
return data;
|
|
2334
|
+
},
|
|
2335
|
+
queryKey: getApiV1HealthcheckQueryKey(options)
|
|
2336
|
+
});
|
|
2337
|
+
var postApiV1HealthcheckMutation = (options) => {
|
|
2338
|
+
const mutationOptions = {
|
|
2339
|
+
mutationFn: async (fnOptions) => {
|
|
2340
|
+
const { data } = await postApiV1Healthcheck({
|
|
2341
|
+
...options,
|
|
2342
|
+
...fnOptions,
|
|
2343
|
+
throwOnError: true
|
|
2344
|
+
});
|
|
2345
|
+
return data;
|
|
2346
|
+
}
|
|
2347
|
+
};
|
|
2348
|
+
return mutationOptions;
|
|
2349
|
+
};
|
|
2350
|
+
var putApiV1HealthcheckMutation = (options) => {
|
|
2351
|
+
const mutationOptions = {
|
|
2352
|
+
mutationFn: async (fnOptions) => {
|
|
2353
|
+
const { data } = await putApiV1Healthcheck({
|
|
2354
|
+
...options,
|
|
2355
|
+
...fnOptions,
|
|
2356
|
+
throwOnError: true
|
|
2357
|
+
});
|
|
2358
|
+
return data;
|
|
2359
|
+
}
|
|
2360
|
+
};
|
|
2361
|
+
return mutationOptions;
|
|
2362
|
+
};
|
|
2363
|
+
var getApiV1HealthcheckResultsQueryKey = (options) => createQueryKey("getApiV1HealthcheckResults", options);
|
|
2364
|
+
var getApiV1HealthcheckResultsOptions = (options) => queryOptions({
|
|
2365
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2366
|
+
const { data } = await getApiV1HealthcheckResults({
|
|
2367
|
+
...options,
|
|
2368
|
+
...queryKey[0],
|
|
2369
|
+
signal,
|
|
2370
|
+
throwOnError: true
|
|
2371
|
+
});
|
|
2372
|
+
return data;
|
|
2373
|
+
},
|
|
2374
|
+
queryKey: getApiV1HealthcheckResultsQueryKey(options)
|
|
2375
|
+
});
|
|
2376
|
+
var getApiV1HealthcheckStatsQueryKey = (options) => createQueryKey("getApiV1HealthcheckStats", options);
|
|
2377
|
+
var getApiV1HealthcheckStatsOptions = (options) => queryOptions({
|
|
2378
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2379
|
+
const { data } = await getApiV1HealthcheckStats({
|
|
2380
|
+
...options,
|
|
2381
|
+
...queryKey[0],
|
|
2382
|
+
signal,
|
|
2383
|
+
throwOnError: true
|
|
2384
|
+
});
|
|
2385
|
+
return data;
|
|
2386
|
+
},
|
|
2387
|
+
queryKey: getApiV1HealthcheckStatsQueryKey(options)
|
|
2388
|
+
});
|
|
2389
|
+
var patchApiV1HealthcheckToggleMutation = (options) => {
|
|
2390
|
+
const mutationOptions = {
|
|
2391
|
+
mutationFn: async (fnOptions) => {
|
|
2392
|
+
const { data } = await patchApiV1HealthcheckToggle({
|
|
2393
|
+
...options,
|
|
2394
|
+
...fnOptions,
|
|
2395
|
+
throwOnError: true
|
|
2396
|
+
});
|
|
2397
|
+
return data;
|
|
2398
|
+
}
|
|
2399
|
+
};
|
|
2400
|
+
return mutationOptions;
|
|
2401
|
+
};
|
|
2402
|
+
var postApiV1LivePauseMutation = (options) => {
|
|
2403
|
+
const mutationOptions = {
|
|
2404
|
+
mutationFn: async (fnOptions) => {
|
|
2405
|
+
const { data } = await postApiV1LivePause({
|
|
2406
|
+
...options,
|
|
2407
|
+
...fnOptions,
|
|
2408
|
+
throwOnError: true
|
|
2409
|
+
});
|
|
2410
|
+
return data;
|
|
2411
|
+
}
|
|
2412
|
+
};
|
|
2413
|
+
return mutationOptions;
|
|
2414
|
+
};
|
|
2415
|
+
var getApiV1NotificationPreferencesQueryKey = (options) => createQueryKey("getApiV1NotificationPreferences", options);
|
|
2416
|
+
var getApiV1NotificationPreferencesOptions = (options) => queryOptions({
|
|
2417
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2418
|
+
const { data } = await getApiV1NotificationPreferences({
|
|
2419
|
+
...options,
|
|
2420
|
+
...queryKey[0],
|
|
2421
|
+
signal,
|
|
2422
|
+
throwOnError: true
|
|
2423
|
+
});
|
|
2424
|
+
return data;
|
|
2425
|
+
},
|
|
2426
|
+
queryKey: getApiV1NotificationPreferencesQueryKey(options)
|
|
2427
|
+
});
|
|
2428
|
+
var postApiV1NotificationPreferencesMutation = (options) => {
|
|
2429
|
+
const mutationOptions = {
|
|
2430
|
+
mutationFn: async (fnOptions) => {
|
|
2431
|
+
const { data } = await postApiV1NotificationPreferences({
|
|
2432
|
+
...options,
|
|
2433
|
+
...fnOptions,
|
|
2434
|
+
throwOnError: true
|
|
2435
|
+
});
|
|
2436
|
+
return data;
|
|
2437
|
+
}
|
|
2438
|
+
};
|
|
2439
|
+
return mutationOptions;
|
|
2440
|
+
};
|
|
2441
|
+
var deleteApiV1NotificationSmtpMutation = (options) => {
|
|
2442
|
+
const mutationOptions = {
|
|
2443
|
+
mutationFn: async (fnOptions) => {
|
|
2444
|
+
const { data } = await deleteApiV1NotificationSmtp({
|
|
2445
|
+
...options,
|
|
2446
|
+
...fnOptions,
|
|
2447
|
+
throwOnError: true
|
|
2448
|
+
});
|
|
2449
|
+
return data;
|
|
2450
|
+
}
|
|
2451
|
+
};
|
|
2452
|
+
return mutationOptions;
|
|
2453
|
+
};
|
|
2454
|
+
var getApiV1NotificationSmtpQueryKey = (options) => createQueryKey("getApiV1NotificationSmtp", options);
|
|
2455
|
+
var getApiV1NotificationSmtpOptions = (options) => queryOptions({
|
|
2456
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2457
|
+
const { data } = await getApiV1NotificationSmtp({
|
|
2458
|
+
...options,
|
|
2459
|
+
...queryKey[0],
|
|
2460
|
+
signal,
|
|
2461
|
+
throwOnError: true
|
|
2462
|
+
});
|
|
2463
|
+
return data;
|
|
2464
|
+
},
|
|
2465
|
+
queryKey: getApiV1NotificationSmtpQueryKey(options)
|
|
2466
|
+
});
|
|
2467
|
+
var postApiV1NotificationSmtpMutation = (options) => {
|
|
2468
|
+
const mutationOptions = {
|
|
2469
|
+
mutationFn: async (fnOptions) => {
|
|
2470
|
+
const { data } = await postApiV1NotificationSmtp({
|
|
2471
|
+
...options,
|
|
2472
|
+
...fnOptions,
|
|
2473
|
+
throwOnError: true
|
|
2474
|
+
});
|
|
2475
|
+
return data;
|
|
2476
|
+
}
|
|
2477
|
+
};
|
|
2478
|
+
return mutationOptions;
|
|
2479
|
+
};
|
|
2480
|
+
var putApiV1NotificationSmtpMutation = (options) => {
|
|
2481
|
+
const mutationOptions = {
|
|
2482
|
+
mutationFn: async (fnOptions) => {
|
|
2483
|
+
const { data } = await putApiV1NotificationSmtp({
|
|
2484
|
+
...options,
|
|
2485
|
+
...fnOptions,
|
|
2486
|
+
throwOnError: true
|
|
2487
|
+
});
|
|
2488
|
+
return data;
|
|
2489
|
+
}
|
|
2490
|
+
};
|
|
2491
|
+
return mutationOptions;
|
|
2492
|
+
};
|
|
2493
|
+
var deleteApiV1NotificationWebhookMutation = (options) => {
|
|
2494
|
+
const mutationOptions = {
|
|
2495
|
+
mutationFn: async (fnOptions) => {
|
|
2496
|
+
const { data } = await deleteApiV1NotificationWebhook({
|
|
2497
|
+
...options,
|
|
2498
|
+
...fnOptions,
|
|
2499
|
+
throwOnError: true
|
|
2500
|
+
});
|
|
2501
|
+
return data;
|
|
2502
|
+
}
|
|
2503
|
+
};
|
|
2504
|
+
return mutationOptions;
|
|
2505
|
+
};
|
|
2506
|
+
var postApiV1NotificationWebhookMutation = (options) => {
|
|
2507
|
+
const mutationOptions = {
|
|
2508
|
+
mutationFn: async (fnOptions) => {
|
|
2509
|
+
const { data } = await postApiV1NotificationWebhook({
|
|
2510
|
+
...options,
|
|
2511
|
+
...fnOptions,
|
|
2512
|
+
throwOnError: true
|
|
2513
|
+
});
|
|
2514
|
+
return data;
|
|
2515
|
+
}
|
|
2516
|
+
};
|
|
2517
|
+
return mutationOptions;
|
|
2518
|
+
};
|
|
2519
|
+
var putApiV1NotificationWebhookMutation = (options) => {
|
|
2520
|
+
const mutationOptions = {
|
|
2521
|
+
mutationFn: async (fnOptions) => {
|
|
2522
|
+
const { data } = await putApiV1NotificationWebhook({
|
|
2523
|
+
...options,
|
|
2524
|
+
...fnOptions,
|
|
2525
|
+
throwOnError: true
|
|
2526
|
+
});
|
|
2527
|
+
return data;
|
|
2528
|
+
}
|
|
2529
|
+
};
|
|
2530
|
+
return mutationOptions;
|
|
2531
|
+
};
|
|
2532
|
+
var getApiV1NotificationWebhookTypeQueryKey = (options) => createQueryKey("getApiV1NotificationWebhookType", options);
|
|
2533
|
+
var getApiV1NotificationWebhookTypeOptions = (options) => queryOptions({
|
|
2534
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2535
|
+
const { data } = await getApiV1NotificationWebhookType({
|
|
2536
|
+
...options,
|
|
2537
|
+
...queryKey[0],
|
|
2538
|
+
signal,
|
|
2539
|
+
throwOnError: true
|
|
2540
|
+
});
|
|
2541
|
+
return data;
|
|
2542
|
+
},
|
|
2543
|
+
queryKey: getApiV1NotificationWebhookTypeQueryKey(options)
|
|
2544
|
+
});
|
|
2545
|
+
var getApiV1ServersQueryKey = (options) => createQueryKey("getApiV1Servers", options);
|
|
2546
|
+
var getApiV1ServersOptions = (options) => queryOptions({
|
|
2547
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2548
|
+
const { data } = await getApiV1Servers({
|
|
2549
|
+
...options,
|
|
2550
|
+
...queryKey[0],
|
|
2551
|
+
signal,
|
|
2552
|
+
throwOnError: true
|
|
2553
|
+
});
|
|
2554
|
+
return data;
|
|
2555
|
+
},
|
|
2556
|
+
queryKey: getApiV1ServersQueryKey(options)
|
|
2557
|
+
});
|
|
2558
|
+
var getApiV1ServersSshStatusQueryKey = (options) => createQueryKey("getApiV1ServersSshStatus", options);
|
|
2559
|
+
var getApiV1ServersSshStatusOptions = (options) => queryOptions({
|
|
2560
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2561
|
+
const { data } = await getApiV1ServersSshStatus({
|
|
2562
|
+
...options,
|
|
2563
|
+
...queryKey[0],
|
|
2564
|
+
signal,
|
|
2565
|
+
throwOnError: true
|
|
2566
|
+
});
|
|
2567
|
+
return data;
|
|
2568
|
+
},
|
|
2569
|
+
queryKey: getApiV1ServersSshStatusQueryKey(options)
|
|
2570
|
+
});
|
|
2571
|
+
var postApiV1TrailProvisionMutation = (options) => {
|
|
2572
|
+
const mutationOptions = {
|
|
2573
|
+
mutationFn: async (fnOptions) => {
|
|
2574
|
+
const { data } = await postApiV1TrailProvision({
|
|
2575
|
+
...options,
|
|
2576
|
+
...fnOptions,
|
|
2577
|
+
throwOnError: true
|
|
2578
|
+
});
|
|
2579
|
+
return data;
|
|
2580
|
+
}
|
|
2581
|
+
};
|
|
2582
|
+
return mutationOptions;
|
|
2583
|
+
};
|
|
2584
|
+
var getApiV1TrailStatusSessionIdQueryKey = (options) => createQueryKey("getApiV1TrailStatusSessionId", options);
|
|
2585
|
+
var getApiV1TrailStatusSessionIdOptions = (options) => queryOptions({
|
|
2586
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2587
|
+
const { data } = await getApiV1TrailStatusSessionId({
|
|
2588
|
+
...options,
|
|
2589
|
+
...queryKey[0],
|
|
2590
|
+
signal,
|
|
2591
|
+
throwOnError: true
|
|
2592
|
+
});
|
|
2593
|
+
return data;
|
|
2594
|
+
},
|
|
2595
|
+
queryKey: getApiV1TrailStatusSessionIdQueryKey(options)
|
|
2596
|
+
});
|
|
2597
|
+
var postApiV1UpdateMutation = (options) => {
|
|
2598
|
+
const mutationOptions = {
|
|
2599
|
+
mutationFn: async (fnOptions) => {
|
|
2600
|
+
const { data } = await postApiV1Update({
|
|
2601
|
+
...options,
|
|
2602
|
+
...fnOptions,
|
|
2603
|
+
throwOnError: true
|
|
2604
|
+
});
|
|
2605
|
+
return data;
|
|
2606
|
+
}
|
|
2607
|
+
};
|
|
2608
|
+
return mutationOptions;
|
|
2609
|
+
};
|
|
2610
|
+
var getApiV1UpdateCheckQueryKey = (options) => createQueryKey("getApiV1UpdateCheck", options);
|
|
2611
|
+
var getApiV1UpdateCheckOptions = (options) => queryOptions({
|
|
2612
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2613
|
+
const { data } = await getApiV1UpdateCheck({
|
|
2614
|
+
...options,
|
|
2615
|
+
...queryKey[0],
|
|
2616
|
+
signal,
|
|
2617
|
+
throwOnError: true
|
|
2618
|
+
});
|
|
2619
|
+
return data;
|
|
2620
|
+
},
|
|
2621
|
+
queryKey: getApiV1UpdateCheckQueryKey(options)
|
|
2622
|
+
});
|
|
2623
|
+
var getApiV1UserQueryKey = (options) => createQueryKey("getApiV1User", options);
|
|
2624
|
+
var getApiV1UserOptions = (options) => queryOptions({
|
|
2625
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2626
|
+
const { data } = await getApiV1User({
|
|
2627
|
+
...options,
|
|
2628
|
+
...queryKey[0],
|
|
2629
|
+
signal,
|
|
2630
|
+
throwOnError: true
|
|
2631
|
+
});
|
|
2632
|
+
return data;
|
|
2633
|
+
},
|
|
2634
|
+
queryKey: getApiV1UserQueryKey(options)
|
|
2635
|
+
});
|
|
2636
|
+
var patchApiV1UserAvatarMutation = (options) => {
|
|
2637
|
+
const mutationOptions = {
|
|
2638
|
+
mutationFn: async (fnOptions) => {
|
|
2639
|
+
const { data } = await patchApiV1UserAvatar({
|
|
2640
|
+
...options,
|
|
2641
|
+
...fnOptions,
|
|
2642
|
+
throwOnError: true
|
|
2643
|
+
});
|
|
2644
|
+
return data;
|
|
2645
|
+
}
|
|
2646
|
+
};
|
|
2647
|
+
return mutationOptions;
|
|
2648
|
+
};
|
|
2649
|
+
var patchApiV1UserNameMutation = (options) => {
|
|
2650
|
+
const mutationOptions = {
|
|
2651
|
+
mutationFn: async (fnOptions) => {
|
|
2652
|
+
const { data } = await patchApiV1UserName({
|
|
2653
|
+
...options,
|
|
2654
|
+
...fnOptions,
|
|
2655
|
+
throwOnError: true
|
|
2656
|
+
});
|
|
2657
|
+
return data;
|
|
2658
|
+
}
|
|
2659
|
+
};
|
|
2660
|
+
return mutationOptions;
|
|
2661
|
+
};
|
|
2662
|
+
var getApiV1UserOnboardedQueryKey = (options) => createQueryKey("getApiV1UserOnboarded", options);
|
|
2663
|
+
var getApiV1UserOnboardedOptions = (options) => queryOptions({
|
|
2664
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2665
|
+
const { data } = await getApiV1UserOnboarded({
|
|
2666
|
+
...options,
|
|
2667
|
+
...queryKey[0],
|
|
2668
|
+
signal,
|
|
2669
|
+
throwOnError: true
|
|
2670
|
+
});
|
|
2671
|
+
return data;
|
|
2672
|
+
},
|
|
2673
|
+
queryKey: getApiV1UserOnboardedQueryKey(options)
|
|
2674
|
+
});
|
|
2675
|
+
var postApiV1UserOnboardedMutation = (options) => {
|
|
2676
|
+
const mutationOptions = {
|
|
2677
|
+
mutationFn: async (fnOptions) => {
|
|
2678
|
+
const { data } = await postApiV1UserOnboarded({
|
|
2679
|
+
...options,
|
|
2680
|
+
...fnOptions,
|
|
2681
|
+
throwOnError: true
|
|
2682
|
+
});
|
|
2683
|
+
return data;
|
|
2684
|
+
}
|
|
2685
|
+
};
|
|
2686
|
+
return mutationOptions;
|
|
2687
|
+
};
|
|
2688
|
+
var getApiV1UserPreferencesQueryKey = (options) => createQueryKey("getApiV1UserPreferences", options);
|
|
2689
|
+
var getApiV1UserPreferencesOptions = (options) => queryOptions({
|
|
2690
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2691
|
+
const { data } = await getApiV1UserPreferences({
|
|
2692
|
+
...options,
|
|
2693
|
+
...queryKey[0],
|
|
2694
|
+
signal,
|
|
2695
|
+
throwOnError: true
|
|
2696
|
+
});
|
|
2697
|
+
return data;
|
|
2698
|
+
},
|
|
2699
|
+
queryKey: getApiV1UserPreferencesQueryKey(options)
|
|
2700
|
+
});
|
|
2701
|
+
var putApiV1UserPreferencesMutation = (options) => {
|
|
2702
|
+
const mutationOptions = {
|
|
2703
|
+
mutationFn: async (fnOptions) => {
|
|
2704
|
+
const { data } = await putApiV1UserPreferences({
|
|
2705
|
+
...options,
|
|
2706
|
+
...fnOptions,
|
|
2707
|
+
throwOnError: true
|
|
2708
|
+
});
|
|
2709
|
+
return data;
|
|
2710
|
+
}
|
|
2711
|
+
};
|
|
2712
|
+
return mutationOptions;
|
|
2713
|
+
};
|
|
2714
|
+
var getApiV1UserSettingsQueryKey = (options) => createQueryKey("getApiV1UserSettings", options);
|
|
2715
|
+
var getApiV1UserSettingsOptions = (options) => queryOptions({
|
|
2716
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2717
|
+
const { data } = await getApiV1UserSettings({
|
|
2718
|
+
...options,
|
|
2719
|
+
...queryKey[0],
|
|
2720
|
+
signal,
|
|
2721
|
+
throwOnError: true
|
|
2722
|
+
});
|
|
2723
|
+
return data;
|
|
2724
|
+
},
|
|
2725
|
+
queryKey: getApiV1UserSettingsQueryKey(options)
|
|
2726
|
+
});
|
|
2727
|
+
var patchApiV1UserSettingsAutoUpdateMutation = (options) => {
|
|
2728
|
+
const mutationOptions = {
|
|
2729
|
+
mutationFn: async (fnOptions) => {
|
|
2730
|
+
const { data } = await patchApiV1UserSettingsAutoUpdate({
|
|
2731
|
+
...options,
|
|
2732
|
+
...fnOptions,
|
|
2733
|
+
throwOnError: true
|
|
2734
|
+
});
|
|
2735
|
+
return data;
|
|
2736
|
+
}
|
|
2737
|
+
};
|
|
2738
|
+
return mutationOptions;
|
|
2739
|
+
};
|
|
2740
|
+
var patchApiV1UserSettingsFontMutation = (options) => {
|
|
2741
|
+
const mutationOptions = {
|
|
2742
|
+
mutationFn: async (fnOptions) => {
|
|
2743
|
+
const { data } = await patchApiV1UserSettingsFont({
|
|
2744
|
+
...options,
|
|
2745
|
+
...fnOptions,
|
|
2746
|
+
throwOnError: true
|
|
2747
|
+
});
|
|
2748
|
+
return data;
|
|
2749
|
+
}
|
|
2750
|
+
};
|
|
2751
|
+
return mutationOptions;
|
|
2752
|
+
};
|
|
2753
|
+
var patchApiV1UserSettingsLanguageMutation = (options) => {
|
|
2754
|
+
const mutationOptions = {
|
|
2755
|
+
mutationFn: async (fnOptions) => {
|
|
2756
|
+
const { data } = await patchApiV1UserSettingsLanguage({
|
|
2757
|
+
...options,
|
|
2758
|
+
...fnOptions,
|
|
2759
|
+
throwOnError: true
|
|
2760
|
+
});
|
|
2761
|
+
return data;
|
|
2762
|
+
}
|
|
2763
|
+
};
|
|
2764
|
+
return mutationOptions;
|
|
2765
|
+
};
|
|
2766
|
+
var patchApiV1UserSettingsThemeMutation = (options) => {
|
|
2767
|
+
const mutationOptions = {
|
|
2768
|
+
mutationFn: async (fnOptions) => {
|
|
2769
|
+
const { data } = await patchApiV1UserSettingsTheme({
|
|
2770
|
+
...options,
|
|
2771
|
+
...fnOptions,
|
|
2772
|
+
throwOnError: true
|
|
2773
|
+
});
|
|
2774
|
+
return data;
|
|
2775
|
+
}
|
|
2776
|
+
};
|
|
2777
|
+
return mutationOptions;
|
|
2778
|
+
};
|
|
2779
|
+
var postApiV1WebhookMutation = (options) => {
|
|
2780
|
+
const mutationOptions = {
|
|
2781
|
+
mutationFn: async (fnOptions) => {
|
|
2782
|
+
const { data } = await postApiV1Webhook({
|
|
2783
|
+
...options,
|
|
2784
|
+
...fnOptions,
|
|
2785
|
+
throwOnError: true
|
|
2786
|
+
});
|
|
2787
|
+
return data;
|
|
2788
|
+
}
|
|
2789
|
+
};
|
|
2790
|
+
return mutationOptions;
|
|
2791
|
+
};
|
|
2792
|
+
var getWsQueryKey = (options) => createQueryKey("getWs", options);
|
|
2793
|
+
var getWsOptions = (options) => queryOptions({
|
|
2794
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2795
|
+
const { data } = await getWs({
|
|
2796
|
+
...options,
|
|
2797
|
+
...queryKey[0],
|
|
2798
|
+
signal,
|
|
2799
|
+
throwOnError: true
|
|
2800
|
+
});
|
|
2801
|
+
return data;
|
|
2802
|
+
},
|
|
2803
|
+
queryKey: getWsQueryKey(options)
|
|
2804
|
+
});
|
|
2805
|
+
var getWsLiveApplicationIdQueryKey = (options) => createQueryKey("getWsLiveApplicationId", options);
|
|
2806
|
+
var getWsLiveApplicationIdOptions = (options) => queryOptions({
|
|
2807
|
+
queryFn: async ({ queryKey, signal }) => {
|
|
2808
|
+
const { data } = await getWsLiveApplicationId({
|
|
2809
|
+
...options,
|
|
2810
|
+
...queryKey[0],
|
|
2811
|
+
signal,
|
|
2812
|
+
throwOnError: true
|
|
2813
|
+
});
|
|
2814
|
+
return data;
|
|
2815
|
+
},
|
|
2816
|
+
queryKey: getWsLiveApplicationIdQueryKey(options)
|
|
2817
|
+
});
|
|
2818
|
+
|
|
1316
2819
|
// src/zod.gen.ts
|
|
1317
2820
|
import { z } from "zod";
|
|
1318
2821
|
var zAddApplicationDomainRequest = z.object({
|
|
@@ -5159,113 +6662,269 @@ var zGetApiV1DeployApplicationsData = z.object({
|
|
|
5159
6662
|
var zGetApiV1DeployApplicationsResponse = zListApplicationsResponse;
|
|
5160
6663
|
export {
|
|
5161
6664
|
deleteApiV1ContainerContainerId,
|
|
6665
|
+
deleteApiV1ContainerContainerIdMutation,
|
|
5162
6666
|
deleteApiV1DeployApplication,
|
|
5163
6667
|
deleteApiV1DeployApplicationDomains,
|
|
6668
|
+
deleteApiV1DeployApplicationDomainsMutation,
|
|
6669
|
+
deleteApiV1DeployApplicationMutation,
|
|
5164
6670
|
deleteApiV1Domain,
|
|
6671
|
+
deleteApiV1DomainMutation,
|
|
5165
6672
|
deleteApiV1ExtensionsId,
|
|
6673
|
+
deleteApiV1ExtensionsIdMutation,
|
|
5166
6674
|
deleteApiV1FileManagerDeleteDirectory,
|
|
6675
|
+
deleteApiV1FileManagerDeleteDirectoryMutation,
|
|
5167
6676
|
deleteApiV1GithubConnector,
|
|
6677
|
+
deleteApiV1GithubConnectorMutation,
|
|
5168
6678
|
deleteApiV1Healthcheck,
|
|
6679
|
+
deleteApiV1HealthcheckMutation,
|
|
5169
6680
|
deleteApiV1NotificationSmtp,
|
|
6681
|
+
deleteApiV1NotificationSmtpMutation,
|
|
5170
6682
|
deleteApiV1NotificationWebhook,
|
|
6683
|
+
deleteApiV1NotificationWebhookMutation,
|
|
5171
6684
|
getApiV1AuditLogs,
|
|
6685
|
+
getApiV1AuditLogsOptions,
|
|
6686
|
+
getApiV1AuditLogsQueryKey,
|
|
5172
6687
|
getApiV1AuthBootstrap,
|
|
6688
|
+
getApiV1AuthBootstrapOptions,
|
|
6689
|
+
getApiV1AuthBootstrapQueryKey,
|
|
5173
6690
|
getApiV1AuthIsAdminRegistered,
|
|
6691
|
+
getApiV1AuthIsAdminRegisteredOptions,
|
|
6692
|
+
getApiV1AuthIsAdminRegisteredQueryKey,
|
|
5174
6693
|
getApiV1Container,
|
|
5175
6694
|
getApiV1ContainerContainerId,
|
|
6695
|
+
getApiV1ContainerContainerIdOptions,
|
|
6696
|
+
getApiV1ContainerContainerIdQueryKey,
|
|
6697
|
+
getApiV1ContainerOptions,
|
|
6698
|
+
getApiV1ContainerQueryKey,
|
|
5176
6699
|
getApiV1DeployApplication,
|
|
5177
6700
|
getApiV1DeployApplicationDeployments,
|
|
5178
6701
|
getApiV1DeployApplicationDeploymentsDeploymentId,
|
|
5179
6702
|
getApiV1DeployApplicationDeploymentsDeploymentIdLogs,
|
|
6703
|
+
getApiV1DeployApplicationDeploymentsDeploymentIdLogsOptions,
|
|
6704
|
+
getApiV1DeployApplicationDeploymentsDeploymentIdLogsQueryKey,
|
|
6705
|
+
getApiV1DeployApplicationDeploymentsDeploymentIdOptions,
|
|
6706
|
+
getApiV1DeployApplicationDeploymentsDeploymentIdQueryKey,
|
|
6707
|
+
getApiV1DeployApplicationDeploymentsInfiniteOptions,
|
|
6708
|
+
getApiV1DeployApplicationDeploymentsInfiniteQueryKey,
|
|
6709
|
+
getApiV1DeployApplicationDeploymentsOptions,
|
|
6710
|
+
getApiV1DeployApplicationDeploymentsQueryKey,
|
|
5180
6711
|
getApiV1DeployApplicationLogsApplicationId,
|
|
6712
|
+
getApiV1DeployApplicationLogsApplicationIdOptions,
|
|
6713
|
+
getApiV1DeployApplicationLogsApplicationIdQueryKey,
|
|
6714
|
+
getApiV1DeployApplicationOptions,
|
|
5181
6715
|
getApiV1DeployApplicationProjectFamily,
|
|
5182
6716
|
getApiV1DeployApplicationProjectFamilyEnvironments,
|
|
6717
|
+
getApiV1DeployApplicationProjectFamilyEnvironmentsOptions,
|
|
6718
|
+
getApiV1DeployApplicationProjectFamilyEnvironmentsQueryKey,
|
|
6719
|
+
getApiV1DeployApplicationProjectFamilyOptions,
|
|
6720
|
+
getApiV1DeployApplicationProjectFamilyQueryKey,
|
|
6721
|
+
getApiV1DeployApplicationQueryKey,
|
|
5183
6722
|
getApiV1DeployApplications,
|
|
6723
|
+
getApiV1DeployApplicationsInfiniteOptions,
|
|
6724
|
+
getApiV1DeployApplicationsInfiniteQueryKey,
|
|
6725
|
+
getApiV1DeployApplicationsOptions,
|
|
6726
|
+
getApiV1DeployApplicationsQueryKey,
|
|
5184
6727
|
getApiV1DomainGenerate,
|
|
6728
|
+
getApiV1DomainGenerateOptions,
|
|
6729
|
+
getApiV1DomainGenerateQueryKey,
|
|
5185
6730
|
getApiV1Domains,
|
|
6731
|
+
getApiV1DomainsOptions,
|
|
6732
|
+
getApiV1DomainsQueryKey,
|
|
5186
6733
|
getApiV1Extensions,
|
|
5187
6734
|
getApiV1ExtensionsByExtensionIdExtensionId,
|
|
5188
6735
|
getApiV1ExtensionsByExtensionIdExtensionIdExecutions,
|
|
6736
|
+
getApiV1ExtensionsByExtensionIdExtensionIdExecutionsOptions,
|
|
6737
|
+
getApiV1ExtensionsByExtensionIdExtensionIdExecutionsQueryKey,
|
|
6738
|
+
getApiV1ExtensionsByExtensionIdExtensionIdOptions,
|
|
6739
|
+
getApiV1ExtensionsByExtensionIdExtensionIdQueryKey,
|
|
5189
6740
|
getApiV1ExtensionsCategories,
|
|
6741
|
+
getApiV1ExtensionsCategoriesOptions,
|
|
6742
|
+
getApiV1ExtensionsCategoriesQueryKey,
|
|
5190
6743
|
getApiV1ExtensionsExecutionExecutionId,
|
|
5191
6744
|
getApiV1ExtensionsExecutionExecutionIdLogs,
|
|
6745
|
+
getApiV1ExtensionsExecutionExecutionIdLogsOptions,
|
|
6746
|
+
getApiV1ExtensionsExecutionExecutionIdLogsQueryKey,
|
|
6747
|
+
getApiV1ExtensionsExecutionExecutionIdOptions,
|
|
6748
|
+
getApiV1ExtensionsExecutionExecutionIdQueryKey,
|
|
5192
6749
|
getApiV1ExtensionsId,
|
|
6750
|
+
getApiV1ExtensionsIdOptions,
|
|
6751
|
+
getApiV1ExtensionsIdQueryKey,
|
|
6752
|
+
getApiV1ExtensionsOptions,
|
|
6753
|
+
getApiV1ExtensionsQueryKey,
|
|
5193
6754
|
getApiV1FeatureFlags,
|
|
5194
6755
|
getApiV1FeatureFlagsCheck,
|
|
6756
|
+
getApiV1FeatureFlagsCheckOptions,
|
|
6757
|
+
getApiV1FeatureFlagsCheckQueryKey,
|
|
6758
|
+
getApiV1FeatureFlagsOptions,
|
|
6759
|
+
getApiV1FeatureFlagsQueryKey,
|
|
5195
6760
|
getApiV1FileManager,
|
|
6761
|
+
getApiV1FileManagerOptions,
|
|
6762
|
+
getApiV1FileManagerQueryKey,
|
|
5196
6763
|
getApiV1GithubConnectorAll,
|
|
6764
|
+
getApiV1GithubConnectorAllOptions,
|
|
6765
|
+
getApiV1GithubConnectorAllQueryKey,
|
|
5197
6766
|
getApiV1GithubConnectorRepositories,
|
|
6767
|
+
getApiV1GithubConnectorRepositoriesOptions,
|
|
6768
|
+
getApiV1GithubConnectorRepositoriesQueryKey,
|
|
5198
6769
|
getApiV1Health,
|
|
6770
|
+
getApiV1HealthOptions,
|
|
6771
|
+
getApiV1HealthQueryKey,
|
|
5199
6772
|
getApiV1Healthcheck,
|
|
6773
|
+
getApiV1HealthcheckOptions,
|
|
6774
|
+
getApiV1HealthcheckQueryKey,
|
|
5200
6775
|
getApiV1HealthcheckResults,
|
|
6776
|
+
getApiV1HealthcheckResultsOptions,
|
|
6777
|
+
getApiV1HealthcheckResultsQueryKey,
|
|
5201
6778
|
getApiV1HealthcheckStats,
|
|
6779
|
+
getApiV1HealthcheckStatsOptions,
|
|
6780
|
+
getApiV1HealthcheckStatsQueryKey,
|
|
5202
6781
|
getApiV1NotificationPreferences,
|
|
6782
|
+
getApiV1NotificationPreferencesOptions,
|
|
6783
|
+
getApiV1NotificationPreferencesQueryKey,
|
|
5203
6784
|
getApiV1NotificationSmtp,
|
|
6785
|
+
getApiV1NotificationSmtpOptions,
|
|
6786
|
+
getApiV1NotificationSmtpQueryKey,
|
|
5204
6787
|
getApiV1NotificationWebhookType,
|
|
6788
|
+
getApiV1NotificationWebhookTypeOptions,
|
|
6789
|
+
getApiV1NotificationWebhookTypeQueryKey,
|
|
5205
6790
|
getApiV1Servers,
|
|
6791
|
+
getApiV1ServersOptions,
|
|
6792
|
+
getApiV1ServersQueryKey,
|
|
5206
6793
|
getApiV1ServersSshStatus,
|
|
6794
|
+
getApiV1ServersSshStatusOptions,
|
|
6795
|
+
getApiV1ServersSshStatusQueryKey,
|
|
5207
6796
|
getApiV1TrailStatusSessionId,
|
|
6797
|
+
getApiV1TrailStatusSessionIdOptions,
|
|
6798
|
+
getApiV1TrailStatusSessionIdQueryKey,
|
|
5208
6799
|
getApiV1UpdateCheck,
|
|
6800
|
+
getApiV1UpdateCheckOptions,
|
|
6801
|
+
getApiV1UpdateCheckQueryKey,
|
|
5209
6802
|
getApiV1User,
|
|
5210
6803
|
getApiV1UserOnboarded,
|
|
6804
|
+
getApiV1UserOnboardedOptions,
|
|
6805
|
+
getApiV1UserOnboardedQueryKey,
|
|
6806
|
+
getApiV1UserOptions,
|
|
5211
6807
|
getApiV1UserPreferences,
|
|
6808
|
+
getApiV1UserPreferencesOptions,
|
|
6809
|
+
getApiV1UserPreferencesQueryKey,
|
|
6810
|
+
getApiV1UserQueryKey,
|
|
5212
6811
|
getApiV1UserSettings,
|
|
6812
|
+
getApiV1UserSettingsOptions,
|
|
6813
|
+
getApiV1UserSettingsQueryKey,
|
|
5213
6814
|
getWs,
|
|
5214
6815
|
getWsLiveApplicationId,
|
|
6816
|
+
getWsLiveApplicationIdOptions,
|
|
6817
|
+
getWsLiveApplicationIdQueryKey,
|
|
6818
|
+
getWsOptions,
|
|
6819
|
+
getWsQueryKey,
|
|
5215
6820
|
patchApiV1HealthcheckToggle,
|
|
6821
|
+
patchApiV1HealthcheckToggleMutation,
|
|
5216
6822
|
patchApiV1UserAvatar,
|
|
6823
|
+
patchApiV1UserAvatarMutation,
|
|
5217
6824
|
patchApiV1UserName,
|
|
6825
|
+
patchApiV1UserNameMutation,
|
|
5218
6826
|
patchApiV1UserSettingsAutoUpdate,
|
|
6827
|
+
patchApiV1UserSettingsAutoUpdateMutation,
|
|
5219
6828
|
patchApiV1UserSettingsFont,
|
|
6829
|
+
patchApiV1UserSettingsFontMutation,
|
|
5220
6830
|
patchApiV1UserSettingsLanguage,
|
|
6831
|
+
patchApiV1UserSettingsLanguageMutation,
|
|
5221
6832
|
patchApiV1UserSettingsTheme,
|
|
6833
|
+
patchApiV1UserSettingsThemeMutation,
|
|
5222
6834
|
postApiV1AuthCliInit,
|
|
6835
|
+
postApiV1AuthCliInitMutation,
|
|
5223
6836
|
postApiV1ContainerContainerIdLogs,
|
|
6837
|
+
postApiV1ContainerContainerIdLogsMutation,
|
|
5224
6838
|
postApiV1ContainerContainerIdRestart,
|
|
6839
|
+
postApiV1ContainerContainerIdRestartMutation,
|
|
5225
6840
|
postApiV1ContainerContainerIdStart,
|
|
6841
|
+
postApiV1ContainerContainerIdStartMutation,
|
|
5226
6842
|
postApiV1ContainerContainerIdStop,
|
|
6843
|
+
postApiV1ContainerContainerIdStopMutation,
|
|
5227
6844
|
postApiV1ContainerImages,
|
|
6845
|
+
postApiV1ContainerImagesMutation,
|
|
5228
6846
|
postApiV1ContainerPruneBuildCache,
|
|
6847
|
+
postApiV1ContainerPruneBuildCacheMutation,
|
|
5229
6848
|
postApiV1ContainerPruneImages,
|
|
6849
|
+
postApiV1ContainerPruneImagesMutation,
|
|
5230
6850
|
postApiV1DeployApplication,
|
|
5231
6851
|
postApiV1DeployApplicationDomains,
|
|
6852
|
+
postApiV1DeployApplicationDomainsMutation,
|
|
6853
|
+
postApiV1DeployApplicationMutation,
|
|
5232
6854
|
postApiV1DeployApplicationProject,
|
|
5233
6855
|
postApiV1DeployApplicationProjectAddToFamily,
|
|
6856
|
+
postApiV1DeployApplicationProjectAddToFamilyMutation,
|
|
5234
6857
|
postApiV1DeployApplicationProjectDeploy,
|
|
6858
|
+
postApiV1DeployApplicationProjectDeployMutation,
|
|
5235
6859
|
postApiV1DeployApplicationProjectDuplicate,
|
|
6860
|
+
postApiV1DeployApplicationProjectDuplicateMutation,
|
|
6861
|
+
postApiV1DeployApplicationProjectMutation,
|
|
5236
6862
|
postApiV1DeployApplicationRecover,
|
|
6863
|
+
postApiV1DeployApplicationRecoverMutation,
|
|
5237
6864
|
postApiV1DeployApplicationRedeploy,
|
|
6865
|
+
postApiV1DeployApplicationRedeployMutation,
|
|
5238
6866
|
postApiV1DeployApplicationRestart,
|
|
6867
|
+
postApiV1DeployApplicationRestartMutation,
|
|
5239
6868
|
postApiV1DeployApplicationRollback,
|
|
6869
|
+
postApiV1DeployApplicationRollbackMutation,
|
|
5240
6870
|
postApiV1Domain,
|
|
6871
|
+
postApiV1DomainMutation,
|
|
5241
6872
|
postApiV1ExtensionsExecutionExecutionIdCancel,
|
|
6873
|
+
postApiV1ExtensionsExecutionExecutionIdCancelMutation,
|
|
5242
6874
|
postApiV1ExtensionsExtensionIdFork,
|
|
6875
|
+
postApiV1ExtensionsExtensionIdForkMutation,
|
|
5243
6876
|
postApiV1ExtensionsExtensionIdRun,
|
|
6877
|
+
postApiV1ExtensionsExtensionIdRunMutation,
|
|
5244
6878
|
postApiV1FileManagerCopyDirectory,
|
|
6879
|
+
postApiV1FileManagerCopyDirectoryMutation,
|
|
5245
6880
|
postApiV1FileManagerCreateDirectory,
|
|
6881
|
+
postApiV1FileManagerCreateDirectoryMutation,
|
|
5246
6882
|
postApiV1FileManagerMoveDirectory,
|
|
6883
|
+
postApiV1FileManagerMoveDirectoryMutation,
|
|
5247
6884
|
postApiV1FileManagerUpload,
|
|
6885
|
+
postApiV1FileManagerUploadMutation,
|
|
5248
6886
|
postApiV1GithubConnector,
|
|
6887
|
+
postApiV1GithubConnectorMutation,
|
|
5249
6888
|
postApiV1GithubConnectorRepositoryBranches,
|
|
6889
|
+
postApiV1GithubConnectorRepositoryBranchesMutation,
|
|
5250
6890
|
postApiV1Healthcheck,
|
|
6891
|
+
postApiV1HealthcheckMutation,
|
|
5251
6892
|
postApiV1LivePause,
|
|
6893
|
+
postApiV1LivePauseMutation,
|
|
5252
6894
|
postApiV1NotificationPreferences,
|
|
6895
|
+
postApiV1NotificationPreferencesMutation,
|
|
5253
6896
|
postApiV1NotificationSmtp,
|
|
6897
|
+
postApiV1NotificationSmtpMutation,
|
|
5254
6898
|
postApiV1NotificationWebhook,
|
|
6899
|
+
postApiV1NotificationWebhookMutation,
|
|
5255
6900
|
postApiV1TrailProvision,
|
|
6901
|
+
postApiV1TrailProvisionMutation,
|
|
5256
6902
|
postApiV1Update,
|
|
6903
|
+
postApiV1UpdateMutation,
|
|
5257
6904
|
postApiV1UserOnboarded,
|
|
6905
|
+
postApiV1UserOnboardedMutation,
|
|
5258
6906
|
postApiV1Webhook,
|
|
6907
|
+
postApiV1WebhookMutation,
|
|
5259
6908
|
putApiV1ContainerContainerIdResources,
|
|
6909
|
+
putApiV1ContainerContainerIdResourcesMutation,
|
|
5260
6910
|
putApiV1DeployApplication,
|
|
5261
6911
|
putApiV1DeployApplicationLabels,
|
|
6912
|
+
putApiV1DeployApplicationLabelsMutation,
|
|
6913
|
+
putApiV1DeployApplicationMutation,
|
|
5262
6914
|
putApiV1Domain,
|
|
6915
|
+
putApiV1DomainMutation,
|
|
5263
6916
|
putApiV1FeatureFlags,
|
|
6917
|
+
putApiV1FeatureFlagsMutation,
|
|
5264
6918
|
putApiV1GithubConnector,
|
|
6919
|
+
putApiV1GithubConnectorMutation,
|
|
5265
6920
|
putApiV1Healthcheck,
|
|
6921
|
+
putApiV1HealthcheckMutation,
|
|
5266
6922
|
putApiV1NotificationSmtp,
|
|
6923
|
+
putApiV1NotificationSmtpMutation,
|
|
5267
6924
|
putApiV1NotificationWebhook,
|
|
6925
|
+
putApiV1NotificationWebhookMutation,
|
|
5268
6926
|
putApiV1UserPreferences,
|
|
6927
|
+
putApiV1UserPreferencesMutation,
|
|
5269
6928
|
zAddApplicationDomainRequest,
|
|
5270
6929
|
zAddApplicationToFamilyRequest,
|
|
5271
6930
|
zAdminRegisteredResponse,
|