@laplace.live/internal 1.2.48 → 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 +4 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -641,16 +641,16 @@ export declare namespace LaplaceInternal {
|
|
|
641
641
|
scope?: string[] | null
|
|
642
642
|
}
|
|
643
643
|
|
|
644
|
-
/** Request body for POST /laplace/tags/assign (assign
|
|
644
|
+
/** Request body for POST /laplace/tags/assign (assign tags to entity) */
|
|
645
645
|
export interface TagAssignRequest {
|
|
646
|
-
|
|
646
|
+
tagIds: number[]
|
|
647
647
|
entityType: string
|
|
648
648
|
entityId: number
|
|
649
649
|
}
|
|
650
650
|
|
|
651
|
-
/** Request body for DELETE /laplace/tags/assign (unassign
|
|
651
|
+
/** Request body for DELETE /laplace/tags/assign (unassign tags from entity) */
|
|
652
652
|
export interface TagUnassignRequest {
|
|
653
|
-
|
|
653
|
+
tagIds: number[]
|
|
654
654
|
entityType: string
|
|
655
655
|
entityId: number
|
|
656
656
|
}
|