@hasna/contacts 0.6.35 → 0.6.36
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 +10 -1
- package/dist/cli/commands/advanced.d.ts.map +1 -1
- package/dist/cli/index.js +1934 -533
- package/dist/db/database.d.ts +1 -1
- package/dist/db/database.d.ts.map +1 -1
- package/dist/db/paths.d.ts +12 -0
- package/dist/db/paths.d.ts.map +1 -1
- package/dist/index.js +192 -52
- package/dist/lib/vault.d.ts +5 -1
- package/dist/lib/vault.d.ts.map +1 -1
- package/dist/mcp/handlers/advanced.d.ts.map +1 -1
- package/dist/mcp/index.js +715 -264
- package/dist/mcp/tools.d.ts +3 -3
- package/dist/server/index.js +728 -286
- package/hasna.contract.json +1 -1
- package/package.json +4 -2
package/dist/mcp/tools.d.ts
CHANGED
|
@@ -3136,7 +3136,7 @@ export declare const TOOL_DEFINITIONS: readonly [{
|
|
|
3136
3136
|
};
|
|
3137
3137
|
}, {
|
|
3138
3138
|
readonly name: "set_contact_photo";
|
|
3139
|
-
readonly description: "Set a contact's profile photo. Provide either a local file path or base64-encoded image data (with or without data URI prefix). Stores image in
|
|
3139
|
+
readonly description: "Set a contact's profile photo. Provide either a local file path or base64-encoded image data (with or without data URI prefix). Stores image in the XDG data root images dir and updates avatar_url. Supported formats: jpg, png, gif, webp, svg, avif.";
|
|
3140
3140
|
readonly inputSchema: {
|
|
3141
3141
|
readonly type: "object";
|
|
3142
3142
|
readonly properties: {
|
|
@@ -3180,7 +3180,7 @@ export declare const TOOL_DEFINITIONS: readonly [{
|
|
|
3180
3180
|
};
|
|
3181
3181
|
}, {
|
|
3182
3182
|
readonly name: "set_company_logo";
|
|
3183
|
-
readonly description: "Set a company's logo image. Provide either a local file path or base64-encoded image data. Stores image in
|
|
3183
|
+
readonly description: "Set a company's logo image. Provide either a local file path or base64-encoded image data. Stores image in the XDG data root images dir and updates logo_url.";
|
|
3184
3184
|
readonly inputSchema: {
|
|
3185
3185
|
readonly type: "object";
|
|
3186
3186
|
readonly properties: {
|
|
@@ -3298,7 +3298,7 @@ export declare const TOOL_DEFINITIONS: readonly [{
|
|
|
3298
3298
|
};
|
|
3299
3299
|
readonly file_path: {
|
|
3300
3300
|
readonly type: "string";
|
|
3301
|
-
readonly description: "File to attach — stored PLAIN in
|
|
3301
|
+
readonly description: "File to attach — stored PLAIN in the XDG data root documents dir for agent access";
|
|
3302
3302
|
};
|
|
3303
3303
|
readonly metadata: {
|
|
3304
3304
|
readonly type: "object";
|