Skip to content

Commit

Permalink
chore: regenerate OpenAPI client v1.13.3
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Jul 8, 2024
1 parent 22409c7 commit 1e85a94
Show file tree
Hide file tree
Showing 4,317 changed files with 27,832 additions and 19,442 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 1 addition & 1 deletion clients/client/dart/.openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.4.0
7.7.0
6 changes: 3 additions & 3 deletions clients/client/dart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ 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.12.2
- Generator version: 7.4.0
- API version: v1.13.3
- Generator version: 7.7.0
- Build package: org.openapitools.codegen.languages.DartDioClientCodegen

## Requirements
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.12.2
ory_client: 1.13.3
```

### Github
Expand Down
2 changes: 1 addition & 1 deletion clients/client/dart/lib/src/auth/basic_auth.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class BasicAuthInterceptor extends AuthInterceptor {
RequestOptions options,
RequestInterceptorHandler handler,
) {
final metadataAuthInfo = getAuthInfo(options, (secure) => (secure['type'] == 'http' && secure['scheme'] == 'basic') || secure['type'] == 'basic');
final metadataAuthInfo = getAuthInfo(options, (secure) => (secure['type'] == 'http' && secure['scheme']?.toLowerCase() == 'basic') || secure['type'] == 'basic');
for (final info in metadataAuthInfo) {
final authName = info['name'] as String;
final basicAuthInfo = authInfo[authName];
Expand Down
2 changes: 1 addition & 1 deletion clients/client/dart/lib/src/auth/bearer_auth.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class BearerAuthInterceptor extends AuthInterceptor {
RequestOptions options,
RequestInterceptorHandler handler,
) {
final authInfo = getAuthInfo(options, (secure) => secure['type'] == 'http' && secure['scheme'] == 'bearer');
final authInfo = getAuthInfo(options, (secure) => secure['type'] == 'http' && secure['scheme']?.toLowerCase() == 'bearer');
for (final info in authInfo) {
final token = tokens[info['name']];
if (token != null) {
Expand Down
2 changes: 1 addition & 1 deletion clients/client/dart/lib/src/model/invoice.dart
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ class InvoiceTypeEnum extends EnumClass {
static const InvoiceTypeEnum usage = _$invoiceTypeEnum_usage;
/// Type is the type of the invoice. usage InvoiceTypeUsage base InvoiceTypeBase
@BuiltValueEnumConst(wireName: r'base')
static const InvoiceTypeEnum base = _$invoiceTypeEnum_base;
static const InvoiceTypeEnum base_ = _$invoiceTypeEnum_base_;

static Serializer<InvoiceTypeEnum> get serializer => _$invoiceTypeEnumSerializer;

Expand Down
13 changes: 7 additions & 6 deletions clients/client/dart/lib/src/model/invoice.g.dart

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

4 changes: 2 additions & 2 deletions clients/client/dart/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: ory_client
version: 1.12.2
version: 1.13.3
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

environment:
sdk: '>=2.15.0 <3.0.0'
sdk: '>=2.15.0 <4.0.0'

dependencies:
dio: '^5.2.0'
Expand Down
2 changes: 1 addition & 1 deletion clients/client/dotnet/.openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.4.0
7.7.0
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", "{ACA45473-AE60-4487-9307-177158E836D1}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ory.Client", "src\Ory.Client\Ory.Client.csproj", "{995FB57C-C21F-4425-A9E7-C663079C8331}"
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
{ACA45473-AE60-4487-9307-177158E836D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{ACA45473-AE60-4487-9307-177158E836D1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{ACA45473-AE60-4487-9307-177158E836D1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{ACA45473-AE60-4487-9307-177158E836D1}.Release|Any CPU.Build.0 = Release|Any CPU
{995FB57C-C21F-4425-A9E7-C663079C8331}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{995FB57C-C21F-4425-A9E7-C663079C8331}.Debug|Any CPU.Build.0 = Debug|Any CPU
{995FB57C-C21F-4425-A9E7-C663079C8331}.Release|Any CPU.ActiveCfg = Release|Any CPU
{995FB57C-C21F-4425-A9E7-C663079C8331}.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
6 changes: 3 additions & 3 deletions clients/client/dotnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ 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.12.2
- SDK version: 1.12.2
- Generator version: 7.4.0
- API version: v1.13.3
- SDK version: 1.13.3
- 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
22 changes: 11 additions & 11 deletions 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.12.2
version: v1.13.3
servers:
- url: "https://{project-slug}.projects.oryapis.com/"
variables:
Expand Down Expand Up @@ -12303,7 +12303,7 @@ components:

Once a login flow is completed successfully, a session cookie or session token will be issued.
example:
requested_aal: null
requested_aal: aal0
active: password
created_at: 2000-01-23T04:56:07.000+00:00
refresh: true
Expand Down Expand Up @@ -12809,8 +12809,8 @@ components:
template_type: recovery_invalid
id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
body: body
type: null
status: null
type: email
status: queued
properties:
body:
type: string
Expand Down Expand Up @@ -18124,12 +18124,12 @@ components:
method: link_recovery
provider: provider
organization: organization
aal: null
aal: aal0
- completed_at: 2000-01-23T04:56:07.000+00:00
method: link_recovery
provider: provider
organization: organization
aal: null
aal: aal0
authenticator_assurance_level: null
identity:
traits: ""
Expand Down Expand Up @@ -18248,7 +18248,7 @@ components:
method: link_recovery
provider: provider
organization: organization
aal: null
aal: aal0
properties:
aal:
$ref: '#/components/schemas/authenticatorAssuranceLevel'
Expand Down Expand Up @@ -18796,12 +18796,12 @@ components:
method: link_recovery
provider: provider
organization: organization
aal: null
aal: aal0
- completed_at: 2000-01-23T04:56:07.000+00:00
method: link_recovery
provider: provider
organization: organization
aal: null
aal: aal0
authenticator_assurance_level: null
identity:
traits: ""
Expand Down Expand Up @@ -18965,12 +18965,12 @@ components:
method: link_recovery
provider: provider
organization: organization
aal: null
aal: aal0
- completed_at: 2000-01-23T04:56:07.000+00:00
method: link_recovery
provider: provider
organization: organization
aal: null
aal: aal0
authenticator_assurance_level: null
identity:
traits: ""
Expand Down
4 changes: 2 additions & 2 deletions clients/client/dotnet/docs/ClientCreateRelationshipBody.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Create Relationship Request Body

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**VarNamespace** | **string** | Namespace to query | [optional]
**VarObject** | **string** | Object to query | [optional]
**Namespace** | **string** | Namespace to query | [optional]
**Object** | **string** | Object to query | [optional]
**Relation** | **string** | Relation to query | [optional]
**SubjectId** | **string** | SubjectID to query Either SubjectSet or SubjectID can be provided. | [optional]
**SubjectSet** | [**ClientSubjectSet**](ClientSubjectSet.md) | | [optional]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Is Owner For Project By Slug Request Body

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**VarNamespace** | **string** | Namespace is the namespace of the subject. |
**Namespace** | **string** | Namespace is the namespace of the subject. |
**ProjectScope** | **string** | ProjectScope is the project_id resolved from the API Token. | [optional]
**ProjectSlug** | **string** | ProjectSlug is the project&#39;s slug. |
**Subject** | **string** | Subject is the subject acting (user or API key). |
Expand Down
2 changes: 1 addition & 1 deletion clients/client/dotnet/docs/ClientMoney.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Cents** | **long** | | [optional]
**VarString** | **string** | | [optional]
**String** | **string** | | [optional]
**Unit** | **string** | | [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
4 changes: 2 additions & 2 deletions clients/client/dotnet/docs/ClientPostCheckPermissionBody.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Check Permission using Post Request Body

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**VarNamespace** | **string** | Namespace to query | [optional]
**VarObject** | **string** | Object to query | [optional]
**Namespace** | **string** | Namespace to query | [optional]
**Object** | **string** | Object to query | [optional]
**Relation** | **string** | Relation to query | [optional]
**SubjectId** | **string** | SubjectID to query Either SubjectSet or SubjectID can be provided. | [optional]
**SubjectSet** | [**ClientSubjectSet**](ClientSubjectSet.md) | | [optional]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Post Check Permission Or Error Body

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**VarNamespace** | **string** | Namespace to query | [optional]
**VarObject** | **string** | Object to query | [optional]
**Namespace** | **string** | Namespace to query | [optional]
**Object** | **string** | Object to query | [optional]
**Relation** | **string** | Relation to query | [optional]
**SubjectId** | **string** | SubjectID to query Either SubjectSet or SubjectID can be provided. | [optional]
**SubjectSet** | [**ClientSubjectSet**](ClientSubjectSet.md) | | [optional]
Expand Down
4 changes: 2 additions & 2 deletions clients/client/dotnet/docs/ClientRelationQuery.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Relation Query

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**VarNamespace** | **string** | Namespace to query | [optional]
**VarObject** | **string** | Object to query | [optional]
**Namespace** | **string** | Namespace to query | [optional]
**Object** | **string** | Object to query | [optional]
**Relation** | **string** | Relation to query | [optional]
**SubjectId** | **string** | SubjectID to query Either SubjectSet or SubjectID can be provided. | [optional]
**SubjectSet** | [**ClientSubjectSet**](ClientSubjectSet.md) | | [optional]
Expand Down
4 changes: 2 additions & 2 deletions clients/client/dotnet/docs/ClientRelationship.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Relationship

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**VarNamespace** | **string** | Namespace of the Relation Tuple |
**VarObject** | **string** | Object of the Relation Tuple |
**Namespace** | **string** | Namespace of the Relation Tuple |
**Object** | **string** | Object of the Relation Tuple |
**Relation** | **string** | Relation of the Relation Tuple |
**SubjectId** | **string** | SubjectID of the Relation Tuple Either SubjectSet or SubjectID can be provided. | [optional]
**SubjectSet** | [**ClientSubjectSet**](ClientSubjectSet.md) | | [optional]
Expand Down
4 changes: 2 additions & 2 deletions clients/client/dotnet/docs/ClientSubjectSet.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**VarNamespace** | **string** | Namespace of the Subject Set |
**VarObject** | **string** | Object of the Subject Set |
**Namespace** | **string** | Namespace of the Subject Set |
**Object** | **string** | Object of the Subject Set |
**Relation** | **string** | Relation of the Subject Set |

[[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 @@ -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.12.2
* The version of the OpenAPI document: v1.13.3
* Contact: support@ory.sh
* 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.12.2
* The version of the OpenAPI document: v1.13.3
* Contact: support@ory.sh
* 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.12.2
* The version of the OpenAPI document: v1.13.3
* Contact: support@ory.sh
* 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.12.2
* The version of the OpenAPI document: v1.13.3
* Contact: support@ory.sh
* 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.12.2
* The version of the OpenAPI document: v1.13.3
* Contact: support@ory.sh
* 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.12.2
* The version of the OpenAPI document: v1.13.3
* Contact: support@ory.sh
* 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.12.2
* The version of the OpenAPI document: v1.13.3
* Contact: support@ory.sh
* 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.12.2
* The version of the OpenAPI document: v1.13.3
* Contact: support@ory.sh
* 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.12.2
* The version of the OpenAPI document: v1.13.3
* Contact: support@ory.sh
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
Expand Down
Loading

0 comments on commit 1e85a94

Please sign in to comment.