@smartytalent/openai-tools 0.1.33-dev.4 → 0.1.33-dev.5
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 +109 -17
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -11736,17 +11736,9 @@
|
|
|
11736
11736
|
"type": "string",
|
|
11737
11737
|
"description": "Comma-separated list of resource ids to batch-fetch. Requires `filterResourceType`."
|
|
11738
11738
|
},
|
|
11739
|
-
"
|
|
11740
|
-
"type": "
|
|
11741
|
-
"description": "
|
|
11742
|
-
},
|
|
11743
|
-
"filterIsSeen": {
|
|
11744
|
-
"type": "boolean",
|
|
11745
|
-
"description": "Only return seen (true) or unseen (false) states."
|
|
11746
|
-
},
|
|
11747
|
-
"filterIsSpam": {
|
|
11748
|
-
"type": "boolean",
|
|
11749
|
-
"description": "Only return spam-marked states. Reads from the SpamIndex."
|
|
11739
|
+
"folder": {
|
|
11740
|
+
"type": "string",
|
|
11741
|
+
"description": "Folder-style filter. Exactly one value at a time (tagged-union\nsemantics - the SDK enforces this at compile time via string\nliteral union). Orthogonal to filterResourceType and\nfilterResourceIds, which scope the query but don't pick a folder.\n `all` - default, no folder filter\n `unseen` - only unread rows (sparse UnseenIndex)\n `starred` - only starred rows (sparse StarredIndex)\n `spam` - only user-spam-marked rows (sparse SpamIndex)\n `label:<labelId>` - rows whose flags.labels contains the labelId"
|
|
11750
11742
|
},
|
|
11751
11743
|
"pageSize": {
|
|
11752
11744
|
"type": "integer",
|
|
@@ -15168,12 +15160,62 @@
|
|
|
15168
15160
|
"description": "The type of search to perform"
|
|
15169
15161
|
},
|
|
15170
15162
|
"query": {
|
|
15171
|
-
"
|
|
15172
|
-
"
|
|
15163
|
+
"description": "Search query parameters sent to OpenSearch. Shape varies by finder `type`. OpenAPI can't express the full type/query correlation as a strict discriminated union (the discriminator lives on the sibling `type` field, not on `query` itself), so this is encoded as `oneOf` over per-type query schemas. Clients should pick the shape matching the `type` they are posting.",
|
|
15164
|
+
"oneOf": [
|
|
15165
|
+
{
|
|
15166
|
+
"$ref": "#/components/schemas/FinderQueryTalentsSchema"
|
|
15167
|
+
},
|
|
15168
|
+
{
|
|
15169
|
+
"$ref": "#/components/schemas/FinderQueryCandidatesSchema"
|
|
15170
|
+
},
|
|
15171
|
+
{
|
|
15172
|
+
"$ref": "#/components/schemas/FinderQueryJobsSchema"
|
|
15173
|
+
},
|
|
15174
|
+
{
|
|
15175
|
+
"$ref": "#/components/schemas/FinderQueryEmailsSchema"
|
|
15176
|
+
}
|
|
15177
|
+
]
|
|
15173
15178
|
},
|
|
15174
15179
|
"results": {
|
|
15180
|
+
"title": "FinderResultsSchema",
|
|
15175
15181
|
"type": "object",
|
|
15176
|
-
"description": "
|
|
15182
|
+
"description": "OpenSearch-shaped results attached to the finder record after the search runs. Hits array items carry whatever subset of the index schema was projected.",
|
|
15183
|
+
"properties": {
|
|
15184
|
+
"total": {
|
|
15185
|
+
"type": "integer",
|
|
15186
|
+
"description": "Count of matching documents before pagination."
|
|
15187
|
+
},
|
|
15188
|
+
"hits": {
|
|
15189
|
+
"type": "array",
|
|
15190
|
+
"items": {
|
|
15191
|
+
"title": "FinderResultHitSchema",
|
|
15192
|
+
"type": "object",
|
|
15193
|
+
"description": "Single hit from the OpenSearch query. The `id` equals the underlying resource id (emailId, talentId, candidateId, jobId, ...) so the frontend can navigate directly to that resource. Additional fields vary by finder `type`.",
|
|
15194
|
+
"properties": {
|
|
15195
|
+
"id": {
|
|
15196
|
+
"type": "string",
|
|
15197
|
+
"description": "The underlying resource id (emailId / talentId / candidateId / jobId)."
|
|
15198
|
+
},
|
|
15199
|
+
"tenantId": {
|
|
15200
|
+
"type": "string"
|
|
15201
|
+
},
|
|
15202
|
+
"status": {
|
|
15203
|
+
"type": "string"
|
|
15204
|
+
},
|
|
15205
|
+
"source": {
|
|
15206
|
+
"type": "string"
|
|
15207
|
+
},
|
|
15208
|
+
"created": {
|
|
15209
|
+
"type": "string"
|
|
15210
|
+
},
|
|
15211
|
+
"shortCode": {
|
|
15212
|
+
"type": "string"
|
|
15213
|
+
}
|
|
15214
|
+
},
|
|
15215
|
+
"additionalProperties": true
|
|
15216
|
+
}
|
|
15217
|
+
}
|
|
15218
|
+
}
|
|
15177
15219
|
},
|
|
15178
15220
|
"status": {
|
|
15179
15221
|
"type": "string",
|
|
@@ -15395,12 +15437,62 @@
|
|
|
15395
15437
|
"description": "The type of search to perform"
|
|
15396
15438
|
},
|
|
15397
15439
|
"query": {
|
|
15398
|
-
"
|
|
15399
|
-
"
|
|
15440
|
+
"description": "Search query parameters sent to OpenSearch. Shape varies by finder `type`. OpenAPI can't express the full type/query correlation as a strict discriminated union (the discriminator lives on the sibling `type` field, not on `query` itself), so this is encoded as `oneOf` over per-type query schemas. Clients should pick the shape matching the `type` they are posting.",
|
|
15441
|
+
"oneOf": [
|
|
15442
|
+
{
|
|
15443
|
+
"$ref": "#/components/schemas/FinderQueryTalentsSchema"
|
|
15444
|
+
},
|
|
15445
|
+
{
|
|
15446
|
+
"$ref": "#/components/schemas/FinderQueryCandidatesSchema"
|
|
15447
|
+
},
|
|
15448
|
+
{
|
|
15449
|
+
"$ref": "#/components/schemas/FinderQueryJobsSchema"
|
|
15450
|
+
},
|
|
15451
|
+
{
|
|
15452
|
+
"$ref": "#/components/schemas/FinderQueryEmailsSchema"
|
|
15453
|
+
}
|
|
15454
|
+
]
|
|
15400
15455
|
},
|
|
15401
15456
|
"results": {
|
|
15457
|
+
"title": "FinderResultsSchema",
|
|
15402
15458
|
"type": "object",
|
|
15403
|
-
"description": "
|
|
15459
|
+
"description": "OpenSearch-shaped results attached to the finder record after the search runs. Hits array items carry whatever subset of the index schema was projected.",
|
|
15460
|
+
"properties": {
|
|
15461
|
+
"total": {
|
|
15462
|
+
"type": "integer",
|
|
15463
|
+
"description": "Count of matching documents before pagination."
|
|
15464
|
+
},
|
|
15465
|
+
"hits": {
|
|
15466
|
+
"type": "array",
|
|
15467
|
+
"items": {
|
|
15468
|
+
"title": "FinderResultHitSchema",
|
|
15469
|
+
"type": "object",
|
|
15470
|
+
"description": "Single hit from the OpenSearch query. The `id` equals the underlying resource id (emailId, talentId, candidateId, jobId, ...) so the frontend can navigate directly to that resource. Additional fields vary by finder `type`.",
|
|
15471
|
+
"properties": {
|
|
15472
|
+
"id": {
|
|
15473
|
+
"type": "string",
|
|
15474
|
+
"description": "The underlying resource id (emailId / talentId / candidateId / jobId)."
|
|
15475
|
+
},
|
|
15476
|
+
"tenantId": {
|
|
15477
|
+
"type": "string"
|
|
15478
|
+
},
|
|
15479
|
+
"status": {
|
|
15480
|
+
"type": "string"
|
|
15481
|
+
},
|
|
15482
|
+
"source": {
|
|
15483
|
+
"type": "string"
|
|
15484
|
+
},
|
|
15485
|
+
"created": {
|
|
15486
|
+
"type": "string"
|
|
15487
|
+
},
|
|
15488
|
+
"shortCode": {
|
|
15489
|
+
"type": "string"
|
|
15490
|
+
}
|
|
15491
|
+
},
|
|
15492
|
+
"additionalProperties": true
|
|
15493
|
+
}
|
|
15494
|
+
}
|
|
15495
|
+
}
|
|
15404
15496
|
},
|
|
15405
15497
|
"status": {
|
|
15406
15498
|
"type": "string",
|