ntk-cms-api 18.3.453 → 18.3.455
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/esm2020/lib/models/entity/sms/smsMainApiPathModel.mjs +1 -1
- package/esm2020/lib/service/core-token/coreTokenNotification.service.mjs +12 -1
- package/fesm2015/ntk-cms-api.mjs +11 -0
- package/fesm2015/ntk-cms-api.mjs.map +1 -1
- package/fesm2020/ntk-cms-api.mjs +11 -0
- package/fesm2020/ntk-cms-api.mjs.map +1 -1
- package/lib/models/entity/sms/smsMainApiPathModel.d.ts +4 -2
- package/lib/service/core-token/coreTokenNotification.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -77,8 +77,10 @@ export declare class SmsMainApiPathModel extends BaseModuleEntity<string> {
|
|
|
77
77
|
processFlow: SmsMainApiPathProcessFlowModel[];
|
|
78
78
|
linkMainImageId?: number;
|
|
79
79
|
linkMainImageIdSrc: string;
|
|
80
|
-
|
|
81
|
-
|
|
80
|
+
hookAddressReceiveMessageAPI: string;
|
|
81
|
+
hookAddressReceiveMessageAPIById: string;
|
|
82
|
+
hookAddressReceiveDeliveryStatusAPI: string;
|
|
83
|
+
hookAddressReceiveDeliveryStatusAPIById: string;
|
|
82
84
|
statusOutOfServiceMonitorApiChar: string;
|
|
83
85
|
statusOutOfServiceActive: boolean;
|
|
84
86
|
statusOutOfServiceExpire?: Date;
|
|
@@ -8,6 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
export declare class CoreTokenNotificationService extends ApiCmsServerBase<CoreTokenNotificationModel, string, FilterModel> {
|
|
9
9
|
getModuleControllerUrl(): string;
|
|
10
10
|
ServiceSendNotification(model: CmsNotificationSendDtoModel): Observable<ErrorExceptionResult<CoreTokenNotificationModel>>;
|
|
11
|
+
ServiceGetAllOnline(): Observable<ErrorExceptionResult<CoreTokenNotificationModel>>;
|
|
11
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<CoreTokenNotificationService, never>;
|
|
12
13
|
static ɵprov: i0.ɵɵInjectableDeclaration<CoreTokenNotificationService>;
|
|
13
14
|
}
|