Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update API Config #445

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 16 additions & 20 deletions openapi/components/schemas/APIConfig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,6 @@ properties:
analyticsSegment_NewUI_Salt:
description: Unknown
type: string
appName:
default: VrChat
deprecated: true
description: Game name
minLength: 1
type: string
availableLanguageCodes:
description: List of supported Languages
type: array
Expand Down Expand Up @@ -96,10 +90,6 @@ properties:
- Quest
- XRElite
- iOSMobile
buildVersionTag:
description: Build tag of the API server
minLength: 1
type: string
chatboxLogBufferSeconds:
default: 40
description: Unknown
Expand Down Expand Up @@ -191,8 +181,6 @@ properties:
$ref: ./AvatarID.yaml
defaultStickerSet:
type: string
deploymentGroup:
$ref: ./DeploymentGroup.yaml
devLanguageCodes:
type: array
description: Unknown
Expand Down Expand Up @@ -417,6 +405,8 @@ properties:
properties:
avatar:
$ref: './ReportCategory.yaml'
avatarpage:
$ref: './ReportCategory.yaml'
behavior:
$ref: './ReportCategory.yaml'
chat:
Expand Down Expand Up @@ -465,6 +455,10 @@ properties:
type: array
items:
type: string
avatarpage:
type: array
items:
type: string
warnings:
type: array
items:
Expand Down Expand Up @@ -544,6 +538,10 @@ properties:
$ref: './ReportReason.yaml'
cancellation:
$ref: './ReportReason.yaml'
copyright:
$ref: './ReportReason.yaml'
fraud:
$ref: './ReportReason.yaml'
gore:
$ref: './ReportReason.yaml'
hacking:
Expand Down Expand Up @@ -572,6 +570,8 @@ properties:
$ref: './ReportReason.yaml'
sexual:
$ref: './ReportReason.yaml'
technical:
$ref: './ReportReason.yaml'
threatening:
$ref: './ReportReason.yaml'
visuals:
Expand Down Expand Up @@ -614,10 +614,6 @@ properties:
description: Unity version supported by the SDK
minLength: 1
type: string
serverName:
description: Server name of the API server currently responding
minLength: 1
type: string
stringHostUrlList:
description: A list of explicitly allowed origins that worlds can request strings from via the Udon's [VRCStringDownloader.LoadUrl](https://creators.vrchat.com/worlds/udon/string-loading/#ivrcstringdownload).
type: array
Expand Down Expand Up @@ -679,6 +675,9 @@ properties:
description: Currently used youtube-dl.exe hash in SHA1-delimited format
minLength: 1
type: string
publicKey:
type: string
description: Public key, hex encoded
websocketMaxFriendsRefreshDelay:
type: integer
description: Unknown
Expand All @@ -704,11 +703,9 @@ required:
- announcements
- analyticsSegment_NewUI_PctOfUsers
- analyticsSegment_NewUI_Salt
- appName
- availableLanguageCodes
- availableLanguages
- avatarPerfLimiter
- buildVersionTag
- chatboxLogBufferSeconds
- clientApiKey
- clientBPSCeiling
Expand All @@ -722,7 +719,6 @@ required:
- currentTOSVersion
- defaultAvatar
- defaultStickerSet
- deploymentGroup
- devSdkUrl
- devSdkVersion
- dis-countdown
Expand Down Expand Up @@ -770,7 +766,6 @@ required:
- sdkDiscordUrl
- sdkNotAllowedToPublishMessage
- sdkUnityVersion
- serverName
- stringHostUrlList
- supportEmail
- supportFormUrl
Expand All @@ -788,6 +783,7 @@ required:
- whiteListedAssetUrls
- player-url-resolver-version
- player-url-resolver-sha1
- publicKey
- websocketMaxFriendsRefreshDelay
- websocketQuickReconnectTime
- websocketReconnectMaxDelay
15 changes: 0 additions & 15 deletions openapi/components/schemas/DeploymentGroup.yaml

This file was deleted.

6 changes: 6 additions & 0 deletions openapi/components/schemas/ReportCategory.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ title: ReportCategory
type: object
description: A category used for reporting content
properties:
description:
type: string
description: The description of the report category
title:
type: string
description: The title of the report category
text:
type: string
description: The label of the report category
Expand Down