@quenty/valueobject 13.22.0 → 13.22.1

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
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [13.22.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/valueobject@13.22.0...@quenty/valueobject@13.22.1) (2026-01-05)
7
+
8
+ **Note:** Version bump only for package @quenty/valueobject
9
+
10
+
11
+
12
+
13
+
6
14
  # [13.22.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/valueobject@13.21.7...@quenty/valueobject@13.22.0) (2026-01-04)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/valueobject
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2014-2025 James Onnen (Quenty)
3
+ Copyright (c) 2014-2026 James Onnen (Quenty)
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/valueobject",
3
- "version": "13.22.0",
3
+ "version": "13.22.1",
4
4
  "description": "To work like value objects in Roblox and track a single item with .Changed events",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -37,5 +37,5 @@
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "22144a14aa443a177ff307edd3813a838f8c1d5f"
40
+ "gitHead": "5232cd2c58ca0dcdf591dd8ae78995211da2f3e2"
41
41
  }
@@ -113,9 +113,9 @@ function ValueObject.isValueObject(value: any): boolean
113
113
  return DuckTypeUtils.isImplementation(ValueObject, value)
114
114
  end
115
115
 
116
- function ValueObject._toMountableObservable<T>(_self: ValueObject<T>, value: Mountable<T>)
116
+ function ValueObject._toMountableObservable<T>(_self: ValueObject<T>, value: Mountable<T>): Observable.Observable<T>?
117
117
  if Observable.isObservable(value) then
118
- return value
118
+ return value :: any
119
119
  elseif typeof(value) == "Instance" then
120
120
  -- IntValue, ObjectValue, et cetera
121
121
  if ValueBaseUtils.isValueBase(value) then