@twin.org/messaging-service 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.
@@ -41,7 +41,7 @@ __decorate([
41
41
  __metadata("design:type", String)
42
42
  ], exports.TemplateEntry.prototype, "content", void 0);
43
43
  __decorate([
44
- entity.property({ type: "integer" }),
44
+ entity.property({ type: "integer", format: "uint64", sortDirection: entity.SortDirection.Descending }),
45
45
  __metadata("design:type", Number)
46
46
  ], exports.TemplateEntry.prototype, "ts", void 0);
47
47
  exports.TemplateEntry = __decorate([
@@ -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, GeneralError, Guards } from '@twin.org/core';
3
3
  import { EntityStorageConnectorFactory } from '@twin.org/entity-storage-models';
4
4
  import { MessagingEmailConnectorFactory, MessagingPushNotificationsConnectorFactory, MessagingSmsConnectorFactory } from '@twin.org/messaging-models';
@@ -39,7 +39,7 @@ __decorate([
39
39
  __metadata("design:type", String)
40
40
  ], TemplateEntry.prototype, "content", void 0);
41
41
  __decorate([
42
- property({ type: "integer" }),
42
+ property({ type: "integer", format: "uint64", sortDirection: SortDirection.Descending }),
43
43
  __metadata("design:type", Number)
44
44
  ], TemplateEntry.prototype, "ts", void 0);
45
45
  TemplateEntry = __decorate([
package/docs/changelog.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @twin.org/messaging-service - Changelog
2
2
 
3
- ## v0.0.1-next.11
3
+ ## [0.0.1-next.13](https://github.com/twinfoundation/messaging/compare/messaging-service-v0.0.1-next.12...messaging-service-v0.0.1-next.13) (2025-03-28)
4
+
5
+
6
+ ### Features
7
+
8
+ * Messaging services ([#3](https://github.com/twinfoundation/messaging/issues/3)) ([32571b5](https://github.com/twinfoundation/messaging/commit/32571b5abf5d3fc3b168074c23507e926c5d00b0))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Adding format to the MessagingEntries ts number ([8b99d4f](https://github.com/twinfoundation/messaging/commit/8b99d4f01c4f2b08da8d2affc1b9554fcb0d3690))
14
+
15
+
16
+ ### Dependencies
17
+
18
+ * The following workspace dependencies were updated
19
+ * dependencies
20
+ * @twin.org/messaging-models bumped from 0.0.1-next.12 to 0.0.1-next.13
21
+
22
+ ## v0.0.1-next.12
4
23
 
5
24
  - Initial Release
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/messaging-service",
3
- "version": "0.0.1-next.11",
3
+ "version": "0.0.1-next.13",
4
4
  "description": "Messaging service implementation",
5
5
  "repository": {
6
6
  "type": "git",
@@ -16,9 +16,9 @@
16
16
  "dependencies": {
17
17
  "@twin.org/core": "next",
18
18
  "@twin.org/entity": "next",
19
- "@twin.org/entity-storage-models": "^0.0.1-next.11",
19
+ "@twin.org/entity-storage-models": "^0.0.1-next.12",
20
20
  "@twin.org/logging-models": "next",
21
- "@twin.org/messaging-models": "0.0.1-next.11",
21
+ "@twin.org/messaging-models": "0.0.1-next.13",
22
22
  "@twin.org/nameof": "next"
23
23
  },
24
24
  "main": "./dist/cjs/index.cjs",