@marianmeres/collection-types 1.0.1 → 1.1.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/AGENTS.md CHANGED
@@ -1,4 +1,4 @@
1
- # CLAUDE.md
1
+ # AGENTS.md
2
2
 
3
3
  ## Project Overview
4
4
 
@@ -69,7 +69,7 @@ export interface CollectionDTOOut extends CollectionDTOIn {
69
69
  */
70
70
  export interface CollectionDbRow extends CollectionDTOOut {
71
71
  /** @internal Disables REST API access for entire collection */
72
- __is_rest_disabled?: boolean;
72
+ __is_rest_disabled: boolean;
73
73
  }
74
74
  /**
75
75
  * Primary Collection type alias.
package/dist/model.d.ts CHANGED
@@ -65,13 +65,13 @@ export interface ModelDTOOut extends ModelDTOIn {
65
65
  */
66
66
  export interface ModelDbRow extends ModelDTOOut {
67
67
  /** @internal Disables REST API access */
68
- __is_rest_disabled?: boolean;
68
+ __is_rest_disabled: boolean;
69
69
  /** @internal Structured search index data */
70
- __searchable?: Record<string, unknown>;
70
+ __searchable: Record<string, unknown>;
71
71
  /** @internal Full-text search string */
72
- __searchable2?: string;
72
+ __searchable2: string;
73
73
  /** @internal Cached hierarchy path for ancestor queries */
74
- __hierarchy_path?: LtreePath | null;
74
+ __hierarchy_path: LtreePath | null;
75
75
  }
76
76
  /**
77
77
  * Model data with relation definitions for upsert operations.
@@ -58,7 +58,7 @@ export interface RelationTypeDTOOut extends RelationTypeDTOIn {
58
58
  */
59
59
  export interface RelationTypeDbRow extends RelationTypeDTOOut {
60
60
  /** @internal Disables REST API access */
61
- __is_rest_disabled?: boolean;
61
+ __is_rest_disabled: boolean;
62
62
  }
63
63
  /**
64
64
  * Primary RelationType type alias.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marianmeres/collection-types",
3
- "version": "1.0.1",
3
+ "version": "1.1.0",
4
4
  "type": "module",
5
5
  "main": "dist/mod.js",
6
6
  "types": "dist/mod.d.ts",