@navios/openapi 1.0.0-alpha.3 → 1.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@navios/openapi",
|
|
3
|
-
"version": "1.0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "Oleksandr Hanzha",
|
|
6
6
|
"email": "alex@granted.name"
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
},
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@navios/core": "^1.0.0
|
|
15
|
+
"@navios/core": "^1.0.0",
|
|
16
16
|
"zod": "^3.25.0 || ^4.0.0"
|
|
17
17
|
},
|
|
18
18
|
"typings": "./lib/index.d.mts",
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@navios/builder": "^1.0.0
|
|
45
|
-
"@navios/core": "^1.0.0
|
|
44
|
+
"@navios/builder": "^1.0.0",
|
|
45
|
+
"@navios/core": "^1.0.0",
|
|
46
46
|
"typescript": "^5.9.3",
|
|
47
47
|
"zod": "^4.2.1"
|
|
48
48
|
},
|
|
@@ -106,6 +106,7 @@ describe('EndpointScannerService', () => {
|
|
|
106
106
|
guards: new Set(),
|
|
107
107
|
overrides: new Set(),
|
|
108
108
|
customAttributes: new Map(),
|
|
109
|
+
customEntries: new Map(),
|
|
109
110
|
}
|
|
110
111
|
|
|
111
112
|
const modules = new Map([['TestModule', moduleMetadata]])
|
|
@@ -127,6 +128,7 @@ describe('EndpointScannerService', () => {
|
|
|
127
128
|
guards: new Set(),
|
|
128
129
|
overrides: new Set(),
|
|
129
130
|
customAttributes: new Map(),
|
|
131
|
+
customEntries: new Map(),
|
|
130
132
|
}
|
|
131
133
|
|
|
132
134
|
const modules = new Map([['EmptyModule', moduleMetadata]])
|
|
@@ -145,6 +147,7 @@ describe('EndpointScannerService', () => {
|
|
|
145
147
|
guards: new Set(),
|
|
146
148
|
overrides: new Set(),
|
|
147
149
|
customAttributes: new Map(),
|
|
150
|
+
customEntries: new Map(),
|
|
148
151
|
}
|
|
149
152
|
|
|
150
153
|
const modules = new Map([['NoControllerModule', moduleMetadata]])
|
|
@@ -176,6 +179,7 @@ describe('EndpointScannerService', () => {
|
|
|
176
179
|
guards: new Set(),
|
|
177
180
|
overrides: new Set(),
|
|
178
181
|
customAttributes: new Map(),
|
|
182
|
+
customEntries: new Map(),
|
|
179
183
|
}
|
|
180
184
|
|
|
181
185
|
const modules = new Map([['TestModule', moduleMetadata]])
|
|
@@ -221,6 +225,7 @@ describe('EndpointScannerService', () => {
|
|
|
221
225
|
guards: new Set(),
|
|
222
226
|
overrides: new Set(),
|
|
223
227
|
customAttributes: new Map(),
|
|
228
|
+
customEntries: new Map(),
|
|
224
229
|
}
|
|
225
230
|
|
|
226
231
|
const modules = new Map([['TestModule', moduleMetadata]])
|
|
@@ -274,6 +279,7 @@ describe('EndpointScannerService', () => {
|
|
|
274
279
|
guards: new Set(),
|
|
275
280
|
overrides: new Set(),
|
|
276
281
|
customAttributes: new Map(),
|
|
282
|
+
customEntries: new Map(),
|
|
277
283
|
}
|
|
278
284
|
|
|
279
285
|
// Module 2
|
|
@@ -298,6 +304,7 @@ describe('EndpointScannerService', () => {
|
|
|
298
304
|
guards: new Set(),
|
|
299
305
|
overrides: new Set(),
|
|
300
306
|
customAttributes: new Map(),
|
|
307
|
+
customEntries: new Map(),
|
|
301
308
|
}
|
|
302
309
|
|
|
303
310
|
const modules = new Map([
|
|
@@ -350,6 +357,7 @@ describe('EndpointScannerService', () => {
|
|
|
350
357
|
guards: new Set(),
|
|
351
358
|
overrides: new Set(),
|
|
352
359
|
customAttributes: new Map(),
|
|
360
|
+
customEntries: new Map(),
|
|
353
361
|
}
|
|
354
362
|
|
|
355
363
|
const modules = new Map([['TestModule', moduleMetadata]])
|