@quenty/gameconfig 12.33.4-canary.607f741.0 → 12.33.4-canary.7b02662.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,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.607f741.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/gameconfig@12.33.3...@quenty/gameconfig@12.33.4-canary.607f741.0) (2025-12-28)
6
+ ## [12.33.4-canary.7b02662.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/gameconfig@12.33.3...@quenty/gameconfig@12.33.4-canary.7b02662.0) (2025-12-13)
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.607f741.0",
3
+ "version": "12.33.4-canary.7b02662.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.2-canary.607f741.0",
30
+ "@quenty/attributeutils": "14.20.1",
31
31
  "@quenty/badgeutils": "10.12.0",
32
32
  "@quenty/baseobject": "10.9.0",
33
- "@quenty/binder": "14.25.3-canary.607f741.0",
33
+ "@quenty/binder": "14.25.2",
34
34
  "@quenty/brio": "14.20.1",
35
35
  "@quenty/canceltoken": "11.13.0",
36
- "@quenty/clienttranslator": "14.23.3-canary.607f741.0",
37
- "@quenty/cmdrservice": "13.29.4-canary.607f741.0",
36
+ "@quenty/clienttranslator": "14.23.2",
37
+ "@quenty/cmdrservice": "13.29.4-canary.7b02662.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.3-canary.607f741.0",
43
- "@quenty/playerutils": "8.21.3",
42
+ "@quenty/observablecollection": "12.24.2",
43
+ "@quenty/playerutils": "8.21.4-canary.7b02662.0",
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.3-canary.607f741.0",
51
- "@quenty/servicebag": "11.13.2-canary.607f741.0",
52
- "@quenty/statestack": "14.22.3-canary.607f741.0",
50
+ "@quenty/rxbinderutils": "14.25.2",
51
+ "@quenty/servicebag": "11.13.1",
52
+ "@quenty/statestack": "14.22.2",
53
53
  "@quenty/string": "3.3.3",
54
54
  "@quenty/table": "3.8.0",
55
- "@quenty/valueobject": "13.21.3-canary.607f741.0"
55
+ "@quenty/valueobject": "13.21.2"
56
56
  },
57
- "gitHead": "607f7418f46b85cd5843f1c5665911eb2dd7e3fb"
57
+ "gitHead": "7b02662beb4f525456f6e2ee3d13e0b8613939b1"
58
58
  }
@@ -15,15 +15,13 @@ local GameConfigAssetClient = setmetatable({}, GameConfigAssetBase)
15
15
  GameConfigAssetClient.ClassName = "GameConfigAssetClient"
16
16
  GameConfigAssetClient.__index = GameConfigAssetClient
17
17
 
18
- export type GameConfigAssetClient =
19
- typeof(setmetatable(
20
- {} :: {
21
- _serviceBag: ServiceBag.ServiceBag,
22
- _configTranslator: JSONTranslator.JSONTranslator,
23
- },
24
- GameConfigAssetClient
25
- ))
26
- & GameConfigAssetBase.GameConfigAssetBase
18
+ export type GameConfigAssetClient = typeof(setmetatable(
19
+ {} :: {
20
+ _serviceBag: ServiceBag.ServiceBag,
21
+ _configTranslator: JSONTranslator.JSONTranslator,
22
+ },
23
+ GameConfigAssetClient
24
+ )) & GameConfigAssetBase.GameConfigAssetBase
27
25
 
28
26
  --[=[
29
27
  Constructs a new GameConfigAssetClient.
@@ -15,15 +15,13 @@ local GameConfigClient = setmetatable({}, GameConfigBase)
15
15
  GameConfigClient.ClassName = "GameConfigClient"
16
16
  GameConfigClient.__index = GameConfigClient
17
17
 
18
- export type GameConfigClient =
19
- typeof(setmetatable(
20
- {} :: {
21
- _serviceBag: ServiceBag.ServiceBag,
22
- _gameConfigBindersClient: any,
23
- },
24
- {} :: typeof({ __index = GameConfigClient })
25
- ))
26
- & GameConfigBase.GameConfigBase
18
+ export type GameConfigClient = typeof(setmetatable(
19
+ {} :: {
20
+ _serviceBag: ServiceBag.ServiceBag,
21
+ _gameConfigBindersClient: any,
22
+ },
23
+ {} :: typeof({ __index = GameConfigClient })
24
+ )) & GameConfigBase.GameConfigBase
27
25
 
28
26
  function GameConfigClient.new(folder: Folder, serviceBag: ServiceBag.ServiceBag): GameConfigClient
29
27
  local self = setmetatable(GameConfigBase.new(folder), GameConfigClient)
@@ -15,15 +15,13 @@ local GameConfigAsset = setmetatable({}, GameConfigAssetBase)
15
15
  GameConfigAsset.ClassName = "GameConfigAsset"
16
16
  GameConfigAsset.__index = GameConfigAsset
17
17
 
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
18
+ export type GameConfigAsset = typeof(setmetatable(
19
+ {} :: {
20
+ _serviceBag: ServiceBag.ServiceBag,
21
+ _translator: JSONTranslator.JSONTranslator,
22
+ },
23
+ {} :: typeof({ __index = GameConfigAsset })
24
+ )) & GameConfigAssetBase.GameConfigAssetBase
27
25
 
28
26
  function GameConfigAsset.new(obj: Folder, serviceBag: ServiceBag.ServiceBag): GameConfigAsset
29
27
  local self: GameConfigAsset = setmetatable(GameConfigAssetBase.new(obj, serviceBag) :: any, GameConfigAsset)
@@ -17,15 +17,13 @@ local GameConfig = setmetatable({}, GameConfigBase)
17
17
  GameConfig.ClassName = "GameConfig"
18
18
  GameConfig.__index = GameConfig
19
19
 
20
- export type GameConfig =
21
- typeof(setmetatable(
22
- {} :: {
23
- _serviceBag: ServiceBag.ServiceBag,
24
- _gameConfigBindersServer: any,
25
- },
26
- {} :: typeof({ __index = GameConfig })
27
- ))
28
- & GameConfigBase.GameConfigBase
20
+ export type GameConfig = typeof(setmetatable(
21
+ {} :: {
22
+ _serviceBag: ServiceBag.ServiceBag,
23
+ _gameConfigBindersServer: any,
24
+ },
25
+ {} :: typeof({ __index = GameConfig })
26
+ )) & GameConfigBase.GameConfigBase
29
27
 
30
28
  function GameConfig.new(obj: Instance, serviceBag: ServiceBag.ServiceBag): GameConfig
31
29
  local self: GameConfig = setmetatable(GameConfigBase.new(obj) :: any, GameConfig)
@@ -24,18 +24,16 @@ local GameConfigAssetBase = setmetatable({}, BaseObject)
24
24
  GameConfigAssetBase.ClassName = "GameConfigAssetBase"
25
25
  GameConfigAssetBase.__index = GameConfigAssetBase
26
26
 
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
27
+ export type GameConfigAssetBase = typeof(setmetatable(
28
+ {} :: {
29
+ _obj: Folder,
30
+ _serviceBag: ServiceBag.ServiceBag,
31
+ _nameTranslationKey: AttributeValue.AttributeValue<string>,
32
+ _descriptionTranslationKey: AttributeValue.AttributeValue<string>,
33
+ _configTranslator: JSONTranslator.JSONTranslator,
34
+ },
35
+ {} :: typeof({ __index = GameConfigAssetBase })
36
+ )) & BaseObject.BaseObject
39
37
 
40
38
  --[=[
41
39
  Constructs a new GameConfigAssetBase. Should be done via binder. This is a base class.
@@ -27,26 +27,24 @@ 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
- 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,
30
+ export type GameConfigBase = typeof(setmetatable(
31
+ {} :: {
32
+ _obj: Folder,
33
+ _setupObservation: boolean,
34
+ _gameConfigBindersServer: any,
35
+ _gameId: AttributeValue.AttributeValue<number>,
36
+ _assetTypeToAssetConfig: any,
37
+ _assetTypeToAssetKeyMappings: {
38
+ [GameConfigAssetType]: any,
46
39
  },
47
- {} :: typeof({ __index = GameConfigBase })
48
- ))
49
- & BaseObject.BaseObject
40
+ _assetTypeToAssetIdMappings: {
41
+ [GameConfigAssetType]: any,
42
+ },
43
+ _assetKeyToAssetConfig: any,
44
+ _assetIdToAssetConfig: any,
45
+ },
46
+ {} :: typeof({ __index = GameConfigBase })
47
+ )) & BaseObject.BaseObject
50
48
 
51
49
  --[=[
52
50
  Constructs a new game config.
@@ -22,14 +22,12 @@ local GameConfigPicker = setmetatable({}, BaseObject)
22
22
  GameConfigPicker.ClassName = "GameConfigPicker"
23
23
  GameConfigPicker.__index = GameConfigPicker
24
24
 
25
- export type GameConfigPicker =
26
- typeof(setmetatable(
27
- {} :: {
28
- _serviceBag: ServiceBag.ServiceBag,
29
- },
30
- {} :: typeof({ __index = GameConfigPicker })
31
- ))
32
- & BaseObject.BaseObject
25
+ export type GameConfigPicker = typeof(setmetatable(
26
+ {} :: {
27
+ _serviceBag: ServiceBag.ServiceBag,
28
+ },
29
+ {} :: typeof({ __index = GameConfigPicker })
30
+ )) & BaseObject.BaseObject
33
31
  type GameConfigAssetType = GameConfigAssetTypes.GameConfigAssetType
34
32
  type GameConfigAssetBase = GameConfigAssetBase.GameConfigAssetBase
35
33