@smartytalent/mcp-tools 0.1.33-dev.2 → 0.1.33-dev.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.
- package/dist/tools.json +68 -8
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -6884,23 +6884,53 @@
|
|
|
6884
6884
|
"type": "object",
|
|
6885
6885
|
"properties": {
|
|
6886
6886
|
"fileName": {
|
|
6887
|
-
"type": "string"
|
|
6887
|
+
"type": "string",
|
|
6888
|
+
"description": "Display name shown in the mail client and used as the attachment filename on send."
|
|
6888
6889
|
},
|
|
6889
6890
|
"url": {
|
|
6890
|
-
"type": "string"
|
|
6891
|
+
"type": "string",
|
|
6892
|
+
"description": "S3 URL of the stored file. For user-uploaded attachments this is the path returned by POST /v1/files; for system-generated attachments (job/persona/report PDFs) it is the resource's own S3 path."
|
|
6891
6893
|
},
|
|
6892
6894
|
"type": {
|
|
6893
6895
|
"type": "string",
|
|
6894
|
-
"description": "Resource type this attachment belongs to: jobs
|
|
6896
|
+
"description": "Resource type this attachment belongs to. User-uploaded attachments use `files`; system-generated attachments use the owning resource type: `jobs`, `personas`, `talents`, `candidates`, `reports`, `ads`."
|
|
6897
|
+
},
|
|
6898
|
+
"fileId": {
|
|
6899
|
+
"type": "string",
|
|
6900
|
+
"description": "When `type == \"files\"`, the file resource ID so the frontend can resolve the latest file metadata (status, processing state) without parsing the URL."
|
|
6901
|
+
},
|
|
6902
|
+
"size": {
|
|
6903
|
+
"type": "integer",
|
|
6904
|
+
"description": "File size in bytes. Frontend displays it in the compose preview and mail list. Set by the upload flow from the Content-Length of the S3 object; absent on legacy rows."
|
|
6905
|
+
},
|
|
6906
|
+
"contentType": {
|
|
6907
|
+
"type": "string",
|
|
6908
|
+
"description": "MIME type (e.g. `application/pdf`, `image/png`). Drives icon selection in the UI and the Content-Type header in the outbound MIME part. Absent on legacy rows; frontend should fall back to extension inference."
|
|
6909
|
+
},
|
|
6910
|
+
"thumbnailUrl": {
|
|
6911
|
+
"type": "string",
|
|
6912
|
+
"description": "Optional S3 URL of a PNG preview (first-page render for PDFs/DOCX). Populated by the file service's conversion pipeline when a preview is available. Absent for non-previewable types."
|
|
6895
6913
|
}
|
|
6896
6914
|
}
|
|
6897
6915
|
},
|
|
6898
|
-
"description": "Attachments
|
|
6916
|
+
"description": "Attachments on the email. For user-uploaded attachments: frontend creates a File via POST /v1/files (which returns a presigned PUT URL), uploads to S3, then references the File here with `type: \"files\"` and the returned `url`/`fileId`. For system-generated attachments (job/persona/report PDFs) the eventbus / outbound path populates these automatically."
|
|
6899
6917
|
},
|
|
6900
6918
|
"conversationLanguageCode": {
|
|
6901
6919
|
"type": "string",
|
|
6902
6920
|
"description": "Denormalised copy of the related conversation's languageCode (e.g. `pl-PL`, `en-US`). Avoids an N+1 fetch when the list/detail view needs to pick the right locale for the multilingual subject/body dicts. Source of truth is the conversation row; read-only from the email's perspective."
|
|
6903
6921
|
},
|
|
6922
|
+
"parentEmailId": {
|
|
6923
|
+
"type": "string",
|
|
6924
|
+
"description": "Application-layer pointer to the email this one replies to. Used by the UI to render an 'in reply to' link in thread views. Set by the compose flow (frontend passes the parent on Reply) and by the broker when an inbound email matches an outbound via RFC 5322 In-Reply-To. Separate from meta.reference which carries the raw SMTP header chain."
|
|
6925
|
+
},
|
|
6926
|
+
"fromUserId": {
|
|
6927
|
+
"type": "string",
|
|
6928
|
+
"description": "Denormalised user id of the sender for outbound emails (the boe workflow user, or the human composer). Frontend joins this against its local user cache to render avatar + display name without a per-row API call. Null on inbound mail."
|
|
6929
|
+
},
|
|
6930
|
+
"fromCandidateId": {
|
|
6931
|
+
"type": "string",
|
|
6932
|
+
"description": "Denormalised candidate id of the sender for inbound replies from a candidate in an active conversation. Frontend joins this against its local candidate cache to render initials and the candidate name. Null on outbound mail and on anonymous inbound that didn't match a candidate."
|
|
6933
|
+
},
|
|
6904
6934
|
"ttl": {
|
|
6905
6935
|
"type": "string"
|
|
6906
6936
|
},
|
|
@@ -7190,23 +7220,53 @@
|
|
|
7190
7220
|
"type": "object",
|
|
7191
7221
|
"properties": {
|
|
7192
7222
|
"fileName": {
|
|
7193
|
-
"type": "string"
|
|
7223
|
+
"type": "string",
|
|
7224
|
+
"description": "Display name shown in the mail client and used as the attachment filename on send."
|
|
7194
7225
|
},
|
|
7195
7226
|
"url": {
|
|
7196
|
-
"type": "string"
|
|
7227
|
+
"type": "string",
|
|
7228
|
+
"description": "S3 URL of the stored file. For user-uploaded attachments this is the path returned by POST /v1/files; for system-generated attachments (job/persona/report PDFs) it is the resource's own S3 path."
|
|
7197
7229
|
},
|
|
7198
7230
|
"type": {
|
|
7199
7231
|
"type": "string",
|
|
7200
|
-
"description": "Resource type this attachment belongs to: jobs
|
|
7232
|
+
"description": "Resource type this attachment belongs to. User-uploaded attachments use `files`; system-generated attachments use the owning resource type: `jobs`, `personas`, `talents`, `candidates`, `reports`, `ads`."
|
|
7233
|
+
},
|
|
7234
|
+
"fileId": {
|
|
7235
|
+
"type": "string",
|
|
7236
|
+
"description": "When `type == \"files\"`, the file resource ID so the frontend can resolve the latest file metadata (status, processing state) without parsing the URL."
|
|
7237
|
+
},
|
|
7238
|
+
"size": {
|
|
7239
|
+
"type": "integer",
|
|
7240
|
+
"description": "File size in bytes. Frontend displays it in the compose preview and mail list. Set by the upload flow from the Content-Length of the S3 object; absent on legacy rows."
|
|
7241
|
+
},
|
|
7242
|
+
"contentType": {
|
|
7243
|
+
"type": "string",
|
|
7244
|
+
"description": "MIME type (e.g. `application/pdf`, `image/png`). Drives icon selection in the UI and the Content-Type header in the outbound MIME part. Absent on legacy rows; frontend should fall back to extension inference."
|
|
7245
|
+
},
|
|
7246
|
+
"thumbnailUrl": {
|
|
7247
|
+
"type": "string",
|
|
7248
|
+
"description": "Optional S3 URL of a PNG preview (first-page render for PDFs/DOCX). Populated by the file service's conversion pipeline when a preview is available. Absent for non-previewable types."
|
|
7201
7249
|
}
|
|
7202
7250
|
}
|
|
7203
7251
|
},
|
|
7204
|
-
"description": "Attachments
|
|
7252
|
+
"description": "Attachments on the email. For user-uploaded attachments: frontend creates a File via POST /v1/files (which returns a presigned PUT URL), uploads to S3, then references the File here with `type: \"files\"` and the returned `url`/`fileId`. For system-generated attachments (job/persona/report PDFs) the eventbus / outbound path populates these automatically."
|
|
7205
7253
|
},
|
|
7206
7254
|
"conversationLanguageCode": {
|
|
7207
7255
|
"type": "string",
|
|
7208
7256
|
"description": "Denormalised copy of the related conversation's languageCode (e.g. `pl-PL`, `en-US`). Avoids an N+1 fetch when the list/detail view needs to pick the right locale for the multilingual subject/body dicts. Source of truth is the conversation row; read-only from the email's perspective."
|
|
7209
7257
|
},
|
|
7258
|
+
"parentEmailId": {
|
|
7259
|
+
"type": "string",
|
|
7260
|
+
"description": "Application-layer pointer to the email this one replies to. Used by the UI to render an 'in reply to' link in thread views. Set by the compose flow (frontend passes the parent on Reply) and by the broker when an inbound email matches an outbound via RFC 5322 In-Reply-To. Separate from meta.reference which carries the raw SMTP header chain."
|
|
7261
|
+
},
|
|
7262
|
+
"fromUserId": {
|
|
7263
|
+
"type": "string",
|
|
7264
|
+
"description": "Denormalised user id of the sender for outbound emails (the boe workflow user, or the human composer). Frontend joins this against its local user cache to render avatar + display name without a per-row API call. Null on inbound mail."
|
|
7265
|
+
},
|
|
7266
|
+
"fromCandidateId": {
|
|
7267
|
+
"type": "string",
|
|
7268
|
+
"description": "Denormalised candidate id of the sender for inbound replies from a candidate in an active conversation. Frontend joins this against its local candidate cache to render initials and the candidate name. Null on outbound mail and on anonymous inbound that didn't match a candidate."
|
|
7269
|
+
},
|
|
7210
7270
|
"ttl": {
|
|
7211
7271
|
"type": "string"
|
|
7212
7272
|
},
|