fix(openapi): use a regular int64 type for visionary slot user id

This commit is contained in:
Hampus Kraft
2026-02-17 15:18:40 +00:00
parent 5eb02e272d
commit b19e9fb243
5 changed files with 21 additions and 26 deletions

View File

@@ -657,7 +657,7 @@ description: 'Admin object schemas from the Fluxer API.'
| Field | Type | Description |
|-------|------|-------------|
| applied_at | string | Application timestamp |
| category_id | number | Discovery category ID |
| category_type | number | Discovery category type |
| description | string | Discovery description |
| guild_id | [SnowflakeType](#snowflaketype) | Guild ID |
| review_reason? | ?string | Review reason |
@@ -2151,7 +2151,7 @@ Type: [MessageShredStatusNotFoundResponse](#messageshredstatusnotfoundresponse)
| Field | Type | Description |
|-------|------|-------------|
| slot_index | integer (int32) | Slot index to reserve (must be >= 1) |
| user_id | ?[SnowflakeType](#snowflaketype) | User ID to reserve the slot for, or null to unreserve (special value -1 is also valid) |
| user_id | ?[Int64StringType](#int64stringtype) | User ID to reserve the slot for, or null to unreserve (special value -1 is also valid) |
<a id="resolvereportrequest"></a>

View File

@@ -103,7 +103,7 @@ Type: [ConnectionResponse](#connectionresponse)[]
| Field | Type | Description |
|-------|------|-------------|
| category_id? | integer (int32) | Updated discovery category ID |
| category_type? | integer (int32) | Updated discovery category type |
| description? | string | Updated description for discovery listing |
<a id="discoveryapplicationrequest"></a>
@@ -116,7 +116,7 @@ Type: [ConnectionResponse](#connectionresponse)[]
| Field | Type | Description |
|-------|------|-------------|
| category_id | integer (int32) | Discovery category ID |
| category_type | integer (int32) | Discovery category type |
| description | string | Description for discovery listing |
<a id="discoverycategorylistresponse"></a>
@@ -157,7 +157,7 @@ Type: [DiscoveryCategoryResponse](#discoverycategoryresponse)[]
| Field | Type | Description |
|-------|------|-------------|
| category_id | number | Discovery category ID |
| category_type | number | Discovery category type |
| description? | ?string | Discovery description |
| features | string[] | Guild feature flags |
| icon? | ?string | Guild icon hash |

View File

@@ -26,7 +26,7 @@ description: 'Premium object schemas from the Fluxer API.'
| Field | Type | Description |
|-------|------|-------------|
| slot_index | integer (int32) | The slot index |
| user_id | ?[SnowflakeType](#snowflaketype) | User ID that reserved this slot, or null if unreserved (special value -1 is also valid) |
| user_id | ?[Int64StringType](#int64stringtype) | User ID that reserved this slot, or null if unreserved (special value -1 is also valid) |
<a id="priceidsresponsecurrency"></a>