@kanonak-protocol/types 2.4.0 → 3.0.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.
@@ -1,13 +1,6 @@
1
1
  import { KanonakDocument } from '../../../../document/models/types';
2
2
  import { IDocumentValidationRule } from '../../../../object/validation/rules/document/index';
3
3
  import { OntologyValidationError } from '../../../../object/validation/types';
4
- /**
5
- * Validates that embedded Kanonak objects (nested objects within properties) do NOT have explicit 'type' properties. Embedded objects automatically infer their type from the parent property's range. This enforces proper ontology modeling and prevents redundant type declarations.
6
- */
7
- export interface EmbeddedKanonakNoExplicitTypeRule extends IDocumentValidationRule {
8
- readonly ruleName: string;
9
- validate(document: KanonakDocument): Array<OntologyValidationError>;
10
- }
11
4
  /**
12
5
  * Validates that namespace prefixes with colons are not used in Kanonak YAML. Kanonak uses dot notation for namespace aliases, not colon notation
13
6
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kanonak-protocol/types",
3
- "version": "2.4.0",
3
+ "version": "3.0.0",
4
4
  "description": "Auto-generated TypeScript type definitions and interfaces for Kanonak Protocol (types-only package)",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",