n8n-nodes-prestashop8 2.1.1 β 2.4.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 +9 -10
- package/dist/nodes/PrestaShop8/PrestaShop8.node.d.ts +4 -4
- package/dist/nodes/PrestaShop8/PrestaShop8.node.description.js +193 -505
- package/dist/nodes/PrestaShop8/PrestaShop8.node.js +44 -482
- package/dist/nodes/PrestaShop8/fieldMappings.js +3 -3
- package/dist/nodes/PrestaShop8/helpers/http.d.ts +55 -0
- package/dist/nodes/PrestaShop8/helpers/http.js +182 -0
- package/dist/nodes/PrestaShop8/loadOptions.d.ts +6 -0
- package/dist/nodes/PrestaShop8/loadOptions.js +177 -0
- package/dist/nodes/PrestaShop8/resourceSchemas.js +60 -35
- package/dist/nodes/PrestaShop8/types.js +42 -31
- package/dist/nodes/PrestaShop8/utils/errors.d.ts +8 -0
- package/dist/nodes/PrestaShop8/utils/errors.js +95 -0
- package/dist/nodes/PrestaShop8/utils/filters.d.ts +27 -0
- package/dist/nodes/PrestaShop8/utils/filters.js +111 -0
- package/dist/nodes/PrestaShop8/utils/index.d.ts +4 -0
- package/dist/nodes/PrestaShop8/utils/index.js +24 -0
- package/dist/nodes/PrestaShop8/utils/response.d.ts +21 -0
- package/dist/nodes/PrestaShop8/utils/response.js +238 -0
- package/dist/nodes/PrestaShop8/utils/xml.d.ts +24 -0
- package/dist/nodes/PrestaShop8/utils/xml.js +154 -0
- package/package.json +24 -8
- package/dist/nodes/PrestaShop8/utils.d.ts +0 -70
- package/dist/nodes/PrestaShop8/utils.js +0 -633
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](./
|
|
13
|
-
- π«π· [**FranΓ§ais**](./
|
|
14
|
-
- π©πͺ [**Deutsch**](./
|
|
15
|
-
- πͺπΈ [**EspaΓ±ol**](./
|
|
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](./
|
|
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](./
|
|
164
|
-
- **[π οΈ Installation Guide](./
|
|
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](./
|
|
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
|
|
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[][]>;
|