@open-wa/wa-automate-types-only 4.47.6 → 4.48.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,4 @@
1
1
  import { AxiosRequestConfig } from 'axios';
2
- import { PREPROCESSORS } from '../../structures/preProcessors';
3
2
  import { ConfigLogTransport } from '../../logging/logging';
4
3
  import { Base64 } from "./aliases";
5
4
  import { SimpleListener } from './events';
@@ -636,12 +635,12 @@ export interface ConfigObject {
636
635
  */
637
636
  pQueueDefault?: any;
638
637
  /**
639
- * Set a preprocessor for messages. See [[PREPROCESSORS]] for more info.
638
+ * Set a preprocessor, or multiple chained preprocessors, for messages. See [MPConfigType](/) for more info.
640
639
  *
641
640
  * options: `SCRUB`, `BODY_ONLY`, `AUTO_DECRYPT`, `AUTO_DECRYPT_SAVE`, `UPLOAD_CLOUD`.
642
641
  * @default `undefined`
643
642
  */
644
- messagePreprocessor?: PREPROCESSORS;
643
+ messagePreprocessor?: any;
645
644
  /**
646
645
  * Set an array filter to be used with messagePreprocessor to limit which messages are preprocessed.
647
646
  *
@@ -1,6 +1,6 @@
1
1
  import { Client } from "../api/Client";
2
2
  import { Message } from "../api/model/message";
3
- declare type MessagePreProcessor = (message: Message, client?: Client) => Promise<Message>;
3
+ export declare type MessagePreProcessor = (message: Message, client?: Client) => Promise<Message>;
4
4
  /**
5
5
  * An object that contains all available [[PREPROCESSORS]].
6
6
  *
@@ -44,4 +44,7 @@ export declare enum PREPROCESSORS {
44
44
  */
45
45
  UPLOAD_CLOUD = "UPLOAD_CLOUD"
46
46
  }
47
- export {};
47
+ /**
48
+ * The actual type for [config.messagePreprocessor](/docs/api/interfaces/api_model_config.ConfigObject#messagepreprocessor)
49
+ */
50
+ export declare type MPConfigType = PREPROCESSORS | MessagePreProcessor | (PREPROCESSORS | MessagePreProcessor)[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-wa/wa-automate-types-only",
3
- "version": "4.47.6",
3
+ "version": "4.48.0",
4
4
  "description": "Types generated from the @open-wa/wa-automate package",
5
5
  "scripts": {
6
6
  "build": "tsc",