Skip to content

Commit

Permalink
chore: regenerate OpenAPI client v1.1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Mar 21, 2023
1 parent cae6b0c commit d6b1e10
Show file tree
Hide file tree
Showing 2,548 changed files with 2,894 additions and 17,236 deletions.
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.1.22
- API version: v1.1.23
- Build package: org.openapitools.codegen.languages.DartDioClientCodegen

## Requirements
Expand All @@ -19,7 +19,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.1.22
ory_client: 1.1.23
```
### Github
Expand Down
6 changes: 3 additions & 3 deletions clients/client/dart/doc/JsonPatch.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import 'package:ory_client/api.dart';
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**from** | **String** | This field is used together with operation \"move\" and uses JSON Pointer notation. Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5). | [optional]
**op** | **String** | The operation to be performed. One of \"add\", \"remove\", \"replace\", \"move\", \"copy\", or \"test\". |
**path** | **String** | The path to the target path. Uses JSON pointer notation. Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5). |
**value** | [**JsonObject**](.md) | The value to be used within the operations. Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5). | [optional]
**op** | **String** | The JSON Patch operation |
**path** | **String** | The JSON Pointer to the target key |
**value** | [**JsonObject**](.md) | The value to be used. Only available for `add` and `replace` operations. | [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
26 changes: 13 additions & 13 deletions clients/client/dart/lib/src/model/json_patch.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,29 @@ import 'package:built_value/serializer.dart';

part 'json_patch.g.dart';

/// A JSONPatch document as defined by RFC 6902
/// JSON Patch allows you to target individual keys in a JSON document for updates. For more examples see: https://jsonpatch.com
///
/// Properties:
/// * [from] - This field is used together with operation \"move\" and uses JSON Pointer notation. Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5).
/// * [op] - The operation to be performed. One of \"add\", \"remove\", \"replace\", \"move\", \"copy\", or \"test\".
/// * [path] - The path to the target path. Uses JSON pointer notation. Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5).
/// * [value] - The value to be used within the operations. Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5).
/// * [op] - The JSON Patch operation
/// * [path] - The JSON Pointer to the target key
/// * [value] - The value to be used. Only available for `add` and `replace` operations.
@BuiltValue()
abstract class JsonPatch implements Built<JsonPatch, JsonPatchBuilder> {
/// This field is used together with operation \"move\" and uses JSON Pointer notation. Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5).
@BuiltValueField(wireName: r'from')
String? get from;

/// The operation to be performed. One of \"add\", \"remove\", \"replace\", \"move\", \"copy\", or \"test\".
/// The JSON Patch operation
@BuiltValueField(wireName: r'op')
JsonPatchOpEnum get op;
// enum opEnum { add, remove, replace, move, copy, test, };

/// The path to the target path. Uses JSON pointer notation. Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5).
/// The JSON Pointer to the target key
@BuiltValueField(wireName: r'path')
String get path;

/// The value to be used within the operations. Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5).
/// The value to be used. Only available for `add` and `replace` operations.
@BuiltValueField(wireName: r'value')
JsonObject? get value;

Expand Down Expand Up @@ -166,22 +166,22 @@ class _$JsonPatchSerializer implements PrimitiveSerializer<JsonPatch> {

class JsonPatchOpEnum extends EnumClass {

/// The operation to be performed. One of \"add\", \"remove\", \"replace\", \"move\", \"copy\", or \"test\".
/// The JSON Patch operation
@BuiltValueEnumConst(wireName: r'add')
static const JsonPatchOpEnum add = _$jsonPatchOpEnum_add;
/// The operation to be performed. One of \"add\", \"remove\", \"replace\", \"move\", \"copy\", or \"test\".
/// The JSON Patch operation
@BuiltValueEnumConst(wireName: r'remove')
static const JsonPatchOpEnum remove = _$jsonPatchOpEnum_remove;
/// The operation to be performed. One of \"add\", \"remove\", \"replace\", \"move\", \"copy\", or \"test\".
/// The JSON Patch operation
@BuiltValueEnumConst(wireName: r'replace')
static const JsonPatchOpEnum replace = _$jsonPatchOpEnum_replace;
/// The operation to be performed. One of \"add\", \"remove\", \"replace\", \"move\", \"copy\", or \"test\".
/// The JSON Patch operation
@BuiltValueEnumConst(wireName: r'move')
static const JsonPatchOpEnum move = _$jsonPatchOpEnum_move;
/// The operation to be performed. One of \"add\", \"remove\", \"replace\", \"move\", \"copy\", or \"test\".
/// The JSON Patch operation
@BuiltValueEnumConst(wireName: r'copy')
static const JsonPatchOpEnum copy = _$jsonPatchOpEnum_copy;
/// The operation to be performed. One of \"add\", \"remove\", \"replace\", \"move\", \"copy\", or \"test\".
/// The JSON Patch operation
@BuiltValueEnumConst(wireName: r'test')
static const JsonPatchOpEnum test = _$jsonPatchOpEnum_test;

Expand Down
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.1.22
version: 1.1.23
description: OpenAPI API client
homepage: https://www.ory.sh

Expand Down
6 changes: 3 additions & 3 deletions clients/client/dart/test/json_patch_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ void main() {
// TODO
});

// The operation to be performed. One of \"add\", \"remove\", \"replace\", \"move\", \"copy\", or \"test\".
// The JSON Patch operation
// String op
test('to test the property `op`', () async {
// TODO
});

// The path to the target path. Uses JSON pointer notation. Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5).
// The JSON Pointer to the target key
// String path
test('to test the property `path`', () async {
// TODO
});

// The value to be used within the operations. Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5).
// The value to be used. Only available for `add` and `replace` operations.
// JsonObject value
test('to test the property `value`', () async {
// TODO
Expand Down
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", "{BAF2F08A-7AF2-4251-85D6-A230EC191DB5}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ory.Client", "src\Ory.Client\Ory.Client.csproj", "{61D1BD38-CD40-4658-9594-0915E3FBC3B5}"
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
{BAF2F08A-7AF2-4251-85D6-A230EC191DB5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BAF2F08A-7AF2-4251-85D6-A230EC191DB5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BAF2F08A-7AF2-4251-85D6-A230EC191DB5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BAF2F08A-7AF2-4251-85D6-A230EC191DB5}.Release|Any CPU.Build.0 = Release|Any CPU
{61D1BD38-CD40-4658-9594-0915E3FBC3B5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{61D1BD38-CD40-4658-9594-0915E3FBC3B5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{61D1BD38-CD40-4658-9594-0915E3FBC3B5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{61D1BD38-CD40-4658-9594-0915E3FBC3B5}.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.1.22
- SDK version: 1.1.22
- API version: v1.1.23
- SDK version: 1.1.23
- Build package: org.openapitools.codegen.languages.CSharpNetCoreClientCodegen
For more information, please visit [https://www.ory.sh](https://www.ory.sh)

Expand Down
8 changes: 4 additions & 4 deletions clients/client/dotnet/docs/ClientJsonPatch.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Ory.Client.Model.ClientJsonPatch
A JSONPatch document as defined by RFC 6902
JSON Patch allows you to target individual keys in a JSON document for updates. For more examples see: https://jsonpatch.com

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**From** | **string** | This field is used together with operation \&quot;move\&quot; and uses JSON Pointer notation. Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5). | [optional]
**Op** | **string** | The operation to be performed. One of \&quot;add\&quot;, \&quot;remove\&quot;, \&quot;replace\&quot;, \&quot;move\&quot;, \&quot;copy\&quot;, or \&quot;test\&quot;. |
**Path** | **string** | The path to the target path. Uses JSON pointer notation. Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5). |
**Value** | **Object** | The value to be used within the operations. Learn more [about JSON Pointers](https://datatracker.ietf.org/doc/html/rfc6901#section-5). | [optional]
**Op** | **string** | The JSON Patch operation |
**Path** | **string** | The JSON Pointer to the target key |
**Value** | **Object** | The value to be used. Only available for &#x60;add&#x60; and &#x60;replace&#x60; operations. | [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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* 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.1.22
* The version of the OpenAPI document: v1.1.23
* Contact: [email protected]
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
Expand Down
Loading

0 comments on commit d6b1e10

Please sign in to comment.