@smartytalent/openai-tools 0.9.13 → 0.9.15

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 +34 -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": "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 one\nhour, so the frontend renders the chip straight from this field\nand does not need a second call. Refetch the email for a fresh\nlink rather than persisting this value anywhere. `type` decides\nwhich bucket the key is signed against."
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",
@@ -8505,7 +8505,7 @@
8505
8505
  },
8506
8506
  "url": {
8507
8507
  "type": "string",
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 one\nhour, so the frontend renders the chip straight from this field\nand does not need a second call. Refetch the email for a fresh\nlink rather than persisting this value anywhere. `type` decides\nwhich bucket the key is signed against."
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",
@@ -20544,7 +20544,22 @@
20544
20544
  "additionalProperties": {
20545
20545
  "type": "string"
20546
20546
  },
20547
- "description": "Multilingual summary keyed by language code"
20547
+ "description": "The thread's cover as prose, keyed by language code. Answers\n\"where does this stand and what do I do\" in at most 400\ncharacters: state, then the next action, then a risk when one\nexists. Deliberately free of markup - the frontend styles it -\nand free of anything derivable from the data (who spoke last,\nwhose turn it is, counts, labels, links, open tasks)."
20548
+ },
20549
+ "summaryCard": {
20550
+ "type": "object",
20551
+ "additionalProperties": {
20552
+ "$ref": "#/components/schemas/ConversationSummaryCardSchema"
20553
+ },
20554
+ "description": "The same cover as structured data, keyed by language code, so\nthe interface lays it out with its own labels instead of\nparsing prose. Null on threads summarised before this field\nexisted; fall back to `summary` when it is absent."
20555
+ },
20556
+ "summarisedAt": {
20557
+ "type": "string",
20558
+ "description": "When the cover was last computed (ISO 8601). Neither the\nsummary nor the card write touches `timestamps.modified`, so\nthis is the only way to tell a fresh cover from a stale one."
20559
+ },
20560
+ "summarisedThroughEmailId": {
20561
+ "type": "string",
20562
+ "description": "The newest message the cover accounted for. Compare it with the\nlast email in the thread: when they differ, the cover predates\nthat message and the interface can say so instead of showing it\nas current."
20548
20563
  },
20549
20564
  "source": {
20550
20565
  "type": "string",
@@ -20842,7 +20857,22 @@
20842
20857
  "additionalProperties": {
20843
20858
  "type": "string"
20844
20859
  },
20845
- "description": "Multilingual summary keyed by language code"
20860
+ "description": "The thread's cover as prose, keyed by language code. Answers\n\"where does this stand and what do I do\" in at most 400\ncharacters: state, then the next action, then a risk when one\nexists. Deliberately free of markup - the frontend styles it -\nand free of anything derivable from the data (who spoke last,\nwhose turn it is, counts, labels, links, open tasks)."
20861
+ },
20862
+ "summaryCard": {
20863
+ "type": "object",
20864
+ "additionalProperties": {
20865
+ "$ref": "#/components/schemas/ConversationSummaryCardSchema"
20866
+ },
20867
+ "description": "The same cover as structured data, keyed by language code, so\nthe interface lays it out with its own labels instead of\nparsing prose. Null on threads summarised before this field\nexisted; fall back to `summary` when it is absent."
20868
+ },
20869
+ "summarisedAt": {
20870
+ "type": "string",
20871
+ "description": "When the cover was last computed (ISO 8601). Neither the\nsummary nor the card write touches `timestamps.modified`, so\nthis is the only way to tell a fresh cover from a stale one."
20872
+ },
20873
+ "summarisedThroughEmailId": {
20874
+ "type": "string",
20875
+ "description": "The newest message the cover accounted for. Compare it with the\nlast email in the thread: when they differ, the cover predates\nthat message and the interface can say so instead of showing it\nas current."
20846
20876
  },
20847
20877
  "source": {
20848
20878
  "type": "string",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.9.13",
3
+ "version": "0.9.15",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",