Skip to content

Commit

Permalink
autogen: pin v1.2.0-pre.0 release commit
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Jun 4, 2024
1 parent 3c06689 commit 2baecae
Showing 1 changed file with 123 additions and 4 deletions.
127 changes: 123 additions & 4 deletions .schemastore/config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,16 @@
"additionalProperties": false,
"required": ["hook"]
},
"selfServiceVerificationHook": {
"type": "object",
"properties": {
"hook": {
"const": "verification"
}
},
"additionalProperties": false,
"required": ["hook"]
},
"selfServiceShowVerificationUIHook": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -253,6 +263,13 @@
"type": "string",
"description": "The HTTP method to use (GET, POST, etc)."
},
"headers": {
"type": "object",
"description": "The HTTP headers that must be applied to the Web-Hook",
"additionalProperties": {
"type": "string"
}
},
"body": {
"type": "string",
"oneOf": [
Expand Down Expand Up @@ -436,7 +453,9 @@
"dingtalk",
"patreon",
"linkedin",
"lark"
"linkedin_v2",
"lark",
"x"
],
"examples": ["google"]
},
Expand Down Expand Up @@ -733,6 +752,12 @@
},
{
"$ref": "#/definitions/selfServiceWebHook"
},
{
"$ref": "#/definitions/selfServiceVerificationHook"
},
{
"$ref": "#/definitions/selfServiceShowVerificationUIHook"
}
]
},
Expand Down Expand Up @@ -827,6 +852,9 @@
"webauthn": {
"$ref": "#/definitions/selfServiceAfterSettingsAuthMethod"
},
"passkey": {
"$ref": "#/definitions/selfServiceAfterSettingsAuthMethod"
},
"lookup_secret": {
"$ref": "#/definitions/selfServiceAfterSettingsAuthMethod"
},
Expand Down Expand Up @@ -860,6 +888,9 @@
"webauthn": {
"$ref": "#/definitions/selfServiceAfterDefaultLoginMethod"
},
"passkey": {
"$ref": "#/definitions/selfServiceAfterDefaultLoginMethod"
},
"oidc": {
"$ref": "#/definitions/selfServiceAfterOIDCLoginMethod"
},
Expand All @@ -885,6 +916,12 @@
{
"$ref": "#/definitions/selfServiceRequireVerifiedAddressHook"
},
{
"$ref": "#/definitions/selfServiceVerificationHook"
},
{
"$ref": "#/definitions/selfServiceShowVerificationUIHook"
},
{
"$ref": "#/definitions/b2bSSOHook"
}
Expand Down Expand Up @@ -944,6 +981,9 @@
"webauthn": {
"$ref": "#/definitions/selfServiceAfterRegistrationMethod"
},
"passkey": {
"$ref": "#/definitions/selfServiceAfterRegistrationMethod"
},
"oidc": {
"$ref": "#/definitions/selfServiceAfterRegistrationMethod"
},
Expand Down Expand Up @@ -1229,6 +1269,12 @@
},
"after": {
"$ref": "#/definitions/selfServiceAfterRegistration"
},
"enable_legacy_one_step": {
"type": "boolean",
"title": "Disable two-step registration",
"description": "Two-step registration is a significantly improved sign up flow and recommended when using more than one sign up methods. To revert to one-step registration, set this to `true`.",
"default": false
}
}
},
Expand Down Expand Up @@ -1688,6 +1734,67 @@
"required": ["config"]
}
},
"passkey": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean",
"title": "Enables the Passkey method",
"default": false
},
"config": {
"type": "object",
"title": "Passkey Configuration",
"properties": {
"rp": {
"title": "Relying Party (RP) Config",
"properties": {
"display_name": {
"type": "string",
"title": "Relying Party Display Name",
"description": "A name to help the user identify this RP.",
"examples": ["Ory Foundation"]
},
"id": {
"type": "string",
"title": "Relying Party Identifier",
"description": "The id must be a subset of the domain currently in the browser.",
"examples": ["ory.sh"]
},
"origins": {
"type": "array",
"title": "Relying Party Origins",
"description": "A list of explicit RP origins. If left empty, this defaults to either `origin` or `id`, prepended with the current protocol schema (HTTP or HTTPS).",
"items": {
"type": "string",
"format": "uri",
"examples": [
"https://www.ory.sh",
"https://auth.ory.sh"
]
}
}
},
"type": "object",
"required": ["display_name", "id"]
}
},
"additionalProperties": false
}
},
"if": {
"properties": {
"enabled": {
"const": true
}
},
"required": ["enabled"]
},
"then": {
"required": ["config"]
}
},
"oidc": {
"type": "object",
"title": "Specify OpenID Connect and OAuth2 Configuration",
Expand Down Expand Up @@ -1952,7 +2059,6 @@
"default": "localhost"
}
},
"required": ["connection_uri"],
"additionalProperties": false
},
"sms": {
Expand Down Expand Up @@ -2305,7 +2411,7 @@
"additionalProperties": false
},
"tracing": {
"$ref": "https://raw.githubusercontent.com/ory/x/v0.0.614/otelx/config.schema.json"
"$ref": "https://raw.githubusercontent.com/ory/x/v0.0.623/otelx/config.schema.json"
},
"log": {
"title": "Log",
Expand Down Expand Up @@ -2731,7 +2837,7 @@
"properties": {
"cacheable_sessions": {
"type": "boolean",
"title": "Enable Ory Session Edge Caching",
"title": "Enable Ory Sessions caching",
"description": "If enabled allows Ory Sessions to be cached. Only effective in the Ory Network.",
"default": false
},
Expand All @@ -2755,6 +2861,19 @@
"description": "Secifies which organizations are available. Only effective in the Ory Network.",
"type": "array",
"default": []
},
"enterprise": {
"title": "Enterprise features",
"description": "Specifies enterprise features. Only effective in the Ory Network or with a valid license.",
"type": "object",
"properties": {
"identity_schema_fallback_url_template": {
"type": "string",
"title": "Fallback URL template for identity schemas",
"description": "A fallback URL template used when looking up identity schemas."
}
},
"additionalProperties": false
}
},
"allOf": [
Expand Down

0 comments on commit 2baecae

Please sign in to comment.