@laplace.live/internal 1.2.47 → 1.2.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +5 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -549,6 +549,7 @@ export declare namespace LaplaceInternal {
|
|
|
549
549
|
* - `?pageSize=100` — items per page (1–500, default 100)
|
|
550
550
|
* - `?all=true` — return all rows without pagination
|
|
551
551
|
* - `?tags=1,2,3` — filter to users who have all listed tag IDs (AND)
|
|
552
|
+
* - `?search=keyword` — filter by UID (exact) or username (case-insensitive partial match)
|
|
552
553
|
*/
|
|
553
554
|
export interface ListBilibiliUsers {
|
|
554
555
|
data: ListBilibiliUsersItem[]
|
|
@@ -640,16 +641,16 @@ export declare namespace LaplaceInternal {
|
|
|
640
641
|
scope?: string[] | null
|
|
641
642
|
}
|
|
642
643
|
|
|
643
|
-
/** Request body for POST /laplace/tags/assign (assign
|
|
644
|
+
/** Request body for POST /laplace/tags/assign (assign tags to entity) */
|
|
644
645
|
export interface TagAssignRequest {
|
|
645
|
-
|
|
646
|
+
tagIds: number[]
|
|
646
647
|
entityType: string
|
|
647
648
|
entityId: number
|
|
648
649
|
}
|
|
649
650
|
|
|
650
|
-
/** Request body for DELETE /laplace/tags/assign (unassign
|
|
651
|
+
/** Request body for DELETE /laplace/tags/assign (unassign tags from entity) */
|
|
651
652
|
export interface TagUnassignRequest {
|
|
652
|
-
|
|
653
|
+
tagIds: number[]
|
|
653
654
|
entityType: string
|
|
654
655
|
entityId: number
|
|
655
656
|
}
|