@genesislcap/foundation-comms 14.179.0 → 14.180.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +23 -13
- package/package.json +12 -12
package/README.md
CHANGED
@@ -1,33 +1,43 @@
|
|
1
1
|
# Genesis Foundation Comms
|
2
2
|
|
3
|
-
|
4
|
-
[![TypeScript](https://img.shields.io/badge/%3C%2F%3E-TypeScript-%230074c1.svg)](https://www.typescriptlang.org/)
|
3
|
+
The `@genesislcap/foundation-comms` package is designed to streamline and enhance communication capabilities between web apps and Genesis servers. It provides a robust set of modules aimed at facilitating effective data exchange, authentication, and session management, among other utilities. With a focus on integration and ease of use, this library supports developers in building sophisticated, real-time communication features in their applications.
|
5
4
|
|
6
|
-
|
5
|
+
## API Documentation
|
7
6
|
|
8
|
-
|
7
|
+
For more detailed information on API and configurations, please refer to the [API documentation](docs/api/index.md) in the `docs/api` directory.
|
8
|
+
|
9
|
+
## Features
|
9
10
|
|
10
|
-
|
11
|
+
The library encompasses a broad range of features, including:
|
11
12
|
|
12
|
-
|
13
|
+
- **[Analytics Integration](src/analytics/README.md)** - Facilitates the collection and management of analytics data, enabling insights into application usage and user interactions.
|
14
|
+
- **[Authentication](src/auth/README.md)** - Provides mechanisms for user authentication and authorization, ensuring secure access control.
|
15
|
+
- **[Connection Management](src/connect/README.md)** - Offers utilities for managing connections, including real-time communications and data exchange.
|
16
|
+
- **[Credential Management](src/credentialManager/README.md)** - Aids in the secure storage and retrieval of user credentials, enhancing security and user experience.
|
17
|
+
- **[Data Source Integration](src/datasource/README.md)** - Simplifies the integration with various data sources, ensuring efficient data retrieval and management.
|
18
|
+
- **[Metadata Management](src/metadata/README.md)** - Allows for the handling and manipulation of metadata, facilitating dynamic content generation and customization.
|
19
|
+
- **[Session Management](src/session/README.md)** - Ensures robust session management capabilities, crucial for maintaining user state and session continuity.
|
20
|
+
- **[Storage Solutions](src/storage/README.md)** - Provides versatile storage options, including both persistent (Key-Value) and session-based storage mechanisms.
|
21
|
+
- **[Testing Utilities](src/testing/README.md)** - Includes tools and utilities for testing, ensuring reliability and performance of the communication features.
|
22
|
+
- **[User Management](src/user/README.md)** - Offers comprehensive tools for managing user information, preferences, and settings.
|
23
|
+
- **[Utility Functions](src/utils/README.md)** - A collection of utility functions to aid in common tasks and streamline development processes.
|
24
|
+
|
25
|
+
## Installation
|
26
|
+
|
27
|
+
To include `@genesislcap/foundation-comms` in your project, add it as a dependency in your `package.json` file and follow your project's routine for dependency installation.
|
13
28
|
|
14
29
|
```json
|
15
30
|
{
|
16
|
-
...
|
17
31
|
"dependencies": {
|
18
|
-
...
|
19
32
|
"@genesislcap/foundation-comms": "latest"
|
20
|
-
|
21
|
-
},
|
22
|
-
...
|
33
|
+
}
|
23
34
|
}
|
24
35
|
```
|
25
36
|
|
26
|
-
## [API Docs](./docs/api/index.md)
|
27
|
-
|
28
37
|
## License
|
29
38
|
|
30
39
|
Note: this project provides front-end dependencies and uses licensed components listed in the next section; thus, licenses for those components are required during development. Contact [Genesis Global](https://genesis.global/contact-us/) for more details.
|
31
40
|
|
32
41
|
### Licensed components
|
42
|
+
|
33
43
|
Genesis low-code platform
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@genesislcap/foundation-comms",
|
3
3
|
"description": "Genesis Foundation UI Comms",
|
4
|
-
"version": "14.
|
4
|
+
"version": "14.180.0",
|
5
5
|
"sideEffects": false,
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
7
7
|
"main": "dist/esm/index.js",
|
@@ -66,22 +66,22 @@
|
|
66
66
|
"test:debug": "genx test --debug"
|
67
67
|
},
|
68
68
|
"devDependencies": {
|
69
|
-
"@genesislcap/foundation-testing": "14.
|
70
|
-
"@genesislcap/genx": "14.
|
71
|
-
"@genesislcap/rollup-builder": "14.
|
72
|
-
"@genesislcap/ts-builder": "14.
|
73
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
74
|
-
"@genesislcap/vite-builder": "14.
|
75
|
-
"@genesislcap/webpack-builder": "14.
|
69
|
+
"@genesislcap/foundation-testing": "14.180.0",
|
70
|
+
"@genesislcap/genx": "14.180.0",
|
71
|
+
"@genesislcap/rollup-builder": "14.180.0",
|
72
|
+
"@genesislcap/ts-builder": "14.180.0",
|
73
|
+
"@genesislcap/uvu-playwright-builder": "14.180.0",
|
74
|
+
"@genesislcap/vite-builder": "14.180.0",
|
75
|
+
"@genesislcap/webpack-builder": "14.180.0",
|
76
76
|
"@types/js-cookie": "^3.0.2",
|
77
77
|
"@types/json-schema": "^7.0.11",
|
78
78
|
"@types/webappsec-credential-management": "^0.6.2",
|
79
79
|
"rimraf": "^3.0.2"
|
80
80
|
},
|
81
81
|
"dependencies": {
|
82
|
-
"@genesislcap/foundation-logger": "14.
|
83
|
-
"@genesislcap/foundation-user": "14.
|
84
|
-
"@genesislcap/foundation-utils": "14.
|
82
|
+
"@genesislcap/foundation-logger": "14.180.0",
|
83
|
+
"@genesislcap/foundation-user": "14.180.0",
|
84
|
+
"@genesislcap/foundation-utils": "14.180.0",
|
85
85
|
"@microsoft/fast-element": "^1.12.0",
|
86
86
|
"@microsoft/fast-foundation": "^2.49.4",
|
87
87
|
"analytics": "^0.8.0",
|
@@ -101,5 +101,5 @@
|
|
101
101
|
"publishConfig": {
|
102
102
|
"access": "public"
|
103
103
|
},
|
104
|
-
"gitHead": "
|
104
|
+
"gitHead": "24ddbaf4c43ccfe2c323ec1178b1829451b1721a"
|
105
105
|
}
|