@open-wa/wa-automate-types-only 4.20.8 → 4.22.0
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.
@@ -715,6 +715,10 @@ export interface ConfigObject {
|
|
715
715
|
* Your Discord ID to get onto the sticker leaderboard!
|
716
716
|
*/
|
717
717
|
discord?: string;
|
718
|
+
/**
|
719
|
+
* Don't implicitly determine if the host logged out.
|
720
|
+
*/
|
721
|
+
ignoreNuke?: boolean;
|
718
722
|
/**@internal */
|
719
723
|
[x: string]: any;
|
720
724
|
}
|
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>;
|