@nu-art/ts-messaging-frontend 0.400.5 → 0.400.8
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/ModuleFE_Message.d.ts +3 -3
- package/ModuleFE_Message.js +3 -4
- package/ModuleFE_Topic.d.ts +3 -3
- package/ModuleFE_Topic.js +3 -4
- package/index.d.ts +2 -0
- package/index.js +2 -1
- package/module-pack.js +0 -1
- package/package.json +9 -6
- package/ModuleFE_Message.js.map +0 -1
- package/ModuleFE_Topic.js.map +0 -1
- package/index.js.map +0 -1
- package/module-pack.js.map +0 -1
package/ModuleFE_Message.d.ts
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
* Frontend module for handling messaging functionality in the Thunderstorm framework.
|
|
3
3
|
* Provides message creation and management capabilities.
|
|
4
4
|
*/
|
|
5
|
-
import { ModuleFE_BaseApi } from '@nu-art/thunderstorm
|
|
6
|
-
import { DispatcherDef, ThunderDispatcherV3 } from '@nu-art/thunderstorm
|
|
7
|
-
import { DBProto_Message } from '@nu-art/ts-messaging-shared
|
|
5
|
+
import { ModuleFE_BaseApi } from '@nu-art/thunderstorm-frontend/index';
|
|
6
|
+
import { DispatcherDef, ThunderDispatcherV3 } from '@nu-art/thunderstorm-frontend/core/db-api-gen/types';
|
|
7
|
+
import { DBProto_Message } from '@nu-art/ts-messaging-shared';
|
|
8
8
|
/**
|
|
9
9
|
* Type definition for the message dispatcher
|
|
10
10
|
* Handles updates to messages in the system
|
package/ModuleFE_Message.js
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
* Frontend module for handling messaging functionality in the Thunderstorm framework.
|
|
3
3
|
* Provides message creation and management capabilities.
|
|
4
4
|
*/
|
|
5
|
-
import { ModuleFE_BaseApi } from '@nu-art/thunderstorm
|
|
6
|
-
import { ThunderDispatcherV3 } from '@nu-art/thunderstorm
|
|
7
|
-
import { DBDef_message, MessageType_Text } from '@nu-art/ts-messaging-shared
|
|
5
|
+
import { ModuleFE_BaseApi } from '@nu-art/thunderstorm-frontend/index';
|
|
6
|
+
import { ThunderDispatcherV3 } from '@nu-art/thunderstorm-frontend/core/db-api-gen/types';
|
|
7
|
+
import { DBDef_message, MessageType_Text } from '@nu-art/ts-messaging-shared';
|
|
8
8
|
/**
|
|
9
9
|
* Dispatcher instance for handling message updates
|
|
10
10
|
*/
|
|
@@ -36,4 +36,3 @@ export class ModuleFE_Message_Class extends ModuleFE_BaseApi {
|
|
|
36
36
|
* Singleton instance of the frontend message module
|
|
37
37
|
*/
|
|
38
38
|
export const ModuleFE_Message = new ModuleFE_Message_Class();
|
|
39
|
-
//# sourceMappingURL=ModuleFE_Message.js.map
|
package/ModuleFE_Topic.d.ts
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
* Provides functionality for handling topic-related operations, state management,
|
|
4
4
|
* and topic filtering based on collection and reference criteria.
|
|
5
5
|
*/
|
|
6
|
-
import { DispatcherDef, ThunderDispatcherV3 } from '@nu-art/thunderstorm
|
|
7
|
-
import { ModuleFE_BaseApi } from '@nu-art/thunderstorm
|
|
8
|
-
import { DBProto_Topic, UI_Topic } from '@nu-art/ts-messaging-shared
|
|
6
|
+
import { DispatcherDef, ThunderDispatcherV3 } from '@nu-art/thunderstorm-frontend/core/db-api-gen/types';
|
|
7
|
+
import { ModuleFE_BaseApi } from '@nu-art/thunderstorm-frontend/index';
|
|
8
|
+
import { DBProto_Topic, UI_Topic } from '@nu-art/ts-messaging-shared';
|
|
9
9
|
/**
|
|
10
10
|
* Dispatcher type definition for topic updates, used to handle topic-related state changes
|
|
11
11
|
*/
|
package/ModuleFE_Topic.js
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
* Provides functionality for handling topic-related operations, state management,
|
|
4
4
|
* and topic filtering based on collection and reference criteria.
|
|
5
5
|
*/
|
|
6
|
-
import { ThunderDispatcherV3 } from '@nu-art/thunderstorm
|
|
7
|
-
import { ModuleFE_BaseApi } from '@nu-art/thunderstorm
|
|
8
|
-
import { DBDef_Topic } from '@nu-art/ts-messaging-shared
|
|
6
|
+
import { ThunderDispatcherV3 } from '@nu-art/thunderstorm-frontend/core/db-api-gen/types';
|
|
7
|
+
import { ModuleFE_BaseApi } from '@nu-art/thunderstorm-frontend/index';
|
|
8
|
+
import { DBDef_Topic } from '@nu-art/ts-messaging-shared';
|
|
9
9
|
/**
|
|
10
10
|
* Dispatcher instance for handling topic updates across the application.
|
|
11
11
|
* Used to broadcast and handle topic-related state changes throughout the application.
|
|
@@ -36,4 +36,3 @@ export class ModuleFE_topic_Class extends ModuleFE_BaseApi {
|
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
export const ModuleFE_Topic = new ModuleFE_topic_Class();
|
|
39
|
-
//# sourceMappingURL=ModuleFE_Topic.js.map
|
package/index.d.ts
CHANGED
package/index.js
CHANGED
package/module-pack.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nu-art/ts-messaging-frontend",
|
|
3
|
-
"version": "0.400.
|
|
3
|
+
"version": "0.400.8",
|
|
4
4
|
"description": "Frontend messaging module for Thunderstorm framework providing topic-based messaging system with support for text, image, and video messages",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"TacB0sS",
|
|
@@ -31,11 +31,14 @@
|
|
|
31
31
|
"build": "tsc"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@nu-art/ts-common": "0.400.
|
|
35
|
-
"@nu-art/thunderstorm": "0.400.
|
|
36
|
-
"@nu-art/
|
|
37
|
-
"@nu-art/
|
|
38
|
-
"@nu-art/
|
|
34
|
+
"@nu-art/ts-common": "0.400.8",
|
|
35
|
+
"@nu-art/thunderstorm-frontend": "0.400.8",
|
|
36
|
+
"@nu-art/thunderstorm-shared": "0.400.8",
|
|
37
|
+
"@nu-art/user-account-frontend": "0.400.8",
|
|
38
|
+
"@nu-art/user-account-shared": "0.400.8",
|
|
39
|
+
"@nu-art/permissions-frontend": "0.400.8",
|
|
40
|
+
"@nu-art/permissions-shared": "0.400.8",
|
|
41
|
+
"@nu-art/ts-messaging-shared": "0.400.8",
|
|
39
42
|
"firebase": "^11.9.0",
|
|
40
43
|
"firebase-admin": "13.4.0",
|
|
41
44
|
"firebase-functions": "6.3.2",
|
package/ModuleFE_Message.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ModuleFE_Message.js","sourceRoot":"/Users/tacb0ss/dev/nu-art/beamz/_thunderstorm/ts-messaging/frontend/src/main/","sources":["ModuleFE_Message.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAC,gBAAgB,EAAC,MAAM,qCAAqC,CAAC;AACrE,OAAO,EAAgB,mBAAmB,EAAC,MAAM,qDAAqD,CAAC;AACvG,OAAO,EAAC,aAAa,EAAmB,gBAAgB,EAAC,MAAM,mCAAmC,CAAC;AASnG;;GAEG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAG,IAAI,mBAAmB,CAAyB,qBAAqB,CAAC,CAAC;AAEjH;;;GAGG;AACH,MAAM,OAAO,sBACZ,SAAQ,gBAAiC;IAEzC;;OAEG;IACH;QACC,KAAK,CAAC,aAAa,EAAE,0BAA0B,CAAC,CAAC;IAClD,CAAC;IAED;;;;;;OAMG;IACH,KAAK,CAAC,aAAa,CAAC,OAAe,EAAE,GAAW;QAC/C,MAAM,UAAU,GAAG,EAAC,IAAI,EAAE,gBAAgB,EAAE,OAAO,EAAE,IAAI,EAAE,GAAG,EAAC,CAAC;QAChE,MAAM,IAAI,CAAC,EAAE,CAAC,MAAM,CAAC,UAA0C,CAAC,CAAC,WAAW,EAAE,CAAC;IAChF,CAAC;CACD;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG,IAAI,sBAAsB,EAAE,CAAC"}
|
package/ModuleFE_Topic.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ModuleFE_Topic.js","sourceRoot":"/Users/tacb0ss/dev/nu-art/beamz/_thunderstorm/ts-messaging/frontend/src/main/","sources":["ModuleFE_Topic.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAgB,mBAAmB,EAAC,MAAM,qDAAqD,CAAC;AACvG,OAAO,EAAC,gBAAgB,EAAC,MAAM,qCAAqC,CAAC;AACrE,OAAO,EAAC,WAAW,EAA0B,MAAM,mCAAmC,CAAC;AAQvF;;;;GAIG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAG,IAAI,mBAAmB,CAAuB,mBAAmB,CAAC,CAAC;AAE3G;;;GAGG;AACH,MAAM,OAAO,oBACZ,SAAQ,gBAA+B;IAGvC;;;;OAIG;IACH;QACC,KAAK,CAAC,WAAW,EAAE,wBAAwB,CAAC,CAAC;IAC9C,CAAC;IAED;;;;;OAKG;IACI,SAAS,CAAC,cAAsB,EAAE,KAAa;QACrD,OAAO,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,IAAI,KAAK,cAAc,IAAI,KAAK,CAAC,KAAK,KAAK,KAAK,CAAC,CAAC;IAC3F,CAAC;CAED;AAED,MAAM,CAAC,MAAM,cAAc,GAAG,IAAI,oBAAoB,EAAE,CAAC"}
|
package/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"/Users/tacb0ss/dev/nu-art/beamz/_thunderstorm/ts-messaging/frontend/src/main/","sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAA"}
|
package/module-pack.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"module-pack.js","sourceRoot":"/Users/tacb0ss/dev/nu-art/beamz/_thunderstorm/ts-messaging/frontend/src/main/","sources":["module-pack.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,gBAAgB,EAAC,MAAM,uBAAuB,CAAC;AACvD,OAAO,EAAC,cAAc,EAAC,MAAM,qBAAqB,CAAC;AAGnD,MAAM,CAAC,MAAM,sBAAsB,GAAG;IACrC,gBAAgB;IAChB,cAAc;CACd,CAAC"}
|