We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
getHashedIdempotencyKey()
1 parent 11909ae commit 188b5b7Copy full SHA for 188b5b7
packages/idempotency/src/persistence/BasePersistenceLayer.ts
@@ -279,7 +279,7 @@ abstract class BasePersistenceLayer implements BasePersistenceLayerInterface {
279
* @param data the data payload that will be hashed to create the hash portion of the idempotency key
280
* @returns the idempotency key
281
*/
282
- private getHashedIdempotencyKey(data: JSONValue): string {
+ protected getHashedIdempotencyKey(data: JSONValue): string {
283
const payload = this.eventKeyJmesPath
284
? (search(
285
this.eventKeyJmesPath,
0 commit comments