Skip to content

Commit

Permalink
[CI] Regenerated from spec (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Oct 21, 2024
1 parent 888dccc commit 1cf9cd5
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
3 changes: 3 additions & 0 deletions vrchat_dart_generated/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.18.6
- Updated to match spec

## 1.18.5
- Updated to match spec

Expand Down
2 changes: 1 addition & 1 deletion vrchat_dart_generated/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ commit-access to the project. It also means we are very open and welcoming of ne

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

- API version: 1.18.5
- API version: 1.18.6
- Generator version: 7.9.0
- Build package: org.openapitools.codegen.languages.DartDioClientCodegen
For more information, please visit [https://github.com/VRChatAPI](https://github.com/VRChatAPI)
Expand Down
2 changes: 1 addition & 1 deletion vrchat_dart_generated/doc/GroupMember.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import 'package:vrchat_dart_generated/api.dart';
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**acceptedByDisplayName** | **String** | | [optional]
**acceptedById** | **String** | A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed. | [optional]
**acceptedById** | **String** | | [optional]
**id** | **String** | | [optional]
**groupId** | **String** | | [optional]
**userId** | **String** | A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed. | [optional]
Expand Down
2 changes: 1 addition & 1 deletion vrchat_dart_generated/doc/GroupMyMember.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Name | Type | Description | Notes
**userId** | **String** | A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed. | [optional]
**roleIds** | **List<String>** | | [optional]
**acceptedByDisplayName** | **String** | | [optional]
**acceptedById** | **String** | A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed. | [optional]
**acceptedById** | **String** | | [optional]
**createdAt** | [**DateTime**](DateTime.md) | | [optional]
**managerNotes** | **String** | | [optional]
**membershipStatus** | **String** | | [optional]
Expand Down
5 changes: 2 additions & 3 deletions vrchat_dart_generated/lib/src/model/group_member.dart
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ class GroupMember {
)
final String? acceptedByDisplayName;

/// A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed.
@JsonKey(
name: r'acceptedById',
required: false,
Expand Down Expand Up @@ -195,8 +194,8 @@ class GroupMember {

@override
int get hashCode =>
acceptedByDisplayName.hashCode +
acceptedById.hashCode +
(acceptedByDisplayName == null ? 0 : acceptedByDisplayName.hashCode) +
(acceptedById == null ? 0 : acceptedById.hashCode) +
id.hashCode +
groupId.hashCode +
userId.hashCode +
Expand Down
3 changes: 1 addition & 2 deletions vrchat_dart_generated/lib/src/model/group_my_member.dart
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ class GroupMyMember {
)
final String? acceptedByDisplayName;

/// A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed.
@JsonKey(
name: r'acceptedById',
required: false,
Expand Down Expand Up @@ -203,7 +202,7 @@ class GroupMyMember {
userId.hashCode +
roleIds.hashCode +
(acceptedByDisplayName == null ? 0 : acceptedByDisplayName.hashCode) +
acceptedById.hashCode +
(acceptedById == null ? 0 : acceptedById.hashCode) +
createdAt.hashCode +
managerNotes.hashCode +
membershipStatus.hashCode +
Expand Down
2 changes: 1 addition & 1 deletion vrchat_dart_generated/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: vrchat_dart_generated
version: 1.18.5
version: 1.18.6
description: The generated API used by vrchat_dart. Generated from https://github.com/vrchatapi/specification.
homepage: https://github.com/vrchatapi/vrchatapi-dart

Expand Down

0 comments on commit 1cf9cd5

Please sign in to comment.