av6-core 1.4.6 → 1.4.8
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/dist/index.d.mts +1 -3
- package/dist/index.d.ts +1 -3
- package/dist/index.js +467 -185
- package/dist/index.mjs +467 -185
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -601,7 +601,6 @@ declare const uinConfigService: (uinDeps: UinDeps) => {
|
|
|
601
601
|
|
|
602
602
|
declare const toUINConfigDTO: (model: any) => UINConfigDTO;
|
|
603
603
|
|
|
604
|
-
type Priority = "high" | "normal" | "low";
|
|
605
604
|
type Recipient = {
|
|
606
605
|
email?: string;
|
|
607
606
|
phone?: string;
|
|
@@ -611,10 +610,9 @@ type Recipient = {
|
|
|
611
610
|
type EmitPayload = {
|
|
612
611
|
service: string;
|
|
613
612
|
shortCode: string;
|
|
614
|
-
recipient: Recipient;
|
|
615
613
|
data?: Record<string, any>;
|
|
616
614
|
dataWp?: any[];
|
|
617
|
-
priority?:
|
|
615
|
+
priority?: "high" | "normal" | "low";
|
|
618
616
|
};
|
|
619
617
|
type ILogger = winston.Logger | Console;
|
|
620
618
|
type NotificationEmitterDeps = {
|
package/dist/index.d.ts
CHANGED
|
@@ -601,7 +601,6 @@ declare const uinConfigService: (uinDeps: UinDeps) => {
|
|
|
601
601
|
|
|
602
602
|
declare const toUINConfigDTO: (model: any) => UINConfigDTO;
|
|
603
603
|
|
|
604
|
-
type Priority = "high" | "normal" | "low";
|
|
605
604
|
type Recipient = {
|
|
606
605
|
email?: string;
|
|
607
606
|
phone?: string;
|
|
@@ -611,10 +610,9 @@ type Recipient = {
|
|
|
611
610
|
type EmitPayload = {
|
|
612
611
|
service: string;
|
|
613
612
|
shortCode: string;
|
|
614
|
-
recipient: Recipient;
|
|
615
613
|
data?: Record<string, any>;
|
|
616
614
|
dataWp?: any[];
|
|
617
|
-
priority?:
|
|
615
|
+
priority?: "high" | "normal" | "low";
|
|
618
616
|
};
|
|
619
617
|
type ILogger = winston.Logger | Console;
|
|
620
618
|
type NotificationEmitterDeps = {
|