@smartytalent/mcp-tools 0.7.11 → 0.8.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.
- package/dist/tools.json +220 -55
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -2595,61 +2595,6 @@
|
|
|
2595
2595
|
"operationId": "userIdentityOptions"
|
|
2596
2596
|
}
|
|
2597
2597
|
},
|
|
2598
|
-
{
|
|
2599
|
-
"name": "change_user_password",
|
|
2600
|
-
"description": "Change Own Password",
|
|
2601
|
-
"inputSchema": {
|
|
2602
|
-
"type": "object",
|
|
2603
|
-
"properties": {
|
|
2604
|
-
"data": {
|
|
2605
|
-
"type": "object",
|
|
2606
|
-
"properties": {
|
|
2607
|
-
"type": {
|
|
2608
|
-
"type": "string",
|
|
2609
|
-
"enum": [
|
|
2610
|
-
"user-passwords"
|
|
2611
|
-
]
|
|
2612
|
-
},
|
|
2613
|
-
"attributes": {
|
|
2614
|
-
"type": "object",
|
|
2615
|
-
"required": [
|
|
2616
|
-
"currentPassword",
|
|
2617
|
-
"newPassword"
|
|
2618
|
-
],
|
|
2619
|
-
"properties": {
|
|
2620
|
-
"currentPassword": {
|
|
2621
|
-
"type": "string",
|
|
2622
|
-
"format": "password"
|
|
2623
|
-
},
|
|
2624
|
-
"newPassword": {
|
|
2625
|
-
"type": "string",
|
|
2626
|
-
"format": "password"
|
|
2627
|
-
}
|
|
2628
|
-
}
|
|
2629
|
-
}
|
|
2630
|
-
}
|
|
2631
|
-
}
|
|
2632
|
-
}
|
|
2633
|
-
},
|
|
2634
|
-
"_meta": {
|
|
2635
|
-
"method": "POST",
|
|
2636
|
-
"path": "/v1/users/{userId}/password",
|
|
2637
|
-
"operationId": "changeUserPassword"
|
|
2638
|
-
}
|
|
2639
|
-
},
|
|
2640
|
-
{
|
|
2641
|
-
"name": "user_password_options",
|
|
2642
|
-
"description": "User Password Options",
|
|
2643
|
-
"inputSchema": {
|
|
2644
|
-
"type": "object",
|
|
2645
|
-
"properties": {}
|
|
2646
|
-
},
|
|
2647
|
-
"_meta": {
|
|
2648
|
-
"method": "OPTIONS",
|
|
2649
|
-
"path": "/v1/users/{userId}/password",
|
|
2650
|
-
"operationId": "userPasswordOptions"
|
|
2651
|
-
}
|
|
2652
|
-
},
|
|
2653
2598
|
{
|
|
2654
2599
|
"name": "create_user_invitation",
|
|
2655
2600
|
"description": "Resend User Invitation",
|
|
@@ -9611,6 +9556,226 @@
|
|
|
9611
9556
|
"operationId": "feedbackOptions"
|
|
9612
9557
|
}
|
|
9613
9558
|
},
|
|
9559
|
+
{
|
|
9560
|
+
"name": "list_surveys",
|
|
9561
|
+
"description": "List Surveys",
|
|
9562
|
+
"inputSchema": {
|
|
9563
|
+
"type": "object",
|
|
9564
|
+
"properties": {
|
|
9565
|
+
"filterStatus": {
|
|
9566
|
+
"type": "string",
|
|
9567
|
+
"description": "Returns surveys with the current status.",
|
|
9568
|
+
"enum": [
|
|
9569
|
+
"pending",
|
|
9570
|
+
"completed",
|
|
9571
|
+
"expired"
|
|
9572
|
+
]
|
|
9573
|
+
},
|
|
9574
|
+
"filterCandidateId": {
|
|
9575
|
+
"type": "string",
|
|
9576
|
+
"description": "Filter by the candidate the survey was sent to."
|
|
9577
|
+
},
|
|
9578
|
+
"filterCreatedFrom": {
|
|
9579
|
+
"type": "string",
|
|
9580
|
+
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
9581
|
+
},
|
|
9582
|
+
"filterCreatedTo": {
|
|
9583
|
+
"type": "string",
|
|
9584
|
+
"description": "Filters results to include only those created up to the specified date and time. The value must be in ISO 8601 format."
|
|
9585
|
+
},
|
|
9586
|
+
"filterModifiedFrom": {
|
|
9587
|
+
"type": "string",
|
|
9588
|
+
"description": "Filters results to include only those modified from the specified date and time. The value must be in ISO 8601 format."
|
|
9589
|
+
},
|
|
9590
|
+
"filterModifiedTo": {
|
|
9591
|
+
"type": "string",
|
|
9592
|
+
"description": "Filters results to include only those modified up to the specified date and time. The value must be in ISO 8601 format."
|
|
9593
|
+
},
|
|
9594
|
+
"pageSize": {
|
|
9595
|
+
"type": "integer",
|
|
9596
|
+
"description": "Specifies the number of items to retrieve per page. The maximum value is 100."
|
|
9597
|
+
},
|
|
9598
|
+
"pageNumber": {
|
|
9599
|
+
"type": "integer",
|
|
9600
|
+
"description": "Specifies the page number to retrieve. Used for traditional pagination."
|
|
9601
|
+
},
|
|
9602
|
+
"pageAfter": {
|
|
9603
|
+
"type": "string",
|
|
9604
|
+
"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."
|
|
9605
|
+
},
|
|
9606
|
+
"pageBefore": {
|
|
9607
|
+
"type": "string",
|
|
9608
|
+
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
9609
|
+
}
|
|
9610
|
+
}
|
|
9611
|
+
},
|
|
9612
|
+
"_meta": {
|
|
9613
|
+
"method": "GET",
|
|
9614
|
+
"path": "/v1/surveys",
|
|
9615
|
+
"operationId": "listSurveys"
|
|
9616
|
+
}
|
|
9617
|
+
},
|
|
9618
|
+
{
|
|
9619
|
+
"name": "surveys_options",
|
|
9620
|
+
"description": "Surveys Options",
|
|
9621
|
+
"inputSchema": {
|
|
9622
|
+
"type": "object",
|
|
9623
|
+
"properties": {}
|
|
9624
|
+
},
|
|
9625
|
+
"_meta": {
|
|
9626
|
+
"method": "OPTIONS",
|
|
9627
|
+
"path": "/v1/surveys",
|
|
9628
|
+
"operationId": "surveysOptions"
|
|
9629
|
+
}
|
|
9630
|
+
},
|
|
9631
|
+
{
|
|
9632
|
+
"name": "show_survey",
|
|
9633
|
+
"description": "Show Survey",
|
|
9634
|
+
"inputSchema": {
|
|
9635
|
+
"type": "object",
|
|
9636
|
+
"properties": {
|
|
9637
|
+
"surveyId": {
|
|
9638
|
+
"type": "string",
|
|
9639
|
+
"description": "surveyId parameter"
|
|
9640
|
+
}
|
|
9641
|
+
},
|
|
9642
|
+
"required": [
|
|
9643
|
+
"surveyId"
|
|
9644
|
+
]
|
|
9645
|
+
},
|
|
9646
|
+
"_meta": {
|
|
9647
|
+
"method": "GET",
|
|
9648
|
+
"path": "/v1/surveys/{surveyId}",
|
|
9649
|
+
"operationId": "showSurvey"
|
|
9650
|
+
}
|
|
9651
|
+
},
|
|
9652
|
+
{
|
|
9653
|
+
"name": "survey_options",
|
|
9654
|
+
"description": "Survey Options",
|
|
9655
|
+
"inputSchema": {
|
|
9656
|
+
"type": "object",
|
|
9657
|
+
"properties": {}
|
|
9658
|
+
},
|
|
9659
|
+
"_meta": {
|
|
9660
|
+
"method": "OPTIONS",
|
|
9661
|
+
"path": "/v1/surveys/{surveyId}",
|
|
9662
|
+
"operationId": "surveyOptions"
|
|
9663
|
+
}
|
|
9664
|
+
},
|
|
9665
|
+
{
|
|
9666
|
+
"name": "show_guest_survey",
|
|
9667
|
+
"description": "Show Guest Survey",
|
|
9668
|
+
"inputSchema": {
|
|
9669
|
+
"type": "object",
|
|
9670
|
+
"properties": {
|
|
9671
|
+
"tenantId": {
|
|
9672
|
+
"type": "string",
|
|
9673
|
+
"description": "Base tenant id from the emailed link. Half of the guest auth pair."
|
|
9674
|
+
},
|
|
9675
|
+
"token": {
|
|
9676
|
+
"type": "string",
|
|
9677
|
+
"description": "Per-survey accessToken from the emailed link. Compared with hmac.compare_digest; mismatch returns 404."
|
|
9678
|
+
}
|
|
9679
|
+
},
|
|
9680
|
+
"required": [
|
|
9681
|
+
"tenantId",
|
|
9682
|
+
"token"
|
|
9683
|
+
]
|
|
9684
|
+
},
|
|
9685
|
+
"_meta": {
|
|
9686
|
+
"method": "GET",
|
|
9687
|
+
"path": "/v1/guest/surveys/{surveyId}",
|
|
9688
|
+
"operationId": "showGuestSurvey"
|
|
9689
|
+
}
|
|
9690
|
+
},
|
|
9691
|
+
{
|
|
9692
|
+
"name": "submit_guest_survey",
|
|
9693
|
+
"description": "Submit Guest Survey",
|
|
9694
|
+
"inputSchema": {
|
|
9695
|
+
"title": "SubmitGuestSurveyRequestBody",
|
|
9696
|
+
"type": "object",
|
|
9697
|
+
"required": [
|
|
9698
|
+
"data",
|
|
9699
|
+
"meta"
|
|
9700
|
+
],
|
|
9701
|
+
"properties": {
|
|
9702
|
+
"data": {
|
|
9703
|
+
"title": "SubmitGuestSurveyRequestBodyData",
|
|
9704
|
+
"type": "object",
|
|
9705
|
+
"required": [
|
|
9706
|
+
"type",
|
|
9707
|
+
"attributes"
|
|
9708
|
+
],
|
|
9709
|
+
"properties": {
|
|
9710
|
+
"type": {
|
|
9711
|
+
"type": "string",
|
|
9712
|
+
"enum": [
|
|
9713
|
+
"surveys"
|
|
9714
|
+
]
|
|
9715
|
+
},
|
|
9716
|
+
"id": {
|
|
9717
|
+
"type": "string"
|
|
9718
|
+
},
|
|
9719
|
+
"attributes": {
|
|
9720
|
+
"title": "SubmitGuestSurveyRequestBodyDataAttributes",
|
|
9721
|
+
"type": "object",
|
|
9722
|
+
"required": [
|
|
9723
|
+
"score"
|
|
9724
|
+
],
|
|
9725
|
+
"properties": {
|
|
9726
|
+
"score": {
|
|
9727
|
+
"type": "integer",
|
|
9728
|
+
"minimum": 0,
|
|
9729
|
+
"maximum": 10,
|
|
9730
|
+
"description": "The NPS answer. 0-6 buckets to detractor, 7-8 passive, 9-10 promoter - the bucketing happens server-side."
|
|
9731
|
+
},
|
|
9732
|
+
"comment": {
|
|
9733
|
+
"type": "string",
|
|
9734
|
+
"maxLength": 2000,
|
|
9735
|
+
"description": "Optional free text. Trimmed server-side; an empty string is stored as absent."
|
|
9736
|
+
}
|
|
9737
|
+
}
|
|
9738
|
+
}
|
|
9739
|
+
}
|
|
9740
|
+
},
|
|
9741
|
+
"meta": {
|
|
9742
|
+
"title": "GuestSurveyMetaSchema",
|
|
9743
|
+
"description": "Auth context for the unauthenticated PATCH /v1/guest/surveys/{id}.\nBoth values come from the emailed link, never from a session -\nthere is no authorizer on the guest path. tenantId is the BASE\ntenant id; accessToken is the per-survey token minted at create and\ncompared with hmac.compare_digest. Any mismatch returns 404,\nintentionally indistinguishable from \"survey not found\" so survey\nexistence is never leaked.",
|
|
9744
|
+
"type": "object",
|
|
9745
|
+
"required": [
|
|
9746
|
+
"tenantId",
|
|
9747
|
+
"accessToken"
|
|
9748
|
+
],
|
|
9749
|
+
"properties": {
|
|
9750
|
+
"tenantId": {
|
|
9751
|
+
"type": "string"
|
|
9752
|
+
},
|
|
9753
|
+
"accessToken": {
|
|
9754
|
+
"type": "string"
|
|
9755
|
+
}
|
|
9756
|
+
}
|
|
9757
|
+
}
|
|
9758
|
+
}
|
|
9759
|
+
},
|
|
9760
|
+
"_meta": {
|
|
9761
|
+
"method": "PATCH",
|
|
9762
|
+
"path": "/v1/guest/surveys/{surveyId}",
|
|
9763
|
+
"operationId": "submitGuestSurvey"
|
|
9764
|
+
}
|
|
9765
|
+
},
|
|
9766
|
+
{
|
|
9767
|
+
"name": "guest_survey_options",
|
|
9768
|
+
"description": "Guest Survey Options",
|
|
9769
|
+
"inputSchema": {
|
|
9770
|
+
"type": "object",
|
|
9771
|
+
"properties": {}
|
|
9772
|
+
},
|
|
9773
|
+
"_meta": {
|
|
9774
|
+
"method": "OPTIONS",
|
|
9775
|
+
"path": "/v1/guest/surveys/{surveyId}",
|
|
9776
|
+
"operationId": "guestSurveyOptions"
|
|
9777
|
+
}
|
|
9778
|
+
},
|
|
9614
9779
|
{
|
|
9615
9780
|
"name": "list_schedules",
|
|
9616
9781
|
"description": "List Schedules",
|