@smartytalent/openai-tools 0.1.6 → 0.1.7

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 +119 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -7310,6 +7310,10 @@
7310
7310
  "archived"
7311
7311
  ]
7312
7312
  },
7313
+ "filterSenderNumber": {
7314
+ "type": "string",
7315
+ "description": "Filter chats by sender phone number (e.g. +48535517222)."
7316
+ },
7313
7317
  "filterCreatedFrom": {
7314
7318
  "type": "string",
7315
7319
  "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
@@ -11489,5 +11493,120 @@
11489
11493
  "properties": {}
11490
11494
  }
11491
11495
  }
11496
+ },
11497
+ {
11498
+ "type": "function",
11499
+ "function": {
11500
+ "name": "list_timelines",
11501
+ "description": "List Timelines",
11502
+ "parameters": {
11503
+ "type": "object",
11504
+ "properties": {
11505
+ "filterEntityKey": {
11506
+ "type": "string",
11507
+ "description": "Filter timeline entries by entity key prefix (e.g., \"jobs#entityId\")"
11508
+ },
11509
+ "filterUserKey": {
11510
+ "type": "string",
11511
+ "description": "Filter timeline entries by user key prefix (e.g., \"userId\")"
11512
+ },
11513
+ "filterCreatedFrom": {
11514
+ "type": "string",
11515
+ "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
11516
+ },
11517
+ "filterCreatedTo": {
11518
+ "type": "string",
11519
+ "description": "Filters results to include only those created up to the specified date and time. The value must be in ISO 8601 format."
11520
+ },
11521
+ "pageSize": {
11522
+ "type": "integer",
11523
+ "description": "Specifies the number of items to retrieve per page. The maximum value is 100."
11524
+ },
11525
+ "pageNumber": {
11526
+ "type": "integer",
11527
+ "description": "Specifies the page number to retrieve. Used for traditional pagination."
11528
+ },
11529
+ "pageAfter": {
11530
+ "type": "string",
11531
+ "description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
11532
+ },
11533
+ "pageBefore": {
11534
+ "type": "string",
11535
+ "description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
11536
+ }
11537
+ }
11538
+ }
11539
+ }
11540
+ },
11541
+ {
11542
+ "type": "function",
11543
+ "function": {
11544
+ "name": "cors_timelines",
11545
+ "description": "CORS support for Timelines",
11546
+ "parameters": {
11547
+ "type": "object",
11548
+ "properties": {}
11549
+ }
11550
+ }
11551
+ },
11552
+ {
11553
+ "type": "function",
11554
+ "function": {
11555
+ "name": "show_timeline",
11556
+ "description": "Show Timeline Entry",
11557
+ "parameters": {
11558
+ "type": "object",
11559
+ "properties": {
11560
+ "timelineId": {
11561
+ "type": "string",
11562
+ "description": "The timeline entry ID"
11563
+ }
11564
+ },
11565
+ "required": [
11566
+ "timelineId"
11567
+ ]
11568
+ }
11569
+ }
11570
+ },
11571
+ {
11572
+ "type": "function",
11573
+ "function": {
11574
+ "name": "cors_timeline_entry",
11575
+ "description": "CORS support for Timeline Entry",
11576
+ "parameters": {
11577
+ "type": "object",
11578
+ "properties": {}
11579
+ }
11580
+ }
11581
+ },
11582
+ {
11583
+ "type": "function",
11584
+ "function": {
11585
+ "name": "rollback_timeline",
11586
+ "description": "Rollback Timeline Entry",
11587
+ "parameters": {
11588
+ "type": "object",
11589
+ "properties": {
11590
+ "timelineId": {
11591
+ "type": "string",
11592
+ "description": "The timeline entry ID to rollback to"
11593
+ }
11594
+ },
11595
+ "required": [
11596
+ "timelineId"
11597
+ ]
11598
+ }
11599
+ }
11600
+ },
11601
+ {
11602
+ "type": "function",
11603
+ "function": {
11604
+ "name": "cors_timeline_rollback",
11605
+ "description": "CORS support for Timeline Rollback",
11606
+ "parameters": {
11607
+ "type": "object",
11608
+ "properties": {}
11609
+ }
11610
+ }
11492
11611
  }
11493
11612
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",