@quenty/gameconfig 12.33.4-canary.7b02662.0 → 12.33.4

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.7b02662.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/gameconfig@12.33.3...@quenty/gameconfig@12.33.4-canary.7b02662.0) (2025-12-13)
6
+ ## [12.33.4](https://github.com/Quenty/NevermoreEngine/compare/@quenty/gameconfig@12.33.3...@quenty/gameconfig@12.33.4) (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.7b02662.0",
3
+ "version": "12.33.4",
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.1",
31
- "@quenty/badgeutils": "10.12.0",
32
- "@quenty/baseobject": "10.9.0",
33
- "@quenty/binder": "14.25.2",
34
- "@quenty/brio": "14.20.1",
35
- "@quenty/canceltoken": "11.13.0",
36
- "@quenty/clienttranslator": "14.23.2",
37
- "@quenty/cmdrservice": "13.29.4-canary.7b02662.0",
38
- "@quenty/instanceutils": "13.20.2",
39
- "@quenty/loader": "10.9.0",
40
- "@quenty/maid": "3.5.0",
41
- "@quenty/marketplaceutils": "11.13.0",
42
- "@quenty/observablecollection": "12.24.2",
43
- "@quenty/playerutils": "8.21.4-canary.7b02662.0",
44
- "@quenty/preferredparentutils": "4.4.0",
45
- "@quenty/promise": "10.12.0",
46
- "@quenty/pseudolocalize": "3.5.0",
47
- "@quenty/remotefunctionutils": "10.12.0",
48
- "@quenty/remoting": "12.21.2",
49
- "@quenty/rx": "13.20.0",
50
- "@quenty/rxbinderutils": "14.25.2",
51
- "@quenty/servicebag": "11.13.1",
52
- "@quenty/statestack": "14.22.2",
53
- "@quenty/string": "3.3.3",
54
- "@quenty/table": "3.8.0",
55
- "@quenty/valueobject": "13.21.2"
30
+ "@quenty/attributeutils": "^14.20.2",
31
+ "@quenty/badgeutils": "^10.12.0",
32
+ "@quenty/baseobject": "^10.9.0",
33
+ "@quenty/binder": "^14.25.3",
34
+ "@quenty/brio": "^14.20.1",
35
+ "@quenty/canceltoken": "^11.13.0",
36
+ "@quenty/clienttranslator": "^14.23.3",
37
+ "@quenty/cmdrservice": "^13.29.4",
38
+ "@quenty/instanceutils": "^13.20.2",
39
+ "@quenty/loader": "^10.9.0",
40
+ "@quenty/maid": "^3.5.0",
41
+ "@quenty/marketplaceutils": "^11.13.0",
42
+ "@quenty/observablecollection": "^12.24.3",
43
+ "@quenty/playerutils": "^8.21.3",
44
+ "@quenty/preferredparentutils": "^4.4.0",
45
+ "@quenty/promise": "^10.12.0",
46
+ "@quenty/pseudolocalize": "^3.5.0",
47
+ "@quenty/remotefunctionutils": "^10.12.0",
48
+ "@quenty/remoting": "^12.21.2",
49
+ "@quenty/rx": "^13.20.0",
50
+ "@quenty/rxbinderutils": "^14.25.3",
51
+ "@quenty/servicebag": "^11.13.2",
52
+ "@quenty/statestack": "^14.22.3",
53
+ "@quenty/string": "^3.3.3",
54
+ "@quenty/table": "^3.8.0",
55
+ "@quenty/valueobject": "^13.21.3"
56
56
  },
57
- "gitHead": "7b02662beb4f525456f6e2ee3d13e0b8613939b1"
57
+ "gitHead": "821c9336020dfbcf5cd2f67f2dfe61624233ee06"
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 = typeof(setmetatable(
19
- {} :: {
20
- _serviceBag: ServiceBag.ServiceBag,
21
- _configTranslator: JSONTranslator.JSONTranslator,
22
- },
23
- GameConfigAssetClient
24
- )) & GameConfigAssetBase.GameConfigAssetBase
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 = typeof(setmetatable(
19
- {} :: {
20
- _serviceBag: ServiceBag.ServiceBag,
21
- _gameConfigBindersClient: any,
22
- },
23
- {} :: typeof({ __index = GameConfigClient })
24
- )) & GameConfigBase.GameConfigBase
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 = typeof(setmetatable(
19
- {} :: {
20
- _serviceBag: ServiceBag.ServiceBag,
21
- _translator: JSONTranslator.JSONTranslator,
22
- },
23
- {} :: typeof({ __index = GameConfigAsset })
24
- )) & GameConfigAssetBase.GameConfigAssetBase
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 = typeof(setmetatable(
21
- {} :: {
22
- _serviceBag: ServiceBag.ServiceBag,
23
- _gameConfigBindersServer: any,
24
- },
25
- {} :: typeof({ __index = GameConfig })
26
- )) & GameConfigBase.GameConfigBase
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 = 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
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 = 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,
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
- _assetTypeToAssetIdMappings: {
41
- [GameConfigAssetType]: any,
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 = typeof(setmetatable(
26
- {} :: {
27
- _serviceBag: ServiceBag.ServiceBag,
28
- },
29
- {} :: typeof({ __index = GameConfigPicker })
30
- )) & BaseObject.BaseObject
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