fix(sid): harden admin assignment flow

This commit is contained in:
2026-09-08 13:01:41 +08:00
parent f243b7180b
commit c2dec1e711
2 changed files with 56 additions and 18 deletions
+12 -12
View File
@@ -50,7 +50,7 @@ export interface paths {
content: {
"application/json": {
/**
* @example archived
* @example all
* @enum {string|null}
*/
state?: "active" | "archived" | "trashed" | "all" | null;
@@ -539,7 +539,7 @@ export interface paths {
*/
language_code?: string;
/**
* @example draft
* @example published
* @enum {string}
*/
status?: "draft" | "awaiting_publish" | "published";
@@ -4685,7 +4685,7 @@ export interface paths {
content: {
"application/json": {
/**
* @example viewed
* @example taken_by_other
* @enum {string|null}
*/
status?: "sent" | "delivered" | "viewed" | "accepted" | "rejected" | "ignored" | "expired" | "taken_by_other" | null;
@@ -5163,7 +5163,7 @@ export interface paths {
content: {
"application/json": {
/**
* @example inactive
* @example busy
* @enum {string|null}
*/
status?: "offline" | "online" | "inactive" | "busy" | null;
@@ -5448,12 +5448,12 @@ export interface paths {
content: {
"application/json": {
/**
* @example private
* @example friends
* @enum {string|null}
*/
visibility?: "public" | "friends" | "private" | null;
/**
* @example blocked
* @example visible
* @enum {string|null}
*/
status?: "blocked" | "visible" | "all" | null;
@@ -5779,7 +5779,7 @@ export interface paths {
content: {
"application/json": {
/**
* @example all
* @example pending
* @enum {string|null}
*/
status?: "pending" | "blocked" | "all" | null;
@@ -9744,7 +9744,7 @@ export interface paths {
content: {
"application/json": {
/**
* @example all
* @example blocked
* @enum {string|null}
*/
status?: "pending" | "blocked" | "all" | null;
@@ -10107,11 +10107,11 @@ export interface paths {
content: {
"application/json": {
/**
* @example web
* @example android
* @enum {string|null}
*/
platform?: "ios" | "android" | "web" | "desktop" | null;
/** @example false */
/** @example true */
is_online?: boolean | null;
/**
* @description Must be at least 1.
@@ -11170,7 +11170,7 @@ export interface operations {
content: {
"application/json": {
/**
* @description SID /
* @description SID 3 6 /
* @example ABC-888888
*/
sid: string;
@@ -11214,7 +11214,7 @@ export interface operations {
*/
user_uid: string;
/**
* @description SID /
* @description SID 3 6 /
* @example ABC-168888
*/
sid: string;