@smartytalent/openai-tools 0.1.33-dev.23 → 0.1.33-dev.24

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 +8 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -10927,6 +10927,14 @@
10927
10927
  "type": "string",
10928
10928
  "description": "Filter chats by sender phone number (e.g. +48535517222)."
10929
10929
  },
10930
+ "filterConversationId": {
10931
+ "type": "string",
10932
+ "description": "Returns all chat rows belonging to one conversation (thread).\nUsed by the chat web app's thread view to render messages\nchronologically. Backed by ConversationIdIndex GSI."
10933
+ },
10934
+ "sort": {
10935
+ "type": "string",
10936
+ "description": "Sort order. `created` for oldest-first, `-created` for newest-first.\nUse `created` for thread views (oldest-first message rendering)."
10937
+ },
10930
10938
  "filterCreatedFrom": {
10931
10939
  "type": "string",
10932
10940
  "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.1.33-dev.23",
3
+ "version": "0.1.33-dev.24",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",