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