@laplace.live/internal 1.2.50 → 1.2.51
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 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1189,6 +1189,8 @@ export declare namespace LaplaceInternal {
|
|
|
1189
1189
|
uid: number
|
|
1190
1190
|
content: string
|
|
1191
1191
|
note?: string
|
|
1192
|
+
/** Existing tag IDs to suggest for this meme (max 10) */
|
|
1193
|
+
tags?: number[]
|
|
1192
1194
|
turnstileToken: string
|
|
1193
1195
|
}
|
|
1194
1196
|
|
|
@@ -1205,6 +1207,7 @@ export declare namespace LaplaceInternal {
|
|
|
1205
1207
|
uid: number
|
|
1206
1208
|
content: string
|
|
1207
1209
|
note?: string | null
|
|
1210
|
+
tags?: number[] | null
|
|
1208
1211
|
status: ContributionStatus
|
|
1209
1212
|
contributorIp?: string
|
|
1210
1213
|
createdAt: string
|
|
@@ -1245,6 +1248,7 @@ export declare namespace LaplaceInternal {
|
|
|
1245
1248
|
uid?: number
|
|
1246
1249
|
content?: string
|
|
1247
1250
|
note?: string | null
|
|
1251
|
+
tags?: number[] | null
|
|
1248
1252
|
}
|
|
1249
1253
|
|
|
1250
1254
|
/** Response for PATCH /laplace/meme-contribution-update/:id */
|