@quenty/tie 10.26.2 → 10.26.3-canary.607f741.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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
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
+ ## [10.26.3-canary.607f741.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@10.26.2...@quenty/tie@10.26.3-canary.607f741.0) (2025-12-28)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Typecheck some more things ([41eaaa6](https://github.com/Quenty/NevermoreEngine/commit/41eaaa6d053c469f7548810da72d05dfbf997b26))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [10.26.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@10.26.1...@quenty/tie@10.26.2) (2025-12-13)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/tie",
3
- "version": "10.26.2",
3
+ "version": "10.26.3-canary.607f741.0",
4
4
  "description": "Tie allows interfaces to be defined between Lua OOP and Roblox objects.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -28,29 +28,29 @@
28
28
  "Quenty"
29
29
  ],
30
30
  "dependencies": {
31
- "@quenty/attributeutils": "^14.20.1",
32
- "@quenty/baseobject": "^10.9.0",
33
- "@quenty/brio": "^14.20.1",
34
- "@quenty/collectionserviceutils": "^8.21.1",
35
- "@quenty/instanceutils": "^13.20.2",
36
- "@quenty/loader": "^10.9.0",
37
- "@quenty/maid": "^3.5.0",
38
- "@quenty/rx": "^13.20.0",
39
- "@quenty/rxsignal": "^7.20.0",
40
- "@quenty/statestack": "^14.22.2",
41
- "@quenty/string": "^3.3.3",
42
- "@quenty/symbol": "^3.5.0",
43
- "@quenty/table": "^3.8.0",
44
- "@quenty/tuple": "^1.6.0",
45
- "@quenty/valuebaseutils": "^13.20.2",
46
- "@quenty/valueobject": "^13.21.2"
31
+ "@quenty/attributeutils": "14.20.2-canary.607f741.0",
32
+ "@quenty/baseobject": "10.9.0",
33
+ "@quenty/brio": "14.20.1",
34
+ "@quenty/collectionserviceutils": "8.21.1",
35
+ "@quenty/instanceutils": "13.20.2",
36
+ "@quenty/loader": "10.9.0",
37
+ "@quenty/maid": "3.5.0",
38
+ "@quenty/rx": "13.20.0",
39
+ "@quenty/rxsignal": "7.20.0",
40
+ "@quenty/statestack": "14.22.3-canary.607f741.0",
41
+ "@quenty/string": "3.3.3",
42
+ "@quenty/symbol": "3.5.0",
43
+ "@quenty/table": "3.8.0",
44
+ "@quenty/tuple": "1.6.0",
45
+ "@quenty/valuebaseutils": "13.20.3-canary.607f741.0",
46
+ "@quenty/valueobject": "13.21.3-canary.607f741.0"
47
47
  },
48
48
  "devDependencies": {
49
- "@quenty/promise": "^10.12.0",
50
- "@quenty/signal": "^7.11.1"
49
+ "@quenty/promise": "10.12.0",
50
+ "@quenty/signal": "7.11.1"
51
51
  },
52
52
  "publishConfig": {
53
53
  "access": "public"
54
54
  },
55
- "gitHead": "08c1d0559af2bbcece6d586897c91a630dfb3f51"
55
+ "gitHead": "607f7418f46b85cd5843f1c5665911eb2dd7e3fb"
56
56
  }
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  @class TieMethodDefinition
3
4
  ]=]
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  @class TieMethodImplementation
3
4
  ]=]
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  @class TieMethodInterfaceUtils
3
4
  ]=]
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Constructs a new interface declaration which allows for interface usage
3
4
  between both Roblox API users and OOP users, as well as without accessing a
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  This class represents the implementation for a given definition. For the lifetime
3
4
  of the class, this implementation will be exposed to consumption by both someone
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Tie interfaces can be retrieved from an implementation and allow access to a specific call into the interface
3
4
 
@@ -100,7 +101,7 @@ end
100
101
  function TieInterface:__index(index)
101
102
  local interfaceTieRealm = rawget(self, "_interfaceTieRealm")
102
103
 
103
- local member = rawget(self, "_memberDefinitionMap")[index]
104
+ local member = (rawget(self, "_memberDefinitionMap") :: any)[index]
104
105
  local definition = rawget(self, "_definition")
105
106
  local adornee = rawget(self, "_adornee")
106
107
  local implParent = rawget(self, "_implParent")
@@ -1,3 +1,4 @@
1
+ --!strict
1
2
  --[=[
2
3
  @class TieUtils
3
4
  ]=]