@smartytalent/openai-tools 0.9.16 → 0.9.18

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 +26 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -16897,6 +16897,10 @@
16897
16897
  "done"
16898
16898
  ]
16899
16899
  },
16900
+ "filterConversationId": {
16901
+ "type": "string",
16902
+ "description": "Returns only the tasks linked to this conversation - the\noperator orders and the escalations filed on one thread. Same\nsemantics as `filterConversationId` on listEmails. Mutually\nexclusive with every other filter at the pagination layer."
16903
+ },
16900
16904
  "filterCreatedFrom": {
16901
16905
  "type": "string",
16902
16906
  "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
@@ -20561,6 +20565,17 @@
20561
20565
  "type": "string",
20562
20566
  "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."
20563
20567
  },
20568
+ "reportUrl": {
20569
+ "type": "string",
20570
+ "description": "Presigned link to the thread's PDF report in the CONVERSATION'S\nlanguage, valid at most two hours. Present on showConversation\nONLY (never in list responses) and only when the file really\nexists - the door checks before it signs, so a null here means\n\"no report yet\", not \"broken link\", and the button can be hidden\nrather than failing on click. The report is rendered as the last\nstep of the summary Step Function, so it appears once a thread\nhas been summarised and is refreshed with every new message.\nRead-only and never stored: fetch the conversation again for a\nfresh link. Falls back to the English file when the thread's own\nlanguage has none."
20571
+ },
20572
+ "reportUrls": {
20573
+ "type": "object",
20574
+ "additionalProperties": {
20575
+ "type": "string"
20576
+ },
20577
+ "description": "The same report per language, keyed by locale - the thread's own\nplus `en-US`, which the renderer always writes so a report can be\nshared with someone who does not read the thread's language. One\nentry when the thread is already in English. Null when no report\nexists yet. `reportUrl` is the thread-language entry of this map,\nkept as its own field so a client that ignores the map keeps\nworking. A message the AI pipeline never translated is quoted in\nits original language inside the English file rather than left\nout."
20578
+ },
20564
20579
  "source": {
20565
20580
  "type": "string",
20566
20581
  "description": "Source of the conversation"
@@ -20874,6 +20889,17 @@
20874
20889
  "type": "string",
20875
20890
  "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."
20876
20891
  },
20892
+ "reportUrl": {
20893
+ "type": "string",
20894
+ "description": "Presigned link to the thread's PDF report in the CONVERSATION'S\nlanguage, valid at most two hours. Present on showConversation\nONLY (never in list responses) and only when the file really\nexists - the door checks before it signs, so a null here means\n\"no report yet\", not \"broken link\", and the button can be hidden\nrather than failing on click. The report is rendered as the last\nstep of the summary Step Function, so it appears once a thread\nhas been summarised and is refreshed with every new message.\nRead-only and never stored: fetch the conversation again for a\nfresh link. Falls back to the English file when the thread's own\nlanguage has none."
20895
+ },
20896
+ "reportUrls": {
20897
+ "type": "object",
20898
+ "additionalProperties": {
20899
+ "type": "string"
20900
+ },
20901
+ "description": "The same report per language, keyed by locale - the thread's own\nplus `en-US`, which the renderer always writes so a report can be\nshared with someone who does not read the thread's language. One\nentry when the thread is already in English. Null when no report\nexists yet. `reportUrl` is the thread-language entry of this map,\nkept as its own field so a client that ignores the map keeps\nworking. A message the AI pipeline never translated is quoted in\nits original language inside the English file rather than left\nout."
20902
+ },
20877
20903
  "source": {
20878
20904
  "type": "string",
20879
20905
  "description": "Source of the conversation"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.9.16",
3
+ "version": "0.9.18",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",