Skip to content

Commit de37b93

Browse files
committed
autogen: regenerate OpenAPI client for v1.22.42
Version: v1.22.42
1 parent 9b2dca1 commit de37b93

788 files changed

Lines changed: 1751 additions & 1873 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.

.openapi-generator/FILES

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,6 @@ docs/Message.md
203203
docs/MessageDispatch.md
204204
docs/MetadataApi.md
205205
docs/MetricsDatapoint.md
206-
docs/Money.md
207206
docs/Namespace.md
208207
docs/NeedsPrivilegedSessionError.md
209208
docs/NormalizedProject.md
@@ -619,7 +618,6 @@ src/main/java/sh/ory/model/MemberInvite.java
619618
src/main/java/sh/ory/model/Message.java
620619
src/main/java/sh/ory/model/MessageDispatch.java
621620
src/main/java/sh/ory/model/MetricsDatapoint.java
622-
src/main/java/sh/ory/model/Money.java
623621
src/main/java/sh/ory/model/Namespace.java
624622
src/main/java/sh/ory/model/NeedsPrivilegedSessionError.java
625623
src/main/java/sh/ory/model/NormalizedProject.java
@@ -997,7 +995,6 @@ src/test/java/sh/ory/model/MemberInviteTest.java
997995
src/test/java/sh/ory/model/MessageDispatchTest.java
998996
src/test/java/sh/ory/model/MessageTest.java
999997
src/test/java/sh/ory/model/MetricsDatapointTest.java
1000-
src/test/java/sh/ory/model/MoneyTest.java
1001998
src/test/java/sh/ory/model/NamespaceTest.java
1002999
src/test/java/sh/ory/model/NeedsPrivilegedSessionErrorTest.java
10031000
src/test/java/sh/ory/model/NormalizedProjectRevisionCourierChannelTest.java

api/openapi.yaml

Lines changed: 77 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ info:
3939
url: https://www.apache.org/licenses/LICENSE-2.0.html
4040
termsOfService: /tos
4141
title: Ory APIs
42-
version: v1.22.41
42+
version: v1.22.42
4343
servers:
4444
- url: "https://{project_slug}.projects.oryapis.com/"
4545
variables:
@@ -10827,12 +10827,14 @@ components:
1082710827
- BATCH_IMPORT_ERROR_ALREADY_EXISTS: A key with this identifier already exists
1082810828
- BATCH_IMPORT_ERROR_FAILED_PRECONDITION: State conflict prevents the import
1082910829
- BATCH_IMPORT_ERROR_INTERNAL: Server error during import
10830+
- BATCH_IMPORT_ERROR_RESOURCE_EXHAUSTED: Per-tenant quota cap reached
1083010831
enum:
1083110832
- BATCH_IMPORT_ERROR_UNSPECIFIED
1083210833
- BATCH_IMPORT_ERROR_INVALID_ARGUMENT
1083310834
- BATCH_IMPORT_ERROR_ALREADY_EXISTS
1083410835
- BATCH_IMPORT_ERROR_FAILED_PRECONDITION
1083510836
- BATCH_IMPORT_ERROR_INTERNAL
10837+
- BATCH_IMPORT_ERROR_RESOURCE_EXHAUSTED
1083610838
type: string
1083710839
BatchImportResult:
1083810840
description: BatchImportResult contains the result for one key in a batch import
@@ -11165,8 +11167,18 @@ components:
1116511167

1116611168
If set to `null` or `"0s"`, the graceful refresh token rotation is disabled.
1116711169

11168-
This governs the "oauth2.grant.refresh_token_rotation_grace_period" setting.
11170+
This governs the "oauth2.grant.refresh_token.rotation_grace_period" setting.
1116911171
type: string
11172+
hydra_oauth2_grant_refresh_token_rotation_grace_reuse_count:
11173+
description: |-
11174+
Configures the OAuth2 Grant Refresh Token Rotation Grace Reuse Count.
11175+
11176+
The maximum number of times a refresh token can be reused within the grace period.
11177+
If set to `null` or `0`, the limit is disabled.
11178+
11179+
This governs the "oauth2.grant.refresh_token.rotation_grace_reuse_count" setting.
11180+
format: int64
11181+
type: integer
1117011182
hydra_oauth2_mirror_top_level_claims:
1117111183
description: |-
1117211184
Set to false if you don't want to mirror custom claims under 'ext'.
@@ -11203,6 +11215,23 @@ components:
1120311215

1120411216
This governs the "oauth2.token_hook.url" setting.
1120511217
type: string
11218+
hydra_oauth2_token_prefix:
11219+
description: |-
11220+
Sets a per-project Access Token, Refresh Token, and Authorization Code
11221+
prefix. The literal "%s" is replaced at issuance time with the token kind:
11222+
"at" (access token), "rt" (refresh token), or "ac" (authorization code).
11223+
For example, "acme_%s_" yields "acme_at_…", "acme_rt_…", and "acme_ac_…".
11224+
11225+
Must be a fmt.Sprintf template with exactly one "%s" substitution. The
11226+
rendered prefix may contain only ASCII letters, digits, and underscores —
11227+
no other "%" directives ("%d", "%%", positional or width-flagged verbs),
11228+
no hyphens, dots, slashes, whitespace, quotes, or non-ASCII characters.
11229+
Leave empty to keep the default "ory_%s_" prefix.
11230+
11231+
This is an Enterprise feature.
11232+
11233+
This governs the "oauth2.token_prefix" setting.
11234+
type: string
1120611235
hydra_oidc_dynamic_client_registration_default_scope:
1120711236
description: |-
1120811237
The OpenID Connect Dynamic Client Registration specification has no concept of whitelisting OAuth 2.0 Scope. If you want to expose Dynamic Client Registration, you should set the default scope enabled for newly registered clients. Keep in mind that users can overwrite this default by setting the "scope" key in the registration payload, effectively disabling the concept of whitelisted scopes.
@@ -12934,7 +12963,7 @@ components:
1293412963
GenericUsage:
1293512964
properties:
1293612965
additional_price:
12937-
$ref: '#/components/schemas/Money'
12966+
type: string
1293812967
included_usage:
1293912968
description: IncludedUsage is the number of included items.
1294012969
format: int64
@@ -13552,15 +13581,7 @@ components:
1355213581
type: string
1355313582
type: object
1355413583
Money:
13555-
properties:
13556-
Cents:
13557-
format: int64
13558-
type: integer
13559-
String:
13560-
type: string
13561-
Unit:
13562-
type: string
13563-
type: object
13584+
type: string
1356413585
NormalizedProjectRevisionCourierChannel:
1356513586
properties:
1356613587
channel_id:
@@ -13787,12 +13808,12 @@ components:
1378713808
type: string
1378813809
development_features:
1378913810
additionalProperties:
13790-
$ref: '#/components/schemas/GenericUsage'
13811+
$ref: '#/components/schemas/Usage'
1379113812
title: PlanFeatures are the feature definitions included in the plan.
1379213813
type: object
1379313814
features:
1379413815
additionalProperties:
13795-
$ref: '#/components/schemas/GenericUsage'
13816+
$ref: '#/components/schemas/Usage'
1379613817
title: PlanFeatures are the feature definitions included in the plan.
1379713818
type: object
1379813819
latest:
@@ -13804,12 +13825,12 @@ components:
1380413825
type: string
1380513826
production_features:
1380613827
additionalProperties:
13807-
$ref: '#/components/schemas/GenericUsage'
13828+
$ref: '#/components/schemas/Usage'
1380813829
title: PlanFeatures are the feature definitions included in the plan.
1380913830
type: object
1381013831
staging_features:
1381113832
additionalProperties:
13812-
$ref: '#/components/schemas/GenericUsage'
13833+
$ref: '#/components/schemas/Usage'
1381313834
title: PlanFeatures are the feature definitions included in the plan.
1381413835
type: object
1381513836
version:
@@ -13835,7 +13856,7 @@ components:
1383513856
type: object
1383613857
PlanFeatures:
1383713858
additionalProperties:
13838-
$ref: '#/components/schemas/GenericUsage'
13859+
$ref: '#/components/schemas/Usage'
1383913860
title: PlanFeatures are the feature definitions included in the plan.
1384013861
type: object
1384113862
Pricing:
@@ -14244,10 +14265,11 @@ components:
1424414265
- token
1424514266
type: object
1424614267
Usage:
14247-
properties:
14248-
GenericUsage:
14249-
$ref: '#/components/schemas/GenericUsage'
14250-
type: object
14268+
oneOf:
14269+
- $ref: '#/components/schemas/GenericUsage'
14270+
- type: string
14271+
- type: boolean
14272+
- type: number
1425114273
VerifiableCredentialProof:
1425214274
example:
1425314275
proof_type: proof_type
@@ -19105,8 +19127,18 @@ components:
1910519127

1910619128
If set to `null` or `"0s"`, the graceful refresh token rotation is disabled.
1910719129

19108-
This governs the "oauth2.grant.refresh_token_rotation_grace_period" setting.
19130+
This governs the "oauth2.grant.refresh_token.rotation_grace_period" setting.
1910919131
type: string
19132+
hydra_oauth2_grant_refresh_token_rotation_grace_reuse_count:
19133+
description: |-
19134+
Configures the OAuth2 Grant Refresh Token Rotation Grace Reuse Count.
19135+
19136+
The maximum number of times a refresh token can be reused within the grace period.
19137+
If set to `null` or `0`, the limit is disabled.
19138+
19139+
This governs the "oauth2.grant.refresh_token.rotation_grace_reuse_count" setting.
19140+
format: int64
19141+
type: integer
1911019142
hydra_oauth2_mirror_top_level_claims:
1911119143
description: |-
1911219144
Set to false if you don't want to mirror custom claims under 'ext'.
@@ -19143,6 +19175,23 @@ components:
1914319175

1914419176
This governs the "oauth2.token_hook.url" setting.
1914519177
type: string
19178+
hydra_oauth2_token_prefix:
19179+
description: |-
19180+
Sets a per-project Access Token, Refresh Token, and Authorization Code
19181+
prefix. The literal "%s" is replaced at issuance time with the token kind:
19182+
"at" (access token), "rt" (refresh token), or "ac" (authorization code).
19183+
For example, "acme_%s_" yields "acme_at_…", "acme_rt_…", and "acme_ac_…".
19184+
19185+
Must be a fmt.Sprintf template with exactly one "%s" substitution. The
19186+
rendered prefix may contain only ASCII letters, digits, and underscores —
19187+
no other "%" directives ("%d", "%%", positional or width-flagged verbs),
19188+
no hyphens, dots, slashes, whitespace, quotes, or non-ASCII characters.
19189+
Leave empty to keep the default "ory_%s_" prefix.
19190+
19191+
This is an Enterprise feature.
19192+
19193+
This governs the "oauth2.token_prefix" setting.
19194+
type: string
1914619195
hydra_oidc_dynamic_client_registration_default_scope:
1914719196
description: |-
1914819197
The OpenID Connect Dynamic Client Registration specification has no concept of whitelisting OAuth 2.0 Scope. If you want to expose Dynamic Client Registration, you should set the default scope enabled for newly registered clients. Keep in mind that users can overwrite this default by setting the "scope" key in the registration payload, effectively disabling the concept of whitelisted scopes.
@@ -24343,6 +24392,8 @@ components:
2434324392
default_smtp_email_customization DefaultSMTPEmailCustomization
2434424393
onboarding_portal OnboardingPortal
2434524394
console_organization_sso ConsoleOrganizationSSO
24395+
graceful_refresh_token_count GracefulRefreshTokenCount
24396+
hydra_token_prefix HydraTokenPrefix
2434624397
update_self_service_registration_rate_limit_tier RateLimitTierUpdateSelfServiceRegistration Self-service rate limits
2434724398
update_self_service_recovery_rate_limit_tier RateLimitTierUpdateSelfServiceRecovery
2434824399
update_self_service_settings_rate_limit_tier RateLimitTierUpdateSelfServiceSettings
@@ -24413,6 +24464,8 @@ components:
2441324464
- default_smtp_email_customization
2441424465
- onboarding_portal
2441524466
- console_organization_sso
24467+
- graceful_refresh_token_count
24468+
- hydra_token_prefix
2441624469
- update_self_service_registration_rate_limit_tier
2441724470
- update_self_service_recovery_rate_limit_tier
2441824471
- update_self_service_settings_rate_limit_tier
@@ -24484,6 +24537,8 @@ components:
2448424537
default_smtp_email_customization DefaultSMTPEmailCustomization
2448524538
onboarding_portal OnboardingPortal
2448624539
console_organization_sso ConsoleOrganizationSSO
24540+
graceful_refresh_token_count GracefulRefreshTokenCount
24541+
hydra_token_prefix HydraTokenPrefix
2448724542
update_self_service_registration_rate_limit_tier RateLimitTierUpdateSelfServiceRegistration Self-service rate limits
2448824543
update_self_service_recovery_rate_limit_tier RateLimitTierUpdateSelfServiceRecovery
2448924544
update_self_service_settings_rate_limit_tier RateLimitTierUpdateSelfServiceSettings

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

docs/BatchImportErrorCode.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,7 @@
1515

1616
* `INTERNAL` (value: `"BATCH_IMPORT_ERROR_INTERNAL"`)
1717

18+
* `RESOURCE_EXHAUSTED` (value: `"BATCH_IMPORT_ERROR_RESOURCE_EXHAUSTED"`)
19+
1820

1921

docs/CreateProjectNormalizedPayload.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,15 @@ Create project (normalized) request payload
3131
|**hydraOauth2GrantJwtIatOptional** | **Boolean** | Configures if the issued at (`iat`) claim is required in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523). If set to `false`, the `iat` claim is required. Set this value to `true` only after careful consideration. This governs the \"oauth2.grant.jwt.iat_optional\" setting. | [optional] |
3232
|**hydraOauth2GrantJwtJtiOptional** | **Boolean** | Configures if the JSON Web Token ID (`jti`) claim is required in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523). If set to `false`, the `jti` claim is required. Set this value to `true` only after careful consideration. This governs the \"oauth2.grant.jwt.jti_optional\" setting. | [optional] |
3333
|**hydraOauth2GrantJwtMaxTtl** | **String** | Configures what the maximum age of a JWT assertion used in the JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants (RFC7523) can be. This feature uses the `exp` claim and `iat` claim to calculate assertion age. Assertions exceeding the max age will be denied. Useful as a safety measure and recommended to keep below 720h. This governs the \"oauth2.grant.jwt.max_ttl\" setting. | [optional] |
34-
|**hydraOauth2GrantRefreshTokenRotationGracePeriod** | **String** | Configures the OAuth2 Grant Refresh Token Rotation Grace Period If set to `null` or `\"0s\"`, the graceful refresh token rotation is disabled. This governs the \"oauth2.grant.refresh_token_rotation_grace_period\" setting. | [optional] |
34+
|**hydraOauth2GrantRefreshTokenRotationGracePeriod** | **String** | Configures the OAuth2 Grant Refresh Token Rotation Grace Period If set to `null` or `\"0s\"`, the graceful refresh token rotation is disabled. This governs the \"oauth2.grant.refresh_token.rotation_grace_period\" setting. | [optional] |
35+
|**hydraOauth2GrantRefreshTokenRotationGraceReuseCount** | **Long** | Configures the OAuth2 Grant Refresh Token Rotation Grace Reuse Count. The maximum number of times a refresh token can be reused within the grace period. If set to `null` or `0`, the limit is disabled. This governs the \"oauth2.grant.refresh_token.rotation_grace_reuse_count\" setting. | [optional] |
3536
|**hydraOauth2MirrorTopLevelClaims** | **Boolean** | Set to false if you don't want to mirror custom claims under 'ext'. This governs the \"oauth2.mirror_top_level_claims\" setting. | [optional] |
3637
|**hydraOauth2PkceEnforced** | **Boolean** | Configures whether PKCE should be enforced for all OAuth2 Clients. This governs the \"oauth2.pkce.enforced\" setting. | [optional] |
3738
|**hydraOauth2PkceEnforcedForPublicClients** | **Boolean** | Configures whether PKCE should be enforced for OAuth2 Clients without a client secret (public clients). This governs the \"oauth2.pkce.enforced_for_public_clients\" setting. | [optional] |
3839
|**hydraOauth2PreserveExtClaims** | **Boolean** | Set to true to keep custom claims that are not promoted to the top level in the 'ext' claim. Only applies when mirror_top_level_claims is false. This governs the \"oauth2.preserve_ext_claims\" setting. | [optional] |
3940
|**hydraOauth2RefreshTokenHook** | **String** | Sets the Refresh Token Hook Endpoint. If set this endpoint will be called during the OAuth2 Token Refresh grant update the OAuth2 Access Token claims. This governs the \"oauth2.refresh_token_hook\" setting. | [optional] |
4041
|**hydraOauth2TokenHook** | **String** | Sets the token hook endpoint for all grant types. If set it will be called while providing token to customize claims. This governs the \"oauth2.token_hook.url\" setting. | [optional] |
42+
|**hydraOauth2TokenPrefix** | **String** | Sets a per-project Access Token, Refresh Token, and Authorization Code prefix. The literal \"%s\" is replaced at issuance time with the token kind: \"at\" (access token), \"rt\" (refresh token), or \"ac\" (authorization code). For example, \"acme_%s_\" yields \"acme_at_\", \"acme_rt_\", and \"acme_ac_\". Must be a fmt.Sprintf template with exactly one \"%s\" substitution. The rendered prefix may contain only ASCII letters, digits, and underscores — no other \"%\" directives (\"%d\", \"%%\", positional or width-flagged verbs), no hyphens, dots, slashes, whitespace, quotes, or non-ASCII characters. Leave empty to keep the default \"ory_%s_\" prefix. This is an Enterprise feature. This governs the \"oauth2.token_prefix\" setting. | [optional] |
4143
|**hydraOidcDynamicClientRegistrationDefaultScope** | **List<String>** | The OpenID Connect Dynamic Client Registration specification has no concept of whitelisting OAuth 2.0 Scope. If you want to expose Dynamic Client Registration, you should set the default scope enabled for newly registered clients. Keep in mind that users can overwrite this default by setting the \"scope\" key in the registration payload, effectively disabling the concept of whitelisted scopes. This governs the \"oidc.dynamic_client_registration.default_scope\" setting. | [optional] |
4244
|**hydraOidcDynamicClientRegistrationEnabled** | **Boolean** | Configures OpenID Connect Dynamic Client Registration. This governs the \"oidc.dynamic_client_registration.enabled\" setting. | [optional] |
4345
|**hydraOidcSubjectIdentifiersPairwiseSalt** | **String** | Configures OpenID Connect Discovery and overwrites the pairwise algorithm This governs the \"oidc.subject_identifiers.pairwise_salt\" setting. | [optional] |

docs/GenericUsage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
10-
|**additionalPrice** | [**Money**](Money.md) | | |
10+
|**additionalPrice** | **String** | | |
1111
|**includedUsage** | **Long** | IncludedUsage is the number of included items. | |
1212

1313

docs/Money.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)