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

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 +63 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -16598,6 +16598,69 @@
16598
16598
  }
16599
16599
  }
16600
16600
  },
16601
+ "chats": {
16602
+ "title": "ConversationRelationshipsChatsSchema",
16603
+ "type": "object",
16604
+ "properties": {
16605
+ "data": {
16606
+ "type": "array",
16607
+ "items": {
16608
+ "title": "ConversationRelationshipsChatsDataSchema",
16609
+ "type": "object",
16610
+ "properties": {
16611
+ "type": {
16612
+ "type": "string"
16613
+ },
16614
+ "id": {
16615
+ "type": "string"
16616
+ }
16617
+ }
16618
+ }
16619
+ }
16620
+ }
16621
+ },
16622
+ "calls": {
16623
+ "title": "ConversationRelationshipsCallsSchema",
16624
+ "type": "object",
16625
+ "properties": {
16626
+ "data": {
16627
+ "type": "array",
16628
+ "items": {
16629
+ "title": "ConversationRelationshipsCallsDataSchema",
16630
+ "type": "object",
16631
+ "properties": {
16632
+ "type": {
16633
+ "type": "string"
16634
+ },
16635
+ "id": {
16636
+ "type": "string"
16637
+ }
16638
+ }
16639
+ }
16640
+ }
16641
+ }
16642
+ },
16643
+ "meetings": {
16644
+ "title": "ConversationRelationshipsMeetingsSchema",
16645
+ "type": "object",
16646
+ "properties": {
16647
+ "data": {
16648
+ "type": "array",
16649
+ "items": {
16650
+ "title": "ConversationRelationshipsMeetingsDataSchema",
16651
+ "type": "object",
16652
+ "properties": {
16653
+ "type": {
16654
+ "type": "string"
16655
+ },
16656
+ "id": {
16657
+ "type": "string"
16658
+ }
16659
+ }
16660
+ }
16661
+ }
16662
+ }
16663
+ },
16601
16664
  "talent": {
16602
16665
  "title": "ConversationRelationshipsTalentSchema",
16603
16666
  "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.97",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",