dolphindb 3.1.35 → 3.1.37
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/browser.js +1 -1
- package/browser.js.map +1 -1
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/language.d.ts +1 -1
- package/language.js +9 -0
- package/language.js.map +1 -1
- package/package.json +4 -4
- package/test.js.map +1 -1
package/index.d.ts
CHANGED
|
@@ -175,7 +175,7 @@ export interface InspectOptions extends UtilInspectOptions {
|
|
|
175
175
|
export declare function format(type: DdbType, value: DdbValue, le: boolean, options?: InspectOptions): string;
|
|
176
176
|
/** 格式化向量、集合中的第 index 项为字符串,空值返回 'null' 字符串 formatted vector, the index-th item in the collection is a string, a null value returns a 'null' string */
|
|
177
177
|
export declare function formati(obj: DdbVectorObj, index: number, options?: InspectOptions): string;
|
|
178
|
-
export declare function convert(type: DdbType, value: DdbValue, le: boolean, { blob, char, timestamp }?: ConvertOptions): string | number | bigint | boolean |
|
|
178
|
+
export declare function convert(type: DdbType, value: DdbValue, le: boolean, { blob, char, timestamp }?: ConvertOptions): string | number | bigint | boolean | number[] | DdbFunctionDefValue | DdbDurationValue | DdbDecimal32Value | DdbDecimal64Value | DdbDecimal32VectorValue | DdbDecimal64VectorValue | DdbSymbolExtendedValue | string[] | DdbExtObjValue | DdbTensorValue | Uint8Array<ArrayBufferLike> | IotVectorItemValue | DdbDurationVectorValue | DdbDecimal128VectorValue | BigInt128Array | Int8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Float32Array<ArrayBufferLike> | Float64Array<ArrayBufferLike> | BigInt64Array<ArrayBufferLike> | DdbArrayVectorValue | Uint8Array<ArrayBufferLike>[] | DdbObj<DdbValue>[] | DdbMatrixValue | DdbChartValue;
|
|
179
179
|
/** 转换一个向量到 js 原生数组 */
|
|
180
180
|
export declare function converts(type: DdbType, value: DdbVectorValue, rows: number, le: boolean, options?: ConvertOptions): any[] | Uint8Array;
|
|
181
181
|
/** 构造 void 类型,默认为 `DdbVoidType.undefined` */
|
package/index.js
CHANGED
|
@@ -2925,7 +2925,7 @@ export class DDB {
|
|
|
2925
2925
|
});
|
|
2926
2926
|
if (!this.ticket)
|
|
2927
2927
|
try {
|
|
2928
|
-
await
|
|
2928
|
+
await ddb.invoke('login', [this.username, this.password]);
|
|
2929
2929
|
}
|
|
2930
2930
|
catch (error) {
|
|
2931
2931
|
console.log(t('ddb.cancel 无 ticket,尝试通过密码 login 失败'));
|