speedruncom.js 1.2.7 → 1.2.8

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.
@@ -384,6 +384,10 @@ export interface PutResource {
384
384
  * Updates a resource item.
385
385
  */
386
386
  export interface PutResourceUpdate {
387
+ /**
388
+ * ID of the resource to update.
389
+ */
390
+ resourceId: string;
387
391
  gameId: string;
388
392
  /**
389
393
  * Manager ID
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "speedruncom.js",
3
- "version": "1.2.7",
3
+ "version": "1.2.8",
4
4
  "description": "WIP NodeJS module for Speedrun's version 2 API.",
5
5
  "type": "module",
6
6
  "author": {
@@ -463,6 +463,12 @@ export interface PutResource {
463
463
  */
464
464
  export interface PutResourceUpdate {
465
465
  // check all check base64 encoding of content probably a `resourceId`
466
+
467
+ /**
468
+ * ID of the resource to update.
469
+ */
470
+ resourceId: string;
471
+
466
472
  gameId: string;
467
473
 
468
474
  /**