@smartytalent/mcp-tools 0.1.32 → 0.1.33-dev.0

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 +554 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -8322,6 +8322,560 @@
8322
8322
  "operationId": "feedbackOptions"
8323
8323
  }
8324
8324
  },
8325
+ {
8326
+ "name": "list_schedules",
8327
+ "description": "List Schedules",
8328
+ "inputSchema": {
8329
+ "type": "object",
8330
+ "properties": {
8331
+ "filterStatus": {
8332
+ "type": "string",
8333
+ "description": "Filter by status. Omit to return all.",
8334
+ "enum": [
8335
+ "pending",
8336
+ "fired",
8337
+ "cancelled",
8338
+ "failed"
8339
+ ]
8340
+ },
8341
+ "filterCreatedFrom": {
8342
+ "type": "string",
8343
+ "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
8344
+ },
8345
+ "filterCreatedTo": {
8346
+ "type": "string",
8347
+ "description": "Filters results to include only those created up to the specified date and time. The value must be in ISO 8601 format."
8348
+ },
8349
+ "filterModifiedFrom": {
8350
+ "type": "string",
8351
+ "description": "Filters results to include only those modified from the specified date and time. The value must be in ISO 8601 format."
8352
+ },
8353
+ "filterModifiedTo": {
8354
+ "type": "string",
8355
+ "description": "Filters results to include only those modified up to the specified date and time. The value must be in ISO 8601 format."
8356
+ },
8357
+ "pageSize": {
8358
+ "type": "integer",
8359
+ "description": "Specifies the number of items to retrieve per page. The maximum value is 100."
8360
+ },
8361
+ "pageNumber": {
8362
+ "type": "integer",
8363
+ "description": "Specifies the page number to retrieve. Used for traditional pagination."
8364
+ },
8365
+ "pageAfter": {
8366
+ "type": "string",
8367
+ "description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
8368
+ },
8369
+ "pageBefore": {
8370
+ "type": "string",
8371
+ "description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
8372
+ }
8373
+ }
8374
+ },
8375
+ "_meta": {
8376
+ "method": "GET",
8377
+ "path": "/v1/schedules",
8378
+ "operationId": "listSchedules"
8379
+ }
8380
+ },
8381
+ {
8382
+ "name": "create_schedule",
8383
+ "description": "Create Schedule",
8384
+ "inputSchema": {
8385
+ "title": "CreateScheduleRequestBody",
8386
+ "type": "object",
8387
+ "required": [
8388
+ "data"
8389
+ ],
8390
+ "properties": {
8391
+ "data": {
8392
+ "title": "CreateScheduleRequestBodyData",
8393
+ "type": "object",
8394
+ "required": [
8395
+ "type",
8396
+ "attributes"
8397
+ ],
8398
+ "properties": {
8399
+ "type": {
8400
+ "type": "string",
8401
+ "enum": [
8402
+ "schedules"
8403
+ ]
8404
+ },
8405
+ "attributes": {
8406
+ "title": "ScheduleAttributesSchema",
8407
+ "type": "object",
8408
+ "required": [
8409
+ "fireAt",
8410
+ "target"
8411
+ ],
8412
+ "properties": {
8413
+ "name": {
8414
+ "type": "string",
8415
+ "description": "Optional human-readable label for the schedule."
8416
+ },
8417
+ "status": {
8418
+ "type": "string",
8419
+ "enum": [
8420
+ "pending",
8421
+ "fired",
8422
+ "cancelled",
8423
+ "failed"
8424
+ ]
8425
+ },
8426
+ "fireAt": {
8427
+ "type": "string",
8428
+ "format": "date-time",
8429
+ "description": "ISO 8601 timestamp when the schedule fires. Absolute; compute delayMinutes client-side if needed."
8430
+ },
8431
+ "firedAt": {
8432
+ "type": "string",
8433
+ "format": "date-time",
8434
+ "description": "Set by the dispatcher when the schedule actually fires."
8435
+ },
8436
+ "target": {
8437
+ "title": "ScheduleTargetSchema",
8438
+ "type": "object",
8439
+ "description": "What to invoke when the schedule fires.",
8440
+ "required": [
8441
+ "type",
8442
+ "actionName"
8443
+ ],
8444
+ "properties": {
8445
+ "type": {
8446
+ "type": "string",
8447
+ "enum": [
8448
+ "action"
8449
+ ],
8450
+ "description": "Target kind. Only `action` is supported today; the dispatcher invokes the matching action Lambda."
8451
+ },
8452
+ "actionName": {
8453
+ "type": "string",
8454
+ "description": "Action identifier (e.g. `email:send`, `call:initiate`). Resolved by the same convention the workflow engine uses — `resource:verb` maps to `sm-${env}-tb-service-action-function-${resource}-${verb}`."
8455
+ },
8456
+ "input": {
8457
+ "type": "object",
8458
+ "description": "Payload passed to the action Lambda. Shape is action-specific."
8459
+ }
8460
+ }
8461
+ },
8462
+ "result": {
8463
+ "type": "object",
8464
+ "description": "Dispatcher's recorded result after firing (status, messageId, or error detail). Server-managed."
8465
+ },
8466
+ "timestamps": {
8467
+ "title": "ResourceTimestampsSchema",
8468
+ "type": "object",
8469
+ "properties": {
8470
+ "created": {
8471
+ "type": "string",
8472
+ "format": "date-time"
8473
+ },
8474
+ "modified": {
8475
+ "type": "string",
8476
+ "format": "date-time"
8477
+ }
8478
+ }
8479
+ }
8480
+ }
8481
+ },
8482
+ "relationships": {
8483
+ "title": "ScheduleRelationshipsSchema",
8484
+ "type": "object",
8485
+ "description": "Optional audit links. None required; use the ones relevant to the scheduled action.",
8486
+ "properties": {
8487
+ "candidate": {
8488
+ "title": "ScheduleRelationshipsCandidateSchema",
8489
+ "type": "object",
8490
+ "properties": {
8491
+ "data": {
8492
+ "type": "object",
8493
+ "properties": {
8494
+ "type": {
8495
+ "type": "string"
8496
+ },
8497
+ "id": {
8498
+ "type": "string"
8499
+ }
8500
+ }
8501
+ }
8502
+ }
8503
+ },
8504
+ "job": {
8505
+ "title": "ScheduleRelationshipsJobSchema",
8506
+ "type": "object",
8507
+ "properties": {
8508
+ "data": {
8509
+ "type": "object",
8510
+ "properties": {
8511
+ "type": {
8512
+ "type": "string"
8513
+ },
8514
+ "id": {
8515
+ "type": "string"
8516
+ }
8517
+ }
8518
+ }
8519
+ }
8520
+ },
8521
+ "conversation": {
8522
+ "title": "ScheduleRelationshipsConversationSchema",
8523
+ "type": "object",
8524
+ "properties": {
8525
+ "data": {
8526
+ "type": "object",
8527
+ "properties": {
8528
+ "type": {
8529
+ "type": "string"
8530
+ },
8531
+ "id": {
8532
+ "type": "string"
8533
+ }
8534
+ }
8535
+ }
8536
+ }
8537
+ },
8538
+ "talent": {
8539
+ "title": "ScheduleRelationshipsTalentSchema",
8540
+ "type": "object",
8541
+ "properties": {
8542
+ "data": {
8543
+ "type": "object",
8544
+ "properties": {
8545
+ "type": {
8546
+ "type": "string"
8547
+ },
8548
+ "id": {
8549
+ "type": "string"
8550
+ }
8551
+ }
8552
+ }
8553
+ }
8554
+ },
8555
+ "user": {
8556
+ "title": "ScheduleRelationshipsUserSchema",
8557
+ "type": "object",
8558
+ "properties": {
8559
+ "data": {
8560
+ "type": "object",
8561
+ "properties": {
8562
+ "type": {
8563
+ "type": "string"
8564
+ },
8565
+ "id": {
8566
+ "type": "string"
8567
+ }
8568
+ }
8569
+ }
8570
+ }
8571
+ }
8572
+ }
8573
+ }
8574
+ }
8575
+ }
8576
+ }
8577
+ },
8578
+ "_meta": {
8579
+ "method": "POST",
8580
+ "path": "/v1/schedules",
8581
+ "operationId": "createSchedule"
8582
+ }
8583
+ },
8584
+ {
8585
+ "name": "schedules_options",
8586
+ "description": "Schedules Options",
8587
+ "inputSchema": {
8588
+ "type": "object",
8589
+ "properties": {}
8590
+ },
8591
+ "_meta": {
8592
+ "method": "OPTIONS",
8593
+ "path": "/v1/schedules",
8594
+ "operationId": "schedulesOptions"
8595
+ }
8596
+ },
8597
+ {
8598
+ "name": "show_schedule",
8599
+ "description": "Show Schedule",
8600
+ "inputSchema": {
8601
+ "type": "object",
8602
+ "properties": {
8603
+ "scheduleId": {
8604
+ "type": "string",
8605
+ "description": "scheduleId parameter"
8606
+ }
8607
+ },
8608
+ "required": [
8609
+ "scheduleId"
8610
+ ]
8611
+ },
8612
+ "_meta": {
8613
+ "method": "GET",
8614
+ "path": "/v1/schedules/{scheduleId}",
8615
+ "operationId": "showSchedule"
8616
+ }
8617
+ },
8618
+ {
8619
+ "name": "update_schedule",
8620
+ "description": "Update Schedule",
8621
+ "inputSchema": {
8622
+ "type": "object",
8623
+ "properties": {
8624
+ "scheduleId": {
8625
+ "type": "string",
8626
+ "description": "scheduleId parameter"
8627
+ },
8628
+ "requestBody": {
8629
+ "title": "UpdateScheduleRequestBody",
8630
+ "type": "object",
8631
+ "required": [
8632
+ "data"
8633
+ ],
8634
+ "properties": {
8635
+ "data": {
8636
+ "title": "UpdateScheduleRequestBodyData",
8637
+ "type": "object",
8638
+ "required": [
8639
+ "type",
8640
+ "id"
8641
+ ],
8642
+ "properties": {
8643
+ "type": {
8644
+ "type": "string",
8645
+ "enum": [
8646
+ "schedules"
8647
+ ]
8648
+ },
8649
+ "id": {
8650
+ "type": "string"
8651
+ },
8652
+ "attributes": {
8653
+ "title": "ScheduleAttributesSchema",
8654
+ "type": "object",
8655
+ "required": [
8656
+ "fireAt",
8657
+ "target"
8658
+ ],
8659
+ "properties": {
8660
+ "name": {
8661
+ "type": "string",
8662
+ "description": "Optional human-readable label for the schedule."
8663
+ },
8664
+ "status": {
8665
+ "type": "string",
8666
+ "enum": [
8667
+ "pending",
8668
+ "fired",
8669
+ "cancelled",
8670
+ "failed"
8671
+ ]
8672
+ },
8673
+ "fireAt": {
8674
+ "type": "string",
8675
+ "format": "date-time",
8676
+ "description": "ISO 8601 timestamp when the schedule fires. Absolute; compute delayMinutes client-side if needed."
8677
+ },
8678
+ "firedAt": {
8679
+ "type": "string",
8680
+ "format": "date-time",
8681
+ "description": "Set by the dispatcher when the schedule actually fires."
8682
+ },
8683
+ "target": {
8684
+ "title": "ScheduleTargetSchema",
8685
+ "type": "object",
8686
+ "description": "What to invoke when the schedule fires.",
8687
+ "required": [
8688
+ "type",
8689
+ "actionName"
8690
+ ],
8691
+ "properties": {
8692
+ "type": {
8693
+ "type": "string",
8694
+ "enum": [
8695
+ "action"
8696
+ ],
8697
+ "description": "Target kind. Only `action` is supported today; the dispatcher invokes the matching action Lambda."
8698
+ },
8699
+ "actionName": {
8700
+ "type": "string",
8701
+ "description": "Action identifier (e.g. `email:send`, `call:initiate`). Resolved by the same convention the workflow engine uses — `resource:verb` maps to `sm-${env}-tb-service-action-function-${resource}-${verb}`."
8702
+ },
8703
+ "input": {
8704
+ "type": "object",
8705
+ "description": "Payload passed to the action Lambda. Shape is action-specific."
8706
+ }
8707
+ }
8708
+ },
8709
+ "result": {
8710
+ "type": "object",
8711
+ "description": "Dispatcher's recorded result after firing (status, messageId, or error detail). Server-managed."
8712
+ },
8713
+ "timestamps": {
8714
+ "title": "ResourceTimestampsSchema",
8715
+ "type": "object",
8716
+ "properties": {
8717
+ "created": {
8718
+ "type": "string",
8719
+ "format": "date-time"
8720
+ },
8721
+ "modified": {
8722
+ "type": "string",
8723
+ "format": "date-time"
8724
+ }
8725
+ }
8726
+ }
8727
+ }
8728
+ },
8729
+ "relationships": {
8730
+ "title": "ScheduleRelationshipsSchema",
8731
+ "type": "object",
8732
+ "description": "Optional audit links. None required; use the ones relevant to the scheduled action.",
8733
+ "properties": {
8734
+ "candidate": {
8735
+ "title": "ScheduleRelationshipsCandidateSchema",
8736
+ "type": "object",
8737
+ "properties": {
8738
+ "data": {
8739
+ "type": "object",
8740
+ "properties": {
8741
+ "type": {
8742
+ "type": "string"
8743
+ },
8744
+ "id": {
8745
+ "type": "string"
8746
+ }
8747
+ }
8748
+ }
8749
+ }
8750
+ },
8751
+ "job": {
8752
+ "title": "ScheduleRelationshipsJobSchema",
8753
+ "type": "object",
8754
+ "properties": {
8755
+ "data": {
8756
+ "type": "object",
8757
+ "properties": {
8758
+ "type": {
8759
+ "type": "string"
8760
+ },
8761
+ "id": {
8762
+ "type": "string"
8763
+ }
8764
+ }
8765
+ }
8766
+ }
8767
+ },
8768
+ "conversation": {
8769
+ "title": "ScheduleRelationshipsConversationSchema",
8770
+ "type": "object",
8771
+ "properties": {
8772
+ "data": {
8773
+ "type": "object",
8774
+ "properties": {
8775
+ "type": {
8776
+ "type": "string"
8777
+ },
8778
+ "id": {
8779
+ "type": "string"
8780
+ }
8781
+ }
8782
+ }
8783
+ }
8784
+ },
8785
+ "talent": {
8786
+ "title": "ScheduleRelationshipsTalentSchema",
8787
+ "type": "object",
8788
+ "properties": {
8789
+ "data": {
8790
+ "type": "object",
8791
+ "properties": {
8792
+ "type": {
8793
+ "type": "string"
8794
+ },
8795
+ "id": {
8796
+ "type": "string"
8797
+ }
8798
+ }
8799
+ }
8800
+ }
8801
+ },
8802
+ "user": {
8803
+ "title": "ScheduleRelationshipsUserSchema",
8804
+ "type": "object",
8805
+ "properties": {
8806
+ "data": {
8807
+ "type": "object",
8808
+ "properties": {
8809
+ "type": {
8810
+ "type": "string"
8811
+ },
8812
+ "id": {
8813
+ "type": "string"
8814
+ }
8815
+ }
8816
+ }
8817
+ }
8818
+ }
8819
+ }
8820
+ }
8821
+ }
8822
+ }
8823
+ }
8824
+ }
8825
+ },
8826
+ "required": [
8827
+ "scheduleId",
8828
+ "requestBody"
8829
+ ]
8830
+ },
8831
+ "_meta": {
8832
+ "method": "PATCH",
8833
+ "path": "/v1/schedules/{scheduleId}",
8834
+ "operationId": "updateSchedule"
8835
+ }
8836
+ },
8837
+ {
8838
+ "name": "delete_schedule",
8839
+ "description": "Cancel Schedule",
8840
+ "inputSchema": {
8841
+ "type": "object",
8842
+ "properties": {
8843
+ "scheduleId": {
8844
+ "type": "string",
8845
+ "description": "scheduleId parameter"
8846
+ },
8847
+ "permanentDelete": {
8848
+ "type": "string",
8849
+ "description": "Set to true for permanent deletion.",
8850
+ "enum": [
8851
+ "true",
8852
+ "false"
8853
+ ]
8854
+ }
8855
+ },
8856
+ "required": [
8857
+ "scheduleId"
8858
+ ]
8859
+ },
8860
+ "_meta": {
8861
+ "method": "DELETE",
8862
+ "path": "/v1/schedules/{scheduleId}",
8863
+ "operationId": "deleteSchedule"
8864
+ }
8865
+ },
8866
+ {
8867
+ "name": "schedule_options",
8868
+ "description": "Schedule Options",
8869
+ "inputSchema": {
8870
+ "type": "object",
8871
+ "properties": {}
8872
+ },
8873
+ "_meta": {
8874
+ "method": "OPTIONS",
8875
+ "path": "/v1/schedules/{scheduleId}",
8876
+ "operationId": "scheduleOptions"
8877
+ }
8878
+ },
8325
8879
  {
8326
8880
  "name": "create_submission",
8327
8881
  "description": "Create Submission",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.32",
3
+ "version": "0.1.33-dev.0",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",