@snokam/mcp-api 0.131.2 → 0.132.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.
@@ -414,6 +414,46 @@
414
414
  ]
415
415
  }
416
416
  },
417
+ "/v1.0/protected/employees": {
418
+ "get": {
419
+ "tags": [
420
+ "Employees"
421
+ ],
422
+ "summary": "List employees for buddy/recruiter assignment",
423
+ "description": "Lightweight employee list used by the candidate detail page's buddy and recruiter dropdowns.",
424
+ "operationId": "ListRecruitmentEmployees",
425
+ "responses": {
426
+ "200": {
427
+ "description": "Payload of Array of SanityBasicEmployee",
428
+ "content": {
429
+ "application/json": {
430
+ "schema": {
431
+ "type": "array",
432
+ "items": {
433
+ "$ref": "#/components/schemas/sanityBasicEmployee"
434
+ }
435
+ }
436
+ }
437
+ },
438
+ "x-ms-summary": "Success"
439
+ },
440
+ "401": {
441
+ "description": "No description",
442
+ "x-ms-summary": "Unauthorized"
443
+ }
444
+ },
445
+ "security": [
446
+ {
447
+ "Implicit": [
448
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
449
+ ]
450
+ },
451
+ {
452
+ "ApiKey": []
453
+ }
454
+ ]
455
+ }
456
+ },
417
457
  "/v1.0/protected/job-positions": {
418
458
  "get": {
419
459
  "tags": [
@@ -627,6 +667,125 @@
627
667
  ]
628
668
  }
629
669
  },
670
+ "/v1.0/protected/systems/{id}": {
671
+ "patch": {
672
+ "tags": [
673
+ "Systems"
674
+ ],
675
+ "summary": "Update a system",
676
+ "operationId": "PatchSystem",
677
+ "parameters": [
678
+ {
679
+ "name": "id",
680
+ "in": "path",
681
+ "required": true,
682
+ "schema": {
683
+ "type": "string"
684
+ }
685
+ }
686
+ ],
687
+ "requestBody": {
688
+ "content": {
689
+ "application/json": {
690
+ "schema": {
691
+ "$ref": "#/components/schemas/sanityPatchSystem"
692
+ }
693
+ }
694
+ },
695
+ "required": true
696
+ },
697
+ "responses": {
698
+ "200": {
699
+ "description": "Payload of SanitySystemsInner",
700
+ "content": {
701
+ "application/json": {
702
+ "schema": {
703
+ "$ref": "#/components/schemas/sanitySystemsInner"
704
+ }
705
+ }
706
+ },
707
+ "x-ms-summary": "Success"
708
+ },
709
+ "400": {
710
+ "description": "Payload of Object",
711
+ "content": {
712
+ "application/json": {
713
+ "schema": {
714
+ "type": "object"
715
+ }
716
+ }
717
+ },
718
+ "x-ms-summary": "Bad Request"
719
+ },
720
+ "401": {
721
+ "description": "No description",
722
+ "x-ms-summary": "Unauthorized"
723
+ },
724
+ "404": {
725
+ "description": "No description",
726
+ "x-ms-summary": "Not Found"
727
+ }
728
+ },
729
+ "security": [
730
+ {
731
+ "Implicit": [
732
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
733
+ ]
734
+ },
735
+ {
736
+ "ApiKey": []
737
+ }
738
+ ]
739
+ },
740
+ "delete": {
741
+ "tags": [
742
+ "Systems"
743
+ ],
744
+ "summary": "Delete a system",
745
+ "operationId": "DeleteSystem",
746
+ "parameters": [
747
+ {
748
+ "name": "id",
749
+ "in": "path",
750
+ "required": true,
751
+ "schema": {
752
+ "type": "string"
753
+ }
754
+ }
755
+ ],
756
+ "responses": {
757
+ "200": {
758
+ "description": "Payload of SanitySystemsInner",
759
+ "content": {
760
+ "application/json": {
761
+ "schema": {
762
+ "$ref": "#/components/schemas/sanitySystemsInner"
763
+ }
764
+ }
765
+ },
766
+ "x-ms-summary": "Success"
767
+ },
768
+ "401": {
769
+ "description": "No description",
770
+ "x-ms-summary": "Unauthorized"
771
+ },
772
+ "404": {
773
+ "description": "No description",
774
+ "x-ms-summary": "Not Found"
775
+ }
776
+ },
777
+ "security": [
778
+ {
779
+ "Implicit": [
780
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
781
+ ]
782
+ },
783
+ {
784
+ "ApiKey": []
785
+ }
786
+ ]
787
+ }
788
+ },
630
789
  "/v1.0/protected/onboarding-tasks": {
631
790
  "get": {
632
791
  "tags": [
@@ -926,165 +1085,6 @@
926
1085
  ]
927
1086
  }
928
1087
  },
929
- "/v1.0/protected/systems/{id}": {
930
- "patch": {
931
- "tags": [
932
- "Systems"
933
- ],
934
- "summary": "Update a system",
935
- "operationId": "PatchSystem",
936
- "parameters": [
937
- {
938
- "name": "id",
939
- "in": "path",
940
- "required": true,
941
- "schema": {
942
- "type": "string"
943
- }
944
- }
945
- ],
946
- "requestBody": {
947
- "content": {
948
- "application/json": {
949
- "schema": {
950
- "$ref": "#/components/schemas/sanityPatchSystem"
951
- }
952
- }
953
- },
954
- "required": true
955
- },
956
- "responses": {
957
- "200": {
958
- "description": "Payload of SanitySystemsInner",
959
- "content": {
960
- "application/json": {
961
- "schema": {
962
- "$ref": "#/components/schemas/sanitySystemsInner"
963
- }
964
- }
965
- },
966
- "x-ms-summary": "Success"
967
- },
968
- "400": {
969
- "description": "Payload of Object",
970
- "content": {
971
- "application/json": {
972
- "schema": {
973
- "type": "object"
974
- }
975
- }
976
- },
977
- "x-ms-summary": "Bad Request"
978
- },
979
- "401": {
980
- "description": "No description",
981
- "x-ms-summary": "Unauthorized"
982
- },
983
- "404": {
984
- "description": "No description",
985
- "x-ms-summary": "Not Found"
986
- }
987
- },
988
- "security": [
989
- {
990
- "Implicit": [
991
- "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
992
- ]
993
- },
994
- {
995
- "ApiKey": []
996
- }
997
- ]
998
- },
999
- "delete": {
1000
- "tags": [
1001
- "Systems"
1002
- ],
1003
- "summary": "Delete a system",
1004
- "operationId": "DeleteSystem",
1005
- "parameters": [
1006
- {
1007
- "name": "id",
1008
- "in": "path",
1009
- "required": true,
1010
- "schema": {
1011
- "type": "string"
1012
- }
1013
- }
1014
- ],
1015
- "responses": {
1016
- "200": {
1017
- "description": "Payload of SanitySystemsInner",
1018
- "content": {
1019
- "application/json": {
1020
- "schema": {
1021
- "$ref": "#/components/schemas/sanitySystemsInner"
1022
- }
1023
- }
1024
- },
1025
- "x-ms-summary": "Success"
1026
- },
1027
- "401": {
1028
- "description": "No description",
1029
- "x-ms-summary": "Unauthorized"
1030
- },
1031
- "404": {
1032
- "description": "No description",
1033
- "x-ms-summary": "Not Found"
1034
- }
1035
- },
1036
- "security": [
1037
- {
1038
- "Implicit": [
1039
- "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
1040
- ]
1041
- },
1042
- {
1043
- "ApiKey": []
1044
- }
1045
- ]
1046
- }
1047
- },
1048
- "/v1.0/protected/employees": {
1049
- "get": {
1050
- "tags": [
1051
- "Employees"
1052
- ],
1053
- "summary": "List employees for buddy/recruiter assignment",
1054
- "description": "Lightweight employee list used by the candidate detail page's buddy and recruiter dropdowns.",
1055
- "operationId": "ListRecruitmentEmployees",
1056
- "responses": {
1057
- "200": {
1058
- "description": "Payload of Array of SanityBasicEmployee",
1059
- "content": {
1060
- "application/json": {
1061
- "schema": {
1062
- "type": "array",
1063
- "items": {
1064
- "$ref": "#/components/schemas/sanityBasicEmployee"
1065
- }
1066
- }
1067
- }
1068
- },
1069
- "x-ms-summary": "Success"
1070
- },
1071
- "401": {
1072
- "description": "No description",
1073
- "x-ms-summary": "Unauthorized"
1074
- }
1075
- },
1076
- "security": [
1077
- {
1078
- "Implicit": [
1079
- "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
1080
- ]
1081
- },
1082
- {
1083
- "ApiKey": []
1084
- }
1085
- ]
1086
- }
1087
- },
1088
1088
  "/v1.0/protected/candidates/{id}/generate-offer-pdf": {
1089
1089
  "post": {
1090
1090
  "tags": [