diff --git a/.changeset/many-lemons-argue.md b/.changeset/many-lemons-argue.md new file mode 100644 index 0000000..19f7fa9 --- /dev/null +++ b/.changeset/many-lemons-argue.md @@ -0,0 +1,5 @@ +--- +"@mirohq/cloud-data-import": patch +--- + +Fixed the small typing error in boilerplate file diff --git a/src/scanners/scan-functions/aws/_boilerplate.ts b/src/scanners/scan-functions/aws/_boilerplate.ts index 9b01b9f..bef0e3a 100644 --- a/src/scanners/scan-functions/aws/_boilerplate.ts +++ b/src/scanners/scan-functions/aws/_boilerplate.ts @@ -1,5 +1,5 @@ import {DBInstance} from '@aws-sdk/client-rds' -import {AwsAwsCredentials, AwsResources, RateLimiter} from '@/types' +import {AwsCredentials, AwsResources, RateLimiter} from '@/types' import {AwsServices} from '@/constants' /** @@ -10,7 +10,7 @@ import {AwsServices} from '@/constants' type SampleInstance = DBInstance export async function getSampleInstances( - credentials: AwsAwsCredentials, + credentials: AwsCredentials, rateLimiter: RateLimiter, region: string, ): Promise> {