Skip to content

Commit 2e72c5b

Browse files
committed
autogen: pin v0.13.0 release commit
1 parent 054705b commit 2e72c5b

File tree

1 file changed

+54
-4
lines changed

1 file changed

+54
-4
lines changed

.schemastore/config.schema.json

+54-4
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,18 @@
8484
"hook"
8585
]
8686
},
87+
"selfServiceShowVerificationUIHook": {
88+
"type": "object",
89+
"properties": {
90+
"hook": {
91+
"const": "show_verification_ui"
92+
}
93+
},
94+
"additionalProperties": false,
95+
"required": [
96+
"hook"
97+
]
98+
},
8799
"webHookAuthBasicAuthProperties": {
88100
"properties": {
89101
"type": {
@@ -174,7 +186,26 @@
174186
"type": "boolean",
175187
"description": "Ignore the response from the web hook. If enabled the request will be made asynchronously which can be useful if you only wish to notify another system but do not parse the response.",
176188
"default": false
189+
},
190+
"parse": {
191+
"type": "boolean",
192+
"default": false,
193+
"description": "If enabled parses the response before saving the flow result. Set this value to true if you would like to modify the identity, for example identity metadata, before saving it during registration. When enabled, you may also abort the registration, verification, login or settings flow due to, for example, a validation flow. Head over to the [web hook documentation](https://www.ory.sh/docs/kratos/hooks/configure-hooks) for more information."
177194
}
195+
},
196+
"not": {
197+
"properties": {
198+
"ignore": {
199+
"const": true
200+
},
201+
"parse": {
202+
"const": true
203+
}
204+
},
205+
"required": [
206+
"ignore",
207+
"parse"
208+
]
178209
}
179210
},
180211
"url": {
@@ -211,7 +242,7 @@
211242
"can_interrupt": {
212243
"type": "boolean",
213244
"default": false,
214-
"description": "If enabled allows the web hook to interrupt / abort the self-service flow. It only applies to certain flows (registration/verification/login/settings) and requires a valid response format."
245+
"description": "Deprecated, please use `response.parse` instead. If enabled allows the web hook to interrupt / abort the self-service flow. It only applies to certain flows (registration/verification/login/settings) and requires a valid response format."
215246
},
216247
"auth": {
217248
"type": "object",
@@ -382,7 +413,8 @@
382413
"spotify",
383414
"netid",
384415
"dingtalk",
385-
"patreon"
416+
"patreon",
417+
"linkedin"
386418
],
387419
"examples": [
388420
"google"
@@ -724,6 +756,9 @@
724756
},
725757
{
726758
"$ref": "#/definitions/selfServiceWebHook"
759+
},
760+
{
761+
"$ref": "#/definitions/selfServiceShowVerificationUIHook"
727762
}
728763
]
729764
},
@@ -1208,8 +1243,17 @@
12081243
"title": "Verification Strategy",
12091244
"description": "The strategy to use for verification requests",
12101245
"type": "string",
1211-
"enum": ["link", "code"],
1246+
"enum": [
1247+
"link",
1248+
"code"
1249+
],
12121250
"default": "code"
1251+
},
1252+
"notify_unknown_recipients": {
1253+
"title": "Notify unknown recipients",
1254+
"description": "Whether to notify recipients, if verification was requested for their address.",
1255+
"type": "boolean",
1256+
"default": false
12131257
}
12141258
}
12151259
},
@@ -1261,6 +1305,12 @@
12611305
"code"
12621306
],
12631307
"default": "code"
1308+
},
1309+
"notify_unknown_recipients": {
1310+
"title": "Notify unknown recipients",
1311+
"description": "Whether to notify recipients, if recovery was requested for their account.",
1312+
"type": "boolean",
1313+
"default": false
12641314
}
12651315
}
12661316
},
@@ -2069,7 +2119,7 @@
20692119
"additionalProperties": false
20702120
},
20712121
"tracing": {
2072-
"$ref": "https://raw.githubusercontent.com/ory/x/v0.0.531/otelx/config.schema.json"
2122+
"$ref": "https://raw.githubusercontent.com/ory/x/v0.0.551/otelx/config.schema.json"
20732123
},
20742124
"log": {
20752125
"title": "Log",

0 commit comments

Comments
 (0)