@smartytalent/openai-tools 0.9.12 → 0.9.14

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/tools.json +4 -4
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -8005,7 +8005,7 @@
8005
8005
  },
8006
8006
  "url": {
8007
8007
  "type": "string",
8008
- "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."
8008
+ "description": "Openable link to the attachment's bytes. The ROW stores a bare\nS3 key (the path returned by POST /v1/files for uploads, the\nowning resource's own report path for system-generated PDFs);\nshowEmail and listEmails swap it for a presigned GET valid at\nmost two hours, so the frontend renders the chip straight from\nthis field and does not need a second call. At most: the link\ndies with the credentials that signed it, which can rotate\nsooner. Refetch the email for a fresh link rather than\npersisting this value anywhere - while it lives it grants\nunauthenticated read access to whoever holds it. `type` decides\nwhich bucket the key is signed against."
8009
8009
  },
8010
8010
  "type": {
8011
8011
  "type": "string",
@@ -8013,7 +8013,7 @@
8013
8013
  },
8014
8014
  "fileId": {
8015
8015
  "type": "string",
8016
- "description": "When `type == \"files\"`, the file resource ID so the frontend can resolve the latest file metadata (status, processing state) without parsing the URL."
8016
+ "description": "When `type == \"files\"`, the file resource ID so the frontend can\nresolve the latest file metadata (status, processing state)\nwithout parsing the URL. Null for system-generated PDFs: a\nbrief/job/report PDF is rendered straight to the owning\nservice's bucket and has no file row at all - `url` is the only\nway in, and it is presigned for exactly that reason."
8017
8017
  },
8018
8018
  "size": {
8019
8019
  "type": "integer",
@@ -8505,7 +8505,7 @@
8505
8505
  },
8506
8506
  "url": {
8507
8507
  "type": "string",
8508
- "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."
8508
+ "description": "Openable link to the attachment's bytes. The ROW stores a bare\nS3 key (the path returned by POST /v1/files for uploads, the\nowning resource's own report path for system-generated PDFs);\nshowEmail and listEmails swap it for a presigned GET valid at\nmost two hours, so the frontend renders the chip straight from\nthis field and does not need a second call. At most: the link\ndies with the credentials that signed it, which can rotate\nsooner. Refetch the email for a fresh link rather than\npersisting this value anywhere - while it lives it grants\nunauthenticated read access to whoever holds it. `type` decides\nwhich bucket the key is signed against."
8509
8509
  },
8510
8510
  "type": {
8511
8511
  "type": "string",
@@ -8513,7 +8513,7 @@
8513
8513
  },
8514
8514
  "fileId": {
8515
8515
  "type": "string",
8516
- "description": "When `type == \"files\"`, the file resource ID so the frontend can resolve the latest file metadata (status, processing state) without parsing the URL."
8516
+ "description": "When `type == \"files\"`, the file resource ID so the frontend can\nresolve the latest file metadata (status, processing state)\nwithout parsing the URL. Null for system-generated PDFs: a\nbrief/job/report PDF is rendered straight to the owning\nservice's bucket and has no file row at all - `url` is the only\nway in, and it is presigned for exactly that reason."
8517
8517
  },
8518
8518
  "size": {
8519
8519
  "type": "integer",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.9.12",
3
+ "version": "0.9.14",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",