dolphindb 3.0.24 → 3.0.25
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/index.d.ts +1 -1
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -347,7 +347,7 @@ export interface ConvertOptions {
|
|
|
347
347
|
/** `'string'` blob 类型数据的格式 */
|
|
348
348
|
blob?: 'string' | 'binary';
|
|
349
349
|
}
|
|
350
|
-
export declare function convert(type: DdbType, value: DdbValue, le: boolean, { blob }?: ConvertOptions): string | number | bigint | boolean | Uint8Array |
|
|
350
|
+
export declare function convert(type: DdbType, value: DdbValue, le: boolean, { blob }?: ConvertOptions): string | number | bigint | boolean | Uint8Array | Int32Array | BigInt64Array | string[] | Int8Array | Int16Array | Float32Array | Float64Array | Uint8Array[] | number[] | DdbFunctionDefValue | DdbDurationValue | DdbDecimal32Value | DdbDecimal64Value | DdbDecimal32VectorValue | DdbDecimal64VectorValue | DdbDecimal128VectorValue | BigInt128Array | DdbSymbolExtendedValue | DdbArrayVectorValue | DdbMatrixValue | DdbObj<DdbValue>[] | DdbDurationVectorValue | DdbChartValue;
|
|
351
351
|
/** 转换一个向量到 js 原生数组 */
|
|
352
352
|
export declare function converts(type: DdbType, value: DdbVectorValue, rows: number, le: boolean, options?: ConvertOptions): any[];
|
|
353
353
|
export declare class DdbVoid extends DdbObj<undefined> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dolphindb",
|
|
3
3
|
"description": "DolphinDB JavaScript API",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.25",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
7
7
|
"browser": "./browser.js",
|
|
@@ -40,6 +40,6 @@
|
|
|
40
40
|
"dayjs": "^1.11.11",
|
|
41
41
|
"ipaddr.js": "^2.2.0",
|
|
42
42
|
"tslib": "^2.6.2",
|
|
43
|
-
"xshell": "^1.0.
|
|
43
|
+
"xshell": "^1.0.106"
|
|
44
44
|
}
|
|
45
45
|
}
|