@smartytalent/openai-tools 0.1.6 → 0.1.8

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