speedruncom.js 1.0.0 → 1.1.0
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/package.json
CHANGED
|
@@ -1207,7 +1207,23 @@ export interface PutUserDelete {
|
|
|
1207
1207
|
}
|
|
1208
1208
|
|
|
1209
1209
|
/**
|
|
1210
|
-
*
|
|
1210
|
+
* Updates a comment.
|
|
1211
|
+
*/
|
|
1212
|
+
export interface PutCommentUpdate {
|
|
1213
|
+
|
|
1214
|
+
/**
|
|
1215
|
+
* ID of the comment to update.
|
|
1216
|
+
*/
|
|
1217
|
+
commentId: string;
|
|
1218
|
+
|
|
1219
|
+
/**
|
|
1220
|
+
* New text of the comment.
|
|
1221
|
+
*/
|
|
1222
|
+
text: string;
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1225
|
+
/**
|
|
1226
|
+
* Deletes a comment.
|
|
1211
1227
|
*/
|
|
1212
1228
|
export interface PutCommentDelete {
|
|
1213
1229
|
commentId: string;
|