feat: enhance password generation method; improve connection pooling logic in DatabasePlugin; update test cases with correct tokens

This commit is contained in:
Boris D
2025-10-13 09:12:47 +03:00
parent c4755f5346
commit 73999de32e
5 changed files with 21 additions and 15 deletions

View File

@ -9,7 +9,7 @@ export default async (project: { token: string }, source: string) => {
source,
projectToken: project.token,
},
{ headers: { "x-api-token": "43c2e96e-af25-4467-9103-1479daa6288d" } }
{ headers: { "x-api-token": "efbeccd6-dde1-47dc-b3aa-4fbd773d5429" } }
);
return response.data;
} catch (error) {

View File

@ -8,7 +8,7 @@ export default async (token: string, queryData: Record<string, any>) => {
queryData,
{
headers: {
"x-api-token": "43c2e96e-af25-4467-9103-1479daa6288d",
"x-api-token": "efbeccd6-dde1-47dc-b3aa-4fbd773d5429",
Cookie: `x-session-id=gTEd90aRJFmLzJKu_1760193754588`,
},
}