Skip to content

Commit 386c899

Browse files
committed
autogen: regenerate OpenAPI client for v1.22.38
Version: v1.22.38
1 parent 76b052e commit 386c899

692 files changed

Lines changed: 2421 additions & 1030 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

api/openapi.yaml

Lines changed: 306 additions & 7 deletions
Large diffs are not rendered by default.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'java'
44
apply plugin: 'com.diffplug.spotless'
55

66
group = 'sh.ory'
7-
version = 'v1.22.37'
7+
version = 'v1.22.38'
88

99
buildscript {
1010
repositories {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "sh.ory",
44
name := "client",
5-
version := "v1.22.37",
5+
version := "v1.22.38",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/AccountExperienceConfiguration.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
|**errorUiUrl** | **String** | | |
1414
|**faviconDarkUrl** | **String** | | [optional] |
1515
|**faviconLightUrl** | **String** | | [optional] |
16+
|**hideOryBranding** | **Boolean** | | |
17+
|**hideRegistrationLink** | **Boolean** | | |
1618
|**localeBehavior** | [**LocaleBehaviorEnum**](#LocaleBehaviorEnum) | force_default AccountExperienceLocaleBehaviorForceDefault respect_accept_language AccountExperienceLocaleBehaviorRespectAcceptLanguage | |
1719
|**loginUiUrl** | **String** | | |
1820
|**logoDarkUrl** | **String** | | [optional] |

docs/BasicOrganization.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,25 @@
77

88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
10+
|**defaultRegion** | [**DefaultRegionEnum**](#DefaultRegionEnum) | DefaultRegion sets the default region for identities provisioned into this organization, when the identity does not specify a region explictly. eu-central EUCentral asia-northeast AsiaNorthEast us-east USEast us-west USWest eu EU asia Asia us US global Global | [optional] |
1011
|**domains** | **List<String>** | The list of organization's domains. | |
1112
|**id** | **String** | The organization's ID. | |
1213
|**label** | **String** | The organization's human-readable label. | |
1314

1415

1516

17+
## Enum: DefaultRegionEnum
18+
19+
| Name | Value |
20+
|---- | -----|
21+
| EU_CENTRAL | "eu-central" |
22+
| ASIA_NORTHEAST | "asia-northeast" |
23+
| US_EAST | "us-east" |
24+
| US_WEST | "us-west" |
25+
| EU | "eu" |
26+
| ASIA | "asia" |
27+
| US | "us" |
28+
| GLOBAL | "global" |
29+
30+
31+

docs/CreateIdentityBody.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,29 @@ Create Identity Body
1414
|**metadataPublic** | **Object** | Store metadata about the identity which the identity itself can see when calling for example the session endpoint. Do not store sensitive information (e.g. credit score) about the identity in this field. | [optional] |
1515
|**organizationId** | **String** | | [optional] |
1616
|**recoveryAddresses** | [**List<RecoveryIdentityAddress>**](RecoveryIdentityAddress.md) | RecoveryAddresses contains all the addresses that can be used to recover an identity. Use this structure to import recovery addresses for an identity. Please keep in mind that the address needs to be represented in the Identity Schema or this field will be overwritten on the next identity update. | [optional] |
17+
|**region** | [**RegionEnum**](#RegionEnum) | Region is the Ory Network region this identity will be created in. Optional; defaults to the project home region if omitted. Only effective on the Ory Network. eu-central EUCentral asia-northeast AsiaNorthEast us-east USEast us-west USWest eu EU asia Asia us US global Global | [optional] |
1718
|**schemaId** | **String** | SchemaID is the ID of the JSON Schema to be used for validating the identity's traits. | |
1819
|**state** | [**StateEnum**](#StateEnum) | State is the identity's state. active StateActive inactive StateInactive | [optional] |
1920
|**traits** | **Object** | Traits represent an identity's traits. The identity is able to create, modify, and delete traits in a self-service manner. The input will always be validated against the JSON Schema defined in `schema_url`. | |
2021
|**verifiableAddresses** | [**List<VerifiableIdentityAddress>**](VerifiableIdentityAddress.md) | VerifiableAddresses contains all the addresses that can be verified by the user. Use this structure to import verified addresses for an identity. Please keep in mind that the address needs to be represented in the Identity Schema or this field will be overwritten on the next identity update. | [optional] |
2122

2223

2324

25+
## Enum: RegionEnum
26+
27+
| Name | Value |
28+
|---- | -----|
29+
| EU_CENTRAL | "eu-central" |
30+
| ASIA_NORTHEAST | "asia-northeast" |
31+
| US_EAST | "us-east" |
32+
| US_WEST | "us-west" |
33+
| EU | "eu" |
34+
| ASIA | "asia" |
35+
| US | "us" |
36+
| GLOBAL | "global" |
37+
38+
39+
2440
## Enum: StateEnum
2541

2642
| Name | Value |

docs/CreateProjectBody.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Create Project Request Body
99
| Name | Type | Description | Notes |
1010
|------------ | ------------- | ------------- | -------------|
1111
|**environment** | [**EnvironmentEnum**](#EnvironmentEnum) | The environment of the project. prod Production stage Staging dev Development | |
12-
|**homeRegion** | [**HomeRegionEnum**](#HomeRegionEnum) | Home Region The home region of the project. This is the region where the project will be created. eu-central EUCentral asia-northeast AsiaNorthEast us-east USEast us-west USWest us US global Global | [optional] |
12+
|**homeRegion** | [**HomeRegionEnum**](#HomeRegionEnum) | Home Region The home region of the project. This is the region where the project will be created. eu-central EUCentral asia-northeast AsiaNorthEast us-east USEast us-west USWest eu EU asia Asia us US global Global | [optional] |
1313
|**name** | **String** | The name of the project to be created | |
1414
|**workspaceId** | **String** | The workspace to create the project in. | [optional] |
1515

@@ -33,6 +33,8 @@ Create Project Request Body
3333
| ASIA_NORTHEAST | "asia-northeast" |
3434
| US_EAST | "us-east" |
3535
| US_WEST | "us-west" |
36+
| EU | "eu" |
37+
| ASIA | "asia" |
3638
| US | "us" |
3739
| GLOBAL | "global" |
3840

docs/CreateProjectNormalizedPayload.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Create project (normalized) request payload
1313
|**accountExperienceEnabledLocales** | **List<String>** | The Account Experience's Enabled Locales This governs the locales that are available in the account experience. This governs the \"enabled_locales\" setting. | [optional] |
1414
|**accountExperienceFaviconDark** | **String** | Holds the URL to the account experience's dark theme favicon (currently unused). This governs the \"favicon_dark\" setting. | [optional] |
1515
|**accountExperienceFaviconLight** | **String** | Holds the URL to the account experience's favicon. This governs the \"favicon_light\" setting. | [optional] |
16+
|**accountExperienceHideOryBranding** | **Boolean** | Whether to hide the Ory branding badge on the account experience. This governs the \"hide_ory_branding\" setting. | [optional] |
17+
|**accountExperienceHideRegistrationLink** | **Boolean** | Whether to hide the registration link on the account experience login card. This governs the \"hide_registration_link\" setting. | [optional] |
1618
|**accountExperienceLocaleBehavior** | **String** | Holds the URL to the account experience's language behavior. Can be one of: `respect_accept_language`: Respect the `Accept-Language` header. `force_default`: Force the default language. This governs the \"locale_behavior\" setting. | [optional] |
1719
|**accountExperienceLogoDark** | **String** | Holds the URL to the account experience's dark theme logo (currently unused). This governs the \"logo_dark\" setting. | [optional] |
1820
|**accountExperienceLogoLight** | **String** | Holds the URL to the account experience's logo. This governs the \"logo_light\" setting. | [optional] |
@@ -22,7 +24,7 @@ Create project (normalized) request payload
2224
|**disableAccountExperienceWelcomeScreen** | **Boolean** | Whether to disable the account experience welcome screen, which is hosted under `/ui/welcome`. This governs the \"disable_welcome_screen\" setting. | [optional] |
2325
|**enableAxV2** | **Boolean** | Whether the new account experience is enabled and reachable. This governs the \"enable_ax_v2\" setting. | [optional] |
2426
|**environment** | [**EnvironmentEnum**](#EnvironmentEnum) | prod Production stage Staging dev Development | |
25-
|**homeRegion** | [**HomeRegionEnum**](#HomeRegionEnum) | eu-central EUCentral asia-northeast AsiaNorthEast us-east USEast us-west USWest us US global Global | [optional] |
27+
|**homeRegion** | [**HomeRegionEnum**](#HomeRegionEnum) | eu-central EUCentral asia-northeast AsiaNorthEast us-east USEast us-west USWest eu EU asia Asia us US global Global | [optional] |
2628
|**hydraOauth2AllowedTopLevelClaims** | **List<String>** | A list of custom claims which are allowed to be added top level to the Access Token. They cannot override reserved claims. This governs the \"oauth2.allowed_top_level_claims\" setting. | [optional] |
2729
|**hydraOauth2ClientCredentialsDefaultGrantAllowedScope** | **Boolean** | Automatically grant authorized OAuth2 Scope in OAuth2 Client Credentials Flow. Each OAuth2 Client is allowed to request a predefined OAuth2 Scope (for example `read write`). If this option is enabled, the full scope is automatically granted when performing the OAuth2 Client Credentials flow. If disabled, the OAuth2 Client has to request the scope in the OAuth2 request by providing the `scope` query parameter. Setting this option to true is common if you need compatibility with MITREid. This governs the \"oauth2.client_credentials.default_grant_allowed_scope\" setting. | [optional] |
2830
|**hydraOauth2ExcludeNotBeforeClaim** | **Boolean** | Set to true if you want to exclude claim `nbf (not before)` part of access token. This governs the \"oauth2.exclude_not_before_claim\" setting. | [optional] |
@@ -274,6 +276,8 @@ Create project (normalized) request payload
274276
| ASIA_NORTHEAST | "asia-northeast" |
275277
| US_EAST | "us-east" |
276278
| US_WEST | "us-west" |
279+
| EU | "eu" |
280+
| ASIA | "asia" |
277281
| US | "us" |
278282
| GLOBAL | "global" |
279283

docs/Identity.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ An [identity](https://www.ory.com/docs/kratos/concepts/identity-user-model) repr
1616
|**metadataPublic** | **Object** | NullJSONRawMessage represents a json.RawMessage that works well with JSON, SQL, and Swagger and is NULLable- | [optional] |
1717
|**organizationId** | **String** | | [optional] |
1818
|**recoveryAddresses** | [**List<RecoveryIdentityAddress>**](RecoveryIdentityAddress.md) | RecoveryAddresses contains all the addresses that can be used to recover an identity. | [optional] |
19+
|**region** | [**RegionEnum**](#RegionEnum) | Region is the Ory Network region this identity is homed in. Set by the multi-region persister; empty on OSS and single-region deployments. eu-central EUCentral asia-northeast AsiaNorthEast us-east USEast us-west USWest eu EU asia Asia us US global Global | [optional] |
1920
|**schemaId** | **String** | SchemaID is the ID of the JSON Schema to be used for validating the identity's traits. | |
2021
|**schemaUrl** | **String** | SchemaURL is the URL of the endpoint where the identity's traits schema can be fetched from. format: url | |
2122
|**state** | [**StateEnum**](#StateEnum) | State is the identity's state. This value has currently no effect. active StateActive inactive StateInactive | [optional] |
@@ -26,6 +27,21 @@ An [identity](https://www.ory.com/docs/kratos/concepts/identity-user-model) repr
2627

2728

2829

30+
## Enum: RegionEnum
31+
32+
| Name | Value |
33+
|---- | -----|
34+
| EU_CENTRAL | "eu-central" |
35+
| ASIA_NORTHEAST | "asia-northeast" |
36+
| US_EAST | "us-east" |
37+
| US_WEST | "us-west" |
38+
| EU | "eu" |
39+
| ASIA | "asia" |
40+
| US | "us" |
41+
| GLOBAL | "global" |
42+
43+
44+
2945
## Enum: StateEnum
3046

3147
| Name | Value |

docs/NormalizedProject.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
|**createdAt** | **OffsetDateTime** | The Project's Creation Date | [readonly] |
1111
|**currentRevision** | [**NormalizedProjectRevision**](NormalizedProjectRevision.md) | | |
1212
|**environment** | [**EnvironmentEnum**](#EnvironmentEnum) | The environment of the project. prod Production stage Staging dev Development | |
13-
|**homeRegion** | [**HomeRegionEnum**](#HomeRegionEnum) | The project's data home region. eu-central EUCentral asia-northeast AsiaNorthEast us-east USEast us-west USWest us US global Global | [readonly] |
13+
|**homeRegion** | [**HomeRegionEnum**](#HomeRegionEnum) | The project's data home region. eu-central EUCentral asia-northeast AsiaNorthEast us-east USEast us-west USWest eu EU asia Asia us US global Global | [readonly] |
1414
|**hosts** | **List<String>** | The FQDN hostnames this project listens on | |
1515
|**id** | **String** | The project's ID. | [readonly] |
1616
|**slug** | **String** | The project's slug | [readonly] |
@@ -41,6 +41,8 @@
4141
| ASIA_NORTHEAST | "asia-northeast" |
4242
| US_EAST | "us-east" |
4343
| US_WEST | "us-west" |
44+
| EU | "eu" |
45+
| ASIA | "asia" |
4446
| US | "us" |
4547
| GLOBAL | "global" |
4648

0 commit comments

Comments
 (0)