@idm-plugin/geo 1.5.3 → 1.5.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/dist/index.js +282 -268
- package/dist/index.umd.cjs +2 -2
- package/dist/lane/src/index.d.ts +8 -0
- package/package.json +1 -1
package/dist/lane/src/index.d.ts
CHANGED
|
@@ -325,5 +325,13 @@ export declare class LaneHelper {
|
|
|
325
325
|
requestId?: string;
|
|
326
326
|
open?: string;
|
|
327
327
|
close?: string;
|
|
328
|
+
timeout?: number;
|
|
328
329
|
}): Promise<any>;
|
|
330
|
+
/**
|
|
331
|
+
* 重新加载AI路由数据
|
|
332
|
+
* @param options
|
|
333
|
+
*/
|
|
334
|
+
static reloadAIRoute(options: {
|
|
335
|
+
requestId: string;
|
|
336
|
+
}): Promise<boolean>;
|
|
329
337
|
}
|