@alanszp/eventbridge-client 7.6.0 → 8.0.0
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.
|
@@ -12,4 +12,5 @@ export declare type UpdatedEvent<Entity, Identifiers extends keyof PropertyKeys<
|
|
|
12
12
|
_previousValues?: UpdatedFields<Entity, Identifiers>;
|
|
13
13
|
modifiedKeys: (keyof UpdatedFields<Entity, Identifiers>)[];
|
|
14
14
|
};
|
|
15
|
+
export declare type DeletedEvent<Entity, Identifiers extends keyof PropertyKeys<Entity>> = UpdatedIdentifiers<Entity, Identifiers>;
|
|
15
16
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alanszp/eventbridge-client",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0",
|
|
4
4
|
"description": "Alan's basic eventbridge client.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"typescript": "^4.3.4"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@alanszp/logger": "^
|
|
33
|
-
"@alanszp/shared-context": "^
|
|
32
|
+
"@alanszp/logger": "^8.0.0",
|
|
33
|
+
"@alanszp/shared-context": "^8.0.0",
|
|
34
34
|
"aws-sdk": "^2.1204.0",
|
|
35
35
|
"cuid": "^2.1.8",
|
|
36
36
|
"lodash": "^4.17.21"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "8ddbd6ae78e2404fb35497e18308644d3760dd17"
|
|
39
39
|
}
|
|
@@ -32,3 +32,8 @@ export type UpdatedEvent<
|
|
|
32
32
|
_previousValues?: UpdatedFields<Entity, Identifiers>;
|
|
33
33
|
modifiedKeys: (keyof UpdatedFields<Entity, Identifiers>)[];
|
|
34
34
|
};
|
|
35
|
+
|
|
36
|
+
export type DeletedEvent<
|
|
37
|
+
Entity,
|
|
38
|
+
Identifiers extends keyof PropertyKeys<Entity>
|
|
39
|
+
> = UpdatedIdentifiers<Entity, Identifiers>;
|