Adds @xuqm/h5-sdk/private entry point with JSON-based initialization, feature gating, and error codes for private deployment scenarios. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 行
280 B
TypeScript
12 行
280 B
TypeScript
import type {CodeKeywordDefinition} from "../../types"
|
|
import {validateSchemaDeps} from "./dependencies"
|
|
|
|
const def: CodeKeywordDefinition = {
|
|
keyword: "dependentSchemas",
|
|
type: "object",
|
|
schemaType: "object",
|
|
code: (cxt) => validateSchemaDeps(cxt),
|
|
}
|
|
|
|
export default def
|