ntk-cms-api 20.25.53 → 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.
- package/fesm2022/ntk-cms-api.mjs +12 -0
- package/fesm2022/ntk-cms-api.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/package.json +1 -1
package/fesm2022/ntk-cms-api.mjs
CHANGED
|
@@ -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
|
}
|