@skriptfabrik/n8n-nodes-fulfillmenttools 0.1.0 → 0.1.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/.eslintrc.json +30 -0
- package/CHANGELOG.md +11 -0
- package/jest.config.ts +11 -0
- package/package.json +3 -3
- package/project.json +38 -0
- package/src/api.d.ts +26710 -0
- package/src/credentials/FulfillmenttoolsApi.credentials.spec.ts +101 -0
- package/src/credentials/FulfillmenttoolsApi.credentials.ts +166 -0
- package/src/nodes/Fulfillmenttools/Fulfillmenttools.node.spec.ts +1149 -0
- package/src/nodes/Fulfillmenttools/Fulfillmenttools.node.ts +390 -0
- package/src/nodes/Fulfillmenttools/FulfillmenttoolsTrigger.node.spec.ts +386 -0
- package/src/nodes/Fulfillmenttools/FulfillmenttoolsTrigger.node.ts +396 -0
- package/src/nodes/Fulfillmenttools/GenericFunctions.spec.ts +279 -0
- package/src/nodes/Fulfillmenttools/GenericFunctions.ts +156 -0
- package/src/nodes/Fulfillmenttools/descriptions/FacilityCarrierDescription.ts +335 -0
- package/src/nodes/Fulfillmenttools/descriptions/FacilityDescription.ts +621 -0
- package/src/nodes/Fulfillmenttools/descriptions/OrderDescription.ts +338 -0
- package/tsconfig.json +22 -0
- package/tsconfig.lib.json +10 -0
- package/tsconfig.spec.json +13 -0
- package/src/credentials/FulfillmenttoolsApi.credentials.d.ts +0 -13
- package/src/credentials/FulfillmenttoolsApi.credentials.js +0 -126
- package/src/credentials/FulfillmenttoolsApi.credentials.js.map +0 -1
- package/src/nodes/Fulfillmenttools/Fulfillmenttools.node.d.ts +0 -5
- package/src/nodes/Fulfillmenttools/Fulfillmenttools.node.js +0 -174
- package/src/nodes/Fulfillmenttools/Fulfillmenttools.node.js.map +0 -1
- package/src/nodes/Fulfillmenttools/FulfillmenttoolsTrigger.node.d.ts +0 -12
- package/src/nodes/Fulfillmenttools/FulfillmenttoolsTrigger.node.js +0 -330
- package/src/nodes/Fulfillmenttools/FulfillmenttoolsTrigger.node.js.map +0 -1
- package/src/nodes/Fulfillmenttools/GenericFunctions.d.ts +0 -3
- package/src/nodes/Fulfillmenttools/GenericFunctions.js +0 -91
- package/src/nodes/Fulfillmenttools/GenericFunctions.js.map +0 -1
- package/src/nodes/Fulfillmenttools/descriptions/FacilityCarrierDescription.d.ts +0 -3
- package/src/nodes/Fulfillmenttools/descriptions/FacilityCarrierDescription.js +0 -322
- package/src/nodes/Fulfillmenttools/descriptions/FacilityCarrierDescription.js.map +0 -1
- package/src/nodes/Fulfillmenttools/descriptions/FacilityDescription.d.ts +0 -3
- package/src/nodes/Fulfillmenttools/descriptions/FacilityDescription.js +0 -610
- package/src/nodes/Fulfillmenttools/descriptions/FacilityDescription.js.map +0 -1
- package/src/nodes/Fulfillmenttools/descriptions/OrderDescription.d.ts +0 -3
- package/src/nodes/Fulfillmenttools/descriptions/OrderDescription.js +0 -328
- package/src/nodes/Fulfillmenttools/descriptions/OrderDescription.js.map +0 -1
package/.eslintrc.json
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
{
|
2
|
+
"extends": ["../../.eslintrc.json"],
|
3
|
+
"ignorePatterns": ["!**/*", "api.d.ts"],
|
4
|
+
"overrides": [
|
5
|
+
{
|
6
|
+
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
|
7
|
+
"rules": {}
|
8
|
+
},
|
9
|
+
{
|
10
|
+
"files": ["*.ts", "*.tsx"],
|
11
|
+
"rules": {}
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"files": ["*.js", "*.jsx"],
|
15
|
+
"rules": {}
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"files": ["*.json"],
|
19
|
+
"parser": "jsonc-eslint-parser",
|
20
|
+
"rules": {
|
21
|
+
"@nx/dependency-checks": [
|
22
|
+
"error",
|
23
|
+
{
|
24
|
+
"ignoredDependencies": ["express", "jest-mock-extended"]
|
25
|
+
}
|
26
|
+
]
|
27
|
+
}
|
28
|
+
}
|
29
|
+
]
|
30
|
+
}
|
package/CHANGELOG.md
ADDED
package/jest.config.ts
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
/* eslint-disable */
|
2
|
+
export default {
|
3
|
+
displayName: 'n8n-nodes-fulfillmenttools',
|
4
|
+
preset: '../../jest.preset.js',
|
5
|
+
testEnvironment: 'node',
|
6
|
+
transform: {
|
7
|
+
'^.+\\.[tj]s$': ['ts-jest', { tsconfig: '<rootDir>/tsconfig.spec.json' }],
|
8
|
+
},
|
9
|
+
moduleFileExtensions: ['ts', 'js', 'html'],
|
10
|
+
coverageDirectory: '../../coverage/nodes/fulfillmenttools',
|
11
|
+
};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skriptfabrik/n8n-nodes-fulfillmenttools",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.1",
|
4
4
|
"description": "fulfillmenttools nodes for n8n",
|
5
5
|
"keywords": [
|
6
6
|
"fulfillmenttools",
|
@@ -35,6 +35,6 @@
|
|
35
35
|
"tslib": "^2.6.2"
|
36
36
|
},
|
37
37
|
"peerDependencies": {
|
38
|
-
"n8n-workflow": "1.
|
38
|
+
"n8n-workflow": "1.43.0"
|
39
39
|
}
|
40
|
-
}
|
40
|
+
}
|
package/project.json
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
{
|
2
|
+
"name": "fulfillmenttools",
|
3
|
+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
4
|
+
"sourceRoot": "nodes/fulfillmenttools/src",
|
5
|
+
"projectType": "library",
|
6
|
+
"targets": {
|
7
|
+
"build": {
|
8
|
+
"executor": "@nx/js:tsc",
|
9
|
+
"outputs": ["{options.outputPath}"],
|
10
|
+
"options": {
|
11
|
+
"outputPath": "dist/nodes/fulfillmenttools",
|
12
|
+
"main": "nodes/fulfillmenttools/src/index.ts",
|
13
|
+
"tsConfig": "nodes/fulfillmenttools/tsconfig.lib.json",
|
14
|
+
"assets": [
|
15
|
+
"nodes/fulfillmenttools/src/nodes/*/icons/*.svg",
|
16
|
+
"nodes/fulfillmenttools/src/nodes/*/*.json",
|
17
|
+
"nodes/fulfillmenttools/*.md"
|
18
|
+
]
|
19
|
+
}
|
20
|
+
},
|
21
|
+
"link": {
|
22
|
+
"executor": "nx:run-commands",
|
23
|
+
"options": {
|
24
|
+
"cwd": "dist/nodes/fulfillmenttools",
|
25
|
+
"command": "npm link --no-audit"
|
26
|
+
},
|
27
|
+
"dependsOn": ["build"]
|
28
|
+
},
|
29
|
+
"install": {
|
30
|
+
"executor": "nx:run-commands",
|
31
|
+
"options": {
|
32
|
+
"command": "node tools/scripts/install.mjs n8n-nodes-fulfillmenttools"
|
33
|
+
},
|
34
|
+
"dependsOn": ["link"]
|
35
|
+
}
|
36
|
+
},
|
37
|
+
"tags": []
|
38
|
+
}
|