ntk-cms-api 20.25.22 → 20.25.23

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.
@@ -7608,6 +7608,44 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImpor
7608
7608
  type: Injectable
7609
7609
  }] });
7610
7610
 
7611
+ class SmsClientSendMessageDtoModel {
7612
+ }
7613
+
7614
+ class SmsActionClientService extends ApiServerBase {
7615
+ getModuleControllerUrl() {
7616
+ return 'SmsActionClient';
7617
+ }
7618
+ ServiceSendMessage(model) {
7619
+ if (model == null) {
7620
+ model = new SmsClientSendMessageDtoModel();
7621
+ }
7622
+ return this.http
7623
+ .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/SendMessage', model, {
7624
+ headers: this.getHeaders(),
7625
+ })
7626
+ .pipe(retry(this.configApiRetry), map((ret) => {
7627
+ return this.errorExceptionResultCheck(ret);
7628
+ }));
7629
+ }
7630
+ ServiceOrderCalculate(model) {
7631
+ if (model == null) {
7632
+ model = new SmsClientSendMessageDtoModel();
7633
+ }
7634
+ return this.http
7635
+ .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/OrderCalculate', model, {
7636
+ headers: this.getHeaders(),
7637
+ })
7638
+ .pipe(retry(this.configApiRetry), map((ret) => {
7639
+ return this.errorExceptionResultCheck(ret);
7640
+ }));
7641
+ }
7642
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: SmsActionClientService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
7643
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: SmsActionClientService }); }
7644
+ }
7645
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: SmsActionClientService, decorators: [{
7646
+ type: Injectable
7647
+ }] });
7648
+
7611
7649
  class SmsEnumService extends ApiServerBase {
7612
7650
  getModuleControllerUrl() {
7613
7651
  return 'SmsEnum';
@@ -8042,6 +8080,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImpor
8042
8080
  type: Injectable
8043
8081
  }] });
8044
8082
 
8083
+ class SmsMainClientPermissionService extends ApiCmsServerBase {
8084
+ getModuleControllerUrl() {
8085
+ return 'SmsMainClientPermission';
8086
+ }
8087
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: SmsMainClientPermissionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
8088
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: SmsMainClientPermissionService }); }
8089
+ }
8090
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: SmsMainClientPermissionService, decorators: [{
8091
+ type: Injectable
8092
+ }] });
8093
+
8045
8094
  class SmsMainMessageCategoryService extends ApiCmsServerBase {
8046
8095
  getModuleControllerUrl() {
8047
8096
  return 'SmsMainMessageCategory';
@@ -8073,55 +8122,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImpor
8073
8122
  type: Injectable
8074
8123
  }] });
8075
8124
 
8076
- class SmsMainClientPermissionService extends ApiCmsServerBase {
8077
- getModuleControllerUrl() {
8078
- return 'SmsMainClientPermission';
8079
- }
8080
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: SmsMainClientPermissionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
8081
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: SmsMainClientPermissionService }); }
8082
- }
8083
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: SmsMainClientPermissionService, decorators: [{
8084
- type: Injectable
8085
- }] });
8086
-
8087
- class SmsClientSendMessageDtoModel {
8088
- }
8089
-
8090
- class SmsActionClientService extends ApiServerBase {
8091
- getModuleControllerUrl() {
8092
- return 'SmsActionClient';
8093
- }
8094
- ServiceSendMessage(model) {
8095
- if (model == null) {
8096
- model = new SmsClientSendMessageDtoModel();
8097
- }
8098
- return this.http
8099
- .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/SendMessage', model, {
8100
- headers: this.getHeaders(),
8101
- })
8102
- .pipe(retry(this.configApiRetry), map((ret) => {
8103
- return this.errorExceptionResultCheck(ret);
8104
- }));
8105
- }
8106
- ServiceOrderCalculate(model) {
8107
- if (model == null) {
8108
- model = new SmsClientSendMessageDtoModel();
8109
- }
8110
- return this.http
8111
- .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/OrderCalculate', model, {
8112
- headers: this.getHeaders(),
8113
- })
8114
- .pipe(retry(this.configApiRetry), map((ret) => {
8115
- return this.errorExceptionResultCheck(ret);
8116
- }));
8117
- }
8118
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: SmsActionClientService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
8119
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: SmsActionClientService }); }
8120
- }
8121
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: SmsActionClientService, decorators: [{
8122
- type: Injectable
8123
- }] });
8124
-
8125
8125
  class SmsApiSendResultModel {
8126
8126
  }
8127
8127