@jbctechsolutions/mcp-office365 2.5.1 → 4.0.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 +66 -57
- package/dist/approval/hash.d.ts +8 -8
- package/dist/approval/token-manager.d.ts +37 -19
- package/dist/approval/token-manager.d.ts.map +1 -1
- package/dist/approval/token-manager.js +133 -37
- package/dist/approval/token-manager.js.map +1 -1
- package/dist/approval/types.d.ts +7 -3
- package/dist/approval/types.d.ts.map +1 -1
- package/dist/cli.d.ts +21 -0
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +100 -2
- package/dist/cli.js.map +1 -1
- package/dist/database/repository.d.ts +48 -48
- package/dist/database/repository.d.ts.map +1 -1
- package/dist/database/repository.js.map +1 -1
- package/dist/delta/mirror.d.ts +67 -0
- package/dist/delta/mirror.d.ts.map +1 -0
- package/dist/delta/mirror.js +183 -0
- package/dist/delta/mirror.js.map +1 -0
- package/dist/graph/auth/account-id.d.ts +19 -0
- package/dist/graph/auth/account-id.d.ts.map +1 -0
- package/dist/graph/auth/account-id.js +55 -0
- package/dist/graph/auth/account-id.js.map +1 -0
- package/dist/graph/auth/config.d.ts +1 -1
- package/dist/graph/auth/config.d.ts.map +1 -1
- package/dist/graph/auth/config.js +13 -1
- package/dist/graph/auth/config.js.map +1 -1
- package/dist/graph/auth/device-code-flow.d.ts +3 -1
- package/dist/graph/auth/device-code-flow.d.ts.map +1 -1
- package/dist/graph/auth/device-code-flow.js +42 -14
- package/dist/graph/auth/device-code-flow.js.map +1 -1
- package/dist/graph/auth/index.d.ts +1 -0
- package/dist/graph/auth/index.d.ts.map +1 -1
- package/dist/graph/auth/index.js +1 -0
- package/dist/graph/auth/index.js.map +1 -1
- package/dist/graph/auth/token-cache.js +2 -2
- package/dist/graph/auth/token-cache.js.map +1 -1
- package/dist/graph/client/graph-client.d.ts +141 -8
- package/dist/graph/client/graph-client.d.ts.map +1 -1
- package/dist/graph/client/graph-client.js +536 -48
- package/dist/graph/client/graph-client.js.map +1 -1
- package/dist/graph/client/immutable-id-middleware.d.ts +50 -0
- package/dist/graph/client/immutable-id-middleware.d.ts.map +1 -0
- package/dist/graph/client/immutable-id-middleware.js +137 -0
- package/dist/graph/client/immutable-id-middleware.js.map +1 -0
- package/dist/graph/content-readers.d.ts +0 -12
- package/dist/graph/content-readers.d.ts.map +1 -1
- package/dist/graph/content-readers.js +0 -21
- package/dist/graph/content-readers.js.map +1 -1
- package/dist/graph/index.d.ts +5 -6
- package/dist/graph/index.d.ts.map +1 -1
- package/dist/graph/index.js +5 -6
- package/dist/graph/index.js.map +1 -1
- package/dist/graph/mailbox-adapter.d.ts +15 -15
- package/dist/graph/mappers/contact-mapper.d.ts +4 -1
- package/dist/graph/mappers/contact-mapper.d.ts.map +1 -1
- package/dist/graph/mappers/contact-mapper.js +7 -3
- package/dist/graph/mappers/contact-mapper.js.map +1 -1
- package/dist/graph/mappers/email-mapper.d.ts.map +1 -1
- package/dist/graph/mappers/email-mapper.js +7 -4
- package/dist/graph/mappers/email-mapper.js.map +1 -1
- package/dist/graph/mappers/event-mapper.d.ts.map +1 -1
- package/dist/graph/mappers/event-mapper.js +6 -3
- package/dist/graph/mappers/event-mapper.js.map +1 -1
- package/dist/graph/mappers/folder-mapper.d.ts +0 -4
- package/dist/graph/mappers/folder-mapper.d.ts.map +1 -1
- package/dist/graph/mappers/folder-mapper.js +9 -19
- package/dist/graph/mappers/folder-mapper.js.map +1 -1
- package/dist/graph/mappers/index.d.ts +2 -2
- package/dist/graph/mappers/index.d.ts.map +1 -1
- package/dist/graph/mappers/index.js +2 -2
- package/dist/graph/mappers/index.js.map +1 -1
- package/dist/graph/mappers/task-mapper.d.ts +4 -2
- package/dist/graph/mappers/task-mapper.d.ts.map +1 -1
- package/dist/graph/mappers/task-mapper.js +7 -5
- package/dist/graph/mappers/task-mapper.js.map +1 -1
- package/dist/graph/mappers/utils.d.ts +0 -10
- package/dist/graph/mappers/utils.d.ts.map +1 -1
- package/dist/graph/mappers/utils.js +0 -19
- package/dist/graph/mappers/utils.js.map +1 -1
- package/dist/graph/repository.d.ts +409 -276
- package/dist/graph/repository.d.ts.map +1 -1
- package/dist/graph/repository.js +772 -1082
- package/dist/graph/repository.js.map +1 -1
- package/dist/ids/mint.d.ts +31 -0
- package/dist/ids/mint.d.ts.map +1 -0
- package/dist/ids/mint.js +36 -0
- package/dist/ids/mint.js.map +1 -0
- package/dist/ids/next-action.d.ts +29 -0
- package/dist/ids/next-action.d.ts.map +1 -0
- package/dist/ids/next-action.js +58 -0
- package/dist/ids/next-action.js.map +1 -0
- package/dist/ids/resolver.d.ts +31 -0
- package/dist/ids/resolver.d.ts.map +1 -0
- package/dist/ids/resolver.js +52 -0
- package/dist/ids/resolver.js.map +1 -0
- package/dist/ids/schema.d.ts +91 -0
- package/dist/ids/schema.d.ts.map +1 -0
- package/dist/ids/schema.js +131 -0
- package/dist/ids/schema.js.map +1 -0
- package/dist/ids/token.d.ts +62 -0
- package/dist/ids/token.d.ts.map +1 -0
- package/dist/ids/token.js +225 -0
- package/dist/ids/token.js.map +1 -0
- package/dist/index.d.ts +10 -6
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +255 -5925
- package/dist/index.js.map +1 -1
- package/dist/parsers/index.d.ts +0 -1
- package/dist/parsers/index.d.ts.map +1 -1
- package/dist/parsers/index.js +0 -1
- package/dist/parsers/index.js.map +1 -1
- package/dist/registry/all-tools.d.ts +14 -0
- package/dist/registry/all-tools.d.ts.map +1 -0
- package/dist/registry/all-tools.js +68 -0
- package/dist/registry/all-tools.js.map +1 -0
- package/dist/registry/context.d.ts +19 -0
- package/dist/registry/context.d.ts.map +1 -0
- package/dist/registry/context.js +20 -0
- package/dist/registry/context.js.map +1 -0
- package/dist/registry/define-tool.d.ts +15 -0
- package/dist/registry/define-tool.d.ts.map +1 -0
- package/dist/registry/define-tool.js +8 -0
- package/dist/registry/define-tool.js.map +1 -0
- package/dist/registry/elicit-links.d.ts +35 -0
- package/dist/registry/elicit-links.d.ts.map +1 -0
- package/dist/registry/elicit-links.js +102 -0
- package/dist/registry/elicit-links.js.map +1 -0
- package/dist/registry/elicitor.d.ts +24 -0
- package/dist/registry/elicitor.d.ts.map +1 -0
- package/dist/registry/elicitor.js +51 -0
- package/dist/registry/elicitor.js.map +1 -0
- package/dist/registry/index.d.ts +13 -0
- package/dist/registry/index.d.ts.map +1 -0
- package/dist/registry/index.js +8 -0
- package/dist/registry/index.js.map +1 -0
- package/dist/registry/registry.d.ts +73 -0
- package/dist/registry/registry.d.ts.map +1 -0
- package/dist/registry/registry.js +221 -0
- package/dist/registry/registry.js.map +1 -0
- package/dist/registry/types.d.ts +146 -0
- package/dist/registry/types.d.ts.map +1 -0
- package/dist/registry/types.js +6 -0
- package/dist/registry/types.js.map +1 -0
- package/dist/search/compiler.d.ts +49 -0
- package/dist/search/compiler.d.ts.map +1 -0
- package/dist/search/compiler.js +168 -0
- package/dist/search/compiler.js.map +1 -0
- package/dist/signature.js +2 -2
- package/dist/signature.js.map +1 -1
- package/dist/state/delta-store.d.ts +85 -0
- package/dist/state/delta-store.d.ts.map +1 -0
- package/dist/state/delta-store.js +124 -0
- package/dist/state/delta-store.js.map +1 -0
- package/dist/state/migrate.d.ts +23 -0
- package/dist/state/migrate.d.ts.map +1 -0
- package/dist/state/migrate.js +81 -0
- package/dist/state/migrate.js.map +1 -0
- package/dist/state/schema.d.ts +26 -0
- package/dist/state/schema.d.ts.map +1 -0
- package/dist/state/schema.js +77 -0
- package/dist/state/schema.js.map +1 -0
- package/dist/state/store.d.ts +155 -0
- package/dist/state/store.d.ts.map +1 -0
- package/dist/state/store.js +321 -0
- package/dist/state/store.js.map +1 -0
- package/dist/tools/calendar-graph.d.ts +41 -0
- package/dist/tools/calendar-graph.d.ts.map +1 -0
- package/dist/tools/calendar-graph.js +299 -0
- package/dist/tools/calendar-graph.js.map +1 -0
- package/dist/tools/calendar-permissions.d.ts +17 -7
- package/dist/tools/calendar-permissions.d.ts.map +1 -1
- package/dist/tools/calendar-permissions.js +60 -4
- package/dist/tools/calendar-permissions.js.map +1 -1
- package/dist/tools/calendar.d.ts +133 -82
- package/dist/tools/calendar.d.ts.map +1 -1
- package/dist/tools/calendar.js +249 -136
- package/dist/tools/calendar.js.map +1 -1
- package/dist/tools/categories.d.ts +14 -4
- package/dist/tools/categories.d.ts.map +1 -1
- package/dist/tools/categories.js +59 -2
- package/dist/tools/categories.js.map +1 -1
- package/dist/tools/checklist-items.d.ts +19 -9
- package/dist/tools/checklist-items.d.ts.map +1 -1
- package/dist/tools/checklist-items.js +71 -5
- package/dist/tools/checklist-items.js.map +1 -1
- package/dist/tools/contact-folders.d.ts +50 -0
- package/dist/tools/contact-folders.d.ts.map +1 -0
- package/dist/tools/contact-folders.js +136 -0
- package/dist/tools/contact-folders.js.map +1 -0
- package/dist/tools/contacts-graph.d.ts +45 -0
- package/dist/tools/contacts-graph.d.ts.map +1 -0
- package/dist/tools/contacts-graph.js +174 -0
- package/dist/tools/contacts-graph.js.map +1 -0
- package/dist/tools/contacts.d.ts +61 -30
- package/dist/tools/contacts.d.ts.map +1 -1
- package/dist/tools/contacts.js +150 -93
- package/dist/tools/contacts.js.map +1 -1
- package/dist/tools/excel.d.ts +20 -10
- package/dist/tools/excel.d.ts.map +1 -1
- package/dist/tools/excel.js +82 -6
- package/dist/tools/excel.js.map +1 -1
- package/dist/tools/focused-overrides.d.ts +14 -4
- package/dist/tools/focused-overrides.d.ts.map +1 -1
- package/dist/tools/focused-overrides.js +59 -2
- package/dist/tools/focused-overrides.js.map +1 -1
- package/dist/tools/index.d.ts +4 -5
- package/dist/tools/index.d.ts.map +1 -1
- package/dist/tools/index.js +4 -6
- package/dist/tools/index.js.map +1 -1
- package/dist/tools/linked-resources.d.ts +17 -7
- package/dist/tools/linked-resources.d.ts.map +1 -1
- package/dist/tools/linked-resources.js +60 -4
- package/dist/tools/linked-resources.js.map +1 -1
- package/dist/tools/mail-graph.d.ts +38 -0
- package/dist/tools/mail-graph.d.ts.map +1 -0
- package/dist/tools/mail-graph.js +187 -0
- package/dist/tools/mail-graph.js.map +1 -0
- package/dist/tools/mail-rules.d.ts +20 -8
- package/dist/tools/mail-rules.d.ts.map +1 -1
- package/dist/tools/mail-rules.js +63 -7
- package/dist/tools/mail-rules.js.map +1 -1
- package/dist/tools/mail-send.d.ts +39 -27
- package/dist/tools/mail-send.d.ts.map +1 -1
- package/dist/tools/mail-send.js +249 -24
- package/dist/tools/mail-send.js.map +1 -1
- package/dist/tools/mail.d.ts +91 -68
- package/dist/tools/mail.d.ts.map +1 -1
- package/dist/tools/mail.js +232 -243
- package/dist/tools/mail.js.map +1 -1
- package/dist/tools/mailbox-organization.d.ts +51 -34
- package/dist/tools/mailbox-organization.d.ts.map +1 -1
- package/dist/tools/mailbox-organization.js +318 -35
- package/dist/tools/mailbox-organization.js.map +1 -1
- package/dist/tools/mailbox-settings.d.ts +59 -0
- package/dist/tools/mailbox-settings.d.ts.map +1 -0
- package/dist/tools/mailbox-settings.js +136 -0
- package/dist/tools/mailbox-settings.js.map +1 -0
- package/dist/tools/meetings.d.ts +24 -14
- package/dist/tools/meetings.d.ts.map +1 -1
- package/dist/tools/meetings.js +82 -6
- package/dist/tools/meetings.js.map +1 -1
- package/dist/tools/onedrive.d.ts +26 -16
- package/dist/tools/onedrive.d.ts.map +1 -1
- package/dist/tools/onedrive.js +140 -11
- package/dist/tools/onedrive.js.map +1 -1
- package/dist/tools/onenote.d.ts +63 -0
- package/dist/tools/onenote.d.ts.map +1 -0
- package/dist/tools/onenote.js +221 -0
- package/dist/tools/onenote.js.map +1 -0
- package/dist/tools/people.d.ts +10 -0
- package/dist/tools/people.d.ts.map +1 -1
- package/dist/tools/people.js +94 -0
- package/dist/tools/people.js.map +1 -1
- package/dist/tools/planner-visualization.d.ts +15 -5
- package/dist/tools/planner-visualization.d.ts.map +1 -1
- package/dist/tools/planner-visualization.js +58 -4
- package/dist/tools/planner-visualization.js.map +1 -1
- package/dist/tools/planner.d.ts +69 -39
- package/dist/tools/planner.d.ts.map +1 -1
- package/dist/tools/planner.js +231 -23
- package/dist/tools/planner.js.map +1 -1
- package/dist/tools/scheduling.d.ts +12 -0
- package/dist/tools/scheduling.d.ts.map +1 -1
- package/dist/tools/scheduling.js +38 -0
- package/dist/tools/scheduling.js.map +1 -1
- package/dist/tools/shared-mailbox.d.ts +164 -0
- package/dist/tools/shared-mailbox.d.ts.map +1 -0
- package/dist/tools/shared-mailbox.js +318 -0
- package/dist/tools/shared-mailbox.js.map +1 -0
- package/dist/tools/sharepoint-lists.d.ts +131 -0
- package/dist/tools/sharepoint-lists.d.ts.map +1 -0
- package/dist/tools/sharepoint-lists.js +246 -0
- package/dist/tools/sharepoint-lists.js.map +1 -0
- package/dist/tools/sharepoint.d.ts +24 -14
- package/dist/tools/sharepoint.d.ts.map +1 -1
- package/dist/tools/sharepoint.js +85 -9
- package/dist/tools/sharepoint.js.map +1 -1
- package/dist/tools/task-attachments.d.ts +17 -7
- package/dist/tools/task-attachments.d.ts.map +1 -1
- package/dist/tools/task-attachments.js +60 -4
- package/dist/tools/task-attachments.js.map +1 -1
- package/dist/tools/task-lists.d.ts +56 -0
- package/dist/tools/task-lists.d.ts.map +1 -0
- package/dist/tools/task-lists.js +155 -0
- package/dist/tools/task-lists.js.map +1 -0
- package/dist/tools/tasks-graph.d.ts +49 -0
- package/dist/tools/tasks-graph.d.ts.map +1 -0
- package/dist/tools/tasks-graph.js +193 -0
- package/dist/tools/tasks-graph.js.map +1 -0
- package/dist/tools/tasks.d.ts +121 -29
- package/dist/tools/tasks.d.ts.map +1 -1
- package/dist/tools/tasks.js +136 -84
- package/dist/tools/tasks.js.map +1 -1
- package/dist/tools/teams.d.ts +57 -46
- package/dist/tools/teams.d.ts.map +1 -1
- package/dist/tools/teams.js +288 -26
- package/dist/tools/teams.js.map +1 -1
- package/dist/tools/what-changed.d.ts +48 -0
- package/dist/tools/what-changed.d.ts.map +1 -0
- package/dist/tools/what-changed.js +149 -0
- package/dist/tools/what-changed.js.map +1 -0
- package/dist/types/calendar.d.ts +1 -1
- package/dist/types/calendar.d.ts.map +1 -1
- package/dist/types/calendar.js.map +1 -1
- package/dist/types/contacts.d.ts +1 -1
- package/dist/types/contacts.d.ts.map +1 -1
- package/dist/types/contacts.js.map +1 -1
- package/dist/types/mail.d.ts +1 -1
- package/dist/types/mail.d.ts.map +1 -1
- package/dist/types/mail.js.map +1 -1
- package/dist/utils/errors.d.ts +110 -38
- package/dist/utils/errors.d.ts.map +1 -1
- package/dist/utils/errors.js +239 -56
- package/dist/utils/errors.js.map +1 -1
- package/dist/visualization/types.d.ts +4 -4
- package/package.json +2 -3
- package/dist/applescript/account-repository.d.ts +0 -30
- package/dist/applescript/account-repository.d.ts.map +0 -1
- package/dist/applescript/account-repository.js +0 -38
- package/dist/applescript/account-repository.js.map +0 -1
- package/dist/applescript/account-scripts.d.ts +0 -21
- package/dist/applescript/account-scripts.d.ts.map +0 -1
- package/dist/applescript/account-scripts.js +0 -180
- package/dist/applescript/account-scripts.js.map +0 -1
- package/dist/applescript/calendar-manager.d.ts +0 -44
- package/dist/applescript/calendar-manager.d.ts.map +0 -1
- package/dist/applescript/calendar-manager.js +0 -92
- package/dist/applescript/calendar-manager.js.map +0 -1
- package/dist/applescript/calendar-writer.d.ts +0 -36
- package/dist/applescript/calendar-writer.d.ts.map +0 -1
- package/dist/applescript/calendar-writer.js +0 -94
- package/dist/applescript/calendar-writer.js.map +0 -1
- package/dist/applescript/content-readers.d.ts +0 -114
- package/dist/applescript/content-readers.d.ts.map +0 -1
- package/dist/applescript/content-readers.js +0 -328
- package/dist/applescript/content-readers.js.map +0 -1
- package/dist/applescript/executor.d.ts +0 -60
- package/dist/applescript/executor.d.ts.map +0 -1
- package/dist/applescript/executor.js +0 -173
- package/dist/applescript/executor.js.map +0 -1
- package/dist/applescript/index.d.ts +0 -20
- package/dist/applescript/index.d.ts.map +0 -1
- package/dist/applescript/index.js +0 -29
- package/dist/applescript/index.js.map +0 -1
- package/dist/applescript/mail-sender.d.ts +0 -38
- package/dist/applescript/mail-sender.d.ts.map +0 -1
- package/dist/applescript/mail-sender.js +0 -67
- package/dist/applescript/mail-sender.js.map +0 -1
- package/dist/applescript/parser.d.ts +0 -235
- package/dist/applescript/parser.d.ts.map +0 -1
- package/dist/applescript/parser.js +0 -496
- package/dist/applescript/parser.js.map +0 -1
- package/dist/applescript/repository.d.ts +0 -64
- package/dist/applescript/repository.d.ts.map +0 -1
- package/dist/applescript/repository.js +0 -444
- package/dist/applescript/repository.js.map +0 -1
- package/dist/applescript/scripts.d.ts +0 -265
- package/dist/applescript/scripts.d.ts.map +0 -1
- package/dist/applescript/scripts.js +0 -1483
- package/dist/applescript/scripts.js.map +0 -1
- package/dist/parsers/olk15.d.ts +0 -87
- package/dist/parsers/olk15.d.ts.map +0 -1
- package/dist/parsers/olk15.js +0 -368
- package/dist/parsers/olk15.js.map +0 -1
- package/dist/tools/notes.d.ts +0 -74
- package/dist/tools/notes.d.ts.map +0 -1
- package/dist/tools/notes.js +0 -136
- package/dist/tools/notes.js.map +0 -1
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) 2026 JBC Tech Solutions, LLC
|
|
3
|
-
* Licensed under the MIT License. See LICENSE file in the project root.
|
|
4
|
-
*/
|
|
5
|
-
export interface Attachment {
|
|
6
|
-
readonly path: string;
|
|
7
|
-
readonly name?: string;
|
|
8
|
-
}
|
|
9
|
-
export interface InlineImage {
|
|
10
|
-
/** Absolute file path to the image. */
|
|
11
|
-
readonly path: string;
|
|
12
|
-
/** Content ID for referencing in HTML body (without "cid:" prefix). */
|
|
13
|
-
readonly contentId: string;
|
|
14
|
-
}
|
|
15
|
-
export interface SendEmailParams {
|
|
16
|
-
readonly to: readonly string[];
|
|
17
|
-
readonly subject: string;
|
|
18
|
-
readonly body: string;
|
|
19
|
-
readonly bodyType: 'plain' | 'html';
|
|
20
|
-
readonly cc?: readonly string[];
|
|
21
|
-
readonly bcc?: readonly string[];
|
|
22
|
-
readonly replyTo?: string;
|
|
23
|
-
readonly attachments?: readonly Attachment[];
|
|
24
|
-
readonly inlineImages?: readonly InlineImage[];
|
|
25
|
-
readonly accountId?: number;
|
|
26
|
-
}
|
|
27
|
-
export interface SentEmail {
|
|
28
|
-
readonly messageId: string;
|
|
29
|
-
readonly sentAt: string;
|
|
30
|
-
}
|
|
31
|
-
export interface IMailSender {
|
|
32
|
-
sendEmail(params: SendEmailParams): SentEmail;
|
|
33
|
-
}
|
|
34
|
-
export declare class AppleScriptMailSender implements IMailSender {
|
|
35
|
-
sendEmail(params: SendEmailParams): SentEmail;
|
|
36
|
-
}
|
|
37
|
-
export declare function createMailSender(): IMailSender;
|
|
38
|
-
//# sourceMappingURL=mail-sender.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"mail-sender.d.ts","sourceRoot":"","sources":["../../src/applescript/mail-sender.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAYH,MAAM,WAAW,UAAU;IACzB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,WAAW;IAC1B,uCAAuC;IACvC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,uEAAuE;IACvE,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;CAC5B;AAED,MAAM,WAAW,eAAe;IAC9B,QAAQ,CAAC,EAAE,EAAE,SAAS,MAAM,EAAE,CAAC;IAC/B,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,QAAQ,EAAE,OAAO,GAAG,MAAM,CAAC;IACpC,QAAQ,CAAC,EAAE,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;IAChC,QAAQ,CAAC,GAAG,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;IACjC,QAAQ,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,WAAW,CAAC,EAAE,SAAS,UAAU,EAAE,CAAC;IAC7C,QAAQ,CAAC,YAAY,CAAC,EAAE,SAAS,WAAW,EAAE,CAAC;IAC/C,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,CAAC;CAC7B;AAED,MAAM,WAAW,SAAS;IACxB,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,WAAW,WAAW;IAC1B,SAAS,CAAC,MAAM,EAAE,eAAe,GAAG,SAAS,CAAC;CAC/C;AAED,qBAAa,qBAAsB,YAAW,WAAW;IACvD,SAAS,CAAC,MAAM,EAAE,eAAe,GAAG,SAAS;CAmD9C;AAED,wBAAgB,gBAAgB,IAAI,WAAW,CAE9C"}
|
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) 2026 JBC Tech Solutions, LLC
|
|
3
|
-
* Licensed under the MIT License. See LICENSE file in the project root.
|
|
4
|
-
*/
|
|
5
|
-
/**
|
|
6
|
-
* Mail sender interface for sending emails via AppleScript.
|
|
7
|
-
*/
|
|
8
|
-
import { existsSync } from 'fs';
|
|
9
|
-
import { executeAppleScriptOrThrow } from './executor.js';
|
|
10
|
-
import * as scripts from './scripts.js';
|
|
11
|
-
import { parseSendEmailResult } from './parser.js';
|
|
12
|
-
import { AppleScriptError, AttachmentNotFoundError, MailSendError } from '../utils/errors.js';
|
|
13
|
-
export class AppleScriptMailSender {
|
|
14
|
-
sendEmail(params) {
|
|
15
|
-
// Validate attachments exist
|
|
16
|
-
if (params.attachments != null) {
|
|
17
|
-
for (const attachment of params.attachments) {
|
|
18
|
-
if (!existsSync(attachment.path)) {
|
|
19
|
-
throw new AttachmentNotFoundError(attachment.path);
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
// Validate inline images exist
|
|
24
|
-
if (params.inlineImages != null) {
|
|
25
|
-
for (const image of params.inlineImages) {
|
|
26
|
-
if (!existsSync(image.path)) {
|
|
27
|
-
throw new AttachmentNotFoundError(image.path);
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
let scriptParams = {
|
|
32
|
-
to: params.to,
|
|
33
|
-
subject: params.subject,
|
|
34
|
-
body: params.body,
|
|
35
|
-
bodyType: params.bodyType,
|
|
36
|
-
};
|
|
37
|
-
if (params.cc != null)
|
|
38
|
-
scriptParams = { ...scriptParams, cc: params.cc };
|
|
39
|
-
if (params.bcc != null)
|
|
40
|
-
scriptParams = { ...scriptParams, bcc: params.bcc };
|
|
41
|
-
if (params.replyTo != null)
|
|
42
|
-
scriptParams = { ...scriptParams, replyTo: params.replyTo };
|
|
43
|
-
if (params.attachments != null)
|
|
44
|
-
scriptParams = { ...scriptParams, attachments: params.attachments };
|
|
45
|
-
if (params.inlineImages != null)
|
|
46
|
-
scriptParams = { ...scriptParams, inlineImages: params.inlineImages };
|
|
47
|
-
if (params.accountId != null)
|
|
48
|
-
scriptParams = { ...scriptParams, accountId: params.accountId };
|
|
49
|
-
const script = scripts.sendEmail(scriptParams);
|
|
50
|
-
const output = executeAppleScriptOrThrow(script);
|
|
51
|
-
const result = parseSendEmailResult(output);
|
|
52
|
-
if (result == null) {
|
|
53
|
-
throw new AppleScriptError('Failed to parse send email response');
|
|
54
|
-
}
|
|
55
|
-
if (!result.success) {
|
|
56
|
-
throw new MailSendError(result.error ?? 'Unknown error');
|
|
57
|
-
}
|
|
58
|
-
return {
|
|
59
|
-
messageId: result.messageId,
|
|
60
|
-
sentAt: result.sentAt,
|
|
61
|
-
};
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
export function createMailSender() {
|
|
65
|
-
return new AppleScriptMailSender();
|
|
66
|
-
}
|
|
67
|
-
//# sourceMappingURL=mail-sender.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"mail-sender.js","sourceRoot":"","sources":["../../src/applescript/mail-sender.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,235 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) 2026 JBC Tech Solutions, LLC
|
|
3
|
-
* Licensed under the MIT License. See LICENSE file in the project root.
|
|
4
|
-
*/
|
|
5
|
-
export interface AppleScriptFolderRow {
|
|
6
|
-
readonly id: number;
|
|
7
|
-
readonly name: string | null;
|
|
8
|
-
readonly unreadCount: number;
|
|
9
|
-
}
|
|
10
|
-
export interface AppleScriptAttachmentRow {
|
|
11
|
-
readonly index: number;
|
|
12
|
-
readonly name: string;
|
|
13
|
-
readonly fileSize: number;
|
|
14
|
-
readonly contentType: string;
|
|
15
|
-
}
|
|
16
|
-
export interface AppleScriptEmailRow {
|
|
17
|
-
readonly id: number;
|
|
18
|
-
readonly folderId: number | null;
|
|
19
|
-
readonly subject: string | null;
|
|
20
|
-
readonly senderName: string | null;
|
|
21
|
-
readonly senderEmail: string | null;
|
|
22
|
-
readonly toRecipients: string | null;
|
|
23
|
-
readonly ccRecipients: string | null;
|
|
24
|
-
readonly preview: string | null;
|
|
25
|
-
readonly isRead: boolean;
|
|
26
|
-
readonly dateReceived: string | null;
|
|
27
|
-
readonly dateSent: string | null;
|
|
28
|
-
readonly priority: string;
|
|
29
|
-
readonly htmlContent: string | null;
|
|
30
|
-
readonly plainContent: string | null;
|
|
31
|
-
readonly hasHtml: boolean;
|
|
32
|
-
readonly attachments: string[];
|
|
33
|
-
readonly attachmentDetails: AppleScriptAttachmentRow[];
|
|
34
|
-
}
|
|
35
|
-
export interface AppleScriptCalendarRow {
|
|
36
|
-
readonly id: number;
|
|
37
|
-
readonly name: string | null;
|
|
38
|
-
}
|
|
39
|
-
export interface AppleScriptEventRow {
|
|
40
|
-
readonly id: number;
|
|
41
|
-
readonly calendarId: number | null;
|
|
42
|
-
readonly subject: string | null;
|
|
43
|
-
readonly startTime: string | null;
|
|
44
|
-
readonly endTime: string | null;
|
|
45
|
-
readonly location: string | null;
|
|
46
|
-
readonly isAllDay: boolean;
|
|
47
|
-
readonly isRecurring: boolean;
|
|
48
|
-
readonly organizer: string | null;
|
|
49
|
-
readonly htmlContent: string | null;
|
|
50
|
-
readonly plainContent: string | null;
|
|
51
|
-
readonly attendees: Array<{
|
|
52
|
-
email: string;
|
|
53
|
-
name: string;
|
|
54
|
-
}>;
|
|
55
|
-
}
|
|
56
|
-
export interface AppleScriptContactRow {
|
|
57
|
-
readonly id: number;
|
|
58
|
-
readonly displayName: string | null;
|
|
59
|
-
readonly firstName: string | null;
|
|
60
|
-
readonly lastName: string | null;
|
|
61
|
-
readonly middleName: string | null;
|
|
62
|
-
readonly nickname: string | null;
|
|
63
|
-
readonly company: string | null;
|
|
64
|
-
readonly jobTitle: string | null;
|
|
65
|
-
readonly department: string | null;
|
|
66
|
-
readonly notes: string | null;
|
|
67
|
-
readonly emails: string[];
|
|
68
|
-
readonly homePhone: string | null;
|
|
69
|
-
readonly workPhone: string | null;
|
|
70
|
-
readonly mobilePhone: string | null;
|
|
71
|
-
readonly homeStreet: string | null;
|
|
72
|
-
readonly homeCity: string | null;
|
|
73
|
-
readonly homeState: string | null;
|
|
74
|
-
readonly homeZip: string | null;
|
|
75
|
-
readonly homeCountry: string | null;
|
|
76
|
-
}
|
|
77
|
-
export interface AppleScriptTaskRow {
|
|
78
|
-
readonly id: number;
|
|
79
|
-
readonly folderId: number | null;
|
|
80
|
-
readonly name: string | null;
|
|
81
|
-
readonly isCompleted: boolean;
|
|
82
|
-
readonly dueDate: string | null;
|
|
83
|
-
readonly startDate: string | null;
|
|
84
|
-
readonly completedDate: string | null;
|
|
85
|
-
readonly priority: string;
|
|
86
|
-
readonly htmlContent: string | null;
|
|
87
|
-
readonly plainContent: string | null;
|
|
88
|
-
}
|
|
89
|
-
export interface AppleScriptNoteRow {
|
|
90
|
-
readonly id: number;
|
|
91
|
-
readonly folderId: number | null;
|
|
92
|
-
readonly name: string | null;
|
|
93
|
-
readonly createdDate: string | null;
|
|
94
|
-
readonly modifiedDate: string | null;
|
|
95
|
-
readonly preview: string | null;
|
|
96
|
-
readonly htmlContent: string | null;
|
|
97
|
-
readonly plainContent: string | null;
|
|
98
|
-
}
|
|
99
|
-
export interface RespondToEventResult {
|
|
100
|
-
readonly success: boolean;
|
|
101
|
-
readonly eventId?: number;
|
|
102
|
-
readonly error?: string;
|
|
103
|
-
}
|
|
104
|
-
export interface DeleteEventResult {
|
|
105
|
-
readonly success: boolean;
|
|
106
|
-
readonly eventId?: number;
|
|
107
|
-
readonly error?: string;
|
|
108
|
-
}
|
|
109
|
-
export interface SaveAttachmentResult {
|
|
110
|
-
readonly success: boolean;
|
|
111
|
-
readonly name?: string;
|
|
112
|
-
readonly savedTo?: string;
|
|
113
|
-
readonly fileSize?: number;
|
|
114
|
-
readonly error?: string;
|
|
115
|
-
}
|
|
116
|
-
export interface AppleScriptAccountRow {
|
|
117
|
-
readonly id: number;
|
|
118
|
-
readonly name: string | null;
|
|
119
|
-
readonly email: string | null;
|
|
120
|
-
readonly type: string;
|
|
121
|
-
}
|
|
122
|
-
export interface AppleScriptFolderWithAccountRow extends AppleScriptFolderRow {
|
|
123
|
-
readonly accountId: number;
|
|
124
|
-
readonly messageCount: number;
|
|
125
|
-
}
|
|
126
|
-
/**
|
|
127
|
-
* Parses folder output from AppleScript.
|
|
128
|
-
*/
|
|
129
|
-
export declare function parseFolders(output: string): AppleScriptFolderRow[];
|
|
130
|
-
/**
|
|
131
|
-
* Parses email list output from AppleScript.
|
|
132
|
-
*/
|
|
133
|
-
export declare function parseEmails(output: string): AppleScriptEmailRow[];
|
|
134
|
-
/**
|
|
135
|
-
* Parses a single email output from AppleScript.
|
|
136
|
-
*/
|
|
137
|
-
export declare function parseEmail(output: string): AppleScriptEmailRow | null;
|
|
138
|
-
/**
|
|
139
|
-
* Parses calendar list output from AppleScript.
|
|
140
|
-
*/
|
|
141
|
-
export declare function parseCalendars(output: string): AppleScriptCalendarRow[];
|
|
142
|
-
/**
|
|
143
|
-
* Parses event list output from AppleScript.
|
|
144
|
-
*/
|
|
145
|
-
export declare function parseEvents(output: string): AppleScriptEventRow[];
|
|
146
|
-
/**
|
|
147
|
-
* Parses a single event output from AppleScript.
|
|
148
|
-
*/
|
|
149
|
-
export declare function parseEvent(output: string): AppleScriptEventRow | null;
|
|
150
|
-
/**
|
|
151
|
-
* Parses contact list output from AppleScript.
|
|
152
|
-
*/
|
|
153
|
-
export declare function parseContacts(output: string): AppleScriptContactRow[];
|
|
154
|
-
/**
|
|
155
|
-
* Parses a single contact output from AppleScript.
|
|
156
|
-
*/
|
|
157
|
-
export declare function parseContact(output: string): AppleScriptContactRow | null;
|
|
158
|
-
/**
|
|
159
|
-
* Parses task list output from AppleScript.
|
|
160
|
-
*/
|
|
161
|
-
export declare function parseTasks(output: string): AppleScriptTaskRow[];
|
|
162
|
-
/**
|
|
163
|
-
* Parses a single task output from AppleScript.
|
|
164
|
-
*/
|
|
165
|
-
export declare function parseTask(output: string): AppleScriptTaskRow | null;
|
|
166
|
-
/**
|
|
167
|
-
* Parses note list output from AppleScript.
|
|
168
|
-
*/
|
|
169
|
-
export declare function parseNotes(output: string): AppleScriptNoteRow[];
|
|
170
|
-
/**
|
|
171
|
-
* Parses a single note output from AppleScript.
|
|
172
|
-
*/
|
|
173
|
-
export declare function parseNote(output: string): AppleScriptNoteRow | null;
|
|
174
|
-
/**
|
|
175
|
-
* Parses a simple count value from AppleScript output.
|
|
176
|
-
*/
|
|
177
|
-
export declare function parseCount(output: string): number;
|
|
178
|
-
/**
|
|
179
|
-
* Parses account list output from AppleScript.
|
|
180
|
-
*/
|
|
181
|
-
export declare function parseAccounts(output: string): AppleScriptAccountRow[];
|
|
182
|
-
/**
|
|
183
|
-
* Parses default account output from AppleScript.
|
|
184
|
-
* Returns the account ID or null if not found.
|
|
185
|
-
*/
|
|
186
|
-
export declare function parseDefaultAccountId(output: string): number | null;
|
|
187
|
-
/**
|
|
188
|
-
* Parses the result of a create event AppleScript.
|
|
189
|
-
* Returns the created event's ID and calendar ID.
|
|
190
|
-
*/
|
|
191
|
-
export declare function parseCreateEventResult(output: string): {
|
|
192
|
-
id: number;
|
|
193
|
-
calendarId: number | null;
|
|
194
|
-
} | null;
|
|
195
|
-
/**
|
|
196
|
-
* Parses folders with account information from AppleScript.
|
|
197
|
-
*/
|
|
198
|
-
export declare function parseFoldersWithAccount(output: string): AppleScriptFolderWithAccountRow[];
|
|
199
|
-
/**
|
|
200
|
-
* Parses the result of a respond-to-event operation.
|
|
201
|
-
*/
|
|
202
|
-
export declare function parseRespondToEventResult(output: string): RespondToEventResult | null;
|
|
203
|
-
/**
|
|
204
|
-
* Parses the result of a delete-event operation.
|
|
205
|
-
*/
|
|
206
|
-
export declare function parseDeleteEventResult(output: string): DeleteEventResult | null;
|
|
207
|
-
export interface UpdateEventResult {
|
|
208
|
-
readonly success: boolean;
|
|
209
|
-
readonly id?: number;
|
|
210
|
-
readonly updatedFields?: readonly string[];
|
|
211
|
-
readonly error?: string;
|
|
212
|
-
}
|
|
213
|
-
/**
|
|
214
|
-
* Parses the result of an update-event operation.
|
|
215
|
-
*/
|
|
216
|
-
export declare function parseUpdateEventResult(output: string): UpdateEventResult | null;
|
|
217
|
-
export interface SendEmailResult {
|
|
218
|
-
readonly success: boolean;
|
|
219
|
-
readonly messageId?: string;
|
|
220
|
-
readonly sentAt?: string;
|
|
221
|
-
readonly error?: string;
|
|
222
|
-
}
|
|
223
|
-
/**
|
|
224
|
-
* Parses the result of a send-email operation.
|
|
225
|
-
*/
|
|
226
|
-
export declare function parseSendEmailResult(output: string): SendEmailResult | null;
|
|
227
|
-
/**
|
|
228
|
-
* Parses attachment list output from AppleScript.
|
|
229
|
-
*/
|
|
230
|
-
export declare function parseAttachments(output: string): AppleScriptAttachmentRow[];
|
|
231
|
-
/**
|
|
232
|
-
* Parses the result of a save-attachment operation.
|
|
233
|
-
*/
|
|
234
|
-
export declare function parseSaveAttachmentResult(output: string): SaveAttachmentResult | null;
|
|
235
|
-
//# sourceMappingURL=parser.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../src/applescript/parser.ts"],"names":[],"mappings":"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"}
|