@brigadasos/nadeshiko-sdk 2.0.1-internal.d5d0c83 → 2.0.2-internal
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.cjs +73 -1
- package/dist/index.cjs.map +4 -4
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +73 -1
- package/dist/index.js.map +4 -4
- package/dist/internal/admin.gen.d.ts +1 -1
- package/dist/internal/admin.gen.d.ts.map +1 -1
- package/dist/nadeshiko.gen.d.ts +108 -0
- package/dist/nadeshiko.gen.d.ts.map +1 -1
- package/dist/sdk.gen.d.ts +47 -1
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/types.gen.d.ts +348 -0
- package/dist/types.gen.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -99,6 +99,12 @@ __export(exports_internal, {
|
|
|
99
99
|
getAdminQueue: () => getAdminQueue,
|
|
100
100
|
getAdminMediaAuditRun: () => getAdminMediaAuditRun,
|
|
101
101
|
getAdminHealth: () => getAdminHealth,
|
|
102
|
+
getAdminDashboardSystem: () => getAdminDashboardSystem,
|
|
103
|
+
getAdminDashboardOverview: () => getAdminDashboardOverview,
|
|
104
|
+
getAdminDashboardMedia: () => getAdminDashboardMedia,
|
|
105
|
+
getAdminDashboardCollections: () => getAdminDashboardCollections,
|
|
106
|
+
getAdminDashboardApiKeys: () => getAdminDashboardApiKeys,
|
|
107
|
+
getAdminDashboardActivity: () => getAdminDashboardActivity,
|
|
102
108
|
getAdminDashboard: () => getAdminDashboard,
|
|
103
109
|
exportUserData: () => exportUserData,
|
|
104
110
|
enrollUserLab: () => enrollUserLab,
|
|
@@ -1425,6 +1431,60 @@ var getAdminDashboard = (options) => (options?.client ?? client).get({
|
|
|
1425
1431
|
url: "/v1/admin/dashboard",
|
|
1426
1432
|
...options
|
|
1427
1433
|
});
|
|
1434
|
+
var getAdminDashboardOverview = (options) => (options?.client ?? client).get({
|
|
1435
|
+
security: [{
|
|
1436
|
+
in: "cookie",
|
|
1437
|
+
name: "nadeshiko.session_token",
|
|
1438
|
+
type: "apiKey"
|
|
1439
|
+
}],
|
|
1440
|
+
url: "/v1/admin/dashboard/overview",
|
|
1441
|
+
...options
|
|
1442
|
+
});
|
|
1443
|
+
var getAdminDashboardMedia = (options) => (options?.client ?? client).get({
|
|
1444
|
+
security: [{
|
|
1445
|
+
in: "cookie",
|
|
1446
|
+
name: "nadeshiko.session_token",
|
|
1447
|
+
type: "apiKey"
|
|
1448
|
+
}],
|
|
1449
|
+
url: "/v1/admin/dashboard/media",
|
|
1450
|
+
...options
|
|
1451
|
+
});
|
|
1452
|
+
var getAdminDashboardActivity = (options) => (options?.client ?? client).get({
|
|
1453
|
+
security: [{
|
|
1454
|
+
in: "cookie",
|
|
1455
|
+
name: "nadeshiko.session_token",
|
|
1456
|
+
type: "apiKey"
|
|
1457
|
+
}],
|
|
1458
|
+
url: "/v1/admin/dashboard/activity",
|
|
1459
|
+
...options
|
|
1460
|
+
});
|
|
1461
|
+
var getAdminDashboardCollections = (options) => (options?.client ?? client).get({
|
|
1462
|
+
security: [{
|
|
1463
|
+
in: "cookie",
|
|
1464
|
+
name: "nadeshiko.session_token",
|
|
1465
|
+
type: "apiKey"
|
|
1466
|
+
}],
|
|
1467
|
+
url: "/v1/admin/dashboard/collections",
|
|
1468
|
+
...options
|
|
1469
|
+
});
|
|
1470
|
+
var getAdminDashboardApiKeys = (options) => (options?.client ?? client).get({
|
|
1471
|
+
security: [{
|
|
1472
|
+
in: "cookie",
|
|
1473
|
+
name: "nadeshiko.session_token",
|
|
1474
|
+
type: "apiKey"
|
|
1475
|
+
}],
|
|
1476
|
+
url: "/v1/admin/dashboard/api-keys",
|
|
1477
|
+
...options
|
|
1478
|
+
});
|
|
1479
|
+
var getAdminDashboardSystem = (options) => (options?.client ?? client).get({
|
|
1480
|
+
security: [{
|
|
1481
|
+
in: "cookie",
|
|
1482
|
+
name: "nadeshiko.session_token",
|
|
1483
|
+
type: "apiKey"
|
|
1484
|
+
}],
|
|
1485
|
+
url: "/v1/admin/dashboard/system",
|
|
1486
|
+
...options
|
|
1487
|
+
});
|
|
1428
1488
|
var getAdminHealth = (options) => (options?.client ?? client).get({
|
|
1429
1489
|
security: [{
|
|
1430
1490
|
in: "cookie",
|
|
@@ -1792,6 +1852,12 @@ function createNadeshikoClient(config) {
|
|
|
1792
1852
|
searchCollectionSegments: (options) => searchCollectionSegments({ throwOnError: true, ...options, client: clientInstance }),
|
|
1793
1853
|
getCollectionStats: (options) => getCollectionStats({ throwOnError: true, ...options, client: clientInstance }),
|
|
1794
1854
|
getAdminDashboard: (options) => getAdminDashboard({ throwOnError: true, ...options, client: clientInstance }),
|
|
1855
|
+
getAdminDashboardOverview: (options) => getAdminDashboardOverview({ throwOnError: true, ...options, client: clientInstance }),
|
|
1856
|
+
getAdminDashboardMedia: (options) => getAdminDashboardMedia({ throwOnError: true, ...options, client: clientInstance }),
|
|
1857
|
+
getAdminDashboardActivity: (options) => getAdminDashboardActivity({ throwOnError: true, ...options, client: clientInstance }),
|
|
1858
|
+
getAdminDashboardCollections: (options) => getAdminDashboardCollections({ throwOnError: true, ...options, client: clientInstance }),
|
|
1859
|
+
getAdminDashboardApiKeys: (options) => getAdminDashboardApiKeys({ throwOnError: true, ...options, client: clientInstance }),
|
|
1860
|
+
getAdminDashboardSystem: (options) => getAdminDashboardSystem({ throwOnError: true, ...options, client: clientInstance }),
|
|
1795
1861
|
getAdminHealth: (options) => getAdminHealth({ throwOnError: true, ...options, client: clientInstance }),
|
|
1796
1862
|
triggerReindex: (options) => triggerReindex({ throwOnError: true, ...options, client: clientInstance }),
|
|
1797
1863
|
listAdminQueueStats: (options) => listAdminQueueStats({ throwOnError: true, ...options, client: clientInstance }),
|
|
@@ -1892,6 +1958,12 @@ __export(exports_admin_gen, {
|
|
|
1892
1958
|
getAdminQueue: () => getAdminQueue,
|
|
1893
1959
|
getAdminMediaAuditRun: () => getAdminMediaAuditRun,
|
|
1894
1960
|
getAdminHealth: () => getAdminHealth,
|
|
1961
|
+
getAdminDashboardSystem: () => getAdminDashboardSystem,
|
|
1962
|
+
getAdminDashboardOverview: () => getAdminDashboardOverview,
|
|
1963
|
+
getAdminDashboardMedia: () => getAdminDashboardMedia,
|
|
1964
|
+
getAdminDashboardCollections: () => getAdminDashboardCollections,
|
|
1965
|
+
getAdminDashboardApiKeys: () => getAdminDashboardApiKeys,
|
|
1966
|
+
getAdminDashboardActivity: () => getAdminDashboardActivity,
|
|
1895
1967
|
getAdminDashboard: () => getAdminDashboard,
|
|
1896
1968
|
clearAdminImpersonation: () => clearAdminImpersonation,
|
|
1897
1969
|
batchUpdateAdminReports: () => batchUpdateAdminReports
|
|
@@ -1926,5 +1998,5 @@ function patchCursor(options, cursor) {
|
|
|
1926
1998
|
return { ...options, body: { cursor } };
|
|
1927
1999
|
}
|
|
1928
2000
|
|
|
1929
|
-
//# debugId=
|
|
2001
|
+
//# debugId=76AF62714D2C888664756E2164756E21
|
|
1930
2002
|
//# sourceMappingURL=index.js.map
|