@smartytalent/openai-tools 0.1.33-dev.21 → 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.
Files changed (2) hide show
  1. package/dist/tools.json +148 -0
  2. 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
  },
@@ -12344,6 +12378,120 @@
12344
12378
  }
12345
12379
  }
12346
12380
  },
12381
+ {
12382
+ "type": "function",
12383
+ "function": {
12384
+ "name": "list_signals",
12385
+ "description": "List Signals",
12386
+ "parameters": {
12387
+ "type": "object",
12388
+ "properties": {
12389
+ "filterCategory": {
12390
+ "type": "string",
12391
+ "description": "filterCategory parameter",
12392
+ "enum": [
12393
+ "inbound_email",
12394
+ "inbound_chat",
12395
+ "inbound_call",
12396
+ "inbound_webapp",
12397
+ "outbound_email",
12398
+ "integration",
12399
+ "auth",
12400
+ "data_access"
12401
+ ]
12402
+ },
12403
+ "filterAction": {
12404
+ "type": "string",
12405
+ "description": "filterAction parameter",
12406
+ "enum": [
12407
+ "rejected_unknown_principal",
12408
+ "rejected_language",
12409
+ "rejected_intent",
12410
+ "rejected_closed_context",
12411
+ "rejected_rate_limit",
12412
+ "accepted",
12413
+ "delivery_failed",
12414
+ "integration_error",
12415
+ "data_exported"
12416
+ ]
12417
+ },
12418
+ "filterActorIdentifier": {
12419
+ "type": "string",
12420
+ "description": "filterActorIdentifier parameter"
12421
+ },
12422
+ "filterSeverity": {
12423
+ "type": "string",
12424
+ "description": "filterSeverity parameter",
12425
+ "enum": [
12426
+ "info",
12427
+ "warning",
12428
+ "error"
12429
+ ]
12430
+ },
12431
+ "filterActorType": {
12432
+ "type": "string",
12433
+ "description": "filterActorType parameter",
12434
+ "enum": [
12435
+ "user",
12436
+ "candidate",
12437
+ "talent",
12438
+ "guest",
12439
+ "system"
12440
+ ]
12441
+ },
12442
+ "sort": {
12443
+ "type": "string",
12444
+ "description": "sort parameter"
12445
+ },
12446
+ "pageSize": {
12447
+ "type": "integer",
12448
+ "description": "Specifies the number of items to retrieve per page. The maximum value is 100."
12449
+ },
12450
+ "pageAfter": {
12451
+ "type": "string",
12452
+ "description": "Opaque base64-encoded cursor returned by a previous list response, used for forward cursor-based pagination. Pass the value verbatim; do not decode or mutate it."
12453
+ },
12454
+ "pageBefore": {
12455
+ "type": "string",
12456
+ "description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
12457
+ }
12458
+ }
12459
+ }
12460
+ }
12461
+ },
12462
+ {
12463
+ "type": "function",
12464
+ "function": {
12465
+ "name": "signals_options",
12466
+ "description": "Signals Options",
12467
+ "parameters": {
12468
+ "type": "object",
12469
+ "properties": {}
12470
+ }
12471
+ }
12472
+ },
12473
+ {
12474
+ "type": "function",
12475
+ "function": {
12476
+ "name": "show_signal",
12477
+ "description": "Show Signal",
12478
+ "parameters": {
12479
+ "type": "object",
12480
+ "properties": {}
12481
+ }
12482
+ }
12483
+ },
12484
+ {
12485
+ "type": "function",
12486
+ "function": {
12487
+ "name": "signal_options",
12488
+ "description": "Signal Options",
12489
+ "parameters": {
12490
+ "type": "object",
12491
+ "properties": {}
12492
+ }
12493
+ }
12494
+ },
12347
12495
  {
12348
12496
  "type": "function",
12349
12497
  "function": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.1.33-dev.21",
3
+ "version": "0.1.33-dev.23",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",