@dj1029/plugin-smart-sl 0.0.25 → 0.0.27
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/lib/tool.d.ts.map +1 -1
- package/dist/lib/tool.js +3 -2
- package/package.json +1 -1
package/dist/lib/tool.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tool.d.ts","sourceRoot":"","sources":["../../src/lib/tool.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAGvB,wBAAgB,mBAAmB;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"tool.d.ts","sourceRoot":"","sources":["../../src/lib/tool.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAGvB,wBAAgB,mBAAmB;;;;;;;;;;;;;;;yDA8BlC"}
|
package/dist/lib/tool.js
CHANGED
|
@@ -21,12 +21,13 @@ export function getSmartBIAuthToken() {
|
|
|
21
21
|
return "I don't know how to do that because: " + getErrorMessage(error);
|
|
22
22
|
}
|
|
23
23
|
}, {
|
|
24
|
-
name: '
|
|
24
|
+
name: 'smart_auth_token',
|
|
25
25
|
description: `获取smartBI系统的认证token`,
|
|
26
26
|
/** 这里决定了 测试的参数 */
|
|
27
27
|
schema: z.object({
|
|
28
28
|
username: z.string().describe('连接用户名'),
|
|
29
29
|
password: z.string().describe('连接密码')
|
|
30
|
-
})
|
|
30
|
+
}),
|
|
31
|
+
verboseParsingErrors: true
|
|
31
32
|
});
|
|
32
33
|
}
|