@lionweb/json 0.8.0-beta.6 → 0.8.0-beta.7

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/CHANGELOG.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  * Make `reference` field of `LionWebJsonReferenceTarget` type `null`able, and ensure that not both fields are `null`.
6
6
  * Deprecate usage of the `currentSerializationFormatVersion` constant, and propagate throughout the entire codebase.
7
- Use `defaultLionWebVersion.serializationFormatVersion` with `defaultLionWebVersion` coming from the `core` package.
7
+ Use `LionWebVersions.v2023_1.serializationFormatVersion` with `LionWebVersions` coming from the `core` package.
8
8
 
9
9
 
10
10
  ## 0.7.2
package/dist/version.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * The *current* version of the serialization format.
3
3
  *
4
- * @deprecated Use {@code defaultLionWebVersion.serializationFormatVersion} instead.
4
+ * @deprecated Use `LionWebVersions.v2023_1.serializationFormatVersion` instead.
5
5
  */
6
6
  export declare const currentSerializationFormatVersion = "2023.1";
7
7
  //# sourceMappingURL=version.d.ts.map
package/dist/version.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * The *current* version of the serialization format.
3
3
  *
4
- * @deprecated Use {@code defaultLionWebVersion.serializationFormatVersion} instead.
4
+ * @deprecated Use `LionWebVersions.v2023_1.serializationFormatVersion` instead.
5
5
  */
6
6
  export const currentSerializationFormatVersion = "2023.1";
7
7
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lionweb/json",
3
- "version": "0.8.0-beta.6",
3
+ "version": "0.8.0-beta.7",
4
4
  "description": "TypeScript types for LionWeb JSON",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/version.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * The *current* version of the serialization format.
3
3
  *
4
- * @deprecated Use {@code defaultLionWebVersion.serializationFormatVersion} instead.
4
+ * @deprecated Use `LionWebVersions.v2023_1.serializationFormatVersion` instead.
5
5
  */
6
6
  export const currentSerializationFormatVersion = "2023.1"