@quenty/chatproviderservice 9.33.4-canary.7b02662.0 → 9.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
- ## [9.33.4-canary.7b02662.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/chatproviderservice@9.33.3...@quenty/chatproviderservice@9.33.4-canary.7b02662.0) (2025-12-13)
6
+ ## [9.33.4](https://github.com/Quenty/NevermoreEngine/compare/@quenty/chatproviderservice@9.33.3...@quenty/chatproviderservice@9.33.4) (2025-12-28)
7
7
 
8
8
  **Note:** Version bump only for package @quenty/chatproviderservice
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/chatproviderservice",
3
- "version": "9.33.4-canary.7b02662.0",
3
+ "version": "9.33.4",
4
4
  "description": "Provide wrapper around chat system to allow tags to be set",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,35 +25,35 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/attributeutils": "14.20.1",
29
- "@quenty/baseobject": "10.9.0",
30
- "@quenty/binder": "14.25.2",
31
- "@quenty/brio": "14.20.1",
32
- "@quenty/clienttranslator": "14.23.2",
33
- "@quenty/cmdrservice": "13.29.4-canary.7b02662.0",
34
- "@quenty/color3utils": "11.22.2",
35
- "@quenty/datastore": "13.25.2",
36
- "@quenty/instanceutils": "13.20.2",
37
- "@quenty/loader": "10.9.0",
38
- "@quenty/localizedtextutils": "12.20.1",
39
- "@quenty/maid": "3.5.0",
40
- "@quenty/permissionprovider": "14.24.4-canary.7b02662.0",
41
- "@quenty/playerbinder": "14.25.2",
42
- "@quenty/playerutils": "8.21.4-canary.7b02662.0",
43
- "@quenty/preferredparentutils": "4.4.0",
44
- "@quenty/promise": "10.12.0",
45
- "@quenty/remoting": "12.21.2",
46
- "@quenty/richtext": "1.4.0",
47
- "@quenty/rx": "13.20.0",
48
- "@quenty/rxbinderutils": "14.25.2",
49
- "@quenty/servicebag": "11.13.1",
50
- "@quenty/signal": "7.11.1",
51
- "@quenty/string": "3.3.3",
52
- "@quenty/table": "3.8.0",
53
- "@quenty/valueobject": "13.21.2"
28
+ "@quenty/attributeutils": "^14.20.2",
29
+ "@quenty/baseobject": "^10.9.0",
30
+ "@quenty/binder": "^14.25.3",
31
+ "@quenty/brio": "^14.20.1",
32
+ "@quenty/clienttranslator": "^14.23.3",
33
+ "@quenty/cmdrservice": "^13.29.4",
34
+ "@quenty/color3utils": "^11.22.3",
35
+ "@quenty/datastore": "^13.25.3",
36
+ "@quenty/instanceutils": "^13.20.2",
37
+ "@quenty/loader": "^10.9.0",
38
+ "@quenty/localizedtextutils": "^12.20.2",
39
+ "@quenty/maid": "^3.5.0",
40
+ "@quenty/permissionprovider": "^14.24.4",
41
+ "@quenty/playerbinder": "^14.25.3",
42
+ "@quenty/playerutils": "^8.21.3",
43
+ "@quenty/preferredparentutils": "^4.4.0",
44
+ "@quenty/promise": "^10.12.0",
45
+ "@quenty/remoting": "^12.21.2",
46
+ "@quenty/richtext": "^1.4.0",
47
+ "@quenty/rx": "^13.20.0",
48
+ "@quenty/rxbinderutils": "^14.25.3",
49
+ "@quenty/servicebag": "^11.13.2",
50
+ "@quenty/signal": "^7.11.1",
51
+ "@quenty/string": "^3.3.3",
52
+ "@quenty/table": "^3.8.0",
53
+ "@quenty/valueobject": "^13.21.3"
54
54
  },
55
55
  "publishConfig": {
56
56
  "access": "public"
57
57
  },
58
- "gitHead": "7b02662beb4f525456f6e2ee3d13e0b8613939b1"
58
+ "gitHead": "821c9336020dfbcf5cd2f67f2dfe61624233ee06"
59
59
  }
@@ -13,12 +13,14 @@ local ChatTagClient = setmetatable({}, ChatTagBase)
13
13
  ChatTagClient.ClassName = "ChatTagClient"
14
14
  ChatTagClient.__index = ChatTagClient
15
15
 
16
- export type ChatTagClient = typeof(setmetatable(
17
- {} :: {
18
- _serviceBag: ServiceBag.ServiceBag,
19
- },
20
- {} :: typeof({ __index = ChatTagClient })
21
- )) & ChatTagBase.ChatTagBase
16
+ export type ChatTagClient =
17
+ typeof(setmetatable(
18
+ {} :: {
19
+ _serviceBag: ServiceBag.ServiceBag,
20
+ },
21
+ {} :: typeof({ __index = ChatTagClient })
22
+ ))
23
+ & ChatTagBase.ChatTagBase
22
24
 
23
25
  function ChatTagClient.new(folder: Folder, serviceBag: ServiceBag.ServiceBag): ChatTagClient
24
26
  local self: ChatTagClient = setmetatable(ChatTagBase.new(folder) :: any, ChatTagClient)
@@ -18,13 +18,15 @@ local HasChatTags = setmetatable({}, HasChatTagsBase)
18
18
  HasChatTags.ClassName = "HasChatTags"
19
19
  HasChatTags.__index = HasChatTags
20
20
 
21
- export type HasChatTags = typeof(setmetatable(
22
- {} :: {
23
- _chatTagsContainer: Folder,
24
- _chatTagBinder: any,
25
- },
26
- {} :: typeof({ __index = HasChatTags })
27
- )) & HasChatTagsBase.HasChatTagsBase
21
+ export type HasChatTags =
22
+ typeof(setmetatable(
23
+ {} :: {
24
+ _chatTagsContainer: Folder,
25
+ _chatTagBinder: any,
26
+ },
27
+ {} :: typeof({ __index = HasChatTags })
28
+ ))
29
+ & HasChatTagsBase.HasChatTagsBase
28
30
 
29
31
  function HasChatTags.new(player: Player, serviceBag: ServiceBag.ServiceBag): HasChatTags
30
32
  local self: HasChatTags = setmetatable(HasChatTagsBase.new(player) :: any, HasChatTags)
@@ -17,20 +17,22 @@ local ChatTagBase = setmetatable({}, BaseObject)
17
17
  ChatTagBase.ClassName = "ChatTagBase"
18
18
  ChatTagBase.__index = ChatTagBase
19
19
 
20
- export type ChatTagBase = typeof(setmetatable(
21
- {} :: {
22
- _obj: Folder,
23
- _chatTagText: AttributeValue.AttributeValue<string>,
24
- _chatTagLocalizedTextData: AttributeValue.AttributeValue<LocalizedTextUtils.LocalizedTextData?>,
25
- _chatTagColor: AttributeValue.AttributeValue<Color3>,
26
- _chatTagPriority: AttributeValue.AttributeValue<number>,
20
+ export type ChatTagBase =
21
+ typeof(setmetatable(
22
+ {} :: {
23
+ _obj: Folder,
24
+ _chatTagText: AttributeValue.AttributeValue<string>,
25
+ _chatTagLocalizedTextData: AttributeValue.AttributeValue<LocalizedTextUtils.LocalizedTextData?>,
26
+ _chatTagColor: AttributeValue.AttributeValue<Color3>,
27
+ _chatTagPriority: AttributeValue.AttributeValue<number>,
27
28
 
28
- -- Public
29
- UserDisabled: AttributeValue.AttributeValue<boolean>,
30
- ChatTagKey: AttributeValue.AttributeValue<boolean>,
31
- },
32
- {} :: typeof({ __index = ChatTagBase })
33
- )) & BaseObject.BaseObject
29
+ -- Public
30
+ UserDisabled: AttributeValue.AttributeValue<boolean>,
31
+ ChatTagKey: AttributeValue.AttributeValue<boolean>,
32
+ },
33
+ {} :: typeof({ __index = ChatTagBase })
34
+ ))
35
+ & BaseObject.BaseObject
34
36
 
35
37
  function ChatTagBase.new(obj: Folder): ChatTagBase
36
38
  local self: ChatTagBase = setmetatable(BaseObject.new(obj) :: any, ChatTagBase)
@@ -19,13 +19,15 @@ local HasChatTagsBase = setmetatable({}, BaseObject)
19
19
  HasChatTagsBase.ClassName = "HasChatTagsBase"
20
20
  HasChatTagsBase.__index = HasChatTagsBase
21
21
 
22
- export type HasChatTagsBase = typeof(setmetatable(
23
- {} :: {
24
- _obj: Player,
25
- _lastChatTags: ValueObject.ValueObject<{ ChatTagDataUtils.ChatTagData }?>,
26
- },
27
- {} :: typeof({ __index = HasChatTagsBase })
28
- )) & BaseObject.BaseObject
22
+ export type HasChatTagsBase =
23
+ typeof(setmetatable(
24
+ {} :: {
25
+ _obj: Player,
26
+ _lastChatTags: ValueObject.ValueObject<{ ChatTagDataUtils.ChatTagData }?>,
27
+ },
28
+ {} :: typeof({ __index = HasChatTagsBase })
29
+ ))
30
+ & BaseObject.BaseObject
29
31
 
30
32
  function HasChatTagsBase.new(player: Player): HasChatTagsBase
31
33
  local self: HasChatTagsBase = setmetatable(BaseObject.new(player) :: any, HasChatTagsBase)