@trash-streamers/contracts 1.1.82 → 1.1.83

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.
@@ -48,6 +48,7 @@ export interface UpdateSettingsVideoRequest {
48
48
  ownerId: string;
49
49
  video: Video | undefined;
50
50
  updateMask: FieldMask | undefined;
51
+ categoryIds: string[];
51
52
  }
52
53
  export interface UpdateSettingsVideoResponse {
53
54
  video: Video | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trash-streamers/contracts",
3
- "version": "1.1.82",
3
+ "version": "1.1.83",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "scripts": {
package/proto/video.proto CHANGED
@@ -56,6 +56,7 @@ message UpdateSettingsVideoRequest {
56
56
  string owner_id = 2;
57
57
  Video video = 3;
58
58
  FieldMask update_mask = 4;
59
+ repeated string category_ids = 5;
59
60
  }
60
61
 
61
62
  message UpdateSettingsVideoResponse {