@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 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 backend URL, e.g. `https://aiteza.example.com` | *none* |
54
- | Realm | Keycloak realm name | `kai` |
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 |
@@ -30,7 +30,7 @@ class AitezaOAuth2Api {
30
30
  displayName: 'Realm',
31
31
  name: 'realm',
32
32
  type: 'string',
33
- default: 'kai',
33
+ default: 'aiteza',
34
34
  description: 'Keycloak Realm name',
35
35
  required: true,
36
36
  },