@twin.org/messaging-service 0.0.1-next.4 → 0.0.1-next.5

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.
@@ -54,6 +54,10 @@ TemplateEntry = __decorate([
54
54
  * Service for performing email messaging operations to a connector.
55
55
  */
56
56
  class MessagingService {
57
+ /**
58
+ * The namespace for the service.
59
+ */
60
+ static NAMESPACE = "messaging";
57
61
  /**
58
62
  * Runtime name for the class.
59
63
  */
@@ -52,6 +52,10 @@ TemplateEntry = __decorate([
52
52
  * Service for performing email messaging operations to a connector.
53
53
  */
54
54
  class MessagingService {
55
+ /**
56
+ * The namespace for the service.
57
+ */
58
+ static NAMESPACE = "messaging";
55
59
  /**
56
60
  * Runtime name for the class.
57
61
  */
@@ -3,6 +3,10 @@ import { type IMessagingComponent } from "@twin.org/messaging-models";
3
3
  * Service for performing email messaging operations to a connector.
4
4
  */
5
5
  export declare class MessagingService implements IMessagingComponent {
6
+ /**
7
+ * The namespace for the service.
8
+ */
9
+ static readonly NAMESPACE: string;
6
10
  /**
7
11
  * Runtime name for the class.
8
12
  */
package/docs/changelog.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # @twin.org/messaging-service - Changelog
2
2
 
3
- ## v0.0.1-next.4
3
+ ## v0.0.1-next.5
4
4
 
5
5
  - Initial Release
@@ -42,6 +42,14 @@ The type of the entity connector to use, defaults to "messaging-templates".
42
42
 
43
43
  ## Properties
44
44
 
45
+ ### NAMESPACE
46
+
47
+ > `readonly` `static` **NAMESPACE**: `string` = `"messaging"`
48
+
49
+ The namespace for the service.
50
+
51
+ ***
52
+
45
53
  ### CLASS\_NAME
46
54
 
47
55
  > `readonly` **CLASS\_NAME**: `string`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/messaging-service",
3
- "version": "0.0.1-next.4",
3
+ "version": "0.0.1-next.5",
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.4",
19
+ "@twin.org/entity-storage-models": "^0.0.1-next.5",
20
20
  "@twin.org/logging-models": "next",
21
- "@twin.org/messaging-models": "0.0.1-next.4",
21
+ "@twin.org/messaging-models": "0.0.1-next.5",
22
22
  "@twin.org/nameof": "next"
23
23
  },
24
24
  "main": "./dist/cjs/index.cjs",