@twin.org/messaging-connector-entity-storage 0.0.1-next.11 → 0.0.1-next.13
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/dist/cjs/index.cjs +4 -4
- package/dist/esm/index.mjs +5 -5
- package/docs/changelog.md +21 -1
- package/package.json +2 -2
package/dist/cjs/index.cjs
CHANGED
|
@@ -55,7 +55,7 @@ __decorate([
|
|
|
55
55
|
__metadata("design:type", Array)
|
|
56
56
|
], exports.EmailEntry.prototype, "recipients", void 0);
|
|
57
57
|
__decorate([
|
|
58
|
-
entity.property({ type: "integer" }),
|
|
58
|
+
entity.property({ type: "integer", format: "uint64", sortDirection: entity.SortDirection.Descending }),
|
|
59
59
|
__metadata("design:type", Number)
|
|
60
60
|
], exports.EmailEntry.prototype, "ts", void 0);
|
|
61
61
|
__decorate([
|
|
@@ -120,7 +120,7 @@ __decorate([
|
|
|
120
120
|
__metadata("design:type", String)
|
|
121
121
|
], exports.PushNotificationDeviceEntry.prototype, "deviceToken", void 0);
|
|
122
122
|
__decorate([
|
|
123
|
-
entity.property({ type: "integer" }),
|
|
123
|
+
entity.property({ type: "integer", format: "uint64", sortDirection: entity.SortDirection.Descending }),
|
|
124
124
|
__metadata("design:type", Number)
|
|
125
125
|
], exports.PushNotificationDeviceEntry.prototype, "ts", void 0);
|
|
126
126
|
__decorate([
|
|
@@ -185,7 +185,7 @@ __decorate([
|
|
|
185
185
|
__metadata("design:type", String)
|
|
186
186
|
], exports.PushNotificationMessageEntry.prototype, "message", void 0);
|
|
187
187
|
__decorate([
|
|
188
|
-
entity.property({ type: "integer" }),
|
|
188
|
+
entity.property({ type: "integer", format: "uint64", sortDirection: entity.SortDirection.Descending }),
|
|
189
189
|
__metadata("design:type", Number)
|
|
190
190
|
], exports.PushNotificationMessageEntry.prototype, "ts", void 0);
|
|
191
191
|
__decorate([
|
|
@@ -238,7 +238,7 @@ __decorate([
|
|
|
238
238
|
__metadata("design:type", String)
|
|
239
239
|
], exports.SmsEntry.prototype, "phoneNumber", void 0);
|
|
240
240
|
__decorate([
|
|
241
|
-
entity.property({ type: "integer" }),
|
|
241
|
+
entity.property({ type: "integer", format: "uint64", sortDirection: entity.SortDirection.Descending }),
|
|
242
242
|
__metadata("design:type", Number)
|
|
243
243
|
], exports.SmsEntry.prototype, "ts", void 0);
|
|
244
244
|
__decorate([
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { property, entity, EntitySchemaFactory, EntitySchemaHelper } from '@twin.org/entity';
|
|
1
|
+
import { property, SortDirection, entity, EntitySchemaFactory, EntitySchemaHelper } from '@twin.org/entity';
|
|
2
2
|
import { Is, StringHelper, Guards, Converter, RandomHelper, GeneralError } from '@twin.org/core';
|
|
3
3
|
import { EntityStorageConnectorFactory } from '@twin.org/entity-storage-models';
|
|
4
4
|
import { LoggingConnectorFactory } from '@twin.org/logging-models';
|
|
@@ -53,7 +53,7 @@ __decorate([
|
|
|
53
53
|
__metadata("design:type", Array)
|
|
54
54
|
], EmailEntry.prototype, "recipients", void 0);
|
|
55
55
|
__decorate([
|
|
56
|
-
property({ type: "integer" }),
|
|
56
|
+
property({ type: "integer", format: "uint64", sortDirection: SortDirection.Descending }),
|
|
57
57
|
__metadata("design:type", Number)
|
|
58
58
|
], EmailEntry.prototype, "ts", void 0);
|
|
59
59
|
__decorate([
|
|
@@ -118,7 +118,7 @@ __decorate([
|
|
|
118
118
|
__metadata("design:type", String)
|
|
119
119
|
], PushNotificationDeviceEntry.prototype, "deviceToken", void 0);
|
|
120
120
|
__decorate([
|
|
121
|
-
property({ type: "integer" }),
|
|
121
|
+
property({ type: "integer", format: "uint64", sortDirection: SortDirection.Descending }),
|
|
122
122
|
__metadata("design:type", Number)
|
|
123
123
|
], PushNotificationDeviceEntry.prototype, "ts", void 0);
|
|
124
124
|
__decorate([
|
|
@@ -183,7 +183,7 @@ __decorate([
|
|
|
183
183
|
__metadata("design:type", String)
|
|
184
184
|
], PushNotificationMessageEntry.prototype, "message", void 0);
|
|
185
185
|
__decorate([
|
|
186
|
-
property({ type: "integer" }),
|
|
186
|
+
property({ type: "integer", format: "uint64", sortDirection: SortDirection.Descending }),
|
|
187
187
|
__metadata("design:type", Number)
|
|
188
188
|
], PushNotificationMessageEntry.prototype, "ts", void 0);
|
|
189
189
|
__decorate([
|
|
@@ -236,7 +236,7 @@ __decorate([
|
|
|
236
236
|
__metadata("design:type", String)
|
|
237
237
|
], SmsEntry.prototype, "phoneNumber", void 0);
|
|
238
238
|
__decorate([
|
|
239
|
-
property({ type: "integer" }),
|
|
239
|
+
property({ type: "integer", format: "uint64", sortDirection: SortDirection.Descending }),
|
|
240
240
|
__metadata("design:type", Number)
|
|
241
241
|
], SmsEntry.prototype, "ts", void 0);
|
|
242
242
|
__decorate([
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @twin.org/messaging-connector-entity-storage - Changelog
|
|
2
2
|
|
|
3
|
-
## v0.0.1-next.
|
|
3
|
+
## [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)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* Entity Storage email connector init ([#2](https://github.com/twinfoundation/messaging/issues/2)) ([65b344d](https://github.com/twinfoundation/messaging/commit/65b344de0d2d3d557d921e3d32e263dcb04ee9b3))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* Adding format to the MessagingEntries ts number ([8b99d4f](https://github.com/twinfoundation/messaging/commit/8b99d4f01c4f2b08da8d2affc1b9554fcb0d3690))
|
|
14
|
+
* Make SMS entry error property optional ([#5](https://github.com/twinfoundation/messaging/issues/5)) ([e0faf83](https://github.com/twinfoundation/messaging/commit/e0faf83e028a2c5dc45a5e8ba1a546013e4a3c8c))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Dependencies
|
|
18
|
+
|
|
19
|
+
* The following workspace dependencies were updated
|
|
20
|
+
* dependencies
|
|
21
|
+
* @twin.org/messaging-models bumped from 0.0.1-next.12 to 0.0.1-next.13
|
|
22
|
+
|
|
23
|
+
## v0.0.1-next.12
|
|
4
24
|
|
|
5
25
|
- Initial Release
|
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.13",
|
|
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.13",
|
|
21
21
|
"@twin.org/nameof": "next"
|
|
22
22
|
},
|
|
23
23
|
"main": "./dist/cjs/index.cjs",
|