@contractspec/example.saas-boilerplate 1.60.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/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +19 -0
- package/package.json +134 -134
package/.turbo/turbo-build.log
CHANGED
|
@@ -3,7 +3,7 @@ $ bun run prebuild && bun run build:bundle && bun run build:types
|
|
|
3
3
|
$ contractspec-bun-build prebuild
|
|
4
4
|
$ contractspec-bun-build transpile
|
|
5
5
|
[contractspec-bun-build] transpile target=bun root=src entries=48
|
|
6
|
-
Bundled 48 modules in
|
|
6
|
+
Bundled 48 modules in 74ms
|
|
7
7
|
|
|
8
8
|
billing/billing.entity.js 3.54 KB (entry point)
|
|
9
9
|
tests/operations.test-spec.js 2.89 KB (entry point)
|
|
@@ -55,7 +55,7 @@ Bundled 48 modules in 35ms
|
|
|
55
55
|
billing/billing.enum.js 443 bytes (entry point)
|
|
56
56
|
|
|
57
57
|
[contractspec-bun-build] transpile target=node root=src entries=48
|
|
58
|
-
Bundled 48 modules in
|
|
58
|
+
Bundled 48 modules in 58ms
|
|
59
59
|
|
|
60
60
|
billing/billing.entity.js 3.53 KB (entry point)
|
|
61
61
|
tests/operations.test-spec.js 2.89 KB (entry point)
|
|
@@ -107,7 +107,7 @@ Bundled 48 modules in 57ms
|
|
|
107
107
|
billing/billing.enum.js 435 bytes (entry point)
|
|
108
108
|
|
|
109
109
|
[contractspec-bun-build] transpile target=browser root=src entries=48
|
|
110
|
-
Bundled 48 modules in
|
|
110
|
+
Bundled 48 modules in 108ms
|
|
111
111
|
|
|
112
112
|
billing/billing.entity.js 3.53 KB (entry point)
|
|
113
113
|
tests/operations.test-spec.js 2.89 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @contractspec/example.saas-boilerplate
|
|
2
2
|
|
|
3
|
+
## 1.61.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 374fd71: fix: publishing
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [374fd71]
|
|
12
|
+
- @contractspec/lib.example-shared-ui@1.15.0
|
|
13
|
+
- @contractspec/module.notifications@1.61.0
|
|
14
|
+
- @contractspec/lib.runtime-sandbox@0.16.0
|
|
15
|
+
- @contractspec/module.audit-trail@1.61.0
|
|
16
|
+
- @contractspec/lib.design-system@1.61.0
|
|
17
|
+
- @contractspec/lib.identity-rbac@1.61.0
|
|
18
|
+
- @contractspec/lib.contracts@1.61.0
|
|
19
|
+
- @contractspec/lib.schema@1.61.0
|
|
20
|
+
- @contractspec/lib.jobs@1.61.0
|
|
21
|
+
|
|
3
22
|
## 1.60.0
|
|
4
23
|
|
|
5
24
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.saas-boilerplate",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.61.0",
|
|
4
4
|
"description": "SaaS Boilerplate - Users, Orgs, Projects, Billing, Settings",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -8,427 +8,427 @@
|
|
|
8
8
|
".": {
|
|
9
9
|
"types": "./dist/index.d.ts",
|
|
10
10
|
"bun": "./dist/index.js",
|
|
11
|
-
"node": "./dist/node/index.
|
|
11
|
+
"node": "./dist/node/index.js",
|
|
12
12
|
"browser": "./dist/browser/index.js",
|
|
13
13
|
"default": "./dist/index.js"
|
|
14
14
|
},
|
|
15
15
|
"./billing": {
|
|
16
16
|
"types": "./dist/billing/index.d.ts",
|
|
17
17
|
"bun": "./dist/billing/index.js",
|
|
18
|
-
"node": "./dist/node/billing/index.
|
|
18
|
+
"node": "./dist/node/billing/index.js",
|
|
19
19
|
"browser": "./dist/browser/billing/index.js",
|
|
20
20
|
"default": "./dist/billing/index.js"
|
|
21
21
|
},
|
|
22
22
|
"./billing/billing.entity": {
|
|
23
23
|
"types": "./dist/billing/billing.entity.d.ts",
|
|
24
24
|
"bun": "./dist/billing/billing.entity.js",
|
|
25
|
-
"node": "./dist/node/billing/billing.entity.
|
|
25
|
+
"node": "./dist/node/billing/billing.entity.js",
|
|
26
26
|
"browser": "./dist/browser/billing/billing.entity.js",
|
|
27
27
|
"default": "./dist/billing/billing.entity.js"
|
|
28
28
|
},
|
|
29
29
|
"./billing/billing.enum": {
|
|
30
30
|
"types": "./dist/billing/billing.enum.d.ts",
|
|
31
31
|
"bun": "./dist/billing/billing.enum.js",
|
|
32
|
-
"node": "./dist/node/billing/billing.enum.
|
|
32
|
+
"node": "./dist/node/billing/billing.enum.js",
|
|
33
33
|
"browser": "./dist/browser/billing/billing.enum.js",
|
|
34
34
|
"default": "./dist/billing/billing.enum.js"
|
|
35
35
|
},
|
|
36
36
|
"./billing/billing.event": {
|
|
37
37
|
"types": "./dist/billing/billing.event.d.ts",
|
|
38
38
|
"bun": "./dist/billing/billing.event.js",
|
|
39
|
-
"node": "./dist/node/billing/billing.event.
|
|
39
|
+
"node": "./dist/node/billing/billing.event.js",
|
|
40
40
|
"browser": "./dist/browser/billing/billing.event.js",
|
|
41
41
|
"default": "./dist/billing/billing.event.js"
|
|
42
42
|
},
|
|
43
43
|
"./billing/billing.handler": {
|
|
44
44
|
"types": "./dist/billing/billing.handler.d.ts",
|
|
45
45
|
"bun": "./dist/billing/billing.handler.js",
|
|
46
|
-
"node": "./dist/node/billing/billing.handler.
|
|
46
|
+
"node": "./dist/node/billing/billing.handler.js",
|
|
47
47
|
"browser": "./dist/browser/billing/billing.handler.js",
|
|
48
48
|
"default": "./dist/billing/billing.handler.js"
|
|
49
49
|
},
|
|
50
50
|
"./billing/billing.operations": {
|
|
51
51
|
"types": "./dist/billing/billing.operations.d.ts",
|
|
52
52
|
"bun": "./dist/billing/billing.operations.js",
|
|
53
|
-
"node": "./dist/node/billing/billing.operations.
|
|
53
|
+
"node": "./dist/node/billing/billing.operations.js",
|
|
54
54
|
"browser": "./dist/browser/billing/billing.operations.js",
|
|
55
55
|
"default": "./dist/billing/billing.operations.js"
|
|
56
56
|
},
|
|
57
57
|
"./billing/billing.presentation": {
|
|
58
58
|
"types": "./dist/billing/billing.presentation.d.ts",
|
|
59
59
|
"bun": "./dist/billing/billing.presentation.js",
|
|
60
|
-
"node": "./dist/node/billing/billing.presentation.
|
|
60
|
+
"node": "./dist/node/billing/billing.presentation.js",
|
|
61
61
|
"browser": "./dist/browser/billing/billing.presentation.js",
|
|
62
62
|
"default": "./dist/billing/billing.presentation.js"
|
|
63
63
|
},
|
|
64
64
|
"./billing/billing.schema": {
|
|
65
65
|
"types": "./dist/billing/billing.schema.d.ts",
|
|
66
66
|
"bun": "./dist/billing/billing.schema.js",
|
|
67
|
-
"node": "./dist/node/billing/billing.schema.
|
|
67
|
+
"node": "./dist/node/billing/billing.schema.js",
|
|
68
68
|
"browser": "./dist/browser/billing/billing.schema.js",
|
|
69
69
|
"default": "./dist/billing/billing.schema.js"
|
|
70
70
|
},
|
|
71
71
|
"./billing/index": {
|
|
72
72
|
"types": "./dist/billing/index.d.ts",
|
|
73
73
|
"bun": "./dist/billing/index.js",
|
|
74
|
-
"node": "./dist/node/billing/index.
|
|
74
|
+
"node": "./dist/node/billing/index.js",
|
|
75
75
|
"browser": "./dist/browser/billing/index.js",
|
|
76
76
|
"default": "./dist/billing/index.js"
|
|
77
77
|
},
|
|
78
78
|
"./dashboard": {
|
|
79
79
|
"types": "./dist/dashboard/index.d.ts",
|
|
80
80
|
"bun": "./dist/dashboard/index.js",
|
|
81
|
-
"node": "./dist/node/dashboard/index.
|
|
81
|
+
"node": "./dist/node/dashboard/index.js",
|
|
82
82
|
"browser": "./dist/browser/dashboard/index.js",
|
|
83
83
|
"default": "./dist/dashboard/index.js"
|
|
84
84
|
},
|
|
85
85
|
"./dashboard/dashboard.presentation": {
|
|
86
86
|
"types": "./dist/dashboard/dashboard.presentation.d.ts",
|
|
87
87
|
"bun": "./dist/dashboard/dashboard.presentation.js",
|
|
88
|
-
"node": "./dist/node/dashboard/dashboard.presentation.
|
|
88
|
+
"node": "./dist/node/dashboard/dashboard.presentation.js",
|
|
89
89
|
"browser": "./dist/browser/dashboard/dashboard.presentation.js",
|
|
90
90
|
"default": "./dist/dashboard/dashboard.presentation.js"
|
|
91
91
|
},
|
|
92
92
|
"./dashboard/index": {
|
|
93
93
|
"types": "./dist/dashboard/index.d.ts",
|
|
94
94
|
"bun": "./dist/dashboard/index.js",
|
|
95
|
-
"node": "./dist/node/dashboard/index.
|
|
95
|
+
"node": "./dist/node/dashboard/index.js",
|
|
96
96
|
"browser": "./dist/browser/dashboard/index.js",
|
|
97
97
|
"default": "./dist/dashboard/index.js"
|
|
98
98
|
},
|
|
99
99
|
"./docs": {
|
|
100
100
|
"types": "./dist/docs/index.d.ts",
|
|
101
101
|
"bun": "./dist/docs/index.js",
|
|
102
|
-
"node": "./dist/node/docs/index.
|
|
102
|
+
"node": "./dist/node/docs/index.js",
|
|
103
103
|
"browser": "./dist/browser/docs/index.js",
|
|
104
104
|
"default": "./dist/docs/index.js"
|
|
105
105
|
},
|
|
106
106
|
"./docs/index": {
|
|
107
107
|
"types": "./dist/docs/index.d.ts",
|
|
108
108
|
"bun": "./dist/docs/index.js",
|
|
109
|
-
"node": "./dist/node/docs/index.
|
|
109
|
+
"node": "./dist/node/docs/index.js",
|
|
110
110
|
"browser": "./dist/browser/docs/index.js",
|
|
111
111
|
"default": "./dist/docs/index.js"
|
|
112
112
|
},
|
|
113
113
|
"./docs/saas-boilerplate.docblock": {
|
|
114
114
|
"types": "./dist/docs/saas-boilerplate.docblock.d.ts",
|
|
115
115
|
"bun": "./dist/docs/saas-boilerplate.docblock.js",
|
|
116
|
-
"node": "./dist/node/docs/saas-boilerplate.docblock.
|
|
116
|
+
"node": "./dist/node/docs/saas-boilerplate.docblock.js",
|
|
117
117
|
"browser": "./dist/browser/docs/saas-boilerplate.docblock.js",
|
|
118
118
|
"default": "./dist/docs/saas-boilerplate.docblock.js"
|
|
119
119
|
},
|
|
120
120
|
"./example": {
|
|
121
121
|
"types": "./dist/example.d.ts",
|
|
122
122
|
"bun": "./dist/example.js",
|
|
123
|
-
"node": "./dist/node/example.
|
|
123
|
+
"node": "./dist/node/example.js",
|
|
124
124
|
"browser": "./dist/browser/example.js",
|
|
125
125
|
"default": "./dist/example.js"
|
|
126
126
|
},
|
|
127
127
|
"./handlers": {
|
|
128
128
|
"types": "./dist/handlers/index.d.ts",
|
|
129
129
|
"bun": "./dist/handlers/index.js",
|
|
130
|
-
"node": "./dist/node/handlers/index.
|
|
130
|
+
"node": "./dist/node/handlers/index.js",
|
|
131
131
|
"browser": "./dist/browser/handlers/index.js",
|
|
132
132
|
"default": "./dist/handlers/index.js"
|
|
133
133
|
},
|
|
134
134
|
"./handlers/index": {
|
|
135
135
|
"types": "./dist/handlers/index.d.ts",
|
|
136
136
|
"bun": "./dist/handlers/index.js",
|
|
137
|
-
"node": "./dist/node/handlers/index.
|
|
137
|
+
"node": "./dist/node/handlers/index.js",
|
|
138
138
|
"browser": "./dist/browser/handlers/index.js",
|
|
139
139
|
"default": "./dist/handlers/index.js"
|
|
140
140
|
},
|
|
141
141
|
"./handlers/saas.handlers": {
|
|
142
142
|
"types": "./dist/handlers/saas.handlers.d.ts",
|
|
143
143
|
"bun": "./dist/handlers/saas.handlers.js",
|
|
144
|
-
"node": "./dist/node/handlers/saas.handlers.
|
|
144
|
+
"node": "./dist/node/handlers/saas.handlers.js",
|
|
145
145
|
"browser": "./dist/browser/handlers/saas.handlers.js",
|
|
146
146
|
"default": "./dist/handlers/saas.handlers.js"
|
|
147
147
|
},
|
|
148
148
|
"./presentations": {
|
|
149
149
|
"types": "./dist/presentations/index.d.ts",
|
|
150
150
|
"bun": "./dist/presentations/index.js",
|
|
151
|
-
"node": "./dist/node/presentations/index.
|
|
151
|
+
"node": "./dist/node/presentations/index.js",
|
|
152
152
|
"browser": "./dist/browser/presentations/index.js",
|
|
153
153
|
"default": "./dist/presentations/index.js"
|
|
154
154
|
},
|
|
155
155
|
"./presentations/index": {
|
|
156
156
|
"types": "./dist/presentations/index.d.ts",
|
|
157
157
|
"bun": "./dist/presentations/index.js",
|
|
158
|
-
"node": "./dist/node/presentations/index.
|
|
158
|
+
"node": "./dist/node/presentations/index.js",
|
|
159
159
|
"browser": "./dist/browser/presentations/index.js",
|
|
160
160
|
"default": "./dist/presentations/index.js"
|
|
161
161
|
},
|
|
162
162
|
"./project": {
|
|
163
163
|
"types": "./dist/project/index.d.ts",
|
|
164
164
|
"bun": "./dist/project/index.js",
|
|
165
|
-
"node": "./dist/node/project/index.
|
|
165
|
+
"node": "./dist/node/project/index.js",
|
|
166
166
|
"browser": "./dist/browser/project/index.js",
|
|
167
167
|
"default": "./dist/project/index.js"
|
|
168
168
|
},
|
|
169
169
|
"./project/index": {
|
|
170
170
|
"types": "./dist/project/index.d.ts",
|
|
171
171
|
"bun": "./dist/project/index.js",
|
|
172
|
-
"node": "./dist/node/project/index.
|
|
172
|
+
"node": "./dist/node/project/index.js",
|
|
173
173
|
"browser": "./dist/browser/project/index.js",
|
|
174
174
|
"default": "./dist/project/index.js"
|
|
175
175
|
},
|
|
176
176
|
"./project/project.entity": {
|
|
177
177
|
"types": "./dist/project/project.entity.d.ts",
|
|
178
178
|
"bun": "./dist/project/project.entity.js",
|
|
179
|
-
"node": "./dist/node/project/project.entity.
|
|
179
|
+
"node": "./dist/node/project/project.entity.js",
|
|
180
180
|
"browser": "./dist/browser/project/project.entity.js",
|
|
181
181
|
"default": "./dist/project/project.entity.js"
|
|
182
182
|
},
|
|
183
183
|
"./project/project.enum": {
|
|
184
184
|
"types": "./dist/project/project.enum.d.ts",
|
|
185
185
|
"bun": "./dist/project/project.enum.js",
|
|
186
|
-
"node": "./dist/node/project/project.enum.
|
|
186
|
+
"node": "./dist/node/project/project.enum.js",
|
|
187
187
|
"browser": "./dist/browser/project/project.enum.js",
|
|
188
188
|
"default": "./dist/project/project.enum.js"
|
|
189
189
|
},
|
|
190
190
|
"./project/project.event": {
|
|
191
191
|
"types": "./dist/project/project.event.d.ts",
|
|
192
192
|
"bun": "./dist/project/project.event.js",
|
|
193
|
-
"node": "./dist/node/project/project.event.
|
|
193
|
+
"node": "./dist/node/project/project.event.js",
|
|
194
194
|
"browser": "./dist/browser/project/project.event.js",
|
|
195
195
|
"default": "./dist/project/project.event.js"
|
|
196
196
|
},
|
|
197
197
|
"./project/project.handler": {
|
|
198
198
|
"types": "./dist/project/project.handler.d.ts",
|
|
199
199
|
"bun": "./dist/project/project.handler.js",
|
|
200
|
-
"node": "./dist/node/project/project.handler.
|
|
200
|
+
"node": "./dist/node/project/project.handler.js",
|
|
201
201
|
"browser": "./dist/browser/project/project.handler.js",
|
|
202
202
|
"default": "./dist/project/project.handler.js"
|
|
203
203
|
},
|
|
204
204
|
"./project/project.operations": {
|
|
205
205
|
"types": "./dist/project/project.operations.d.ts",
|
|
206
206
|
"bun": "./dist/project/project.operations.js",
|
|
207
|
-
"node": "./dist/node/project/project.operations.
|
|
207
|
+
"node": "./dist/node/project/project.operations.js",
|
|
208
208
|
"browser": "./dist/browser/project/project.operations.js",
|
|
209
209
|
"default": "./dist/project/project.operations.js"
|
|
210
210
|
},
|
|
211
211
|
"./project/project.presentation": {
|
|
212
212
|
"types": "./dist/project/project.presentation.d.ts",
|
|
213
213
|
"bun": "./dist/project/project.presentation.js",
|
|
214
|
-
"node": "./dist/node/project/project.presentation.
|
|
214
|
+
"node": "./dist/node/project/project.presentation.js",
|
|
215
215
|
"browser": "./dist/browser/project/project.presentation.js",
|
|
216
216
|
"default": "./dist/project/project.presentation.js"
|
|
217
217
|
},
|
|
218
218
|
"./project/project.schema": {
|
|
219
219
|
"types": "./dist/project/project.schema.d.ts",
|
|
220
220
|
"bun": "./dist/project/project.schema.js",
|
|
221
|
-
"node": "./dist/node/project/project.schema.
|
|
221
|
+
"node": "./dist/node/project/project.schema.js",
|
|
222
222
|
"browser": "./dist/browser/project/project.schema.js",
|
|
223
223
|
"default": "./dist/project/project.schema.js"
|
|
224
224
|
},
|
|
225
225
|
"./saas-boilerplate.feature": {
|
|
226
226
|
"types": "./dist/saas-boilerplate.feature.d.ts",
|
|
227
227
|
"bun": "./dist/saas-boilerplate.feature.js",
|
|
228
|
-
"node": "./dist/node/saas-boilerplate.feature.
|
|
228
|
+
"node": "./dist/node/saas-boilerplate.feature.js",
|
|
229
229
|
"browser": "./dist/browser/saas-boilerplate.feature.js",
|
|
230
230
|
"default": "./dist/saas-boilerplate.feature.js"
|
|
231
231
|
},
|
|
232
232
|
"./seeders": {
|
|
233
233
|
"types": "./dist/seeders/index.d.ts",
|
|
234
234
|
"bun": "./dist/seeders/index.js",
|
|
235
|
-
"node": "./dist/node/seeders/index.
|
|
235
|
+
"node": "./dist/node/seeders/index.js",
|
|
236
236
|
"browser": "./dist/browser/seeders/index.js",
|
|
237
237
|
"default": "./dist/seeders/index.js"
|
|
238
238
|
},
|
|
239
239
|
"./seeders/index": {
|
|
240
240
|
"types": "./dist/seeders/index.d.ts",
|
|
241
241
|
"bun": "./dist/seeders/index.js",
|
|
242
|
-
"node": "./dist/node/seeders/index.
|
|
242
|
+
"node": "./dist/node/seeders/index.js",
|
|
243
243
|
"browser": "./dist/browser/seeders/index.js",
|
|
244
244
|
"default": "./dist/seeders/index.js"
|
|
245
245
|
},
|
|
246
246
|
"./settings": {
|
|
247
247
|
"types": "./dist/settings/index.d.ts",
|
|
248
248
|
"bun": "./dist/settings/index.js",
|
|
249
|
-
"node": "./dist/node/settings/index.
|
|
249
|
+
"node": "./dist/node/settings/index.js",
|
|
250
250
|
"browser": "./dist/browser/settings/index.js",
|
|
251
251
|
"default": "./dist/settings/index.js"
|
|
252
252
|
},
|
|
253
253
|
"./settings/index": {
|
|
254
254
|
"types": "./dist/settings/index.d.ts",
|
|
255
255
|
"bun": "./dist/settings/index.js",
|
|
256
|
-
"node": "./dist/node/settings/index.
|
|
256
|
+
"node": "./dist/node/settings/index.js",
|
|
257
257
|
"browser": "./dist/browser/settings/index.js",
|
|
258
258
|
"default": "./dist/settings/index.js"
|
|
259
259
|
},
|
|
260
260
|
"./settings/settings.entity": {
|
|
261
261
|
"types": "./dist/settings/settings.entity.d.ts",
|
|
262
262
|
"bun": "./dist/settings/settings.entity.js",
|
|
263
|
-
"node": "./dist/node/settings/settings.entity.
|
|
263
|
+
"node": "./dist/node/settings/settings.entity.js",
|
|
264
264
|
"browser": "./dist/browser/settings/settings.entity.js",
|
|
265
265
|
"default": "./dist/settings/settings.entity.js"
|
|
266
266
|
},
|
|
267
267
|
"./settings/settings.enum": {
|
|
268
268
|
"types": "./dist/settings/settings.enum.d.ts",
|
|
269
269
|
"bun": "./dist/settings/settings.enum.js",
|
|
270
|
-
"node": "./dist/node/settings/settings.enum.
|
|
270
|
+
"node": "./dist/node/settings/settings.enum.js",
|
|
271
271
|
"browser": "./dist/browser/settings/settings.enum.js",
|
|
272
272
|
"default": "./dist/settings/settings.enum.js"
|
|
273
273
|
},
|
|
274
274
|
"./shared/mock-data": {
|
|
275
275
|
"types": "./dist/shared/mock-data.d.ts",
|
|
276
276
|
"bun": "./dist/shared/mock-data.js",
|
|
277
|
-
"node": "./dist/node/shared/mock-data.
|
|
277
|
+
"node": "./dist/node/shared/mock-data.js",
|
|
278
278
|
"browser": "./dist/browser/shared/mock-data.js",
|
|
279
279
|
"default": "./dist/shared/mock-data.js"
|
|
280
280
|
},
|
|
281
281
|
"./shared/overlay-types": {
|
|
282
282
|
"types": "./dist/shared/overlay-types.d.ts",
|
|
283
283
|
"bun": "./dist/shared/overlay-types.js",
|
|
284
|
-
"node": "./dist/node/shared/overlay-types.
|
|
284
|
+
"node": "./dist/node/shared/overlay-types.js",
|
|
285
285
|
"browser": "./dist/browser/shared/overlay-types.js",
|
|
286
286
|
"default": "./dist/shared/overlay-types.js"
|
|
287
287
|
},
|
|
288
288
|
"./tests/operations.test-spec": {
|
|
289
289
|
"types": "./dist/tests/operations.test-spec.d.ts",
|
|
290
290
|
"bun": "./dist/tests/operations.test-spec.js",
|
|
291
|
-
"node": "./dist/node/tests/operations.test-spec.
|
|
291
|
+
"node": "./dist/node/tests/operations.test-spec.js",
|
|
292
292
|
"browser": "./dist/browser/tests/operations.test-spec.js",
|
|
293
293
|
"default": "./dist/tests/operations.test-spec.js"
|
|
294
294
|
},
|
|
295
295
|
"./ui": {
|
|
296
296
|
"types": "./dist/ui/index.d.ts",
|
|
297
297
|
"bun": "./dist/ui/index.js",
|
|
298
|
-
"node": "./dist/node/ui/index.
|
|
298
|
+
"node": "./dist/node/ui/index.js",
|
|
299
299
|
"browser": "./dist/browser/ui/index.js",
|
|
300
300
|
"default": "./dist/ui/index.js"
|
|
301
301
|
},
|
|
302
302
|
"./ui/hooks": {
|
|
303
303
|
"types": "./dist/ui/hooks/index.d.ts",
|
|
304
304
|
"bun": "./dist/ui/hooks/index.js",
|
|
305
|
-
"node": "./dist/node/ui/hooks/index.
|
|
305
|
+
"node": "./dist/node/ui/hooks/index.js",
|
|
306
306
|
"browser": "./dist/browser/ui/hooks/index.js",
|
|
307
307
|
"default": "./dist/ui/hooks/index.js"
|
|
308
308
|
},
|
|
309
309
|
"./ui/hooks/index": {
|
|
310
310
|
"types": "./dist/ui/hooks/index.d.ts",
|
|
311
311
|
"bun": "./dist/ui/hooks/index.js",
|
|
312
|
-
"node": "./dist/node/ui/hooks/index.
|
|
312
|
+
"node": "./dist/node/ui/hooks/index.js",
|
|
313
313
|
"browser": "./dist/browser/ui/hooks/index.js",
|
|
314
314
|
"default": "./dist/ui/hooks/index.js"
|
|
315
315
|
},
|
|
316
316
|
"./ui/hooks/useProjectList": {
|
|
317
317
|
"types": "./dist/ui/hooks/useProjectList.d.ts",
|
|
318
318
|
"bun": "./dist/ui/hooks/useProjectList.js",
|
|
319
|
-
"node": "./dist/node/ui/hooks/useProjectList.
|
|
319
|
+
"node": "./dist/node/ui/hooks/useProjectList.js",
|
|
320
320
|
"browser": "./dist/browser/ui/hooks/useProjectList.js",
|
|
321
321
|
"default": "./dist/ui/hooks/useProjectList.js"
|
|
322
322
|
},
|
|
323
323
|
"./ui/hooks/useProjectMutations": {
|
|
324
324
|
"types": "./dist/ui/hooks/useProjectMutations.d.ts",
|
|
325
325
|
"bun": "./dist/ui/hooks/useProjectMutations.js",
|
|
326
|
-
"node": "./dist/node/ui/hooks/useProjectMutations.
|
|
326
|
+
"node": "./dist/node/ui/hooks/useProjectMutations.js",
|
|
327
327
|
"browser": "./dist/browser/ui/hooks/useProjectMutations.js",
|
|
328
328
|
"default": "./dist/ui/hooks/useProjectMutations.js"
|
|
329
329
|
},
|
|
330
330
|
"./ui/index": {
|
|
331
331
|
"types": "./dist/ui/index.d.ts",
|
|
332
332
|
"bun": "./dist/ui/index.js",
|
|
333
|
-
"node": "./dist/node/ui/index.
|
|
333
|
+
"node": "./dist/node/ui/index.js",
|
|
334
334
|
"browser": "./dist/browser/ui/index.js",
|
|
335
335
|
"default": "./dist/ui/index.js"
|
|
336
336
|
},
|
|
337
337
|
"./ui/modals": {
|
|
338
338
|
"types": "./dist/ui/modals/index.d.ts",
|
|
339
339
|
"bun": "./dist/ui/modals/index.js",
|
|
340
|
-
"node": "./dist/node/ui/modals/index.
|
|
340
|
+
"node": "./dist/node/ui/modals/index.js",
|
|
341
341
|
"browser": "./dist/browser/ui/modals/index.js",
|
|
342
342
|
"default": "./dist/ui/modals/index.js"
|
|
343
343
|
},
|
|
344
344
|
"./ui/modals/CreateProjectModal": {
|
|
345
345
|
"types": "./dist/ui/modals/CreateProjectModal.d.ts",
|
|
346
346
|
"bun": "./dist/ui/modals/CreateProjectModal.js",
|
|
347
|
-
"node": "./dist/node/ui/modals/CreateProjectModal.
|
|
347
|
+
"node": "./dist/node/ui/modals/CreateProjectModal.js",
|
|
348
348
|
"browser": "./dist/browser/ui/modals/CreateProjectModal.js",
|
|
349
349
|
"default": "./dist/ui/modals/CreateProjectModal.js"
|
|
350
350
|
},
|
|
351
351
|
"./ui/modals/index": {
|
|
352
352
|
"types": "./dist/ui/modals/index.d.ts",
|
|
353
353
|
"bun": "./dist/ui/modals/index.js",
|
|
354
|
-
"node": "./dist/node/ui/modals/index.
|
|
354
|
+
"node": "./dist/node/ui/modals/index.js",
|
|
355
355
|
"browser": "./dist/browser/ui/modals/index.js",
|
|
356
356
|
"default": "./dist/ui/modals/index.js"
|
|
357
357
|
},
|
|
358
358
|
"./ui/modals/ProjectActionsModal": {
|
|
359
359
|
"types": "./dist/ui/modals/ProjectActionsModal.d.ts",
|
|
360
360
|
"bun": "./dist/ui/modals/ProjectActionsModal.js",
|
|
361
|
-
"node": "./dist/node/ui/modals/ProjectActionsModal.
|
|
361
|
+
"node": "./dist/node/ui/modals/ProjectActionsModal.js",
|
|
362
362
|
"browser": "./dist/browser/ui/modals/ProjectActionsModal.js",
|
|
363
363
|
"default": "./dist/ui/modals/ProjectActionsModal.js"
|
|
364
364
|
},
|
|
365
365
|
"./ui/overlays": {
|
|
366
366
|
"types": "./dist/ui/overlays/index.d.ts",
|
|
367
367
|
"bun": "./dist/ui/overlays/index.js",
|
|
368
|
-
"node": "./dist/node/ui/overlays/index.
|
|
368
|
+
"node": "./dist/node/ui/overlays/index.js",
|
|
369
369
|
"browser": "./dist/browser/ui/overlays/index.js",
|
|
370
370
|
"default": "./dist/ui/overlays/index.js"
|
|
371
371
|
},
|
|
372
372
|
"./ui/overlays/demo-overlays": {
|
|
373
373
|
"types": "./dist/ui/overlays/demo-overlays.d.ts",
|
|
374
374
|
"bun": "./dist/ui/overlays/demo-overlays.js",
|
|
375
|
-
"node": "./dist/node/ui/overlays/demo-overlays.
|
|
375
|
+
"node": "./dist/node/ui/overlays/demo-overlays.js",
|
|
376
376
|
"browser": "./dist/browser/ui/overlays/demo-overlays.js",
|
|
377
377
|
"default": "./dist/ui/overlays/demo-overlays.js"
|
|
378
378
|
},
|
|
379
379
|
"./ui/overlays/index": {
|
|
380
380
|
"types": "./dist/ui/overlays/index.d.ts",
|
|
381
381
|
"bun": "./dist/ui/overlays/index.js",
|
|
382
|
-
"node": "./dist/node/ui/overlays/index.
|
|
382
|
+
"node": "./dist/node/ui/overlays/index.js",
|
|
383
383
|
"browser": "./dist/browser/ui/overlays/index.js",
|
|
384
384
|
"default": "./dist/ui/overlays/index.js"
|
|
385
385
|
},
|
|
386
386
|
"./ui/renderers": {
|
|
387
387
|
"types": "./dist/ui/renderers/index.d.ts",
|
|
388
388
|
"bun": "./dist/ui/renderers/index.js",
|
|
389
|
-
"node": "./dist/node/ui/renderers/index.
|
|
389
|
+
"node": "./dist/node/ui/renderers/index.js",
|
|
390
390
|
"browser": "./dist/browser/ui/renderers/index.js",
|
|
391
391
|
"default": "./dist/ui/renderers/index.js"
|
|
392
392
|
},
|
|
393
393
|
"./ui/renderers/index": {
|
|
394
394
|
"types": "./dist/ui/renderers/index.d.ts",
|
|
395
395
|
"bun": "./dist/ui/renderers/index.js",
|
|
396
|
-
"node": "./dist/node/ui/renderers/index.
|
|
396
|
+
"node": "./dist/node/ui/renderers/index.js",
|
|
397
397
|
"browser": "./dist/browser/ui/renderers/index.js",
|
|
398
398
|
"default": "./dist/ui/renderers/index.js"
|
|
399
399
|
},
|
|
400
400
|
"./ui/renderers/project-list.markdown": {
|
|
401
401
|
"types": "./dist/ui/renderers/project-list.markdown.d.ts",
|
|
402
402
|
"bun": "./dist/ui/renderers/project-list.markdown.js",
|
|
403
|
-
"node": "./dist/node/ui/renderers/project-list.markdown.
|
|
403
|
+
"node": "./dist/node/ui/renderers/project-list.markdown.js",
|
|
404
404
|
"browser": "./dist/browser/ui/renderers/project-list.markdown.js",
|
|
405
405
|
"default": "./dist/ui/renderers/project-list.markdown.js"
|
|
406
406
|
},
|
|
407
407
|
"./ui/renderers/project-list.renderer": {
|
|
408
408
|
"types": "./dist/ui/renderers/project-list.renderer.d.ts",
|
|
409
409
|
"bun": "./dist/ui/renderers/project-list.renderer.js",
|
|
410
|
-
"node": "./dist/node/ui/renderers/project-list.renderer.
|
|
410
|
+
"node": "./dist/node/ui/renderers/project-list.renderer.js",
|
|
411
411
|
"browser": "./dist/browser/ui/renderers/project-list.renderer.js",
|
|
412
412
|
"default": "./dist/ui/renderers/project-list.renderer.js"
|
|
413
413
|
},
|
|
414
414
|
"./ui/SaasDashboard": {
|
|
415
415
|
"types": "./dist/ui/SaasDashboard.d.ts",
|
|
416
416
|
"bun": "./dist/ui/SaasDashboard.js",
|
|
417
|
-
"node": "./dist/node/ui/SaasDashboard.
|
|
417
|
+
"node": "./dist/node/ui/SaasDashboard.js",
|
|
418
418
|
"browser": "./dist/browser/ui/SaasDashboard.js",
|
|
419
419
|
"default": "./dist/ui/SaasDashboard.js"
|
|
420
420
|
},
|
|
421
421
|
"./ui/SaasProjectList": {
|
|
422
422
|
"types": "./dist/ui/SaasProjectList.d.ts",
|
|
423
423
|
"bun": "./dist/ui/SaasProjectList.js",
|
|
424
|
-
"node": "./dist/node/ui/SaasProjectList.
|
|
424
|
+
"node": "./dist/node/ui/SaasProjectList.js",
|
|
425
425
|
"browser": "./dist/browser/ui/SaasProjectList.js",
|
|
426
426
|
"default": "./dist/ui/SaasProjectList.js"
|
|
427
427
|
},
|
|
428
428
|
"./ui/SaasSettingsPanel": {
|
|
429
429
|
"types": "./dist/ui/SaasSettingsPanel.d.ts",
|
|
430
430
|
"bun": "./dist/ui/SaasSettingsPanel.js",
|
|
431
|
-
"node": "./dist/node/ui/SaasSettingsPanel.
|
|
431
|
+
"node": "./dist/node/ui/SaasSettingsPanel.js",
|
|
432
432
|
"browser": "./dist/browser/ui/SaasSettingsPanel.js",
|
|
433
433
|
"default": "./dist/ui/SaasSettingsPanel.js"
|
|
434
434
|
}
|
|
@@ -449,451 +449,451 @@
|
|
|
449
449
|
"typecheck": "tsc --noEmit"
|
|
450
450
|
},
|
|
451
451
|
"dependencies": {
|
|
452
|
-
"@contractspec/lib.identity-rbac": "1.
|
|
453
|
-
"@contractspec/lib.jobs": "1.
|
|
454
|
-
"@contractspec/module.audit-trail": "1.
|
|
455
|
-
"@contractspec/module.notifications": "1.
|
|
456
|
-
"@contractspec/lib.contracts": "1.
|
|
457
|
-
"@contractspec/lib.schema": "1.
|
|
458
|
-
"@contractspec/lib.example-shared-ui": "1.
|
|
459
|
-
"@contractspec/lib.design-system": "1.
|
|
460
|
-
"@contractspec/lib.runtime-sandbox": "0.
|
|
452
|
+
"@contractspec/lib.identity-rbac": "1.61.0",
|
|
453
|
+
"@contractspec/lib.jobs": "1.61.0",
|
|
454
|
+
"@contractspec/module.audit-trail": "1.61.0",
|
|
455
|
+
"@contractspec/module.notifications": "1.61.0",
|
|
456
|
+
"@contractspec/lib.contracts": "1.61.0",
|
|
457
|
+
"@contractspec/lib.schema": "1.61.0",
|
|
458
|
+
"@contractspec/lib.example-shared-ui": "1.15.0",
|
|
459
|
+
"@contractspec/lib.design-system": "1.61.0",
|
|
460
|
+
"@contractspec/lib.runtime-sandbox": "0.16.0",
|
|
461
461
|
"react": "19.2.4",
|
|
462
462
|
"react-dom": "19.2.4"
|
|
463
463
|
},
|
|
464
464
|
"devDependencies": {
|
|
465
|
-
"@contractspec/tool.typescript": "1.
|
|
465
|
+
"@contractspec/tool.typescript": "1.61.0",
|
|
466
466
|
"typescript": "^5.9.3",
|
|
467
467
|
"@types/react": "^19.2.13",
|
|
468
468
|
"@types/react-dom": "^19.2.2",
|
|
469
|
-
"@contractspec/tool.bun": "1.
|
|
469
|
+
"@contractspec/tool.bun": "1.60.0"
|
|
470
470
|
},
|
|
471
471
|
"publishConfig": {
|
|
472
472
|
"exports": {
|
|
473
473
|
".": {
|
|
474
474
|
"types": "./dist/index.d.ts",
|
|
475
475
|
"bun": "./dist/index.js",
|
|
476
|
-
"node": "./dist/node/index.
|
|
476
|
+
"node": "./dist/node/index.js",
|
|
477
477
|
"browser": "./dist/browser/index.js",
|
|
478
478
|
"default": "./dist/index.js"
|
|
479
479
|
},
|
|
480
480
|
"./billing": {
|
|
481
481
|
"types": "./dist/billing/index.d.ts",
|
|
482
482
|
"bun": "./dist/billing/index.js",
|
|
483
|
-
"node": "./dist/node/billing/index.
|
|
483
|
+
"node": "./dist/node/billing/index.js",
|
|
484
484
|
"browser": "./dist/browser/billing/index.js",
|
|
485
485
|
"default": "./dist/billing/index.js"
|
|
486
486
|
},
|
|
487
487
|
"./billing/billing.entity": {
|
|
488
488
|
"types": "./dist/billing/billing.entity.d.ts",
|
|
489
489
|
"bun": "./dist/billing/billing.entity.js",
|
|
490
|
-
"node": "./dist/node/billing/billing.entity.
|
|
490
|
+
"node": "./dist/node/billing/billing.entity.js",
|
|
491
491
|
"browser": "./dist/browser/billing/billing.entity.js",
|
|
492
492
|
"default": "./dist/billing/billing.entity.js"
|
|
493
493
|
},
|
|
494
494
|
"./billing/billing.enum": {
|
|
495
495
|
"types": "./dist/billing/billing.enum.d.ts",
|
|
496
496
|
"bun": "./dist/billing/billing.enum.js",
|
|
497
|
-
"node": "./dist/node/billing/billing.enum.
|
|
497
|
+
"node": "./dist/node/billing/billing.enum.js",
|
|
498
498
|
"browser": "./dist/browser/billing/billing.enum.js",
|
|
499
499
|
"default": "./dist/billing/billing.enum.js"
|
|
500
500
|
},
|
|
501
501
|
"./billing/billing.event": {
|
|
502
502
|
"types": "./dist/billing/billing.event.d.ts",
|
|
503
503
|
"bun": "./dist/billing/billing.event.js",
|
|
504
|
-
"node": "./dist/node/billing/billing.event.
|
|
504
|
+
"node": "./dist/node/billing/billing.event.js",
|
|
505
505
|
"browser": "./dist/browser/billing/billing.event.js",
|
|
506
506
|
"default": "./dist/billing/billing.event.js"
|
|
507
507
|
},
|
|
508
508
|
"./billing/billing.handler": {
|
|
509
509
|
"types": "./dist/billing/billing.handler.d.ts",
|
|
510
510
|
"bun": "./dist/billing/billing.handler.js",
|
|
511
|
-
"node": "./dist/node/billing/billing.handler.
|
|
511
|
+
"node": "./dist/node/billing/billing.handler.js",
|
|
512
512
|
"browser": "./dist/browser/billing/billing.handler.js",
|
|
513
513
|
"default": "./dist/billing/billing.handler.js"
|
|
514
514
|
},
|
|
515
515
|
"./billing/billing.operations": {
|
|
516
516
|
"types": "./dist/billing/billing.operations.d.ts",
|
|
517
517
|
"bun": "./dist/billing/billing.operations.js",
|
|
518
|
-
"node": "./dist/node/billing/billing.operations.
|
|
518
|
+
"node": "./dist/node/billing/billing.operations.js",
|
|
519
519
|
"browser": "./dist/browser/billing/billing.operations.js",
|
|
520
520
|
"default": "./dist/billing/billing.operations.js"
|
|
521
521
|
},
|
|
522
522
|
"./billing/billing.presentation": {
|
|
523
523
|
"types": "./dist/billing/billing.presentation.d.ts",
|
|
524
524
|
"bun": "./dist/billing/billing.presentation.js",
|
|
525
|
-
"node": "./dist/node/billing/billing.presentation.
|
|
525
|
+
"node": "./dist/node/billing/billing.presentation.js",
|
|
526
526
|
"browser": "./dist/browser/billing/billing.presentation.js",
|
|
527
527
|
"default": "./dist/billing/billing.presentation.js"
|
|
528
528
|
},
|
|
529
529
|
"./billing/billing.schema": {
|
|
530
530
|
"types": "./dist/billing/billing.schema.d.ts",
|
|
531
531
|
"bun": "./dist/billing/billing.schema.js",
|
|
532
|
-
"node": "./dist/node/billing/billing.schema.
|
|
532
|
+
"node": "./dist/node/billing/billing.schema.js",
|
|
533
533
|
"browser": "./dist/browser/billing/billing.schema.js",
|
|
534
534
|
"default": "./dist/billing/billing.schema.js"
|
|
535
535
|
},
|
|
536
536
|
"./billing/index": {
|
|
537
537
|
"types": "./dist/billing/index.d.ts",
|
|
538
538
|
"bun": "./dist/billing/index.js",
|
|
539
|
-
"node": "./dist/node/billing/index.
|
|
539
|
+
"node": "./dist/node/billing/index.js",
|
|
540
540
|
"browser": "./dist/browser/billing/index.js",
|
|
541
541
|
"default": "./dist/billing/index.js"
|
|
542
542
|
},
|
|
543
543
|
"./dashboard": {
|
|
544
544
|
"types": "./dist/dashboard/index.d.ts",
|
|
545
545
|
"bun": "./dist/dashboard/index.js",
|
|
546
|
-
"node": "./dist/node/dashboard/index.
|
|
546
|
+
"node": "./dist/node/dashboard/index.js",
|
|
547
547
|
"browser": "./dist/browser/dashboard/index.js",
|
|
548
548
|
"default": "./dist/dashboard/index.js"
|
|
549
549
|
},
|
|
550
550
|
"./dashboard/dashboard.presentation": {
|
|
551
551
|
"types": "./dist/dashboard/dashboard.presentation.d.ts",
|
|
552
552
|
"bun": "./dist/dashboard/dashboard.presentation.js",
|
|
553
|
-
"node": "./dist/node/dashboard/dashboard.presentation.
|
|
553
|
+
"node": "./dist/node/dashboard/dashboard.presentation.js",
|
|
554
554
|
"browser": "./dist/browser/dashboard/dashboard.presentation.js",
|
|
555
555
|
"default": "./dist/dashboard/dashboard.presentation.js"
|
|
556
556
|
},
|
|
557
557
|
"./dashboard/index": {
|
|
558
558
|
"types": "./dist/dashboard/index.d.ts",
|
|
559
559
|
"bun": "./dist/dashboard/index.js",
|
|
560
|
-
"node": "./dist/node/dashboard/index.
|
|
560
|
+
"node": "./dist/node/dashboard/index.js",
|
|
561
561
|
"browser": "./dist/browser/dashboard/index.js",
|
|
562
562
|
"default": "./dist/dashboard/index.js"
|
|
563
563
|
},
|
|
564
564
|
"./docs": {
|
|
565
565
|
"types": "./dist/docs/index.d.ts",
|
|
566
566
|
"bun": "./dist/docs/index.js",
|
|
567
|
-
"node": "./dist/node/docs/index.
|
|
567
|
+
"node": "./dist/node/docs/index.js",
|
|
568
568
|
"browser": "./dist/browser/docs/index.js",
|
|
569
569
|
"default": "./dist/docs/index.js"
|
|
570
570
|
},
|
|
571
571
|
"./docs/index": {
|
|
572
572
|
"types": "./dist/docs/index.d.ts",
|
|
573
573
|
"bun": "./dist/docs/index.js",
|
|
574
|
-
"node": "./dist/node/docs/index.
|
|
574
|
+
"node": "./dist/node/docs/index.js",
|
|
575
575
|
"browser": "./dist/browser/docs/index.js",
|
|
576
576
|
"default": "./dist/docs/index.js"
|
|
577
577
|
},
|
|
578
578
|
"./docs/saas-boilerplate.docblock": {
|
|
579
579
|
"types": "./dist/docs/saas-boilerplate.docblock.d.ts",
|
|
580
580
|
"bun": "./dist/docs/saas-boilerplate.docblock.js",
|
|
581
|
-
"node": "./dist/node/docs/saas-boilerplate.docblock.
|
|
581
|
+
"node": "./dist/node/docs/saas-boilerplate.docblock.js",
|
|
582
582
|
"browser": "./dist/browser/docs/saas-boilerplate.docblock.js",
|
|
583
583
|
"default": "./dist/docs/saas-boilerplate.docblock.js"
|
|
584
584
|
},
|
|
585
585
|
"./example": {
|
|
586
586
|
"types": "./dist/example.d.ts",
|
|
587
587
|
"bun": "./dist/example.js",
|
|
588
|
-
"node": "./dist/node/example.
|
|
588
|
+
"node": "./dist/node/example.js",
|
|
589
589
|
"browser": "./dist/browser/example.js",
|
|
590
590
|
"default": "./dist/example.js"
|
|
591
591
|
},
|
|
592
592
|
"./handlers": {
|
|
593
593
|
"types": "./dist/handlers/index.d.ts",
|
|
594
594
|
"bun": "./dist/handlers/index.js",
|
|
595
|
-
"node": "./dist/node/handlers/index.
|
|
595
|
+
"node": "./dist/node/handlers/index.js",
|
|
596
596
|
"browser": "./dist/browser/handlers/index.js",
|
|
597
597
|
"default": "./dist/handlers/index.js"
|
|
598
598
|
},
|
|
599
599
|
"./handlers/index": {
|
|
600
600
|
"types": "./dist/handlers/index.d.ts",
|
|
601
601
|
"bun": "./dist/handlers/index.js",
|
|
602
|
-
"node": "./dist/node/handlers/index.
|
|
602
|
+
"node": "./dist/node/handlers/index.js",
|
|
603
603
|
"browser": "./dist/browser/handlers/index.js",
|
|
604
604
|
"default": "./dist/handlers/index.js"
|
|
605
605
|
},
|
|
606
606
|
"./handlers/saas.handlers": {
|
|
607
607
|
"types": "./dist/handlers/saas.handlers.d.ts",
|
|
608
608
|
"bun": "./dist/handlers/saas.handlers.js",
|
|
609
|
-
"node": "./dist/node/handlers/saas.handlers.
|
|
609
|
+
"node": "./dist/node/handlers/saas.handlers.js",
|
|
610
610
|
"browser": "./dist/browser/handlers/saas.handlers.js",
|
|
611
611
|
"default": "./dist/handlers/saas.handlers.js"
|
|
612
612
|
},
|
|
613
613
|
"./presentations": {
|
|
614
614
|
"types": "./dist/presentations/index.d.ts",
|
|
615
615
|
"bun": "./dist/presentations/index.js",
|
|
616
|
-
"node": "./dist/node/presentations/index.
|
|
616
|
+
"node": "./dist/node/presentations/index.js",
|
|
617
617
|
"browser": "./dist/browser/presentations/index.js",
|
|
618
618
|
"default": "./dist/presentations/index.js"
|
|
619
619
|
},
|
|
620
620
|
"./presentations/index": {
|
|
621
621
|
"types": "./dist/presentations/index.d.ts",
|
|
622
622
|
"bun": "./dist/presentations/index.js",
|
|
623
|
-
"node": "./dist/node/presentations/index.
|
|
623
|
+
"node": "./dist/node/presentations/index.js",
|
|
624
624
|
"browser": "./dist/browser/presentations/index.js",
|
|
625
625
|
"default": "./dist/presentations/index.js"
|
|
626
626
|
},
|
|
627
627
|
"./project": {
|
|
628
628
|
"types": "./dist/project/index.d.ts",
|
|
629
629
|
"bun": "./dist/project/index.js",
|
|
630
|
-
"node": "./dist/node/project/index.
|
|
630
|
+
"node": "./dist/node/project/index.js",
|
|
631
631
|
"browser": "./dist/browser/project/index.js",
|
|
632
632
|
"default": "./dist/project/index.js"
|
|
633
633
|
},
|
|
634
634
|
"./project/index": {
|
|
635
635
|
"types": "./dist/project/index.d.ts",
|
|
636
636
|
"bun": "./dist/project/index.js",
|
|
637
|
-
"node": "./dist/node/project/index.
|
|
637
|
+
"node": "./dist/node/project/index.js",
|
|
638
638
|
"browser": "./dist/browser/project/index.js",
|
|
639
639
|
"default": "./dist/project/index.js"
|
|
640
640
|
},
|
|
641
641
|
"./project/project.entity": {
|
|
642
642
|
"types": "./dist/project/project.entity.d.ts",
|
|
643
643
|
"bun": "./dist/project/project.entity.js",
|
|
644
|
-
"node": "./dist/node/project/project.entity.
|
|
644
|
+
"node": "./dist/node/project/project.entity.js",
|
|
645
645
|
"browser": "./dist/browser/project/project.entity.js",
|
|
646
646
|
"default": "./dist/project/project.entity.js"
|
|
647
647
|
},
|
|
648
648
|
"./project/project.enum": {
|
|
649
649
|
"types": "./dist/project/project.enum.d.ts",
|
|
650
650
|
"bun": "./dist/project/project.enum.js",
|
|
651
|
-
"node": "./dist/node/project/project.enum.
|
|
651
|
+
"node": "./dist/node/project/project.enum.js",
|
|
652
652
|
"browser": "./dist/browser/project/project.enum.js",
|
|
653
653
|
"default": "./dist/project/project.enum.js"
|
|
654
654
|
},
|
|
655
655
|
"./project/project.event": {
|
|
656
656
|
"types": "./dist/project/project.event.d.ts",
|
|
657
657
|
"bun": "./dist/project/project.event.js",
|
|
658
|
-
"node": "./dist/node/project/project.event.
|
|
658
|
+
"node": "./dist/node/project/project.event.js",
|
|
659
659
|
"browser": "./dist/browser/project/project.event.js",
|
|
660
660
|
"default": "./dist/project/project.event.js"
|
|
661
661
|
},
|
|
662
662
|
"./project/project.handler": {
|
|
663
663
|
"types": "./dist/project/project.handler.d.ts",
|
|
664
664
|
"bun": "./dist/project/project.handler.js",
|
|
665
|
-
"node": "./dist/node/project/project.handler.
|
|
665
|
+
"node": "./dist/node/project/project.handler.js",
|
|
666
666
|
"browser": "./dist/browser/project/project.handler.js",
|
|
667
667
|
"default": "./dist/project/project.handler.js"
|
|
668
668
|
},
|
|
669
669
|
"./project/project.operations": {
|
|
670
670
|
"types": "./dist/project/project.operations.d.ts",
|
|
671
671
|
"bun": "./dist/project/project.operations.js",
|
|
672
|
-
"node": "./dist/node/project/project.operations.
|
|
672
|
+
"node": "./dist/node/project/project.operations.js",
|
|
673
673
|
"browser": "./dist/browser/project/project.operations.js",
|
|
674
674
|
"default": "./dist/project/project.operations.js"
|
|
675
675
|
},
|
|
676
676
|
"./project/project.presentation": {
|
|
677
677
|
"types": "./dist/project/project.presentation.d.ts",
|
|
678
678
|
"bun": "./dist/project/project.presentation.js",
|
|
679
|
-
"node": "./dist/node/project/project.presentation.
|
|
679
|
+
"node": "./dist/node/project/project.presentation.js",
|
|
680
680
|
"browser": "./dist/browser/project/project.presentation.js",
|
|
681
681
|
"default": "./dist/project/project.presentation.js"
|
|
682
682
|
},
|
|
683
683
|
"./project/project.schema": {
|
|
684
684
|
"types": "./dist/project/project.schema.d.ts",
|
|
685
685
|
"bun": "./dist/project/project.schema.js",
|
|
686
|
-
"node": "./dist/node/project/project.schema.
|
|
686
|
+
"node": "./dist/node/project/project.schema.js",
|
|
687
687
|
"browser": "./dist/browser/project/project.schema.js",
|
|
688
688
|
"default": "./dist/project/project.schema.js"
|
|
689
689
|
},
|
|
690
690
|
"./saas-boilerplate.feature": {
|
|
691
691
|
"types": "./dist/saas-boilerplate.feature.d.ts",
|
|
692
692
|
"bun": "./dist/saas-boilerplate.feature.js",
|
|
693
|
-
"node": "./dist/node/saas-boilerplate.feature.
|
|
693
|
+
"node": "./dist/node/saas-boilerplate.feature.js",
|
|
694
694
|
"browser": "./dist/browser/saas-boilerplate.feature.js",
|
|
695
695
|
"default": "./dist/saas-boilerplate.feature.js"
|
|
696
696
|
},
|
|
697
697
|
"./seeders": {
|
|
698
698
|
"types": "./dist/seeders/index.d.ts",
|
|
699
699
|
"bun": "./dist/seeders/index.js",
|
|
700
|
-
"node": "./dist/node/seeders/index.
|
|
700
|
+
"node": "./dist/node/seeders/index.js",
|
|
701
701
|
"browser": "./dist/browser/seeders/index.js",
|
|
702
702
|
"default": "./dist/seeders/index.js"
|
|
703
703
|
},
|
|
704
704
|
"./seeders/index": {
|
|
705
705
|
"types": "./dist/seeders/index.d.ts",
|
|
706
706
|
"bun": "./dist/seeders/index.js",
|
|
707
|
-
"node": "./dist/node/seeders/index.
|
|
707
|
+
"node": "./dist/node/seeders/index.js",
|
|
708
708
|
"browser": "./dist/browser/seeders/index.js",
|
|
709
709
|
"default": "./dist/seeders/index.js"
|
|
710
710
|
},
|
|
711
711
|
"./settings": {
|
|
712
712
|
"types": "./dist/settings/index.d.ts",
|
|
713
713
|
"bun": "./dist/settings/index.js",
|
|
714
|
-
"node": "./dist/node/settings/index.
|
|
714
|
+
"node": "./dist/node/settings/index.js",
|
|
715
715
|
"browser": "./dist/browser/settings/index.js",
|
|
716
716
|
"default": "./dist/settings/index.js"
|
|
717
717
|
},
|
|
718
718
|
"./settings/index": {
|
|
719
719
|
"types": "./dist/settings/index.d.ts",
|
|
720
720
|
"bun": "./dist/settings/index.js",
|
|
721
|
-
"node": "./dist/node/settings/index.
|
|
721
|
+
"node": "./dist/node/settings/index.js",
|
|
722
722
|
"browser": "./dist/browser/settings/index.js",
|
|
723
723
|
"default": "./dist/settings/index.js"
|
|
724
724
|
},
|
|
725
725
|
"./settings/settings.entity": {
|
|
726
726
|
"types": "./dist/settings/settings.entity.d.ts",
|
|
727
727
|
"bun": "./dist/settings/settings.entity.js",
|
|
728
|
-
"node": "./dist/node/settings/settings.entity.
|
|
728
|
+
"node": "./dist/node/settings/settings.entity.js",
|
|
729
729
|
"browser": "./dist/browser/settings/settings.entity.js",
|
|
730
730
|
"default": "./dist/settings/settings.entity.js"
|
|
731
731
|
},
|
|
732
732
|
"./settings/settings.enum": {
|
|
733
733
|
"types": "./dist/settings/settings.enum.d.ts",
|
|
734
734
|
"bun": "./dist/settings/settings.enum.js",
|
|
735
|
-
"node": "./dist/node/settings/settings.enum.
|
|
735
|
+
"node": "./dist/node/settings/settings.enum.js",
|
|
736
736
|
"browser": "./dist/browser/settings/settings.enum.js",
|
|
737
737
|
"default": "./dist/settings/settings.enum.js"
|
|
738
738
|
},
|
|
739
739
|
"./shared/mock-data": {
|
|
740
740
|
"types": "./dist/shared/mock-data.d.ts",
|
|
741
741
|
"bun": "./dist/shared/mock-data.js",
|
|
742
|
-
"node": "./dist/node/shared/mock-data.
|
|
742
|
+
"node": "./dist/node/shared/mock-data.js",
|
|
743
743
|
"browser": "./dist/browser/shared/mock-data.js",
|
|
744
744
|
"default": "./dist/shared/mock-data.js"
|
|
745
745
|
},
|
|
746
746
|
"./shared/overlay-types": {
|
|
747
747
|
"types": "./dist/shared/overlay-types.d.ts",
|
|
748
748
|
"bun": "./dist/shared/overlay-types.js",
|
|
749
|
-
"node": "./dist/node/shared/overlay-types.
|
|
749
|
+
"node": "./dist/node/shared/overlay-types.js",
|
|
750
750
|
"browser": "./dist/browser/shared/overlay-types.js",
|
|
751
751
|
"default": "./dist/shared/overlay-types.js"
|
|
752
752
|
},
|
|
753
753
|
"./tests/operations.test-spec": {
|
|
754
754
|
"types": "./dist/tests/operations.test-spec.d.ts",
|
|
755
755
|
"bun": "./dist/tests/operations.test-spec.js",
|
|
756
|
-
"node": "./dist/node/tests/operations.test-spec.
|
|
756
|
+
"node": "./dist/node/tests/operations.test-spec.js",
|
|
757
757
|
"browser": "./dist/browser/tests/operations.test-spec.js",
|
|
758
758
|
"default": "./dist/tests/operations.test-spec.js"
|
|
759
759
|
},
|
|
760
760
|
"./ui": {
|
|
761
761
|
"types": "./dist/ui/index.d.ts",
|
|
762
762
|
"bun": "./dist/ui/index.js",
|
|
763
|
-
"node": "./dist/node/ui/index.
|
|
763
|
+
"node": "./dist/node/ui/index.js",
|
|
764
764
|
"browser": "./dist/browser/ui/index.js",
|
|
765
765
|
"default": "./dist/ui/index.js"
|
|
766
766
|
},
|
|
767
767
|
"./ui/hooks": {
|
|
768
768
|
"types": "./dist/ui/hooks/index.d.ts",
|
|
769
769
|
"bun": "./dist/ui/hooks/index.js",
|
|
770
|
-
"node": "./dist/node/ui/hooks/index.
|
|
770
|
+
"node": "./dist/node/ui/hooks/index.js",
|
|
771
771
|
"browser": "./dist/browser/ui/hooks/index.js",
|
|
772
772
|
"default": "./dist/ui/hooks/index.js"
|
|
773
773
|
},
|
|
774
774
|
"./ui/hooks/index": {
|
|
775
775
|
"types": "./dist/ui/hooks/index.d.ts",
|
|
776
776
|
"bun": "./dist/ui/hooks/index.js",
|
|
777
|
-
"node": "./dist/node/ui/hooks/index.
|
|
777
|
+
"node": "./dist/node/ui/hooks/index.js",
|
|
778
778
|
"browser": "./dist/browser/ui/hooks/index.js",
|
|
779
779
|
"default": "./dist/ui/hooks/index.js"
|
|
780
780
|
},
|
|
781
781
|
"./ui/hooks/useProjectList": {
|
|
782
782
|
"types": "./dist/ui/hooks/useProjectList.d.ts",
|
|
783
783
|
"bun": "./dist/ui/hooks/useProjectList.js",
|
|
784
|
-
"node": "./dist/node/ui/hooks/useProjectList.
|
|
784
|
+
"node": "./dist/node/ui/hooks/useProjectList.js",
|
|
785
785
|
"browser": "./dist/browser/ui/hooks/useProjectList.js",
|
|
786
786
|
"default": "./dist/ui/hooks/useProjectList.js"
|
|
787
787
|
},
|
|
788
788
|
"./ui/hooks/useProjectMutations": {
|
|
789
789
|
"types": "./dist/ui/hooks/useProjectMutations.d.ts",
|
|
790
790
|
"bun": "./dist/ui/hooks/useProjectMutations.js",
|
|
791
|
-
"node": "./dist/node/ui/hooks/useProjectMutations.
|
|
791
|
+
"node": "./dist/node/ui/hooks/useProjectMutations.js",
|
|
792
792
|
"browser": "./dist/browser/ui/hooks/useProjectMutations.js",
|
|
793
793
|
"default": "./dist/ui/hooks/useProjectMutations.js"
|
|
794
794
|
},
|
|
795
795
|
"./ui/index": {
|
|
796
796
|
"types": "./dist/ui/index.d.ts",
|
|
797
797
|
"bun": "./dist/ui/index.js",
|
|
798
|
-
"node": "./dist/node/ui/index.
|
|
798
|
+
"node": "./dist/node/ui/index.js",
|
|
799
799
|
"browser": "./dist/browser/ui/index.js",
|
|
800
800
|
"default": "./dist/ui/index.js"
|
|
801
801
|
},
|
|
802
802
|
"./ui/modals": {
|
|
803
803
|
"types": "./dist/ui/modals/index.d.ts",
|
|
804
804
|
"bun": "./dist/ui/modals/index.js",
|
|
805
|
-
"node": "./dist/node/ui/modals/index.
|
|
805
|
+
"node": "./dist/node/ui/modals/index.js",
|
|
806
806
|
"browser": "./dist/browser/ui/modals/index.js",
|
|
807
807
|
"default": "./dist/ui/modals/index.js"
|
|
808
808
|
},
|
|
809
809
|
"./ui/modals/CreateProjectModal": {
|
|
810
810
|
"types": "./dist/ui/modals/CreateProjectModal.d.ts",
|
|
811
811
|
"bun": "./dist/ui/modals/CreateProjectModal.js",
|
|
812
|
-
"node": "./dist/node/ui/modals/CreateProjectModal.
|
|
812
|
+
"node": "./dist/node/ui/modals/CreateProjectModal.js",
|
|
813
813
|
"browser": "./dist/browser/ui/modals/CreateProjectModal.js",
|
|
814
814
|
"default": "./dist/ui/modals/CreateProjectModal.js"
|
|
815
815
|
},
|
|
816
816
|
"./ui/modals/index": {
|
|
817
817
|
"types": "./dist/ui/modals/index.d.ts",
|
|
818
818
|
"bun": "./dist/ui/modals/index.js",
|
|
819
|
-
"node": "./dist/node/ui/modals/index.
|
|
819
|
+
"node": "./dist/node/ui/modals/index.js",
|
|
820
820
|
"browser": "./dist/browser/ui/modals/index.js",
|
|
821
821
|
"default": "./dist/ui/modals/index.js"
|
|
822
822
|
},
|
|
823
823
|
"./ui/modals/ProjectActionsModal": {
|
|
824
824
|
"types": "./dist/ui/modals/ProjectActionsModal.d.ts",
|
|
825
825
|
"bun": "./dist/ui/modals/ProjectActionsModal.js",
|
|
826
|
-
"node": "./dist/node/ui/modals/ProjectActionsModal.
|
|
826
|
+
"node": "./dist/node/ui/modals/ProjectActionsModal.js",
|
|
827
827
|
"browser": "./dist/browser/ui/modals/ProjectActionsModal.js",
|
|
828
828
|
"default": "./dist/ui/modals/ProjectActionsModal.js"
|
|
829
829
|
},
|
|
830
830
|
"./ui/overlays": {
|
|
831
831
|
"types": "./dist/ui/overlays/index.d.ts",
|
|
832
832
|
"bun": "./dist/ui/overlays/index.js",
|
|
833
|
-
"node": "./dist/node/ui/overlays/index.
|
|
833
|
+
"node": "./dist/node/ui/overlays/index.js",
|
|
834
834
|
"browser": "./dist/browser/ui/overlays/index.js",
|
|
835
835
|
"default": "./dist/ui/overlays/index.js"
|
|
836
836
|
},
|
|
837
837
|
"./ui/overlays/demo-overlays": {
|
|
838
838
|
"types": "./dist/ui/overlays/demo-overlays.d.ts",
|
|
839
839
|
"bun": "./dist/ui/overlays/demo-overlays.js",
|
|
840
|
-
"node": "./dist/node/ui/overlays/demo-overlays.
|
|
840
|
+
"node": "./dist/node/ui/overlays/demo-overlays.js",
|
|
841
841
|
"browser": "./dist/browser/ui/overlays/demo-overlays.js",
|
|
842
842
|
"default": "./dist/ui/overlays/demo-overlays.js"
|
|
843
843
|
},
|
|
844
844
|
"./ui/overlays/index": {
|
|
845
845
|
"types": "./dist/ui/overlays/index.d.ts",
|
|
846
846
|
"bun": "./dist/ui/overlays/index.js",
|
|
847
|
-
"node": "./dist/node/ui/overlays/index.
|
|
847
|
+
"node": "./dist/node/ui/overlays/index.js",
|
|
848
848
|
"browser": "./dist/browser/ui/overlays/index.js",
|
|
849
849
|
"default": "./dist/ui/overlays/index.js"
|
|
850
850
|
},
|
|
851
851
|
"./ui/renderers": {
|
|
852
852
|
"types": "./dist/ui/renderers/index.d.ts",
|
|
853
853
|
"bun": "./dist/ui/renderers/index.js",
|
|
854
|
-
"node": "./dist/node/ui/renderers/index.
|
|
854
|
+
"node": "./dist/node/ui/renderers/index.js",
|
|
855
855
|
"browser": "./dist/browser/ui/renderers/index.js",
|
|
856
856
|
"default": "./dist/ui/renderers/index.js"
|
|
857
857
|
},
|
|
858
858
|
"./ui/renderers/index": {
|
|
859
859
|
"types": "./dist/ui/renderers/index.d.ts",
|
|
860
860
|
"bun": "./dist/ui/renderers/index.js",
|
|
861
|
-
"node": "./dist/node/ui/renderers/index.
|
|
861
|
+
"node": "./dist/node/ui/renderers/index.js",
|
|
862
862
|
"browser": "./dist/browser/ui/renderers/index.js",
|
|
863
863
|
"default": "./dist/ui/renderers/index.js"
|
|
864
864
|
},
|
|
865
865
|
"./ui/renderers/project-list.markdown": {
|
|
866
866
|
"types": "./dist/ui/renderers/project-list.markdown.d.ts",
|
|
867
867
|
"bun": "./dist/ui/renderers/project-list.markdown.js",
|
|
868
|
-
"node": "./dist/node/ui/renderers/project-list.markdown.
|
|
868
|
+
"node": "./dist/node/ui/renderers/project-list.markdown.js",
|
|
869
869
|
"browser": "./dist/browser/ui/renderers/project-list.markdown.js",
|
|
870
870
|
"default": "./dist/ui/renderers/project-list.markdown.js"
|
|
871
871
|
},
|
|
872
872
|
"./ui/renderers/project-list.renderer": {
|
|
873
873
|
"types": "./dist/ui/renderers/project-list.renderer.d.ts",
|
|
874
874
|
"bun": "./dist/ui/renderers/project-list.renderer.js",
|
|
875
|
-
"node": "./dist/node/ui/renderers/project-list.renderer.
|
|
875
|
+
"node": "./dist/node/ui/renderers/project-list.renderer.js",
|
|
876
876
|
"browser": "./dist/browser/ui/renderers/project-list.renderer.js",
|
|
877
877
|
"default": "./dist/ui/renderers/project-list.renderer.js"
|
|
878
878
|
},
|
|
879
879
|
"./ui/SaasDashboard": {
|
|
880
880
|
"types": "./dist/ui/SaasDashboard.d.ts",
|
|
881
881
|
"bun": "./dist/ui/SaasDashboard.js",
|
|
882
|
-
"node": "./dist/node/ui/SaasDashboard.
|
|
882
|
+
"node": "./dist/node/ui/SaasDashboard.js",
|
|
883
883
|
"browser": "./dist/browser/ui/SaasDashboard.js",
|
|
884
884
|
"default": "./dist/ui/SaasDashboard.js"
|
|
885
885
|
},
|
|
886
886
|
"./ui/SaasProjectList": {
|
|
887
887
|
"types": "./dist/ui/SaasProjectList.d.ts",
|
|
888
888
|
"bun": "./dist/ui/SaasProjectList.js",
|
|
889
|
-
"node": "./dist/node/ui/SaasProjectList.
|
|
889
|
+
"node": "./dist/node/ui/SaasProjectList.js",
|
|
890
890
|
"browser": "./dist/browser/ui/SaasProjectList.js",
|
|
891
891
|
"default": "./dist/ui/SaasProjectList.js"
|
|
892
892
|
},
|
|
893
893
|
"./ui/SaasSettingsPanel": {
|
|
894
894
|
"types": "./dist/ui/SaasSettingsPanel.d.ts",
|
|
895
895
|
"bun": "./dist/ui/SaasSettingsPanel.js",
|
|
896
|
-
"node": "./dist/node/ui/SaasSettingsPanel.
|
|
896
|
+
"node": "./dist/node/ui/SaasSettingsPanel.js",
|
|
897
897
|
"browser": "./dist/browser/ui/SaasSettingsPanel.js",
|
|
898
898
|
"default": "./dist/ui/SaasSettingsPanel.js"
|
|
899
899
|
}
|