@quenty/chatproviderservice 9.33.4-canary.607f741.0 → 9.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
- ## [9.33.4-canary.607f741.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/chatproviderservice@9.33.3...@quenty/chatproviderservice@9.33.4-canary.607f741.0) (2025-12-28)
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)
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.607f741.0",
3
+ "version": "9.33.4-canary.7b02662.0",
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.2-canary.607f741.0",
28
+ "@quenty/attributeutils": "14.20.1",
29
29
  "@quenty/baseobject": "10.9.0",
30
- "@quenty/binder": "14.25.3-canary.607f741.0",
30
+ "@quenty/binder": "14.25.2",
31
31
  "@quenty/brio": "14.20.1",
32
- "@quenty/clienttranslator": "14.23.3-canary.607f741.0",
33
- "@quenty/cmdrservice": "13.29.4-canary.607f741.0",
34
- "@quenty/color3utils": "11.22.3-canary.607f741.0",
35
- "@quenty/datastore": "13.25.3-canary.607f741.0",
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
36
  "@quenty/instanceutils": "13.20.2",
37
37
  "@quenty/loader": "10.9.0",
38
- "@quenty/localizedtextutils": "12.20.2-canary.607f741.0",
38
+ "@quenty/localizedtextutils": "12.20.1",
39
39
  "@quenty/maid": "3.5.0",
40
- "@quenty/permissionprovider": "14.24.4-canary.607f741.0",
41
- "@quenty/playerbinder": "14.25.3-canary.607f741.0",
42
- "@quenty/playerutils": "8.21.3",
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
43
  "@quenty/preferredparentutils": "4.4.0",
44
44
  "@quenty/promise": "10.12.0",
45
45
  "@quenty/remoting": "12.21.2",
46
46
  "@quenty/richtext": "1.4.0",
47
47
  "@quenty/rx": "13.20.0",
48
- "@quenty/rxbinderutils": "14.25.3-canary.607f741.0",
49
- "@quenty/servicebag": "11.13.2-canary.607f741.0",
48
+ "@quenty/rxbinderutils": "14.25.2",
49
+ "@quenty/servicebag": "11.13.1",
50
50
  "@quenty/signal": "7.11.1",
51
51
  "@quenty/string": "3.3.3",
52
52
  "@quenty/table": "3.8.0",
53
- "@quenty/valueobject": "13.21.3-canary.607f741.0"
53
+ "@quenty/valueobject": "13.21.2"
54
54
  },
55
55
  "publishConfig": {
56
56
  "access": "public"
57
57
  },
58
- "gitHead": "607f7418f46b85cd5843f1c5665911eb2dd7e3fb"
58
+ "gitHead": "7b02662beb4f525456f6e2ee3d13e0b8613939b1"
59
59
  }
@@ -13,14 +13,12 @@ local ChatTagClient = setmetatable({}, ChatTagBase)
13
13
  ChatTagClient.ClassName = "ChatTagClient"
14
14
  ChatTagClient.__index = ChatTagClient
15
15
 
16
- export type ChatTagClient =
17
- typeof(setmetatable(
18
- {} :: {
19
- _serviceBag: ServiceBag.ServiceBag,
20
- },
21
- {} :: typeof({ __index = ChatTagClient })
22
- ))
23
- & ChatTagBase.ChatTagBase
16
+ export type ChatTagClient = typeof(setmetatable(
17
+ {} :: {
18
+ _serviceBag: ServiceBag.ServiceBag,
19
+ },
20
+ {} :: typeof({ __index = ChatTagClient })
21
+ )) & ChatTagBase.ChatTagBase
24
22
 
25
23
  function ChatTagClient.new(folder: Folder, serviceBag: ServiceBag.ServiceBag): ChatTagClient
26
24
  local self: ChatTagClient = setmetatable(ChatTagBase.new(folder) :: any, ChatTagClient)
@@ -18,15 +18,13 @@ local HasChatTags = setmetatable({}, HasChatTagsBase)
18
18
  HasChatTags.ClassName = "HasChatTags"
19
19
  HasChatTags.__index = HasChatTags
20
20
 
21
- export type HasChatTags =
22
- typeof(setmetatable(
23
- {} :: {
24
- _chatTagsContainer: Folder,
25
- _chatTagBinder: any,
26
- },
27
- {} :: typeof({ __index = HasChatTags })
28
- ))
29
- & HasChatTagsBase.HasChatTagsBase
21
+ export type HasChatTags = typeof(setmetatable(
22
+ {} :: {
23
+ _chatTagsContainer: Folder,
24
+ _chatTagBinder: any,
25
+ },
26
+ {} :: typeof({ __index = HasChatTags })
27
+ )) & HasChatTagsBase.HasChatTagsBase
30
28
 
31
29
  function HasChatTags.new(player: Player, serviceBag: ServiceBag.ServiceBag): HasChatTags
32
30
  local self: HasChatTags = setmetatable(HasChatTagsBase.new(player) :: any, HasChatTags)
@@ -17,22 +17,20 @@ local ChatTagBase = setmetatable({}, BaseObject)
17
17
  ChatTagBase.ClassName = "ChatTagBase"
18
18
  ChatTagBase.__index = ChatTagBase
19
19
 
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>,
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>,
28
27
 
29
- -- Public
30
- UserDisabled: AttributeValue.AttributeValue<boolean>,
31
- ChatTagKey: AttributeValue.AttributeValue<boolean>,
32
- },
33
- {} :: typeof({ __index = ChatTagBase })
34
- ))
35
- & BaseObject.BaseObject
28
+ -- Public
29
+ UserDisabled: AttributeValue.AttributeValue<boolean>,
30
+ ChatTagKey: AttributeValue.AttributeValue<boolean>,
31
+ },
32
+ {} :: typeof({ __index = ChatTagBase })
33
+ )) & BaseObject.BaseObject
36
34
 
37
35
  function ChatTagBase.new(obj: Folder): ChatTagBase
38
36
  local self: ChatTagBase = setmetatable(BaseObject.new(obj) :: any, ChatTagBase)
@@ -19,15 +19,13 @@ local HasChatTagsBase = setmetatable({}, BaseObject)
19
19
  HasChatTagsBase.ClassName = "HasChatTagsBase"
20
20
  HasChatTagsBase.__index = HasChatTagsBase
21
21
 
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
22
+ export type HasChatTagsBase = typeof(setmetatable(
23
+ {} :: {
24
+ _obj: Player,
25
+ _lastChatTags: ValueObject.ValueObject<{ ChatTagDataUtils.ChatTagData }?>,
26
+ },
27
+ {} :: typeof({ __index = HasChatTagsBase })
28
+ )) & BaseObject.BaseObject
31
29
 
32
30
  function HasChatTagsBase.new(player: Player): HasChatTagsBase
33
31
  local self: HasChatTagsBase = setmetatable(BaseObject.new(player) :: any, HasChatTagsBase)