@objectstack/service-messaging 8.0.1 → 9.0.0
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/index.d.cts +21 -28
- package/dist/index.d.ts +21 -28
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -1909,10 +1909,9 @@ declare const InboxMessage: Omit<{
|
|
|
1909
1909
|
} | undefined;
|
|
1910
1910
|
chart?: {
|
|
1911
1911
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
groupByField?: string | undefined;
|
|
1912
|
+
dataset: string;
|
|
1913
|
+
values: string[];
|
|
1914
|
+
dimensions?: string[] | undefined;
|
|
1916
1915
|
} | undefined;
|
|
1917
1916
|
description?: string | undefined;
|
|
1918
1917
|
sharing?: {
|
|
@@ -4815,10 +4814,9 @@ declare const NotificationReceipt: Omit<{
|
|
|
4815
4814
|
} | undefined;
|
|
4816
4815
|
chart?: {
|
|
4817
4816
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
4818
|
-
|
|
4819
|
-
|
|
4820
|
-
|
|
4821
|
-
groupByField?: string | undefined;
|
|
4817
|
+
dataset: string;
|
|
4818
|
+
values: string[];
|
|
4819
|
+
dimensions?: string[] | undefined;
|
|
4822
4820
|
} | undefined;
|
|
4823
4821
|
description?: string | undefined;
|
|
4824
4822
|
sharing?: {
|
|
@@ -7277,10 +7275,9 @@ declare const NotificationDelivery: Omit<{
|
|
|
7277
7275
|
} | undefined;
|
|
7278
7276
|
chart?: {
|
|
7279
7277
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
7280
|
-
|
|
7281
|
-
|
|
7282
|
-
|
|
7283
|
-
groupByField?: string | undefined;
|
|
7278
|
+
dataset: string;
|
|
7279
|
+
values: string[];
|
|
7280
|
+
dimensions?: string[] | undefined;
|
|
7284
7281
|
} | undefined;
|
|
7285
7282
|
description?: string | undefined;
|
|
7286
7283
|
sharing?: {
|
|
@@ -11639,10 +11636,9 @@ declare const NotificationPreference: Omit<{
|
|
|
11639
11636
|
} | undefined;
|
|
11640
11637
|
chart?: {
|
|
11641
11638
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
11642
|
-
|
|
11643
|
-
|
|
11644
|
-
|
|
11645
|
-
groupByField?: string | undefined;
|
|
11639
|
+
dataset: string;
|
|
11640
|
+
values: string[];
|
|
11641
|
+
dimensions?: string[] | undefined;
|
|
11646
11642
|
} | undefined;
|
|
11647
11643
|
description?: string | undefined;
|
|
11648
11644
|
sharing?: {
|
|
@@ -14313,10 +14309,9 @@ declare const NotificationSubscription: Omit<{
|
|
|
14313
14309
|
} | undefined;
|
|
14314
14310
|
chart?: {
|
|
14315
14311
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
14316
|
-
|
|
14317
|
-
|
|
14318
|
-
|
|
14319
|
-
groupByField?: string | undefined;
|
|
14312
|
+
dataset: string;
|
|
14313
|
+
values: string[];
|
|
14314
|
+
dimensions?: string[] | undefined;
|
|
14320
14315
|
} | undefined;
|
|
14321
14316
|
description?: string | undefined;
|
|
14322
14317
|
sharing?: {
|
|
@@ -16146,10 +16141,9 @@ declare const NotificationTemplate: Omit<{
|
|
|
16146
16141
|
} | undefined;
|
|
16147
16142
|
chart?: {
|
|
16148
16143
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
16149
|
-
|
|
16150
|
-
|
|
16151
|
-
|
|
16152
|
-
groupByField?: string | undefined;
|
|
16144
|
+
dataset: string;
|
|
16145
|
+
values: string[];
|
|
16146
|
+
dimensions?: string[] | undefined;
|
|
16153
16147
|
} | undefined;
|
|
16154
16148
|
description?: string | undefined;
|
|
16155
16149
|
sharing?: {
|
|
@@ -19247,10 +19241,9 @@ declare const HttpDelivery: Omit<{
|
|
|
19247
19241
|
} | undefined;
|
|
19248
19242
|
chart?: {
|
|
19249
19243
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
19250
|
-
|
|
19251
|
-
|
|
19252
|
-
|
|
19253
|
-
groupByField?: string | undefined;
|
|
19244
|
+
dataset: string;
|
|
19245
|
+
values: string[];
|
|
19246
|
+
dimensions?: string[] | undefined;
|
|
19254
19247
|
} | undefined;
|
|
19255
19248
|
description?: string | undefined;
|
|
19256
19249
|
sharing?: {
|
package/dist/index.d.ts
CHANGED
|
@@ -1909,10 +1909,9 @@ declare const InboxMessage: Omit<{
|
|
|
1909
1909
|
} | undefined;
|
|
1910
1910
|
chart?: {
|
|
1911
1911
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
groupByField?: string | undefined;
|
|
1912
|
+
dataset: string;
|
|
1913
|
+
values: string[];
|
|
1914
|
+
dimensions?: string[] | undefined;
|
|
1916
1915
|
} | undefined;
|
|
1917
1916
|
description?: string | undefined;
|
|
1918
1917
|
sharing?: {
|
|
@@ -4815,10 +4814,9 @@ declare const NotificationReceipt: Omit<{
|
|
|
4815
4814
|
} | undefined;
|
|
4816
4815
|
chart?: {
|
|
4817
4816
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
4818
|
-
|
|
4819
|
-
|
|
4820
|
-
|
|
4821
|
-
groupByField?: string | undefined;
|
|
4817
|
+
dataset: string;
|
|
4818
|
+
values: string[];
|
|
4819
|
+
dimensions?: string[] | undefined;
|
|
4822
4820
|
} | undefined;
|
|
4823
4821
|
description?: string | undefined;
|
|
4824
4822
|
sharing?: {
|
|
@@ -7277,10 +7275,9 @@ declare const NotificationDelivery: Omit<{
|
|
|
7277
7275
|
} | undefined;
|
|
7278
7276
|
chart?: {
|
|
7279
7277
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
7280
|
-
|
|
7281
|
-
|
|
7282
|
-
|
|
7283
|
-
groupByField?: string | undefined;
|
|
7278
|
+
dataset: string;
|
|
7279
|
+
values: string[];
|
|
7280
|
+
dimensions?: string[] | undefined;
|
|
7284
7281
|
} | undefined;
|
|
7285
7282
|
description?: string | undefined;
|
|
7286
7283
|
sharing?: {
|
|
@@ -11639,10 +11636,9 @@ declare const NotificationPreference: Omit<{
|
|
|
11639
11636
|
} | undefined;
|
|
11640
11637
|
chart?: {
|
|
11641
11638
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
11642
|
-
|
|
11643
|
-
|
|
11644
|
-
|
|
11645
|
-
groupByField?: string | undefined;
|
|
11639
|
+
dataset: string;
|
|
11640
|
+
values: string[];
|
|
11641
|
+
dimensions?: string[] | undefined;
|
|
11646
11642
|
} | undefined;
|
|
11647
11643
|
description?: string | undefined;
|
|
11648
11644
|
sharing?: {
|
|
@@ -14313,10 +14309,9 @@ declare const NotificationSubscription: Omit<{
|
|
|
14313
14309
|
} | undefined;
|
|
14314
14310
|
chart?: {
|
|
14315
14311
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
14316
|
-
|
|
14317
|
-
|
|
14318
|
-
|
|
14319
|
-
groupByField?: string | undefined;
|
|
14312
|
+
dataset: string;
|
|
14313
|
+
values: string[];
|
|
14314
|
+
dimensions?: string[] | undefined;
|
|
14320
14315
|
} | undefined;
|
|
14321
14316
|
description?: string | undefined;
|
|
14322
14317
|
sharing?: {
|
|
@@ -16146,10 +16141,9 @@ declare const NotificationTemplate: Omit<{
|
|
|
16146
16141
|
} | undefined;
|
|
16147
16142
|
chart?: {
|
|
16148
16143
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
16149
|
-
|
|
16150
|
-
|
|
16151
|
-
|
|
16152
|
-
groupByField?: string | undefined;
|
|
16144
|
+
dataset: string;
|
|
16145
|
+
values: string[];
|
|
16146
|
+
dimensions?: string[] | undefined;
|
|
16153
16147
|
} | undefined;
|
|
16154
16148
|
description?: string | undefined;
|
|
16155
16149
|
sharing?: {
|
|
@@ -19247,10 +19241,9 @@ declare const HttpDelivery: Omit<{
|
|
|
19247
19241
|
} | undefined;
|
|
19248
19242
|
chart?: {
|
|
19249
19243
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
19250
|
-
|
|
19251
|
-
|
|
19252
|
-
|
|
19253
|
-
groupByField?: string | undefined;
|
|
19244
|
+
dataset: string;
|
|
19245
|
+
values: string[];
|
|
19246
|
+
dimensions?: string[] | undefined;
|
|
19254
19247
|
} | undefined;
|
|
19255
19248
|
description?: string | undefined;
|
|
19256
19249
|
sharing?: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/service-messaging",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Messaging Service for ObjectStack — outbound notification dispatch (ADR-0012). Ships the MessagingChannel registry, emit() fan-out, and the always-on inbox channel; other channels (email/webhook/push/IM) plug in.",
|
|
6
6
|
"type": "module",
|
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@objectstack/core": "
|
|
18
|
-
"@objectstack/spec": "
|
|
17
|
+
"@objectstack/core": "9.0.0",
|
|
18
|
+
"@objectstack/spec": "9.0.0"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@types/node": "^25.9.
|
|
21
|
+
"@types/node": "^25.9.2",
|
|
22
22
|
"typescript": "^6.0.3",
|
|
23
23
|
"vitest": "^4.1.8"
|
|
24
24
|
},
|