@feasibleone/blong-test 1.6.1 → 1.6.3
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 +14 -0
- package/dist/adapter/backend.d.ts +3 -0
- package/dist/adapter/backend.d.ts.map +1 -0
- package/dist/adapter/testDispatch.d.ts +6 -0
- package/dist/adapter/testDispatch.d.ts.map +1 -0
- package/dist/browser.d.ts +12 -0
- package/dist/browser.d.ts.map +1 -0
- package/dist/package.json +2 -2
- package/dist/server.d.ts +7 -0
- package/dist/server.d.ts.map +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.6.3](https://github.com/feasibleone/blong/compare/blong-test-v1.6.2...blong-test-v1.6.3) (2026-03-02)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* dependencies ([985e389](https://github.com/feasibleone/blong/commit/985e389e982a9f3937a5a192131a9cde12d01c3c))
|
|
9
|
+
|
|
10
|
+
## [1.6.2](https://github.com/feasibleone/blong/compare/blong-test-v1.6.1...blong-test-v1.6.2) (2026-03-02)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* add TypeScript declaration and declarationMap options to tsconfig for openapi and test packages ([8ee261d](https://github.com/feasibleone/blong/commit/8ee261d7995f3dc9e679cf5cb2383482ebdbd299))
|
|
16
|
+
|
|
3
17
|
## [1.6.1](https://github.com/feasibleone/blong/compare/blong-test-v1.6.0...blong-test-v1.6.1) (2026-03-02)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"backend.d.ts","sourceRoot":"","sources":["../../adapter/backend.ts"],"names":[],"mappings":";AAEA,wBAEI"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"testDispatch.d.ts","sourceRoot":"","sources":["../../adapter/testDispatch.ts"],"names":[],"mappings":";;;;AAEA,wBAQI"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare const _default: import("@feasibleone/blong").SolutionFactory<import("typebox").TObject<{
|
|
2
|
+
error: import("typebox").TBoolean;
|
|
3
|
+
adapter: import("typebox").TBoolean;
|
|
4
|
+
backend: import("typebox").TObject<{
|
|
5
|
+
logLevel: import("typebox").TString;
|
|
6
|
+
imports: import("typebox").TArray<import("typebox").TUnknown>;
|
|
7
|
+
url: import("typebox").TString;
|
|
8
|
+
}>;
|
|
9
|
+
test: import("typebox").TObject<{}>;
|
|
10
|
+
}>>;
|
|
11
|
+
export default _default;
|
|
12
|
+
//# sourceMappingURL=browser.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"browser.d.ts","sourceRoot":"","sources":["../browser.ts"],"names":[],"mappings":";;;;;;;;;;AAEA,wBA6BI"}
|
package/dist/package.json
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"./package.json": "./package.json"
|
|
26
26
|
},
|
|
27
27
|
"type": "module",
|
|
28
|
-
"version": "1.6.
|
|
28
|
+
"version": "1.6.3",
|
|
29
29
|
"dependencies": {},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"@feasibleone/blong": "^1.0.0"
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"eslint": "~9.39.2",
|
|
40
40
|
"react-dom": "^18.3.1",
|
|
41
41
|
"react": "^18.3.1",
|
|
42
|
-
"tap": "^21.
|
|
42
|
+
"tap": "^21.6.2",
|
|
43
43
|
"typescript": "^5.9.3"
|
|
44
44
|
}
|
|
45
45
|
}
|
package/dist/server.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
declare const _default: import("@feasibleone/blong").SolutionFactory<import("typebox").TObject<{
|
|
2
|
+
error: import("typebox").TBoolean;
|
|
3
|
+
adapter: import("typebox").TBoolean;
|
|
4
|
+
backend: import("typebox").TBoolean;
|
|
5
|
+
}>>;
|
|
6
|
+
export default _default;
|
|
7
|
+
//# sourceMappingURL=server.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../server.ts"],"names":[],"mappings":";;;;;AAEA,wBAgBI"}
|
package/package.json
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"./package.json": "./package.json"
|
|
21
21
|
},
|
|
22
22
|
"type": "module",
|
|
23
|
-
"version": "1.6.
|
|
23
|
+
"version": "1.6.3",
|
|
24
24
|
"dependencies": {},
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"@feasibleone/blong": "^1.0.0"
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"eslint": "~9.39.2",
|
|
35
35
|
"react-dom": "^18.3.1",
|
|
36
36
|
"react": "^18.3.1",
|
|
37
|
-
"tap": "^21.
|
|
37
|
+
"tap": "^21.6.2",
|
|
38
38
|
"typescript": "^5.9.3"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|