ntk-cms-api 1.2.247 → 1.2.248

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.
Files changed (28) hide show
  1. package/esm2020/lib/models/entity/link-management/_export.mjs +4 -3
  2. package/esm2020/lib/models/entity/link-management/linkManagementBillboardCategoryModel.mjs +5 -0
  3. package/esm2020/lib/models/entity/link-management/linkManagementBillboardModel.mjs +1 -1
  4. package/esm2020/lib/models/entity/link-management/linkManagementCategoryModel.mjs +5 -0
  5. package/esm2020/lib/models/entity/link-management/linkManagementTargetCategoryModel.mjs +1 -1
  6. package/esm2020/lib/models/entity/link-management/linkManagementTargetModel.mjs +1 -1
  7. package/esm2020/lib/service/link-management/_export.mjs +3 -2
  8. package/esm2020/lib/service/link-management/linkManagementBillboardCategory.service.mjs +14 -0
  9. package/esm2020/lib/service/link-management/linkManagementCategory.service.mjs +14 -0
  10. package/esm2020/lib/service/link-management/linkManagementTargetCategory.service.mjs +1 -1
  11. package/fesm2015/ntk-cms-api.mjs +23 -8
  12. package/fesm2015/ntk-cms-api.mjs.map +1 -1
  13. package/fesm2020/ntk-cms-api.mjs +23 -8
  14. package/fesm2020/ntk-cms-api.mjs.map +1 -1
  15. package/lib/models/entity/link-management/_export.d.ts +3 -2
  16. package/lib/models/entity/link-management/linkManagementBillboardCategoryModel.d.ts +11 -0
  17. package/lib/models/entity/link-management/linkManagementBillboardModel.d.ts +2 -2
  18. package/lib/models/entity/link-management/linkManagementCategoryModel.d.ts +12 -0
  19. package/lib/models/entity/link-management/linkManagementTargetCategoryModel.d.ts +7 -12
  20. package/lib/models/entity/link-management/linkManagementTargetModel.d.ts +3 -0
  21. package/lib/service/link-management/_export.d.ts +2 -1
  22. package/lib/service/link-management/linkManagementBillboardCategory.service.d.ts +9 -0
  23. package/lib/service/link-management/linkManagementCategory.service.d.ts +9 -0
  24. package/package.json +1 -1
  25. package/esm2020/lib/models/entity/link-management/linkManagementBillboardTargetCategoryModel.mjs +0 -5
  26. package/esm2020/lib/service/link-management/linkManagementBillboardTargetCategory.service.mjs +0 -14
  27. package/lib/models/entity/link-management/linkManagementBillboardTargetCategoryModel.d.ts +0 -11
  28. package/lib/service/link-management/linkManagementBillboardTargetCategory.service.d.ts +0 -9
@@ -3,8 +3,9 @@ export * from './linkManagementAccountingDetailModel';
3
3
  export * from './linkManagementAccountingModel';
4
4
  export * from './linkManagementBillboardModel';
5
5
  export * from './linkManagementBillboardPatternModel';
6
- export * from './linkManagementBillboardTargetCategoryModel';
6
+ export * from './linkManagementBillboardCategoryModel';
7
7
  export * from './linkManagementMemberModel';
8
8
  export * from './linkManagementTargetBillboardLogModel';
9
- export * from './linkManagementTargetCategoryModel';
9
+ export * from './linkManagementCategoryModel';
10
10
  export * from './linkManagementTargetModel';
11
+ export * from './linkManagementTargetCategoryModel';
@@ -0,0 +1,11 @@
1
+ import { BaseModuleEntity } from '../base/baseModuleEntity';
2
+ import { LinkManagementBillboardModel } from './linkManagementBillboardModel';
3
+ import { LinkManagementCategoryModel } from './linkManagementCategoryModel';
4
+ export declare class LinkManagementBillboardCategoryModel extends BaseModuleEntity<number> {
5
+ linkCategoryId: number;
6
+ virtual_Category: LinkManagementCategoryModel;
7
+ category: LinkManagementCategoryModel;
8
+ linkManagementBillboardId: number;
9
+ virtual_Billboard: LinkManagementBillboardModel;
10
+ billboard: LinkManagementBillboardModel;
11
+ }
@@ -1,6 +1,6 @@
1
1
  import { BaseModuleEntity } from '../base/baseModuleEntity';
2
+ import { LinkManagementBillboardCategoryModel } from './linkManagementBillboardCategoryModel';
2
3
  import { LinkManagementBillboardPatternModel } from './linkManagementBillboardPatternModel';
3
- import { LinkManagementBillboardTargetCategoryModel } from './linkManagementBillboardTargetCategoryModel';
4
4
  import { LinkManagementMemberModel } from './linkManagementMemberModel';
5
5
  export declare class LinkManagementBillboardModel extends BaseModuleEntity<number> {
6
6
  title: string;
@@ -16,7 +16,7 @@ export declare class LinkManagementBillboardModel extends BaseModuleEntity<numbe
16
16
  linkBillboardPatternId: number;
17
17
  virtual_BillboardPattern: LinkManagementBillboardPatternModel;
18
18
  billboardPattern: LinkManagementBillboardPatternModel;
19
- billboardTargetCategories: LinkManagementBillboardTargetCategoryModel[];
19
+ billboardCategories: LinkManagementBillboardCategoryModel[];
20
20
  linkMainImageIdSrc: string;
21
21
  linkFileIdsSrc: string[];
22
22
  billboardScript: string;
@@ -0,0 +1,12 @@
1
+ import { BaseModuleEntity } from '../base/baseModuleEntity';
2
+ export declare class LinkManagementCategoryModel extends BaseModuleEntity<number> {
3
+ title: string;
4
+ linkMainImageId?: number;
5
+ description: string;
6
+ fontIcon: string;
7
+ linkParentId?: number;
8
+ virtual_TargetCategory: LinkManagementCategoryModel;
9
+ targetCategory: LinkManagementCategoryModel;
10
+ children: LinkManagementCategoryModel[];
11
+ linkMainImageIdSrc: string;
12
+ }
@@ -1,16 +1,11 @@
1
1
  import { BaseModuleEntity } from '../base/baseModuleEntity';
2
- import { LinkManagementBillboardTargetCategoryModel } from './linkManagementBillboardTargetCategoryModel';
3
2
  import { LinkManagementTargetModel } from './linkManagementTargetModel';
3
+ import { LinkManagementCategoryModel } from './linkManagementCategoryModel';
4
4
  export declare class LinkManagementTargetCategoryModel extends BaseModuleEntity<number> {
5
- title: string;
6
- linkMainImageId?: number;
7
- description: string;
8
- fontIcon: string;
9
- linkParentId?: number;
10
- virtual_TargetCategory: LinkManagementTargetCategoryModel;
11
- targetCategory: LinkManagementTargetCategoryModel;
12
- children: LinkManagementTargetCategoryModel[];
13
- target: LinkManagementTargetModel[];
14
- billboardTargetCategory: LinkManagementBillboardTargetCategoryModel[];
15
- linkMainImageIdSrc: string;
5
+ linkCategoryId: number;
6
+ virtual_Category: LinkManagementCategoryModel;
7
+ category: LinkManagementCategoryModel;
8
+ linkManagementTargetId: number;
9
+ virtual_Target: LinkManagementTargetModel;
10
+ target: LinkManagementTargetModel;
16
11
  }
@@ -32,4 +32,7 @@ export declare class LinkManagementTargetModel extends BaseModuleEntity<number>
32
32
  urlViewContent: string;
33
33
  urlViewContentShort: string;
34
34
  urlViewContentQRCodeBase64: string;
35
+ moduleName: string;
36
+ moduleEntityName: string;
37
+ moduleEntityId: string;
35
38
  }
@@ -4,8 +4,9 @@ export * from './linkManagementAccounting.service';
4
4
  export * from './linkManagementAccountingDetail.service';
5
5
  export * from './linkManagementBillboard.service';
6
6
  export * from './linkManagementBillboardPattern.service';
7
- export * from './linkManagementBillboardTargetCategory.service';
7
+ export * from './linkManagementBillboardCategory.service';
8
8
  export * from './linkManagementMember.service';
9
9
  export * from './linkManagementTarget.service';
10
10
  export * from './linkManagementTargetBillboardLog.service';
11
+ export * from './linkManagementCategory.service';
11
12
  export * from './linkManagementTargetCategory.service';
@@ -0,0 +1,9 @@
1
+ import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
2
+ import { FilterModel } from '../../models/entity/base/filterModel';
3
+ import { LinkManagementBillboardCategoryModel } from '../../models/entity/link-management/linkManagementBillboardCategoryModel';
4
+ import * as i0 from "@angular/core";
5
+ export declare class LinkManagementBillboardCategoryService extends ApiCmsServerBase<LinkManagementBillboardCategoryModel, number, FilterModel> {
6
+ getModuleControllerUrl(): string;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<LinkManagementBillboardCategoryService, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<LinkManagementBillboardCategoryService>;
9
+ }
@@ -0,0 +1,9 @@
1
+ import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
2
+ import { FilterModel } from '../../models/entity/base/filterModel';
3
+ import { LinkManagementCategoryModel } from '../../models/entity/link-management/linkManagementCategoryModel';
4
+ import * as i0 from "@angular/core";
5
+ export declare class LinkManagementCategoryService extends ApiCmsServerBase<LinkManagementCategoryModel, number, FilterModel> {
6
+ getModuleControllerUrl(): string;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<LinkManagementCategoryService, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<LinkManagementCategoryService>;
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ntk-cms-api",
3
- "version": "1.2.247",
3
+ "version": "1.2.248",
4
4
  "description": "Ntk Cms Api And Model For Typscript",
5
5
  "author": "Alireza-Karavi",
6
6
  "license": "ISC",
@@ -1,5 +0,0 @@
1
- import { BaseModuleEntity } from '../base/baseModuleEntity';
2
- //@@tag-Version-2201011
3
- export class LinkManagementBillboardTargetCategoryModel extends BaseModuleEntity {
4
- }
5
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGlua01hbmFnZW1lbnRCaWxsYm9hcmRUYXJnZXRDYXRlZ29yeU1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbnRrLWNtcy1hcGkvc3JjL2xpYi9tb2RlbHMvZW50aXR5L2xpbmstbWFuYWdlbWVudC9saW5rTWFuYWdlbWVudEJpbGxib2FyZFRhcmdldENhdGVnb3J5TW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFHNUQsdUJBQXVCO0FBQ3ZCLE1BQU0sT0FBTywwQ0FBMkMsU0FBUSxnQkFBd0I7Q0FTdkYiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBCYXNlTW9kdWxlRW50aXR5IH0gZnJvbSAnLi4vYmFzZS9iYXNlTW9kdWxlRW50aXR5JztcclxuaW1wb3J0IHsgTGlua01hbmFnZW1lbnRCaWxsYm9hcmRNb2RlbCB9IGZyb20gJy4vbGlua01hbmFnZW1lbnRCaWxsYm9hcmRNb2RlbCc7XHJcbmltcG9ydCB7IExpbmtNYW5hZ2VtZW50VGFyZ2V0Q2F0ZWdvcnlNb2RlbCB9IGZyb20gJy4vbGlua01hbmFnZW1lbnRUYXJnZXRDYXRlZ29yeU1vZGVsJztcclxuLy9AQHRhZy1WZXJzaW9uLTIyMDEwMTFcclxuZXhwb3J0IGNsYXNzIExpbmtNYW5hZ2VtZW50QmlsbGJvYXJkVGFyZ2V0Q2F0ZWdvcnlNb2RlbCBleHRlbmRzIEJhc2VNb2R1bGVFbnRpdHk8bnVtYmVyPiB7XHJcbiAgbGlua1RhcmdldENhdGVnb3J5SWQ6IG51bWJlcjtcclxuICAvLyB0c2xpbnQ6ZGlzYWJsZS1uZXh0LWxpbmU6IHZhcmlhYmxlLW5hbWVcclxuICB2aXJ0dWFsX1RhcmdldENhdGVnb3J5OiBMaW5rTWFuYWdlbWVudFRhcmdldENhdGVnb3J5TW9kZWw7XHJcbiAgdGFyZ2V0Q2F0ZWdvcnk6IExpbmtNYW5hZ2VtZW50VGFyZ2V0Q2F0ZWdvcnlNb2RlbDtcclxuICBsaW5rTWFuYWdlbWVudEJpbGxib2FyZElkOiBudW1iZXI7XHJcbiAgLy8gdHNsaW50OmRpc2FibGUtbmV4dC1saW5lOiB2YXJpYWJsZS1uYW1lXHJcbiAgdmlydHVhbF9CaWxsYm9hcmQ6IExpbmtNYW5hZ2VtZW50QmlsbGJvYXJkTW9kZWw7XHJcbiAgYmlsbGJvYXJkOiBMaW5rTWFuYWdlbWVudEJpbGxib2FyZE1vZGVsO1xyXG59XHJcbiJdfQ==
@@ -1,14 +0,0 @@
1
- import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
2
- import { Injectable } from '@angular/core';
3
- import * as i0 from "@angular/core";
4
- export class LinkManagementBillboardTargetCategoryService extends ApiCmsServerBase {
5
- getModuleControllerUrl() {
6
- return 'LinkManagementBillboardTargetCategory';
7
- }
8
- }
9
- LinkManagementBillboardTargetCategoryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LinkManagementBillboardTargetCategoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
10
- LinkManagementBillboardTargetCategoryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LinkManagementBillboardTargetCategoryService });
11
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: LinkManagementBillboardTargetCategoryService, decorators: [{
12
- type: Injectable
13
- }] });
14
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGlua01hbmFnZW1lbnRCaWxsYm9hcmRUYXJnZXRDYXRlZ29yeS5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbnRrLWNtcy1hcGkvc3JjL2xpYi9zZXJ2aWNlL2xpbmstbWFuYWdlbWVudC9saW5rTWFuYWdlbWVudEJpbGxib2FyZFRhcmdldENhdGVnb3J5LnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sa0NBQWtDLENBQUM7QUFDcEUsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFLM0MsTUFBTSxPQUFPLDRDQUE2QyxTQUFRLGdCQUFnRjtJQUNoSixzQkFBc0I7UUFDcEIsT0FBTyx1Q0FBdUMsQ0FBQztJQUNqRCxDQUFDOzt5SUFIVSw0Q0FBNEM7NklBQTVDLDRDQUE0QzsyRkFBNUMsNENBQTRDO2tCQUR4RCxVQUFVIiwic291cmNlc0NvbnRlbnQiOlsiXHJcbmltcG9ydCB7IEFwaUNtc1NlcnZlckJhc2UgfSBmcm9tICcuLi9iYXNlL2FwaUNtc1NlcnZlckJhc2Uuc2VydmljZSc7XHJcbmltcG9ydCB7IEluamVjdGFibGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgRmlsdGVyTW9kZWwgfSBmcm9tICcuLi8uLi9tb2RlbHMvZW50aXR5L2Jhc2UvZmlsdGVyTW9kZWwnO1xyXG5pbXBvcnQgeyBMaW5rTWFuYWdlbWVudEJpbGxib2FyZFRhcmdldENhdGVnb3J5TW9kZWwgfSBmcm9tICcuLi8uLi9tb2RlbHMvZW50aXR5L2xpbmstbWFuYWdlbWVudC9saW5rTWFuYWdlbWVudEJpbGxib2FyZFRhcmdldENhdGVnb3J5TW9kZWwnO1xyXG5cclxuQEluamVjdGFibGUoKVxyXG5leHBvcnQgY2xhc3MgTGlua01hbmFnZW1lbnRCaWxsYm9hcmRUYXJnZXRDYXRlZ29yeVNlcnZpY2UgZXh0ZW5kcyBBcGlDbXNTZXJ2ZXJCYXNlPExpbmtNYW5hZ2VtZW50QmlsbGJvYXJkVGFyZ2V0Q2F0ZWdvcnlNb2RlbCwgbnVtYmVyLEZpbHRlck1vZGVsPiAge1xyXG4gIGdldE1vZHVsZUNvbnRyb2xsZXJVcmwoKTogc3RyaW5nIHtcclxuICAgIHJldHVybiAnTGlua01hbmFnZW1lbnRCaWxsYm9hcmRUYXJnZXRDYXRlZ29yeSc7XHJcbiAgfVxyXG59XHJcbiJdfQ==
@@ -1,11 +0,0 @@
1
- import { BaseModuleEntity } from '../base/baseModuleEntity';
2
- import { LinkManagementBillboardModel } from './linkManagementBillboardModel';
3
- import { LinkManagementTargetCategoryModel } from './linkManagementTargetCategoryModel';
4
- export declare class LinkManagementBillboardTargetCategoryModel extends BaseModuleEntity<number> {
5
- linkTargetCategoryId: number;
6
- virtual_TargetCategory: LinkManagementTargetCategoryModel;
7
- targetCategory: LinkManagementTargetCategoryModel;
8
- linkManagementBillboardId: number;
9
- virtual_Billboard: LinkManagementBillboardModel;
10
- billboard: LinkManagementBillboardModel;
11
- }
@@ -1,9 +0,0 @@
1
- import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
2
- import { FilterModel } from '../../models/entity/base/filterModel';
3
- import { LinkManagementBillboardTargetCategoryModel } from '../../models/entity/link-management/linkManagementBillboardTargetCategoryModel';
4
- import * as i0 from "@angular/core";
5
- export declare class LinkManagementBillboardTargetCategoryService extends ApiCmsServerBase<LinkManagementBillboardTargetCategoryModel, number, FilterModel> {
6
- getModuleControllerUrl(): string;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<LinkManagementBillboardTargetCategoryService, never>;
8
- static ɵprov: i0.ɵɵInjectableDeclaration<LinkManagementBillboardTargetCategoryService>;
9
- }