@quenty/gameconfig 12.33.4-canary.4fabf3e.0 → 12.33.4-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 +1 -1
- package/package.json +12 -12
- package/src/Client/Config/Asset/GameConfigAssetClient.lua +9 -7
- package/src/Client/Config/Config/GameConfigClient.lua +9 -7
- package/src/Server/Config/Asset/GameConfigAsset.lua +9 -7
- package/src/Server/Config/Config/GameConfig.lua +9 -7
- package/src/Shared/Config/Asset/GameConfigAssetBase.lua +12 -10
- package/src/Shared/Config/Config/GameConfigBase.lua +19 -17
- package/src/Shared/Config/Picker/GameConfigPicker.lua +8 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
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
|
-
## [12.33.4-canary.
|
|
6
|
+
## [12.33.4-canary.607f741.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/gameconfig@12.33.3...@quenty/gameconfig@12.33.4-canary.607f741.0) (2025-12-28)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @quenty/gameconfig
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/gameconfig",
|
|
3
|
-
"version": "12.33.4-canary.
|
|
3
|
+
"version": "12.33.4-canary.607f741.0",
|
|
4
4
|
"description": "Configuration service to specify Roblox badges, products, and other specific assets.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -27,32 +27,32 @@
|
|
|
27
27
|
"access": "public"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@quenty/attributeutils": "14.20.
|
|
30
|
+
"@quenty/attributeutils": "14.20.2-canary.607f741.0",
|
|
31
31
|
"@quenty/badgeutils": "10.12.0",
|
|
32
32
|
"@quenty/baseobject": "10.9.0",
|
|
33
|
-
"@quenty/binder": "14.25.
|
|
33
|
+
"@quenty/binder": "14.25.3-canary.607f741.0",
|
|
34
34
|
"@quenty/brio": "14.20.1",
|
|
35
35
|
"@quenty/canceltoken": "11.13.0",
|
|
36
|
-
"@quenty/clienttranslator": "14.23.
|
|
37
|
-
"@quenty/cmdrservice": "13.29.4-canary.
|
|
36
|
+
"@quenty/clienttranslator": "14.23.3-canary.607f741.0",
|
|
37
|
+
"@quenty/cmdrservice": "13.29.4-canary.607f741.0",
|
|
38
38
|
"@quenty/instanceutils": "13.20.2",
|
|
39
39
|
"@quenty/loader": "10.9.0",
|
|
40
40
|
"@quenty/maid": "3.5.0",
|
|
41
41
|
"@quenty/marketplaceutils": "11.13.0",
|
|
42
|
-
"@quenty/observablecollection": "12.24.
|
|
43
|
-
"@quenty/playerutils": "8.21.
|
|
42
|
+
"@quenty/observablecollection": "12.24.3-canary.607f741.0",
|
|
43
|
+
"@quenty/playerutils": "8.21.3",
|
|
44
44
|
"@quenty/preferredparentutils": "4.4.0",
|
|
45
45
|
"@quenty/promise": "10.12.0",
|
|
46
46
|
"@quenty/pseudolocalize": "3.5.0",
|
|
47
47
|
"@quenty/remotefunctionutils": "10.12.0",
|
|
48
48
|
"@quenty/remoting": "12.21.2",
|
|
49
49
|
"@quenty/rx": "13.20.0",
|
|
50
|
-
"@quenty/rxbinderutils": "14.25.
|
|
51
|
-
"@quenty/servicebag": "11.13.
|
|
52
|
-
"@quenty/statestack": "14.22.
|
|
50
|
+
"@quenty/rxbinderutils": "14.25.3-canary.607f741.0",
|
|
51
|
+
"@quenty/servicebag": "11.13.2-canary.607f741.0",
|
|
52
|
+
"@quenty/statestack": "14.22.3-canary.607f741.0",
|
|
53
53
|
"@quenty/string": "3.3.3",
|
|
54
54
|
"@quenty/table": "3.8.0",
|
|
55
|
-
"@quenty/valueobject": "13.21.
|
|
55
|
+
"@quenty/valueobject": "13.21.3-canary.607f741.0"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "607f7418f46b85cd5843f1c5665911eb2dd7e3fb"
|
|
58
58
|
}
|
|
@@ -15,13 +15,15 @@ local GameConfigAssetClient = setmetatable({}, GameConfigAssetBase)
|
|
|
15
15
|
GameConfigAssetClient.ClassName = "GameConfigAssetClient"
|
|
16
16
|
GameConfigAssetClient.__index = GameConfigAssetClient
|
|
17
17
|
|
|
18
|
-
export type GameConfigAssetClient =
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
18
|
+
export type GameConfigAssetClient =
|
|
19
|
+
typeof(setmetatable(
|
|
20
|
+
{} :: {
|
|
21
|
+
_serviceBag: ServiceBag.ServiceBag,
|
|
22
|
+
_configTranslator: JSONTranslator.JSONTranslator,
|
|
23
|
+
},
|
|
24
|
+
GameConfigAssetClient
|
|
25
|
+
))
|
|
26
|
+
& GameConfigAssetBase.GameConfigAssetBase
|
|
25
27
|
|
|
26
28
|
--[=[
|
|
27
29
|
Constructs a new GameConfigAssetClient.
|
|
@@ -15,13 +15,15 @@ local GameConfigClient = setmetatable({}, GameConfigBase)
|
|
|
15
15
|
GameConfigClient.ClassName = "GameConfigClient"
|
|
16
16
|
GameConfigClient.__index = GameConfigClient
|
|
17
17
|
|
|
18
|
-
export type GameConfigClient =
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
18
|
+
export type GameConfigClient =
|
|
19
|
+
typeof(setmetatable(
|
|
20
|
+
{} :: {
|
|
21
|
+
_serviceBag: ServiceBag.ServiceBag,
|
|
22
|
+
_gameConfigBindersClient: any,
|
|
23
|
+
},
|
|
24
|
+
{} :: typeof({ __index = GameConfigClient })
|
|
25
|
+
))
|
|
26
|
+
& GameConfigBase.GameConfigBase
|
|
25
27
|
|
|
26
28
|
function GameConfigClient.new(folder: Folder, serviceBag: ServiceBag.ServiceBag): GameConfigClient
|
|
27
29
|
local self = setmetatable(GameConfigBase.new(folder), GameConfigClient)
|
|
@@ -15,13 +15,15 @@ local GameConfigAsset = setmetatable({}, GameConfigAssetBase)
|
|
|
15
15
|
GameConfigAsset.ClassName = "GameConfigAsset"
|
|
16
16
|
GameConfigAsset.__index = GameConfigAsset
|
|
17
17
|
|
|
18
|
-
export type GameConfigAsset =
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
18
|
+
export type GameConfigAsset =
|
|
19
|
+
typeof(setmetatable(
|
|
20
|
+
{} :: {
|
|
21
|
+
_serviceBag: ServiceBag.ServiceBag,
|
|
22
|
+
_translator: JSONTranslator.JSONTranslator,
|
|
23
|
+
},
|
|
24
|
+
{} :: typeof({ __index = GameConfigAsset })
|
|
25
|
+
))
|
|
26
|
+
& GameConfigAssetBase.GameConfigAssetBase
|
|
25
27
|
|
|
26
28
|
function GameConfigAsset.new(obj: Folder, serviceBag: ServiceBag.ServiceBag): GameConfigAsset
|
|
27
29
|
local self: GameConfigAsset = setmetatable(GameConfigAssetBase.new(obj, serviceBag) :: any, GameConfigAsset)
|
|
@@ -17,13 +17,15 @@ local GameConfig = setmetatable({}, GameConfigBase)
|
|
|
17
17
|
GameConfig.ClassName = "GameConfig"
|
|
18
18
|
GameConfig.__index = GameConfig
|
|
19
19
|
|
|
20
|
-
export type GameConfig =
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
20
|
+
export type GameConfig =
|
|
21
|
+
typeof(setmetatable(
|
|
22
|
+
{} :: {
|
|
23
|
+
_serviceBag: ServiceBag.ServiceBag,
|
|
24
|
+
_gameConfigBindersServer: any,
|
|
25
|
+
},
|
|
26
|
+
{} :: typeof({ __index = GameConfig })
|
|
27
|
+
))
|
|
28
|
+
& GameConfigBase.GameConfigBase
|
|
27
29
|
|
|
28
30
|
function GameConfig.new(obj: Instance, serviceBag: ServiceBag.ServiceBag): GameConfig
|
|
29
31
|
local self: GameConfig = setmetatable(GameConfigBase.new(obj) :: any, GameConfig)
|
|
@@ -24,16 +24,18 @@ local GameConfigAssetBase = setmetatable({}, BaseObject)
|
|
|
24
24
|
GameConfigAssetBase.ClassName = "GameConfigAssetBase"
|
|
25
25
|
GameConfigAssetBase.__index = GameConfigAssetBase
|
|
26
26
|
|
|
27
|
-
export type GameConfigAssetBase =
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
27
|
+
export type GameConfigAssetBase =
|
|
28
|
+
typeof(setmetatable(
|
|
29
|
+
{} :: {
|
|
30
|
+
_obj: Folder,
|
|
31
|
+
_serviceBag: ServiceBag.ServiceBag,
|
|
32
|
+
_nameTranslationKey: AttributeValue.AttributeValue<string>,
|
|
33
|
+
_descriptionTranslationKey: AttributeValue.AttributeValue<string>,
|
|
34
|
+
_configTranslator: JSONTranslator.JSONTranslator,
|
|
35
|
+
},
|
|
36
|
+
{} :: typeof({ __index = GameConfigAssetBase })
|
|
37
|
+
))
|
|
38
|
+
& BaseObject.BaseObject
|
|
37
39
|
|
|
38
40
|
--[=[
|
|
39
41
|
Constructs a new GameConfigAssetBase. Should be done via binder. This is a base class.
|
|
@@ -27,24 +27,26 @@ type GameConfigAssetType = GameConfigAssetTypes.GameConfigAssetType
|
|
|
27
27
|
type ObservableMapSet<K, V> = ObservableMapSet.ObservableMapSet<K, V>
|
|
28
28
|
type GameConfigAssetBase = GameConfigAssetBase.GameConfigAssetBase
|
|
29
29
|
|
|
30
|
-
export type GameConfigBase =
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
30
|
+
export type GameConfigBase =
|
|
31
|
+
typeof(setmetatable(
|
|
32
|
+
{} :: {
|
|
33
|
+
_obj: Folder,
|
|
34
|
+
_setupObservation: boolean,
|
|
35
|
+
_gameConfigBindersServer: any,
|
|
36
|
+
_gameId: AttributeValue.AttributeValue<number>,
|
|
37
|
+
_assetTypeToAssetConfig: any,
|
|
38
|
+
_assetTypeToAssetKeyMappings: {
|
|
39
|
+
[GameConfigAssetType]: any,
|
|
40
|
+
},
|
|
41
|
+
_assetTypeToAssetIdMappings: {
|
|
42
|
+
[GameConfigAssetType]: any,
|
|
43
|
+
},
|
|
44
|
+
_assetKeyToAssetConfig: any,
|
|
45
|
+
_assetIdToAssetConfig: any,
|
|
39
46
|
},
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
_assetKeyToAssetConfig: any,
|
|
44
|
-
_assetIdToAssetConfig: any,
|
|
45
|
-
},
|
|
46
|
-
{} :: typeof({ __index = GameConfigBase })
|
|
47
|
-
)) & BaseObject.BaseObject
|
|
47
|
+
{} :: typeof({ __index = GameConfigBase })
|
|
48
|
+
))
|
|
49
|
+
& BaseObject.BaseObject
|
|
48
50
|
|
|
49
51
|
--[=[
|
|
50
52
|
Constructs a new game config.
|
|
@@ -22,12 +22,14 @@ local GameConfigPicker = setmetatable({}, BaseObject)
|
|
|
22
22
|
GameConfigPicker.ClassName = "GameConfigPicker"
|
|
23
23
|
GameConfigPicker.__index = GameConfigPicker
|
|
24
24
|
|
|
25
|
-
export type GameConfigPicker =
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
25
|
+
export type GameConfigPicker =
|
|
26
|
+
typeof(setmetatable(
|
|
27
|
+
{} :: {
|
|
28
|
+
_serviceBag: ServiceBag.ServiceBag,
|
|
29
|
+
},
|
|
30
|
+
{} :: typeof({ __index = GameConfigPicker })
|
|
31
|
+
))
|
|
32
|
+
& BaseObject.BaseObject
|
|
31
33
|
type GameConfigAssetType = GameConfigAssetTypes.GameConfigAssetType
|
|
32
34
|
type GameConfigAssetBase = GameConfigAssetBase.GameConfigAssetBase
|
|
33
35
|
|