@smartytalent/openai-tools 0.1.33-dev.6 → 0.1.33-dev.8
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 +30 -36
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -6525,6 +6525,16 @@
|
|
|
6525
6525
|
"type": "boolean",
|
|
6526
6526
|
"description": "Return only emails the system (broker / classifier) flagged as spam. Used by the Spam folder's `isSystemSpam=true` leg - the other leg comes from `/v1/states?folder=spam`. Backed by a filter-expression scan across shards for v1; promote to a sparse `SystemSpamIndex` if load warrants. Mutually exclusive with the other index-backed filters at the pagination layer."
|
|
6527
6527
|
},
|
|
6528
|
+
"sort": {
|
|
6529
|
+
"type": "string",
|
|
6530
|
+
"description": "Order results by a time field. Leading `-` means descending\n(newest-first). Accepted values:\n `-created` newest-first by creation time (CreatedIndex)\n `created` oldest-first by creation time\n `-modified` most-recently-modified first (ModifiedIndex)\n `modified` least-recently-modified first\nTakes effect only when no equality filter (filterStatus,\nfilterConversationId, filterDirection) dictates a different\nindex; equality filters win. Compatible with date-range filters\n(filterCreatedFrom/To, filterModifiedFrom/To) which already use\nthe same indexes; sort just picks the direction.",
|
|
6531
|
+
"enum": [
|
|
6532
|
+
"-created",
|
|
6533
|
+
"created",
|
|
6534
|
+
"-modified",
|
|
6535
|
+
"modified"
|
|
6536
|
+
]
|
|
6537
|
+
},
|
|
6528
6538
|
"filterCreatedFrom": {
|
|
6529
6539
|
"type": "string",
|
|
6530
6540
|
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
@@ -6636,26 +6646,18 @@
|
|
|
6636
6646
|
"description": "BCC recipients. Each entry is an RFC 5322 address string."
|
|
6637
6647
|
},
|
|
6638
6648
|
"subject": {
|
|
6639
|
-
"
|
|
6640
|
-
|
|
6641
|
-
|
|
6642
|
-
|
|
6643
|
-
|
|
6644
|
-
"type": "object",
|
|
6645
|
-
"additionalProperties": true
|
|
6646
|
-
}
|
|
6647
|
-
]
|
|
6649
|
+
"type": "object",
|
|
6650
|
+
"additionalProperties": {
|
|
6651
|
+
"type": "string"
|
|
6652
|
+
},
|
|
6653
|
+
"description": "Multilingual subject keyed by IETF BCP 47 locale code (e.g. `en-US`, `pl-PL`). The DAL writes per-locale entries from the AI analyze + translate steps; the UI picks the right key based on `conversationLanguageCode`."
|
|
6648
6654
|
},
|
|
6649
6655
|
"body": {
|
|
6650
|
-
"
|
|
6651
|
-
|
|
6652
|
-
|
|
6653
|
-
|
|
6654
|
-
|
|
6655
|
-
"type": "object",
|
|
6656
|
-
"additionalProperties": true
|
|
6657
|
-
}
|
|
6658
|
-
]
|
|
6656
|
+
"type": "object",
|
|
6657
|
+
"additionalProperties": {
|
|
6658
|
+
"type": "string"
|
|
6659
|
+
},
|
|
6660
|
+
"description": "Multilingual HTML body keyed by IETF BCP 47 locale code. Same shape as `subject`. Body values are HTML strings; plain-text fallback is derived on send."
|
|
6659
6661
|
},
|
|
6660
6662
|
"shortCode": {
|
|
6661
6663
|
"type": "string"
|
|
@@ -6970,26 +6972,18 @@
|
|
|
6970
6972
|
"description": "BCC recipients. Each entry is an RFC 5322 address string."
|
|
6971
6973
|
},
|
|
6972
6974
|
"subject": {
|
|
6973
|
-
"
|
|
6974
|
-
|
|
6975
|
-
|
|
6976
|
-
|
|
6977
|
-
|
|
6978
|
-
"type": "object",
|
|
6979
|
-
"additionalProperties": true
|
|
6980
|
-
}
|
|
6981
|
-
]
|
|
6975
|
+
"type": "object",
|
|
6976
|
+
"additionalProperties": {
|
|
6977
|
+
"type": "string"
|
|
6978
|
+
},
|
|
6979
|
+
"description": "Multilingual subject keyed by IETF BCP 47 locale code (e.g. `en-US`, `pl-PL`). The DAL writes per-locale entries from the AI analyze + translate steps; the UI picks the right key based on `conversationLanguageCode`."
|
|
6982
6980
|
},
|
|
6983
6981
|
"body": {
|
|
6984
|
-
"
|
|
6985
|
-
|
|
6986
|
-
|
|
6987
|
-
|
|
6988
|
-
|
|
6989
|
-
"type": "object",
|
|
6990
|
-
"additionalProperties": true
|
|
6991
|
-
}
|
|
6992
|
-
]
|
|
6982
|
+
"type": "object",
|
|
6983
|
+
"additionalProperties": {
|
|
6984
|
+
"type": "string"
|
|
6985
|
+
},
|
|
6986
|
+
"description": "Multilingual HTML body keyed by IETF BCP 47 locale code. Same shape as `subject`. Body values are HTML strings; plain-text fallback is derived on send."
|
|
6993
6987
|
},
|
|
6994
6988
|
"shortCode": {
|
|
6995
6989
|
"type": "string"
|