Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
bboure committed Jan 18, 2024
1 parent e392e13 commit 1d6d4ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/helpers/dynamodb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { GetCommandInput } from '@aws-sdk/lib-dynamodb';
import { z } from 'zod';
import {
HelperZodSchema,
RetriableMatcherHelper,
RetryableMatcherHelper,
assertMatcherHelperInputValue,
} from './internal';

Expand Down Expand Up @@ -31,7 +31,7 @@ const dynamodbItemInputSchema: HelperZodSchema<typeof dynamodbItem> = z.object({
/**
* DynamoDB Item helper
*/
export const dynamodbItem: RetriableMatcherHelper<
export const dynamodbItem: RetryableMatcherHelper<
'dynamodbItem',
DynamodbItemInput
> = (input) => {
Expand Down
4 changes: 2 additions & 2 deletions src/helpers/s3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { S3Client } from '@aws-sdk/client-s3';
import { z } from 'zod';
import {
HelperZodSchema,
RetriableMatcherHelper,
RetryableMatcherHelper,
assertMatcherHelperInputValue,
} from './internal';

Expand Down Expand Up @@ -30,7 +30,7 @@ const s3ObjectInputSchema: HelperZodSchema<typeof s3Object> = z.object({
/**
* S3 Object helper
*/
export const s3Object: RetriableMatcherHelper<'s3Object', S3ObjectInput> = (
export const s3Object: RetryableMatcherHelper<'s3Object', S3ObjectInput> = (
input,
) => {
assertMatcherHelperInputValue('s3Object', s3ObjectInputSchema, input);
Expand Down

0 comments on commit 1d6d4ff

Please sign in to comment.