@snokam/mcp-api 2.1.1 → 2.3.1
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/package.json +1 -1
- package/specs/production/employees.json +199 -0
- package/specs/production/sales.json +471 -109
- package/specs/production/sanity.json +100 -0
- package/specs/test/employees.json +199 -0
- package/specs/test/sales.json +471 -109
- package/specs/test/sanity.json +100 -0
|
@@ -3257,6 +3257,55 @@
|
|
|
3257
3257
|
"type": "object",
|
|
3258
3258
|
"nullable": true
|
|
3259
3259
|
},
|
|
3260
|
+
"SanityOnboardingTask": {
|
|
3261
|
+
"properties": {
|
|
3262
|
+
"sanityId": {
|
|
3263
|
+
"type": "string"
|
|
3264
|
+
},
|
|
3265
|
+
"sanityType": {
|
|
3266
|
+
"type": "string"
|
|
3267
|
+
},
|
|
3268
|
+
"sanityCreatedAt": {
|
|
3269
|
+
"type": "string"
|
|
3270
|
+
},
|
|
3271
|
+
"sanityUpdatedAt": {
|
|
3272
|
+
"type": "string"
|
|
3273
|
+
},
|
|
3274
|
+
"sanityRev": {
|
|
3275
|
+
"type": "string"
|
|
3276
|
+
},
|
|
3277
|
+
"title": {
|
|
3278
|
+
"type": "string"
|
|
3279
|
+
},
|
|
3280
|
+
"type": {
|
|
3281
|
+
"type": "string",
|
|
3282
|
+
"enum": [
|
|
3283
|
+
"onboarding"
|
|
3284
|
+
],
|
|
3285
|
+
"nullable": false
|
|
3286
|
+
},
|
|
3287
|
+
"reminderWeeksBefore": {
|
|
3288
|
+
"type": "number",
|
|
3289
|
+
"format": "double"
|
|
3290
|
+
},
|
|
3291
|
+
"reminderSlackChannel": {
|
|
3292
|
+
"type": "string"
|
|
3293
|
+
}
|
|
3294
|
+
},
|
|
3295
|
+
"required": [
|
|
3296
|
+
"sanityId",
|
|
3297
|
+
"sanityType",
|
|
3298
|
+
"sanityCreatedAt",
|
|
3299
|
+
"sanityUpdatedAt",
|
|
3300
|
+
"sanityRev",
|
|
3301
|
+
"title",
|
|
3302
|
+
"type",
|
|
3303
|
+
"reminderWeeksBefore",
|
|
3304
|
+
"reminderSlackChannel"
|
|
3305
|
+
],
|
|
3306
|
+
"type": "object",
|
|
3307
|
+
"additionalProperties": true
|
|
3308
|
+
},
|
|
3260
3309
|
"SanityTag": {
|
|
3261
3310
|
"properties": {
|
|
3262
3311
|
"slug": {
|
|
@@ -42004,6 +42053,57 @@
|
|
|
42004
42053
|
]
|
|
42005
42054
|
}
|
|
42006
42055
|
},
|
|
42056
|
+
"/v1.0/tasks/onboarding-reminders": {
|
|
42057
|
+
"get": {
|
|
42058
|
+
"operationId": "GetOnboardingTasksWithReminder",
|
|
42059
|
+
"responses": {
|
|
42060
|
+
"200": {
|
|
42061
|
+
"description": "Ok",
|
|
42062
|
+
"content": {
|
|
42063
|
+
"application/json": {
|
|
42064
|
+
"schema": {
|
|
42065
|
+
"items": {
|
|
42066
|
+
"$ref": "#/components/schemas/SanityOnboardingTask"
|
|
42067
|
+
},
|
|
42068
|
+
"type": "array"
|
|
42069
|
+
}
|
|
42070
|
+
}
|
|
42071
|
+
}
|
|
42072
|
+
}
|
|
42073
|
+
},
|
|
42074
|
+
"description": "Returns onboarding tasks that have a Slack reminder configured.\nUsed by the notifications function to send reminders ahead of an employee's start date.",
|
|
42075
|
+
"tags": [
|
|
42076
|
+
"Tasks"
|
|
42077
|
+
],
|
|
42078
|
+
"security": [
|
|
42079
|
+
{
|
|
42080
|
+
"Implicit": [
|
|
42081
|
+
"api://3358ac8e-681e-4aeb-bfbf-bb008913c423/.default"
|
|
42082
|
+
]
|
|
42083
|
+
}
|
|
42084
|
+
],
|
|
42085
|
+
"parameters": [
|
|
42086
|
+
{
|
|
42087
|
+
"in": "query",
|
|
42088
|
+
"name": "useCache",
|
|
42089
|
+
"required": false,
|
|
42090
|
+
"schema": {
|
|
42091
|
+
"default": true,
|
|
42092
|
+
"type": "boolean"
|
|
42093
|
+
}
|
|
42094
|
+
},
|
|
42095
|
+
{
|
|
42096
|
+
"in": "query",
|
|
42097
|
+
"name": "useCdn",
|
|
42098
|
+
"required": false,
|
|
42099
|
+
"schema": {
|
|
42100
|
+
"default": false,
|
|
42101
|
+
"type": "boolean"
|
|
42102
|
+
}
|
|
42103
|
+
}
|
|
42104
|
+
]
|
|
42105
|
+
}
|
|
42106
|
+
},
|
|
42007
42107
|
"/v1.0/tags": {
|
|
42008
42108
|
"get": {
|
|
42009
42109
|
"operationId": "GetTags",
|
|
@@ -556,6 +556,201 @@
|
|
|
556
556
|
"cvText": {
|
|
557
557
|
"type": "string",
|
|
558
558
|
"nullable": true
|
|
559
|
+
},
|
|
560
|
+
"projectExperiences": {
|
|
561
|
+
"type": "array",
|
|
562
|
+
"items": {
|
|
563
|
+
"$ref": "#/components/schemas/consultantProjectExperience"
|
|
564
|
+
},
|
|
565
|
+
"nullable": true
|
|
566
|
+
},
|
|
567
|
+
"workExperiences": {
|
|
568
|
+
"type": "array",
|
|
569
|
+
"items": {
|
|
570
|
+
"$ref": "#/components/schemas/consultantWorkExperience"
|
|
571
|
+
},
|
|
572
|
+
"nullable": true
|
|
573
|
+
},
|
|
574
|
+
"educations": {
|
|
575
|
+
"type": "array",
|
|
576
|
+
"items": {
|
|
577
|
+
"$ref": "#/components/schemas/consultantEducation"
|
|
578
|
+
},
|
|
579
|
+
"nullable": true
|
|
580
|
+
},
|
|
581
|
+
"cvRoles": {
|
|
582
|
+
"type": "array",
|
|
583
|
+
"items": {
|
|
584
|
+
"$ref": "#/components/schemas/consultantCvRole"
|
|
585
|
+
},
|
|
586
|
+
"nullable": true
|
|
587
|
+
},
|
|
588
|
+
"keyQualifications": {
|
|
589
|
+
"type": "array",
|
|
590
|
+
"items": {
|
|
591
|
+
"$ref": "#/components/schemas/consultantKeyQualification"
|
|
592
|
+
},
|
|
593
|
+
"nullable": true
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
},
|
|
597
|
+
"consultantCvRole": {
|
|
598
|
+
"type": "object",
|
|
599
|
+
"properties": {
|
|
600
|
+
"name": {
|
|
601
|
+
"type": "string",
|
|
602
|
+
"nullable": true
|
|
603
|
+
},
|
|
604
|
+
"longDescription": {
|
|
605
|
+
"type": "string",
|
|
606
|
+
"nullable": true
|
|
607
|
+
},
|
|
608
|
+
"tags": {
|
|
609
|
+
"type": "array",
|
|
610
|
+
"items": {
|
|
611
|
+
"type": "string"
|
|
612
|
+
},
|
|
613
|
+
"nullable": true
|
|
614
|
+
}
|
|
615
|
+
}
|
|
616
|
+
},
|
|
617
|
+
"consultantEducation": {
|
|
618
|
+
"type": "object",
|
|
619
|
+
"properties": {
|
|
620
|
+
"school": {
|
|
621
|
+
"type": "string",
|
|
622
|
+
"nullable": true
|
|
623
|
+
},
|
|
624
|
+
"degree": {
|
|
625
|
+
"type": "string",
|
|
626
|
+
"nullable": true
|
|
627
|
+
},
|
|
628
|
+
"description": {
|
|
629
|
+
"type": "string",
|
|
630
|
+
"nullable": true
|
|
631
|
+
},
|
|
632
|
+
"yearFrom": {
|
|
633
|
+
"type": "integer",
|
|
634
|
+
"format": "int32",
|
|
635
|
+
"nullable": true
|
|
636
|
+
},
|
|
637
|
+
"yearTo": {
|
|
638
|
+
"type": "integer",
|
|
639
|
+
"format": "int32",
|
|
640
|
+
"nullable": true
|
|
641
|
+
}
|
|
642
|
+
}
|
|
643
|
+
},
|
|
644
|
+
"consultantKeyQualification": {
|
|
645
|
+
"type": "object",
|
|
646
|
+
"properties": {
|
|
647
|
+
"label": {
|
|
648
|
+
"type": "string",
|
|
649
|
+
"nullable": true
|
|
650
|
+
},
|
|
651
|
+
"description": {
|
|
652
|
+
"type": "string",
|
|
653
|
+
"nullable": true
|
|
654
|
+
},
|
|
655
|
+
"tags": {
|
|
656
|
+
"type": "array",
|
|
657
|
+
"items": {
|
|
658
|
+
"type": "string"
|
|
659
|
+
},
|
|
660
|
+
"nullable": true
|
|
661
|
+
}
|
|
662
|
+
}
|
|
663
|
+
},
|
|
664
|
+
"consultantProjectExperience": {
|
|
665
|
+
"type": "object",
|
|
666
|
+
"properties": {
|
|
667
|
+
"customer": {
|
|
668
|
+
"type": "string",
|
|
669
|
+
"nullable": true
|
|
670
|
+
},
|
|
671
|
+
"description": {
|
|
672
|
+
"type": "string",
|
|
673
|
+
"nullable": true
|
|
674
|
+
},
|
|
675
|
+
"longDescription": {
|
|
676
|
+
"type": "string",
|
|
677
|
+
"nullable": true
|
|
678
|
+
},
|
|
679
|
+
"industry": {
|
|
680
|
+
"type": "string",
|
|
681
|
+
"nullable": true
|
|
682
|
+
},
|
|
683
|
+
"yearFrom": {
|
|
684
|
+
"type": "integer",
|
|
685
|
+
"format": "int32",
|
|
686
|
+
"nullable": true
|
|
687
|
+
},
|
|
688
|
+
"monthFrom": {
|
|
689
|
+
"type": "integer",
|
|
690
|
+
"format": "int32",
|
|
691
|
+
"nullable": true
|
|
692
|
+
},
|
|
693
|
+
"yearTo": {
|
|
694
|
+
"type": "integer",
|
|
695
|
+
"format": "int32",
|
|
696
|
+
"nullable": true
|
|
697
|
+
},
|
|
698
|
+
"monthTo": {
|
|
699
|
+
"type": "integer",
|
|
700
|
+
"format": "int32",
|
|
701
|
+
"nullable": true
|
|
702
|
+
},
|
|
703
|
+
"roleTitle": {
|
|
704
|
+
"type": "string",
|
|
705
|
+
"nullable": true
|
|
706
|
+
},
|
|
707
|
+
"roleDescription": {
|
|
708
|
+
"type": "string",
|
|
709
|
+
"nullable": true
|
|
710
|
+
},
|
|
711
|
+
"technologies": {
|
|
712
|
+
"type": "array",
|
|
713
|
+
"items": {
|
|
714
|
+
"type": "string"
|
|
715
|
+
},
|
|
716
|
+
"nullable": true
|
|
717
|
+
}
|
|
718
|
+
}
|
|
719
|
+
},
|
|
720
|
+
"consultantWorkExperience": {
|
|
721
|
+
"type": "object",
|
|
722
|
+
"properties": {
|
|
723
|
+
"employer": {
|
|
724
|
+
"type": "string",
|
|
725
|
+
"nullable": true
|
|
726
|
+
},
|
|
727
|
+
"title": {
|
|
728
|
+
"type": "string",
|
|
729
|
+
"nullable": true
|
|
730
|
+
},
|
|
731
|
+
"description": {
|
|
732
|
+
"type": "string",
|
|
733
|
+
"nullable": true
|
|
734
|
+
},
|
|
735
|
+
"yearFrom": {
|
|
736
|
+
"type": "integer",
|
|
737
|
+
"format": "int32",
|
|
738
|
+
"nullable": true
|
|
739
|
+
},
|
|
740
|
+
"monthFrom": {
|
|
741
|
+
"type": "integer",
|
|
742
|
+
"format": "int32",
|
|
743
|
+
"nullable": true
|
|
744
|
+
},
|
|
745
|
+
"yearTo": {
|
|
746
|
+
"type": "integer",
|
|
747
|
+
"format": "int32",
|
|
748
|
+
"nullable": true
|
|
749
|
+
},
|
|
750
|
+
"monthTo": {
|
|
751
|
+
"type": "integer",
|
|
752
|
+
"format": "int32",
|
|
753
|
+
"nullable": true
|
|
559
754
|
}
|
|
560
755
|
}
|
|
561
756
|
},
|
|
@@ -900,6 +1095,10 @@
|
|
|
900
1095
|
"boardMember": {
|
|
901
1096
|
"type": "boolean"
|
|
902
1097
|
},
|
|
1098
|
+
"isBot": {
|
|
1099
|
+
"type": "boolean",
|
|
1100
|
+
"nullable": true
|
|
1101
|
+
},
|
|
903
1102
|
"cliftonStrengths": {
|
|
904
1103
|
"type": "array",
|
|
905
1104
|
"items": {
|