Skip to content

Commit

Permalink
chore: regenerate OpenAPI client v1.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Jul 17, 2024
1 parent 234203f commit 021d12c
Show file tree
Hide file tree
Showing 3,727 changed files with 4,305 additions and 23,922 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
4 changes: 2 additions & 2 deletions clients/client/dart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ with a valid Personal Access Token. Public APIs are mostly used in browsers.

This Dart package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: v1.14.0
- API version: v1.14.1
- Generator version: 7.7.0
- Build package: org.openapitools.codegen.languages.DartDioClientCodegen

Expand All @@ -20,7 +20,7 @@ This Dart package is automatically generated by the [OpenAPI Generator](https://
To use the package from [pub.dev](https://pub.dev), please include the following in pubspec.yaml
```yaml
dependencies:
ory_client: 1.14.0
ory_client: 1.14.1
```
### Github
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**hashedPassword** | **String** | The hashed password in [PHC format](https://www.ory.sh/docs/kratos/manage-identities/import-user-accounts-identities#hashed-passwords) | [optional]
**password** | **String** | The password in plain text if no hash is available. | [optional]
**usePasswordMigrationHook** | **bool** | If set to true, the password will be migrated using the password migration hook. | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ part 'identity_with_credentials_password_config.g.dart';
/// Properties:
/// * [hashedPassword] - The hashed password in [PHC format](https://www.ory.sh/docs/kratos/manage-identities/import-user-accounts-identities#hashed-passwords)
/// * [password] - The password in plain text if no hash is available.
/// * [usePasswordMigrationHook] - If set to true, the password will be migrated using the password migration hook.
@BuiltValue()
abstract class IdentityWithCredentialsPasswordConfig implements Built<IdentityWithCredentialsPasswordConfig, IdentityWithCredentialsPasswordConfigBuilder> {
/// The hashed password in [PHC format](https://www.ory.sh/docs/kratos/manage-identities/import-user-accounts-identities#hashed-passwords)
Expand All @@ -23,6 +24,10 @@ abstract class IdentityWithCredentialsPasswordConfig implements Built<IdentityWi
@BuiltValueField(wireName: r'password')
String? get password;

/// If set to true, the password will be migrated using the password migration hook.
@BuiltValueField(wireName: r'use_password_migration_hook')
bool? get usePasswordMigrationHook;

IdentityWithCredentialsPasswordConfig._();

factory IdentityWithCredentialsPasswordConfig([void updates(IdentityWithCredentialsPasswordConfigBuilder b)]) = _$IdentityWithCredentialsPasswordConfig;
Expand Down Expand Up @@ -60,6 +65,13 @@ class _$IdentityWithCredentialsPasswordConfigSerializer implements PrimitiveSeri
specifiedType: const FullType(String),
);
}
if (object.usePasswordMigrationHook != null) {
yield r'use_password_migration_hook';
yield serializers.serialize(
object.usePasswordMigrationHook,
specifiedType: const FullType(bool),
);
}
}

@override
Expand Down Expand Up @@ -97,6 +109,13 @@ class _$IdentityWithCredentialsPasswordConfigSerializer implements PrimitiveSeri
) as String;
result.password = valueDes;
break;
case r'use_password_migration_hook':
final valueDes = serializers.deserialize(
value,
specifiedType: const FullType(bool),
) as bool;
result.usePasswordMigrationHook = valueDes;
break;
default:
unhandled.add(key);
unhandled.add(value);
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion clients/client/dart/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: ory_client
version: 1.14.0
version: 1.14.1
description: OpenAPI API client for Ory Network, Ory&#39;s web-scale API for identity and access control.
homepage: https://www.ory.sh
repository: https://github.com/ory/sdk/tree/master/clients/client/dart
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,11 @@ void main() {
// TODO
});

// If set to true, the password will be migrated using the password migration hook.
// bool usePasswordMigrationHook
test('to test the property `usePasswordMigrationHook`', () async {
// TODO
});

});
}
10 changes: 5 additions & 5 deletions clients/client/dotnet/Ory.Client.sln
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
VisualStudioVersion = 12.0.0.0
MinimumVisualStudioVersion = 10.0.0.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ory.Client", "src\Ory.Client\Ory.Client.csproj", "{2435D0F1-244A-48B2-8648-2A8491FEE4B4}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ory.Client", "src\Ory.Client\Ory.Client.csproj", "{E26B7274-25B2-4092-A457-A3F68F30FAD5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ory.Client.Test", "src\Ory.Client.Test\Ory.Client.Test.csproj", "{19F1DEBC-DE5E-4517-8062-F000CD499087}"
EndProject
Expand All @@ -12,10 +12,10 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{2435D0F1-244A-48B2-8648-2A8491FEE4B4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2435D0F1-244A-48B2-8648-2A8491FEE4B4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2435D0F1-244A-48B2-8648-2A8491FEE4B4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2435D0F1-244A-48B2-8648-2A8491FEE4B4}.Release|Any CPU.Build.0 = Release|Any CPU
{E26B7274-25B2-4092-A457-A3F68F30FAD5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E26B7274-25B2-4092-A457-A3F68F30FAD5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E26B7274-25B2-4092-A457-A3F68F30FAD5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E26B7274-25B2-4092-A457-A3F68F30FAD5}.Release|Any CPU.Build.0 = Release|Any CPU
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.Build.0 = Debug|Any CPU
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down
4 changes: 2 additions & 2 deletions clients/client/dotnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ with a valid Personal Access Token. Public APIs are mostly used in browsers.

This C# SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: v1.14.0
- SDK version: 1.14.0
- API version: v1.14.1
- SDK version: 1.14.1
- Generator version: 7.7.0
- Build package: org.openapitools.codegen.languages.CSharpClientCodegen
For more information, please visit [https://www.ory.sh](https://www.ory.sh)
Expand Down
6 changes: 5 additions & 1 deletion clients/client/dotnet/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ info:
url: https://www.apache.org/licenses/LICENSE-2.0.html
termsOfService: /ptos
title: Ory APIs
version: v1.14.0
version: v1.14.1
servers:
- url: "https://{project-slug}.projects.oryapis.com/"
variables:
Expand Down Expand Up @@ -11922,6 +11922,10 @@ components:
password:
description: The password in plain text if no hash is available.
type: string
use_password_migration_hook:
description: "If set to true, the password will be migrated using the password\
\ migration hook."
type: boolean
type: object
internalGetProjectBrandingBody:
description: Get Project Branding Request Body
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**HashedPassword** | **string** | The hashed password in [PHC format](https://www.ory.sh/docs/kratos/manage-identities/import-user-accounts-identities#hashed-passwords) | [optional]
**Password** | **string** | The password in plain text if no hash is available. | [optional]
**UsePasswordMigrationHook** | **bool** | If set to true, the password will be migrated using the password migration hook. | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* 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.
*
* The version of the OpenAPI document: v1.14.0
* The version of the OpenAPI document: v1.14.1
* Contact: [email protected]
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* 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.
*
* The version of the OpenAPI document: v1.14.0
* The version of the OpenAPI document: v1.14.1
* Contact: [email protected]
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* 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.
*
* The version of the OpenAPI document: v1.14.0
* The version of the OpenAPI document: v1.14.1
* Contact: [email protected]
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* 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.
*
* The version of the OpenAPI document: v1.14.0
* The version of the OpenAPI document: v1.14.1
* Contact: [email protected]
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* 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.
*
* The version of the OpenAPI document: v1.14.0
* The version of the OpenAPI document: v1.14.1
* Contact: [email protected]
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* 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.
*
* The version of the OpenAPI document: v1.14.0
* The version of the OpenAPI document: v1.14.1
* Contact: [email protected]
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* 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.
*
* The version of the OpenAPI document: v1.14.0
* The version of the OpenAPI document: v1.14.1
* Contact: [email protected]
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* 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.
*
* The version of the OpenAPI document: v1.14.0
* The version of the OpenAPI document: v1.14.1
* Contact: [email protected]
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* 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.
*
* The version of the OpenAPI document: v1.14.0
* The version of the OpenAPI document: v1.14.1
* Contact: [email protected]
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* 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.
*
* The version of the OpenAPI document: v1.14.0
* The version of the OpenAPI document: v1.14.1
* Contact: [email protected]
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* 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.
*
* The version of the OpenAPI document: v1.14.0
* The version of the OpenAPI document: v1.14.1
* Contact: [email protected]
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* 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.
*
* The version of the OpenAPI document: v1.14.0
* The version of the OpenAPI document: v1.14.1
* Contact: [email protected]
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* 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.
*
* The version of the OpenAPI document: v1.14.0
* The version of the OpenAPI document: v1.14.1
* Contact: [email protected]
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* 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.
*
* The version of the OpenAPI document: v1.14.0
* The version of the OpenAPI document: v1.14.1
* Contact: [email protected]
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* 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.
*
* The version of the OpenAPI document: v1.14.0
* The version of the OpenAPI document: v1.14.1
* Contact: [email protected]
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* 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.
*
* The version of the OpenAPI document: v1.14.0
* The version of the OpenAPI document: v1.14.1
* Contact: [email protected]
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* 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.
*
* The version of the OpenAPI document: v1.14.0
* The version of the OpenAPI document: v1.14.1
* Contact: [email protected]
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* 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.
*
* The version of the OpenAPI document: v1.14.0
* The version of the OpenAPI document: v1.14.1
* Contact: [email protected]
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
Expand Down
Loading

0 comments on commit 021d12c

Please sign in to comment.