@agent-factory-platform/client 0.6.0 → 0.7.0
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/README.md +9 -0
- package/dist/gen/agentfactory/agent/v1/agent_pb.d.ts +848 -0
- package/dist/gen/agentfactory/agent/v1/agent_pb.d.ts.map +1 -1
- package/dist/gen/agentfactory/agent/v1/agent_pb.js +216 -86
- package/dist/gen/agentfactory/agent/v1/agent_pb.js.map +1 -1
- package/dist/gen/agentfactory/docs/v1/docs_pb.d.ts +1192 -52
- package/dist/gen/agentfactory/docs/v1/docs_pb.d.ts.map +1 -1
- package/dist/gen/agentfactory/docs/v1/docs_pb.js +258 -57
- package/dist/gen/agentfactory/docs/v1/docs_pb.js.map +1 -1
- package/dist/gen/agentfactory/workflow/v1/workflow_pb.d.ts +1059 -0
- package/dist/gen/agentfactory/workflow/v1/workflow_pb.d.ts.map +1 -0
- package/dist/gen/agentfactory/workflow/v1/workflow_pb.js +240 -0
- package/dist/gen/agentfactory/workflow/v1/workflow_pb.js.map +1 -0
- package/dist/index.d.ts +285 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/migration.d.ts +45 -0
- package/dist/migration.d.ts.map +1 -0
- package/dist/migration.js +57 -0
- package/dist/migration.js.map +1 -0
- package/dist/session-model.d.ts +12 -5
- package/dist/session-model.d.ts.map +1 -1
- package/dist/session-model.js +31 -16
- package/dist/session-model.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,6 +14,15 @@ Use the exact Agent Factory version across packages in one application.
|
|
|
14
14
|
|
|
15
15
|
This package owns reusable, business-free infrastructure and lifecycle contracts. Product prompts, domain tools, policies, credentials, data, and deployment configuration remain in the consuming application.
|
|
16
16
|
|
|
17
|
+
The root export includes generated Agent, Workflow, Docs and Notify clients,
|
|
18
|
+
projection helpers, and the wire-compatible controlled-import v1 JSON types and
|
|
19
|
+
limits. Privileged imports run through a host `MigrationTarget`; this browser
|
|
20
|
+
client does not expose arbitrary event append.
|
|
21
|
+
|
|
22
|
+
Docs collaboration followers resume with `afterSequence`; presence is keyed by the
|
|
23
|
+
ephemeral session and carries explicit join/leave state. A collaboration checkpoint
|
|
24
|
+
sets `SaveRevisionRequest.collaborationSequence` together with `expectedRevision`.
|
|
25
|
+
|
|
17
26
|
## Documentation
|
|
18
27
|
|
|
19
28
|
API and package documentation: [https://www.npmjs.com/package/@agent-factory-platform/client](https://www.npmjs.com/package/@agent-factory-platform/client)
|