mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-07-14 09:51:24 -06:00
chore: update AWS SDK dependency to version 3.569.0
This commit is contained in:
parent
e29b4865e8
commit
aa58d7744e
@ -47,7 +47,7 @@
|
|||||||
"@hapi/boom": "^10.0.1",
|
"@hapi/boom": "^10.0.1",
|
||||||
"@sentry/node": "^7.59.2",
|
"@sentry/node": "^7.59.2",
|
||||||
"amqplib": "^0.10.3",
|
"amqplib": "^0.10.3",
|
||||||
"aws-sdk": "^2.1499.0",
|
"@aws-sdk/client-sqs": "^3.569.0",
|
||||||
"axios": "^1.6.5",
|
"axios": "^1.6.5",
|
||||||
"baileys": "^6.7.1",
|
"baileys": "^6.7.1",
|
||||||
"class-validator": "^0.14.1",
|
"class-validator": "^0.14.1",
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { SQS } from 'aws-sdk';
|
import { SQS } from '@aws-sdk/client-sqs';
|
||||||
|
|
||||||
import { configService, Sqs } from '../../../../config/env.config';
|
import { configService, Sqs } from '../../../../config/env.config';
|
||||||
import { Logger } from '../../../../config/logger.config';
|
import { Logger } from '../../../../config/logger.config';
|
||||||
@ -12,8 +12,11 @@ export const initSQS = () => {
|
|||||||
return new Promise<void>((resolve, reject) => {
|
return new Promise<void>((resolve, reject) => {
|
||||||
const awsConfig = configService.get<Sqs>('SQS');
|
const awsConfig = configService.get<Sqs>('SQS');
|
||||||
sqs = new SQS({
|
sqs = new SQS({
|
||||||
|
credentials: {
|
||||||
accessKeyId: awsConfig.ACCESS_KEY_ID,
|
accessKeyId: awsConfig.ACCESS_KEY_ID,
|
||||||
secretAccessKey: awsConfig.SECRET_ACCESS_KEY,
|
secretAccessKey: awsConfig.SECRET_ACCESS_KEY,
|
||||||
|
},
|
||||||
|
|
||||||
region: awsConfig.REGION,
|
region: awsConfig.REGION,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user