@smartytalent/openai-tools 0.1.33-dev.96 → 0.1.33-dev.98

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 +71 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -16420,6 +16420,14 @@
16420
16420
  "archived"
16421
16421
  ]
16422
16422
  },
16423
+ "filterTalentId": {
16424
+ "type": "string",
16425
+ "description": "Returns the conversations owned by a talent (the comms hub - all the talent's\nconversations across jobs/candidates, for the talent-details Communication tab).\nServed by the conversation TalentIndex GSI."
16426
+ },
16427
+ "filterCandidateId": {
16428
+ "type": "string",
16429
+ "description": "Returns the conversations for a single candidate (the per-job view of comms - one\nrecruitment context). Served by the conversation CandidateIndex GSI. (filterJobId\narrives once its GSI is deployed.)"
16430
+ },
16423
16431
  "filterCreatedFrom": {
16424
16432
  "type": "string",
16425
16433
  "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
@@ -16598,6 +16606,69 @@
16598
16606
  }
16599
16607
  }
16600
16608
  },
16609
+ "chats": {
16610
+ "title": "ConversationRelationshipsChatsSchema",
16611
+ "type": "object",
16612
+ "properties": {
16613
+ "data": {
16614
+ "type": "array",
16615
+ "items": {
16616
+ "title": "ConversationRelationshipsChatsDataSchema",
16617
+ "type": "object",
16618
+ "properties": {
16619
+ "type": {
16620
+ "type": "string"
16621
+ },
16622
+ "id": {
16623
+ "type": "string"
16624
+ }
16625
+ }
16626
+ }
16627
+ }
16628
+ }
16629
+ },
16630
+ "calls": {
16631
+ "title": "ConversationRelationshipsCallsSchema",
16632
+ "type": "object",
16633
+ "properties": {
16634
+ "data": {
16635
+ "type": "array",
16636
+ "items": {
16637
+ "title": "ConversationRelationshipsCallsDataSchema",
16638
+ "type": "object",
16639
+ "properties": {
16640
+ "type": {
16641
+ "type": "string"
16642
+ },
16643
+ "id": {
16644
+ "type": "string"
16645
+ }
16646
+ }
16647
+ }
16648
+ }
16649
+ }
16650
+ },
16651
+ "meetings": {
16652
+ "title": "ConversationRelationshipsMeetingsSchema",
16653
+ "type": "object",
16654
+ "properties": {
16655
+ "data": {
16656
+ "type": "array",
16657
+ "items": {
16658
+ "title": "ConversationRelationshipsMeetingsDataSchema",
16659
+ "type": "object",
16660
+ "properties": {
16661
+ "type": {
16662
+ "type": "string"
16663
+ },
16664
+ "id": {
16665
+ "type": "string"
16666
+ }
16667
+ }
16668
+ }
16669
+ }
16670
+ }
16671
+ },
16601
16672
  "talent": {
16602
16673
  "title": "ConversationRelationshipsTalentSchema",
16603
16674
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.1.33-dev.96",
3
+ "version": "0.1.33-dev.98",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",