@smartytalent/openai-tools 0.9.18 → 0.9.19

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 -2
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -16901,6 +16901,28 @@
16901
16901
  "type": "string",
16902
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
16903
  },
16904
+ "filterFamily": {
16905
+ "type": "string",
16906
+ "description": "Recops board (2026-09-02): returns the tasks of one route family -\nthe part of `route` before the colon (`emails`, `jobs`, `talents`,\n`candidates`, `compliance` as families arrive), or the literal\n`escalation` for every task WITHOUT a route (an escalation the\nvirtual employee filed, a note). Any string is accepted; an\nunknown family answers an empty list, never 400. Served by\nFamilyIndex; combine with `sort=-created` for newest-first (the\npagination layer sorts the family's rows in memory). Mutually\nexclusive with the other equality filters."
16907
+ },
16908
+ "filterAuthorId": {
16909
+ "type": "string",
16910
+ "description": "Recops board: \"my orders\" - the tasks whose `relationships.author`\nis this user (the caller who filed them; the virtual employee's\nown escalations carry its user). Served by AuthorIdIndex, rows\nolder than the index were backfilled from the author link (a few\nlegacy rows have no author source and are absent). Combine with\n`sort=-created` for newest-first. Mutually exclusive with the\nother equality filters."
16911
+ },
16912
+ "filterClaimedBy": {
16913
+ "type": "string",
16914
+ "description": "Recops board: \"mine in progress\" - the tasks whose `meta.claimedBy`\nis this user. The claim is written by the client (`meta.claimedBy`\n+ `meta.claimedAt` merged per key; `null` releases) and mirrored\ninto the index key on every PATCH that names it. Served by\nClaimedByIndex. Combine with `sort=-created`. Mutually exclusive\nwith the other equality filters."
16915
+ },
16916
+ "sort": {
16917
+ "type": "string",
16918
+ "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\nWithout any filter the list is served by the time index. With\n`filterFamily`, `filterAuthorId`, `filterClaimedBy` or\n`filterConversationId` the filter's own index is read and the\nrows are sorted in memory, so the order is honoured (cost bounded\nby the filter's scope). With `filterStatus` the sort is IGNORED\n(StatusIndex has no time key): read open statuses (small sets)\nand sort client-side, or use `sort=-created` without a filter for\nthe tenant's newest tasks. Compatible with the date-range filters.\nNote: without `sort` and without a filter the order is the base\ntable's key order, which is NOT chronological.",
16919
+ "enum": [
16920
+ "created",
16921
+ "-created",
16922
+ "modified",
16923
+ "-modified"
16924
+ ]
16925
+ },
16904
16926
  "filterCreatedFrom": {
16905
16927
  "type": "string",
16906
16928
  "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
@@ -16975,7 +16997,12 @@
16975
16997
  "kind": {
16976
16998
  "type": "string",
16977
16999
  "maxLength": 64,
16978
- "description": "Free-form task kind label (e.g. email_reply). Not a filter: the list door has no filterKind/filterRoute, only filterStatus."
17000
+ "description": "Free-form task kind label (e.g. email_reply). Not a filter: the list door filters by status, thread, route family (filterFamily), author and claim - never by kind."
17001
+ },
17002
+ "dueAt": {
17003
+ "type": "string",
17004
+ "format": "date-time",
17005
+ "description": "Recops board (2026-09-02): the deadline for a HUMAN to act on this task (not the sending moment of a draft - that is meta.scheduledFor). Optional; written by the client (PATCH, `null` clears) and, later, by the flows that file decision tasks. Accepted as ISO 8601 with an offset or Z (a naive value is read as UTC), always returned as UTC with Z. A moment in the past is allowed - it means \"already overdue\". Not indexed: overdue is computed on the page."
16979
17006
  },
16980
17007
  "content": {
16981
17008
  "type": "object",
@@ -17214,7 +17241,12 @@
17214
17241
  "kind": {
17215
17242
  "type": "string",
17216
17243
  "maxLength": 64,
17217
- "description": "Free-form task kind label (e.g. email_reply). Not a filter: the list door has no filterKind/filterRoute, only filterStatus."
17244
+ "description": "Free-form task kind label (e.g. email_reply). Not a filter: the list door filters by status, thread, route family (filterFamily), author and claim - never by kind."
17245
+ },
17246
+ "dueAt": {
17247
+ "type": "string",
17248
+ "format": "date-time",
17249
+ "description": "Recops board (2026-09-02): the deadline for a HUMAN to act on this task (not the sending moment of a draft - that is meta.scheduledFor). Optional; written by the client (PATCH, `null` clears) and, later, by the flows that file decision tasks. Accepted as ISO 8601 with an offset or Z (a naive value is read as UTC), always returned as UTC with Z. A moment in the past is allowed - it means \"already overdue\". Not indexed: overdue is computed on the page."
17218
17250
  },
17219
17251
  "content": {
17220
17252
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.9.18",
3
+ "version": "0.9.19",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",