Skip to content

Commit 092717e

Browse files
committed
autogen: regenerate OpenAPI client for v1.22.21
Version: v1.22.21
1 parent f1dd1e8 commit 092717e

File tree

648 files changed

+2649
-962
lines changed

Some content is hidden

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

648 files changed

+2649
-962
lines changed

api/openapi.yaml

Lines changed: 233 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.16'
7+
version = 'v1.22.21'
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.16",
5+
version := "v1.22.21",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/CreateOrganizationOnboardingPortalLinkBody.md

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

88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
10+
|**appleMapperUrl** | **String** | AppleMapper specifies the JSONNet code snippet which uses Apple's profile information to hydrate the identity's data. | [optional] |
11+
|**auth0MapperUrl** | **String** | Auth0Mapper specifies the JSONNet code snippet which uses Auth0's profile information to hydrate the identity's data. | [optional] |
1012
|**customHostnameId** | **String** | | [optional] |
1113
|**enableScim** | **Boolean** | Feature flag to enable SCIM configuration | |
1214
|**enableSso** | **Boolean** | Feature flag to enable SSO configuration | |
1315
|**expiresAt** | **OffsetDateTime** | | [optional] |
16+
|**facebookMapperUrl** | **String** | FacebookMapper specifies the JSONNet code snippet which uses Facebook's profile information to hydrate the identity's data. | [optional] |
17+
|**genericOidcMapperUrl** | **String** | GenericOIDCMapper specifies the JSONNet code snippet which uses the OIDC Provider's profile information to hydrate the identity's data. | [optional] |
18+
|**githubMapperUrl** | **String** | GithubMapper specifies the JSONNet code snippet which uses GitHub's profile information to hydrate the identity's data. | [optional] |
19+
|**gitlabMapperUrl** | **String** | GitLabMapper specifies the JSONNet code snippet which uses GitLab's profile information to hydrate the identity's data. | [optional] |
20+
|**googleMapperUrl** | **String** | GoogleMapper specifies the JSONNet code snippet which uses Google's profile information to hydrate the identity's data. | [optional] |
21+
|**microsoftMapperUrl** | **String** | MicrosoftMapper specifies the JSONNet code snippet which uses Microsoft's profile information to hydrate the identity's data. | [optional] |
22+
|**netidMapperUrl** | **String** | NetIDMapper specifies the JSONNet code snippet which uses NetID's profile information to hydrate the identity's data. | [optional] |
1423
|**proxyAcsUrl** | **String** | Proxy ACS URL if overriding with a customer-controlled URL | [optional] |
1524
|**proxyOidcRedirectUrl** | **String** | Proxy OIDC Redirect URL if overriding with a customer-controlled URL | [optional] |
1625
|**proxySamlAudienceOverride** | **String** | SAML Audience Override if overriding with a customer-controlled one | [optional] |
1726
|**proxyScimServerUrl** | **String** | Proxy SCIM Server URL if overriding with a customer-controlled URL | [optional] |
27+
|**samlMapperUrl** | **String** | SAMLMapper specifies the JSONNet code snippet which uses the SAML Provider's profile information to hydrate the identity's data. | [optional] |
28+
|**scimMapperUrl** | **String** | SCIMMapper specifies the JSONNet code snippet which uses the SCIM Provider's profile information to hydrate the identity's data. | [optional] |
1829

1930

2031

docs/IdentityCredentials.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Credentials represents a specific credential type
1010
|------------ | ------------- | ------------- | -------------|
1111
|**config** | **Object** | | [optional] |
1212
|**createdAt** | **OffsetDateTime** | CreatedAt is a helper struct field for gobuffalo.pop. | [optional] |
13-
|**identifiers** | **List<String>** | Identifiers represents a list of unique identifiers this credential type matches. | [optional] |
13+
|**identifiers** | **List<String>** | Identifiers represent a list of unique identifiers this credential type matches. | [optional] |
1414
|**type** | [**TypeEnum**](#TypeEnum) | Type discriminates between different types of credentials. password CredentialsTypePassword oidc CredentialsTypeOIDC totp CredentialsTypeTOTP lookup_secret CredentialsTypeLookup webauthn CredentialsTypeWebAuthn code CredentialsTypeCodeAuth passkey CredentialsTypePasskey profile CredentialsTypeProfile saml CredentialsTypeSAML link_recovery CredentialsTypeRecoveryLink CredentialsTypeRecoveryLink is a special credential type linked to the link strategy (recovery flow). It is not used within the credentials object itself. code_recovery CredentialsTypeRecoveryCode | [optional] |
1515
|**updatedAt** | **OffsetDateTime** | UpdatedAt is a helper struct field for gobuffalo.pop. | [optional] |
1616
|**version** | **Long** | Version refers to the version of the credential. Useful when changing the config schema. | [optional] |

docs/IntrospectedOAuth2Token.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Introspection contains an access token's session data as specified by [IETF RFC
1010
|------------ | ------------- | ------------- | -------------|
1111
|**active** | **Boolean** | Active is a boolean indicator of whether or not the presented token is currently active. The specifics of a token's \"active\" state will vary depending on the implementation of the authorization server and the information it keeps about its tokens, but a \"true\" value return for the \"active\" property will generally indicate that a given token has been issued by this authorization server, has not been revoked by the resource owner, and is within its given time window of validity (e.g., after its issuance time and before its expiration time). | |
1212
|**aud** | **List<String>** | Audience contains a list of the token's intended audiences. | [optional] |
13-
|**clientId** | **String** | ID is aclient identifier for the OAuth 2.0 client that requested this token. | [optional] |
13+
|**clientId** | **String** | ID is a client identifier for the OAuth 2.0 client that requested this token. | [optional] |
1414
|**exp** | **Long** | Expires at is an integer timestamp, measured in the number of seconds since January 1 1970 UTC, indicating when this token will expire. | [optional] |
1515
|**ext** | **Map<String, Object>** | Extra is arbitrary data set by the session. | [optional] |
1616
|**iat** | **Long** | Issued at is an integer timestamp, measured in the number of seconds since January 1 1970 UTC, indicating when this token was originally issued. | [optional] |

docs/JwkApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ All URIs are relative to *https://playground.projects.oryapis.com*
1919
2020
Create JSON Web Key
2121

22-
This endpoint is capable of generating JSON Web Key Sets for you. There a different strategies available, such as symmetric cryptographic keys (HS256, HS512) and asymetric cryptographic keys (RS256, ECDSA). If the specified JSON Web Key Set does not exist, it will be created. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well.
22+
This endpoint is capable of generating JSON Web Key Sets for you. There are different strategies available, such as symmetric cryptographic keys (HS256, HS512) and asymmetric cryptographic keys (RS256, ECDSA). If the specified JSON Web Key Set does not exist, it will be created. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well.
2323

2424
### Example
2525
```java

docs/OnboardingPortalLink.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,29 @@
77

88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
10+
|**appleMapperUrl** | **String** | AppleMapper specifies the JSONNet code snippet which uses Apple's profile information to hydrate the identity's data. | [optional] |
11+
|**auth0MapperUrl** | **String** | Auth0Mapper specifies the JSONNet code snippet which uses Auth0's profile information to hydrate the identity's data. | [optional] |
1012
|**createdAt** | **OffsetDateTime** | The onboarding portal link's creation date | [optional] [readonly] |
1113
|**customHostnameId** | **String** | | [optional] |
1214
|**enableScim** | **Boolean** | Feature flag to enable SCIM configuration | [optional] |
1315
|**enableSso** | **Boolean** | Feature flag to enable SSO configuration | [optional] |
1416
|**expiresAt** | **OffsetDateTime** | The onboarding portal link's expiry date | [readonly] |
17+
|**facebookMapperUrl** | **String** | FacebookMapper specifies the JSONNet code snippet which uses Facebook's profile information to hydrate the identity's data. | [optional] |
18+
|**genericOidcMapperUrl** | **String** | GenericOIDCMapper specifies the JSONNet code snippet which uses the OIDC Provider's profile information to hydrate the identity's data. | [optional] |
19+
|**githubMapperUrl** | **String** | GithubMapper specifies the JSONNet code snippet which uses GitHub's profile information to hydrate the identity's data. | [optional] |
20+
|**gitlabMapperUrl** | **String** | GitLabMapper specifies the JSONNet code snippet which uses GitLab's profile information to hydrate the identity's data. | [optional] |
21+
|**googleMapperUrl** | **String** | GoogleMapper specifies the JSONNet code snippet which uses Google's profile information to hydrate the identity's data. | [optional] |
1522
|**id** | **String** | The onboarding portal link's ID. | [readonly] |
23+
|**microsoftMapperUrl** | **String** | MicrosoftMapper specifies the JSONNet code snippet which uses Microsoft's profile information to hydrate the identity's data. | [optional] |
24+
|**netidMapperUrl** | **String** | NetIDMapper specifies the JSONNet code snippet which uses NetID's profile information to hydrate the identity's data. | [optional] |
1625
|**organizationId** | **String** | The onboarding portal link's organization ID | [readonly] |
1726
|**projectId** | **String** | The onboarding portal link's project ID | [readonly] |
1827
|**proxyAcsUrl** | **String** | Proxy ACS URL if overriding with a customer-controlled URL | [optional] |
1928
|**proxyOidcRedirectUrl** | **String** | Proxy OIDC Redirect URL if overriding with a customer-controlled URL | [optional] |
2029
|**proxySamlAudienceOverride** | **String** | SAML Audience Override if overriding with a customer-controlled one | [optional] |
2130
|**proxyScimServerUrl** | **String** | Proxy SCIM Server URL if overriding with a customer-controlled URL | [optional] |
31+
|**samlMapperUrl** | **String** | SAMLMapper specifies the JSONNet code snippet which uses the SAML Provider's profile information to hydrate the identity's data. | [optional] |
32+
|**scimMapperUrl** | **String** | SCIMMapper specifies the JSONNet code snippet which uses the SCIM Provider's profile information to hydrate the identity's data. | [optional] |
2233
|**value** | **String** | The onboarding portal link's value | [readonly] |
2334

2435

docs/OnboardingPortalOrganization.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,31 @@
77

88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
10+
|**appleMapperUrl** | **String** | AppleMapper specifies the JSONNet code snippet which uses Apple's profile information to hydrate the identity's data. | [optional] |
11+
|**auth0MapperUrl** | **String** | Auth0Mapper specifies the JSONNet code snippet which uses Auth0's profile information to hydrate the identity's data. | [optional] |
1012
|**baseUrl** | **String** | | |
13+
|**facebookMapperUrl** | **String** | FacebookMapper specifies the JSONNet code snippet which uses Facebook's profile information to hydrate the identity's data. | [optional] |
14+
|**genericOidcMapperUrl** | **String** | GenericOIDCMapper specifies the JSONNet code snippet which uses the OIDC Provider's profile information to hydrate the identity's data. | [optional] |
15+
|**githubMapperUrl** | **String** | GithubMapper specifies the JSONNet code snippet which uses GitHub's profile information to hydrate the identity's data. | [optional] |
16+
|**gitlabMapperUrl** | **String** | GitLabMapper specifies the JSONNet code snippet which uses GitLab's profile information to hydrate the identity's data. | [optional] |
17+
|**googleMapperUrl** | **String** | GoogleMapper specifies the JSONNet code snippet which uses Google's profile information to hydrate the identity's data. | [optional] |
1118
|**kratosSelfserviceMethodsOidcConfigProviders** | [**List<NormalizedProjectRevisionThirdPartyProvider>**](NormalizedProjectRevisionThirdPartyProvider.md) | | |
1219
|**kratosSelfserviceMethodsSamlConfigProviders** | [**List<NormalizedProjectRevisionSAMLProvider>**](NormalizedProjectRevisionSAMLProvider.md) | | |
20+
|**microsoftMapperUrl** | **String** | MicrosoftMapper specifies the JSONNet code snippet which uses Microsoft's profile information to hydrate the identity's data. | [optional] |
21+
|**netidMapperUrl** | **String** | NetIDMapper specifies the JSONNet code snippet which uses NetID's profile information to hydrate the identity's data. | [optional] |
22+
|**oidcSsoEnabled** | **Boolean** | | [optional] |
1323
|**organizationId** | **String** | | |
1424
|**organizationLabel** | **String** | Organization Label | [optional] |
1525
|**proxyAcsUrl** | **String** | Proxy ACS URL if overriding with a customer-controlled URL | [optional] |
1626
|**proxyOidcRedirectUrl** | **String** | Proxy OIDC Redirect URL if overriding with a customer-controlled URL | [optional] |
1727
|**proxySamlAudienceOverride** | **String** | SAML Audience Override if overriding with a customer-controlled one | [optional] |
1828
|**proxyScimServerUrl** | **String** | Proxy SCIM Server URL if overriding with a customer-controlled URL | [optional] |
1929
|**revisionId** | **String** | | |
30+
|**samlMapperUrl** | **String** | SAMLMapper specifies the JSONNet code snippet which uses the SAML Provider's profile information to hydrate the identity's data. | [optional] |
31+
|**samlSsoEnabled** | **Boolean** | | [optional] |
2032
|**scimClients** | [**List<NormalizedProjectRevisionScimClient>**](NormalizedProjectRevisionScimClient.md) | | |
2133
|**scimEnabled** | **Boolean** | | |
34+
|**scimMapperUrl** | **String** | SCIMMapper specifies the JSONNet code snippet which uses the SCIM Provider's profile information to hydrate the identity's data. | [optional] |
2235
|**ssoEnabled** | **Boolean** | | |
2336

2437

docs/PlanDetails.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,12 @@
1111
|**baseFeeYearly** | **Long** | BaseFeeYearly is the yearly base fee for the plan. | |
1212
|**custom** | **Boolean** | Custom is true if the plan is custom. This means it will be hidden from the pricing page. | |
1313
|**description** | **String** | Description is the description of the plan. | |
14+
|**developmentFeatures** | [**Map<String, GenericUsage>**](GenericUsage.md) | | |
1415
|**features** | [**Map<String, GenericUsage>**](GenericUsage.md) | | |
1516
|**latest** | **Boolean** | Latest is true if the plan is the latest version of a plan and should be available for self-service usage. | [optional] |
1617
|**name** | **String** | Name is the name of the plan. | |
18+
|**productionFeatures** | [**Map<String, GenericUsage>**](GenericUsage.md) | | |
19+
|**stagingFeatures** | [**Map<String, GenericUsage>**](GenericUsage.md) | | |
1720
|**version** | **Long** | Version is the version of the plan. The combination of `name@version` must be unique. | |
1821

1922

0 commit comments

Comments
 (0)