ntk-cms-api 20.25.34 → 20.25.36
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 +15 -0
- package/fesm2022/ntk-cms-api.mjs.map +1 -1
- package/index.d.ts +5 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -6625,6 +6625,10 @@ declare class ContactContentModel extends BaseModuleEntity<string> {
|
|
|
6625
6625
|
linkMainImageIdSrc: string;
|
|
6626
6626
|
numberHidden: boolean;
|
|
6627
6627
|
contentCategores: ContactContentCategoryModel[];
|
|
6628
|
+
email: string;
|
|
6629
|
+
organization: string;
|
|
6630
|
+
jobTitle: string;
|
|
6631
|
+
notes: string;
|
|
6628
6632
|
}
|
|
6629
6633
|
|
|
6630
6634
|
declare class ContactContentCategoryModel extends BaseModuleEntity<string> {
|
|
@@ -6697,6 +6701,7 @@ declare enum GoogleContactFileType {
|
|
|
6697
6701
|
|
|
6698
6702
|
declare class ContactContentService extends ApiCmsServerBase<ContactContentModel, string, FilterModel> {
|
|
6699
6703
|
getModuleControllerUrl(): string;
|
|
6704
|
+
ServiceGetAllWithHierarchyCategoryId(Id: string, model: FilterModel): Observable<ErrorExceptionResult<ContactContentModel>>;
|
|
6700
6705
|
ServiceImportPreview(file: File): Observable<ErrorExceptionResult<ContactImportPreviewResponseModel>>;
|
|
6701
6706
|
ServiceImportApply(model: ContactImportApplyRequestDtoModel): Observable<ErrorExceptionResult<ContactImportApplyResultModel>>;
|
|
6702
6707
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContactContentService, never>;
|