@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.
Files changed (2) hide show
  1. package/index.d.ts +4 -4
  2. 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 tag to entity) */
644
+ /** Request body for POST /laplace/tags/assign (assign tags to entity) */
645
645
  export interface TagAssignRequest {
646
- tagId: number
646
+ tagIds: number[]
647
647
  entityType: string
648
648
  entityId: number
649
649
  }
650
650
 
651
- /** Request body for DELETE /laplace/tags/assign (unassign tag from entity) */
651
+ /** Request body for DELETE /laplace/tags/assign (unassign tags from entity) */
652
652
  export interface TagUnassignRequest {
653
- tagId: number
653
+ tagIds: number[]
654
654
  entityType: string
655
655
  entityId: number
656
656
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@laplace.live/internal",
3
- "version": "1.2.48",
3
+ "version": "1.2.49",
4
4
  "module": "index.d.ts",
5
5
  "devDependencies": {
6
6
  "@types/bun": "latest"