@quenty/funnels 1.11.2 → 1.11.3
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.11.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/funnels@1.11.2...@quenty/funnels@1.11.3) (2025-12-28)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/funnels
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [1.11.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/funnels@1.11.1...@quenty/funnels@1.11.2) (2025-11-22)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/funnels
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/funnels",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.3",
|
|
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.22.
|
|
28
|
+
"@quenty/adorneedata": "^7.22.3",
|
|
29
29
|
"@quenty/baseobject": "^10.9.0",
|
|
30
|
-
"@quenty/binder": "^14.25.
|
|
30
|
+
"@quenty/binder": "^14.25.3",
|
|
31
31
|
"@quenty/loader": "^10.9.0",
|
|
32
32
|
"@quenty/propertyvalue": "^7.20.2",
|
|
33
|
-
"@quenty/servicebag": "^11.13.
|
|
33
|
+
"@quenty/servicebag": "^11.13.2"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "821c9336020dfbcf5cd2f67f2dfe61624233ee06"
|
|
39
39
|
}
|
|
@@ -17,16 +17,18 @@ local FunnelStepLogger = setmetatable({}, BaseObject)
|
|
|
17
17
|
FunnelStepLogger.ClassName = "FunnelStepLogger"
|
|
18
18
|
FunnelStepLogger.__index = FunnelStepLogger
|
|
19
19
|
|
|
20
|
-
export type FunnelStepLogger =
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
20
|
+
export type FunnelStepLogger =
|
|
21
|
+
typeof(setmetatable(
|
|
22
|
+
{} :: {
|
|
23
|
+
_player: Player,
|
|
24
|
+
_stepTracker: FunnelStepTracker.FunnelStepTracker,
|
|
25
|
+
_funnelName: string,
|
|
26
|
+
_funnelSessionId: string,
|
|
27
|
+
_printDebugEnabled: boolean,
|
|
28
|
+
},
|
|
29
|
+
{} :: typeof({ __index = FunnelStepLogger })
|
|
30
|
+
))
|
|
31
|
+
& BaseObject.BaseObject
|
|
30
32
|
|
|
31
33
|
function FunnelStepLogger.new(player: Player, funnelName: string): FunnelStepLogger
|
|
32
34
|
local self: any = setmetatable(BaseObject.new() :: any, FunnelStepLogger)
|
|
@@ -12,13 +12,15 @@ local FunnelStepTracker = setmetatable({}, BaseObject)
|
|
|
12
12
|
FunnelStepTracker.ClassName = "FunnelStepTracker"
|
|
13
13
|
FunnelStepTracker.__index = FunnelStepTracker
|
|
14
14
|
|
|
15
|
-
export type FunnelStepTracker =
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
15
|
+
export type FunnelStepTracker =
|
|
16
|
+
typeof(setmetatable(
|
|
17
|
+
{} :: {
|
|
18
|
+
_stepsLogged: { [number]: string },
|
|
19
|
+
StepLogged: Signal.Signal<number, string>,
|
|
20
|
+
},
|
|
21
|
+
{} :: typeof({ __index = FunnelStepTracker })
|
|
22
|
+
))
|
|
23
|
+
& BaseObject.BaseObject
|
|
22
24
|
|
|
23
25
|
--[=[
|
|
24
26
|
Constructs a new FunnelStepTracker
|