@activepieces/piece-sftp 0.2.6 → 0.2.7
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/package.json +9 -8
- package/src/index.d.ts +3 -0
- package/src/index.js +11 -2
- package/src/index.js.map +1 -1
- package/src/lib/actions/create-file.d.ts +1 -0
- package/src/lib/actions/create-folder.d.ts +1 -0
- package/src/lib/actions/delete-file.d.ts +1 -0
- package/src/lib/actions/delete-folder.d.ts +1 -0
- package/src/lib/actions/list-files.d.ts +1 -0
- package/src/lib/actions/read-file.d.ts +1 -0
- package/src/lib/actions/rename-file-or-folder.d.ts +1 -0
- package/src/lib/actions/upload-file.d.ts +1 -0
- package/src/lib/triggers/new-modified-file.d.ts +3 -0
package/package.json
CHANGED
|
@@ -1,27 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@activepieces/piece-sftp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@anthropic-ai/sdk": "0.
|
|
5
|
+
"@anthropic-ai/sdk": "0.33.1",
|
|
6
6
|
"@sinclair/typebox": "0.34.11",
|
|
7
|
-
"axios": "1.
|
|
7
|
+
"axios": "1.8.2",
|
|
8
8
|
"axios-retry": "4.4.1",
|
|
9
9
|
"basic-ftp": "5.0.5",
|
|
10
10
|
"dayjs": "1.11.9",
|
|
11
|
-
"deepmerge": "
|
|
11
|
+
"deepmerge-ts": "7.1.0",
|
|
12
12
|
"mime-types": "2.1.35",
|
|
13
|
-
"nanoid": "3.3.
|
|
13
|
+
"nanoid": "3.3.8",
|
|
14
14
|
"openai": "4.67.1",
|
|
15
15
|
"replicate": "0.34.1",
|
|
16
16
|
"semver": "7.6.0",
|
|
17
17
|
"ssh2-sftp-client": "9.1.0",
|
|
18
18
|
"zod": "3.23.8",
|
|
19
|
-
"@activepieces/pieces-common": "0.
|
|
20
|
-
"@activepieces/pieces-framework": "0.7.
|
|
21
|
-
"@activepieces/shared": "0.10.
|
|
19
|
+
"@activepieces/pieces-common": "0.4.3",
|
|
20
|
+
"@activepieces/pieces-framework": "0.7.46",
|
|
21
|
+
"@activepieces/shared": "0.10.158",
|
|
22
22
|
"tslib": "1.14.1"
|
|
23
23
|
},
|
|
24
24
|
"overrides": {
|
|
25
|
+
"cross-spawn": "7.0.6",
|
|
25
26
|
"@tryfabric/martian": {
|
|
26
27
|
"@notionhq/client": "$@notionhq/client"
|
|
27
28
|
},
|
package/src/index.d.ts
CHANGED
|
@@ -5,12 +5,14 @@ export declare function getClient<T extends Client | FTPClient>(auth: {
|
|
|
5
5
|
protocol: string | undefined;
|
|
6
6
|
host: string;
|
|
7
7
|
port: number;
|
|
8
|
+
allow_unauthorized_certificates: boolean | undefined;
|
|
8
9
|
username: string;
|
|
9
10
|
password: string;
|
|
10
11
|
}): Promise<T>;
|
|
11
12
|
export declare function endClient(client: Client | FTPClient, protocol: string | undefined): Promise<void>;
|
|
12
13
|
export declare const sftpAuth: import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
13
14
|
protocol: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
|
|
15
|
+
allow_unauthorized_certificates: import("@activepieces/pieces-framework").CheckboxProperty<false>;
|
|
14
16
|
host: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
15
17
|
port: import("@activepieces/pieces-framework").NumberProperty<true>;
|
|
16
18
|
username: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
@@ -18,6 +20,7 @@ export declare const sftpAuth: import("@activepieces/pieces-framework").CustomAu
|
|
|
18
20
|
}>;
|
|
19
21
|
export declare const ftpSftp: import("@activepieces/pieces-framework").Piece<import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
20
22
|
protocol: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
|
|
23
|
+
allow_unauthorized_certificates: import("@activepieces/pieces-framework").CheckboxProperty<false>;
|
|
21
24
|
host: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
22
25
|
port: import("@activepieces/pieces-framework").NumberProperty<true>;
|
|
23
26
|
username: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
package/src/index.js
CHANGED
|
@@ -28,7 +28,7 @@ function getProtocolBackwardCompatibility(protocol) {
|
|
|
28
28
|
}
|
|
29
29
|
function getClient(auth) {
|
|
30
30
|
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
31
|
-
const { protocol, host, port, username, password } = auth;
|
|
31
|
+
const { protocol, host, port, allow_unauthorized_certificates, username, password } = auth;
|
|
32
32
|
const protocolBackwardCompatibility = yield getProtocolBackwardCompatibility(protocol);
|
|
33
33
|
if (protocolBackwardCompatibility === 'sftp') {
|
|
34
34
|
const sftp = new ssh2_sftp_client_1.default();
|
|
@@ -49,6 +49,9 @@ function getClient(auth) {
|
|
|
49
49
|
user: username,
|
|
50
50
|
password,
|
|
51
51
|
secure: protocolBackwardCompatibility === 'ftps',
|
|
52
|
+
secureOptions: {
|
|
53
|
+
rejectUnauthorized: !(allow_unauthorized_certificates !== null && allow_unauthorized_certificates !== void 0 ? allow_unauthorized_certificates : false),
|
|
54
|
+
}
|
|
52
55
|
});
|
|
53
56
|
return ftpClient;
|
|
54
57
|
}
|
|
@@ -79,6 +82,12 @@ exports.sftpAuth = pieces_framework_1.PieceAuth.CustomAuth({
|
|
|
79
82
|
],
|
|
80
83
|
},
|
|
81
84
|
}),
|
|
85
|
+
allow_unauthorized_certificates: pieces_framework_1.Property.Checkbox({
|
|
86
|
+
displayName: 'Allow Unauthorized Certificates',
|
|
87
|
+
description: 'Allow connections to servers with self-signed certificates',
|
|
88
|
+
defaultValue: false,
|
|
89
|
+
required: false,
|
|
90
|
+
}),
|
|
82
91
|
host: pieces_framework_1.Property.ShortText({
|
|
83
92
|
displayName: 'Host',
|
|
84
93
|
description: 'The host of the server',
|
|
@@ -122,7 +131,7 @@ exports.sftpAuth = pieces_framework_1.PieceAuth.CustomAuth({
|
|
|
122
131
|
catch (err) {
|
|
123
132
|
return {
|
|
124
133
|
valid: false,
|
|
125
|
-
error:
|
|
134
|
+
error: err === null || err === void 0 ? void 0 : err.message,
|
|
126
135
|
};
|
|
127
136
|
}
|
|
128
137
|
finally {
|
package/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../packages/pieces/community/sftp/src/index.ts"],"names":[],"mappings":";;;AAkBA,4EAKC;AACD,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../packages/pieces/community/sftp/src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const createFile: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
2
2
|
protocol: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
|
|
3
|
+
allow_unauthorized_certificates: import("@activepieces/pieces-framework").CheckboxProperty<false>;
|
|
3
4
|
host: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
4
5
|
port: import("@activepieces/pieces-framework").NumberProperty<true>;
|
|
5
6
|
username: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const createFolderAction: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
2
2
|
protocol: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
|
|
3
|
+
allow_unauthorized_certificates: import("@activepieces/pieces-framework").CheckboxProperty<false>;
|
|
3
4
|
host: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
4
5
|
port: import("@activepieces/pieces-framework").NumberProperty<true>;
|
|
5
6
|
username: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const deleteFileAction: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
2
2
|
protocol: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
|
|
3
|
+
allow_unauthorized_certificates: import("@activepieces/pieces-framework").CheckboxProperty<false>;
|
|
3
4
|
host: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
4
5
|
port: import("@activepieces/pieces-framework").NumberProperty<true>;
|
|
5
6
|
username: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const deleteFolderAction: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
2
2
|
protocol: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
|
|
3
|
+
allow_unauthorized_certificates: import("@activepieces/pieces-framework").CheckboxProperty<false>;
|
|
3
4
|
host: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
4
5
|
port: import("@activepieces/pieces-framework").NumberProperty<true>;
|
|
5
6
|
username: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const listFolderContentsAction: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
2
2
|
protocol: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
|
|
3
|
+
allow_unauthorized_certificates: import("@activepieces/pieces-framework").CheckboxProperty<false>;
|
|
3
4
|
host: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
4
5
|
port: import("@activepieces/pieces-framework").NumberProperty<true>;
|
|
5
6
|
username: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const readFileContent: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
2
2
|
protocol: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
|
|
3
|
+
allow_unauthorized_certificates: import("@activepieces/pieces-framework").CheckboxProperty<false>;
|
|
3
4
|
host: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
4
5
|
port: import("@activepieces/pieces-framework").NumberProperty<true>;
|
|
5
6
|
username: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const renameFileOrFolderAction: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
2
2
|
protocol: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
|
|
3
|
+
allow_unauthorized_certificates: import("@activepieces/pieces-framework").CheckboxProperty<false>;
|
|
3
4
|
host: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
4
5
|
port: import("@activepieces/pieces-framework").NumberProperty<true>;
|
|
5
6
|
username: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const uploadFileAction: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
2
2
|
protocol: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
|
|
3
|
+
allow_unauthorized_certificates: import("@activepieces/pieces-framework").CheckboxProperty<false>;
|
|
3
4
|
host: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
4
5
|
port: import("@activepieces/pieces-framework").NumberProperty<true>;
|
|
5
6
|
username: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { TriggerStrategy } from '@activepieces/pieces-framework';
|
|
2
2
|
export declare const newOrModifiedFile: import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
3
3
|
protocol: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
|
|
4
|
+
allow_unauthorized_certificates: import("@activepieces/pieces-framework").CheckboxProperty<false>;
|
|
4
5
|
host: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
5
6
|
port: import("@activepieces/pieces-framework").NumberProperty<true>;
|
|
6
7
|
username: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
@@ -10,6 +11,7 @@ export declare const newOrModifiedFile: import("@activepieces/pieces-framework")
|
|
|
10
11
|
ignoreHiddenFiles: import("@activepieces/pieces-framework").CheckboxProperty<false>;
|
|
11
12
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.POLLING, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
12
13
|
protocol: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
|
|
14
|
+
allow_unauthorized_certificates: import("@activepieces/pieces-framework").CheckboxProperty<false>;
|
|
13
15
|
host: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
14
16
|
port: import("@activepieces/pieces-framework").NumberProperty<true>;
|
|
15
17
|
username: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
@@ -19,6 +21,7 @@ export declare const newOrModifiedFile: import("@activepieces/pieces-framework")
|
|
|
19
21
|
ignoreHiddenFiles: import("@activepieces/pieces-framework").CheckboxProperty<false>;
|
|
20
22
|
}> | import("@activepieces/pieces-framework").ITrigger<TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
21
23
|
protocol: import("@activepieces/pieces-framework").StaticDropdownProperty<string, false>;
|
|
24
|
+
allow_unauthorized_certificates: import("@activepieces/pieces-framework").CheckboxProperty<false>;
|
|
22
25
|
host: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|
|
23
26
|
port: import("@activepieces/pieces-framework").NumberProperty<true>;
|
|
24
27
|
username: import("@activepieces/pieces-framework").ShortTextProperty<true>;
|