Skip to content

Commit 9067427

Browse files
committed
Upgrade Rust SDK to spec 1.20.8-nightly.15
1 parent 4b8f1ce commit 9067427

25 files changed

Lines changed: 352 additions & 25 deletions

.openapi-generator/FILES

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,19 @@ docs/Balance.md
4545
docs/BanGroupMemberRequest.md
4646
docs/BoopRequest.md
4747
docs/CalendarApi.md
48+
docs/CalendarDayOfWeek.md
4849
docs/CalendarEvent.md
4950
docs/CalendarEventAccess.md
5051
docs/CalendarEventCategory.md
5152
docs/CalendarEventDiscovery.md
5253
docs/CalendarEventDiscoveryInclusion.md
5354
docs/CalendarEventDiscoveryScope.md
55+
docs/CalendarEventFrequency.md
56+
docs/CalendarEventOccurrenceKind.md
5457
docs/CalendarEventPlatform.md
58+
docs/CalendarEventRecurrence.md
59+
docs/CalendarEventRecurrenceEnd.md
60+
docs/CalendarEventRecurrenceEndType.md
5561
docs/CalendarEventUserInterest.md
5662
docs/ChangeUserTagsRequest.md
5763
docs/ChangeWorldTagsRequest.md
@@ -415,13 +421,19 @@ src/models/badge.rs
415421
src/models/balance.rs
416422
src/models/ban_group_member_request.rs
417423
src/models/boop_request.rs
424+
src/models/calendar_day_of_week.rs
418425
src/models/calendar_event.rs
419426
src/models/calendar_event_access.rs
420427
src/models/calendar_event_category.rs
421428
src/models/calendar_event_discovery.rs
422429
src/models/calendar_event_discovery_inclusion.rs
423430
src/models/calendar_event_discovery_scope.rs
431+
src/models/calendar_event_frequency.rs
432+
src/models/calendar_event_occurrence_kind.rs
424433
src/models/calendar_event_platform.rs
434+
src/models/calendar_event_recurrence.rs
435+
src/models/calendar_event_recurrence_end.rs
436+
src/models/calendar_event_recurrence_end_type.rs
425437
src/models/calendar_event_user_interest.rs
426438
src/models/change_user_tags_request.rs
427439
src/models/change_world_tags_request.rs

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.21.0
1+
7.20.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vrchatapi"
3-
version = "1.20.8-nightly.14"
3+
version = "1.20.8-nightly.15"
44
authors = ["vrchatapi.lpv0t@aries.fyi"]
55
description = "VRChat API Client for Rust"
66
license = "MIT"

docs/CalendarDayOfWeek.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# CalendarDayOfWeek
2+
3+
## Enum Variants
4+
5+
| Name | Value |
6+
|---- | -----|
7+
| Fr | FR |
8+
| Mo | MO |
9+
| Sa | SA |
10+
| Su | SU |
11+
| Th | TH |
12+
| Tu | TU |
13+
| We | WE |
14+
15+
16+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
17+
18+

docs/CalendarEvent.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ Name | Type | Description | Notes
2121
**interested_user_count** | Option<**i32**> | | [optional]
2222
**is_draft** | Option<**bool**> | | [optional]
2323
**languages** | Option<**Vec<String>**> | Languages that might be spoken at this event | [optional]
24-
**occurrence_kind** | Option<**String**> | So far if it exists, always the string \"single\" | [optional]
24+
**occurrence_kind** | Option<[**models::CalendarEventOccurrenceKind**](CalendarEventOccurrenceKind.md)> | | [optional]
2525
**owner_id** | Option<**String**> | | [optional]
2626
**platforms** | Option<[**Vec<models::CalendarEventPlatform>**](CalendarEventPlatform.md)> | | [optional]
27-
**recurrence** | Option<**String**> | So far unused, always \"null\" | [optional]
27+
**recurrence** | Option<[**models::CalendarEventRecurrence**](CalendarEventRecurrence.md)> | | [optional]
2828
**role_ids** | Option<**Vec<String>**> | Group roles that may join this event | [optional]
2929
**series_id** | Option<**String**> | So far unused, always \"null\" | [optional]
3030
**starts_at** | **String** | |

docs/CalendarEventFrequency.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# CalendarEventFrequency
2+
3+
## Enum Variants
4+
5+
| Name | Value |
6+
|---- | -----|
7+
| Daily | daily |
8+
| Monthly | monthly |
9+
| Weekly | weekly |
10+
| Yearly | yearly |
11+
12+
13+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
14+
15+
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# CalendarEventOccurrenceKind
2+
3+
## Enum Variants
4+
5+
| Name | Value |
6+
|---- | -----|
7+
| Occurrence | occurrence |
8+
| Series | series |
9+
| Single | single |
10+
11+
12+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
13+
14+

docs/CalendarEventRecurrence.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# CalendarEventRecurrence
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**days_of_week** | Option<[**Vec<models::CalendarDayOfWeek>**](CalendarDayOfWeek.md)> | Which days of the week the event will be scheduled, only valid/present for \"weekly\" recurring events | [optional]
8+
**end** | Option<[**models::CalendarEventRecurrenceEnd**](CalendarEventRecurrenceEnd.md)> | | [optional]
9+
**frequency** | [**models::CalendarEventFrequency**](CalendarEventFrequency.md) | |
10+
**interval** | **i32** | How often the event will be scheduled, in units of \"frequency\" |
11+
**timezone** | **String** | The timezone the event will be scheduled in, in Area/Location format |
12+
13+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
14+
15+

docs/CalendarEventRecurrenceEnd.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# CalendarEventRecurrenceEnd
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**count** | Option<**i32**> | Required for \"afterOccurrences\" - The number of times the event will be scheduled before it stops being scheduled | [optional]
8+
**date** | Option<**String**> | Required for \"afterDate\" - The date and time after which the event will stop being scheduled, **without timezone or offset** | [optional]
9+
**r#type** | [**models::CalendarEventRecurrenceEndType**](CalendarEventRecurrenceEndType.md) | |
10+
11+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
12+
13+
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# CalendarEventRecurrenceEndType
2+
3+
## Enum Variants
4+
5+
| Name | Value |
6+
|---- | -----|
7+
| AfterDate | afterDate |
8+
| AfterOccurrences | afterOccurrences |
9+
10+
11+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
12+
13+

0 commit comments

Comments
 (0)