@smartytalent/openai-tools 0.1.33-dev.22 → 0.1.33-dev.23
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 +34 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -2064,6 +2064,10 @@
|
|
|
2064
2064
|
"type": "string",
|
|
2065
2065
|
"description": "Specifies the email address to filter the results."
|
|
2066
2066
|
},
|
|
2067
|
+
"filterPhone": {
|
|
2068
|
+
"type": "string",
|
|
2069
|
+
"description": "Filter results by exact phone number. Numbers should be in E.164 format\n(e.g. `+48123456789`). Phone-based principal lookup is the SMS channel's\nidentity check, so listing candidates / talents by phone aligns admin\nUI views with what the SMS inbound gate sees. Backed by the PhoneIndex\nGSI on each table."
|
|
2070
|
+
},
|
|
2067
2071
|
"filterCreatedFrom": {
|
|
2068
2072
|
"type": "string",
|
|
2069
2073
|
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
@@ -4502,6 +4506,14 @@
|
|
|
4502
4506
|
"type": "string",
|
|
4503
4507
|
"description": "Filter candidates by exact shortCode value."
|
|
4504
4508
|
},
|
|
4509
|
+
"filterEmail": {
|
|
4510
|
+
"type": "string",
|
|
4511
|
+
"description": "Specifies the email address to filter the results."
|
|
4512
|
+
},
|
|
4513
|
+
"filterPhone": {
|
|
4514
|
+
"type": "string",
|
|
4515
|
+
"description": "Filter results by exact phone number. Numbers should be in E.164 format\n(e.g. `+48123456789`). Phone-based principal lookup is the SMS channel's\nidentity check, so listing candidates / talents by phone aligns admin\nUI views with what the SMS inbound gate sees. Backed by the PhoneIndex\nGSI on each table."
|
|
4516
|
+
},
|
|
4505
4517
|
"filterCreatedFrom": {
|
|
4506
4518
|
"type": "string",
|
|
4507
4519
|
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
@@ -11063,6 +11075,28 @@
|
|
|
11063
11075
|
}
|
|
11064
11076
|
}
|
|
11065
11077
|
}
|
|
11078
|
+
},
|
|
11079
|
+
"conversations": {
|
|
11080
|
+
"title": "ChatRelationshipsConversationsSchema",
|
|
11081
|
+
"description": "Thread the chat row belongs to. SMS replies on the same boe\nnumber share a conversation; the workflow engine parks runs\non the conversation's meta and reads parkedRunContext to\nresume on inbound. Mirror of EmailRelationshipsConversations.\nThe conversation id is also denormalised onto the chat row's\ninternal `conversationId` attribute (indexed by\nConversationIdIndex) for cheap per-thread history queries -\nAPI consumers should read it from this relationship, not\nfrom attributes.",
|
|
11082
|
+
"type": "object",
|
|
11083
|
+
"properties": {
|
|
11084
|
+
"data": {
|
|
11085
|
+
"type": "array",
|
|
11086
|
+
"items": {
|
|
11087
|
+
"title": "ChatRelationshipsConversationsDataSchema",
|
|
11088
|
+
"type": "object",
|
|
11089
|
+
"properties": {
|
|
11090
|
+
"type": {
|
|
11091
|
+
"type": "string"
|
|
11092
|
+
},
|
|
11093
|
+
"id": {
|
|
11094
|
+
"type": "string"
|
|
11095
|
+
}
|
|
11096
|
+
}
|
|
11097
|
+
}
|
|
11098
|
+
}
|
|
11099
|
+
}
|
|
11066
11100
|
}
|
|
11067
11101
|
}
|
|
11068
11102
|
},
|