@kevisual/router 0.0.54 → 0.0.55
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/dist/router-browser.d.ts +3 -1
- package/dist/router.d.ts +3 -1
- package/package.json +2 -2
- package/src/route.ts +3 -1
package/dist/router-browser.d.ts
CHANGED
|
@@ -111,7 +111,9 @@ type Skill<T = SimpleObject$1> = {
|
|
|
111
111
|
skill: string;
|
|
112
112
|
title: string;
|
|
113
113
|
summary?: string;
|
|
114
|
-
args?:
|
|
114
|
+
args?: {
|
|
115
|
+
[key: string]: any;
|
|
116
|
+
};
|
|
115
117
|
} & T;
|
|
116
118
|
/** */
|
|
117
119
|
declare const createSkill: <T = SimpleObject$1>(skill: Skill<T>) => Skill<T>;
|
package/dist/router.d.ts
CHANGED
|
@@ -118,7 +118,9 @@ type Skill<T = SimpleObject$1> = {
|
|
|
118
118
|
skill: string;
|
|
119
119
|
title: string;
|
|
120
120
|
summary?: string;
|
|
121
|
-
args?:
|
|
121
|
+
args?: {
|
|
122
|
+
[key: string]: any;
|
|
123
|
+
};
|
|
122
124
|
} & T;
|
|
123
125
|
/** */
|
|
124
126
|
declare const createSkill: <T = SimpleObject$1>(skill: Skill<T>) => Skill<T>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package",
|
|
3
3
|
"name": "@kevisual/router",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.55",
|
|
5
5
|
"description": "",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/router.js",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
31
31
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
32
32
|
"@types/bun": "^1.3.6",
|
|
33
|
-
"@types/node": "^25.0.
|
|
33
|
+
"@types/node": "^25.0.9",
|
|
34
34
|
"@types/send": "^1.2.1",
|
|
35
35
|
"@types/ws": "^8.18.1",
|
|
36
36
|
"@types/xml2js": "^0.4.14",
|
package/src/route.ts
CHANGED
|
@@ -98,7 +98,9 @@ export type Skill<T = SimpleObject> = {
|
|
|
98
98
|
skill: string;
|
|
99
99
|
title: string;
|
|
100
100
|
summary?: string;
|
|
101
|
-
args?:
|
|
101
|
+
args?: {
|
|
102
|
+
[key: string]: any
|
|
103
|
+
};
|
|
102
104
|
} & T
|
|
103
105
|
/** */
|
|
104
106
|
export const createSkill = <T = SimpleObject>(skill: Skill<T>): Skill<T> => {
|