ntk-cms-api 20.25.53 → 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 +70 -49
- package/fesm2022/ntk-cms-api.mjs.map +1 -1
- package/index.d.ts +3 -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
|
}
|
|
@@ -6717,6 +6718,7 @@ declare class ContactContentService extends ApiCmsServerBase<ContactContentModel
|
|
|
6717
6718
|
ServiceGetAllWithHierarchyCategoryId(Id: string, model: FilterModel): Observable<ErrorExceptionResult<ContactContentModel>>;
|
|
6718
6719
|
ServiceImportPreview(file: File): Observable<ErrorExceptionResult<ContactImportPreviewResponseModel>>;
|
|
6719
6720
|
ServiceImportApply(model: ContactImportApplyRequestDtoModel): Observable<ErrorExceptionResult<ContactImportApplyResultModel>>;
|
|
6721
|
+
ServiceFindByNumber(number: string): Observable<ErrorExceptionResult<ContactContentModel>>;
|
|
6720
6722
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContactContentService, never>;
|
|
6721
6723
|
static ɵprov: i0.ɵɵInjectableDeclaration<ContactContentService>;
|
|
6722
6724
|
}
|