ntk-cms-api 20.25.24 → 20.25.25
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 +1139 -660
- package/fesm2022/ntk-cms-api.mjs.map +1 -1
- package/index.d.ts +11 -13
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1946,9 +1946,6 @@ declare class ApiServerBase {
|
|
|
1946
1946
|
getJWT(): TokenJWTModel;
|
|
1947
1947
|
removeToken(): void;
|
|
1948
1948
|
getHeaders(): any;
|
|
1949
|
-
errorExceptionResultCheck<TModel>(model: ErrorExceptionResult<TModel>): ErrorExceptionResult<TModel>;
|
|
1950
|
-
errorExceptionResultBaseCheck(model: ErrorExceptionResultBase): ErrorExceptionResultBase;
|
|
1951
|
-
errorExceptionResultCheckExportFile(model: ErrorExceptionResultExportFile): ErrorExceptionResultExportFile;
|
|
1952
1949
|
handleError(error: any, caught: Observable<any>): Observable<any>;
|
|
1953
1950
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiServerBase, never>;
|
|
1954
1951
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiServerBase>;
|
|
@@ -5743,6 +5740,16 @@ declare class SmsApiSendMessageDtoModel {
|
|
|
5743
5740
|
scheduleCron: string;
|
|
5744
5741
|
}
|
|
5745
5742
|
|
|
5743
|
+
declare class SmsApiSendMessageOrderCalculateDtoModel {
|
|
5744
|
+
linkApiPathId: string;
|
|
5745
|
+
linkFromNumber: string;
|
|
5746
|
+
toNumbers: string;
|
|
5747
|
+
toContactCategories: string[];
|
|
5748
|
+
toContactContents: string[];
|
|
5749
|
+
message: string;
|
|
5750
|
+
isFlash: boolean;
|
|
5751
|
+
}
|
|
5752
|
+
|
|
5746
5753
|
declare class SmsApiSendMessageTestDtoModel {
|
|
5747
5754
|
linkApiPathId: string;
|
|
5748
5755
|
fromNumber: string;
|
|
@@ -5788,21 +5795,12 @@ declare class SmsApiSendResultModel {
|
|
|
5788
5795
|
serviceCreditSum: number;
|
|
5789
5796
|
}
|
|
5790
5797
|
|
|
5791
|
-
declare class SmsApiSendMessageOrderCalculateDtoModel {
|
|
5792
|
-
linkApiPathId: string;
|
|
5793
|
-
linkFromNumber: string;
|
|
5794
|
-
toNumbers: string;
|
|
5795
|
-
toContactCategories: string[];
|
|
5796
|
-
toContactContents: string[];
|
|
5797
|
-
message: string;
|
|
5798
|
-
isFlash: boolean;
|
|
5799
|
-
}
|
|
5800
|
-
|
|
5801
5798
|
declare class SmsActionService extends ApiServerBase {
|
|
5802
5799
|
getModuleControllerUrl(): string;
|
|
5803
5800
|
ServiceSendMessageTest(model: SmsApiSendMessageTestDtoModel): Observable<ErrorExceptionResult<SmsApiSendResultModel>>;
|
|
5804
5801
|
ServiceSendMessage(model: SmsApiSendMessageDtoModel): Observable<ErrorExceptionResult<SmsApiSendResultModel>>;
|
|
5805
5802
|
ServiceOrderCalculate(model: SmsApiSendMessageOrderCalculateDtoModel): Observable<ErrorExceptionResult<SmsApiSendOrderCalculateResultModel>>;
|
|
5803
|
+
ServiceGetMessagePlaceholders(): Observable<string[]>;
|
|
5806
5804
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmsActionService, never>;
|
|
5807
5805
|
static ɵprov: i0.ɵɵInjectableDeclaration<SmsActionService>;
|
|
5808
5806
|
}
|