downgrade baileys version

This commit is contained in:
Davidson Gomes
2024-05-20 19:39:56 -03:00
parent 8cc1b8daa8
commit 283b497788
16 changed files with 34 additions and 21 deletions

View File

@@ -9,12 +9,12 @@ export class IntegrationRaw {
token?: string;
}
const sqsSchema = new Schema<IntegrationRaw>({
const integrationSchema = new Schema<IntegrationRaw>({
_id: { type: String, _id: true },
integration: { type: String, required: true },
number: { type: String, required: true },
token: { type: String, required: true },
});
export const IntegrationModel = dbserver?.model(IntegrationRaw.name, sqsSchema, 'integration');
export const IntegrationModel = dbserver?.model(IntegrationRaw.name, integrationSchema, 'integration');
export type IntegrationModel = typeof IntegrationModel;