@contractspec/module.notifications 1.59.0 → 1.61.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/package.json +94 -28
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/module.notifications",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.61.0",
|
|
4
4
|
"description": "Notification center module for ContractSpec applications",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contractspec",
|
|
@@ -27,28 +27,94 @@
|
|
|
27
27
|
"typecheck": "tsc --noEmit"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@contractspec/lib.schema": "1.
|
|
31
|
-
"@contractspec/lib.contracts": "1.
|
|
32
|
-
"@contractspec/lib.bus": "1.
|
|
30
|
+
"@contractspec/lib.schema": "1.61.0",
|
|
31
|
+
"@contractspec/lib.contracts": "1.61.0",
|
|
32
|
+
"@contractspec/lib.bus": "1.61.0",
|
|
33
33
|
"zod": "^4.3.5"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@contractspec/tool.typescript": "1.
|
|
36
|
+
"@contractspec/tool.typescript": "1.61.0",
|
|
37
37
|
"typescript": "^5.9.3",
|
|
38
|
-
"@contractspec/tool.bun": "1.
|
|
38
|
+
"@contractspec/tool.bun": "1.60.0"
|
|
39
39
|
},
|
|
40
40
|
"exports": {
|
|
41
|
-
".":
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
"./
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
41
|
+
".": {
|
|
42
|
+
"types": "./dist/index.d.ts",
|
|
43
|
+
"bun": "./dist/index.js",
|
|
44
|
+
"node": "./dist/node/index.js",
|
|
45
|
+
"browser": "./dist/browser/index.js",
|
|
46
|
+
"default": "./dist/index.js"
|
|
47
|
+
},
|
|
48
|
+
"./channels": {
|
|
49
|
+
"types": "./dist/channels/index.d.ts",
|
|
50
|
+
"bun": "./dist/channels/index.js",
|
|
51
|
+
"node": "./dist/node/channels/index.js",
|
|
52
|
+
"browser": "./dist/browser/channels/index.js",
|
|
53
|
+
"default": "./dist/channels/index.js"
|
|
54
|
+
},
|
|
55
|
+
"./channels/index": {
|
|
56
|
+
"types": "./dist/channels/index.d.ts",
|
|
57
|
+
"bun": "./dist/channels/index.js",
|
|
58
|
+
"node": "./dist/node/channels/index.js",
|
|
59
|
+
"browser": "./dist/browser/channels/index.js",
|
|
60
|
+
"default": "./dist/channels/index.js"
|
|
61
|
+
},
|
|
62
|
+
"./contracts": {
|
|
63
|
+
"types": "./dist/contracts/index.d.ts",
|
|
64
|
+
"bun": "./dist/contracts/index.js",
|
|
65
|
+
"node": "./dist/node/contracts/index.js",
|
|
66
|
+
"browser": "./dist/browser/contracts/index.js",
|
|
67
|
+
"default": "./dist/contracts/index.js"
|
|
68
|
+
},
|
|
69
|
+
"./contracts/index": {
|
|
70
|
+
"types": "./dist/contracts/index.d.ts",
|
|
71
|
+
"bun": "./dist/contracts/index.js",
|
|
72
|
+
"node": "./dist/node/contracts/index.js",
|
|
73
|
+
"browser": "./dist/browser/contracts/index.js",
|
|
74
|
+
"default": "./dist/contracts/index.js"
|
|
75
|
+
},
|
|
76
|
+
"./entities": {
|
|
77
|
+
"types": "./dist/entities/index.d.ts",
|
|
78
|
+
"bun": "./dist/entities/index.js",
|
|
79
|
+
"node": "./dist/node/entities/index.js",
|
|
80
|
+
"browser": "./dist/browser/entities/index.js",
|
|
81
|
+
"default": "./dist/entities/index.js"
|
|
82
|
+
},
|
|
83
|
+
"./entities/index": {
|
|
84
|
+
"types": "./dist/entities/index.d.ts",
|
|
85
|
+
"bun": "./dist/entities/index.js",
|
|
86
|
+
"node": "./dist/node/entities/index.js",
|
|
87
|
+
"browser": "./dist/browser/entities/index.js",
|
|
88
|
+
"default": "./dist/entities/index.js"
|
|
89
|
+
},
|
|
90
|
+
"./notifications.capability": {
|
|
91
|
+
"types": "./dist/notifications.capability.d.ts",
|
|
92
|
+
"bun": "./dist/notifications.capability.js",
|
|
93
|
+
"node": "./dist/node/notifications.capability.js",
|
|
94
|
+
"browser": "./dist/browser/notifications.capability.js",
|
|
95
|
+
"default": "./dist/notifications.capability.js"
|
|
96
|
+
},
|
|
97
|
+
"./notifications.feature": {
|
|
98
|
+
"types": "./dist/notifications.feature.d.ts",
|
|
99
|
+
"bun": "./dist/notifications.feature.js",
|
|
100
|
+
"node": "./dist/node/notifications.feature.js",
|
|
101
|
+
"browser": "./dist/browser/notifications.feature.js",
|
|
102
|
+
"default": "./dist/notifications.feature.js"
|
|
103
|
+
},
|
|
104
|
+
"./templates": {
|
|
105
|
+
"types": "./dist/templates/index.d.ts",
|
|
106
|
+
"bun": "./dist/templates/index.js",
|
|
107
|
+
"node": "./dist/node/templates/index.js",
|
|
108
|
+
"browser": "./dist/browser/templates/index.js",
|
|
109
|
+
"default": "./dist/templates/index.js"
|
|
110
|
+
},
|
|
111
|
+
"./templates/index": {
|
|
112
|
+
"types": "./dist/templates/index.d.ts",
|
|
113
|
+
"bun": "./dist/templates/index.js",
|
|
114
|
+
"node": "./dist/node/templates/index.js",
|
|
115
|
+
"browser": "./dist/browser/templates/index.js",
|
|
116
|
+
"default": "./dist/templates/index.js"
|
|
117
|
+
}
|
|
52
118
|
},
|
|
53
119
|
"files": [
|
|
54
120
|
"dist",
|
|
@@ -60,77 +126,77 @@
|
|
|
60
126
|
".": {
|
|
61
127
|
"types": "./dist/index.d.ts",
|
|
62
128
|
"bun": "./dist/index.js",
|
|
63
|
-
"node": "./dist/node/index.
|
|
129
|
+
"node": "./dist/node/index.js",
|
|
64
130
|
"browser": "./dist/browser/index.js",
|
|
65
131
|
"default": "./dist/index.js"
|
|
66
132
|
},
|
|
67
133
|
"./channels": {
|
|
68
134
|
"types": "./dist/channels/index.d.ts",
|
|
69
135
|
"bun": "./dist/channels/index.js",
|
|
70
|
-
"node": "./dist/node/channels/index.
|
|
136
|
+
"node": "./dist/node/channels/index.js",
|
|
71
137
|
"browser": "./dist/browser/channels/index.js",
|
|
72
138
|
"default": "./dist/channels/index.js"
|
|
73
139
|
},
|
|
74
140
|
"./channels/index": {
|
|
75
141
|
"types": "./dist/channels/index.d.ts",
|
|
76
142
|
"bun": "./dist/channels/index.js",
|
|
77
|
-
"node": "./dist/node/channels/index.
|
|
143
|
+
"node": "./dist/node/channels/index.js",
|
|
78
144
|
"browser": "./dist/browser/channels/index.js",
|
|
79
145
|
"default": "./dist/channels/index.js"
|
|
80
146
|
},
|
|
81
147
|
"./contracts": {
|
|
82
148
|
"types": "./dist/contracts/index.d.ts",
|
|
83
149
|
"bun": "./dist/contracts/index.js",
|
|
84
|
-
"node": "./dist/node/contracts/index.
|
|
150
|
+
"node": "./dist/node/contracts/index.js",
|
|
85
151
|
"browser": "./dist/browser/contracts/index.js",
|
|
86
152
|
"default": "./dist/contracts/index.js"
|
|
87
153
|
},
|
|
88
154
|
"./contracts/index": {
|
|
89
155
|
"types": "./dist/contracts/index.d.ts",
|
|
90
156
|
"bun": "./dist/contracts/index.js",
|
|
91
|
-
"node": "./dist/node/contracts/index.
|
|
157
|
+
"node": "./dist/node/contracts/index.js",
|
|
92
158
|
"browser": "./dist/browser/contracts/index.js",
|
|
93
159
|
"default": "./dist/contracts/index.js"
|
|
94
160
|
},
|
|
95
161
|
"./entities": {
|
|
96
162
|
"types": "./dist/entities/index.d.ts",
|
|
97
163
|
"bun": "./dist/entities/index.js",
|
|
98
|
-
"node": "./dist/node/entities/index.
|
|
164
|
+
"node": "./dist/node/entities/index.js",
|
|
99
165
|
"browser": "./dist/browser/entities/index.js",
|
|
100
166
|
"default": "./dist/entities/index.js"
|
|
101
167
|
},
|
|
102
168
|
"./entities/index": {
|
|
103
169
|
"types": "./dist/entities/index.d.ts",
|
|
104
170
|
"bun": "./dist/entities/index.js",
|
|
105
|
-
"node": "./dist/node/entities/index.
|
|
171
|
+
"node": "./dist/node/entities/index.js",
|
|
106
172
|
"browser": "./dist/browser/entities/index.js",
|
|
107
173
|
"default": "./dist/entities/index.js"
|
|
108
174
|
},
|
|
109
175
|
"./notifications.capability": {
|
|
110
176
|
"types": "./dist/notifications.capability.d.ts",
|
|
111
177
|
"bun": "./dist/notifications.capability.js",
|
|
112
|
-
"node": "./dist/node/notifications.capability.
|
|
178
|
+
"node": "./dist/node/notifications.capability.js",
|
|
113
179
|
"browser": "./dist/browser/notifications.capability.js",
|
|
114
180
|
"default": "./dist/notifications.capability.js"
|
|
115
181
|
},
|
|
116
182
|
"./notifications.feature": {
|
|
117
183
|
"types": "./dist/notifications.feature.d.ts",
|
|
118
184
|
"bun": "./dist/notifications.feature.js",
|
|
119
|
-
"node": "./dist/node/notifications.feature.
|
|
185
|
+
"node": "./dist/node/notifications.feature.js",
|
|
120
186
|
"browser": "./dist/browser/notifications.feature.js",
|
|
121
187
|
"default": "./dist/notifications.feature.js"
|
|
122
188
|
},
|
|
123
189
|
"./templates": {
|
|
124
190
|
"types": "./dist/templates/index.d.ts",
|
|
125
191
|
"bun": "./dist/templates/index.js",
|
|
126
|
-
"node": "./dist/node/templates/index.
|
|
192
|
+
"node": "./dist/node/templates/index.js",
|
|
127
193
|
"browser": "./dist/browser/templates/index.js",
|
|
128
194
|
"default": "./dist/templates/index.js"
|
|
129
195
|
},
|
|
130
196
|
"./templates/index": {
|
|
131
197
|
"types": "./dist/templates/index.d.ts",
|
|
132
198
|
"bun": "./dist/templates/index.js",
|
|
133
|
-
"node": "./dist/node/templates/index.
|
|
199
|
+
"node": "./dist/node/templates/index.js",
|
|
134
200
|
"browser": "./dist/browser/templates/index.js",
|
|
135
201
|
"default": "./dist/templates/index.js"
|
|
136
202
|
}
|