@snokam/mcp-api 0.30.0 → 0.31.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 +1 -1
- package/specs/production/sanity.json +24 -2
- package/specs/test/sanity.json +24 -2
package/package.json
CHANGED
|
@@ -31687,6 +31687,21 @@
|
|
|
31687
31687
|
},
|
|
31688
31688
|
"completedAt": {
|
|
31689
31689
|
"type": "string"
|
|
31690
|
+
},
|
|
31691
|
+
"assetCount": {
|
|
31692
|
+
"type": "number",
|
|
31693
|
+
"format": "double",
|
|
31694
|
+
"description": "Number of asset binaries downloaded. 0 when `includeAssets` is false."
|
|
31695
|
+
},
|
|
31696
|
+
"assetBytes": {
|
|
31697
|
+
"type": "number",
|
|
31698
|
+
"format": "double",
|
|
31699
|
+
"description": "Total bytes across asset binaries. 0 when `includeAssets` is false."
|
|
31700
|
+
},
|
|
31701
|
+
"assetFailures": {
|
|
31702
|
+
"type": "number",
|
|
31703
|
+
"format": "double",
|
|
31704
|
+
"description": "Number of asset downloads that failed and were skipped."
|
|
31690
31705
|
}
|
|
31691
31706
|
},
|
|
31692
31707
|
"required": [
|
|
@@ -31696,7 +31711,10 @@
|
|
|
31696
31711
|
"blobPath",
|
|
31697
31712
|
"sizeBytes",
|
|
31698
31713
|
"startedAt",
|
|
31699
|
-
"completedAt"
|
|
31714
|
+
"completedAt",
|
|
31715
|
+
"assetCount",
|
|
31716
|
+
"assetBytes",
|
|
31717
|
+
"assetFailures"
|
|
31700
31718
|
],
|
|
31701
31719
|
"type": "object",
|
|
31702
31720
|
"additionalProperties": true
|
|
@@ -31710,6 +31728,10 @@
|
|
|
31710
31728
|
"container": {
|
|
31711
31729
|
"type": "string",
|
|
31712
31730
|
"description": "Blob container name. Defaults to \"sanity-backups\"."
|
|
31731
|
+
},
|
|
31732
|
+
"includeAssets": {
|
|
31733
|
+
"type": "boolean",
|
|
31734
|
+
"description": "When true, also download every `sanity.imageAsset` / `sanity.fileAsset`\nbinary referenced in the export and store it under `<prefix>/assets/`.\nDefault false — the daily cron stays cheap and skips this."
|
|
31713
31735
|
}
|
|
31714
31736
|
},
|
|
31715
31737
|
"type": "object",
|
|
@@ -51136,7 +51158,7 @@
|
|
|
51136
51158
|
}
|
|
51137
51159
|
}
|
|
51138
51160
|
},
|
|
51139
|
-
"description": "Stream the Sanity dataset export (NDJSON) into a gzipped blob in\nAzure Blob Storage.
|
|
51161
|
+
"description": "Stream the Sanity dataset export (NDJSON) into a gzipped blob in\nAzure Blob Storage. With `includeAssets: true` also downloads each\nreferenced image/file binary into `<prefix>/assets/`. Returns\nmetadata about the resulting blobs.",
|
|
51140
51162
|
"tags": [
|
|
51141
51163
|
"Backups"
|
|
51142
51164
|
],
|
package/specs/test/sanity.json
CHANGED
|
@@ -31687,6 +31687,21 @@
|
|
|
31687
31687
|
},
|
|
31688
31688
|
"completedAt": {
|
|
31689
31689
|
"type": "string"
|
|
31690
|
+
},
|
|
31691
|
+
"assetCount": {
|
|
31692
|
+
"type": "number",
|
|
31693
|
+
"format": "double",
|
|
31694
|
+
"description": "Number of asset binaries downloaded. 0 when `includeAssets` is false."
|
|
31695
|
+
},
|
|
31696
|
+
"assetBytes": {
|
|
31697
|
+
"type": "number",
|
|
31698
|
+
"format": "double",
|
|
31699
|
+
"description": "Total bytes across asset binaries. 0 when `includeAssets` is false."
|
|
31700
|
+
},
|
|
31701
|
+
"assetFailures": {
|
|
31702
|
+
"type": "number",
|
|
31703
|
+
"format": "double",
|
|
31704
|
+
"description": "Number of asset downloads that failed and were skipped."
|
|
31690
31705
|
}
|
|
31691
31706
|
},
|
|
31692
31707
|
"required": [
|
|
@@ -31696,7 +31711,10 @@
|
|
|
31696
31711
|
"blobPath",
|
|
31697
31712
|
"sizeBytes",
|
|
31698
31713
|
"startedAt",
|
|
31699
|
-
"completedAt"
|
|
31714
|
+
"completedAt",
|
|
31715
|
+
"assetCount",
|
|
31716
|
+
"assetBytes",
|
|
31717
|
+
"assetFailures"
|
|
31700
31718
|
],
|
|
31701
31719
|
"type": "object",
|
|
31702
31720
|
"additionalProperties": true
|
|
@@ -31710,6 +31728,10 @@
|
|
|
31710
31728
|
"container": {
|
|
31711
31729
|
"type": "string",
|
|
31712
31730
|
"description": "Blob container name. Defaults to \"sanity-backups\"."
|
|
31731
|
+
},
|
|
31732
|
+
"includeAssets": {
|
|
31733
|
+
"type": "boolean",
|
|
31734
|
+
"description": "When true, also download every `sanity.imageAsset` / `sanity.fileAsset`\nbinary referenced in the export and store it under `<prefix>/assets/`.\nDefault false — the daily cron stays cheap and skips this."
|
|
31713
31735
|
}
|
|
31714
31736
|
},
|
|
31715
31737
|
"type": "object",
|
|
@@ -51136,7 +51158,7 @@
|
|
|
51136
51158
|
}
|
|
51137
51159
|
}
|
|
51138
51160
|
},
|
|
51139
|
-
"description": "Stream the Sanity dataset export (NDJSON) into a gzipped blob in\nAzure Blob Storage.
|
|
51161
|
+
"description": "Stream the Sanity dataset export (NDJSON) into a gzipped blob in\nAzure Blob Storage. With `includeAssets: true` also downloads each\nreferenced image/file binary into `<prefix>/assets/`. Returns\nmetadata about the resulting blobs.",
|
|
51140
51162
|
"tags": [
|
|
51141
51163
|
"Backups"
|
|
51142
51164
|
],
|