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

Sign up to get free protection for your applications and to get access to all the features.
@@ -14,7 +14,10 @@ export declare enum QRFormat {
14
14
  export declare enum CLOUD_PROVIDERS {
15
15
  GCP = "GCP",
16
16
  WASABI = "WASABI",
17
- AWS = "AWS"
17
+ AWS = "AWS",
18
+ CONTABO = "CONTABO",
19
+ DO = "DO",
20
+ MINIO = "MINIO"
18
21
  }
19
22
  export declare enum DIRECTORY_STRATEGY {
20
23
  /**
@@ -703,6 +706,16 @@ export interface ConfigObject {
703
706
  * env: `OW_DIRECTORY`
704
707
  */
705
708
  directory?: DIRECTORY_STRATEGY | string;
709
+ /**
710
+ * Setting this to true will make the uploaded file public
711
+ */
712
+ public?: boolean;
713
+ /**
714
+ * Extra headers to add to the upload request
715
+ */
716
+ headers?: {
717
+ [k: string]: string;
718
+ };
706
719
  };
707
720
  /**
708
721
  * What to do when an error is detected on a client method.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-wa/wa-automate-types-only",
3
- "version": "4.47.5",
3
+ "version": "4.47.6",
4
4
  "description": "Types generated from the @open-wa/wa-automate package",
5
5
  "scripts": {
6
6
  "build": "tsc",