@transai/connector-runner-file 0.4.4 → 0.4.5

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.
@@ -3,7 +3,7 @@ import { FileAction } from '../types';
3
3
  type ActionParams = {
4
4
  localPath?: string;
5
5
  remotePath?: string;
6
- raw?: boolean;
6
+ raw?: boolean | 'true' | 'false';
7
7
  };
8
8
  type ActionResult = {
9
9
  contents: unknown;
@@ -3,7 +3,7 @@ import { FileAction } from '../types';
3
3
  type ActionParams = {
4
4
  localPath: string;
5
5
  remotePath: string;
6
- overwrite?: boolean;
6
+ overwrite?: boolean | 'true' | 'false';
7
7
  };
8
8
  export declare class ActionUploadFile implements FileAction<ActionParams, void> {
9
9
  #private;
@@ -3,7 +3,7 @@ import { FileAction } from '../types';
3
3
  type ActionParams = {
4
4
  remotePath: string;
5
5
  contents: string;
6
- overwrite?: boolean;
6
+ overwrite?: boolean | 'true' | 'false';
7
7
  };
8
8
  export declare class ActionWriteFile implements FileAction<ActionParams, void> {
9
9
  #private;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@transai/connector-runner-file",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },