We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f34f31c commit 3199f45Copy full SHA for 3199f45
3 files changed
packages/spec/src/api/discovery.zod.ts
@@ -10,6 +10,7 @@ export const ApiCapabilitiesSchema = z.object({
10
websockets: z.boolean().default(false),
11
files: z.boolean().default(true),
12
analytics: z.boolean().default(false).describe('Is the Analytics/BI engine enabled?'),
13
+ hub: z.boolean().default(false).describe('Is Hub management enabled?'),
14
});
15
16
/**
@@ -35,6 +36,9 @@ export const ApiRoutesSchema = z.object({
35
36
37
/** Base URL for Analytics/BI operations */
38
analytics: z.string().optional().describe('e.g. /api/analytics'),
39
+
40
+ /** Base URL for Hub Management (Multi-tenant/Marketplace) */
41
+ hub: z.string().optional().describe('e.g. /api/hub'),
42
43
/** GraphQL Endpoint (if enabled) */
44
graphql: z.string().optional().describe('e.g. /graphql'),
0 commit comments