|
39 | 39 | url: https://www.apache.org/licenses/LICENSE-2.0.html |
40 | 40 | termsOfService: /tos |
41 | 41 | title: Ory APIs |
42 | | - version: v1.22.1 |
| 42 | + version: v1.22.2 |
43 | 43 | servers: |
44 | 44 | - url: "https://{project_slug}.projects.oryapis.com/" |
45 | 45 | variables: |
@@ -10244,6 +10244,12 @@ components: |
10244 | 10244 | title: "StringSliceJSONFormat represents []string{} which is encoded to/from\ |
10245 | 10245 | \ JSON for SQL storage." |
10246 | 10246 | type: array |
| 10247 | + kratos_secrets_pagination: |
| 10248 | + items: |
| 10249 | + type: string |
| 10250 | + title: "StringSliceJSONFormat represents []string{} which is encoded to/from\ |
| 10251 | + \ JSON for SQL storage." |
| 10252 | + type: array |
10247 | 10253 | kratos_security_account_enumeration_mitigate: |
10248 | 10254 | description: Configures if account enumeration should be mitigated when |
10249 | 10255 | using identifier first login. |
@@ -12712,28 +12718,28 @@ components: |
12712 | 12718 | - "" |
12713 | 12719 | type: string |
12714 | 12720 | x-go-enum-desc: |- |
12715 | | - initializing initializing |
12716 | | - pending_validation pending_validation |
12717 | | - deleted deleted |
12718 | | - pending_issuance pending_issuance |
12719 | | - pending_deployment pending_deployment |
12720 | | - pending_deletion pending_deletion |
12721 | | - pending_expiration pending_expiration |
12722 | | - expired expired |
12723 | | - active active |
12724 | | - initializing_timed_out initializing_timed_out |
12725 | | - validation_timed_out validation_timed_out |
12726 | | - issuance_timed_out issuance_timed_out |
12727 | | - deployment_timed_out deployment_timed_out |
12728 | | - deletion_timed_out deletion_timed_out |
12729 | | - pending_cleanup pending_cleanup |
12730 | | - staging_deployment staging_deployment |
12731 | | - staging_active staging_active |
12732 | | - deactivating deactivating |
12733 | | - inactive inactive |
12734 | | - backup_issued backup_issued |
12735 | | - holding_deployment holding_deployment |
12736 | | - unknown Cloudflare sometimes returns an empty string. |
| 12721 | + initializing _ |
| 12722 | + pending_validation _ |
| 12723 | + deleted _ |
| 12724 | + pending_issuance _ |
| 12725 | + pending_deployment _ |
| 12726 | + pending_deletion _ |
| 12727 | + pending_expiration _ |
| 12728 | + expired _ |
| 12729 | + active _ |
| 12730 | + initializing_timed_out _ |
| 12731 | + validation_timed_out _ |
| 12732 | + issuance_timed_out _ |
| 12733 | + deployment_timed_out _ |
| 12734 | + deletion_timed_out _ |
| 12735 | + pending_cleanup _ |
| 12736 | + staging_deployment _ |
| 12737 | + staging_active _ |
| 12738 | + deactivating _ |
| 12739 | + inactive _ |
| 12740 | + backup_issued _ |
| 12741 | + holding_deployment _ |
| 12742 | + _ Cloudflare sometimes returns an empty string. |
12737 | 12743 | updated_at: |
12738 | 12744 | format: date-time |
12739 | 12745 | type: string |
@@ -13637,6 +13643,9 @@ components: |
13637 | 13643 | schema: |
13638 | 13644 | description: The actual Identity JSON Schema |
13639 | 13645 | type: object |
| 13646 | + required: |
| 13647 | + - id |
| 13648 | + - schema |
13640 | 13649 | type: object |
13641 | 13650 | identitySchemaPreset: |
13642 | 13651 | properties: |
@@ -16105,6 +16114,12 @@ components: |
16105 | 16114 | title: "StringSliceJSONFormat represents []string{} which is encoded to/from\ |
16106 | 16115 | \ JSON for SQL storage." |
16107 | 16116 | type: array |
| 16117 | + kratos_secrets_pagination: |
| 16118 | + items: |
| 16119 | + type: string |
| 16120 | + title: "StringSliceJSONFormat represents []string{} which is encoded to/from\ |
| 16121 | + \ JSON for SQL storage." |
| 16122 | + type: array |
16108 | 16123 | kratos_security_account_enumeration_mitigate: |
16109 | 16124 | description: Configures if account enumeration should be mitigated when |
16110 | 16125 | using identifier first login. |
@@ -17190,6 +17205,16 @@ components: |
17190 | 17205 | description: The Revision's ID this schema belongs to |
17191 | 17206 | format: uuid |
17192 | 17207 | type: string |
| 17208 | + subject_source: |
| 17209 | + default: id |
| 17210 | + description: |- |
| 17211 | + Subject source for the tokenizer |
| 17212 | + |
| 17213 | + Can be either id or external_id or empty |
| 17214 | + enum: |
| 17215 | + - id |
| 17216 | + - external_id |
| 17217 | + type: string |
17193 | 17218 | ttl: |
17194 | 17219 | default: 1m |
17195 | 17220 | description: Token time to live |
@@ -20135,6 +20160,7 @@ components: |
20135 | 20160 | m2m_token_issuance M2MTokenIssuance |
20136 | 20161 | permission_checks PermissionChecks |
20137 | 20162 | captcha Captcha |
| 20163 | + identity_search_api IdentitySearchAPI |
20138 | 20164 | saml_sp SAMLSP |
20139 | 20165 | saml_idp SAMLIDP |
20140 | 20166 | auto_link_policy AutoLinkPolicy |
@@ -20183,6 +20209,7 @@ components: |
20183 | 20209 | - m2m_token_issuance |
20184 | 20210 | - permission_checks |
20185 | 20211 | - captcha |
| 20212 | + - identity_search_api |
20186 | 20213 | - saml_sp |
20187 | 20214 | - saml_idp |
20188 | 20215 | - auto_link_policy |
@@ -20232,6 +20259,7 @@ components: |
20232 | 20259 | m2m_token_issuance M2MTokenIssuance |
20233 | 20260 | permission_checks PermissionChecks |
20234 | 20261 | captcha Captcha |
| 20262 | + identity_search_api IdentitySearchAPI |
20235 | 20263 | saml_sp SAMLSP |
20236 | 20264 | saml_idp SAMLIDP |
20237 | 20265 | auto_link_policy AutoLinkPolicy |
|
0 commit comments