n8n-nodes-prestashop8 2.1.0 β†’ 2.3.0

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/README.md CHANGED
@@ -9,12 +9,12 @@
9
9
  A comprehensive n8n community node for PrestaShop 8 integration with automatic XML/JSON conversion and full CRUD support.
10
10
 
11
11
  **🌍 Documentation Languages:**
12
- - πŸ‡¬πŸ‡§ **English** (this file) - [Examples](./docs/EXAMPLES_EN.md) | [Installation](./docs/INSTALLATION_EN.md)
13
- - πŸ‡«πŸ‡· [**FranΓ§ais**](./docs/README_FR.md) - [Exemples](./EXAMPLES.md) | [Installation](./INSTALLATION.md)
14
- - πŸ‡©πŸ‡ͺ [**Deutsch**](./docs/README_DE.md) - [Beispiele](./docs/EXAMPLES_DE.md) | [Installation](./docs/INSTALLATION_DE.md)
15
- - πŸ‡ͺπŸ‡Έ [**EspaΓ±ol**](./docs/README_ES.md) - [Ejemplos](./docs/EXAMPLES_ES.md) | [InstalaciΓ³n](./docs/INSTALLATION_ES.md)
12
+ - πŸ‡¬πŸ‡§ **English** (this file) - [Examples](./doc/EXAMPLES_EN.md) | [Installation](./doc/INSTALLATION_EN.md)
13
+ - πŸ‡«πŸ‡· [**FranΓ§ais**](./doc/README_FR.md) - [Exemples](./doc/EXAMPLES_FR.md) | [Installation](./doc/INSTALLATION_FR.md)
14
+ - πŸ‡©πŸ‡ͺ [**Deutsch**](./doc/README_DE.md) - [Beispiele](./doc/EXAMPLES_DE.md) | [Installation](./doc/INSTALLATION_DE.md)
15
+ - πŸ‡ͺπŸ‡Έ [**EspaΓ±ol**](./doc/README_ES.md) - [Ejemplos](./doc/EXAMPLES_ES.md) | [InstalaciΓ³n](./doc/INSTALLATION_ES.md)
16
16
 
17
- **πŸ“š [Complete Documentation Hub](./docs/README.md)**
17
+ **πŸ“š [Complete Documentation Hub](./doc/README.md)**
18
18
 
19
19
  [πŸš€ Quick Start](#quick-start) | [✨ Features](#features) | [πŸ“š Documentation](#documentation) | [🎯 Examples](#examples) | [🀝 Contributing](#contributing)
20
20
 
@@ -160,10 +160,9 @@ Cron β†’ PrestaShop 8 Node β†’ Calculate KPIs β†’ Email Report
160
160
 
161
161
  ## πŸ“š Documentation
162
162
 
163
- - **[🎯 Practical Examples](./docs/EXAMPLES_EN.md)** - Detailed use cases
164
- - **[πŸ› οΈ Installation Guide](./docs/INSTALLATION_EN.md)** - Step-by-step setup
165
- - **[πŸ“ Changelog](./CHANGELOG.md)** - Updates and fixes
166
- - **[πŸ“‹ Project Summaries](./summary/README.md)** - Executive summaries and presentations
163
+ - **[🎯 Practical Examples](./doc/EXAMPLES_EN.md)** - Detailed use cases
164
+ - **[πŸ› οΈ Installation Guide](./doc/INSTALLATION_EN.md)** - Step-by-step setup
165
+ - **[πŸ“ Changelog](./doc/CHANGELOG.md)** - Updates and fixes
167
166
 
168
167
  ## πŸ› Issues & Support
169
168
 
@@ -175,7 +174,7 @@ Cron β†’ PrestaShop 8 Node β†’ Calculate KPIs β†’ Email Report
175
174
  ### Get Help
176
175
  - 🐞 **[GitHub Issues](https://github.com/PPCM/n8n-nodes-prestashop8/issues)** - Bugs and questions
177
176
  - 🌐 **[n8n Community](https://community.n8n.io)** - Forum discussions
178
- - πŸ“– **[Documentation](./docs/INSTALLATION_EN.md)** - Detailed guides
177
+ - πŸ“– **[Documentation](./doc/INSTALLATION_EN.md)** - Detailed guides
179
178
 
180
179
  ## 🀝 Contributing
181
180
 
@@ -1,11 +1,11 @@
1
- import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription, ILoadOptionsFunctions, INodePropertyOptions } from 'n8n-workflow';
1
+ import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
2
2
  export declare class PrestaShop8 implements INodeType {
3
3
  description: INodeTypeDescription;
4
4
  methods: {
5
5
  loadOptions: {
6
- getOperations(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
7
- getRequiredFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
8
- getAvailableFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
6
+ getOperations(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<import("n8n-workflow").INodePropertyOptions[]>;
7
+ getRequiredFields(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<import("n8n-workflow").INodePropertyOptions[]>;
8
+ getAvailableFields(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<import("n8n-workflow").INodePropertyOptions[]>;
9
9
  };
10
10
  };
11
11
  execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;