Skip to content

Commit 2baecae

Browse files
committed
autogen: pin v1.2.0-pre.0 release commit
1 parent 3c06689 commit 2baecae

File tree

1 file changed

+123
-4
lines changed

1 file changed

+123
-4
lines changed

.schemastore/config.schema.json

Lines changed: 123 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,16 @@
7575
"additionalProperties": false,
7676
"required": ["hook"]
7777
},
78+
"selfServiceVerificationHook": {
79+
"type": "object",
80+
"properties": {
81+
"hook": {
82+
"const": "verification"
83+
}
84+
},
85+
"additionalProperties": false,
86+
"required": ["hook"]
87+
},
7888
"selfServiceShowVerificationUIHook": {
7989
"type": "object",
8090
"properties": {
@@ -253,6 +263,13 @@
253263
"type": "string",
254264
"description": "The HTTP method to use (GET, POST, etc)."
255265
},
266+
"headers": {
267+
"type": "object",
268+
"description": "The HTTP headers that must be applied to the Web-Hook",
269+
"additionalProperties": {
270+
"type": "string"
271+
}
272+
},
256273
"body": {
257274
"type": "string",
258275
"oneOf": [
@@ -436,7 +453,9 @@
436453
"dingtalk",
437454
"patreon",
438455
"linkedin",
439-
"lark"
456+
"linkedin_v2",
457+
"lark",
458+
"x"
440459
],
441460
"examples": ["google"]
442461
},
@@ -733,6 +752,12 @@
733752
},
734753
{
735754
"$ref": "#/definitions/selfServiceWebHook"
755+
},
756+
{
757+
"$ref": "#/definitions/selfServiceVerificationHook"
758+
},
759+
{
760+
"$ref": "#/definitions/selfServiceShowVerificationUIHook"
736761
}
737762
]
738763
},
@@ -827,6 +852,9 @@
827852
"webauthn": {
828853
"$ref": "#/definitions/selfServiceAfterSettingsAuthMethod"
829854
},
855+
"passkey": {
856+
"$ref": "#/definitions/selfServiceAfterSettingsAuthMethod"
857+
},
830858
"lookup_secret": {
831859
"$ref": "#/definitions/selfServiceAfterSettingsAuthMethod"
832860
},
@@ -860,6 +888,9 @@
860888
"webauthn": {
861889
"$ref": "#/definitions/selfServiceAfterDefaultLoginMethod"
862890
},
891+
"passkey": {
892+
"$ref": "#/definitions/selfServiceAfterDefaultLoginMethod"
893+
},
863894
"oidc": {
864895
"$ref": "#/definitions/selfServiceAfterOIDCLoginMethod"
865896
},
@@ -885,6 +916,12 @@
885916
{
886917
"$ref": "#/definitions/selfServiceRequireVerifiedAddressHook"
887918
},
919+
{
920+
"$ref": "#/definitions/selfServiceVerificationHook"
921+
},
922+
{
923+
"$ref": "#/definitions/selfServiceShowVerificationUIHook"
924+
},
888925
{
889926
"$ref": "#/definitions/b2bSSOHook"
890927
}
@@ -944,6 +981,9 @@
944981
"webauthn": {
945982
"$ref": "#/definitions/selfServiceAfterRegistrationMethod"
946983
},
984+
"passkey": {
985+
"$ref": "#/definitions/selfServiceAfterRegistrationMethod"
986+
},
947987
"oidc": {
948988
"$ref": "#/definitions/selfServiceAfterRegistrationMethod"
949989
},
@@ -1229,6 +1269,12 @@
12291269
},
12301270
"after": {
12311271
"$ref": "#/definitions/selfServiceAfterRegistration"
1272+
},
1273+
"enable_legacy_one_step": {
1274+
"type": "boolean",
1275+
"title": "Disable two-step registration",
1276+
"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`.",
1277+
"default": false
12321278
}
12331279
}
12341280
},
@@ -1688,6 +1734,67 @@
16881734
"required": ["config"]
16891735
}
16901736
},
1737+
"passkey": {
1738+
"type": "object",
1739+
"additionalProperties": false,
1740+
"properties": {
1741+
"enabled": {
1742+
"type": "boolean",
1743+
"title": "Enables the Passkey method",
1744+
"default": false
1745+
},
1746+
"config": {
1747+
"type": "object",
1748+
"title": "Passkey Configuration",
1749+
"properties": {
1750+
"rp": {
1751+
"title": "Relying Party (RP) Config",
1752+
"properties": {
1753+
"display_name": {
1754+
"type": "string",
1755+
"title": "Relying Party Display Name",
1756+
"description": "A name to help the user identify this RP.",
1757+
"examples": ["Ory Foundation"]
1758+
},
1759+
"id": {
1760+
"type": "string",
1761+
"title": "Relying Party Identifier",
1762+
"description": "The id must be a subset of the domain currently in the browser.",
1763+
"examples": ["ory.sh"]
1764+
},
1765+
"origins": {
1766+
"type": "array",
1767+
"title": "Relying Party Origins",
1768+
"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).",
1769+
"items": {
1770+
"type": "string",
1771+
"format": "uri",
1772+
"examples": [
1773+
"https://www.ory.sh",
1774+
"https://auth.ory.sh"
1775+
]
1776+
}
1777+
}
1778+
},
1779+
"type": "object",
1780+
"required": ["display_name", "id"]
1781+
}
1782+
},
1783+
"additionalProperties": false
1784+
}
1785+
},
1786+
"if": {
1787+
"properties": {
1788+
"enabled": {
1789+
"const": true
1790+
}
1791+
},
1792+
"required": ["enabled"]
1793+
},
1794+
"then": {
1795+
"required": ["config"]
1796+
}
1797+
},
16911798
"oidc": {
16921799
"type": "object",
16931800
"title": "Specify OpenID Connect and OAuth2 Configuration",
@@ -1952,7 +2059,6 @@
19522059
"default": "localhost"
19532060
}
19542061
},
1955-
"required": ["connection_uri"],
19562062
"additionalProperties": false
19572063
},
19582064
"sms": {
@@ -2305,7 +2411,7 @@
23052411
"additionalProperties": false
23062412
},
23072413
"tracing": {
2308-
"$ref": "https://raw.githubusercontent.com/ory/x/v0.0.614/otelx/config.schema.json"
2414+
"$ref": "https://raw.githubusercontent.com/ory/x/v0.0.623/otelx/config.schema.json"
23092415
},
23102416
"log": {
23112417
"title": "Log",
@@ -2731,7 +2837,7 @@
27312837
"properties": {
27322838
"cacheable_sessions": {
27332839
"type": "boolean",
2734-
"title": "Enable Ory Session Edge Caching",
2840+
"title": "Enable Ory Sessions caching",
27352841
"description": "If enabled allows Ory Sessions to be cached. Only effective in the Ory Network.",
27362842
"default": false
27372843
},
@@ -2755,6 +2861,19 @@
27552861
"description": "Secifies which organizations are available. Only effective in the Ory Network.",
27562862
"type": "array",
27572863
"default": []
2864+
},
2865+
"enterprise": {
2866+
"title": "Enterprise features",
2867+
"description": "Specifies enterprise features. Only effective in the Ory Network or with a valid license.",
2868+
"type": "object",
2869+
"properties": {
2870+
"identity_schema_fallback_url_template": {
2871+
"type": "string",
2872+
"title": "Fallback URL template for identity schemas",
2873+
"description": "A fallback URL template used when looking up identity schemas."
2874+
}
2875+
},
2876+
"additionalProperties": false
27582877
}
27592878
},
27602879
"allOf": [

0 commit comments

Comments
 (0)