@quenty/funnels 1.5.2 → 1.5.3-canary.550.afa1b3b.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,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
+ ## [1.5.3-canary.550.afa1b3b.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/funnels@1.5.2...@quenty/funnels@1.5.3-canary.550.afa1b3b.0) (2025-04-10)
7
+
8
+ **Note:** Version bump only for package @quenty/funnels
9
+
10
+
11
+
12
+
13
+
6
14
  ## [1.5.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/funnels@1.5.0...@quenty/funnels@1.5.2) (2025-04-07)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/funnels",
3
- "version": "1.5.2",
3
+ "version": "1.5.3-canary.550.afa1b3b.0",
4
4
  "description": "Funnel utility class",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,15 +25,15 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/adorneedata": "^7.18.2",
29
- "@quenty/baseobject": "^10.8.2",
30
- "@quenty/binder": "^14.19.2",
31
- "@quenty/loader": "^10.8.2",
32
- "@quenty/propertyvalue": "^7.17.2",
33
- "@quenty/servicebag": "^11.11.3"
28
+ "@quenty/adorneedata": "7.18.3-canary.550.afa1b3b.0",
29
+ "@quenty/baseobject": "10.8.3-canary.550.afa1b3b.0",
30
+ "@quenty/binder": "14.19.3-canary.550.afa1b3b.0",
31
+ "@quenty/loader": "10.8.3-canary.550.afa1b3b.0",
32
+ "@quenty/propertyvalue": "7.17.3-canary.550.afa1b3b.0",
33
+ "@quenty/servicebag": "11.11.4-canary.550.afa1b3b.0"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "64def70499ec067077ee39f279936b620b217847"
38
+ "gitHead": "afa1b3b99b862698c3ab46009497bd507150867c"
39
39
  }
@@ -24,9 +24,9 @@ export type FunnelStepLogger = typeof(setmetatable(
24
24
  _funnelName: string,
25
25
  _funnelSessionId: string,
26
26
  _printDebugEnabled: boolean,
27
- } & BaseObject.BaseObject,
28
- { __index = FunnelStepLogger }
29
- ))
27
+ },
28
+ {} :: typeof({ __index = FunnelStepLogger })
29
+ )) & BaseObject.BaseObject
30
30
 
31
31
  function FunnelStepLogger.new(player: Player, funnelName: string): FunnelStepLogger
32
32
  local self: any = setmetatable(BaseObject.new() :: any, FunnelStepLogger)
@@ -15,12 +15,11 @@ FunnelStepTracker.__index = FunnelStepTracker
15
15
 
16
16
  export type FunnelStepTracker = typeof(setmetatable(
17
17
  {} :: {
18
- _maid: _Maid.Maid,
19
18
  _stepsLogged: { [number]: string },
20
19
  StepLogged: Signal.Signal<number, string>,
21
20
  },
22
- { __index = FunnelStepTracker }
23
- ))
21
+ {} :: typeof({ __index = FunnelStepTracker })
22
+ )) & BaseObject.BaseObject
24
23
 
25
24
  --[=[
26
25
  Constructs a new FunnelStepTracker