@snokam/mcp-api 0.103.0 → 0.104.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snokam/mcp-api",
3
- "version": "0.103.0",
3
+ "version": "0.104.0",
4
4
  "description": "MCP server exposing Snokam backend APIs as tools for Claude Code and other MCP clients",
5
5
  "type": "module",
6
6
  "bin": {
@@ -4437,6 +4437,9 @@
4437
4437
  "sanityUpdatedAt": {
4438
4438
  "type": "string"
4439
4439
  },
4440
+ "settings": {
4441
+ "$ref": "#/components/schemas/sanityEmployeeSettings"
4442
+ },
4440
4443
  "slug": {
4441
4444
  "$ref": "#/components/schemas/slug"
4442
4445
  },
@@ -4672,6 +4675,21 @@
4672
4675
  }
4673
4676
  }
4674
4677
  },
4678
+ "sanityEmployeeSettings": {
4679
+ "type": "object",
4680
+ "properties": {
4681
+ "colorScheme": {
4682
+ "enum": [
4683
+ "dark",
4684
+ "light",
4685
+ "system"
4686
+ ],
4687
+ "type": "string",
4688
+ "default": "dark",
4689
+ "nullable": true
4690
+ }
4691
+ }
4692
+ },
4675
4693
  "sanitySystemsInnerDescriptionInner": {
4676
4694
  "type": "object",
4677
4695
  "properties": {
@@ -1655,6 +1655,9 @@
1655
1655
  "position": {
1656
1656
  "type": "string"
1657
1657
  },
1658
+ "settings": {
1659
+ "$ref": "#/components/schemas/sanityPatchEmployeeSettings"
1660
+ },
1658
1661
  "slug": {
1659
1662
  "$ref": "#/components/schemas/slug"
1660
1663
  },
@@ -1834,6 +1837,9 @@
1834
1837
  "sanityUpdatedAt": {
1835
1838
  "type": "string"
1836
1839
  },
1840
+ "settings": {
1841
+ "$ref": "#/components/schemas/sanityEmployeeSettings"
1842
+ },
1837
1843
  "slug": {
1838
1844
  "$ref": "#/components/schemas/slug"
1839
1845
  },
@@ -2245,6 +2251,21 @@
2245
2251
  }
2246
2252
  }
2247
2253
  },
2254
+ "sanityEmployeeSettings": {
2255
+ "type": "object",
2256
+ "properties": {
2257
+ "colorScheme": {
2258
+ "enum": [
2259
+ "dark",
2260
+ "light",
2261
+ "system"
2262
+ ],
2263
+ "type": "string",
2264
+ "default": "dark",
2265
+ "nullable": true
2266
+ }
2267
+ }
2268
+ },
2248
2269
  "sanityGadgetBudgetYearlyBudgetsInner": {
2249
2270
  "type": "object",
2250
2271
  "properties": {
@@ -2627,6 +2648,21 @@
2627
2648
  }
2628
2649
  }
2629
2650
  },
2651
+ "sanityPatchEmployeeSettings": {
2652
+ "type": "object",
2653
+ "properties": {
2654
+ "colorScheme": {
2655
+ "enum": [
2656
+ "dark",
2657
+ "light",
2658
+ "system"
2659
+ ],
2660
+ "type": "string",
2661
+ "default": "dark",
2662
+ "nullable": true
2663
+ }
2664
+ }
2665
+ },
2630
2666
  "sanityPatchPageMetaImage": {
2631
2667
  "type": "object",
2632
2668
  "properties": {
@@ -29198,6 +29198,19 @@
29198
29198
  },
29199
29199
  "SanityEmployee": {
29200
29200
  "properties": {
29201
+ "settings": {
29202
+ "properties": {
29203
+ "colorScheme": {
29204
+ "type": "string",
29205
+ "enum": [
29206
+ "dark",
29207
+ "light",
29208
+ "system"
29209
+ ]
29210
+ }
29211
+ },
29212
+ "type": "object"
29213
+ },
29201
29214
  "isExternal": {
29202
29215
  "type": "boolean"
29203
29216
  },
@@ -30399,6 +30412,19 @@
30399
30412
  },
30400
30413
  "SanityCreateEmployee": {
30401
30414
  "properties": {
30415
+ "settings": {
30416
+ "properties": {
30417
+ "colorScheme": {
30418
+ "type": "string",
30419
+ "enum": [
30420
+ "dark",
30421
+ "light",
30422
+ "system"
30423
+ ]
30424
+ }
30425
+ },
30426
+ "type": "object"
30427
+ },
30402
30428
  "isExternal": {
30403
30429
  "type": "boolean"
30404
30430
  },
@@ -31144,6 +31170,20 @@
31144
31170
  "isExternal": {
31145
31171
  "type": "boolean",
31146
31172
  "nullable": true
31173
+ },
31174
+ "settings": {
31175
+ "properties": {
31176
+ "colorScheme": {
31177
+ "type": "string",
31178
+ "enum": [
31179
+ "dark",
31180
+ "light",
31181
+ "system"
31182
+ ]
31183
+ }
31184
+ },
31185
+ "type": "object",
31186
+ "nullable": true
31147
31187
  }
31148
31188
  },
31149
31189
  "type": "object",
@@ -4437,6 +4437,9 @@
4437
4437
  "sanityUpdatedAt": {
4438
4438
  "type": "string"
4439
4439
  },
4440
+ "settings": {
4441
+ "$ref": "#/components/schemas/sanityEmployeeSettings"
4442
+ },
4440
4443
  "slug": {
4441
4444
  "$ref": "#/components/schemas/slug"
4442
4445
  },
@@ -4672,6 +4675,21 @@
4672
4675
  }
4673
4676
  }
4674
4677
  },
4678
+ "sanityEmployeeSettings": {
4679
+ "type": "object",
4680
+ "properties": {
4681
+ "colorScheme": {
4682
+ "enum": [
4683
+ "dark",
4684
+ "light",
4685
+ "system"
4686
+ ],
4687
+ "type": "string",
4688
+ "default": "dark",
4689
+ "nullable": true
4690
+ }
4691
+ }
4692
+ },
4675
4693
  "sanitySystemsInnerDescriptionInner": {
4676
4694
  "type": "object",
4677
4695
  "properties": {
@@ -1655,6 +1655,9 @@
1655
1655
  "position": {
1656
1656
  "type": "string"
1657
1657
  },
1658
+ "settings": {
1659
+ "$ref": "#/components/schemas/sanityPatchEmployeeSettings"
1660
+ },
1658
1661
  "slug": {
1659
1662
  "$ref": "#/components/schemas/slug"
1660
1663
  },
@@ -1834,6 +1837,9 @@
1834
1837
  "sanityUpdatedAt": {
1835
1838
  "type": "string"
1836
1839
  },
1840
+ "settings": {
1841
+ "$ref": "#/components/schemas/sanityEmployeeSettings"
1842
+ },
1837
1843
  "slug": {
1838
1844
  "$ref": "#/components/schemas/slug"
1839
1845
  },
@@ -2245,6 +2251,21 @@
2245
2251
  }
2246
2252
  }
2247
2253
  },
2254
+ "sanityEmployeeSettings": {
2255
+ "type": "object",
2256
+ "properties": {
2257
+ "colorScheme": {
2258
+ "enum": [
2259
+ "dark",
2260
+ "light",
2261
+ "system"
2262
+ ],
2263
+ "type": "string",
2264
+ "default": "dark",
2265
+ "nullable": true
2266
+ }
2267
+ }
2268
+ },
2248
2269
  "sanityGadgetBudgetYearlyBudgetsInner": {
2249
2270
  "type": "object",
2250
2271
  "properties": {
@@ -2627,6 +2648,21 @@
2627
2648
  }
2628
2649
  }
2629
2650
  },
2651
+ "sanityPatchEmployeeSettings": {
2652
+ "type": "object",
2653
+ "properties": {
2654
+ "colorScheme": {
2655
+ "enum": [
2656
+ "dark",
2657
+ "light",
2658
+ "system"
2659
+ ],
2660
+ "type": "string",
2661
+ "default": "dark",
2662
+ "nullable": true
2663
+ }
2664
+ }
2665
+ },
2630
2666
  "sanityPatchPageMetaImage": {
2631
2667
  "type": "object",
2632
2668
  "properties": {
@@ -29198,6 +29198,19 @@
29198
29198
  },
29199
29199
  "SanityEmployee": {
29200
29200
  "properties": {
29201
+ "settings": {
29202
+ "properties": {
29203
+ "colorScheme": {
29204
+ "type": "string",
29205
+ "enum": [
29206
+ "dark",
29207
+ "light",
29208
+ "system"
29209
+ ]
29210
+ }
29211
+ },
29212
+ "type": "object"
29213
+ },
29201
29214
  "isExternal": {
29202
29215
  "type": "boolean"
29203
29216
  },
@@ -30399,6 +30412,19 @@
30399
30412
  },
30400
30413
  "SanityCreateEmployee": {
30401
30414
  "properties": {
30415
+ "settings": {
30416
+ "properties": {
30417
+ "colorScheme": {
30418
+ "type": "string",
30419
+ "enum": [
30420
+ "dark",
30421
+ "light",
30422
+ "system"
30423
+ ]
30424
+ }
30425
+ },
30426
+ "type": "object"
30427
+ },
30402
30428
  "isExternal": {
30403
30429
  "type": "boolean"
30404
30430
  },
@@ -31144,6 +31170,20 @@
31144
31170
  "isExternal": {
31145
31171
  "type": "boolean",
31146
31172
  "nullable": true
31173
+ },
31174
+ "settings": {
31175
+ "properties": {
31176
+ "colorScheme": {
31177
+ "type": "string",
31178
+ "enum": [
31179
+ "dark",
31180
+ "light",
31181
+ "system"
31182
+ ]
31183
+ }
31184
+ },
31185
+ "type": "object",
31186
+ "nullable": true
31147
31187
  }
31148
31188
  },
31149
31189
  "type": "object",