av6-core 1.0.7 → 1.0.9
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/.prettierignore +4 -0
- package/.prettierrc +6 -0
- package/dist/index.d.mts +2 -4
- package/dist/index.d.ts +2 -4
- package/dist/index.js +112 -261
- package/dist/index.mjs +112 -261
- package/package.json +5 -3
package/.prettierignore
ADDED
package/.prettierrc
ADDED
package/dist/index.d.mts
CHANGED
|
@@ -357,14 +357,12 @@ type EmitPayload = {
|
|
|
357
357
|
recipient: Recipient;
|
|
358
358
|
data: Record<string, any>;
|
|
359
359
|
};
|
|
360
|
-
|
|
361
|
-
info: (...args: any[]) => void;
|
|
362
|
-
error: (...args: any[]) => void;
|
|
363
|
-
}
|
|
360
|
+
type ILogger = winston.Logger | Console;
|
|
364
361
|
type NotificationEmitterDeps = {
|
|
365
362
|
prisma: PrismaClient;
|
|
366
363
|
logger?: ILogger;
|
|
367
364
|
envMode?: "Production" | "Development";
|
|
365
|
+
helpers: Helpers;
|
|
368
366
|
};
|
|
369
367
|
|
|
370
368
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -357,14 +357,12 @@ type EmitPayload = {
|
|
|
357
357
|
recipient: Recipient;
|
|
358
358
|
data: Record<string, any>;
|
|
359
359
|
};
|
|
360
|
-
|
|
361
|
-
info: (...args: any[]) => void;
|
|
362
|
-
error: (...args: any[]) => void;
|
|
363
|
-
}
|
|
360
|
+
type ILogger = winston.Logger | Console;
|
|
364
361
|
type NotificationEmitterDeps = {
|
|
365
362
|
prisma: PrismaClient;
|
|
366
363
|
logger?: ILogger;
|
|
367
364
|
envMode?: "Production" | "Development";
|
|
365
|
+
helpers: Helpers;
|
|
368
366
|
};
|
|
369
367
|
|
|
370
368
|
/**
|