@twin.org/messaging-connector-entity-storage 0.0.1-next.12 → 0.0.1-next.14
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/docs/changelog.md +34 -0
- package/docs/reference/classes/EmailEntry.md +3 -3
- package/docs/reference/classes/EntityStorageMessagingEmailConnector.md +3 -3
- package/docs/reference/classes/EntityStorageMessagingPushNotificationConnector.md +3 -3
- package/docs/reference/classes/EntityStorageMessagingSmsConnector.md +3 -3
- package/docs/reference/classes/PushNotificationDeviceEntry.md +3 -3
- package/docs/reference/classes/PushNotificationMessageEntry.md +3 -3
- package/docs/reference/classes/SmsEntry.md +3 -3
- package/docs/reference/functions/initSchema.md +1 -1
- package/package.json +2 -2
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @twin.org/messaging-connector-entity-storage - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.14](https://github.com/twinfoundation/messaging/compare/messaging-connector-entity-storage-v0.0.1-next.13...messaging-connector-entity-storage-v0.0.1-next.14) (2025-04-17)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* use shared store mechanism ([#8](https://github.com/twinfoundation/messaging/issues/8)) ([9ad65c2](https://github.com/twinfoundation/messaging/commit/9ad65c239ba77bb75604a1f6e51b975357f3228d))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/messaging-models bumped from 0.0.1-next.13 to 0.0.1-next.14
|
|
16
|
+
|
|
17
|
+
## [0.0.1-next.13](https://github.com/twinfoundation/messaging/compare/messaging-connector-entity-storage-v0.0.1-next.12...messaging-connector-entity-storage-v0.0.1-next.13) (2025-03-28)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* Entity Storage email connector init ([#2](https://github.com/twinfoundation/messaging/issues/2)) ([65b344d](https://github.com/twinfoundation/messaging/commit/65b344de0d2d3d557d921e3d32e263dcb04ee9b3))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* Adding format to the MessagingEntries ts number ([8b99d4f](https://github.com/twinfoundation/messaging/commit/8b99d4f01c4f2b08da8d2affc1b9554fcb0d3690))
|
|
28
|
+
* Make SMS entry error property optional ([#5](https://github.com/twinfoundation/messaging/issues/5)) ([e0faf83](https://github.com/twinfoundation/messaging/commit/e0faf83e028a2c5dc45a5e8ba1a546013e4a3c8c))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Dependencies
|
|
32
|
+
|
|
33
|
+
* The following workspace dependencies were updated
|
|
34
|
+
* dependencies
|
|
35
|
+
* @twin.org/messaging-models bumped from 0.0.1-next.12 to 0.0.1-next.13
|
|
36
|
+
|
|
3
37
|
## v0.0.1-next.12
|
|
4
38
|
|
|
5
39
|
- Initial Release
|
|
@@ -4,13 +4,13 @@ Call defining an email entry.
|
|
|
4
4
|
|
|
5
5
|
## Constructors
|
|
6
6
|
|
|
7
|
-
###
|
|
7
|
+
### Constructor
|
|
8
8
|
|
|
9
|
-
> **new EmailEntry**():
|
|
9
|
+
> **new EmailEntry**(): `EmailEntry`
|
|
10
10
|
|
|
11
11
|
#### Returns
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
`EmailEntry`
|
|
14
14
|
|
|
15
15
|
## Properties
|
|
16
16
|
|
|
@@ -8,9 +8,9 @@ Class for connecting to the email messaging operations of the Entity Storage.
|
|
|
8
8
|
|
|
9
9
|
## Constructors
|
|
10
10
|
|
|
11
|
-
###
|
|
11
|
+
### Constructor
|
|
12
12
|
|
|
13
|
-
> **new EntityStorageMessagingEmailConnector**(`options
|
|
13
|
+
> **new EntityStorageMessagingEmailConnector**(`options?`): `EntityStorageMessagingEmailConnector`
|
|
14
14
|
|
|
15
15
|
Create a new instance of EntityStorageMessagingEmailConnector.
|
|
16
16
|
|
|
@@ -24,7 +24,7 @@ The options for the connector.
|
|
|
24
24
|
|
|
25
25
|
#### Returns
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
`EntityStorageMessagingEmailConnector`
|
|
28
28
|
|
|
29
29
|
## Properties
|
|
30
30
|
|
|
@@ -8,9 +8,9 @@ Class for connecting to the push notifications messaging operations of the Entit
|
|
|
8
8
|
|
|
9
9
|
## Constructors
|
|
10
10
|
|
|
11
|
-
###
|
|
11
|
+
### Constructor
|
|
12
12
|
|
|
13
|
-
> **new EntityStorageMessagingPushNotificationConnector**(`options
|
|
13
|
+
> **new EntityStorageMessagingPushNotificationConnector**(`options?`): `EntityStorageMessagingPushNotificationConnector`
|
|
14
14
|
|
|
15
15
|
Create a new instance of EntityStorageMessagingPushNotificationConnector.
|
|
16
16
|
|
|
@@ -24,7 +24,7 @@ The options for the connector.
|
|
|
24
24
|
|
|
25
25
|
#### Returns
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
`EntityStorageMessagingPushNotificationConnector`
|
|
28
28
|
|
|
29
29
|
## Properties
|
|
30
30
|
|
|
@@ -8,9 +8,9 @@ Class for connecting to the SMS messaging operations of the Entity Storage.
|
|
|
8
8
|
|
|
9
9
|
## Constructors
|
|
10
10
|
|
|
11
|
-
###
|
|
11
|
+
### Constructor
|
|
12
12
|
|
|
13
|
-
> **new EntityStorageMessagingSmsConnector**(`options
|
|
13
|
+
> **new EntityStorageMessagingSmsConnector**(`options?`): `EntityStorageMessagingSmsConnector`
|
|
14
14
|
|
|
15
15
|
Create a new instance of EntityStorageMessagingSmsConnector.
|
|
16
16
|
|
|
@@ -24,7 +24,7 @@ The options for the connector.
|
|
|
24
24
|
|
|
25
25
|
#### Returns
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
`EntityStorageMessagingSmsConnector`
|
|
28
28
|
|
|
29
29
|
## Properties
|
|
30
30
|
|
|
@@ -4,13 +4,13 @@ Call defining an push notification device entry.
|
|
|
4
4
|
|
|
5
5
|
## Constructors
|
|
6
6
|
|
|
7
|
-
###
|
|
7
|
+
### Constructor
|
|
8
8
|
|
|
9
|
-
> **new PushNotificationDeviceEntry**():
|
|
9
|
+
> **new PushNotificationDeviceEntry**(): `PushNotificationDeviceEntry`
|
|
10
10
|
|
|
11
11
|
#### Returns
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
`PushNotificationDeviceEntry`
|
|
14
14
|
|
|
15
15
|
## Properties
|
|
16
16
|
|
|
@@ -4,13 +4,13 @@ Call defining an push notification message entry.
|
|
|
4
4
|
|
|
5
5
|
## Constructors
|
|
6
6
|
|
|
7
|
-
###
|
|
7
|
+
### Constructor
|
|
8
8
|
|
|
9
|
-
> **new PushNotificationMessageEntry**():
|
|
9
|
+
> **new PushNotificationMessageEntry**(): `PushNotificationMessageEntry`
|
|
10
10
|
|
|
11
11
|
#### Returns
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
`PushNotificationMessageEntry`
|
|
14
14
|
|
|
15
15
|
## Properties
|
|
16
16
|
|
|
@@ -4,13 +4,13 @@ Call defining an sms entry.
|
|
|
4
4
|
|
|
5
5
|
## Constructors
|
|
6
6
|
|
|
7
|
-
###
|
|
7
|
+
### Constructor
|
|
8
8
|
|
|
9
|
-
> **new SmsEntry**():
|
|
9
|
+
> **new SmsEntry**(): `SmsEntry`
|
|
10
10
|
|
|
11
11
|
#### Returns
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
`SmsEntry`
|
|
14
14
|
|
|
15
15
|
## Properties
|
|
16
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/messaging-connector-entity-storage",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.14",
|
|
4
4
|
"description": "Messaging connector implementation using the Entity Storage",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"@twin.org/core": "next",
|
|
18
18
|
"@twin.org/entity": "next",
|
|
19
19
|
"@twin.org/logging-models": "next",
|
|
20
|
-
"@twin.org/messaging-models": "0.0.1-next.
|
|
20
|
+
"@twin.org/messaging-models": "0.0.1-next.14",
|
|
21
21
|
"@twin.org/nameof": "next"
|
|
22
22
|
},
|
|
23
23
|
"main": "./dist/cjs/index.cjs",
|