Skip to content

Commit 659b0d8

Browse files
committed
feat(plugin): update ObjectQLPlugin type to 'objectql' and add it to CORE_PLUGIN_TYPES
1 parent a83b744 commit 659b0d8

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/objectql/src/plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export type { Plugin, PluginContext };
66

77
export class ObjectQLPlugin implements Plugin {
88
name = 'com.objectstack.engine.objectql';
9-
type = 'standard';
9+
type = 'objectql';
1010
version = '1.0.0';
1111

1212
private ql: ObjectQL | undefined;

packages/spec/src/kernel/manifest.zod.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ export const ManifestSchema = z.object({
5757
'plugin',
5858
...CORE_PLUGIN_TYPES,
5959
'module',
60-
'objectql',
6160
'gateway', // Deprecated: use 'server'
6261
'adapter'
6362
]).describe('Type of package'),

packages/spec/src/kernel/plugin.zod.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ export const CORE_PLUGIN_TYPES = [
8989
'server', // Protocol: HTTP/RPC Servers (e.g. Hono, GraphQL)
9090
'app', // Business: Vertical Solution Bundle (Metadata + Logic)
9191
'theme', // Appearance: UI Overrides & CSS Variables
92-
'agent' // AI: Autonomous Agent & Tool Definitions
92+
'agent', // AI: Autonomous Agent & Tool Definitions
93+
'objectql' // Core: ObjectQL Engine Data Provider
9394
] as const;
9495

9596
export const PluginSchema = PluginLifecycleSchema.extend({

0 commit comments

Comments
 (0)