@apipass/event-notification 0.0.58 → 0.0.59
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AWSEventNotificationOptions } from "./event-notification-options";
|
|
2
|
-
import {
|
|
2
|
+
import { EventNotificationService } from './event-notification-service-factory';
|
|
3
3
|
import { MessageAttributeValue } from "@aws-sdk/client-sns/dist-types/models/models_0";
|
|
4
|
-
export declare class AWSEventNotificationService implements
|
|
4
|
+
export declare class AWSEventNotificationService implements EventNotificationService {
|
|
5
5
|
private readonly logger;
|
|
6
6
|
private readonly region;
|
|
7
7
|
private readonly accountId;
|
|
@@ -2,5 +2,5 @@ export declare class EventNotificationServiceFactory {
|
|
|
2
2
|
static createInstance(type: string): any;
|
|
3
3
|
}
|
|
4
4
|
export interface EventNotificationService {
|
|
5
|
-
notifyEvent(eventName: string, message?: any): any;
|
|
5
|
+
notifyEvent(eventName: string, message?: any, attributes?: any): any;
|
|
6
6
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apipass/event-notification",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.59",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "Nathan Lemos <nathan@apipass.com.br>",
|
|
6
6
|
"license": "ISC",
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
"scripts": {
|
|
29
29
|
"tsc": "tsc"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "8d89f3009d1b7d5fc91e5957675cf3c365b10a5b"
|
|
32
32
|
}
|