Skip to content

Commit 7381e24

Browse files
committed
autogen: regenerate OpenAPI client for v1.22.36
Version: v1.22.36
1 parent dbfdd88 commit 7381e24

679 files changed

Lines changed: 1631 additions & 994 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: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,7 @@ docs/UiNodeAttributes.md
273273
docs/UiNodeDivisionAttributes.md
274274
docs/UiNodeImageAttributes.md
275275
docs/UiNodeInputAttributes.md
276+
docs/UiNodeInputAttributesOption.md
276277
docs/UiNodeMeta.md
277278
docs/UiNodeScriptAttributes.md
278279
docs/UiNodeTextAttributes.md
@@ -630,6 +631,7 @@ src/main/java/sh/ory/model/UiNodeAttributes.java
630631
src/main/java/sh/ory/model/UiNodeDivisionAttributes.java
631632
src/main/java/sh/ory/model/UiNodeImageAttributes.java
632633
src/main/java/sh/ory/model/UiNodeInputAttributes.java
634+
src/main/java/sh/ory/model/UiNodeInputAttributesOption.java
633635
src/main/java/sh/ory/model/UiNodeMeta.java
634636
src/main/java/sh/ory/model/UiNodeScriptAttributes.java
635637
src/main/java/sh/ory/model/UiNodeTextAttributes.java
@@ -952,6 +954,7 @@ src/test/java/sh/ory/model/UiNodeAnchorAttributesTest.java
952954
src/test/java/sh/ory/model/UiNodeAttributesTest.java
953955
src/test/java/sh/ory/model/UiNodeDivisionAttributesTest.java
954956
src/test/java/sh/ory/model/UiNodeImageAttributesTest.java
957+
src/test/java/sh/ory/model/UiNodeInputAttributesOptionTest.java
955958
src/test/java/sh/ory/model/UiNodeInputAttributesTest.java
956959
src/test/java/sh/ory/model/UiNodeMetaTest.java
957960
src/test/java/sh/ory/model/UiNodeScriptAttributesTest.java

api/openapi.yaml

Lines changed: 150 additions & 3 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.35
42+
version: v1.22.36
4343
servers:
4444
- url: "https://{project_slug}.projects.oryapis.com/"
4545
variables:
@@ -11357,7 +11357,19 @@ components:
1135711357
- invitee_email
1135811358
- role
1135911359
type: object
11360-
DefaultError: {}
11360+
DefaultError:
11361+
description: |-
11362+
From https://go.dev/wiki/CodeReviewComments#receiver-type:
11363+
> Can function or methods, either concurrently or when called from this method, be mutating the receiver? A value type creates a copy of the receiver when the method is invoked, so outside updates will not be applied to this receiver. If changes must be visible in the original receiver, the receiver must be a pointer.
11364+
> If the receiver is a struct, array or slice and any of its elements is a pointer to something that might be mutating,
11365+
> prefer a pointer receiver, as it will make the intention clearer to the reader.
11366+
> Don’t mix receiver types. Choose either pointers or struct types for all available methods.
11367+
title: |-
11368+
DefaultError is not safe to shallow copy because it contains
11369+
fields which are not value types, e.g. maps.
11370+
A shallow copy would inadvertently share these underlying fields,
11371+
leading to incorrect behavior and data races in a concurrent context.
11372+
Consequently, all methods take the type by pointer and not by value.
1136111373
DeviceUserAuthRequest:
1136211374
properties:
1136311375
challenge:
@@ -14240,7 +14252,19 @@ components:
1424014252
x-go-enum-desc: |-
1424114253
create ActionCreate Create this identity.
1424214254
error ActionError Error indicates that the patch failed.
14243-
error: {}
14255+
error:
14256+
description: |-
14257+
From https://go.dev/wiki/CodeReviewComments#receiver-type:
14258+
> Can function or methods, either concurrently or when called from this method, be mutating the receiver? A value type creates a copy of the receiver when the method is invoked, so outside updates will not be applied to this receiver. If changes must be visible in the original receiver, the receiver must be a pointer.
14259+
> If the receiver is a struct, array or slice and any of its elements is a pointer to something that might be mutating,
14260+
> prefer a pointer receiver, as it will make the intention clearer to the reader.
14261+
> Don’t mix receiver types. Choose either pointers or struct types for all available methods.
14262+
title: |-
14263+
DefaultError is not safe to shallow copy because it contains
14264+
fields which are not value types, e.g. maps.
14265+
A shallow copy would inadvertently share these underlying fields,
14266+
leading to incorrect behavior and data races in a concurrent context.
14267+
Consequently, all methods take the type by pointer and not by value.
1424414268
identity:
1424514269
description: The identity ID payload of this patch
1424614270
format: uuid
@@ -15297,6 +15321,9 @@ components:
1529715321
node_type: input
1529815322
onloadTrigger: oryWebAuthnRegistration
1529915323
name: name
15324+
options:
15325+
- value: ""
15326+
- value: ""
1530015327
disabled: true
1530115328
value: ""
1530215329
type: text
@@ -15333,6 +15360,9 @@ components:
1533315360
node_type: input
1533415361
onloadTrigger: oryWebAuthnRegistration
1533515362
name: name
15363+
options:
15364+
- value: ""
15365+
- value: ""
1533615366
disabled: true
1533715367
value: ""
1533815368
type: text
@@ -21297,6 +21327,24 @@ components:
2129721327
oauth2_introspect_rate_limit_tier RateLimitTierOAuth2Introspect
2129821328
create_recovery_admin_rate_limit_tier RateLimitTierCreateAdminRecovery
2129921329
scim_rate_limit_tier RateLimitTierSCIM
21330+
hydra_admin_high_rate_limit_tier RateLimitTierHydraAdminHigh Bucket-specific rate limit tiers
21331+
hydra_admin_medium_rate_limit_tier RateLimitTierHydraAdminMedium
21332+
hydra_admin_low_rate_limit_tier RateLimitTierHydraAdminLow
21333+
hydra_public_high_rate_limit_tier RateLimitTierHydraPublicHigh
21334+
hydra_public_medium_rate_limit_tier RateLimitTierHydraPublicMedium
21335+
hydra_public_low_rate_limit_tier RateLimitTierHydraPublicLow
21336+
keto_admin_low_rate_limit_tier RateLimitTierKetoAdminLow
21337+
keto_admin_medium_rate_limit_tier RateLimitTierKetoAdminMedium
21338+
keto_public_high_rate_limit_tier RateLimitTierKetoPublicHigh
21339+
kratos_admin_high_rate_limit_tier RateLimitTierKratosAdminHigh
21340+
kratos_admin_medium_rate_limit_tier RateLimitTierKratosAdminMedium
21341+
kratos_admin_low_rate_limit_tier RateLimitTierKratosAdminLow
21342+
kratos_public_high_rate_limit_tier RateLimitTierKratosPublicHigh
21343+
kratos_public_medium_rate_limit_tier RateLimitTierKratosPublicMedium
21344+
kratos_public_low_rate_limit_tier RateLimitTierKratosPublicLow
21345+
polis_public_high_rate_limit_tier RateLimitTierPolisPublicHigh
21346+
polis_public_medium_rate_limit_tier RateLimitTierPolisPublicMedium
21347+
unassigned_rate_limit_tier RateLimitTierUnassigned
2130021348
enum:
2130121349
- production_projects
2130221350
- staging_projects
@@ -21348,6 +21396,24 @@ components:
2134821396
- oauth2_introspect_rate_limit_tier
2134921397
- create_recovery_admin_rate_limit_tier
2135021398
- scim_rate_limit_tier
21399+
- hydra_admin_high_rate_limit_tier
21400+
- hydra_admin_medium_rate_limit_tier
21401+
- hydra_admin_low_rate_limit_tier
21402+
- hydra_public_high_rate_limit_tier
21403+
- hydra_public_medium_rate_limit_tier
21404+
- hydra_public_low_rate_limit_tier
21405+
- keto_admin_low_rate_limit_tier
21406+
- keto_admin_medium_rate_limit_tier
21407+
- keto_public_high_rate_limit_tier
21408+
- kratos_admin_high_rate_limit_tier
21409+
- kratos_admin_medium_rate_limit_tier
21410+
- kratos_admin_low_rate_limit_tier
21411+
- kratos_public_high_rate_limit_tier
21412+
- kratos_public_medium_rate_limit_tier
21413+
- kratos_public_low_rate_limit_tier
21414+
- polis_public_high_rate_limit_tier
21415+
- polis_public_medium_rate_limit_tier
21416+
- unassigned_rate_limit_tier
2135121417
type: string
2135221418
x-go-enum-desc: |-
2135321419
production_projects ProductionProjects
@@ -21400,6 +21466,24 @@ components:
2140021466
oauth2_introspect_rate_limit_tier RateLimitTierOAuth2Introspect
2140121467
create_recovery_admin_rate_limit_tier RateLimitTierCreateAdminRecovery
2140221468
scim_rate_limit_tier RateLimitTierSCIM
21469+
hydra_admin_high_rate_limit_tier RateLimitTierHydraAdminHigh Bucket-specific rate limit tiers
21470+
hydra_admin_medium_rate_limit_tier RateLimitTierHydraAdminMedium
21471+
hydra_admin_low_rate_limit_tier RateLimitTierHydraAdminLow
21472+
hydra_public_high_rate_limit_tier RateLimitTierHydraPublicHigh
21473+
hydra_public_medium_rate_limit_tier RateLimitTierHydraPublicMedium
21474+
hydra_public_low_rate_limit_tier RateLimitTierHydraPublicLow
21475+
keto_admin_low_rate_limit_tier RateLimitTierKetoAdminLow
21476+
keto_admin_medium_rate_limit_tier RateLimitTierKetoAdminMedium
21477+
keto_public_high_rate_limit_tier RateLimitTierKetoPublicHigh
21478+
kratos_admin_high_rate_limit_tier RateLimitTierKratosAdminHigh
21479+
kratos_admin_medium_rate_limit_tier RateLimitTierKratosAdminMedium
21480+
kratos_admin_low_rate_limit_tier RateLimitTierKratosAdminLow
21481+
kratos_public_high_rate_limit_tier RateLimitTierKratosPublicHigh
21482+
kratos_public_medium_rate_limit_tier RateLimitTierKratosPublicMedium
21483+
kratos_public_low_rate_limit_tier RateLimitTierKratosPublicLow
21484+
polis_public_high_rate_limit_tier RateLimitTierPolisPublicHigh
21485+
polis_public_medium_rate_limit_tier RateLimitTierPolisPublicMedium
21486+
unassigned_rate_limit_tier RateLimitTierUnassigned
2140321487
feature_available:
2140421488
type: boolean
2140521489
included:
@@ -21489,6 +21573,9 @@ components:
2148921573
node_type: input
2149021574
onloadTrigger: oryWebAuthnRegistration
2149121575
name: name
21576+
options:
21577+
- value: ""
21578+
- value: ""
2149221579
disabled: true
2149321580
value: ""
2149421581
type: text
@@ -21525,6 +21612,9 @@ components:
2152521612
node_type: input
2152621613
onloadTrigger: oryWebAuthnRegistration
2152721614
name: name
21615+
options:
21616+
- value: ""
21617+
- value: ""
2152821618
disabled: true
2152921619
value: ""
2153021620
type: text
@@ -21853,6 +21943,9 @@ components:
2185321943
node_type: input
2185421944
onloadTrigger: oryWebAuthnRegistration
2185521945
name: name
21946+
options:
21947+
- value: ""
21948+
- value: ""
2185621949
disabled: true
2185721950
value: ""
2185821951
type: text
@@ -21889,6 +21982,9 @@ components:
2188921982
node_type: input
2189021983
onloadTrigger: oryWebAuthnRegistration
2189121984
name: name
21985+
options:
21986+
- value: ""
21987+
- value: ""
2189221988
disabled: true
2189321989
value: ""
2189421990
type: text
@@ -22601,6 +22697,9 @@ components:
2260122697
node_type: input
2260222698
onloadTrigger: oryWebAuthnRegistration
2260322699
name: name
22700+
options:
22701+
- value: ""
22702+
- value: ""
2260422703
disabled: true
2260522704
value: ""
2260622705
type: text
@@ -22637,6 +22736,9 @@ components:
2263722736
node_type: input
2263822737
onloadTrigger: oryWebAuthnRegistration
2263922738
name: name
22739+
options:
22740+
- value: ""
22741+
- value: ""
2264022742
disabled: true
2264122743
value: ""
2264222744
type: text
@@ -23554,6 +23656,9 @@ components:
2355423656
node_type: input
2355523657
onloadTrigger: oryWebAuthnRegistration
2355623658
name: name
23659+
options:
23660+
- value: ""
23661+
- value: ""
2355723662
disabled: true
2355823663
value: ""
2355923664
type: text
@@ -23590,6 +23695,9 @@ components:
2359023695
node_type: input
2359123696
onloadTrigger: oryWebAuthnRegistration
2359223697
name: name
23698+
options:
23699+
- value: ""
23700+
- value: ""
2359323701
disabled: true
2359423702
value: ""
2359523703
type: text
@@ -23663,6 +23771,9 @@ components:
2366323771
node_type: input
2366423772
onloadTrigger: oryWebAuthnRegistration
2366523773
name: name
23774+
options:
23775+
- value: ""
23776+
- value: ""
2366623777
disabled: true
2366723778
value: ""
2366823779
type: text
@@ -23921,6 +24032,9 @@ components:
2392124032
node_type: input
2392224033
onloadTrigger: oryWebAuthnRegistration
2392324034
name: name
24035+
options:
24036+
- value: ""
24037+
- value: ""
2392424038
disabled: true
2392524039
value: ""
2392624040
properties:
@@ -24049,6 +24163,16 @@ components:
2404924163
oryPasskeyLoginAutocompleteInit WebAuthnTriggersPasskeyLoginAutocompleteInit
2405024164
oryPasskeyRegistration WebAuthnTriggersPasskeyRegistration
2405124165
oryPasskeySettingsRegistration WebAuthnTriggersPasskeySettingsRegistration
24166+
options:
24167+
description: |-
24168+
The allowed values for the input when the underlying JSON schema
24169+
defines an `enum`. When present, clients should render the field as a
24170+
select/dropdown rather than a free-form text input. When absent,
24171+
clients continue to render a plain text input, so this field is
24172+
backward compatible with UIs that do not look at it.
24173+
items:
24174+
$ref: '#/components/schemas/uiNodeInputAttributesOption'
24175+
type: array
2405224176
pattern:
2405324177
description: The input's pattern.
2405424178
type: string
@@ -24106,6 +24230,23 @@ components:
2410624230
- node_type
2410724231
- type
2410824232
type: object
24233+
uiNodeInputAttributesOption:
24234+
description: |-
24235+
Represents a single selectable value for an input whose JSON schema
24236+
defined an `enum`. The value is always a scalar JSON type (string, number,
24237+
or boolean) serialized verbatim from the schema. When present, clients
24238+
should render the parent input as a select/dropdown.
24239+
example:
24240+
value: ""
24241+
properties:
24242+
value:
24243+
description: |-
24244+
The value that will be submitted when this option is picked.
24245+
It is serialized verbatim from the JSON schema `enum` entry, so it is
24246+
always a scalar JSON value (string, number, or boolean).
24247+
required:
24248+
- value
24249+
type: object
2410924250
uiNodeMeta:
2411024251
description: |-
2411124252
This might include a label and other information that can optionally
@@ -25556,6 +25697,9 @@ components:
2555625697
node_type: input
2555725698
onloadTrigger: oryWebAuthnRegistration
2555825699
name: name
25700+
options:
25701+
- value: ""
25702+
- value: ""
2555925703
disabled: true
2556025704
value: ""
2556125705
type: text
@@ -25592,6 +25736,9 @@ components:
2559225736
node_type: input
2559325737
onloadTrigger: oryWebAuthnRegistration
2559425738
name: name
25739+
options:
25740+
- value: ""
25741+
- value: ""
2559525742
disabled: true
2559625743
value: ""
2559725744
type: text

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

docs/IdentityPatchResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Response for a single identity patch
99
| Name | Type | Description | Notes |
1010
|------------ | ------------- | ------------- | -------------|
1111
|**action** | [**ActionEnum**](#ActionEnum) | The action for this specific patch create ActionCreate Create this identity. error ActionError Error indicates that the patch failed. | [optional] |
12-
|**error** | **Object** | | [optional] |
12+
|**error** | **Object** | From https://go.dev/wiki/CodeReviewComments#receiver-type: > Can function or methods, either concurrently or when called from this method, be mutating the receiver? A value type creates a copy of the receiver when the method is invoked, so outside updates will not be applied to this receiver. If changes must be visible in the original receiver, the receiver must be a pointer. > If the receiver is a struct, array or slice and any of its elements is a pointer to something that might be mutating, > prefer a pointer receiver, as it will make the intention clearer to the reader. > Don’t mix receiver types. Choose either pointers or struct types for all available methods. | [optional] |
1313
|**identity** | **String** | The identity ID payload of this patch | [optional] |
1414
|**patchId** | **String** | The ID of this patch response, if an ID was specified in the patch. | [optional] |
1515

0 commit comments

Comments
 (0)