Skip to content

Commit 110e08f

Browse files
committed
Upgrade Rust SDK to spec 1.20.8-nightly.6
1 parent 3785931 commit 110e08f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
repository="https://github.com/vrchatapi/vrchatapi-rust"
33
name = "vrchatapi"
4-
version = "1.20.8-nightly.5"
4+
version = "1.20.8-nightly.6"
55
authors = ["[email protected]"]
66
description = "VRChat API Client for Rust"
77
license = "MIT"

docs/CalendarEvent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
1010
**created_at** | Option<**String**> | | [optional]
1111
**deleted_at** | Option<**String**> | | [optional]
1212
**description** | **String** | |
13-
**duration_in_ms** | Option<**i32**> | | [optional]
13+
**duration_in_ms** | Option<**i64**> | | [optional]
1414
**ends_at** | **String** | |
1515
**featured** | Option<**bool**> | | [optional]
1616
**guest_early_join_minutes** | Option<**i32**> | | [optional]

src/models/calendar_event.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ pub struct CalendarEvent {
3333
#[serde(rename = "description")]
3434
pub description: String,
3535
#[serde(rename = "durationInMs", skip_serializing_if = "Option::is_none")]
36-
pub duration_in_ms: Option<i32>,
36+
pub duration_in_ms: Option<i64>,
3737
#[serde(rename = "endsAt")]
3838
pub ends_at: String,
3939
#[serde(rename = "featured", skip_serializing_if = "Option::is_none")]

0 commit comments

Comments
 (0)