@alfe.ai/integration-manifest 0.0.2 → 0.0.3

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.ts CHANGED
@@ -99,6 +99,8 @@ interface IntegrationManifest {
99
99
  config_schema: ConfigSchemaField[];
100
100
  capabilities: string[];
101
101
  hooks: IntegrationHooks;
102
+ /** Git repository URL (HTTPS, with .git suffix) — used by installer to clone */
103
+ repository: string;
102
104
  /**
103
105
  * Agent runtimes this integration supports.
104
106
  * If omitted or empty, the integration is considered universal (all runtimes).
@@ -316,6 +318,7 @@ declare const IntegrationManifestSchema: z.ZodObject<{
316
318
  post_uninstall: z.ZodOptional<z.ZodString>;
317
319
  health_check: z.ZodOptional<z.ZodString>;
318
320
  }, z.core.$strip>>>;
321
+ repository: z.ZodURL;
319
322
  supported_agents: z.ZodOptional<z.ZodArray<z.ZodString>>;
320
323
  publisherId: z.ZodOptional<z.ZodString>;
321
324
  icon: z.ZodOptional<z.ZodString>;
package/dist/index.js CHANGED
@@ -122,6 +122,7 @@ const IntegrationManifestSchema = z.object({
122
122
  config_schema: z.array(ConfigSchemaFieldSchema).optional().default([]),
123
123
  capabilities: z.array(z.string()).optional().default([]),
124
124
  hooks: IntegrationHooksSchema.optional().default({}),
125
+ repository: z.url(),
125
126
  supported_agents: z.array(RuntimeKeySchema).optional(),
126
127
  publisherId: z.string().optional(),
127
128
  icon: z.string().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alfe.ai/integration-manifest",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Integration manifest schema, types, and parser for Alfe integration platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -12,7 +12,7 @@
12
12
  }
13
13
  },
14
14
  "dependencies": {
15
- "yaml": "^2.7.0",
15
+ "yaml": ">=2.8.3",
16
16
  "zod": "^4.0.5"
17
17
  },
18
18
  "files": [