mirror of
https://github.com/n8n-io/n8n.git
synced 2026-09-21 04:37:50 +08:00
feat(core): Add on-demand OAuth clients and protected resources for form triggers (no-changelog) (#34903)
This commit is contained in:
@@ -87,7 +87,7 @@ Auto-generated from the PostgreSQL migrations in @n8n/db. Do not edit by hand.
|
||||
| [public.mcp_registry_server](public.mcp_registry_server.md) | 7 | | BASE TABLE |
|
||||
| [public.oauth_access_tokens](public.oauth_access_tokens.md) | 3 | | BASE TABLE |
|
||||
| [public.oauth_authorization_codes](public.oauth_authorization_codes.md) | 13 | | BASE TABLE |
|
||||
| [public.oauth_clients](public.oauth_clients.md) | 9 | | BASE TABLE |
|
||||
| [public.oauth_clients](public.oauth_clients.md) | 10 | | BASE TABLE |
|
||||
| [public.oauth_refresh_tokens](public.oauth_refresh_tokens.md) | 7 | | BASE TABLE |
|
||||
| [public.oauth_user_consents](public.oauth_user_consents.md) | 5 | | BASE TABLE |
|
||||
| [public.processed_data](public.processed_data.md) | 5 | | BASE TABLE |
|
||||
@@ -1121,6 +1121,7 @@ erDiagram
|
||||
timestamp_3__with_time_zone createdAt
|
||||
json grantTypes
|
||||
varchar id
|
||||
boolean isFirstParty
|
||||
varchar_255_ name
|
||||
json redirectUris
|
||||
varchar_255_ tokenEndpointAuthMethod
|
||||
|
||||
@@ -44,6 +44,7 @@ erDiagram
|
||||
timestamp_3__with_time_zone createdAt
|
||||
json grantTypes
|
||||
varchar id
|
||||
boolean isFirstParty
|
||||
varchar_255_ name
|
||||
json redirectUris
|
||||
varchar_255_ tokenEndpointAuthMethod
|
||||
|
||||
@@ -72,6 +72,7 @@ erDiagram
|
||||
timestamp_3__with_time_zone createdAt
|
||||
json grantTypes
|
||||
varchar id
|
||||
boolean isFirstParty
|
||||
varchar_255_ name
|
||||
json redirectUris
|
||||
varchar_255_ tokenEndpointAuthMethod
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
| createdAt | timestamp(3) with time zone | CURRENT_TIMESTAMP(3) | false | | | |
|
||||
| grantTypes | json | | false | | | |
|
||||
| id | varchar | | false | [public.oauth_access_tokens](public.oauth_access_tokens.md) [public.oauth_authorization_codes](public.oauth_authorization_codes.md) [public.oauth_refresh_tokens](public.oauth_refresh_tokens.md) [public.oauth_user_consents](public.oauth_user_consents.md) | | |
|
||||
| isFirstParty | boolean | false | false | | | |
|
||||
| name | varchar(255) | | false | | | |
|
||||
| redirectUris | json | | false | | | |
|
||||
| tokenEndpointAuthMethod | varchar(255) | 'none'::character varying | false | | | Possible values: none, client_secret_basic or client_secret_post |
|
||||
@@ -22,6 +23,7 @@
|
||||
| oauth_clients_createdAt_not_null | n | NOT NULL "createdAt" |
|
||||
| oauth_clients_grantTypes_not_null | n | NOT NULL "grantTypes" |
|
||||
| oauth_clients_id_not_null | n | NOT NULL id |
|
||||
| oauth_clients_isFirstParty_not_null | n | NOT NULL "isFirstParty" |
|
||||
| oauth_clients_name_not_null | n | NOT NULL name |
|
||||
| oauth_clients_redirectUris_not_null | n | NOT NULL "redirectUris" |
|
||||
| oauth_clients_tokenEndpointAuthMethod_not_null | n | NOT NULL "tokenEndpointAuthMethod" |
|
||||
@@ -49,6 +51,7 @@ erDiagram
|
||||
timestamp_3__with_time_zone createdAt
|
||||
json grantTypes
|
||||
varchar id
|
||||
boolean isFirstParty
|
||||
varchar_255_ name
|
||||
json redirectUris
|
||||
varchar_255_ tokenEndpointAuthMethod
|
||||
|
||||
@@ -56,6 +56,7 @@ erDiagram
|
||||
timestamp_3__with_time_zone createdAt
|
||||
json grantTypes
|
||||
varchar id
|
||||
boolean isFirstParty
|
||||
varchar_255_ name
|
||||
json redirectUris
|
||||
varchar_255_ tokenEndpointAuthMethod
|
||||
|
||||
@@ -52,6 +52,7 @@ erDiagram
|
||||
timestamp_3__with_time_zone createdAt
|
||||
json grantTypes
|
||||
varchar id
|
||||
boolean isFirstParty
|
||||
varchar_255_ name
|
||||
json redirectUris
|
||||
varchar_255_ tokenEndpointAuthMethod
|
||||
|
||||
Reference in New Issue
Block a user