@maiyunnet/kebab 8.0.4 → 8.0.5
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/doc/kebab-rag.md +3 -3
- package/index.d.ts +2 -2
- package/index.js +1 -1
- package/package.json +1 -1
package/doc/kebab-rag.md
CHANGED
|
@@ -560,9 +560,9 @@ Defined in: [index.ts:148](https://github.com/maiyunnet/kebab/blob/master/index.
|
|
|
560
560
|
|
|
561
561
|
## Properties
|
|
562
562
|
|
|
563
|
-
### charset
|
|
563
|
+
### charset?
|
|
564
564
|
|
|
565
|
-
> **charset**: `string`
|
|
565
|
+
> `optional` **charset**: `string`
|
|
566
566
|
|
|
567
567
|
Defined in: [index.ts:151](https://github.com/maiyunnet/kebab/blob/master/index.ts#L151)
|
|
568
568
|
|
|
@@ -1385,7 +1385,7 @@ index/variables/VER.md
|
|
|
1385
1385
|
|
|
1386
1386
|
# Variable: VER
|
|
1387
1387
|
|
|
1388
|
-
> `const` **VER**: `"8.0.
|
|
1388
|
+
> `const` **VER**: `"8.0.5"` = `'8.0.5'`
|
|
1389
1389
|
|
|
1390
1390
|
Defined in: [index.ts:10](https://github.com/maiyunnet/kebab/blob/master/index.ts#L10)
|
|
1391
1391
|
|
package/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* --- 本文件用来定义每个目录实体地址的常量 ---
|
|
6
6
|
*/
|
|
7
7
|
/** --- 当前系统版本号 --- */
|
|
8
|
-
export declare const VER = "8.0.
|
|
8
|
+
export declare const VER = "8.0.5";
|
|
9
9
|
/** --- 框架根目录,以 / 结尾 --- */
|
|
10
10
|
export declare const ROOT_PATH: string;
|
|
11
11
|
export declare const LIB_PATH: string;
|
|
@@ -117,7 +117,7 @@ export interface IConfigTurnstile {
|
|
|
117
117
|
export interface IConfigDb {
|
|
118
118
|
'host': string;
|
|
119
119
|
'port': number;
|
|
120
|
-
'charset'
|
|
120
|
+
'charset'?: string;
|
|
121
121
|
'name'?: string;
|
|
122
122
|
'user': string;
|
|
123
123
|
'pwd': string;
|
package/index.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* --- 本文件用来定义每个目录实体地址的常量 ---
|
|
7
7
|
*/
|
|
8
8
|
/** --- 当前系统版本号 --- */
|
|
9
|
-
export const VER = '8.0.
|
|
9
|
+
export const VER = '8.0.5';
|
|
10
10
|
// --- 服务端用的路径 ---
|
|
11
11
|
const imu = decodeURIComponent(import.meta.url).replace('file://', '').replace(/^\/(\w:)/, '$1');
|
|
12
12
|
/** --- /xxx/xxx --- */
|