ntk-cms-api 20.25.44 → 20.25.46
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 +985 -990
- package/fesm2022/ntk-cms-api.mjs.map +1 -1
- package/index.d.ts +7 -7
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1941,9 +1941,9 @@ declare class ApiServerBase {
|
|
|
1941
1941
|
setConfig(url: string, ver?: string, apiRetry?: number): void;
|
|
1942
1942
|
get Ver(): string;
|
|
1943
1943
|
cachApiResult: any[];
|
|
1944
|
-
|
|
1945
|
-
cashApiIsValid(serviceNameKay: string, cashApiSeconds?: number):
|
|
1946
|
-
cashApiVlaueSet(serviceNameKay: string, ret: any):
|
|
1944
|
+
cachApiInRunResult: any[];
|
|
1945
|
+
cashApiIsValid(serviceNameKay: string, cashApiSeconds?: number): boolean;
|
|
1946
|
+
cashApiVlaueSet(serviceNameKay: string, ret: any): void;
|
|
1947
1947
|
childConstructor(): any;
|
|
1948
1948
|
getBaseUrl(): string;
|
|
1949
1949
|
getModuleControllerUrl(): string;
|
|
@@ -2149,7 +2149,7 @@ declare class ApiCmsServerBase<TModel, TKey, TFilterModel> extends ApiServerBase
|
|
|
2149
2149
|
ServiceReportFileGetAll(): Observable<ErrorExceptionResult<CoreModuleEntityReportFileModel>>;
|
|
2150
2150
|
ServiceGetAll(model: TFilterModel): Observable<ErrorExceptionResult<TModel>>;
|
|
2151
2151
|
ServiceGetAllEditor(model: TFilterModel): Observable<ErrorExceptionResult<TModel>>;
|
|
2152
|
-
ServiceGetOneById(id: TKey, cashApiSeconds?: number):
|
|
2152
|
+
ServiceGetOneById(id: TKey, cashApiSeconds?: number): Observable<ErrorExceptionResult<TModel>>;
|
|
2153
2153
|
ServiceGetCount(model: FilterModel): Observable<ErrorExceptionResultBase>;
|
|
2154
2154
|
ServiceSetStatus(id: TKey, recordStatus: RecordStatusEnum): Observable<ErrorExceptionResult<TModel>>;
|
|
2155
2155
|
ServiceSetAdminStatus(id: TKey, recordAdminStatus: RecordAdminStatusEnum): Observable<ErrorExceptionResult<TModel>>;
|
|
@@ -5747,18 +5747,18 @@ declare class SmsConfigurationService extends ApiServerConfigSiteBase<SmsModuleC
|
|
|
5747
5747
|
}
|
|
5748
5748
|
|
|
5749
5749
|
declare class SmsApiSendMessageDtoModel {
|
|
5750
|
-
checkProcesses: boolean;
|
|
5751
5750
|
linkApiPathId: string;
|
|
5752
5751
|
linkFromNumber: string;
|
|
5753
5752
|
toNumbers: string;
|
|
5754
5753
|
toContactCategories: string[];
|
|
5755
5754
|
toContactContents: string[];
|
|
5756
5755
|
message: string;
|
|
5757
|
-
sendByQueue: boolean;
|
|
5758
|
-
isFlash: boolean;
|
|
5759
5756
|
scheduleSendStart: Date;
|
|
5760
5757
|
scheduleSendExpire: Date;
|
|
5761
5758
|
scheduleCron: string;
|
|
5759
|
+
optionTypes: string;
|
|
5760
|
+
optionSendByQueue?: boolean;
|
|
5761
|
+
optionCheckProcesses: boolean;
|
|
5762
5762
|
}
|
|
5763
5763
|
|
|
5764
5764
|
declare class SmsApiSendMessageOrderCalculateDtoModel {
|