diff --git a/src/WAUSync/USyncQuery.ts b/src/WAUSync/USyncQuery.ts index 0d4b676..18753b4 100644 --- a/src/WAUSync/USyncQuery.ts +++ b/src/WAUSync/USyncQuery.ts @@ -1,5 +1,7 @@ import { USyncQueryProtocol } from '../Types/USync' import { BinaryNode, getBinaryNodeChild } from '../WABinary' +import { USyncBotProfileProtocol } from './Protocols/UsyncBotProfileProtocol' +import { USyncLIDProtocol } from './Protocols/UsyncLIDProtocol' import { USyncContactProtocol, USyncDeviceProtocol, USyncDisappearingModeProtocol, USyncStatusProtocol } from './Protocols' import { USyncUser } from './USyncUser' @@ -100,4 +102,10 @@ export class USyncQuery { this.protocols.push(new USyncDisappearingModeProtocol()) return this } -} \ No newline at end of file + + withBotProfileProtocol() { + this.protocols.push(new USyncBotProfileProtocol()) + return this + } + +}