File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
import { EnvironmentVariablesService } from './config/EnvironmentVariablesService.js' ;
2
2
import type { Context } from 'aws-lambda' ;
3
3
import type { IdempotencyConfigOptions } from './types/IdempotencyOptions.js' ;
4
- import type { ParsingOptions } from '@aws-lambda-powertools/jmespath/types' ;
4
+ import type { JMESPathParsingOptions } from '@aws-lambda-powertools/jmespath/types' ;
5
5
import { PowertoolsFunctions } from '@aws-lambda-powertools/jmespath/functions' ;
6
6
7
7
/**
@@ -31,7 +31,7 @@ class IdempotencyConfig {
31
31
* {@link https://docs.powertools.aws.dev/lambda/typescript/latest/api/classes/_aws_lambda_powertools_jmespath.PowertoolsFunctions.PowertoolsFunctions.html | custom functions provided}
32
32
* by the `@aws-lambda-powertools/jmespath` package.
33
33
*/
34
- public jmesPathOptions : ParsingOptions ;
34
+ public jmesPathOptions : JMESPathParsingOptions ;
35
35
/**
36
36
* The lambda context object.
37
37
*/
Original file line number Diff line number Diff line change 1
1
import { createHash , Hash } from 'node:crypto' ;
2
2
import { search } from '@aws-lambda-powertools/jmespath' ;
3
- import type { ParsingOptions } from '@aws-lambda-powertools/jmespath/types' ;
3
+ import type { JMESPathParsingOptions } from '@aws-lambda-powertools/jmespath/types' ;
4
4
import type {
5
5
BasePersistenceLayerOptions ,
6
6
BasePersistenceLayerInterface ,
@@ -37,7 +37,7 @@ abstract class BasePersistenceLayer implements BasePersistenceLayerInterface {
37
37
private throwOnNoIdempotencyKey = false ;
38
38
private useLocalCache = false ;
39
39
private validationKeyJmesPath ?: string ;
40
- #jmesPathOptions?: ParsingOptions ;
40
+ #jmesPathOptions?: JMESPathParsingOptions ;
41
41
42
42
public constructor ( ) {
43
43
this . envVarsService = new EnvironmentVariablesService ( ) ;
You can’t perform that action at this time.
0 commit comments