@internetderdinge/api 1.229.39 → 1.229.40
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.
|
@@ -13,6 +13,7 @@ export const adminSearchRouteSpecs = [
|
|
|
13
13
|
requestSchema: adminStatsSchema,
|
|
14
14
|
responseSchema: adminStatsResponseSchema,
|
|
15
15
|
handler: getStats,
|
|
16
|
+
privateDocs: true,
|
|
16
17
|
summary: "Get admin stats",
|
|
17
18
|
description: "Returns total counts for organizations, users, and devices.",
|
|
18
19
|
},
|
|
@@ -24,6 +25,7 @@ export const adminSearchRouteSpecs = [
|
|
|
24
25
|
responseSchema: adminSearchResponseSchema,
|
|
25
26
|
handler: searchAdmin,
|
|
26
27
|
summary: "Search organizations, users, and devices",
|
|
28
|
+
privateDocs: true,
|
|
27
29
|
description: "Performs an admin-only global search over organizations, users, and devices.",
|
|
28
30
|
},
|
|
29
31
|
{
|
|
@@ -33,6 +35,7 @@ export const adminSearchRouteSpecs = [
|
|
|
33
35
|
requestSchema: adminIotDevicesSchema,
|
|
34
36
|
responseSchema: adminIotDevicesResponseSchema,
|
|
35
37
|
handler: getIotDevices,
|
|
38
|
+
privateDocs: true,
|
|
36
39
|
summary: "List IoT devices",
|
|
37
40
|
description: "Returns the IoT device status list used for admin device/order sync workflows.",
|
|
38
41
|
},
|
|
@@ -43,6 +46,7 @@ export const adminSearchRouteSpecs = [
|
|
|
43
46
|
requestSchema: adminDevicesSchema,
|
|
44
47
|
responseSchema: adminDevicesResponseSchema,
|
|
45
48
|
handler: getDevices,
|
|
49
|
+
privateDocs: true,
|
|
46
50
|
summary: "List MongoDB devices",
|
|
47
51
|
description: "Returns all device documents from MongoDB for admin sync workflows.",
|
|
48
52
|
},
|
package/package.json
CHANGED
|
@@ -31,6 +31,7 @@ export const adminSearchRouteSpecs: RouteSpec[] = [
|
|
|
31
31
|
requestSchema: adminStatsSchema,
|
|
32
32
|
responseSchema: adminStatsResponseSchema,
|
|
33
33
|
handler: getStats,
|
|
34
|
+
privateDocs: true,
|
|
34
35
|
summary: "Get admin stats",
|
|
35
36
|
description: "Returns total counts for organizations, users, and devices.",
|
|
36
37
|
},
|
|
@@ -42,6 +43,7 @@ export const adminSearchRouteSpecs: RouteSpec[] = [
|
|
|
42
43
|
responseSchema: adminSearchResponseSchema,
|
|
43
44
|
handler: searchAdmin,
|
|
44
45
|
summary: "Search organizations, users, and devices",
|
|
46
|
+
privateDocs: true,
|
|
45
47
|
description:
|
|
46
48
|
"Performs an admin-only global search over organizations, users, and devices.",
|
|
47
49
|
},
|
|
@@ -52,6 +54,7 @@ export const adminSearchRouteSpecs: RouteSpec[] = [
|
|
|
52
54
|
requestSchema: adminIotDevicesSchema,
|
|
53
55
|
responseSchema: adminIotDevicesResponseSchema,
|
|
54
56
|
handler: getIotDevices,
|
|
57
|
+
privateDocs: true,
|
|
55
58
|
summary: "List IoT devices",
|
|
56
59
|
description:
|
|
57
60
|
"Returns the IoT device status list used for admin device/order sync workflows.",
|
|
@@ -63,6 +66,7 @@ export const adminSearchRouteSpecs: RouteSpec[] = [
|
|
|
63
66
|
requestSchema: adminDevicesSchema,
|
|
64
67
|
responseSchema: adminDevicesResponseSchema,
|
|
65
68
|
handler: getDevices,
|
|
69
|
+
privateDocs: true,
|
|
66
70
|
summary: "List MongoDB devices",
|
|
67
71
|
description:
|
|
68
72
|
"Returns all device documents from MongoDB for admin sync workflows.",
|