Skip to content

Commit 96969b9

Browse files
committed
Upgrade Python SDK to spec 1.20.8.dev15
1 parent 1b0e98e commit 96969b9

24 files changed

Lines changed: 1094 additions & 31 deletions

.openapi-generator/FILES

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,19 @@ docs/Balance.md
4444
docs/BanGroupMemberRequest.md
4545
docs/BoopRequest.md
4646
docs/CalendarApi.md
47+
docs/CalendarDayOfWeek.md
4748
docs/CalendarEvent.md
4849
docs/CalendarEventAccess.md
4950
docs/CalendarEventCategory.md
5051
docs/CalendarEventDiscovery.md
5152
docs/CalendarEventDiscoveryInclusion.md
5253
docs/CalendarEventDiscoveryScope.md
54+
docs/CalendarEventFrequency.md
55+
docs/CalendarEventOccurrenceKind.md
5356
docs/CalendarEventPlatform.md
57+
docs/CalendarEventRecurrence.md
58+
docs/CalendarEventRecurrenceEnd.md
59+
docs/CalendarEventRecurrenceEndType.md
5460
docs/CalendarEventUserInterest.md
5561
docs/ChangeUserTagsRequest.md
5662
docs/ChangeWorldTagsRequest.md
@@ -409,13 +415,19 @@ vrchatapi/models/badge.py
409415
vrchatapi/models/balance.py
410416
vrchatapi/models/ban_group_member_request.py
411417
vrchatapi/models/boop_request.py
418+
vrchatapi/models/calendar_day_of_week.py
412419
vrchatapi/models/calendar_event.py
413420
vrchatapi/models/calendar_event_access.py
414421
vrchatapi/models/calendar_event_category.py
415422
vrchatapi/models/calendar_event_discovery.py
416423
vrchatapi/models/calendar_event_discovery_inclusion.py
417424
vrchatapi/models/calendar_event_discovery_scope.py
425+
vrchatapi/models/calendar_event_frequency.py
426+
vrchatapi/models/calendar_event_occurrence_kind.py
418427
vrchatapi/models/calendar_event_platform.py
428+
vrchatapi/models/calendar_event_recurrence.py
429+
vrchatapi/models/calendar_event_recurrence_end.py
430+
vrchatapi/models/calendar_event_recurrence_end_type.py
419431
vrchatapi/models/calendar_event_user_interest.py
420432
vrchatapi/models/change_user_tags_request.py
421433
vrchatapi/models/change_world_tags_request.py

docs/CalendarDayOfWeek.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# CalendarDayOfWeek
2+
3+
The day of the week, used for recurring events.
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
9+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
10+
11+

docs/CalendarEvent.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ Name | Type | Description | Notes
2222
**interested_user_count** | **int** | | [optional]
2323
**is_draft** | **bool** | | [optional]
2424
**languages** | **list[str]** | Languages that might be spoken at this event | [optional]
25-
**occurrence_kind** | **str** | So far if it exists, always the string \"single\" | [optional]
25+
**occurrence_kind** | [**CalendarEventOccurrenceKind**](CalendarEventOccurrenceKind.md) | | [optional]
2626
**owner_id** | **str** | | [optional]
2727
**platforms** | [**list[CalendarEventPlatform]**](CalendarEventPlatform.md) | | [optional]
28-
**recurrence** | **str** | So far unused, always \"null\" | [optional]
28+
**recurrence** | [**CalendarEventRecurrence**](CalendarEventRecurrence.md) | | [optional]
2929
**role_ids** | **list[str]** | Group roles that may join this event | [optional]
3030
**series_id** | **str** | So far unused, always \"null\" | [optional]
3131
**starts_at** | **datetime** | |

docs/CalendarEventFrequency.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# CalendarEventFrequency
2+
3+
The time unit used to specify how often a recurring event occurs.
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
9+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
10+
11+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# CalendarEventOccurrenceKind
2+
3+
How an event occurs or recurs. \"single\" is a standalone event, \"series\" is a parent specification of a recurring series, and \"occurrence\" is an individual event in a series.
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
9+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
10+
11+

docs/CalendarEventRecurrence.md

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

docs/CalendarEventRecurrenceEnd.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# CalendarEventRecurrenceEnd
2+
3+
Details about how a recurring event stops being scheduled
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**count** | **int** | Required for \"afterOccurrences\" - The number of times the event will be scheduled before it stops being scheduled | [optional]
9+
**date** | **str** | Required for \"afterDate\" - The date and time after which the event will stop being scheduled, **without timezone or offset** | [optional]
10+
**type** | [**CalendarEventRecurrenceEndType**](CalendarEventRecurrenceEndType.md) | |
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+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# CalendarEventRecurrenceEndType
2+
3+
How a recurring event stops being scheduled
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
9+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
10+
11+

docs/CreateCalendarEventRequest.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@ Name | Type | Description | Notes
1515
**image_id** | **str** | | [optional]
1616
**is_draft** | **bool** | | [optional]
1717
**languages** | **list[str]** | | [optional]
18+
**occurrence_kind** | [**CalendarEventOccurrenceKind**](CalendarEventOccurrenceKind.md) | | [optional]
1819
**parent_id** | **str** | | [optional]
1920
**platforms** | [**list[CalendarEventPlatform]**](CalendarEventPlatform.md) | | [optional]
21+
**recurrence** | [**CalendarEventRecurrence**](CalendarEventRecurrence.md) | | [optional]
2022
**role_ids** | **list[str]** | | [optional]
2123
**send_creation_notification** | **bool** | Send notification to group members. |
2224
**starts_at** | **datetime** | Time the event starts at |

docs/UpdateCalendarEventRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Name | Type | Description | Notes
1616
**languages** | **list[str]** | | [optional]
1717
**parent_id** | **str** | | [optional]
1818
**platforms** | **list[str]** | | [optional]
19+
**recurrence** | [**CalendarEventRecurrence**](CalendarEventRecurrence.md) | | [optional]
1920
**role_ids** | **list[str]** | | [optional]
2021
**send_creation_notification** | **bool** | Send notification to group members. | [optional] [default to False]
2122
**starts_at** | **datetime** | Time the vent starts at | [optional]

0 commit comments

Comments
 (0)