@trash-streamers/contracts 1.1.83 → 1.1.84

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.
@@ -71,6 +71,10 @@ export interface Video {
71
71
  path?: string | undefined;
72
72
  updatedAt: Date | undefined;
73
73
  createdAt: Date | undefined;
74
+ categories: VideoCategory[];
75
+ }
76
+ export interface VideoCategory {
77
+ id: string;
74
78
  }
75
79
  export declare const VIDEO_V1_PACKAGE_NAME = "video.v1";
76
80
  export interface VideoServiceClient {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trash-streamers/contracts",
3
- "version": "1.1.83",
3
+ "version": "1.1.84",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "scripts": {
package/proto/video.proto CHANGED
@@ -83,6 +83,11 @@ message Video {
83
83
  optional string path = 10;
84
84
  google.protobuf.Timestamp updated_at = 11;
85
85
  google.protobuf.Timestamp created_at = 12;
86
+ repeated VideoCategory categories = 13;
87
+ }
88
+
89
+ message VideoCategory {
90
+ string id = 1;
86
91
  }
87
92
 
88
93
  enum Access {