@open-wa/wa-automate-types-only 4.20.7 → 4.21.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/server.d.ts +2 -0
- package/package.json +1 -1
package/dist/cli/server.d.ts
CHANGED
@@ -7,6 +7,7 @@ export declare type cliFlags = {
|
|
7
7
|
[k: string]: number | string | boolean;
|
8
8
|
};
|
9
9
|
export declare const setUpExpressApp: () => void;
|
10
|
+
export declare const enableCORSRequests: () => void;
|
10
11
|
export declare const setupAuthenticationLayer: (cliConfig: cliFlags) => void;
|
11
12
|
export declare const setupApiDocs: (cliConfig: cliFlags) => void;
|
12
13
|
export declare const setupSwaggerStatsMiddleware: (cliConfig: cliFlags) => Promise<void>;
|
@@ -14,5 +15,6 @@ export declare const setupRefocusDisengageMiddleware: (cliConfig: cliFlags) => v
|
|
14
15
|
export declare const getCommands: () => any;
|
15
16
|
export declare const listListeners: () => string[];
|
16
17
|
export declare const setupMediaMiddleware: () => void;
|
18
|
+
export declare const setupTwilioCompatibleWebhook: (cliConfig: cliFlags, client: Client) => void;
|
17
19
|
export declare const setupBotPressHandler: (cliConfig: cliFlags, client: Client) => void;
|
18
20
|
export declare const setupSocketServer: (cliConfig: any, client: Client) => Promise<void>;
|