@hunsu/core 0.1.0 → 0.1.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/dist/domain-store.js +1 -1
- package/package.json +2 -2
- package/src/domain-store.ts +1 -1
package/dist/domain-store.js
CHANGED
|
@@ -157,7 +157,7 @@ export function validateDraftRuntimeBundle(previous, request, sourceRuntime) {
|
|
|
157
157
|
return domainStoreError(".hunsu-prev no longer matches the source runtime bundle");
|
|
158
158
|
}
|
|
159
159
|
if (stableJson(request.destinations.compatibility) !== stableJson(sourceRuntime.destinations.compatibility)) {
|
|
160
|
-
return domainStoreError(".hunsu-request/destinations.json compatibility is
|
|
160
|
+
return domainStoreError(".hunsu-request/destinations.json compatibility is Bridge-owned and must not be edited");
|
|
161
161
|
}
|
|
162
162
|
try {
|
|
163
163
|
const requestRuntime = validateRuntimeState({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hunsu/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Git-backed Hunsu runtime state and Artifact Action helpers.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"node": ">=22.18"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@hunsu/protocol": "0.1.
|
|
27
|
+
"@hunsu/protocol": "0.1.1"
|
|
28
28
|
},
|
|
29
29
|
"scripts": {
|
|
30
30
|
"build": "tsc -p tsconfig.build.json",
|
package/src/domain-store.ts
CHANGED
|
@@ -397,7 +397,7 @@ export function validateDraftRuntimeBundle(
|
|
|
397
397
|
return domainStoreError(".hunsu-prev no longer matches the source runtime bundle");
|
|
398
398
|
}
|
|
399
399
|
if (stableJson(request.destinations.compatibility) !== stableJson(sourceRuntime.destinations.compatibility)) {
|
|
400
|
-
return domainStoreError(".hunsu-request/destinations.json compatibility is
|
|
400
|
+
return domainStoreError(".hunsu-request/destinations.json compatibility is Bridge-owned and must not be edited");
|
|
401
401
|
}
|
|
402
402
|
try {
|
|
403
403
|
const requestRuntime = validateRuntimeState({
|