4
4
* Ory APIs
5
5
* # Introduction Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
6
6
*
7
- * The version of the OpenAPI document: v1.21.3
7
+ * The version of the OpenAPI document: v1.21.4
8
8
9
9
*
10
10
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -90,6 +90,7 @@ export interface CreateBrowserLoginFlowRequest {
90
90
loginChallenge ?: string ;
91
91
organization ?: string ;
92
92
via ?: string ;
93
+ identitySchema ?: string ;
93
94
}
94
95
95
96
export interface CreateBrowserLogoutFlowRequest {
@@ -106,6 +107,7 @@ export interface CreateBrowserRegistrationFlowRequest {
106
107
loginChallenge ?: string ;
107
108
afterVerificationReturnTo ?: string ;
108
109
organization ?: string ;
110
+ identitySchema ?: string ;
109
111
}
110
112
111
113
export interface CreateBrowserSettingsFlowRequest {
@@ -125,12 +127,14 @@ export interface CreateNativeLoginFlowRequest {
125
127
returnTo ?: string ;
126
128
organization ?: string ;
127
129
via ?: string ;
130
+ identitySchema ?: string ;
128
131
}
129
132
130
133
export interface CreateNativeRegistrationFlowRequest {
131
134
returnSessionTokenExchangeCode ?: boolean ;
132
135
returnTo ?: string ;
133
136
organization ?: string ;
137
+ identitySchema ?: string ;
134
138
}
135
139
136
140
export interface CreateNativeSettingsFlowRequest {
@@ -286,6 +290,10 @@ export class FrontendApi extends runtime.BaseAPI {
286
290
queryParameters [ 'via' ] = requestParameters [ 'via' ] ;
287
291
}
288
292
293
+ if ( requestParameters [ 'identitySchema' ] != null ) {
294
+ queryParameters [ 'identity_schema' ] = requestParameters [ 'identitySchema' ] ;
295
+ }
296
+
289
297
const headerParameters : runtime . HTTPHeaders = { } ;
290
298
291
299
if ( requestParameters [ 'cookie' ] != null ) {
@@ -402,6 +410,10 @@ export class FrontendApi extends runtime.BaseAPI {
402
410
queryParameters [ 'organization' ] = requestParameters [ 'organization' ] ;
403
411
}
404
412
413
+ if ( requestParameters [ 'identitySchema' ] != null ) {
414
+ queryParameters [ 'identity_schema' ] = requestParameters [ 'identitySchema' ] ;
415
+ }
416
+
405
417
const headerParameters : runtime . HTTPHeaders = { } ;
406
418
407
419
const response = await this . request ( {
@@ -550,6 +562,10 @@ export class FrontendApi extends runtime.BaseAPI {
550
562
queryParameters [ 'via' ] = requestParameters [ 'via' ] ;
551
563
}
552
564
565
+ if ( requestParameters [ 'identitySchema' ] != null ) {
566
+ queryParameters [ 'identity_schema' ] = requestParameters [ 'identitySchema' ] ;
567
+ }
568
+
553
569
const headerParameters : runtime . HTTPHeaders = { } ;
554
570
555
571
if ( requestParameters [ 'xSessionToken' ] != null ) {
@@ -622,6 +638,10 @@ export class FrontendApi extends runtime.BaseAPI {
622
638
queryParameters [ 'organization' ] = requestParameters [ 'organization' ] ;
623
639
}
624
640
641
+ if ( requestParameters [ 'identitySchema' ] != null ) {
642
+ queryParameters [ 'identity_schema' ] = requestParameters [ 'identitySchema' ] ;
643
+ }
644
+
625
645
const headerParameters : runtime . HTTPHeaders = { } ;
626
646
627
647
const response = await this . request ( {
0 commit comments