@nextclaw/ncp 0.3.1 → 0.3.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -33,6 +33,8 @@ type NcpFilePart = {
33
33
  type: "file";
34
34
  name?: string;
35
35
  mimeType?: string;
36
+ /** Stable logical attachment reference managed by the hosting app. */
37
+ attachmentUri?: string;
36
38
  /** Remote URL pointing to the file. Mutually exclusive with `contentBase64`. */
37
39
  url?: string;
38
40
  /** Inline file content encoded as Base64. Mutually exclusive with `url`. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextclaw/ncp",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "private": false,
5
5
  "description": "NextClaw Communication Protocol core abstractions and types.",
6
6
  "type": "module",