@laplace.live/internal 1.2.51 → 1.2.52
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 +6 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1184,6 +1184,12 @@ export declare namespace LaplaceInternal {
|
|
|
1184
1184
|
total: number
|
|
1185
1185
|
}
|
|
1186
1186
|
|
|
1187
|
+
/** Request body for PATCH /laplace/memes/:id (update approved meme) */
|
|
1188
|
+
export interface MemeUpdateRequest {
|
|
1189
|
+
content?: string
|
|
1190
|
+
tags?: number[] | null
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1187
1193
|
/** Request body for POST /laplace/meme-contribute */
|
|
1188
1194
|
export interface MemeContributeRequest {
|
|
1189
1195
|
uid: number
|