@twin.org/messaging-connector-entity-storage 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.
@@ -263,6 +263,10 @@ exports.SmsEntry = __decorate([
263
263
  * Class for connecting to the email messaging operations of the Entity Storage.
264
264
  */
265
265
  class EntityStorageMessagingEmailConnector {
266
+ /**
267
+ * The namespace for the connector.
268
+ */
269
+ static NAMESPACE = "entity-storage";
266
270
  /**
267
271
  * Runtime name for the class.
268
272
  */
@@ -338,6 +342,10 @@ class EntityStorageMessagingEmailConnector {
338
342
  * Class for connecting to the push notifications messaging operations of the Entity Storage.
339
343
  */
340
344
  class EntityStorageMessagingPushNotificationConnector {
345
+ /**
346
+ * The namespace for the connector.
347
+ */
348
+ static NAMESPACE = "entity-storage";
341
349
  /**
342
350
  * Runtime name for the class.
343
351
  */
@@ -446,6 +454,10 @@ class EntityStorageMessagingPushNotificationConnector {
446
454
  * Class for connecting to the SMS messaging operations of the Entity Storage.
447
455
  */
448
456
  class EntityStorageMessagingSmsConnector {
457
+ /**
458
+ * The namespace for the connector.
459
+ */
460
+ static NAMESPACE = "entity-storage";
449
461
  /**
450
462
  * Runtime name for the class.
451
463
  */
@@ -261,6 +261,10 @@ SmsEntry = __decorate([
261
261
  * Class for connecting to the email messaging operations of the Entity Storage.
262
262
  */
263
263
  class EntityStorageMessagingEmailConnector {
264
+ /**
265
+ * The namespace for the connector.
266
+ */
267
+ static NAMESPACE = "entity-storage";
264
268
  /**
265
269
  * Runtime name for the class.
266
270
  */
@@ -336,6 +340,10 @@ class EntityStorageMessagingEmailConnector {
336
340
  * Class for connecting to the push notifications messaging operations of the Entity Storage.
337
341
  */
338
342
  class EntityStorageMessagingPushNotificationConnector {
343
+ /**
344
+ * The namespace for the connector.
345
+ */
346
+ static NAMESPACE = "entity-storage";
339
347
  /**
340
348
  * Runtime name for the class.
341
349
  */
@@ -444,6 +452,10 @@ class EntityStorageMessagingPushNotificationConnector {
444
452
  * Class for connecting to the SMS messaging operations of the Entity Storage.
445
453
  */
446
454
  class EntityStorageMessagingSmsConnector {
455
+ /**
456
+ * The namespace for the connector.
457
+ */
458
+ static NAMESPACE = "entity-storage";
447
459
  /**
448
460
  * Runtime name for the class.
449
461
  */
@@ -3,6 +3,10 @@ import type { IMessagingEmailConnector } from "@twin.org/messaging-models";
3
3
  * Class for connecting to the email messaging operations of the Entity Storage.
4
4
  */
5
5
  export declare class EntityStorageMessagingEmailConnector implements IMessagingEmailConnector {
6
+ /**
7
+ * The namespace for the connector.
8
+ */
9
+ static readonly NAMESPACE: string;
6
10
  /**
7
11
  * Runtime name for the class.
8
12
  */
@@ -3,6 +3,10 @@ import type { IMessagingPushNotificationsConnector } from "@twin.org/messaging-m
3
3
  * Class for connecting to the push notifications messaging operations of the Entity Storage.
4
4
  */
5
5
  export declare class EntityStorageMessagingPushNotificationConnector implements IMessagingPushNotificationsConnector {
6
+ /**
7
+ * The namespace for the connector.
8
+ */
9
+ static readonly NAMESPACE: string;
6
10
  /**
7
11
  * Runtime name for the class.
8
12
  */
@@ -3,6 +3,10 @@ import type { IMessagingSmsConnector } from "@twin.org/messaging-models";
3
3
  * Class for connecting to the SMS messaging operations of the Entity Storage.
4
4
  */
5
5
  export declare class EntityStorageMessagingSmsConnector implements IMessagingSmsConnector {
6
+ /**
7
+ * The namespace for the connector.
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-connector-entity-storage - Changelog
2
2
 
3
- ## v0.0.1-next.4
3
+ ## v0.0.1-next.5
4
4
 
5
5
  - Initial Release
@@ -34,6 +34,14 @@ The type of entity storage connector to use for the email entries, defaults to "
34
34
 
35
35
  ## Properties
36
36
 
37
+ ### NAMESPACE
38
+
39
+ > `readonly` `static` **NAMESPACE**: `string` = `"entity-storage"`
40
+
41
+ The namespace for the connector.
42
+
43
+ ***
44
+
37
45
  ### CLASS\_NAME
38
46
 
39
47
  > `readonly` **CLASS\_NAME**: `string`
@@ -38,6 +38,14 @@ The type of entity storage connector to use for the push notifications entries,
38
38
 
39
39
  ## Properties
40
40
 
41
+ ### NAMESPACE
42
+
43
+ > `readonly` `static` **NAMESPACE**: `string` = `"entity-storage"`
44
+
45
+ The namespace for the connector.
46
+
47
+ ***
48
+
41
49
  ### CLASS\_NAME
42
50
 
43
51
  > `readonly` **CLASS\_NAME**: `string`
@@ -34,6 +34,14 @@ The type of entity storage connector to use for the sms entries, defaults to "sm
34
34
 
35
35
  ## Properties
36
36
 
37
+ ### NAMESPACE
38
+
39
+ > `readonly` `static` **NAMESPACE**: `string` = `"entity-storage"`
40
+
41
+ The namespace for the connector.
42
+
43
+ ***
44
+
37
45
  ### CLASS\_NAME
38
46
 
39
47
  > `readonly` **CLASS\_NAME**: `string`
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.4",
3
+ "version": "0.0.1-next.5",
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.4",
20
+ "@twin.org/messaging-models": "0.0.1-next.5",
21
21
  "@twin.org/nameof": "next"
22
22
  },
23
23
  "main": "./dist/cjs/index.cjs",