@agentproto/connector 0.1.0 → 0.1.1

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
@@ -2,7 +2,7 @@ import { ConnectorMcpDescriptor, ExternalConnectorMcp, HostedConnectorMcp, Local
2
2
  export { ConnectorMcpKind } from './descriptor.js';
3
3
  export { ConnectorCredentialRequirement, ConnectorSecretKind } from './requirements.js';
4
4
  import { z } from 'zod';
5
- import '@agentproto/adapter-kit';
5
+ import '@agentproto/provider-kit';
6
6
  import '@agentproto/secrets/exposure';
7
7
 
8
8
  /**
@@ -1,4 +1,4 @@
1
- import { SetupField } from '@agentproto/adapter-kit';
1
+ import { SetupField } from '@agentproto/provider-kit';
2
2
  import { SecretExposure } from '@agentproto/secrets/exposure';
3
3
 
4
4
  /**
@@ -7,7 +7,7 @@ import { SecretExposure } from '@agentproto/secrets/exposure';
7
7
  *
8
8
  * Deliberately reuses two existing agentproto vocabularies rather than
9
9
  * inventing a third:
10
- * - `SetupField` (`@agentproto/adapter-kit`) — the same "field to collect"
10
+ * - `SetupField` (`@agentproto/provider-kit`) — the same "field to collect"
11
11
  * shape the tunnel-provider setup flow uses (name / description / required /
12
12
  * sensitive). One vocabulary for every credential input across the project.
13
13
  * - `SecretExposure` (`@agentproto/secrets`) — how a collected value is
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentproto/connector",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "@agentproto/connector — ConnectorMcpDescriptor: the portable, host-agnostic description of an MCP connector (how its server runs / is reached + what credentials it needs).",
5
5
  "keywords": [
6
6
  "agentproto",
@@ -49,8 +49,8 @@
49
49
  "access": "public"
50
50
  },
51
51
  "dependencies": {
52
- "@agentproto/adapter-kit": "0.1.0",
53
- "@agentproto/secrets": "0.1.0-alpha.0"
52
+ "@agentproto/provider-kit": "0.2.0",
53
+ "@agentproto/secrets": "0.1.0"
54
54
  },
55
55
  "peerDependencies": {
56
56
  "zod": ">=3.0.0"