@acorex/modules 19.1.4 → 19.1.5

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.
@@ -0,0 +1,10 @@
1
+ import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';
2
+ import { AXMNotificationManagementChannelEntityModel } from './channel.types';
3
+ import * as i0 from "@angular/core";
4
+ export declare abstract class AXMNotificationManagementChannelEntityService extends AXMEntityCrudServiceImpl<string, AXMNotificationManagementChannelEntityModel> {
5
+ }
6
+ export declare class AXMNotificationManagementChannelEntityServiceImpl extends AXMNotificationManagementChannelEntityService {
7
+ constructor();
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXMNotificationManagementChannelEntityServiceImpl, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<AXMNotificationManagementChannelEntityServiceImpl>;
10
+ }
@@ -0,0 +1,8 @@
1
+ import { AXPEntityModel } from '@acorex/platform/common';
2
+ export interface AXMNotificationManagementChannelEntityModel extends AXPEntityModel<string> {
3
+ name: string;
4
+ title: string;
5
+ description: string;
6
+ icon?: string;
7
+ type: string;
8
+ }
@@ -0,0 +1,10 @@
1
+ import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';
2
+ import { AXMNotificationManagementTemplateEntityModel } from './template.types';
3
+ import * as i0 from "@angular/core";
4
+ export declare abstract class AXMNotificationManagementTemplateEntityService extends AXMEntityCrudServiceImpl<string, AXMNotificationManagementTemplateEntityModel> {
5
+ }
6
+ export declare class AXMNotificationManagementTemplateEntityServiceImpl extends AXMNotificationManagementTemplateEntityService {
7
+ constructor();
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXMNotificationManagementTemplateEntityServiceImpl, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<AXMNotificationManagementTemplateEntityServiceImpl>;
10
+ }
@@ -0,0 +1,8 @@
1
+ import { AXPEntityModel } from '@acorex/platform/common';
2
+ export interface AXMNotificationManagementTemplateEntityModel extends AXPEntityModel<string> {
3
+ name: string;
4
+ title: string;
5
+ description: string;
6
+ icon?: string;
7
+ type: string;
8
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/modules",
3
- "version": "19.1.4",
3
+ "version": "19.1.5",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=19.0.0",
6
6
  "@angular/core": ">=19.0.0",
@@ -24,18 +24,14 @@
24
24
  "types": "./application-management/index.d.ts",
25
25
  "default": "./fesm2022/acorex-modules-application-management.mjs"
26
26
  },
27
- "./backend": {
28
- "types": "./backend/index.d.ts",
29
- "default": "./fesm2022/acorex-modules-backend.mjs"
27
+ "./auth": {
28
+ "types": "./auth/index.d.ts",
29
+ "default": "./fesm2022/acorex-modules-auth.mjs"
30
30
  },
31
31
  "./conversation": {
32
32
  "types": "./conversation/index.d.ts",
33
33
  "default": "./fesm2022/acorex-modules-conversation.mjs"
34
34
  },
35
- "./auth": {
36
- "types": "./auth/index.d.ts",
37
- "default": "./fesm2022/acorex-modules-auth.mjs"
38
- },
39
35
  "./form-template-management": {
40
36
  "types": "./form-template-management/index.d.ts",
41
37
  "default": "./fesm2022/acorex-modules-form-template-management.mjs"
@@ -44,6 +40,10 @@
44
40
  "types": "./notification-management/index.d.ts",
45
41
  "default": "./fesm2022/acorex-modules-notification-management.mjs"
46
42
  },
43
+ "./backend": {
44
+ "types": "./backend/index.d.ts",
45
+ "default": "./fesm2022/acorex-modules-backend.mjs"
46
+ },
47
47
  "./platform-management": {
48
48
  "types": "./platform-management/index.d.ts",
49
49
  "default": "./fesm2022/acorex-modules-platform-management.mjs"
@@ -1,16 +1,16 @@
1
1
  export declare enum AXPOrganizationSetting {
2
- OrganizationName = "settings:organization:organization-name",
3
- OrganizationID = "settings:organization:organization-id",
4
- ContactEmail = "settings:organization:contact-email",
5
- ContactPhone = "settings:organization:contact-phone",
6
- OrganizationAddress = "settings:organization:organization-address",
7
- OrganizationCity = "settings:organization:organization-city",
8
- OrganizationCountry = "settings:organization:organization-country",
9
- BrandingColor = "settings:organization:branding-color",
10
- BrandingLogo = "settings:organization:branding-logo",
11
- CopyrightText = "settings:organization:copyright-text",
12
- ApplicationHeaderTitle = "settings:organization:application-header-title",
13
- SupportEmail = "settings:organization:support-email",
14
- InfoEmail = "settings:organization:info-email",
15
- FaxNumber = "settings:organization:fax-number"
2
+ OrganizationName = "organization:organization-name",
3
+ OrganizationID = "organization:organization-id",
4
+ ContactEmail = "organization:contact-email",
5
+ ContactPhone = "organization:contact-phone",
6
+ OrganizationAddress = "organization:organization-address",
7
+ OrganizationCity = "organization:organization-city",
8
+ OrganizationCountry = "organization:organization-country",
9
+ BrandingColor = "organization:branding-color",
10
+ BrandingLogo = "organization:branding-logo",
11
+ CopyrightText = "organization:copyright-text",
12
+ ApplicationHeaderTitle = "organization:application-header-title",
13
+ SupportEmail = "organization:support-email",
14
+ InfoEmail = "organization:info-email",
15
+ FaxNumber = "organization:fax-number"
16
16
  }
@@ -1,13 +1,13 @@
1
1
  export declare enum AXPRegionalSetting {
2
- TimeZone = "settings:regional:timezone",
3
- Language = "settings:regional:language",
4
- Country = "settings:regional:country",
5
- Regional = "settings:regional:regional",
6
- Calendar = "settings:regional:calendar",
7
- FirstDayOfWeek = "settings:regional:first-day-of-week",
8
- WorkDays = "settings:regional:work-days",
9
- ShortDate = "settings:regional:short-date",
10
- LongDate = "settings:regional:long-date",
11
- ShortTime = "settings:regional:short-time",
12
- LongTime = "settings:regional:long-time"
2
+ TimeZone = "regional:timezone",
3
+ Language = "regional:language",
4
+ Country = "regional:country",
5
+ Regional = "regional:regional",
6
+ Calendar = "regional:calendar",
7
+ FirstDayOfWeek = "regional:first-day-of-week",
8
+ WorkDays = "regional:work-days",
9
+ ShortDate = "regional:short-date",
10
+ LongDate = "regional:long-date",
11
+ ShortTime = "regional:short-time",
12
+ LongTime = "regional:long-time"
13
13
  }
@@ -4,8 +4,4 @@ export declare const AXMPlatformManagementModuleConst: {
4
4
  i18n: string;
5
5
  localizationManagement: string;
6
6
  globalVariableEntity: string;
7
- currencyEntity: string;
8
- countryEntity: string;
9
- provinceEntity: string;
10
- cityEntity: string;
11
7
  };
@@ -1,40 +0,0 @@
1
- export declare const NOTIFICATION_TEMPLATES: {
2
- id: string;
3
- name: string;
4
- title: string;
5
- description: string;
6
- }[];
7
- export declare const NOTIFICATION_CHANNELS: {
8
- body: string;
9
- title: string;
10
- channel: string;
11
- inApp: {
12
- category: string;
13
- level: string;
14
- type: string;
15
- };
16
- }[];
17
- export declare const NOTIFICATIONS: {
18
- id: string;
19
- title: string;
20
- body: string;
21
- channel: string;
22
- data: {};
23
- RelativeType: string;
24
- RelativeId: string;
25
- user: {
26
- id: string;
27
- name: string;
28
- image: string;
29
- };
30
- template: {
31
- category: string;
32
- prority: string;
33
- type: string;
34
- icon: string;
35
- isPinned: boolean;
36
- };
37
- readAt: Date | null;
38
- createAt: Date;
39
- entityName: string;
40
- }[];
@@ -1,15 +0,0 @@
1
- import { AXPEntityDataProviderImpl, AXPEntityStorageService } from '@acorex/platform/common';
2
- import * as i0 from "@angular/core";
3
- export declare class NotificationManagementService {
4
- protected storageService: AXPEntityStorageService<any, any, any, any, any>;
5
- protected _notificationTemplateDataProvider: AXPEntityDataProviderImpl<any>;
6
- protected _notificationChannelDataProvider: any;
7
- protected _notificationDataProvider: any;
8
- constructor();
9
- notificationTemplateList(): Promise<any[]>;
10
- get notificationTemplateDataProvider(): AXPEntityDataProviderImpl<any, any, Omit<any, "id">, any, any>;
11
- get notificationChannelDataProvider(): any;
12
- get notificationDataProvider(): any;
13
- static ɵfac: i0.ɵɵFactoryDeclaration<NotificationManagementService, never>;
14
- static ɵprov: i0.ɵɵInjectableDeclaration<NotificationManagementService>;
15
- }