@alfe.ai/integration-manifest 0.0.10 → 0.0.11

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
@@ -404,6 +404,8 @@ declare const IntegrationManifestSchema: z.ZodObject<{
404
404
  supported_scopes: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
405
405
  agent: "agent";
406
406
  org: "org";
407
+ team: "team";
408
+ project: "project";
407
409
  }>>>>;
408
410
  publisherId: z.ZodOptional<z.ZodString>;
409
411
  icon: z.ZodOptional<z.ZodString>;
package/dist/index.js CHANGED
@@ -150,7 +150,12 @@ const IntegrationManifestSchema = z.object({
150
150
  mcp_servers: z.array(McpServerDeclarationSchema).optional().default([]),
151
151
  repository: z.url().optional(),
152
152
  supported_agents: z.array(RuntimeKeySchema).optional(),
153
- supported_scopes: z.array(z.enum(["agent", "org"])).optional().default(["agent"]),
153
+ supported_scopes: z.array(z.enum([
154
+ "agent",
155
+ "org",
156
+ "team",
157
+ "project"
158
+ ])).optional().default(["agent"]),
154
159
  publisherId: z.string().optional(),
155
160
  icon: z.string().optional(),
156
161
  pricing: IntegrationPricingSchema.optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alfe.ai/integration-manifest",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "description": "Integration manifest schema, types, and parser for Alfe integration platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",