@twin.org/entity 0.0.4-next.8 → 0.0.4-next.9

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 +1 @@
1
- {"version":3,"file":"IEntitySchemaOptions.js","sourceRoot":"","sources":["../../../src/models/IEntitySchemaOptions.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\n\n/**\n * Definition for an entity schema options.\n */\nexport interface IEntitySchemaOptions {\n\t/**\n\t * Description of the object.\n\t */\n\tdescription?: string;\n\n\t/**\n\t * The schema version. Used to drive ordered migrations. Absent is treated as version 1.\n\t */\n\tversion?: number;\n}\n"]}
1
+ {"version":3,"file":"IEntitySchemaOptions.js","sourceRoot":"","sources":["../../../src/models/IEntitySchemaOptions.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\n\n/**\n * Definition for an entity schema options.\n */\nexport interface IEntitySchemaOptions {\n\t/**\n\t * Description of the object.\n\t */\n\tdescription?: string;\n\n\t/**\n\t * The schema version. Used to drive ordered migrations. Absent is treated as version 0.\n\t */\n\tversion?: number;\n}\n"]}
@@ -7,7 +7,7 @@ export interface IEntitySchemaOptions {
7
7
  */
8
8
  description?: string;
9
9
  /**
10
- * The schema version. Used to drive ordered migrations. Absent is treated as version 1.
10
+ * The schema version. Used to drive ordered migrations. Absent is treated as version 0.
11
11
  */
12
12
  version?: number;
13
13
  }
package/docs/changelog.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.4-next.9](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.4-next.8...entity-v0.0.4-next.9) (2026-06-15)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **entity:** Synchronize repo versions
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/nameof bumped from 0.0.4-next.8 to 0.0.4-next.9
16
+ * @twin.org/core bumped from 0.0.4-next.8 to 0.0.4-next.9
17
+ * devDependencies
18
+ * @twin.org/nameof-transformer bumped from 0.0.4-next.8 to 0.0.4-next.9
19
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.4-next.8 to 0.0.4-next.9
20
+ * @twin.org/validate-locales bumped from 0.0.4-next.8 to 0.0.4-next.9
21
+
3
22
  ## [0.0.4-next.8](https://github.com/iotaledger/twin-framework/compare/entity-v0.0.4-next.7...entity-v0.0.4-next.8) (2026-06-10)
4
23
 
5
24
 
@@ -46,7 +46,7 @@ Description of the object.
46
46
 
47
47
  > `optional` **version?**: `number`
48
48
 
49
- The schema version. Used to drive ordered migrations. Absent is treated as version 1.
49
+ The schema version. Used to drive ordered migrations. Absent is treated as version 0.
50
50
 
51
51
  #### Inherited from
52
52
 
@@ -20,4 +20,4 @@ Description of the object.
20
20
 
21
21
  > `optional` **version?**: `number`
22
22
 
23
- The schema version. Used to drive ordered migrations. Absent is treated as version 1.
23
+ The schema version. Used to drive ordered migrations. Absent is treated as version 0.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/entity",
3
- "version": "0.0.4-next.8",
3
+ "version": "0.0.4-next.9",
4
4
  "description": "Helpers for defining and working with entities",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,8 +14,8 @@
14
14
  "node": ">=20.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/core": "0.0.4-next.8",
18
- "@twin.org/nameof": "0.0.4-next.8",
17
+ "@twin.org/core": "0.0.4-next.9",
18
+ "@twin.org/nameof": "0.0.4-next.9",
19
19
  "reflect-metadata": "0.2.2",
20
20
  "tslib": "2.8.1"
21
21
  },