@snokam/mcp-api 0.68.1 → 0.70.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/package.json
CHANGED
|
@@ -2082,6 +2082,12 @@
|
|
|
2082
2082
|
"address": {
|
|
2083
2083
|
"$ref": "#/components/schemas/sanityCandidateAddress"
|
|
2084
2084
|
},
|
|
2085
|
+
"allergies": {
|
|
2086
|
+
"type": "array",
|
|
2087
|
+
"items": {
|
|
2088
|
+
"type": "string"
|
|
2089
|
+
}
|
|
2090
|
+
},
|
|
2085
2091
|
"applicationLetter": {
|
|
2086
2092
|
"$ref": "#/components/schemas/sanityCandidateSignedContract"
|
|
2087
2093
|
},
|
|
@@ -2091,6 +2097,9 @@
|
|
|
2091
2097
|
"bankAccount": {
|
|
2092
2098
|
"type": "string"
|
|
2093
2099
|
},
|
|
2100
|
+
"birthDate": {
|
|
2101
|
+
"type": "string"
|
|
2102
|
+
},
|
|
2094
2103
|
"buddy": {
|
|
2095
2104
|
"$ref": "#/components/schemas/sanityEmployeeManager"
|
|
2096
2105
|
},
|
|
@@ -2112,6 +2121,9 @@
|
|
|
2112
2121
|
"cv": {
|
|
2113
2122
|
"$ref": "#/components/schemas/sanityCandidateSignedContract"
|
|
2114
2123
|
},
|
|
2124
|
+
"education": {
|
|
2125
|
+
"type": "string"
|
|
2126
|
+
},
|
|
2115
2127
|
"email": {
|
|
2116
2128
|
"type": "string"
|
|
2117
2129
|
},
|
|
@@ -2719,6 +2731,12 @@
|
|
|
2719
2731
|
"address": {
|
|
2720
2732
|
"$ref": "#/components/schemas/sanityPatchCandidateAddress"
|
|
2721
2733
|
},
|
|
2734
|
+
"allergies": {
|
|
2735
|
+
"type": "array",
|
|
2736
|
+
"items": {
|
|
2737
|
+
"type": "string"
|
|
2738
|
+
}
|
|
2739
|
+
},
|
|
2722
2740
|
"applicationLetter": {
|
|
2723
2741
|
"$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
|
|
2724
2742
|
},
|
|
@@ -2728,6 +2746,9 @@
|
|
|
2728
2746
|
"bankAccount": {
|
|
2729
2747
|
"type": "string"
|
|
2730
2748
|
},
|
|
2749
|
+
"birthDate": {
|
|
2750
|
+
"type": "string"
|
|
2751
|
+
},
|
|
2731
2752
|
"buddy": {
|
|
2732
2753
|
"$ref": "#/components/schemas/employeeReference"
|
|
2733
2754
|
},
|
|
@@ -2749,6 +2770,9 @@
|
|
|
2749
2770
|
"cv": {
|
|
2750
2771
|
"$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
|
|
2751
2772
|
},
|
|
2773
|
+
"education": {
|
|
2774
|
+
"type": "string"
|
|
2775
|
+
},
|
|
2752
2776
|
"email": {
|
|
2753
2777
|
"type": "string"
|
|
2754
2778
|
},
|
|
@@ -3006,6 +3030,12 @@
|
|
|
3006
3030
|
"type": "string",
|
|
3007
3031
|
"default": "system"
|
|
3008
3032
|
},
|
|
3033
|
+
"activateUrl": {
|
|
3034
|
+
"type": "string"
|
|
3035
|
+
},
|
|
3036
|
+
"deactivateUrl": {
|
|
3037
|
+
"type": "string"
|
|
3038
|
+
},
|
|
3009
3039
|
"description": {
|
|
3010
3040
|
"type": "array",
|
|
3011
3041
|
"items": {
|
|
@@ -3893,6 +3893,12 @@
|
|
|
3893
3893
|
"type": "number",
|
|
3894
3894
|
"format": "double"
|
|
3895
3895
|
},
|
|
3896
|
+
"deactivateUrl": {
|
|
3897
|
+
"type": "string"
|
|
3898
|
+
},
|
|
3899
|
+
"activateUrl": {
|
|
3900
|
+
"type": "string"
|
|
3901
|
+
},
|
|
3896
3902
|
"links": {
|
|
3897
3903
|
"items": {
|
|
3898
3904
|
"type": "string"
|
|
@@ -31431,6 +31437,18 @@
|
|
|
31431
31437
|
"type": "object",
|
|
31432
31438
|
"nullable": true
|
|
31433
31439
|
},
|
|
31440
|
+
"education": {
|
|
31441
|
+
"type": "string"
|
|
31442
|
+
},
|
|
31443
|
+
"allergies": {
|
|
31444
|
+
"items": {
|
|
31445
|
+
"type": "string"
|
|
31446
|
+
},
|
|
31447
|
+
"type": "array"
|
|
31448
|
+
},
|
|
31449
|
+
"birthDate": {
|
|
31450
|
+
"type": "string"
|
|
31451
|
+
},
|
|
31434
31452
|
"snapchatUsername": {
|
|
31435
31453
|
"type": "string"
|
|
31436
31454
|
},
|
|
@@ -31575,6 +31593,12 @@
|
|
|
31575
31593
|
"type": "number",
|
|
31576
31594
|
"format": "double"
|
|
31577
31595
|
},
|
|
31596
|
+
"deactivateUrl": {
|
|
31597
|
+
"type": "string"
|
|
31598
|
+
},
|
|
31599
|
+
"activateUrl": {
|
|
31600
|
+
"type": "string"
|
|
31601
|
+
},
|
|
31578
31602
|
"links": {
|
|
31579
31603
|
"items": {
|
|
31580
31604
|
"type": "string"
|
|
@@ -33228,6 +33252,17 @@
|
|
|
33228
33252
|
"type": "string",
|
|
33229
33253
|
"nullable": true
|
|
33230
33254
|
},
|
|
33255
|
+
"allergies": {
|
|
33256
|
+
"items": {
|
|
33257
|
+
"type": "string"
|
|
33258
|
+
},
|
|
33259
|
+
"type": "array",
|
|
33260
|
+
"nullable": true
|
|
33261
|
+
},
|
|
33262
|
+
"education": {
|
|
33263
|
+
"type": "string",
|
|
33264
|
+
"nullable": true
|
|
33265
|
+
},
|
|
33231
33266
|
"candidate": {
|
|
33232
33267
|
"type": "string",
|
|
33233
33268
|
"nullable": true
|
|
@@ -33567,6 +33602,10 @@
|
|
|
33567
33602
|
"snapchatUsername": {
|
|
33568
33603
|
"type": "string",
|
|
33569
33604
|
"nullable": true
|
|
33605
|
+
},
|
|
33606
|
+
"birthDate": {
|
|
33607
|
+
"type": "string",
|
|
33608
|
+
"nullable": true
|
|
33570
33609
|
}
|
|
33571
33610
|
},
|
|
33572
33611
|
"type": "object",
|
|
@@ -46450,7 +46489,7 @@
|
|
|
46450
46489
|
],
|
|
46451
46490
|
"type": "object"
|
|
46452
46491
|
},
|
|
46453
|
-
"
|
|
46492
|
+
"SanityCreateAnnualWheel": {
|
|
46454
46493
|
"properties": {
|
|
46455
46494
|
"events": {
|
|
46456
46495
|
"items": {
|
|
@@ -46518,12 +46557,10 @@
|
|
|
46518
46557
|
"title",
|
|
46519
46558
|
"sanityType"
|
|
46520
46559
|
],
|
|
46521
|
-
"type": "object"
|
|
46522
|
-
|
|
46523
|
-
"SanityCreateAnnualWheel": {
|
|
46524
|
-
"$ref": "#/components/schemas/SanityCreate_AnnualWheel_"
|
|
46560
|
+
"type": "object",
|
|
46561
|
+
"additionalProperties": true
|
|
46525
46562
|
},
|
|
46526
|
-
"
|
|
46563
|
+
"SanityPatchAnnualWheel": {
|
|
46527
46564
|
"properties": {
|
|
46528
46565
|
"sanityType": {
|
|
46529
46566
|
"type": "string",
|
|
@@ -46591,12 +46628,10 @@
|
|
|
46591
46628
|
"nullable": true
|
|
46592
46629
|
}
|
|
46593
46630
|
},
|
|
46594
|
-
"type": "object"
|
|
46595
|
-
|
|
46596
|
-
"SanityPatchAnnualWheel": {
|
|
46597
|
-
"$ref": "#/components/schemas/SanityPatch_AnnualWheel_"
|
|
46631
|
+
"type": "object",
|
|
46632
|
+
"additionalProperties": true
|
|
46598
46633
|
},
|
|
46599
|
-
"
|
|
46634
|
+
"SanityCreateAnnualWheelEvent": {
|
|
46600
46635
|
"properties": {
|
|
46601
46636
|
"SmsRecipients": {
|
|
46602
46637
|
"items": {
|
|
@@ -46645,12 +46680,10 @@
|
|
|
46645
46680
|
"title",
|
|
46646
46681
|
"sanityType"
|
|
46647
46682
|
],
|
|
46648
|
-
"type": "object"
|
|
46649
|
-
|
|
46650
|
-
"SanityCreateAnnualWheelEvent": {
|
|
46651
|
-
"$ref": "#/components/schemas/SanityCreate_Annualevent_"
|
|
46683
|
+
"type": "object",
|
|
46684
|
+
"additionalProperties": true
|
|
46652
46685
|
},
|
|
46653
|
-
"
|
|
46686
|
+
"SanityPatchAnnualWheelEvent": {
|
|
46654
46687
|
"properties": {
|
|
46655
46688
|
"sanityType": {
|
|
46656
46689
|
"type": "string",
|
|
@@ -46700,10 +46733,8 @@
|
|
|
46700
46733
|
"nullable": true
|
|
46701
46734
|
}
|
|
46702
46735
|
},
|
|
46703
|
-
"type": "object"
|
|
46704
|
-
|
|
46705
|
-
"SanityPatchAnnualWheelEvent": {
|
|
46706
|
-
"$ref": "#/components/schemas/SanityPatch_Annualevent_"
|
|
46736
|
+
"type": "object",
|
|
46737
|
+
"additionalProperties": true
|
|
46707
46738
|
}
|
|
46708
46739
|
},
|
|
46709
46740
|
"securitySchemes": {
|
|
@@ -2082,6 +2082,12 @@
|
|
|
2082
2082
|
"address": {
|
|
2083
2083
|
"$ref": "#/components/schemas/sanityCandidateAddress"
|
|
2084
2084
|
},
|
|
2085
|
+
"allergies": {
|
|
2086
|
+
"type": "array",
|
|
2087
|
+
"items": {
|
|
2088
|
+
"type": "string"
|
|
2089
|
+
}
|
|
2090
|
+
},
|
|
2085
2091
|
"applicationLetter": {
|
|
2086
2092
|
"$ref": "#/components/schemas/sanityCandidateSignedContract"
|
|
2087
2093
|
},
|
|
@@ -2091,6 +2097,9 @@
|
|
|
2091
2097
|
"bankAccount": {
|
|
2092
2098
|
"type": "string"
|
|
2093
2099
|
},
|
|
2100
|
+
"birthDate": {
|
|
2101
|
+
"type": "string"
|
|
2102
|
+
},
|
|
2094
2103
|
"buddy": {
|
|
2095
2104
|
"$ref": "#/components/schemas/sanityEmployeeManager"
|
|
2096
2105
|
},
|
|
@@ -2112,6 +2121,9 @@
|
|
|
2112
2121
|
"cv": {
|
|
2113
2122
|
"$ref": "#/components/schemas/sanityCandidateSignedContract"
|
|
2114
2123
|
},
|
|
2124
|
+
"education": {
|
|
2125
|
+
"type": "string"
|
|
2126
|
+
},
|
|
2115
2127
|
"email": {
|
|
2116
2128
|
"type": "string"
|
|
2117
2129
|
},
|
|
@@ -2719,6 +2731,12 @@
|
|
|
2719
2731
|
"address": {
|
|
2720
2732
|
"$ref": "#/components/schemas/sanityPatchCandidateAddress"
|
|
2721
2733
|
},
|
|
2734
|
+
"allergies": {
|
|
2735
|
+
"type": "array",
|
|
2736
|
+
"items": {
|
|
2737
|
+
"type": "string"
|
|
2738
|
+
}
|
|
2739
|
+
},
|
|
2722
2740
|
"applicationLetter": {
|
|
2723
2741
|
"$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
|
|
2724
2742
|
},
|
|
@@ -2728,6 +2746,9 @@
|
|
|
2728
2746
|
"bankAccount": {
|
|
2729
2747
|
"type": "string"
|
|
2730
2748
|
},
|
|
2749
|
+
"birthDate": {
|
|
2750
|
+
"type": "string"
|
|
2751
|
+
},
|
|
2731
2752
|
"buddy": {
|
|
2732
2753
|
"$ref": "#/components/schemas/employeeReference"
|
|
2733
2754
|
},
|
|
@@ -2749,6 +2770,9 @@
|
|
|
2749
2770
|
"cv": {
|
|
2750
2771
|
"$ref": "#/components/schemas/sanityPatchCandidateApplicationLetter"
|
|
2751
2772
|
},
|
|
2773
|
+
"education": {
|
|
2774
|
+
"type": "string"
|
|
2775
|
+
},
|
|
2752
2776
|
"email": {
|
|
2753
2777
|
"type": "string"
|
|
2754
2778
|
},
|
|
@@ -3006,6 +3030,12 @@
|
|
|
3006
3030
|
"type": "string",
|
|
3007
3031
|
"default": "system"
|
|
3008
3032
|
},
|
|
3033
|
+
"activateUrl": {
|
|
3034
|
+
"type": "string"
|
|
3035
|
+
},
|
|
3036
|
+
"deactivateUrl": {
|
|
3037
|
+
"type": "string"
|
|
3038
|
+
},
|
|
3009
3039
|
"description": {
|
|
3010
3040
|
"type": "array",
|
|
3011
3041
|
"items": {
|
package/specs/test/sanity.json
CHANGED
|
@@ -3893,6 +3893,12 @@
|
|
|
3893
3893
|
"type": "number",
|
|
3894
3894
|
"format": "double"
|
|
3895
3895
|
},
|
|
3896
|
+
"deactivateUrl": {
|
|
3897
|
+
"type": "string"
|
|
3898
|
+
},
|
|
3899
|
+
"activateUrl": {
|
|
3900
|
+
"type": "string"
|
|
3901
|
+
},
|
|
3896
3902
|
"links": {
|
|
3897
3903
|
"items": {
|
|
3898
3904
|
"type": "string"
|
|
@@ -31431,6 +31437,18 @@
|
|
|
31431
31437
|
"type": "object",
|
|
31432
31438
|
"nullable": true
|
|
31433
31439
|
},
|
|
31440
|
+
"education": {
|
|
31441
|
+
"type": "string"
|
|
31442
|
+
},
|
|
31443
|
+
"allergies": {
|
|
31444
|
+
"items": {
|
|
31445
|
+
"type": "string"
|
|
31446
|
+
},
|
|
31447
|
+
"type": "array"
|
|
31448
|
+
},
|
|
31449
|
+
"birthDate": {
|
|
31450
|
+
"type": "string"
|
|
31451
|
+
},
|
|
31434
31452
|
"snapchatUsername": {
|
|
31435
31453
|
"type": "string"
|
|
31436
31454
|
},
|
|
@@ -31575,6 +31593,12 @@
|
|
|
31575
31593
|
"type": "number",
|
|
31576
31594
|
"format": "double"
|
|
31577
31595
|
},
|
|
31596
|
+
"deactivateUrl": {
|
|
31597
|
+
"type": "string"
|
|
31598
|
+
},
|
|
31599
|
+
"activateUrl": {
|
|
31600
|
+
"type": "string"
|
|
31601
|
+
},
|
|
31578
31602
|
"links": {
|
|
31579
31603
|
"items": {
|
|
31580
31604
|
"type": "string"
|
|
@@ -33228,6 +33252,17 @@
|
|
|
33228
33252
|
"type": "string",
|
|
33229
33253
|
"nullable": true
|
|
33230
33254
|
},
|
|
33255
|
+
"allergies": {
|
|
33256
|
+
"items": {
|
|
33257
|
+
"type": "string"
|
|
33258
|
+
},
|
|
33259
|
+
"type": "array",
|
|
33260
|
+
"nullable": true
|
|
33261
|
+
},
|
|
33262
|
+
"education": {
|
|
33263
|
+
"type": "string",
|
|
33264
|
+
"nullable": true
|
|
33265
|
+
},
|
|
33231
33266
|
"candidate": {
|
|
33232
33267
|
"type": "string",
|
|
33233
33268
|
"nullable": true
|
|
@@ -33567,6 +33602,10 @@
|
|
|
33567
33602
|
"snapchatUsername": {
|
|
33568
33603
|
"type": "string",
|
|
33569
33604
|
"nullable": true
|
|
33605
|
+
},
|
|
33606
|
+
"birthDate": {
|
|
33607
|
+
"type": "string",
|
|
33608
|
+
"nullable": true
|
|
33570
33609
|
}
|
|
33571
33610
|
},
|
|
33572
33611
|
"type": "object",
|
|
@@ -46450,7 +46489,7 @@
|
|
|
46450
46489
|
],
|
|
46451
46490
|
"type": "object"
|
|
46452
46491
|
},
|
|
46453
|
-
"
|
|
46492
|
+
"SanityCreateAnnualWheel": {
|
|
46454
46493
|
"properties": {
|
|
46455
46494
|
"events": {
|
|
46456
46495
|
"items": {
|
|
@@ -46518,12 +46557,10 @@
|
|
|
46518
46557
|
"title",
|
|
46519
46558
|
"sanityType"
|
|
46520
46559
|
],
|
|
46521
|
-
"type": "object"
|
|
46522
|
-
|
|
46523
|
-
"SanityCreateAnnualWheel": {
|
|
46524
|
-
"$ref": "#/components/schemas/SanityCreate_AnnualWheel_"
|
|
46560
|
+
"type": "object",
|
|
46561
|
+
"additionalProperties": true
|
|
46525
46562
|
},
|
|
46526
|
-
"
|
|
46563
|
+
"SanityPatchAnnualWheel": {
|
|
46527
46564
|
"properties": {
|
|
46528
46565
|
"sanityType": {
|
|
46529
46566
|
"type": "string",
|
|
@@ -46591,12 +46628,10 @@
|
|
|
46591
46628
|
"nullable": true
|
|
46592
46629
|
}
|
|
46593
46630
|
},
|
|
46594
|
-
"type": "object"
|
|
46595
|
-
|
|
46596
|
-
"SanityPatchAnnualWheel": {
|
|
46597
|
-
"$ref": "#/components/schemas/SanityPatch_AnnualWheel_"
|
|
46631
|
+
"type": "object",
|
|
46632
|
+
"additionalProperties": true
|
|
46598
46633
|
},
|
|
46599
|
-
"
|
|
46634
|
+
"SanityCreateAnnualWheelEvent": {
|
|
46600
46635
|
"properties": {
|
|
46601
46636
|
"SmsRecipients": {
|
|
46602
46637
|
"items": {
|
|
@@ -46645,12 +46680,10 @@
|
|
|
46645
46680
|
"title",
|
|
46646
46681
|
"sanityType"
|
|
46647
46682
|
],
|
|
46648
|
-
"type": "object"
|
|
46649
|
-
|
|
46650
|
-
"SanityCreateAnnualWheelEvent": {
|
|
46651
|
-
"$ref": "#/components/schemas/SanityCreate_Annualevent_"
|
|
46683
|
+
"type": "object",
|
|
46684
|
+
"additionalProperties": true
|
|
46652
46685
|
},
|
|
46653
|
-
"
|
|
46686
|
+
"SanityPatchAnnualWheelEvent": {
|
|
46654
46687
|
"properties": {
|
|
46655
46688
|
"sanityType": {
|
|
46656
46689
|
"type": "string",
|
|
@@ -46700,10 +46733,8 @@
|
|
|
46700
46733
|
"nullable": true
|
|
46701
46734
|
}
|
|
46702
46735
|
},
|
|
46703
|
-
"type": "object"
|
|
46704
|
-
|
|
46705
|
-
"SanityPatchAnnualWheelEvent": {
|
|
46706
|
-
"$ref": "#/components/schemas/SanityPatch_Annualevent_"
|
|
46736
|
+
"type": "object",
|
|
46737
|
+
"additionalProperties": true
|
|
46707
46738
|
}
|
|
46708
46739
|
},
|
|
46709
46740
|
"securitySchemes": {
|