n8n-nodes-windows-network-fileshare-smb2 0.1.0-beta.1

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/LICENSE.md ADDED
@@ -0,0 +1,19 @@
1
+ Copyright 2022 n8n
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
4
+ this software and associated documentation files (the "Software"), to deal in
5
+ the Software without restriction, including without limitation the rights to
6
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7
+ of the Software, and to permit persons to whom the Software is furnished to do
8
+ so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,209 @@
1
+ # n8n-nodes-windows-network-fileshare-smb2
2
+
3
+ This is an n8n community node. It lets you use Windows Network File Shares (SMB2) in your n8n workflows.
4
+
5
+ Windows Network File Shares allow you to access files and directories on Windows servers and network-attached storage devices using the SMB2 protocol. This node enables seamless file operations across your network infrastructure.
6
+
7
+ [n8n](https://n8n.io/) is a [fair-code licensed](https://docs.n8n.io/reference/license/) workflow automation platform.
8
+
9
+ [Installation](#installation)
10
+ [Operations](#operations)
11
+ [Credentials](#credentials)
12
+ [Compatibility](#compatibility)
13
+ [Usage](#usage)
14
+ [Resources](#resources)
15
+ [Development](#development)
16
+
17
+ ## Installation
18
+
19
+ Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes/installation/) in the n8n community nodes documentation.
20
+
21
+ Install using the package name:
22
+ ```
23
+ n8n-nodes-windows-network-fileshare-smb2
24
+ ```
25
+
26
+ ## Operations
27
+
28
+ This node supports comprehensive file and directory operations on Windows network shares:
29
+
30
+ ### File Operations
31
+ - **Read File** - Download and read file contents from the network share
32
+ - **Write File** - Upload or create files with specified content
33
+ - **Delete File** - Remove files from the network share
34
+ - **Move File** - Rename or relocate files within the share
35
+ - **File Metadata** - Get file size, existence, and other metadata
36
+
37
+ ### Directory Operations
38
+ - **List Directory** - Enumerate files and folders in a directory
39
+ - **Create Directory** - Create new folders on the network share
40
+ - **Delete Directory** - Remove empty directories from the share
41
+
42
+ ## Credentials
43
+
44
+ To use this node, you need access to a Windows network file share with appropriate permissions.
45
+
46
+ ### Prerequisites
47
+ - Access to a Windows file share (SMB2 compatible)
48
+ - Valid Windows domain or local user credentials
49
+ - Network connectivity to the target share
50
+
51
+ ### Authentication Setup
52
+ 1. In n8n, create new credentials of type "Windows Network API"
53
+ 2. Configure the following fields:
54
+ - **Share Path** - UNC path to your network share (e.g., `\\server\sharename`)
55
+ - **Domain** - Windows domain name (leave empty for local accounts)
56
+ - **Username** - Windows username with share access
57
+ - **Password** - User password
58
+ - **Connection Timeout** - Timeout in milliseconds (default: 30000)
59
+
60
+ ### Required Permissions
61
+ Your user account needs the following permissions on the target share:
62
+ - **Read** permissions for file read and directory list operations
63
+ - **Write** permissions for file write and directory create operations
64
+ - **Delete** permissions for file and directory deletion operations
65
+
66
+ ## Compatibility
67
+
68
+ - **Minimum n8n version:** 1.0.0
69
+ - **Tested with:** n8n 1.x
70
+ - **Node.js requirement:** 20.15 or higher
71
+ - **SMB Protocol:** SMB2 and SMB3 compatible shares
72
+ - **Operating Systems:** Windows, Linux, macOS (client-side)
73
+
74
+ ### Known Limitations
75
+ - Requires `--openssl-legacy-provider` flag for Node.js compatibility
76
+ - Large file operations may require timeout adjustments
77
+ - Some legacy SMB1 shares may not be supported
78
+
79
+ ## Usage
80
+
81
+ ### Basic File Operations
82
+ 1. Add the "Windows Fileshare (SMB2)" node to your workflow
83
+ 2. Configure your Windows Network credentials
84
+ 3. Select the desired operation (File or Directory)
85
+ 4. Specify the file/directory path relative to your share root
86
+ 5. Configure operation-specific parameters
87
+
88
+ ### Path Format
89
+ - Use forward slashes `/` or backslashes `\` in paths
90
+ - Paths are relative to your configured share root
91
+ - Example: `folder/subfolder/file.txt` or `folder\subfolder\file.txt`
92
+
93
+ ### Error Handling
94
+ The node provides detailed error messages for common issues:
95
+ - Authentication failures
96
+ - Network connectivity problems
97
+ - File not found errors
98
+ - Permission denied errors
99
+
100
+ Configure error handling in your workflow using n8n's built-in error handling features.
101
+
102
+ ## Resources
103
+
104
+ * [n8n community nodes documentation](https://docs.n8n.io/integrations/#community-nodes)
105
+ * [Microsoft SMB Protocol Documentation](https://docs.microsoft.com/en-us/windows/win32/fileio/microsoft-smb-protocol-and-cifs-protocol-overview)
106
+ * [Windows File Sharing Documentation](https://docs.microsoft.com/en-us/windows-server/storage/file-server/file-server-smb-overview)
107
+
108
+ ## Development
109
+
110
+ This section contains information for developers who want to contribute to or modify this node.
111
+
112
+ ### Prerequisites
113
+ - Node.js 20.15 or higher
114
+ - npm or yarn package manager
115
+ - TypeScript knowledge
116
+ - Basic understanding of n8n node development
117
+
118
+ ### Setup Development Environment
119
+ 1. Clone the repository:
120
+ ```bash
121
+ git clone https://github.com/DirectorVector/n8n-nodes-windows-network-fileshare-smb2.git
122
+ cd n8n-nodes-windows-network-fileshare-smb2
123
+ ```
124
+
125
+ 2. Install dependencies:
126
+ ```bash
127
+ npm install
128
+ ```
129
+
130
+ 3. Set up environment variables for testing:
131
+ ```bash
132
+ # Create .env file with your test credentials
133
+ SMB_SHARE=\\\\server\\sharename
134
+ SMB_DOMAIN=YOURDOMAIN
135
+ SMB_USERNAME=testuser
136
+ SMB_PASSWORD=testpass
137
+ ```
138
+
139
+ ### Development Commands
140
+ ```bash
141
+ # Build the node
142
+ npm run build
143
+
144
+ # Development mode with watch
145
+ npm run dev
146
+
147
+ # Run linting
148
+ npm run lint
149
+
150
+ # Fix linting issues
151
+ npm run lintfix
152
+
153
+ # Format code
154
+ npm run format
155
+
156
+ # Run tests
157
+ npm run test
158
+
159
+ # Run full CI pipeline
160
+ npm run test:ci
161
+ ```
162
+
163
+ ### Testing
164
+ The project includes comprehensive testing:
165
+
166
+ - **SMB2 Package Tests** - Direct testing of the @marsaud/smb2 package functionality
167
+ - **n8n Node Tests** - Integration tests for the complete node implementation
168
+
169
+ Run tests with:
170
+ ```bash
171
+ npm run test:operations # Test SMB2 package directly
172
+ npm run test:node # Test n8n node implementation
173
+ npm run test # Run both test suites
174
+ ```
175
+
176
+ ### Project Structure
177
+ ```
178
+ ├── credentials/
179
+ │ └── WindowsNetworkApi.credentials.ts # Authentication configuration
180
+ ├── nodes/
181
+ │ └── WindowsFileshare/
182
+ │ ├── WindowsFileshare.node.ts # Main node implementation
183
+ │ ├── WindowsFileshareDescription.ts # Node UI configuration
184
+ │ └── windowsfileshare.svg # Node icon
185
+ ├── test-smb2-operations.js # SMB2 package tests
186
+ ├── test-n8n-node.js # Node integration tests
187
+ └── dist/ # Compiled output
188
+ ```
189
+
190
+ ### Key Dependencies
191
+ - **@marsaud/smb2** - SMB2 client library for network file operations
192
+ - **n8n-workflow** - n8n workflow types and utilities
193
+ - **TypeScript** - Type-safe development
194
+ - **ESLint** - Code quality and consistency
195
+
196
+ ### Contributing
197
+ 1. Fork the repository
198
+ 2. Create a feature branch
199
+ 3. Make your changes
200
+ 4. Add/update tests as needed
201
+ 5. Ensure all tests pass: `npm run test:ci`
202
+ 6. Submit a pull request
203
+
204
+ ### Debugging
205
+ For development debugging:
206
+ 1. Enable verbose logging in your test environment
207
+ 2. Use the included test files to validate functionality
208
+ 3. Check network connectivity and credentials
209
+ 4. Verify SMB2 protocol compatibility on target shares
@@ -0,0 +1,8 @@
1
+ import { ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
2
+ export declare class WindowsNetworkApi implements ICredentialType {
3
+ name: string;
4
+ displayName: string;
5
+ documentationUrl: string;
6
+ properties: INodeProperties[];
7
+ test: ICredentialTestRequest;
8
+ }
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.WindowsNetworkApi = void 0;
4
+ class WindowsNetworkApi {
5
+ constructor() {
6
+ this.name = 'windowsNetworkApi';
7
+ this.displayName = 'Windows Network (SMB2) API';
8
+ this.documentationUrl = 'https://github.com/DirectorVector/n8n-nodes-windows-network-fileshare-smb2';
9
+ this.properties = [
10
+ {
11
+ displayName: 'UNC Share Path',
12
+ name: 'share',
13
+ type: 'string',
14
+ default: '',
15
+ placeholder: '\\\\server\\ShareName',
16
+ description: 'The UNC path to the Windows network share (e.g., \\\\server\\ShareName)',
17
+ required: true,
18
+ },
19
+ {
20
+ displayName: 'Domain',
21
+ name: 'domain',
22
+ type: 'string',
23
+ default: '',
24
+ placeholder: 'DOMAIN',
25
+ description: 'Windows domain name. Use WORKGROUP for local accounts.',
26
+ required: true,
27
+ },
28
+ {
29
+ displayName: 'Username',
30
+ name: 'username',
31
+ type: 'string',
32
+ default: '',
33
+ placeholder: 'username',
34
+ description: 'Windows username for authentication',
35
+ required: true,
36
+ },
37
+ {
38
+ displayName: 'Password',
39
+ name: 'password',
40
+ type: 'string',
41
+ default: '',
42
+ typeOptions: {
43
+ password: true,
44
+ },
45
+ description: 'Windows password for authentication',
46
+ required: true,
47
+ },
48
+ {
49
+ displayName: 'Connection Timeout (ms)',
50
+ name: 'timeout',
51
+ type: 'number',
52
+ default: 30000,
53
+ description: 'Connection timeout in milliseconds',
54
+ required: false,
55
+ },
56
+ ];
57
+ this.test = {
58
+ request: {
59
+ baseURL: '={{$credentials?.share}}',
60
+ url: '',
61
+ method: 'GET',
62
+ },
63
+ };
64
+ }
65
+ }
66
+ exports.WindowsNetworkApi = WindowsNetworkApi;
67
+ //# sourceMappingURL=WindowsNetworkApi.credentials.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WindowsNetworkApi.credentials.js","sourceRoot":"","sources":["../../credentials/WindowsNetworkApi.credentials.ts"],"names":[],"mappings":";;;AAEA,MAAa,iBAAiB;IAA9B;QACC,SAAI,GAAG,mBAAmB,CAAC;QAC3B,gBAAW,GAAG,4BAA4B,CAAC;QAC3C,qBAAgB,GAAG,4EAA4E,CAAC;QAChG,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,gBAAgB;gBAC7B,IAAI,EAAE,OAAO;gBACb,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,uBAAuB;gBACpC,WAAW,EAAE,yEAAyE;gBACtF,QAAQ,EAAE,IAAI;aACd;YACD;gBACC,WAAW,EAAE,QAAQ;gBACrB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,QAAQ;gBACrB,WAAW,EAAE,wDAAwD;gBACrE,QAAQ,EAAE,IAAI;aACd;YACD;gBACC,WAAW,EAAE,UAAU;gBACvB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE,UAAU;gBACvB,WAAW,EAAE,qCAAqC;gBAClD,QAAQ,EAAE,IAAI;aACd;YACD;gBACC,WAAW,EAAE,UAAU;gBACvB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE;oBACZ,QAAQ,EAAE,IAAI;iBACd;gBACD,WAAW,EAAE,qCAAqC;gBAClD,QAAQ,EAAE,IAAI;aACd;YACD;gBACC,WAAW,EAAE,yBAAyB;gBACtC,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,KAAK;gBACd,WAAW,EAAE,oCAAoC;gBACjD,QAAQ,EAAE,KAAK;aACf;SACD,CAAC;QAGF,SAAI,GAA2B;YAC9B,OAAO,EAAE;gBACR,OAAO,EAAE,0BAA0B;gBACnC,GAAG,EAAE,EAAE;gBACP,MAAM,EAAE,KAAK;aACb;SACD,CAAC;IACH,CAAC;CAAA;AA7DD,8CA6DC"}
@@ -0,0 +1,5 @@
1
+ import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
2
+ export declare class WindowsFileshare implements INodeType {
3
+ description: INodeTypeDescription;
4
+ execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
5
+ }
@@ -0,0 +1,183 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.WindowsFileshare = void 0;
4
+ const n8n_workflow_1 = require("n8n-workflow");
5
+ const WindowsFileshareDescription_1 = require("./WindowsFileshareDescription");
6
+ const SMB2 = require('@marsaud/smb2');
7
+ class WindowsFileshare {
8
+ constructor() {
9
+ this.description = {
10
+ displayName: 'Windows Fileshare (SMB2)',
11
+ name: 'windowsFileshare',
12
+ icon: { light: 'file:windowsfileshare.svg', dark: 'file:windowsfileshare.svg' },
13
+ group: ['input', 'output'],
14
+ version: 1,
15
+ subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
16
+ description: 'Access Windows network file shares via SMB2 protocol',
17
+ defaults: {
18
+ name: 'Windows Fileshare',
19
+ },
20
+ inputs: ['main'],
21
+ outputs: ['main'],
22
+ credentials: [
23
+ {
24
+ name: 'windowsNetworkApi',
25
+ required: true,
26
+ },
27
+ ],
28
+ properties: [
29
+ {
30
+ displayName: 'Resource',
31
+ name: 'resource',
32
+ type: 'options',
33
+ noDataExpression: true,
34
+ options: WindowsFileshareDescription_1.resources,
35
+ default: 'file',
36
+ },
37
+ ...WindowsFileshareDescription_1.operations,
38
+ ...WindowsFileshareDescription_1.fileFields,
39
+ ...WindowsFileshareDescription_1.directoryFields,
40
+ ...WindowsFileshareDescription_1.commonFields,
41
+ ],
42
+ };
43
+ }
44
+ async execute() {
45
+ const items = this.getInputData();
46
+ const returnData = [];
47
+ let responseData;
48
+ for (let i = 0; i < items.length; i++) {
49
+ try {
50
+ const resource = this.getNodeParameter('resource', i);
51
+ const operation = this.getNodeParameter('operation', i);
52
+ const credentials = await this.getCredentials('windowsNetworkApi', i);
53
+ const createSMB2Client = () => {
54
+ const options = this.getNodeParameter('options', i, {});
55
+ return new SMB2({
56
+ share: credentials.share,
57
+ domain: credentials.domain,
58
+ username: credentials.username,
59
+ password: credentials.password,
60
+ timeout: options.timeout || credentials.timeout || 30000,
61
+ });
62
+ };
63
+ const promisify = (fn, ...args) => {
64
+ return new Promise((resolve, reject) => {
65
+ fn(...args, (err, result) => {
66
+ if (err)
67
+ reject(err);
68
+ else
69
+ resolve(result);
70
+ });
71
+ });
72
+ };
73
+ const normalizePath = (path) => {
74
+ if (!path)
75
+ return '';
76
+ return path.replace(/\//g, '\\').replace(/^\\+/, '');
77
+ };
78
+ if (resource === 'file') {
79
+ const client = createSMB2Client();
80
+ if (operation === 'read') {
81
+ const filePath = normalizePath(this.getNodeParameter('filePath', i));
82
+ const data = (await promisify(client.readFile.bind(client), filePath));
83
+ const content = data.toString();
84
+ responseData = {
85
+ filePath,
86
+ content,
87
+ size: data.length,
88
+ encoding: 'utf8',
89
+ };
90
+ }
91
+ else if (operation === 'write') {
92
+ const filePath = normalizePath(this.getNodeParameter('filePath', i));
93
+ const fileContent = this.getNodeParameter('fileContent', i);
94
+ const encoding = this.getNodeParameter('encoding', i, 'utf8');
95
+ const buffer = Buffer.from(fileContent, encoding);
96
+ await promisify(client.writeFile.bind(client), filePath, buffer);
97
+ responseData = {
98
+ filePath,
99
+ size: buffer.length,
100
+ encoding,
101
+ success: true,
102
+ };
103
+ }
104
+ else if (operation === 'delete') {
105
+ const filePath = normalizePath(this.getNodeParameter('filePath', i));
106
+ await promisify(client.unlink.bind(client), filePath);
107
+ responseData = {
108
+ filePath,
109
+ deleted: true,
110
+ success: true,
111
+ };
112
+ }
113
+ else if (operation === 'move') {
114
+ const sourceFilePath = normalizePath(this.getNodeParameter('sourceFilePath', i));
115
+ const destinationFilePath = normalizePath(this.getNodeParameter('destinationFilePath', i));
116
+ await promisify(client.rename.bind(client), sourceFilePath, destinationFilePath);
117
+ responseData = {
118
+ sourceFilePath,
119
+ destinationFilePath,
120
+ moved: true,
121
+ success: true,
122
+ };
123
+ }
124
+ else if (operation === 'metadata') {
125
+ const filePath = normalizePath(this.getNodeParameter('filePath', i));
126
+ const [size, exists] = await Promise.all([
127
+ promisify(client.getSize.bind(client), filePath),
128
+ promisify(client.exists.bind(client), filePath),
129
+ ]);
130
+ responseData = {
131
+ filePath,
132
+ exists,
133
+ size: exists ? size : 0,
134
+ };
135
+ }
136
+ }
137
+ else if (resource === 'directory') {
138
+ const client = createSMB2Client();
139
+ if (operation === 'list') {
140
+ const directoryPath = normalizePath(this.getNodeParameter('directoryPath', i, ''));
141
+ const files = (await promisify(client.readdir.bind(client), directoryPath));
142
+ responseData = {
143
+ directoryPath: directoryPath || '/',
144
+ files,
145
+ count: files.length,
146
+ };
147
+ }
148
+ else if (operation === 'create') {
149
+ const directoryPath = normalizePath(this.getNodeParameter('directoryPath', i));
150
+ await promisify(client.mkdir.bind(client), directoryPath);
151
+ responseData = {
152
+ directoryPath,
153
+ created: true,
154
+ success: true,
155
+ };
156
+ }
157
+ else if (operation === 'delete') {
158
+ const directoryPath = normalizePath(this.getNodeParameter('directoryPath', i));
159
+ await promisify(client.rmdir.bind(client), directoryPath);
160
+ responseData = {
161
+ directoryPath,
162
+ deleted: true,
163
+ success: true,
164
+ };
165
+ }
166
+ }
167
+ const executionData = this.helpers.constructExecutionMetaData(this.helpers.returnJsonArray(responseData), { itemData: { item: i } });
168
+ returnData.push(...executionData);
169
+ }
170
+ catch (error) {
171
+ if (this.continueOnFail()) {
172
+ const executionErrorData = this.helpers.constructExecutionMetaData(this.helpers.returnJsonArray({ error: error.message }), { itemData: { item: i } });
173
+ returnData.push(...executionErrorData);
174
+ continue;
175
+ }
176
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), error, { itemIndex: i });
177
+ }
178
+ }
179
+ return [returnData];
180
+ }
181
+ }
182
+ exports.WindowsFileshare = WindowsFileshare;
183
+ //# sourceMappingURL=WindowsFileshare.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WindowsFileshare.node.js","sourceRoot":"","sources":["../../../nodes/WindowsFileshare/WindowsFileshare.node.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,6 @@
1
+ import { INodePropertyOptions, INodeProperties } from 'n8n-workflow';
2
+ export declare const resources: INodePropertyOptions[];
3
+ export declare const operations: INodeProperties[];
4
+ export declare const fileFields: INodeProperties[];
5
+ export declare const directoryFields: INodeProperties[];
6
+ export declare const commonFields: INodeProperties[];
@@ -0,0 +1,249 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.commonFields = exports.directoryFields = exports.fileFields = exports.operations = exports.resources = void 0;
4
+ exports.resources = [
5
+ {
6
+ name: 'File',
7
+ value: 'file',
8
+ description: 'File operations on Windows network shares',
9
+ },
10
+ {
11
+ name: 'Directory',
12
+ value: 'directory',
13
+ description: 'Directory operations on Windows network shares',
14
+ },
15
+ ];
16
+ exports.operations = [
17
+ {
18
+ displayName: 'Operation',
19
+ name: 'operation',
20
+ type: 'options',
21
+ noDataExpression: true,
22
+ displayOptions: {
23
+ show: {
24
+ resource: ['file'],
25
+ },
26
+ },
27
+ options: [
28
+ {
29
+ name: 'Delete',
30
+ value: 'delete',
31
+ description: 'Delete a file from network share',
32
+ action: 'Delete a file',
33
+ },
34
+ {
35
+ name: 'Get Metadata',
36
+ value: 'metadata',
37
+ description: 'Get file size and existence information',
38
+ action: 'Get file metadata',
39
+ },
40
+ {
41
+ name: 'Move/Rename',
42
+ value: 'move',
43
+ description: 'Move or rename a file on network share',
44
+ action: 'Move or rename a file',
45
+ },
46
+ {
47
+ name: 'Read',
48
+ value: 'read',
49
+ description: 'Read file content from network share',
50
+ action: 'Read a file',
51
+ },
52
+ {
53
+ name: 'Write',
54
+ value: 'write',
55
+ description: 'Write content to a file on network share',
56
+ action: 'Write a file',
57
+ },
58
+ ],
59
+ default: 'read',
60
+ },
61
+ {
62
+ displayName: 'Operation',
63
+ name: 'operation',
64
+ type: 'options',
65
+ noDataExpression: true,
66
+ displayOptions: {
67
+ show: {
68
+ resource: ['directory'],
69
+ },
70
+ },
71
+ options: [
72
+ {
73
+ name: 'List',
74
+ value: 'list',
75
+ description: 'List contents of a directory',
76
+ action: 'List directory contents',
77
+ },
78
+ {
79
+ name: 'Create',
80
+ value: 'create',
81
+ description: 'Create a new directory',
82
+ action: 'Create a directory',
83
+ },
84
+ {
85
+ name: 'Delete',
86
+ value: 'delete',
87
+ description: 'Delete a directory',
88
+ action: 'Delete a directory',
89
+ },
90
+ ],
91
+ default: 'list',
92
+ },
93
+ ];
94
+ exports.fileFields = [
95
+ {
96
+ displayName: 'File Path',
97
+ name: 'filePath',
98
+ type: 'string',
99
+ required: true,
100
+ default: '',
101
+ placeholder: 'path/to/file.txt',
102
+ description: 'Path to the file relative to the share root',
103
+ displayOptions: {
104
+ show: {
105
+ resource: ['file'],
106
+ operation: ['read', 'delete', 'metadata'],
107
+ },
108
+ },
109
+ },
110
+ {
111
+ displayName: 'File Path',
112
+ name: 'filePath',
113
+ type: 'string',
114
+ required: true,
115
+ default: '',
116
+ placeholder: 'path/to/file.txt',
117
+ description: 'Path to the file relative to the share root',
118
+ displayOptions: {
119
+ show: {
120
+ resource: ['file'],
121
+ operation: ['write'],
122
+ },
123
+ },
124
+ },
125
+ {
126
+ displayName: 'File Content',
127
+ name: 'fileContent',
128
+ type: 'string',
129
+ required: true,
130
+ default: '',
131
+ typeOptions: {
132
+ rows: 4,
133
+ },
134
+ description: 'Content to write to the file',
135
+ displayOptions: {
136
+ show: {
137
+ resource: ['file'],
138
+ operation: ['write'],
139
+ },
140
+ },
141
+ },
142
+ {
143
+ displayName: 'Encoding',
144
+ name: 'encoding',
145
+ type: 'options',
146
+ options: [
147
+ {
148
+ name: 'UTF-8',
149
+ value: 'utf8',
150
+ },
151
+ {
152
+ name: 'ASCII',
153
+ value: 'ascii',
154
+ },
155
+ {
156
+ name: 'Binary',
157
+ value: 'binary',
158
+ },
159
+ ],
160
+ default: 'utf8',
161
+ description: 'Encoding for file content',
162
+ displayOptions: {
163
+ show: {
164
+ resource: ['file'],
165
+ operation: ['write'],
166
+ },
167
+ },
168
+ },
169
+ {
170
+ displayName: 'Source File Path',
171
+ name: 'sourceFilePath',
172
+ type: 'string',
173
+ required: true,
174
+ default: '',
175
+ placeholder: 'path/to/source.txt',
176
+ description: 'Current path to the file relative to the share root',
177
+ displayOptions: {
178
+ show: {
179
+ resource: ['file'],
180
+ operation: ['move'],
181
+ },
182
+ },
183
+ },
184
+ {
185
+ displayName: 'Destination File Path',
186
+ name: 'destinationFilePath',
187
+ type: 'string',
188
+ required: true,
189
+ default: '',
190
+ placeholder: 'path/to/destination.txt',
191
+ description: 'New path for the file relative to the share root',
192
+ displayOptions: {
193
+ show: {
194
+ resource: ['file'],
195
+ operation: ['move'],
196
+ },
197
+ },
198
+ },
199
+ ];
200
+ exports.directoryFields = [
201
+ {
202
+ displayName: 'Directory Path',
203
+ name: 'directoryPath',
204
+ type: 'string',
205
+ default: '',
206
+ placeholder: 'path/to/directory',
207
+ description: 'Path to the directory relative to the share root. Leave empty for root directory.',
208
+ displayOptions: {
209
+ show: {
210
+ resource: ['directory'],
211
+ operation: ['list'],
212
+ },
213
+ },
214
+ },
215
+ {
216
+ displayName: 'Directory Path',
217
+ name: 'directoryPath',
218
+ type: 'string',
219
+ required: true,
220
+ default: '',
221
+ placeholder: 'path/to/directory',
222
+ description: 'Path to the directory relative to the share root',
223
+ displayOptions: {
224
+ show: {
225
+ resource: ['directory'],
226
+ operation: ['create', 'delete'],
227
+ },
228
+ },
229
+ },
230
+ ];
231
+ exports.commonFields = [
232
+ {
233
+ displayName: 'Options',
234
+ name: 'options',
235
+ type: 'collection',
236
+ placeholder: 'Add Option',
237
+ default: {},
238
+ options: [
239
+ {
240
+ displayName: 'Timeout (Ms)',
241
+ name: 'timeout',
242
+ type: 'number',
243
+ default: 30000,
244
+ description: 'Timeout for the SMB operation in milliseconds',
245
+ },
246
+ ],
247
+ },
248
+ ];
249
+ //# sourceMappingURL=WindowsFileshareDescription.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WindowsFileshareDescription.js","sourceRoot":"","sources":["../../../nodes/WindowsFileshare/WindowsFileshareDescription.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,9 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4 6C4 5.44772 4.44772 5 5 5H19C19.5523 5 20 5.44772 20 6V18C20 18.5523 19.5523 19 19 19H5C4.44772 19 4 18.5523 4 18V6Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M9 9H15" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
4
+ <path d="M9 12H15" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
5
+ <path d="M9 15H12" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
6
+ <circle cx="6" cy="6" r="1" fill="currentColor"/>
7
+ <circle cx="18" cy="6" r="1" fill="currentColor"/>
8
+ <path d="M2 8V6C2 4.89543 2.89543 4 4 4H20C21.1046 4 22 4.89543 22 6V8" stroke="currentColor" stroke-width="2"/>
9
+ </svg>
@@ -0,0 +1,72 @@
1
+ {
2
+ "name": "n8n-nodes-windows-network-fileshare-smb2",
3
+ "version": "0.1.0-beta.1",
4
+ "description": "n8n community node for Windows File Share access via SMB2 protocol",
5
+ "keywords": [
6
+ "n8n-community-node-package",
7
+ "n8n",
8
+ "windows",
9
+ "network",
10
+ "fileshare",
11
+ "file",
12
+ "smb2",
13
+ "file-share",
14
+ "network-drive",
15
+ "automation"
16
+ ],
17
+ "license": "MIT",
18
+ "homepage": "https://github.com/DirectorVector/n8n-nodes-windows-network-fileshare-smb2#readme",
19
+ "author": {
20
+ "name": "DirectorVector",
21
+ "email": "bthrower@vortexglobal.com"
22
+ },
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "git+https://github.com/DirectorVector/n8n-nodes-windows-network-fileshare-smb2.git"
26
+ },
27
+ "engines": {
28
+ "node": ">=20.15"
29
+ },
30
+ "main": "index.js",
31
+ "scripts": {
32
+ "build": "npx rimraf dist && tsc && gulp build:icons",
33
+ "dev": "tsc --watch",
34
+ "format": "prettier nodes credentials --write",
35
+ "format:check": "prettier nodes credentials --check",
36
+ "lint": "eslint nodes credentials package.json",
37
+ "lintfix": "eslint nodes credentials package.json --fix",
38
+ "test": "npm run test:operations && npm run test:node",
39
+ "test:operations": "node --openssl-legacy-provider test-smb2-operations.js",
40
+ "test:node": "node --openssl-legacy-provider test-n8n-node.js",
41
+ "test:ci": "npm run lint && npm run format:check && npm run build && npm run test",
42
+ "prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
43
+ },
44
+ "files": [
45
+ "dist"
46
+ ],
47
+ "n8n": {
48
+ "n8nNodesApiVersion": 1,
49
+ "credentials": [
50
+ "dist/credentials/WindowsNetworkApi.credentials.js"
51
+ ],
52
+ "nodes": [
53
+ "dist/nodes/WindowsFileshare/WindowsFileshare.node.js"
54
+ ]
55
+ },
56
+ "dependencies": {
57
+ "@marsaud/smb2": "^0.15.0",
58
+ "dotenv": "^16.0.0"
59
+ },
60
+ "devDependencies": {
61
+ "@types/node": "^24.7.2",
62
+ "@typescript-eslint/parser": "~8.32.0",
63
+ "eslint": "^8.57.0",
64
+ "eslint-plugin-n8n-nodes-base": "^1.16.3",
65
+ "gulp": "^5.0.0",
66
+ "prettier": "^3.5.3",
67
+ "typescript": "^5.8.2"
68
+ },
69
+ "peerDependencies": {
70
+ "n8n-workflow": "*"
71
+ }
72
+ }
@@ -0,0 +1 @@
1
+ {"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.float16.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/web-globals/abortcontroller.d.ts","../node_modules/@types/node/web-globals/crypto.d.ts","../node_modules/@types/node/web-globals/domexception.d.ts","../node_modules/@types/node/web-globals/events.d.ts","../node_modules/buffer/index.d.ts","../node_modules/undici-types/utility.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client-stats.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/h2c-client.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-call-history.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/snapshot-agent.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cache-interceptor.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/web-globals/fetch.d.ts","../node_modules/@types/node/web-globals/navigator.d.ts","../node_modules/@types/node/web-globals/storage.d.ts","../node_modules/@types/node/web-globals/streams.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/inspector.generated.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/sqlite.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/form-data/index.d.ts","../node_modules/n8n-workflow/dist/esm/constants.d.ts","../node_modules/n8n-workflow/dist/esm/data-table.types.d.ts","../node_modules/n8n-workflow/dist/esm/deferred-promise.d.ts","../node_modules/@n8n/errors/dist/types.d.ts","../node_modules/@n8n/errors/dist/application.error.d.ts","../node_modules/@n8n/errors/dist/index.d.ts","../node_modules/n8n-workflow/dist/esm/errors/base/base.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/base/operational.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/base/unexpected.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/base/user.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/abstract/execution-base.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/expression.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/execution-cancelled.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/abstract/node.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/node-api.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/node-operation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/workflow-configuration.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/node-ssl.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/workflow-activation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/webhook-taken.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/workflow-deactivation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/workflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/cli-subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/trigger-close.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/expression-extension.error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/db-connection-timeout-error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/ensure-error.d.ts","../node_modules/n8n-workflow/dist/esm/errors/index.d.ts","../node_modules/n8n-workflow/dist/esm/execution-status.d.ts","../node_modules/n8n-workflow/dist/esm/result.d.ts","../node_modules/n8n-workflow/dist/esm/expression.d.ts","../node_modules/n8n-workflow/dist/esm/workflow.d.ts","../node_modules/n8n-workflow/dist/esm/workflow-data-proxy-env-provider.d.ts","../node_modules/n8n-workflow/dist/esm/interfaces.d.ts","../node_modules/n8n-workflow/dist/esm/logger-proxy.d.ts","../node_modules/n8n-workflow/dist/esm/node-helpers.d.ts","../node_modules/n8n-workflow/dist/esm/observable-object.d.ts","../node_modules/n8n-workflow/dist/esm/telemetry-helpers.d.ts","../node_modules/n8n-workflow/dist/esm/common/get-child-nodes.d.ts","../node_modules/n8n-workflow/dist/esm/common/get-connected-nodes.d.ts","../node_modules/n8n-workflow/dist/esm/common/get-node-by-name.d.ts","../node_modules/n8n-workflow/dist/esm/common/get-parent-nodes.d.ts","../node_modules/n8n-workflow/dist/esm/common/map-connections-by-destination.d.ts","../node_modules/n8n-workflow/dist/esm/common/index.d.ts","../node_modules/n8n-workflow/dist/esm/cron.d.ts","../node_modules/n8n-workflow/dist/esm/global-state.d.ts","../node_modules/n8n-workflow/dist/esm/message-event-bus.d.ts","../node_modules/n8n-workflow/dist/esm/expressions/expression-helpers.d.ts","../node_modules/zod/dist/types/v3/helpers/typealiases.d.ts","../node_modules/zod/dist/types/v3/helpers/util.d.ts","../node_modules/zod/dist/types/v3/zoderror.d.ts","../node_modules/zod/dist/types/v3/locales/en.d.ts","../node_modules/zod/dist/types/v3/errors.d.ts","../node_modules/zod/dist/types/v3/helpers/parseutil.d.ts","../node_modules/zod/dist/types/v3/helpers/enumutil.d.ts","../node_modules/zod/dist/types/v3/helpers/errorutil.d.ts","../node_modules/zod/dist/types/v3/helpers/partialutil.d.ts","../node_modules/zod/dist/types/v3/standard-schema.d.ts","../node_modules/zod/dist/types/v3/types.d.ts","../node_modules/zod/dist/types/v3/external.d.ts","../node_modules/zod/dist/types/v3/index.d.ts","../node_modules/zod/dist/types/index.d.ts","../node_modules/n8n-workflow/dist/esm/from-ai-parse-utils.d.ts","../node_modules/n8n-workflow/dist/esm/tool-helpers.d.ts","../node_modules/n8n-workflow/dist/esm/node-reference-parser-utils.d.ts","../node_modules/n8n-workflow/dist/esm/metadata-utils.d.ts","../node_modules/n8n-workflow/dist/esm/workflow-data-proxy.d.ts","../node_modules/n8n-workflow/dist/esm/versioned-node-type.d.ts","../node_modules/n8n-workflow/dist/esm/type-validation.d.ts","../node_modules/n8n-workflow/dist/esm/utils.d.ts","../node_modules/n8n-workflow/dist/esm/type-guards.d.ts","../node_modules/n8n-workflow/dist/esm/graph/graph-utils.d.ts","../node_modules/n8n-workflow/dist/esm/extensions/extensions.d.ts","../node_modules/n8n-workflow/dist/esm/extensions/expression-extension.d.ts","../node_modules/n8n-workflow/dist/esm/extensions/index.d.ts","../node_modules/n8n-workflow/dist/esm/extensions/expression-parser.d.ts","../node_modules/n8n-workflow/dist/esm/native-methods/index.d.ts","../node_modules/n8n-workflow/dist/esm/node-parameters/filter-parameter.d.ts","../node_modules/n8n-workflow/dist/esm/node-parameters/parameter-type-validation.d.ts","../node_modules/n8n-workflow/dist/esm/node-parameters/path-utils.d.ts","../node_modules/n8n-workflow/dist/esm/evaluation-helpers.d.ts","../node_modules/n8n-workflow/dist/esm/index.d.ts","../credentials/windowsnetworkapi.credentials.ts","../nodes/windowsfileshare/windowsfilesharedescription.ts","../nodes/windowsfileshare/windowsfileshare.node.ts","../package.json","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/index.d.ts"],"fileIdsList":[[52,107,124,125,241],[52,107,124,125,162],[52,107,124,125,162,163],[52,107,124,125],[52,104,105,107,124,125],[52,106,107,124,125],[107,124,125],[52,107,112,124,125,142],[52,107,108,113,118,124,125,127,139,150],[52,107,108,109,118,124,125,127],[52,107,110,124,125,151],[52,107,111,112,119,124,125,128],[52,107,112,124,125,139,147],[52,107,113,115,118,124,125,127],[52,106,107,114,124,125],[52,107,115,116,124,125],[52,107,117,118,124,125],[52,106,107,118,124,125],[52,107,118,119,120,124,125,139,150],[52,107,118,119,120,124,125,134,139,142],[52,99,107,115,118,121,124,125,127,139,150,241],[52,107,118,119,121,122,124,125,127,139,147,150],[52,107,121,123,124,125,139,147,150],[50,51,52,53,54,55,56,57,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156],[52,107,118,124,125],[52,107,124,125,126,150],[52,107,115,118,124,125,127,139],[52,107,124,125,128],[52,107,124,125,129],[52,106,107,124,125,130],[52,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,241],[52,107,124,125,132],[52,107,124,125,133],[52,107,118,124,125,134,135],[52,107,124,125,134,136,151,153],[52,107,118,124,125,139,140,142],[52,107,124,125,141,142],[52,107,124,125,139,140],[52,107,124,125,142],[52,107,124,125,143],[52,104,107,124,125,139,144],[52,107,118,124,125,145,146],[52,107,124,125,145,146],[52,107,112,124,125,127,139,147],[52,107,124,125,148],[52,107,124,125,127,149],[52,107,121,124,125,133,150],[52,107,112,124,125,151],[52,107,124,125,139,152],[52,107,124,125,126,153],[52,107,124,125,154],[52,107,112,124,125],[52,99,107,124,125],[52,107,124,125,155],[52,99,107,118,120,124,125,130,139,142,150,152,153,155],[52,107,124,125,139,156],[52,107,124,125,248,286],[52,107,124,125,248,271,286],[52,107,124,125,247,286],[52,107,124,125,286],[52,107,124,125,248],[52,107,124,125,248,272,286],[52,107,124,125,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285],[52,107,124,125,272,286],[52,107,121,124,125,139,157,241],[52,107,124,125,193],[52,107,124,125,198,199,200,201,202],[52,107,124,125,164,193],[52,107,124,125,169,193],[52,107,124,125,164],[52,107,124,125,165],[52,107,124,125,181],[52,107,124,125,169],[52,107,124,125,170],[52,107,124,125,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186],[52,107,124,125,164,172,193],[52,107,124,125,172,173,193],[52,107,124,125,180],[52,107,124,125,177],[52,107,124,125,164,169,193],[52,107,124,125,174],[52,107,124,125,191,193],[52,107,124,125,232],[52,107,124,125,232,233],[52,107,124,125,221],[52,107,121,124,125,159,160,161,187,188,189,190,191,192,193,194,195,196,197,203,204,205,206,207,222,223,224,225,226,227,228,229,230,231,234,235,236,237,238,239,240],[52,107,119,121,124,125,139,147,150,158,159,160,161,170,173,174,177,180,187,188,189,191,192,241],[52,107,124,125,191,192,193],[52,107,124,125,190,193],[52,65,68,71,72,107,124,125,150],[52,68,107,124,125,139,150],[52,68,72,107,124,125,150],[52,107,124,125,139],[52,62,107,124,125],[52,66,107,124,125],[52,64,65,68,107,124,125,150],[52,107,124,125,127,147],[52,107,124,125,157],[52,62,107,124,125,157],[52,64,68,107,124,125,127,150],[52,59,60,61,63,67,107,118,124,125,139,150],[52,68,76,84,107,124,125],[52,60,66,107,124,125],[52,68,93,94,107,124,125],[52,60,63,68,107,124,125,142,150,157],[52,68,107,124,125],[52,64,68,107,124,125,150],[52,59,107,124,125],[52,62,63,64,66,67,68,69,70,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,96,97,98,107,124,125],[52,68,86,89,107,115,124,125],[52,68,76,77,78,107,124,125],[52,66,68,77,79,107,124,125],[52,67,107,124,125],[52,60,62,68,107,124,125],[52,68,72,77,79,107,124,125],[52,72,107,124,125],[52,66,68,71,107,124,125,150],[52,60,64,68,76,107,124,125],[52,68,86,107,124,125],[52,79,107,124,125],[52,62,68,93,107,124,125,142,155,157],[52,107,124,125,220],[52,107,124,125,210,211],[52,107,124,125,208,209,210,212,213,218],[52,107,124,125,209,210],[52,107,124,125,218],[52,107,124,125,219],[52,107,124,125,210],[52,107,124,125,208,209,210,213,214,215,216,217],[52,107,124,125,208,209,220],[52,107,124,125,241,243]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0671b50bb99cc7ad46e9c68fa0e7f15ba4bc898b59c31a17ea4611fab5095da","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b2dd1cbeb0cc6ae20795958ba5950395ebb2849b7c8326853dd15530c77ab0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"387a023d363f755eb63450a66c28b14cdd7bc30a104565e2dbf0a8988bb4a56c","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2","impliedFormat":1},{"version":"3c8e93af4d6ce21eb4c8d005ad6dc02e7b5e6781f429d52a35290210f495a674","impliedFormat":1},{"version":"f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426","impliedFormat":1},{"version":"00b21ef538da5a2bbe419e2144f3be50661768e1e039ef2b57bb89f96aff9b18","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"e843e840f484f7e59b2ef9488501a301e3300a8e3e56aa84a02ddf915c7ce07d","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"78b29846349d4dfdd88bd6650cc5d2baaa67f2e89dc8a80c8e26ef7995386583","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"18f8cfbb14ba9405e67d30968ae67b8d19133867d13ebc49c8ed37ec64ce9bdb","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d","impliedFormat":1},{"version":"830171b27c5fdf9bcbe4cf7d428fcf3ae2c67780fb7fbdccdf70d1623d938bc4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa3cdd2c004d79ae3b6bca7b793bce0597734f8d38df2273690ed358a65c1543","impliedFormat":1},{"version":"7cf69dd5502c41644c9e5106210b5da7144800670cbe861f66726fa209e231c4","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"18334defc3d0a0e1966f5f3c23c7c83b62c77811e51045c5a7ff3883b446f81f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dbcce74b6c46d12dce913fe42bc29d116102b591b53f457d279d5db7316d454","impliedFormat":1},{"version":"37b72d73361a3797bcc7e88d9e4f3ba37728f778fc5ce26c3b73e81de09ba2b3","impliedFormat":1},{"version":"2c91d8366ff2506296191c26fd97cc1990bab3ee22576275d28b654a21261a44","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"0b1866fb3c7f6860eff15df08824c22453136358465b30ecbcbb1b786dc62ac2","impliedFormat":1},{"version":"289e9894a4668c61b5ffed09e196c1f0c2f87ca81efcaebdf6357cfb198dac14","impliedFormat":1},{"version":"25a1105595236f09f5bce42398be9f9ededc8d538c258579ab662d509aa3b98e","impliedFormat":1},{"version":"0dace96cc0f7bc6d0ee2044921bdf19fe42d16284dbcc8ae200800d1c9579335","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"c64e1888baaa3253ca4405b455e4bf44f76357868a1bd0a52998ade9a092ad78","affectsGlobalScope":true,"impliedFormat":1},{"version":"94d45097aa2cac91ed0da476249a69dccb1d3dd132626ad18eb6002a3e733f3f","impliedFormat":1},{"version":"c6176c7b9f3769ba7f076c7a791588562c653cc0ba08fb2184f87bf78db2a87c","impliedFormat":1},{"version":"8d3f079f853fdcafc015a80c0d7c805965b9bbf594498c9c8a68b2228c4f518d","impliedFormat":1},{"version":"790183a686a857c251597b81d846ddcb2f48291b1660c688db1f71995af2bff2","impliedFormat":1},{"version":"19c56ac845f92bff8e28f9c0c96a23e663b07c0da35f33b904ab86c8ac151bfd","impliedFormat":1},{"version":"bbf42f98a5819f4f06e18c8b669a994afe9a17fe520ae3454a195e6eabf7700d","impliedFormat":1},{"version":"c0bb1b65757c72bbf8ddf7eaa532223bacf58041ff16c883e76f45506596e925","impliedFormat":1},{"version":"c8b85f7aed29f8f52b813f800611406b0bfe5cf3224d20a4bdda7c7f73ce368e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae55dfb60af917b1b63665200466b8fd7e20d2b01d1b0336b2ce770637cd553e","impliedFormat":1},{"version":"6145728071f93b5d65e85617dbee550ac9fb9943b82b79fc4b5944f80cc2baab","impliedFormat":1},{"version":"76957a6d92b94b9e2852cf527fea32ad2dc0ef50f67fe2b14bd027c9ceef2d86","impliedFormat":1},{"version":"9043daec15206650fa119bad6b8d70136021ea7d52673a71f79a87a42ee38d44","affectsGlobalScope":true,"impliedFormat":1},{"version":"856fb28989bc204dbb69db6b32092b4f31eae13468e85a6561d260cec6ef509d","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"1013eb2e2547ad8c100aca52ef9df8c3f209edee32bb387121bb3227f7c00088","impliedFormat":1},{"version":"b827f8800f42858f0a751a605c003b7ab571ff7af184436f36cef9bdfebae808","impliedFormat":1},{"version":"81dd6cd15d79d60f6597dba94328178b87ad3100c9f422cd44b26d087e073ca7","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"6b306cd4282bbb54d4a6bb23cfb7a271160983dfc38c67b5a132504cfcc34896","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea713aa14a670b1ea0fbaaca4fd204e645f71ca7653a834a8ec07ee889c45de6","impliedFormat":1},{"version":"450172a56b944c2d83f45cc11c9a388ea967cd301a21202aa0a23c34c7506a18","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"360a81d6186f9afa88d2bf48d4b3cd900d9592b7aaec1041f2289979ee6b762c","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"7dfa742c23851808a77ec27062fbbd381c8c36bb3cfdff46cb8af6c6c233bfc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb078cfcd14dc0b1700a48272958f803f30f13f99111c5978c75c3a0aa07e40e","affectsGlobalScope":true,"impliedFormat":1},{"version":"815b8748ccac6343abab8fc5ec0a716049ba023f7eaa3b0aa28f354270662f53","impliedFormat":1},{"version":"781089a6bb37f5c2413897ca0c024e3b21350bae105075829c4de4e9b981d8ea","impliedFormat":1},{"version":"73b0bff83ee76e3a9320e93c7fc15596e858b33c687c39a57567e75c43f2a324","impliedFormat":1},{"version":"3c947600f6f5664cca690c07fcf8567ca58d029872b52c31c2f51d06fbdb581b","affectsGlobalScope":true,"impliedFormat":1},{"version":"493c64d062139b1849b0e9c4c3a6465e1227d2b42be9e26ec577ca728984c041","impliedFormat":1},{"version":"d7e9ab1b0996639047c61c1e62f85c620e4382206b3abb430d9a21fb7bc23c77","impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"0d5f371d676acc073f0166b7fd967adeb6afa5f0967b9821d83c106f66cc458d","impliedFormat":1},{"version":"a588d1f897adf938963ef3d90c8038c3c5cd19ef88fbedda4cb1a77b8b7ba3e6","impliedFormat":1},{"version":"a0981ee0c7ac06bdb575558bd09bac190e1c0c7888ddcb63d8bf648f23a30e8c","impliedFormat":1},{"version":"00f11c3ec667314eaa2adfe253b5ebebbbdbb82510e04460c2f09d1c3b521d31","impliedFormat":1},{"version":"5c7a516e25a2fd1dc5e054c6161fe3c8ba46364f3784ef98f3fca48ab685231c","impliedFormat":1},{"version":"3ff739b7f819cfc12b330f9adcc4c3abbbd5e9f9ca68f53243222a049a8361a2","impliedFormat":1},{"version":"d762b92c1af47b7b3c4eef92fe9a3806194d9edc5dae6901342fc87ef21d7f4a","impliedFormat":1},{"version":"41d14b690d8d8c2a9b7395e8c36de6ca981010736723216ab9f35eb598e09ad9","impliedFormat":1},{"version":"3fdcca6b893ffd38b61b792772f649c82ae28077c360802cec25360eabca24c0","impliedFormat":1},{"version":"299924f7545be254b02278e4dcff7038611f2325d30f0e5ae4bcac906847c164","impliedFormat":1},{"version":"be1d650f04c9f472f0ad0ead3e1b7059dd1e0ff918f7bcb707786d27c3bbeadd","impliedFormat":1},{"version":"1e16c1b1c4d8600a146b15a933f9a880cc275c01f39dc436625f22d3cca46272","impliedFormat":1},{"version":"a631639d7f79f49f68a0ef6553baa1b977e06b230e768511812952709fe5c1f0","impliedFormat":1},{"version":"bf2aefef15e0b4d6bc8f4e19f967494b59b5f90a834de503c373df042513d924","impliedFormat":1},{"version":"4085248a1c89ee865cf9498402c90611d16920a6c9929f701ddc0b963ddad230","impliedFormat":1},{"version":"1a1acd3311ff1794be8401ee394efc3beeb1746068244eb0ee1d51d08e457401","impliedFormat":1},{"version":"ce0b4440a3dd75e14ca94b6d6b27fa26ca89e776d91b8803b3c86c4e8f06ed1a","impliedFormat":1},{"version":"37020cf15e16fa6e1c6e2485cd51d6cbe74adee3b860ab49fb7528ca7e8e518e","impliedFormat":1},{"version":"b6b1a3ff9ba1ddf1a908cfd1bcd471334ecd218a366460fc64c4561d6d0467a4","impliedFormat":1},{"version":"1950d2a49c05c7aa6decfe409b552c4ea5fb156894cf0541b34999819bd778ea","impliedFormat":1},{"version":"32fe829960ff7120843f6dd20197e863aee3e81ecded415641a7500654d1bda7","impliedFormat":1},{"version":"da73778888d41d0abe7d28a24529ba13ff0a9311d55e1902feee7ab97dc6a67d","impliedFormat":1},{"version":"393b1ed0dca4f0aac333e65f2e40dfedfa8b37ac60571e02b152d32d8c84d340","impliedFormat":1},{"version":"f46d50c283425bcc59d68ccf067b3672fb727f802652dc7d60d2e470fb956370","impliedFormat":1},{"version":"0e10fd1d283b4ba7b94f5abb1bc30a2070ccb16c22f86a2780bea8ddc48f3bf7","impliedFormat":1},{"version":"0b4b6ca509cdb152e18ceeed526d17bb416e7e518508d859a0174977195f9a35","impliedFormat":1},{"version":"79b9e661f99d6d01ad0031fbffbb20a8570ca526125a1b01ef5643c00348a8c4","impliedFormat":1},{"version":"deb85dff5a350bd77f24fb5665b7a3c95aa0d4556a0d45ab423ebf3ffcbc70ce","impliedFormat":1},{"version":"f3e1a9f8c28c949f8432b0ef8f0d2686ccc3e38dcc338bbc8a02f956bc7a0725","impliedFormat":1},{"version":"3226c2a2af36d14aa551babd4154ad18042c0deb1509a61058c6b066cfddc30a","impliedFormat":1},{"version":"64c9811ebae7d6bdd3749155911ca473017944d6e9787cec3d11549b05b19de9","impliedFormat":1},{"version":"9de23b9733565858ecfb3971e409970aaf7ec3bd2567aea9373c3b7cfd62f053","impliedFormat":1},{"version":"18c4c5d4069ae6ddce9443a6057fcf333688556b0d644813a78e604812f82bb3","impliedFormat":1},{"version":"6481b29f54e19becbeb7236c60043e2daa47b45cb4fd7e88f287df09250f2405","impliedFormat":1},{"version":"9c65acc70d6beb5cc45fcc39d211a34f686d39aaf3e33a10d28a3df9e6267ec7","impliedFormat":1},{"version":"01658146c02cba2e49ee7beaa0b90864e7a17c3d02cc39cd8b643b5be3a1a438","impliedFormat":1},{"version":"fcbfe8a05b4b1d990aaf289b951ca3fb16bd5aa18004f576283576069be59939","impliedFormat":1},{"version":"db18ec88a0f1512b153a28a0ed1e19f34530885bca1d00e5f17a6e9b3184697f","impliedFormat":1},{"version":"21f166065c0725ca16281aa2f05f5ee9fb556795c8426049bf44ee36bdca9afd","impliedFormat":1},{"version":"36cd04c9f4116122a3545fcc6da5e522861d739718ab3a3cb7ff2268612531aa","impliedFormat":1},{"version":"9ae86dde42766df895cde73c60dc13347cc30829c6696de3cc54036b3120a5ba","impliedFormat":1},{"version":"6823cce79c10482d0860d40ebbfc29f00ddf7f99bca0aa23330599ddd8baead4","impliedFormat":1},{"version":"30ed6587fb249cc1b0585bab7ce2ca81ef193bfe2934241b6f06ffefdaaf4bf9","impliedFormat":1},{"version":"aa18fcf8ad877a9eb0c357c247708f019e25c4d906e3025d73604b66de8d7f11","impliedFormat":1},{"version":"cfc5482e113e44dae9712ae0a4e412788622221ae5eb1327fb69a13a0f5af662","impliedFormat":1},{"version":"5e620d0ed3eeb9a9a767355547123c85aea7e8f26d90e94d0cc3fa457f1c2035","impliedFormat":1},{"version":"304b0d21771513c0a36ed7179a9d1069bfa776e95f50b789ce898f3ef2b71514","impliedFormat":1},{"version":"4904d7124f9731d2368b613523070ca594cbc82f172023b4b5678018be7b6022","impliedFormat":1},{"version":"18c078c2b34901a328c1fc3e5a2f5bd51aa0fef06a548418198955e0af5eaf39","impliedFormat":1},{"version":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","impliedFormat":1},{"version":"293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec","impliedFormat":1},{"version":"54f6ec6ea75acea6eb23635617252d249145edbc7bcd9d53f2d70280d2aef953","impliedFormat":1},{"version":"c25ce98cca43a3bfa885862044be0d59557be4ecd06989b2001a83dcf69620fd","impliedFormat":1},{"version":"8e71e53b02c152a38af6aec45e288cc65bede077b92b9b43b3cb54a37978bb33","impliedFormat":1},{"version":"754a9396b14ca3a4241591afb4edc644b293ccc8a3397f49be4dfd520c08acb3","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"e4b03ddcf8563b1c0aee782a185286ed85a255ce8a30df8453aade2188bbc904","impliedFormat":1},{"version":"de2316e90fc6d379d83002f04ad9698bc1e5285b4d52779778f454dd12ce9f44","impliedFormat":1},{"version":"25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","impliedFormat":1},{"version":"2da997a01a6aa5c5c09de5d28f0f4407b597c5e1aecfd32f1815809c532650a2","impliedFormat":1},{"version":"5d26d2e47e2352def36f89a3e8bf8581da22b7f857e07ef3114cd52cf4813445","impliedFormat":1},{"version":"3db2efd285e7328d8014b54a7fce3f4861ebcdc655df40517092ed0050983617","impliedFormat":1},{"version":"d5d39a24c759df40480a4bfc0daffd364489702fdbcbdfc1711cde34f8739995","impliedFormat":1},{"version":"581b97f369056070fafbe168120a192e918e67763116dfbbb2782bbca5f32111","impliedFormat":1},{"version":"74f9797560463a8c9070dd72c04b38cc17b79759b841e2a4175a11742f2ecd11","impliedFormat":1},{"version":"ce22b96ece23ecc9bc1f2a445afefa0a487f299986a1584887e4e4217e196963","impliedFormat":1},{"version":"4788f58342a67af140858e23a24cdf62457ec1ff79af68ac71b9d3c0c89bb53b","impliedFormat":1},{"version":"be19e5bce1b45d5c0ef87d46c3a95a991a3cd8b6c7cb4d756791756e69cc3568","impliedFormat":1},{"version":"e9634e0306920990ddca8f667e3cb624597ea7a4cd25d557a599c0e175419879","impliedFormat":1},{"version":"d4866c666180e89bdc142940cb2986a8fa9f3d2a363cc757bb61cef698b6e976","impliedFormat":1},{"version":"e73799489c16d7281d0466925ba620e9f804bb78400e0dbe04997b98407b1ab5","impliedFormat":1},{"version":"cb279466d8f2d95f3ee0a24637506b18d18d9b1cb869b4dbb534b7597b06daec","impliedFormat":1},{"version":"b33057a3c7ea75948a207a5b784726118ec60f882eeb875bd64e932b4cd41041","impliedFormat":1},{"version":"b773bcdaeda86c0f58910cecd6c77a0bd60be763127c42cad5a64fe66799b1f6","impliedFormat":1},{"version":"9e2e0b4711f1efef5c3c488616334ba2e5b911648a8784fd77fc8beb1e5047c9","impliedFormat":1},{"version":"ca1c4f7d0c786d90ab15a363d59d0e18269b393191ed7b2841547c0e187a8d35","impliedFormat":1},{"version":"0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","impliedFormat":1},{"version":"28f1497962f8853339b46d766384abe7a907900998f551cf43cd793cdcb98e3d","impliedFormat":1},{"version":"e4cce0b510957aab4b12a0dc21a3b4857b8f8a85bbded2b8b81f836ca3c83dbc","impliedFormat":1},{"version":"79a0953f85a27dcaab70dd0e3791a3564631dfd5d85c637513027747c6844357","impliedFormat":1},{"version":"678c7436b7aa03dad934a96850ea395c018637013aa0b52a65898f502b4d6e2a","impliedFormat":1},{"version":"1c18a09d1deaf0e9906100ab54592f256f87fc94c67cce61bfc1c2ea44ac3d13","impliedFormat":1},{"version":"8a4470294a22dd13943cf7b946548fc302b79a10c618abae42a1bd6b2836df2d","impliedFormat":1},{"version":"42a4da721d304d62481ff856d8b08983031d2fc4a0f703ab3f0100e61e0f6cc8","signature":"9b321149a71251fc487f45016f213eeb161d4659f8b1c8bd675dd13b82f4a1cf"},{"version":"af46fc22bb7c21dc623a835aa316d0675429de51c4dd77f16efb78017df7a105","signature":"34cd4c2cf2056dc165a566ee1dbc6579575e43c1ae854d28e2de6dd96dcac0f5"},{"version":"ab196c9648967baf5d7f86fdf9d9726f3e02adad210c06eb40f8ad629a36bcee","signature":"1413f37bc2660b9b99f257e02b3b2104bfbbcc82e3ca246df6b951f1d8aab29f"},"3562fc4b000e48555ba5e67a483fb6cc5e8955cf76dc62e2167be87df724ab1d",{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"ce6a3f09b8db73a7e9701aca91a04b4fabaf77436dd35b24482f9ee816016b17","impliedFormat":1},{"version":"20e086e5b64fdd52396de67761cc0e94693494deadb731264aac122adf08de3f","impliedFormat":1},{"version":"6e78f75403b3ec65efb41c70d392aeda94360f11cedc9fb2c039c9ea23b30962","impliedFormat":1},{"version":"c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","impliedFormat":1},{"version":"8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","impliedFormat":1},{"version":"42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","impliedFormat":1},{"version":"ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","impliedFormat":1},{"version":"83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","impliedFormat":1},{"version":"1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","impliedFormat":1},{"version":"0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","impliedFormat":1},{"version":"cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","impliedFormat":1},{"version":"c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","impliedFormat":1},{"version":"eefd2bbc8edb14c3bd1246794e5c070a80f9b8f3730bd42efb80df3cc50b9039","impliedFormat":1},{"version":"0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","impliedFormat":1},{"version":"7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","impliedFormat":1},{"version":"bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","impliedFormat":1},{"version":"52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","impliedFormat":1},{"version":"770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","impliedFormat":1},{"version":"d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","impliedFormat":1},{"version":"799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","impliedFormat":1},{"version":"2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","impliedFormat":1},{"version":"9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","impliedFormat":1},{"version":"397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","impliedFormat":1},{"version":"a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","impliedFormat":1},{"version":"a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","impliedFormat":1},{"version":"c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","impliedFormat":1},{"version":"4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","impliedFormat":1},{"version":"f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","impliedFormat":1},{"version":"cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","impliedFormat":1},{"version":"b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","impliedFormat":1},{"version":"c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","impliedFormat":1},{"version":"14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","impliedFormat":1},{"version":"a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","impliedFormat":1},{"version":"f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","impliedFormat":1},{"version":"3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","impliedFormat":1},{"version":"662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","impliedFormat":1},{"version":"c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","impliedFormat":1},{"version":"2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"a56fe175741cc8841835eb72e61fa5a34adcbc249ede0e3494c229f0750f6b85","impliedFormat":1}],"root":[[242,245]],"options":{"declaration":true,"esModuleInterop":true,"module":1,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":6,"useUnknownInCatchVariables":false},"referencedMap":[[242,1],[163,2],[164,3],[162,4],[246,4],[104,5],[105,5],[106,6],[52,7],[107,8],[108,9],[109,10],[50,4],[110,11],[111,12],[112,13],[113,14],[114,15],[115,16],[116,16],[117,17],[118,18],[119,19],[120,20],[53,4],[51,4],[121,21],[122,22],[123,23],[157,24],[124,25],[125,4],[126,26],[127,27],[128,28],[129,29],[130,30],[131,31],[132,32],[133,33],[134,34],[135,34],[136,35],[137,4],[138,4],[139,36],[141,37],[140,38],[142,39],[143,40],[144,41],[145,42],[146,43],[147,44],[148,45],[149,46],[150,47],[151,48],[152,49],[153,50],[154,51],[54,4],[55,52],[56,4],[57,4],[100,53],[101,54],[102,4],[103,39],[155,55],[156,56],[271,57],[272,58],[248,59],[251,60],[269,57],[270,57],[260,57],[259,61],[257,57],[252,57],[265,57],[263,57],[267,57],[247,57],[264,57],[268,57],[253,57],[254,57],[266,57],[249,57],[255,57],[256,57],[258,57],[262,57],[273,62],[261,57],[250,57],[286,63],[285,4],[280,62],[282,64],[281,62],[274,62],[275,62],[277,62],[279,62],[283,64],[284,64],[276,64],[278,64],[58,4],[158,65],[198,66],[199,66],[200,66],[201,66],[203,67],[202,66],[159,4],[204,66],[160,4],[161,4],[169,68],[172,69],[165,70],[166,71],[167,71],[168,71],[182,72],[185,70],[186,4],[171,73],[184,74],[170,73],[187,75],[173,76],[174,77],[176,73],[181,78],[183,68],[178,79],[177,80],[175,81],[179,79],[180,69],[240,4],[188,4],[190,82],[207,4],[233,83],[235,4],[232,4],[234,84],[222,85],[205,4],[231,66],[241,86],[193,87],[194,66],[206,66],[225,1],[236,83],[195,82],[237,68],[238,66],[239,4],[224,66],[196,66],[189,4],[197,66],[223,66],[230,66],[228,66],[229,66],[227,66],[192,4],[226,88],[191,89],[48,4],[49,4],[9,4],[8,4],[2,4],[10,4],[11,4],[12,4],[13,4],[14,4],[15,4],[16,4],[17,4],[3,4],[18,4],[19,4],[4,4],[20,4],[24,4],[21,4],[22,4],[23,4],[25,4],[26,4],[27,4],[5,4],[28,4],[29,4],[30,4],[31,4],[6,4],[35,4],[32,4],[33,4],[34,4],[36,4],[7,4],[37,4],[42,4],[43,4],[38,4],[39,4],[40,4],[41,4],[44,4],[45,4],[1,4],[46,4],[47,4],[76,90],[88,91],[74,92],[89,93],[98,94],[65,95],[66,96],[64,97],[97,98],[92,99],[96,100],[68,101],[85,102],[67,103],[95,104],[62,105],[63,99],[69,106],[70,4],[75,107],[73,106],[60,108],[99,109],[90,110],[79,111],[78,106],[80,112],[83,113],[77,114],[81,115],[93,98],[71,116],[72,117],[84,118],[61,93],[87,119],[86,106],[82,120],[91,4],[59,4],[94,121],[221,122],[212,123],[219,124],[214,4],[215,4],[213,125],[216,126],[208,4],[209,4],[220,127],[211,128],[217,4],[218,129],[210,130],[244,131],[243,1],[245,4]],"version":"5.8.3"}
package/index.js ADDED
File without changes
package/package.json ADDED
@@ -0,0 +1,72 @@
1
+ {
2
+ "name": "n8n-nodes-windows-network-fileshare-smb2",
3
+ "version": "0.1.0-beta.1",
4
+ "description": "n8n community node for Windows File Share access via SMB2 protocol",
5
+ "keywords": [
6
+ "n8n-community-node-package",
7
+ "n8n",
8
+ "windows",
9
+ "network",
10
+ "fileshare",
11
+ "file",
12
+ "smb2",
13
+ "file-share",
14
+ "network-drive",
15
+ "automation"
16
+ ],
17
+ "license": "MIT",
18
+ "homepage": "https://github.com/DirectorVector/n8n-nodes-windows-network-fileshare-smb2#readme",
19
+ "author": {
20
+ "name": "DirectorVector",
21
+ "email": "bthrower@vortexglobal.com"
22
+ },
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "git+https://github.com/DirectorVector/n8n-nodes-windows-network-fileshare-smb2.git"
26
+ },
27
+ "engines": {
28
+ "node": ">=20.15"
29
+ },
30
+ "main": "index.js",
31
+ "scripts": {
32
+ "build": "npx rimraf dist && tsc && gulp build:icons",
33
+ "dev": "tsc --watch",
34
+ "format": "prettier nodes credentials --write",
35
+ "format:check": "prettier nodes credentials --check",
36
+ "lint": "eslint nodes credentials package.json",
37
+ "lintfix": "eslint nodes credentials package.json --fix",
38
+ "test": "npm run test:operations && npm run test:node",
39
+ "test:operations": "node --openssl-legacy-provider test-smb2-operations.js",
40
+ "test:node": "node --openssl-legacy-provider test-n8n-node.js",
41
+ "test:ci": "npm run lint && npm run format:check && npm run build && npm run test",
42
+ "prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
43
+ },
44
+ "files": [
45
+ "dist"
46
+ ],
47
+ "n8n": {
48
+ "n8nNodesApiVersion": 1,
49
+ "credentials": [
50
+ "dist/credentials/WindowsNetworkApi.credentials.js"
51
+ ],
52
+ "nodes": [
53
+ "dist/nodes/WindowsFileshare/WindowsFileshare.node.js"
54
+ ]
55
+ },
56
+ "dependencies": {
57
+ "@marsaud/smb2": "^0.15.0",
58
+ "dotenv": "^16.0.0"
59
+ },
60
+ "devDependencies": {
61
+ "@types/node": "^24.7.2",
62
+ "@typescript-eslint/parser": "~8.32.0",
63
+ "eslint": "^8.57.0",
64
+ "eslint-plugin-n8n-nodes-base": "^1.16.3",
65
+ "gulp": "^5.0.0",
66
+ "prettier": "^3.5.3",
67
+ "typescript": "^5.8.2"
68
+ },
69
+ "peerDependencies": {
70
+ "n8n-workflow": "*"
71
+ }
72
+ }