Skip to content

Commit 1cf9cd5

Browse files
[CI] Regenerated from spec (#24)
1 parent 888dccc commit 1cf9cd5

7 files changed

Lines changed: 10 additions & 9 deletions

File tree

vrchat_dart_generated/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.18.6
2+
- Updated to match spec
3+
14
## 1.18.5
25
- Updated to match spec
36

vrchat_dart_generated/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ commit-access to the project. It also means we are very open and welcoming of ne
8282

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

85-
- API version: 1.18.5
85+
- API version: 1.18.6
8686
- Generator version: 7.9.0
8787
- Build package: org.openapitools.codegen.languages.DartDioClientCodegen
8888
For more information, please visit [https://github.com/VRChatAPI](https://github.com/VRChatAPI)

vrchat_dart_generated/doc/GroupMember.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import 'package:vrchat_dart_generated/api.dart';
99
Name | Type | Description | Notes
1010
------------ | ------------- | ------------- | -------------
1111
**acceptedByDisplayName** | **String** | | [optional]
12-
**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]
12+
**acceptedById** | **String** | | [optional]
1313
**id** | **String** | | [optional]
1414
**groupId** | **String** | | [optional]
1515
**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]

vrchat_dart_generated/doc/GroupMyMember.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Name | Type | Description | Notes
1313
**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]
1414
**roleIds** | **List<String>** | | [optional]
1515
**acceptedByDisplayName** | **String** | | [optional]
16-
**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]
16+
**acceptedById** | **String** | | [optional]
1717
**createdAt** | [**DateTime**](DateTime.md) | | [optional]
1818
**managerNotes** | **String** | | [optional]
1919
**membershipStatus** | **String** | | [optional]

vrchat_dart_generated/lib/src/model/group_member.dart

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ class GroupMember {
4545
)
4646
final String? acceptedByDisplayName;
4747

48-
/// 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.
4948
@JsonKey(
5049
name: r'acceptedById',
5150
required: false,
@@ -195,8 +194,8 @@ class GroupMember {
195194

196195
@override
197196
int get hashCode =>
198-
acceptedByDisplayName.hashCode +
199-
acceptedById.hashCode +
197+
(acceptedByDisplayName == null ? 0 : acceptedByDisplayName.hashCode) +
198+
(acceptedById == null ? 0 : acceptedById.hashCode) +
200199
id.hashCode +
201200
groupId.hashCode +
202201
userId.hashCode +

vrchat_dart_generated/lib/src/model/group_my_member.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ class GroupMyMember {
7373
)
7474
final String? acceptedByDisplayName;
7575

76-
/// 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.
7776
@JsonKey(
7877
name: r'acceptedById',
7978
required: false,
@@ -203,7 +202,7 @@ class GroupMyMember {
203202
userId.hashCode +
204203
roleIds.hashCode +
205204
(acceptedByDisplayName == null ? 0 : acceptedByDisplayName.hashCode) +
206-
acceptedById.hashCode +
205+
(acceptedById == null ? 0 : acceptedById.hashCode) +
207206
createdAt.hashCode +
208207
managerNotes.hashCode +
209208
membershipStatus.hashCode +

vrchat_dart_generated/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: vrchat_dart_generated
2-
version: 1.18.5
2+
version: 1.18.6
33
description: The generated API used by vrchat_dart. Generated from https://github.com/vrchatapi/specification.
44
homepage: https://github.com/vrchatapi/vrchatapi-dart
55

0 commit comments

Comments
 (0)