ntk-cms-api 20.25.52 → 20.25.54

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.
@@ -7715,7 +7715,7 @@ class SmsLogOutBoxModel extends BaseModuleEntity {
7715
7715
  class SmsLogOutBoxQueueModel extends BaseModuleEntity {
7716
7716
  constructor() {
7717
7717
  super(...arguments);
7718
- this.mainAdminRecordStatus = RecordAdminStatusEnum.Pending;
7718
+ this.adminRecordStatus = RecordAdminStatusEnum.Pending;
7719
7719
  }
7720
7720
  }
7721
7721
 
@@ -9083,6 +9083,18 @@ class ContactContentService extends ApiCmsServerBase {
9083
9083
  return ret;
9084
9084
  }));
9085
9085
  }
9086
+ ServiceFindByNumber(number) {
9087
+ return this.http
9088
+ .get(this.getBaseUrl() +
9089
+ this.getModuleControllerUrl() +
9090
+ '/FindByNumber/' +
9091
+ number, {
9092
+ headers: this.getHeaders(),
9093
+ })
9094
+ .pipe(retry(this.configApiRetry), map((ret) => {
9095
+ return ret;
9096
+ }));
9097
+ }
9086
9098
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: ContactContentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
9087
9099
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: ContactContentService }); }
9088
9100
  }