ntk-cms-api 20.25.54 → 20.25.55
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/fesm2022/ntk-cms-api.mjs +58 -49
- package/fesm2022/ntk-cms-api.mjs.map +1 -1
- package/index.d.ts +2 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1918,7 +1918,7 @@ declare class ApiServerBase {
|
|
|
1918
1918
|
get Ver(): string;
|
|
1919
1919
|
cachApiResult: any[];
|
|
1920
1920
|
cachApiInRunResult: any[];
|
|
1921
|
-
cashApiIsValid(serviceNameKay: string, cashApiSeconds?: number, runApiSeconds?: number): boolean
|
|
1921
|
+
cashApiIsValid(serviceNameKay: string, cashApiSeconds?: number, runApiSeconds?: number): Promise<boolean>;
|
|
1922
1922
|
cashApiVlaueSet(serviceNameKay: string, ret: any): void;
|
|
1923
1923
|
childConstructor(): any;
|
|
1924
1924
|
getBaseUrl(): string;
|
|
@@ -1934,6 +1934,7 @@ declare class ApiServerBase {
|
|
|
1934
1934
|
removeToken(): void;
|
|
1935
1935
|
getHeaders(): any;
|
|
1936
1936
|
handleError(error: any, caught: Observable<any>): Observable<any>;
|
|
1937
|
+
private delay;
|
|
1937
1938
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiServerBase, never>;
|
|
1938
1939
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiServerBase>;
|
|
1939
1940
|
}
|