@aiteza/n8n-nodes-aiteza 0.1.1 → 0.2.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 +3 -11
- package/dist/credentials/AitezaOAuth2Api.credentials.js +1 -1
- package/dist/nodes/Aiteza/Aiteza.node.js +1052 -341
- package/dist/nodes/Aiteza/AitezaTrigger.node.d.ts +5 -0
- package/dist/nodes/Aiteza/AitezaTrigger.node.js +73 -0
- package/dist/nodes/Aiteza/GenericFunctions.d.ts +7 -3
- package/dist/nodes/Aiteza/GenericFunctions.js +72 -66
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -49,20 +49,12 @@ This node authenticates through Keycloak's OAuth2 Authorization Code flow. When
|
|
|
49
49
|
### Configuration
|
|
50
50
|
|
|
51
51
|
| Field | Description | Default |
|
|
52
|
-
| -------------
|
|
53
|
-
| Base URL | Your AITEZA
|
|
54
|
-
| Realm | Keycloak realm name | `
|
|
52
|
+
| ------------- |-------------------------------------------------------------| ------- |
|
|
53
|
+
| Base URL | Your AITEZA Instance URL, e.g. `https://aiteza.example.com` | *none* |
|
|
54
|
+
| Realm | Keycloak realm name | `aiteza` |
|
|
55
55
|
| Client ID | OAuth2 client ID (provided by n8n's OAuth2 base) | *none* |
|
|
56
56
|
| Client Secret | OAuth2 client secret (provided by n8n's OAuth2 base) | *none* |
|
|
57
57
|
|
|
58
|
-
### Keycloak Client Setup
|
|
59
|
-
|
|
60
|
-
Your Keycloak client (e.g. `n8n`) needs to be configured for the Authorization Code flow:
|
|
61
|
-
|
|
62
|
-
- **Valid Redirect URIs**: add your n8n callback URL, typically `https://<your-n8n>/rest/oauth2-credential/callback`
|
|
63
|
-
- **Access Type**: `confidential` (when using a client secret) or `public`
|
|
64
|
-
- **Standard Flow Enabled**: `ON`
|
|
65
|
-
|
|
66
58
|
## Supported Resources
|
|
67
59
|
|
|
68
60
|
| Resource | Operations |
|