Skip to content

Commit 0cc6b0a

Browse files
dependabot[bot]sdangolsvozza
authored
chore(deps-dev): bump @biomejs/biome from 2.4.6 to 2.4.7 (#5097)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Swopnil Dangol <swopnildangol@gmail.com> Co-authored-by: Stefano Vozza <svozza@amazon.com>
1 parent 4e3812b commit 0cc6b0a

26 files changed

Lines changed: 96 additions & 93 deletions

examples/app/functions/commons/powertools/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ const defaultValues = {
1717
executionEnv: process.env.AWS_EXECUTION_ENV || 'N/A',
1818
};
1919

20-
export { serviceName, metricsNamespace, defaultValues };
20+
export { defaultValues, metricsNamespace, serviceName };

examples/snippets/idempotency/workingWithLocalDynamoDB.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ const idempotentHandler = makeIdempotent(handler, {
2020
persistenceStore: ddbPersistenceStore,
2121
});
2222

23-
export { idempotentHandler, handler };
23+
export { handler, idempotentHandler };

examples/snippets/parameters/customProviderVaultTypes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ interface HashiCorpVaultGetOptions extends GetOptionsInterface {
5050
sdkOptions?: HashiCorpVaultReadKVSecretOptions;
5151
}
5252

53-
export type { HashiCorpVaultProviderOptions, HashiCorpVaultGetOptions };
53+
export type { HashiCorpVaultGetOptions, HashiCorpVaultProviderOptions };

examples/snippets/parser/schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ const orderSchema = z.object({
1515

1616
type Order = z.infer<typeof orderSchema>;
1717

18-
export { orderSchema, type Order };
18+
export { type Order, orderSchema };

examples/snippets/validation/schemas.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ type OutboundSchema = {
3131
};
3232

3333
export {
34-
inboundSchema,
35-
outboundSchema,
3634
type InboundSchema,
35+
inboundSchema,
3736
type OutboundSchema,
37+
outboundSchema,
3838
};

examples/snippets/validation/schemasWithExternalRefs.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ type OutboundSchema = {
3636

3737
export {
3838
defsSchema,
39-
inboundSchema,
40-
outboundSchema,
4139
type InboundSchema,
40+
inboundSchema,
4241
type OutboundSchema,
42+
outboundSchema,
4343
};

package-lock.json

Lines changed: 36 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
},
5151
"homepage": "https://github.com/aws-powertools/powertools-lambda-typescript#readme",
5252
"devDependencies": {
53-
"@biomejs/biome": "^2.4.6",
53+
"@biomejs/biome": "^2.4.7",
5454
"@types/aws-lambda": "^8.10.161",
5555
"@types/node": "^25.5.0",
5656
"@vitest/coverage-v8": "^4.1.0",

packages/parser/src/helpers/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,4 +115,4 @@ const Base64Encoded = <T extends ZodType>(schema: T) =>
115115
})
116116
.pipe(schema);
117117

118-
export { JSONStringified, Base64Encoded };
118+
export { Base64Encoded, JSONStringified };

packages/parser/src/schemas/alb.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,4 @@ const AlbMultiValueHeadersSchema = AlbSchema.extend({
9292
multiValueQueryStringParameters: z.record(z.string(), z.array(z.string())),
9393
});
9494

95-
export { AlbSchema, AlbMultiValueHeadersSchema };
95+
export { AlbMultiValueHeadersSchema, AlbSchema };

0 commit comments

Comments
 (0)