@geekmidas/constructs 3.0.11 → 3.0.12
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/CHANGELOG.md +18 -0
- package/package.json +94 -49
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @geekmidas/constructs
|
|
2
2
|
|
|
3
|
+
## 3.0.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 🐛 [`d70c6c0`](https://github.com/geekmidas/toolbox/commit/d70c6c0aeb8a79da2473ac77dbd8255a4a2f5651) Thanks [@geekmidas](https://github.com/geekmidas)! - Fix `package.json` exports so TypeScript declarations resolve correctly under NodeNext/Bundler module resolution. Each subpath export now nests `types` inside its `import`/`require` condition, pointing at the `.d.mts` and `.d.cts` files that `tsdown` actually emits (previously the exports referenced non-existent `.d.ts` files, causing type-resolution failures for consumers). Both ESM (`.mjs`) and CJS (`.cjs`) runtime entry points are preserved. Additionally, `@geekmidas/ui` had `import` paths pointing at `.js` files that were never emitted — those are corrected to `.mjs`.
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`d70c6c0`](https://github.com/geekmidas/toolbox/commit/d70c6c0aeb8a79da2473ac77dbd8255a4a2f5651)]:
|
|
10
|
+
- @geekmidas/audit@2.0.1
|
|
11
|
+
- @geekmidas/cache@1.1.1
|
|
12
|
+
- @geekmidas/db@1.0.2
|
|
13
|
+
- @geekmidas/envkit@1.0.7
|
|
14
|
+
- @geekmidas/errors@1.0.1
|
|
15
|
+
- @geekmidas/events@1.1.3
|
|
16
|
+
- @geekmidas/logger@1.0.2
|
|
17
|
+
- @geekmidas/rate-limit@2.0.1
|
|
18
|
+
- @geekmidas/schema@1.0.2
|
|
19
|
+
- @geekmidas/services@1.0.2
|
|
20
|
+
|
|
3
21
|
## 3.0.11
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,53 +1,98 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geekmidas/constructs",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.12",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
"import": {
|
|
9
|
+
"types": "./dist/index.d.mts",
|
|
10
|
+
"default": "./dist/index.mjs"
|
|
11
|
+
},
|
|
12
|
+
"require": {
|
|
13
|
+
"types": "./dist/index.d.cts",
|
|
14
|
+
"default": "./dist/index.cjs"
|
|
15
|
+
}
|
|
11
16
|
},
|
|
12
17
|
"./endpoints": {
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
|
|
18
|
+
"import": {
|
|
19
|
+
"types": "./dist/endpoints/index.d.mts",
|
|
20
|
+
"default": "./dist/endpoints/index.mjs"
|
|
21
|
+
},
|
|
22
|
+
"require": {
|
|
23
|
+
"types": "./dist/endpoints/index.d.cts",
|
|
24
|
+
"default": "./dist/endpoints/index.cjs"
|
|
25
|
+
}
|
|
16
26
|
},
|
|
17
27
|
"./functions": {
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
28
|
+
"import": {
|
|
29
|
+
"types": "./dist/functions/index.d.mts",
|
|
30
|
+
"default": "./dist/functions/index.mjs"
|
|
31
|
+
},
|
|
32
|
+
"require": {
|
|
33
|
+
"types": "./dist/functions/index.d.cts",
|
|
34
|
+
"default": "./dist/functions/index.cjs"
|
|
35
|
+
}
|
|
21
36
|
},
|
|
22
37
|
"./crons": {
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
38
|
+
"import": {
|
|
39
|
+
"types": "./dist/crons/index.d.mts",
|
|
40
|
+
"default": "./dist/crons/index.mjs"
|
|
41
|
+
},
|
|
42
|
+
"require": {
|
|
43
|
+
"types": "./dist/crons/index.d.cts",
|
|
44
|
+
"default": "./dist/crons/index.cjs"
|
|
45
|
+
}
|
|
26
46
|
},
|
|
27
47
|
"./subscribers": {
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
48
|
+
"import": {
|
|
49
|
+
"types": "./dist/subscribers/index.d.mts",
|
|
50
|
+
"default": "./dist/subscribers/index.mjs"
|
|
51
|
+
},
|
|
52
|
+
"require": {
|
|
53
|
+
"types": "./dist/subscribers/index.d.cts",
|
|
54
|
+
"default": "./dist/subscribers/index.cjs"
|
|
55
|
+
}
|
|
31
56
|
},
|
|
32
57
|
"./types": {
|
|
33
|
-
"
|
|
34
|
-
|
|
35
|
-
|
|
58
|
+
"import": {
|
|
59
|
+
"types": "./dist/types.d.mts",
|
|
60
|
+
"default": "./dist/types.mjs"
|
|
61
|
+
},
|
|
62
|
+
"require": {
|
|
63
|
+
"types": "./dist/types.d.cts",
|
|
64
|
+
"default": "./dist/types.cjs"
|
|
65
|
+
}
|
|
36
66
|
},
|
|
37
67
|
"./hono": {
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
68
|
+
"import": {
|
|
69
|
+
"types": "./dist/adaptors/hono.d.mts",
|
|
70
|
+
"default": "./dist/adaptors/hono.mjs"
|
|
71
|
+
},
|
|
72
|
+
"require": {
|
|
73
|
+
"types": "./dist/adaptors/hono.d.cts",
|
|
74
|
+
"default": "./dist/adaptors/hono.cjs"
|
|
75
|
+
}
|
|
41
76
|
},
|
|
42
77
|
"./aws": {
|
|
43
|
-
"
|
|
44
|
-
|
|
45
|
-
|
|
78
|
+
"import": {
|
|
79
|
+
"types": "./dist/adaptors/aws.d.mts",
|
|
80
|
+
"default": "./dist/adaptors/aws.mjs"
|
|
81
|
+
},
|
|
82
|
+
"require": {
|
|
83
|
+
"types": "./dist/adaptors/aws.d.cts",
|
|
84
|
+
"default": "./dist/adaptors/aws.cjs"
|
|
85
|
+
}
|
|
46
86
|
},
|
|
47
87
|
"./testing": {
|
|
48
|
-
"
|
|
49
|
-
|
|
50
|
-
|
|
88
|
+
"import": {
|
|
89
|
+
"types": "./dist/adaptors/testing.d.mts",
|
|
90
|
+
"default": "./dist/adaptors/testing.mjs"
|
|
91
|
+
},
|
|
92
|
+
"require": {
|
|
93
|
+
"types": "./dist/adaptors/testing.d.cts",
|
|
94
|
+
"default": "./dist/adaptors/testing.cjs"
|
|
95
|
+
}
|
|
51
96
|
}
|
|
52
97
|
},
|
|
53
98
|
"repository": {
|
|
@@ -81,33 +126,33 @@
|
|
|
81
126
|
"pg": "~8.16.3",
|
|
82
127
|
"msw": "~2.10.3",
|
|
83
128
|
"zod": "~4.1.13",
|
|
84
|
-
"@geekmidas/
|
|
85
|
-
"@geekmidas/cache": "^1.1.
|
|
86
|
-
"@geekmidas/
|
|
87
|
-
"@geekmidas/
|
|
88
|
-
"@geekmidas/errors": "^1.0.
|
|
89
|
-
"@geekmidas/events": "^1.1.
|
|
90
|
-
"@geekmidas/logger": "^1.0.
|
|
91
|
-
"@geekmidas/rate-limit": "^2.0.
|
|
92
|
-
"@geekmidas/schema": "^1.0.
|
|
93
|
-
"@geekmidas/services": "^1.0.
|
|
94
|
-
"@geekmidas/testkit": "^1.0.
|
|
129
|
+
"@geekmidas/audit": "^2.0.1",
|
|
130
|
+
"@geekmidas/cache": "^1.1.1",
|
|
131
|
+
"@geekmidas/db": "^1.0.2",
|
|
132
|
+
"@geekmidas/envkit": "^1.0.7",
|
|
133
|
+
"@geekmidas/errors": "^1.0.1",
|
|
134
|
+
"@geekmidas/events": "^1.1.3",
|
|
135
|
+
"@geekmidas/logger": "^1.0.2",
|
|
136
|
+
"@geekmidas/rate-limit": "^2.0.1",
|
|
137
|
+
"@geekmidas/schema": "^1.0.2",
|
|
138
|
+
"@geekmidas/services": "^1.0.2",
|
|
139
|
+
"@geekmidas/testkit": "^1.0.7"
|
|
95
140
|
},
|
|
96
141
|
"peerDependencies": {
|
|
97
142
|
"@middy/core": ">=6.3.1",
|
|
98
143
|
"@types/aws-lambda": ">=8.10.92",
|
|
99
144
|
"hono": ">=4.8.2",
|
|
100
145
|
"msw": ">=2.0.0",
|
|
101
|
-
"@geekmidas/audit": "^2.0.
|
|
102
|
-
"@geekmidas/cache": "^1.1.
|
|
103
|
-
"@geekmidas/db": "^1.0.
|
|
104
|
-
"@geekmidas/
|
|
105
|
-
"@geekmidas/
|
|
106
|
-
"@geekmidas/
|
|
107
|
-
"@geekmidas/
|
|
108
|
-
"@geekmidas/rate-limit": "^2.0.
|
|
109
|
-
"@geekmidas/schema": "^1.0.
|
|
110
|
-
"@geekmidas/services": "^1.0.
|
|
146
|
+
"@geekmidas/audit": "^2.0.1",
|
|
147
|
+
"@geekmidas/cache": "^1.1.1",
|
|
148
|
+
"@geekmidas/db": "^1.0.2",
|
|
149
|
+
"@geekmidas/envkit": "^1.0.7",
|
|
150
|
+
"@geekmidas/errors": "^1.0.1",
|
|
151
|
+
"@geekmidas/events": "^1.1.3",
|
|
152
|
+
"@geekmidas/logger": "^1.0.2",
|
|
153
|
+
"@geekmidas/rate-limit": "^2.0.1",
|
|
154
|
+
"@geekmidas/schema": "^1.0.2",
|
|
155
|
+
"@geekmidas/services": "^1.0.2"
|
|
111
156
|
},
|
|
112
157
|
"peerDependenciesMeta": {
|
|
113
158
|
"@geekmidas/audit": {
|