@barumetric/contracts 1.1.7 → 1.1.9
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/proto/paths.d.ts +1 -0
- package/dist/proto/paths.js +1 -0
- package/gen/go/media/media.pb.go +537 -0
- package/gen/go/media/media_grpc.pb.go +186 -0
- package/gen/ts/categories.ts +383 -0
- package/package.json +1 -1
- package/proto/categories.proto +252 -0
package/dist/proto/paths.d.ts
CHANGED
package/dist/proto/paths.js
CHANGED
|
@@ -7,4 +7,5 @@ exports.PROTO_PATHS = {
|
|
|
7
7
|
ACCOUNT: (0, path_1.join)(__dirname, "../../proto/account.proto"),
|
|
8
8
|
USERS: (0, path_1.join)(__dirname, "../../proto/users.proto"),
|
|
9
9
|
MEDIA: (0, path_1.join)(__dirname, "../../proto/media.proto"),
|
|
10
|
+
CATEGORIES: (0, path_1.join)(__dirname, "../../proto/categories.proto"),
|
|
10
11
|
};
|
|
@@ -0,0 +1,537 @@
|
|
|
1
|
+
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
2
|
+
// versions:
|
|
3
|
+
// protoc-gen-go v1.34.1
|
|
4
|
+
// protoc v6.33.2
|
|
5
|
+
// source: media.proto
|
|
6
|
+
|
|
7
|
+
package media
|
|
8
|
+
|
|
9
|
+
import (
|
|
10
|
+
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
11
|
+
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
12
|
+
reflect "reflect"
|
|
13
|
+
sync "sync"
|
|
14
|
+
)
|
|
15
|
+
|
|
16
|
+
const (
|
|
17
|
+
// Verify that this generated code is sufficiently up-to-date.
|
|
18
|
+
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
19
|
+
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
20
|
+
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
type UploadRequest struct {
|
|
24
|
+
state protoimpl.MessageState
|
|
25
|
+
sizeCache protoimpl.SizeCache
|
|
26
|
+
unknownFields protoimpl.UnknownFields
|
|
27
|
+
|
|
28
|
+
FileName string `protobuf:"bytes,1,opt,name=file_name,json=fileName,proto3" json:"file_name,omitempty"`
|
|
29
|
+
Folder string `protobuf:"bytes,2,opt,name=folder,proto3" json:"folder,omitempty"`
|
|
30
|
+
ContentType string `protobuf:"bytes,3,opt,name=content_type,json=contentType,proto3" json:"content_type,omitempty"`
|
|
31
|
+
Data []byte `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
|
|
32
|
+
ResizeWidth *int32 `protobuf:"varint,5,opt,name=resize_width,json=resizeWidth,proto3,oneof" json:"resize_width,omitempty"`
|
|
33
|
+
ResizeHeight *int32 `protobuf:"varint,6,opt,name=resize_height,json=resizeHeight,proto3,oneof" json:"resize_height,omitempty"`
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
func (x *UploadRequest) Reset() {
|
|
37
|
+
*x = UploadRequest{}
|
|
38
|
+
if protoimpl.UnsafeEnabled {
|
|
39
|
+
mi := &file_media_proto_msgTypes[0]
|
|
40
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
41
|
+
ms.StoreMessageInfo(mi)
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
func (x *UploadRequest) String() string {
|
|
46
|
+
return protoimpl.X.MessageStringOf(x)
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
func (*UploadRequest) ProtoMessage() {}
|
|
50
|
+
|
|
51
|
+
func (x *UploadRequest) ProtoReflect() protoreflect.Message {
|
|
52
|
+
mi := &file_media_proto_msgTypes[0]
|
|
53
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
54
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
55
|
+
if ms.LoadMessageInfo() == nil {
|
|
56
|
+
ms.StoreMessageInfo(mi)
|
|
57
|
+
}
|
|
58
|
+
return ms
|
|
59
|
+
}
|
|
60
|
+
return mi.MessageOf(x)
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
// Deprecated: Use UploadRequest.ProtoReflect.Descriptor instead.
|
|
64
|
+
func (*UploadRequest) Descriptor() ([]byte, []int) {
|
|
65
|
+
return file_media_proto_rawDescGZIP(), []int{0}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
func (x *UploadRequest) GetFileName() string {
|
|
69
|
+
if x != nil {
|
|
70
|
+
return x.FileName
|
|
71
|
+
}
|
|
72
|
+
return ""
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
func (x *UploadRequest) GetFolder() string {
|
|
76
|
+
if x != nil {
|
|
77
|
+
return x.Folder
|
|
78
|
+
}
|
|
79
|
+
return ""
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
func (x *UploadRequest) GetContentType() string {
|
|
83
|
+
if x != nil {
|
|
84
|
+
return x.ContentType
|
|
85
|
+
}
|
|
86
|
+
return ""
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
func (x *UploadRequest) GetData() []byte {
|
|
90
|
+
if x != nil {
|
|
91
|
+
return x.Data
|
|
92
|
+
}
|
|
93
|
+
return nil
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
func (x *UploadRequest) GetResizeWidth() int32 {
|
|
97
|
+
if x != nil && x.ResizeWidth != nil {
|
|
98
|
+
return *x.ResizeWidth
|
|
99
|
+
}
|
|
100
|
+
return 0
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
func (x *UploadRequest) GetResizeHeight() int32 {
|
|
104
|
+
if x != nil && x.ResizeHeight != nil {
|
|
105
|
+
return *x.ResizeHeight
|
|
106
|
+
}
|
|
107
|
+
return 0
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
type UploadResponse struct {
|
|
111
|
+
state protoimpl.MessageState
|
|
112
|
+
sizeCache protoimpl.SizeCache
|
|
113
|
+
unknownFields protoimpl.UnknownFields
|
|
114
|
+
|
|
115
|
+
Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
func (x *UploadResponse) Reset() {
|
|
119
|
+
*x = UploadResponse{}
|
|
120
|
+
if protoimpl.UnsafeEnabled {
|
|
121
|
+
mi := &file_media_proto_msgTypes[1]
|
|
122
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
123
|
+
ms.StoreMessageInfo(mi)
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
func (x *UploadResponse) String() string {
|
|
128
|
+
return protoimpl.X.MessageStringOf(x)
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
func (*UploadResponse) ProtoMessage() {}
|
|
132
|
+
|
|
133
|
+
func (x *UploadResponse) ProtoReflect() protoreflect.Message {
|
|
134
|
+
mi := &file_media_proto_msgTypes[1]
|
|
135
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
136
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
137
|
+
if ms.LoadMessageInfo() == nil {
|
|
138
|
+
ms.StoreMessageInfo(mi)
|
|
139
|
+
}
|
|
140
|
+
return ms
|
|
141
|
+
}
|
|
142
|
+
return mi.MessageOf(x)
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
// Deprecated: Use UploadResponse.ProtoReflect.Descriptor instead.
|
|
146
|
+
func (*UploadResponse) Descriptor() ([]byte, []int) {
|
|
147
|
+
return file_media_proto_rawDescGZIP(), []int{1}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
func (x *UploadResponse) GetKey() string {
|
|
151
|
+
if x != nil {
|
|
152
|
+
return x.Key
|
|
153
|
+
}
|
|
154
|
+
return ""
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
type GetRequest struct {
|
|
158
|
+
state protoimpl.MessageState
|
|
159
|
+
sizeCache protoimpl.SizeCache
|
|
160
|
+
unknownFields protoimpl.UnknownFields
|
|
161
|
+
|
|
162
|
+
Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
func (x *GetRequest) Reset() {
|
|
166
|
+
*x = GetRequest{}
|
|
167
|
+
if protoimpl.UnsafeEnabled {
|
|
168
|
+
mi := &file_media_proto_msgTypes[2]
|
|
169
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
170
|
+
ms.StoreMessageInfo(mi)
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
func (x *GetRequest) String() string {
|
|
175
|
+
return protoimpl.X.MessageStringOf(x)
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
func (*GetRequest) ProtoMessage() {}
|
|
179
|
+
|
|
180
|
+
func (x *GetRequest) ProtoReflect() protoreflect.Message {
|
|
181
|
+
mi := &file_media_proto_msgTypes[2]
|
|
182
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
183
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
184
|
+
if ms.LoadMessageInfo() == nil {
|
|
185
|
+
ms.StoreMessageInfo(mi)
|
|
186
|
+
}
|
|
187
|
+
return ms
|
|
188
|
+
}
|
|
189
|
+
return mi.MessageOf(x)
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
// Deprecated: Use GetRequest.ProtoReflect.Descriptor instead.
|
|
193
|
+
func (*GetRequest) Descriptor() ([]byte, []int) {
|
|
194
|
+
return file_media_proto_rawDescGZIP(), []int{2}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
func (x *GetRequest) GetKey() string {
|
|
198
|
+
if x != nil {
|
|
199
|
+
return x.Key
|
|
200
|
+
}
|
|
201
|
+
return ""
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
type GetResponse struct {
|
|
205
|
+
state protoimpl.MessageState
|
|
206
|
+
sizeCache protoimpl.SizeCache
|
|
207
|
+
unknownFields protoimpl.UnknownFields
|
|
208
|
+
|
|
209
|
+
Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
|
|
210
|
+
ContentType string `protobuf:"bytes,2,opt,name=content_type,json=contentType,proto3" json:"content_type,omitempty"`
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
func (x *GetResponse) Reset() {
|
|
214
|
+
*x = GetResponse{}
|
|
215
|
+
if protoimpl.UnsafeEnabled {
|
|
216
|
+
mi := &file_media_proto_msgTypes[3]
|
|
217
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
218
|
+
ms.StoreMessageInfo(mi)
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
func (x *GetResponse) String() string {
|
|
223
|
+
return protoimpl.X.MessageStringOf(x)
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
func (*GetResponse) ProtoMessage() {}
|
|
227
|
+
|
|
228
|
+
func (x *GetResponse) ProtoReflect() protoreflect.Message {
|
|
229
|
+
mi := &file_media_proto_msgTypes[3]
|
|
230
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
231
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
232
|
+
if ms.LoadMessageInfo() == nil {
|
|
233
|
+
ms.StoreMessageInfo(mi)
|
|
234
|
+
}
|
|
235
|
+
return ms
|
|
236
|
+
}
|
|
237
|
+
return mi.MessageOf(x)
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
// Deprecated: Use GetResponse.ProtoReflect.Descriptor instead.
|
|
241
|
+
func (*GetResponse) Descriptor() ([]byte, []int) {
|
|
242
|
+
return file_media_proto_rawDescGZIP(), []int{3}
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
func (x *GetResponse) GetData() []byte {
|
|
246
|
+
if x != nil {
|
|
247
|
+
return x.Data
|
|
248
|
+
}
|
|
249
|
+
return nil
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
func (x *GetResponse) GetContentType() string {
|
|
253
|
+
if x != nil {
|
|
254
|
+
return x.ContentType
|
|
255
|
+
}
|
|
256
|
+
return ""
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
type DeleteRequest struct {
|
|
260
|
+
state protoimpl.MessageState
|
|
261
|
+
sizeCache protoimpl.SizeCache
|
|
262
|
+
unknownFields protoimpl.UnknownFields
|
|
263
|
+
|
|
264
|
+
Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
func (x *DeleteRequest) Reset() {
|
|
268
|
+
*x = DeleteRequest{}
|
|
269
|
+
if protoimpl.UnsafeEnabled {
|
|
270
|
+
mi := &file_media_proto_msgTypes[4]
|
|
271
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
272
|
+
ms.StoreMessageInfo(mi)
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
func (x *DeleteRequest) String() string {
|
|
277
|
+
return protoimpl.X.MessageStringOf(x)
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
func (*DeleteRequest) ProtoMessage() {}
|
|
281
|
+
|
|
282
|
+
func (x *DeleteRequest) ProtoReflect() protoreflect.Message {
|
|
283
|
+
mi := &file_media_proto_msgTypes[4]
|
|
284
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
285
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
286
|
+
if ms.LoadMessageInfo() == nil {
|
|
287
|
+
ms.StoreMessageInfo(mi)
|
|
288
|
+
}
|
|
289
|
+
return ms
|
|
290
|
+
}
|
|
291
|
+
return mi.MessageOf(x)
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
// Deprecated: Use DeleteRequest.ProtoReflect.Descriptor instead.
|
|
295
|
+
func (*DeleteRequest) Descriptor() ([]byte, []int) {
|
|
296
|
+
return file_media_proto_rawDescGZIP(), []int{4}
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
func (x *DeleteRequest) GetKey() string {
|
|
300
|
+
if x != nil {
|
|
301
|
+
return x.Key
|
|
302
|
+
}
|
|
303
|
+
return ""
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
type DeleteResponse struct {
|
|
307
|
+
state protoimpl.MessageState
|
|
308
|
+
sizeCache protoimpl.SizeCache
|
|
309
|
+
unknownFields protoimpl.UnknownFields
|
|
310
|
+
|
|
311
|
+
Ok bool `protobuf:"varint,1,opt,name=ok,proto3" json:"ok,omitempty"`
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
func (x *DeleteResponse) Reset() {
|
|
315
|
+
*x = DeleteResponse{}
|
|
316
|
+
if protoimpl.UnsafeEnabled {
|
|
317
|
+
mi := &file_media_proto_msgTypes[5]
|
|
318
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
319
|
+
ms.StoreMessageInfo(mi)
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
func (x *DeleteResponse) String() string {
|
|
324
|
+
return protoimpl.X.MessageStringOf(x)
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
func (*DeleteResponse) ProtoMessage() {}
|
|
328
|
+
|
|
329
|
+
func (x *DeleteResponse) ProtoReflect() protoreflect.Message {
|
|
330
|
+
mi := &file_media_proto_msgTypes[5]
|
|
331
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
332
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
333
|
+
if ms.LoadMessageInfo() == nil {
|
|
334
|
+
ms.StoreMessageInfo(mi)
|
|
335
|
+
}
|
|
336
|
+
return ms
|
|
337
|
+
}
|
|
338
|
+
return mi.MessageOf(x)
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
// Deprecated: Use DeleteResponse.ProtoReflect.Descriptor instead.
|
|
342
|
+
func (*DeleteResponse) Descriptor() ([]byte, []int) {
|
|
343
|
+
return file_media_proto_rawDescGZIP(), []int{5}
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
func (x *DeleteResponse) GetOk() bool {
|
|
347
|
+
if x != nil {
|
|
348
|
+
return x.Ok
|
|
349
|
+
}
|
|
350
|
+
return false
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
var File_media_proto protoreflect.FileDescriptor
|
|
354
|
+
|
|
355
|
+
var file_media_proto_rawDesc = []byte{
|
|
356
|
+
0x0a, 0x0b, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x6d,
|
|
357
|
+
0x65, 0x64, 0x69, 0x61, 0x2e, 0x76, 0x31, 0x22, 0xf0, 0x01, 0x0a, 0x0d, 0x55, 0x70, 0x6c, 0x6f,
|
|
358
|
+
0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x69, 0x6c,
|
|
359
|
+
0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69,
|
|
360
|
+
0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x6f, 0x6c, 0x64, 0x65, 0x72,
|
|
361
|
+
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x12, 0x21,
|
|
362
|
+
0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03,
|
|
363
|
+
0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70,
|
|
364
|
+
0x65, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52,
|
|
365
|
+
0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x26, 0x0a, 0x0c, 0x72, 0x65, 0x73, 0x69, 0x7a, 0x65, 0x5f,
|
|
366
|
+
0x77, 0x69, 0x64, 0x74, 0x68, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x0b, 0x72,
|
|
367
|
+
0x65, 0x73, 0x69, 0x7a, 0x65, 0x57, 0x69, 0x64, 0x74, 0x68, 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a,
|
|
368
|
+
0x0d, 0x72, 0x65, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x06,
|
|
369
|
+
0x20, 0x01, 0x28, 0x05, 0x48, 0x01, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x69, 0x7a, 0x65, 0x48, 0x65,
|
|
370
|
+
0x69, 0x67, 0x68, 0x74, 0x88, 0x01, 0x01, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x72, 0x65, 0x73, 0x69,
|
|
371
|
+
0x7a, 0x65, 0x5f, 0x77, 0x69, 0x64, 0x74, 0x68, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x72, 0x65, 0x73,
|
|
372
|
+
0x69, 0x7a, 0x65, 0x5f, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x22, 0x22, 0x0a, 0x0e, 0x55, 0x70,
|
|
373
|
+
0x6c, 0x6f, 0x61, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x10, 0x0a, 0x03,
|
|
374
|
+
0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x1e,
|
|
375
|
+
0x0a, 0x0a, 0x47, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03,
|
|
376
|
+
0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x44,
|
|
377
|
+
0x0a, 0x0b, 0x47, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a,
|
|
378
|
+
0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74,
|
|
379
|
+
0x61, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70,
|
|
380
|
+
0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
|
|
381
|
+
0x54, 0x79, 0x70, 0x65, 0x22, 0x21, 0x0a, 0x0d, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65,
|
|
382
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
|
|
383
|
+
0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x20, 0x0a, 0x0e, 0x44, 0x65, 0x6c, 0x65, 0x74,
|
|
384
|
+
0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6b, 0x18,
|
|
385
|
+
0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x02, 0x6f, 0x6b, 0x32, 0xbc, 0x01, 0x0a, 0x0c, 0x4d, 0x65,
|
|
386
|
+
0x64, 0x69, 0x61, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x3b, 0x0a, 0x06, 0x55, 0x70,
|
|
387
|
+
0x6c, 0x6f, 0x61, 0x64, 0x12, 0x17, 0x2e, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x2e, 0x76, 0x31, 0x2e,
|
|
388
|
+
0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x18, 0x2e,
|
|
389
|
+
0x6d, 0x65, 0x64, 0x69, 0x61, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x52,
|
|
390
|
+
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x32, 0x0a, 0x03, 0x47, 0x65, 0x74, 0x12, 0x14,
|
|
391
|
+
0x2e, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x71,
|
|
392
|
+
0x75, 0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x2e, 0x76, 0x31, 0x2e,
|
|
393
|
+
0x47, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3b, 0x0a, 0x06, 0x44,
|
|
394
|
+
0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x17, 0x2e, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x2e, 0x76, 0x31,
|
|
395
|
+
0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x18,
|
|
396
|
+
0x2e, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
|
|
397
|
+
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x36, 0x50, 0x01, 0x5a, 0x32, 0x67, 0x69,
|
|
398
|
+
0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x62, 0x61, 0x72, 0x75, 0x6d, 0x65, 0x74,
|
|
399
|
+
0x72, 0x69, 0x63, 0x2f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x73, 0x2f, 0x67, 0x65,
|
|
400
|
+
0x6e, 0x2f, 0x67, 0x6f, 0x2f, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x3b, 0x6d, 0x65, 0x64, 0x69, 0x61,
|
|
401
|
+
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
var (
|
|
405
|
+
file_media_proto_rawDescOnce sync.Once
|
|
406
|
+
file_media_proto_rawDescData = file_media_proto_rawDesc
|
|
407
|
+
)
|
|
408
|
+
|
|
409
|
+
func file_media_proto_rawDescGZIP() []byte {
|
|
410
|
+
file_media_proto_rawDescOnce.Do(func() {
|
|
411
|
+
file_media_proto_rawDescData = protoimpl.X.CompressGZIP(file_media_proto_rawDescData)
|
|
412
|
+
})
|
|
413
|
+
return file_media_proto_rawDescData
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
var file_media_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
|
|
417
|
+
var file_media_proto_goTypes = []interface{}{
|
|
418
|
+
(*UploadRequest)(nil), // 0: media.v1.UploadRequest
|
|
419
|
+
(*UploadResponse)(nil), // 1: media.v1.UploadResponse
|
|
420
|
+
(*GetRequest)(nil), // 2: media.v1.GetRequest
|
|
421
|
+
(*GetResponse)(nil), // 3: media.v1.GetResponse
|
|
422
|
+
(*DeleteRequest)(nil), // 4: media.v1.DeleteRequest
|
|
423
|
+
(*DeleteResponse)(nil), // 5: media.v1.DeleteResponse
|
|
424
|
+
}
|
|
425
|
+
var file_media_proto_depIdxs = []int32{
|
|
426
|
+
0, // 0: media.v1.MediaService.Upload:input_type -> media.v1.UploadRequest
|
|
427
|
+
2, // 1: media.v1.MediaService.Get:input_type -> media.v1.GetRequest
|
|
428
|
+
4, // 2: media.v1.MediaService.Delete:input_type -> media.v1.DeleteRequest
|
|
429
|
+
1, // 3: media.v1.MediaService.Upload:output_type -> media.v1.UploadResponse
|
|
430
|
+
3, // 4: media.v1.MediaService.Get:output_type -> media.v1.GetResponse
|
|
431
|
+
5, // 5: media.v1.MediaService.Delete:output_type -> media.v1.DeleteResponse
|
|
432
|
+
3, // [3:6] is the sub-list for method output_type
|
|
433
|
+
0, // [0:3] is the sub-list for method input_type
|
|
434
|
+
0, // [0:0] is the sub-list for extension type_name
|
|
435
|
+
0, // [0:0] is the sub-list for extension extendee
|
|
436
|
+
0, // [0:0] is the sub-list for field type_name
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
func init() { file_media_proto_init() }
|
|
440
|
+
func file_media_proto_init() {
|
|
441
|
+
if File_media_proto != nil {
|
|
442
|
+
return
|
|
443
|
+
}
|
|
444
|
+
if !protoimpl.UnsafeEnabled {
|
|
445
|
+
file_media_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
446
|
+
switch v := v.(*UploadRequest); i {
|
|
447
|
+
case 0:
|
|
448
|
+
return &v.state
|
|
449
|
+
case 1:
|
|
450
|
+
return &v.sizeCache
|
|
451
|
+
case 2:
|
|
452
|
+
return &v.unknownFields
|
|
453
|
+
default:
|
|
454
|
+
return nil
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
file_media_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
|
458
|
+
switch v := v.(*UploadResponse); i {
|
|
459
|
+
case 0:
|
|
460
|
+
return &v.state
|
|
461
|
+
case 1:
|
|
462
|
+
return &v.sizeCache
|
|
463
|
+
case 2:
|
|
464
|
+
return &v.unknownFields
|
|
465
|
+
default:
|
|
466
|
+
return nil
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
file_media_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
|
470
|
+
switch v := v.(*GetRequest); i {
|
|
471
|
+
case 0:
|
|
472
|
+
return &v.state
|
|
473
|
+
case 1:
|
|
474
|
+
return &v.sizeCache
|
|
475
|
+
case 2:
|
|
476
|
+
return &v.unknownFields
|
|
477
|
+
default:
|
|
478
|
+
return nil
|
|
479
|
+
}
|
|
480
|
+
}
|
|
481
|
+
file_media_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
|
482
|
+
switch v := v.(*GetResponse); i {
|
|
483
|
+
case 0:
|
|
484
|
+
return &v.state
|
|
485
|
+
case 1:
|
|
486
|
+
return &v.sizeCache
|
|
487
|
+
case 2:
|
|
488
|
+
return &v.unknownFields
|
|
489
|
+
default:
|
|
490
|
+
return nil
|
|
491
|
+
}
|
|
492
|
+
}
|
|
493
|
+
file_media_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
|
494
|
+
switch v := v.(*DeleteRequest); i {
|
|
495
|
+
case 0:
|
|
496
|
+
return &v.state
|
|
497
|
+
case 1:
|
|
498
|
+
return &v.sizeCache
|
|
499
|
+
case 2:
|
|
500
|
+
return &v.unknownFields
|
|
501
|
+
default:
|
|
502
|
+
return nil
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
file_media_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
|
506
|
+
switch v := v.(*DeleteResponse); i {
|
|
507
|
+
case 0:
|
|
508
|
+
return &v.state
|
|
509
|
+
case 1:
|
|
510
|
+
return &v.sizeCache
|
|
511
|
+
case 2:
|
|
512
|
+
return &v.unknownFields
|
|
513
|
+
default:
|
|
514
|
+
return nil
|
|
515
|
+
}
|
|
516
|
+
}
|
|
517
|
+
}
|
|
518
|
+
file_media_proto_msgTypes[0].OneofWrappers = []interface{}{}
|
|
519
|
+
type x struct{}
|
|
520
|
+
out := protoimpl.TypeBuilder{
|
|
521
|
+
File: protoimpl.DescBuilder{
|
|
522
|
+
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
523
|
+
RawDescriptor: file_media_proto_rawDesc,
|
|
524
|
+
NumEnums: 0,
|
|
525
|
+
NumMessages: 6,
|
|
526
|
+
NumExtensions: 0,
|
|
527
|
+
NumServices: 1,
|
|
528
|
+
},
|
|
529
|
+
GoTypes: file_media_proto_goTypes,
|
|
530
|
+
DependencyIndexes: file_media_proto_depIdxs,
|
|
531
|
+
MessageInfos: file_media_proto_msgTypes,
|
|
532
|
+
}.Build()
|
|
533
|
+
File_media_proto = out.File
|
|
534
|
+
file_media_proto_rawDesc = nil
|
|
535
|
+
file_media_proto_goTypes = nil
|
|
536
|
+
file_media_proto_depIdxs = nil
|
|
537
|
+
}
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
2
|
+
// versions:
|
|
3
|
+
// - protoc-gen-go-grpc v1.4.0
|
|
4
|
+
// - protoc v6.33.2
|
|
5
|
+
// source: media.proto
|
|
6
|
+
|
|
7
|
+
package media
|
|
8
|
+
|
|
9
|
+
import (
|
|
10
|
+
context "context"
|
|
11
|
+
grpc "google.golang.org/grpc"
|
|
12
|
+
codes "google.golang.org/grpc/codes"
|
|
13
|
+
status "google.golang.org/grpc/status"
|
|
14
|
+
)
|
|
15
|
+
|
|
16
|
+
// This is a compile-time assertion to ensure that this generated file
|
|
17
|
+
// is compatible with the grpc package it is being compiled against.
|
|
18
|
+
// Requires gRPC-Go v1.62.0 or later.
|
|
19
|
+
const _ = grpc.SupportPackageIsVersion8
|
|
20
|
+
|
|
21
|
+
const (
|
|
22
|
+
MediaService_Upload_FullMethodName = "/media.v1.MediaService/Upload"
|
|
23
|
+
MediaService_Get_FullMethodName = "/media.v1.MediaService/Get"
|
|
24
|
+
MediaService_Delete_FullMethodName = "/media.v1.MediaService/Delete"
|
|
25
|
+
)
|
|
26
|
+
|
|
27
|
+
// MediaServiceClient is the client API for MediaService service.
|
|
28
|
+
//
|
|
29
|
+
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
|
|
30
|
+
type MediaServiceClient interface {
|
|
31
|
+
Upload(ctx context.Context, in *UploadRequest, opts ...grpc.CallOption) (*UploadResponse, error)
|
|
32
|
+
Get(ctx context.Context, in *GetRequest, opts ...grpc.CallOption) (*GetResponse, error)
|
|
33
|
+
Delete(ctx context.Context, in *DeleteRequest, opts ...grpc.CallOption) (*DeleteResponse, error)
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
type mediaServiceClient struct {
|
|
37
|
+
cc grpc.ClientConnInterface
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
func NewMediaServiceClient(cc grpc.ClientConnInterface) MediaServiceClient {
|
|
41
|
+
return &mediaServiceClient{cc}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
func (c *mediaServiceClient) Upload(ctx context.Context, in *UploadRequest, opts ...grpc.CallOption) (*UploadResponse, error) {
|
|
45
|
+
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
46
|
+
out := new(UploadResponse)
|
|
47
|
+
err := c.cc.Invoke(ctx, MediaService_Upload_FullMethodName, in, out, cOpts...)
|
|
48
|
+
if err != nil {
|
|
49
|
+
return nil, err
|
|
50
|
+
}
|
|
51
|
+
return out, nil
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
func (c *mediaServiceClient) Get(ctx context.Context, in *GetRequest, opts ...grpc.CallOption) (*GetResponse, error) {
|
|
55
|
+
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
56
|
+
out := new(GetResponse)
|
|
57
|
+
err := c.cc.Invoke(ctx, MediaService_Get_FullMethodName, in, out, cOpts...)
|
|
58
|
+
if err != nil {
|
|
59
|
+
return nil, err
|
|
60
|
+
}
|
|
61
|
+
return out, nil
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
func (c *mediaServiceClient) Delete(ctx context.Context, in *DeleteRequest, opts ...grpc.CallOption) (*DeleteResponse, error) {
|
|
65
|
+
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
66
|
+
out := new(DeleteResponse)
|
|
67
|
+
err := c.cc.Invoke(ctx, MediaService_Delete_FullMethodName, in, out, cOpts...)
|
|
68
|
+
if err != nil {
|
|
69
|
+
return nil, err
|
|
70
|
+
}
|
|
71
|
+
return out, nil
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
// MediaServiceServer is the server API for MediaService service.
|
|
75
|
+
// All implementations must embed UnimplementedMediaServiceServer
|
|
76
|
+
// for forward compatibility
|
|
77
|
+
type MediaServiceServer interface {
|
|
78
|
+
Upload(context.Context, *UploadRequest) (*UploadResponse, error)
|
|
79
|
+
Get(context.Context, *GetRequest) (*GetResponse, error)
|
|
80
|
+
Delete(context.Context, *DeleteRequest) (*DeleteResponse, error)
|
|
81
|
+
mustEmbedUnimplementedMediaServiceServer()
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
// UnimplementedMediaServiceServer must be embedded to have forward compatible implementations.
|
|
85
|
+
type UnimplementedMediaServiceServer struct {
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
func (UnimplementedMediaServiceServer) Upload(context.Context, *UploadRequest) (*UploadResponse, error) {
|
|
89
|
+
return nil, status.Errorf(codes.Unimplemented, "method Upload not implemented")
|
|
90
|
+
}
|
|
91
|
+
func (UnimplementedMediaServiceServer) Get(context.Context, *GetRequest) (*GetResponse, error) {
|
|
92
|
+
return nil, status.Errorf(codes.Unimplemented, "method Get not implemented")
|
|
93
|
+
}
|
|
94
|
+
func (UnimplementedMediaServiceServer) Delete(context.Context, *DeleteRequest) (*DeleteResponse, error) {
|
|
95
|
+
return nil, status.Errorf(codes.Unimplemented, "method Delete not implemented")
|
|
96
|
+
}
|
|
97
|
+
func (UnimplementedMediaServiceServer) mustEmbedUnimplementedMediaServiceServer() {}
|
|
98
|
+
|
|
99
|
+
// UnsafeMediaServiceServer may be embedded to opt out of forward compatibility for this service.
|
|
100
|
+
// Use of this interface is not recommended, as added methods to MediaServiceServer will
|
|
101
|
+
// result in compilation errors.
|
|
102
|
+
type UnsafeMediaServiceServer interface {
|
|
103
|
+
mustEmbedUnimplementedMediaServiceServer()
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
func RegisterMediaServiceServer(s grpc.ServiceRegistrar, srv MediaServiceServer) {
|
|
107
|
+
s.RegisterService(&MediaService_ServiceDesc, srv)
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
func _MediaService_Upload_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
111
|
+
in := new(UploadRequest)
|
|
112
|
+
if err := dec(in); err != nil {
|
|
113
|
+
return nil, err
|
|
114
|
+
}
|
|
115
|
+
if interceptor == nil {
|
|
116
|
+
return srv.(MediaServiceServer).Upload(ctx, in)
|
|
117
|
+
}
|
|
118
|
+
info := &grpc.UnaryServerInfo{
|
|
119
|
+
Server: srv,
|
|
120
|
+
FullMethod: MediaService_Upload_FullMethodName,
|
|
121
|
+
}
|
|
122
|
+
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
123
|
+
return srv.(MediaServiceServer).Upload(ctx, req.(*UploadRequest))
|
|
124
|
+
}
|
|
125
|
+
return interceptor(ctx, in, info, handler)
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
func _MediaService_Get_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
129
|
+
in := new(GetRequest)
|
|
130
|
+
if err := dec(in); err != nil {
|
|
131
|
+
return nil, err
|
|
132
|
+
}
|
|
133
|
+
if interceptor == nil {
|
|
134
|
+
return srv.(MediaServiceServer).Get(ctx, in)
|
|
135
|
+
}
|
|
136
|
+
info := &grpc.UnaryServerInfo{
|
|
137
|
+
Server: srv,
|
|
138
|
+
FullMethod: MediaService_Get_FullMethodName,
|
|
139
|
+
}
|
|
140
|
+
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
141
|
+
return srv.(MediaServiceServer).Get(ctx, req.(*GetRequest))
|
|
142
|
+
}
|
|
143
|
+
return interceptor(ctx, in, info, handler)
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
func _MediaService_Delete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
147
|
+
in := new(DeleteRequest)
|
|
148
|
+
if err := dec(in); err != nil {
|
|
149
|
+
return nil, err
|
|
150
|
+
}
|
|
151
|
+
if interceptor == nil {
|
|
152
|
+
return srv.(MediaServiceServer).Delete(ctx, in)
|
|
153
|
+
}
|
|
154
|
+
info := &grpc.UnaryServerInfo{
|
|
155
|
+
Server: srv,
|
|
156
|
+
FullMethod: MediaService_Delete_FullMethodName,
|
|
157
|
+
}
|
|
158
|
+
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
159
|
+
return srv.(MediaServiceServer).Delete(ctx, req.(*DeleteRequest))
|
|
160
|
+
}
|
|
161
|
+
return interceptor(ctx, in, info, handler)
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
// MediaService_ServiceDesc is the grpc.ServiceDesc for MediaService service.
|
|
165
|
+
// It's only intended for direct use with grpc.RegisterService,
|
|
166
|
+
// and not to be introspected or modified (even as a copy)
|
|
167
|
+
var MediaService_ServiceDesc = grpc.ServiceDesc{
|
|
168
|
+
ServiceName: "media.v1.MediaService",
|
|
169
|
+
HandlerType: (*MediaServiceServer)(nil),
|
|
170
|
+
Methods: []grpc.MethodDesc{
|
|
171
|
+
{
|
|
172
|
+
MethodName: "Upload",
|
|
173
|
+
Handler: _MediaService_Upload_Handler,
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
MethodName: "Get",
|
|
177
|
+
Handler: _MediaService_Get_Handler,
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
MethodName: "Delete",
|
|
181
|
+
Handler: _MediaService_Delete_Handler,
|
|
182
|
+
},
|
|
183
|
+
},
|
|
184
|
+
Streams: []grpc.StreamDesc{},
|
|
185
|
+
Metadata: "media.proto",
|
|
186
|
+
}
|
|
@@ -0,0 +1,383 @@
|
|
|
1
|
+
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
|
+
// versions:
|
|
3
|
+
// protoc-gen-ts_proto v2.10.1
|
|
4
|
+
// protoc v3.21.12
|
|
5
|
+
// source: categories.proto
|
|
6
|
+
|
|
7
|
+
/* eslint-disable */
|
|
8
|
+
import { GrpcMethod, GrpcStreamMethod } from "@nestjs/microservices";
|
|
9
|
+
import { Observable } from "rxjs";
|
|
10
|
+
|
|
11
|
+
export const protobufPackage = "categories.v1";
|
|
12
|
+
|
|
13
|
+
/** Типы атрибутов */
|
|
14
|
+
export enum AttributeType {
|
|
15
|
+
ATTRIBUTE_TYPE_UNSPECIFIED = 0,
|
|
16
|
+
ATTRIBUTE_TYPE_STRING = 1,
|
|
17
|
+
ATTRIBUTE_TYPE_TEXT = 2,
|
|
18
|
+
ATTRIBUTE_TYPE_INTEGER = 3,
|
|
19
|
+
ATTRIBUTE_TYPE_FLOAT = 4,
|
|
20
|
+
ATTRIBUTE_TYPE_BOOLEAN = 5,
|
|
21
|
+
ATTRIBUTE_TYPE_ENUM = 6,
|
|
22
|
+
ATTRIBUTE_TYPE_MULTI_ENUM = 7,
|
|
23
|
+
ATTRIBUTE_TYPE_RANGE = 8,
|
|
24
|
+
ATTRIBUTE_TYPE_DATE = 9,
|
|
25
|
+
UNRECOGNIZED = -1,
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export interface GetTreeRequest {
|
|
29
|
+
/** Если не указан, возвращает корневые категории */
|
|
30
|
+
parentId?:
|
|
31
|
+
| string
|
|
32
|
+
| undefined;
|
|
33
|
+
/** Максимальная глубина (0 = без ограничений) */
|
|
34
|
+
maxDepth: number;
|
|
35
|
+
/** Только активные категории */
|
|
36
|
+
onlyActive: boolean;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export interface GetCategoryRequest {
|
|
40
|
+
id: string;
|
|
41
|
+
/** Включить атрибуты */
|
|
42
|
+
includeAttributes: boolean;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export interface GetCategoryBySlugRequest {
|
|
46
|
+
slug: string;
|
|
47
|
+
/** Для уникальности */
|
|
48
|
+
parentId?: string | undefined;
|
|
49
|
+
includeAttributes: boolean;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export interface GetChildrenRequest {
|
|
53
|
+
parentId: string;
|
|
54
|
+
onlyActive: boolean;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export interface GetPopularRequest {
|
|
58
|
+
/** Количество категорий */
|
|
59
|
+
limit: number;
|
|
60
|
+
/** Популярные в конкретной категории */
|
|
61
|
+
parentId?: string | undefined;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export interface GetAttributesRequest {
|
|
65
|
+
categoryId: string;
|
|
66
|
+
/** Только для фильтров */
|
|
67
|
+
onlyFilterable: boolean;
|
|
68
|
+
/** Включить наследуемые от родителей */
|
|
69
|
+
includeInherited: boolean;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export interface CreateCategoryRequest {
|
|
73
|
+
name: string;
|
|
74
|
+
slug: string;
|
|
75
|
+
description?: string | undefined;
|
|
76
|
+
iconUrl?: string | undefined;
|
|
77
|
+
bannerUrl?: string | undefined;
|
|
78
|
+
parentId?: string | undefined;
|
|
79
|
+
isLeaf: boolean;
|
|
80
|
+
sortOrder: number;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export interface UpdateCategoryRequest {
|
|
84
|
+
id: string;
|
|
85
|
+
name?: string | undefined;
|
|
86
|
+
slug?: string | undefined;
|
|
87
|
+
description?: string | undefined;
|
|
88
|
+
iconUrl?: string | undefined;
|
|
89
|
+
bannerUrl?: string | undefined;
|
|
90
|
+
isLeaf?: boolean | undefined;
|
|
91
|
+
isActive?: boolean | undefined;
|
|
92
|
+
sortOrder?: number | undefined;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
export interface DeleteCategoryRequest {
|
|
96
|
+
id: string;
|
|
97
|
+
/** Удалить дочерние категории */
|
|
98
|
+
cascade: boolean;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
export interface CreateAttributeRequest {
|
|
102
|
+
categoryId: string;
|
|
103
|
+
name: string;
|
|
104
|
+
key: string;
|
|
105
|
+
type: AttributeType;
|
|
106
|
+
isRequired: boolean;
|
|
107
|
+
isFilterable: boolean;
|
|
108
|
+
inherited: boolean;
|
|
109
|
+
unit?: string | undefined;
|
|
110
|
+
minValue?: number | undefined;
|
|
111
|
+
maxValue?: number | undefined;
|
|
112
|
+
sortOrder: number;
|
|
113
|
+
/** Для ENUM/MULTI_ENUM типов */
|
|
114
|
+
enumValues: EnumValueInput[];
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
export interface UpdateAttributeRequest {
|
|
118
|
+
id: string;
|
|
119
|
+
name?: string | undefined;
|
|
120
|
+
isRequired?: boolean | undefined;
|
|
121
|
+
isFilterable?: boolean | undefined;
|
|
122
|
+
unit?: string | undefined;
|
|
123
|
+
minValue?: number | undefined;
|
|
124
|
+
maxValue?: number | undefined;
|
|
125
|
+
sortOrder?: number | undefined;
|
|
126
|
+
enumValues: EnumValueInput[];
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
export interface DeleteAttributeRequest {
|
|
130
|
+
id: string;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
export interface GetTreeResponse {
|
|
134
|
+
nodes: CategoryNode[];
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
export interface GetCategoryResponse {
|
|
138
|
+
category: Category | undefined;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
export interface GetChildrenResponse {
|
|
142
|
+
categories: Category[];
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
export interface GetPopularResponse {
|
|
146
|
+
categories: Category[];
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
export interface GetAttributesResponse {
|
|
150
|
+
attributes: CategoryAttribute[];
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
export interface CreateCategoryResponse {
|
|
154
|
+
category: Category | undefined;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
export interface UpdateCategoryResponse {
|
|
158
|
+
category: Category | undefined;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
export interface DeleteCategoryResponse {
|
|
162
|
+
ok: boolean;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
export interface CreateAttributeResponse {
|
|
166
|
+
attribute: CategoryAttribute | undefined;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
export interface UpdateAttributeResponse {
|
|
170
|
+
attribute: CategoryAttribute | undefined;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
export interface DeleteAttributeResponse {
|
|
174
|
+
ok: boolean;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
export interface Category {
|
|
178
|
+
id: string;
|
|
179
|
+
name: string;
|
|
180
|
+
slug: string;
|
|
181
|
+
description?: string | undefined;
|
|
182
|
+
iconUrl?: string | undefined;
|
|
183
|
+
bannerUrl?: string | undefined;
|
|
184
|
+
isLeaf: boolean;
|
|
185
|
+
isActive: boolean;
|
|
186
|
+
sortOrder: number;
|
|
187
|
+
parentId?: string | undefined;
|
|
188
|
+
path: string;
|
|
189
|
+
depth: number;
|
|
190
|
+
adsCount: number;
|
|
191
|
+
/** Для дерева */
|
|
192
|
+
children: Category[];
|
|
193
|
+
/** Если include_attributes = true */
|
|
194
|
+
attributes: CategoryAttribute[];
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
export interface CategoryNode {
|
|
198
|
+
category: Category | undefined;
|
|
199
|
+
children: CategoryNode[];
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
export interface CategoryAttribute {
|
|
203
|
+
id: string;
|
|
204
|
+
categoryId: string;
|
|
205
|
+
name: string;
|
|
206
|
+
key: string;
|
|
207
|
+
type: AttributeType;
|
|
208
|
+
isRequired: boolean;
|
|
209
|
+
isFilterable: boolean;
|
|
210
|
+
inherited: boolean;
|
|
211
|
+
unit?: string | undefined;
|
|
212
|
+
minValue?: number | undefined;
|
|
213
|
+
maxValue?: number | undefined;
|
|
214
|
+
sortOrder: number;
|
|
215
|
+
enumValues: EnumValue[];
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
export interface EnumValue {
|
|
219
|
+
id: string;
|
|
220
|
+
value: string;
|
|
221
|
+
label: string;
|
|
222
|
+
sortOrder: number;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
export interface EnumValueInput {
|
|
226
|
+
value: string;
|
|
227
|
+
label: string;
|
|
228
|
+
sortOrder: number;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
export const CATEGORIES_V1_PACKAGE_NAME = "categories.v1";
|
|
232
|
+
|
|
233
|
+
export interface CategoriesServiceClient {
|
|
234
|
+
/** Получить дерево категорий */
|
|
235
|
+
|
|
236
|
+
getTree(request: GetTreeRequest): Observable<GetTreeResponse>;
|
|
237
|
+
|
|
238
|
+
/** Получить категорию по ID */
|
|
239
|
+
|
|
240
|
+
getCategory(request: GetCategoryRequest): Observable<GetCategoryResponse>;
|
|
241
|
+
|
|
242
|
+
/** Получить категорию по slug */
|
|
243
|
+
|
|
244
|
+
getCategoryBySlug(request: GetCategoryBySlugRequest): Observable<GetCategoryResponse>;
|
|
245
|
+
|
|
246
|
+
/** Получить дочерние категории */
|
|
247
|
+
|
|
248
|
+
getChildren(request: GetChildrenRequest): Observable<GetChildrenResponse>;
|
|
249
|
+
|
|
250
|
+
/** Получить популярные категории */
|
|
251
|
+
|
|
252
|
+
getPopular(request: GetPopularRequest): Observable<GetPopularResponse>;
|
|
253
|
+
|
|
254
|
+
/** Получить атрибуты категории (для фильтров) */
|
|
255
|
+
|
|
256
|
+
getAttributes(request: GetAttributesRequest): Observable<GetAttributesResponse>;
|
|
257
|
+
|
|
258
|
+
/** Создать категорию (админ) */
|
|
259
|
+
|
|
260
|
+
createCategory(request: CreateCategoryRequest): Observable<CreateCategoryResponse>;
|
|
261
|
+
|
|
262
|
+
/** Обновить категорию (админ) */
|
|
263
|
+
|
|
264
|
+
updateCategory(request: UpdateCategoryRequest): Observable<UpdateCategoryResponse>;
|
|
265
|
+
|
|
266
|
+
/** Удалить категорию (админ) */
|
|
267
|
+
|
|
268
|
+
deleteCategory(request: DeleteCategoryRequest): Observable<DeleteCategoryResponse>;
|
|
269
|
+
|
|
270
|
+
/** Создать атрибут (админ) */
|
|
271
|
+
|
|
272
|
+
createAttribute(request: CreateAttributeRequest): Observable<CreateAttributeResponse>;
|
|
273
|
+
|
|
274
|
+
/** Обновить атрибут (админ) */
|
|
275
|
+
|
|
276
|
+
updateAttribute(request: UpdateAttributeRequest): Observable<UpdateAttributeResponse>;
|
|
277
|
+
|
|
278
|
+
/** Удалить атрибут (админ) */
|
|
279
|
+
|
|
280
|
+
deleteAttribute(request: DeleteAttributeRequest): Observable<DeleteAttributeResponse>;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
export interface CategoriesServiceController {
|
|
284
|
+
/** Получить дерево категорий */
|
|
285
|
+
|
|
286
|
+
getTree(request: GetTreeRequest): Promise<GetTreeResponse> | Observable<GetTreeResponse> | GetTreeResponse;
|
|
287
|
+
|
|
288
|
+
/** Получить категорию по ID */
|
|
289
|
+
|
|
290
|
+
getCategory(
|
|
291
|
+
request: GetCategoryRequest,
|
|
292
|
+
): Promise<GetCategoryResponse> | Observable<GetCategoryResponse> | GetCategoryResponse;
|
|
293
|
+
|
|
294
|
+
/** Получить категорию по slug */
|
|
295
|
+
|
|
296
|
+
getCategoryBySlug(
|
|
297
|
+
request: GetCategoryBySlugRequest,
|
|
298
|
+
): Promise<GetCategoryResponse> | Observable<GetCategoryResponse> | GetCategoryResponse;
|
|
299
|
+
|
|
300
|
+
/** Получить дочерние категории */
|
|
301
|
+
|
|
302
|
+
getChildren(
|
|
303
|
+
request: GetChildrenRequest,
|
|
304
|
+
): Promise<GetChildrenResponse> | Observable<GetChildrenResponse> | GetChildrenResponse;
|
|
305
|
+
|
|
306
|
+
/** Получить популярные категории */
|
|
307
|
+
|
|
308
|
+
getPopular(
|
|
309
|
+
request: GetPopularRequest,
|
|
310
|
+
): Promise<GetPopularResponse> | Observable<GetPopularResponse> | GetPopularResponse;
|
|
311
|
+
|
|
312
|
+
/** Получить атрибуты категории (для фильтров) */
|
|
313
|
+
|
|
314
|
+
getAttributes(
|
|
315
|
+
request: GetAttributesRequest,
|
|
316
|
+
): Promise<GetAttributesResponse> | Observable<GetAttributesResponse> | GetAttributesResponse;
|
|
317
|
+
|
|
318
|
+
/** Создать категорию (админ) */
|
|
319
|
+
|
|
320
|
+
createCategory(
|
|
321
|
+
request: CreateCategoryRequest,
|
|
322
|
+
): Promise<CreateCategoryResponse> | Observable<CreateCategoryResponse> | CreateCategoryResponse;
|
|
323
|
+
|
|
324
|
+
/** Обновить категорию (админ) */
|
|
325
|
+
|
|
326
|
+
updateCategory(
|
|
327
|
+
request: UpdateCategoryRequest,
|
|
328
|
+
): Promise<UpdateCategoryResponse> | Observable<UpdateCategoryResponse> | UpdateCategoryResponse;
|
|
329
|
+
|
|
330
|
+
/** Удалить категорию (админ) */
|
|
331
|
+
|
|
332
|
+
deleteCategory(
|
|
333
|
+
request: DeleteCategoryRequest,
|
|
334
|
+
): Promise<DeleteCategoryResponse> | Observable<DeleteCategoryResponse> | DeleteCategoryResponse;
|
|
335
|
+
|
|
336
|
+
/** Создать атрибут (админ) */
|
|
337
|
+
|
|
338
|
+
createAttribute(
|
|
339
|
+
request: CreateAttributeRequest,
|
|
340
|
+
): Promise<CreateAttributeResponse> | Observable<CreateAttributeResponse> | CreateAttributeResponse;
|
|
341
|
+
|
|
342
|
+
/** Обновить атрибут (админ) */
|
|
343
|
+
|
|
344
|
+
updateAttribute(
|
|
345
|
+
request: UpdateAttributeRequest,
|
|
346
|
+
): Promise<UpdateAttributeResponse> | Observable<UpdateAttributeResponse> | UpdateAttributeResponse;
|
|
347
|
+
|
|
348
|
+
/** Удалить атрибут (админ) */
|
|
349
|
+
|
|
350
|
+
deleteAttribute(
|
|
351
|
+
request: DeleteAttributeRequest,
|
|
352
|
+
): Promise<DeleteAttributeResponse> | Observable<DeleteAttributeResponse> | DeleteAttributeResponse;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
export function CategoriesServiceControllerMethods() {
|
|
356
|
+
return function (constructor: Function) {
|
|
357
|
+
const grpcMethods: string[] = [
|
|
358
|
+
"getTree",
|
|
359
|
+
"getCategory",
|
|
360
|
+
"getCategoryBySlug",
|
|
361
|
+
"getChildren",
|
|
362
|
+
"getPopular",
|
|
363
|
+
"getAttributes",
|
|
364
|
+
"createCategory",
|
|
365
|
+
"updateCategory",
|
|
366
|
+
"deleteCategory",
|
|
367
|
+
"createAttribute",
|
|
368
|
+
"updateAttribute",
|
|
369
|
+
"deleteAttribute",
|
|
370
|
+
];
|
|
371
|
+
for (const method of grpcMethods) {
|
|
372
|
+
const descriptor: any = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
373
|
+
GrpcMethod("CategoriesService", method)(constructor.prototype[method], method, descriptor);
|
|
374
|
+
}
|
|
375
|
+
const grpcStreamMethods: string[] = [];
|
|
376
|
+
for (const method of grpcStreamMethods) {
|
|
377
|
+
const descriptor: any = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
378
|
+
GrpcStreamMethod("CategoriesService", method)(constructor.prototype[method], method, descriptor);
|
|
379
|
+
}
|
|
380
|
+
};
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
export const CATEGORIES_SERVICE_NAME = "CategoriesService";
|
package/package.json
CHANGED
|
@@ -0,0 +1,252 @@
|
|
|
1
|
+
syntax = "proto3";
|
|
2
|
+
|
|
3
|
+
package categories.v1;
|
|
4
|
+
|
|
5
|
+
import "google/protobuf/empty.proto";
|
|
6
|
+
|
|
7
|
+
service CategoriesService {
|
|
8
|
+
// Получить дерево категорий
|
|
9
|
+
rpc GetTree (GetTreeRequest) returns (GetTreeResponse);
|
|
10
|
+
|
|
11
|
+
// Получить категорию по ID
|
|
12
|
+
rpc GetCategory (GetCategoryRequest) returns (GetCategoryResponse);
|
|
13
|
+
|
|
14
|
+
// Получить категорию по slug
|
|
15
|
+
rpc GetCategoryBySlug (GetCategoryBySlugRequest) returns (GetCategoryResponse);
|
|
16
|
+
|
|
17
|
+
// Получить дочерние категории
|
|
18
|
+
rpc GetChildren (GetChildrenRequest) returns (GetChildrenResponse);
|
|
19
|
+
|
|
20
|
+
// Получить популярные категории
|
|
21
|
+
rpc GetPopular (GetPopularRequest) returns (GetPopularResponse);
|
|
22
|
+
|
|
23
|
+
// Получить атрибуты категории (для фильтров)
|
|
24
|
+
rpc GetAttributes (GetAttributesRequest) returns (GetAttributesResponse);
|
|
25
|
+
|
|
26
|
+
// Создать категорию (админ)
|
|
27
|
+
rpc CreateCategory (CreateCategoryRequest) returns (CreateCategoryResponse);
|
|
28
|
+
|
|
29
|
+
// Обновить категорию (админ)
|
|
30
|
+
rpc UpdateCategory (UpdateCategoryRequest) returns (UpdateCategoryResponse);
|
|
31
|
+
|
|
32
|
+
// Удалить категорию (админ)
|
|
33
|
+
rpc DeleteCategory (DeleteCategoryRequest) returns (DeleteCategoryResponse);
|
|
34
|
+
|
|
35
|
+
// Создать атрибут (админ)
|
|
36
|
+
rpc CreateAttribute (CreateAttributeRequest) returns (CreateAttributeResponse);
|
|
37
|
+
|
|
38
|
+
// Обновить атрибут (админ)
|
|
39
|
+
rpc UpdateAttribute (UpdateAttributeRequest) returns (UpdateAttributeResponse);
|
|
40
|
+
|
|
41
|
+
// Удалить атрибут (админ)
|
|
42
|
+
rpc DeleteAttribute (DeleteAttributeRequest) returns (DeleteAttributeResponse);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
// Запросы
|
|
46
|
+
|
|
47
|
+
message GetTreeRequest {
|
|
48
|
+
optional string parent_id = 1; // Если не указан, возвращает корневые категории
|
|
49
|
+
int32 max_depth = 2; // Максимальная глубина (0 = без ограничений)
|
|
50
|
+
bool only_active = 3; // Только активные категории
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
message GetCategoryRequest {
|
|
54
|
+
string id = 1;
|
|
55
|
+
bool include_attributes = 2; // Включить атрибуты
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
message GetCategoryBySlugRequest {
|
|
59
|
+
string slug = 1;
|
|
60
|
+
optional string parent_id = 2; // Для уникальности
|
|
61
|
+
bool include_attributes = 3;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
message GetChildrenRequest {
|
|
65
|
+
string parent_id = 1;
|
|
66
|
+
bool only_active = 2;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
message GetPopularRequest {
|
|
70
|
+
int32 limit = 1; // Количество категорий
|
|
71
|
+
optional string parent_id = 2; // Популярные в конкретной категории
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
message GetAttributesRequest {
|
|
75
|
+
string category_id = 1;
|
|
76
|
+
bool only_filterable = 2; // Только для фильтров
|
|
77
|
+
bool include_inherited = 3; // Включить наследуемые от родителей
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
message CreateCategoryRequest {
|
|
81
|
+
string name = 1;
|
|
82
|
+
string slug = 2;
|
|
83
|
+
optional string description = 3;
|
|
84
|
+
optional string icon_url = 4;
|
|
85
|
+
optional string banner_url = 5;
|
|
86
|
+
optional string parent_id = 6;
|
|
87
|
+
bool is_leaf = 7;
|
|
88
|
+
int32 sort_order = 8;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
message UpdateCategoryRequest {
|
|
92
|
+
string id = 1;
|
|
93
|
+
optional string name = 2;
|
|
94
|
+
optional string slug = 3;
|
|
95
|
+
optional string description = 4;
|
|
96
|
+
optional string icon_url = 5;
|
|
97
|
+
optional string banner_url = 6;
|
|
98
|
+
optional bool is_leaf = 7;
|
|
99
|
+
optional bool is_active = 8;
|
|
100
|
+
optional int32 sort_order = 9;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
message DeleteCategoryRequest {
|
|
104
|
+
string id = 1;
|
|
105
|
+
bool cascade = 2; // Удалить дочерние категории
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
message CreateAttributeRequest {
|
|
109
|
+
string category_id = 1;
|
|
110
|
+
string name = 2;
|
|
111
|
+
string key = 3;
|
|
112
|
+
AttributeType type = 4;
|
|
113
|
+
bool is_required = 5;
|
|
114
|
+
bool is_filterable = 6;
|
|
115
|
+
bool inherited = 7;
|
|
116
|
+
optional string unit = 8;
|
|
117
|
+
optional float min_value = 9;
|
|
118
|
+
optional float max_value = 10;
|
|
119
|
+
int32 sort_order = 11;
|
|
120
|
+
repeated EnumValueInput enum_values = 12; // Для ENUM/MULTI_ENUM типов
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
message UpdateAttributeRequest {
|
|
124
|
+
string id = 1;
|
|
125
|
+
optional string name = 2;
|
|
126
|
+
optional bool is_required = 3;
|
|
127
|
+
optional bool is_filterable = 4;
|
|
128
|
+
optional string unit = 5;
|
|
129
|
+
optional float min_value = 6;
|
|
130
|
+
optional float max_value = 7;
|
|
131
|
+
optional int32 sort_order = 8;
|
|
132
|
+
repeated EnumValueInput enum_values = 9;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
message DeleteAttributeRequest {
|
|
136
|
+
string id = 1;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
// Ответы
|
|
140
|
+
|
|
141
|
+
message GetTreeResponse {
|
|
142
|
+
repeated CategoryNode nodes = 1;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
message GetCategoryResponse {
|
|
146
|
+
Category category = 1;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
message GetChildrenResponse {
|
|
150
|
+
repeated Category categories = 1;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
message GetPopularResponse {
|
|
154
|
+
repeated Category categories = 1;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
message GetAttributesResponse {
|
|
158
|
+
repeated CategoryAttribute attributes = 1;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
message CreateCategoryResponse {
|
|
162
|
+
Category category = 1;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
message UpdateCategoryResponse {
|
|
166
|
+
Category category = 1;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
message DeleteCategoryResponse {
|
|
170
|
+
bool ok = 1;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
message CreateAttributeResponse {
|
|
174
|
+
CategoryAttribute attribute = 1;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
message UpdateAttributeResponse {
|
|
178
|
+
CategoryAttribute attribute = 1;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
message DeleteAttributeResponse {
|
|
182
|
+
bool ok = 1;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
// Модели
|
|
186
|
+
|
|
187
|
+
message Category {
|
|
188
|
+
string id = 1;
|
|
189
|
+
string name = 2;
|
|
190
|
+
string slug = 3;
|
|
191
|
+
optional string description = 4;
|
|
192
|
+
optional string icon_url = 5;
|
|
193
|
+
optional string banner_url = 6;
|
|
194
|
+
bool is_leaf = 7;
|
|
195
|
+
bool is_active = 8;
|
|
196
|
+
int32 sort_order = 9;
|
|
197
|
+
optional string parent_id = 10;
|
|
198
|
+
string path = 11;
|
|
199
|
+
int32 depth = 12;
|
|
200
|
+
int64 ads_count = 13;
|
|
201
|
+
repeated Category children = 14; // Для дерева
|
|
202
|
+
repeated CategoryAttribute attributes = 15; // Если include_attributes = true
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
message CategoryNode {
|
|
206
|
+
Category category = 1;
|
|
207
|
+
repeated CategoryNode children = 2;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
message CategoryAttribute {
|
|
211
|
+
string id = 1;
|
|
212
|
+
string category_id = 2;
|
|
213
|
+
string name = 3;
|
|
214
|
+
string key = 4;
|
|
215
|
+
AttributeType type = 5;
|
|
216
|
+
bool is_required = 6;
|
|
217
|
+
bool is_filterable = 7;
|
|
218
|
+
bool inherited = 8;
|
|
219
|
+
optional string unit = 9;
|
|
220
|
+
optional float min_value = 10;
|
|
221
|
+
optional float max_value = 11;
|
|
222
|
+
int32 sort_order = 12;
|
|
223
|
+
repeated EnumValue enum_values = 13;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
message EnumValue {
|
|
227
|
+
string id = 1;
|
|
228
|
+
string value = 2;
|
|
229
|
+
string label = 3;
|
|
230
|
+
int32 sort_order = 4;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
message EnumValueInput {
|
|
234
|
+
string value = 1;
|
|
235
|
+
string label = 2;
|
|
236
|
+
int32 sort_order = 3;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
// Типы атрибутов
|
|
240
|
+
enum AttributeType {
|
|
241
|
+
ATTRIBUTE_TYPE_UNSPECIFIED = 0;
|
|
242
|
+
ATTRIBUTE_TYPE_STRING = 1;
|
|
243
|
+
ATTRIBUTE_TYPE_TEXT = 2;
|
|
244
|
+
ATTRIBUTE_TYPE_INTEGER = 3;
|
|
245
|
+
ATTRIBUTE_TYPE_FLOAT = 4;
|
|
246
|
+
ATTRIBUTE_TYPE_BOOLEAN = 5;
|
|
247
|
+
ATTRIBUTE_TYPE_ENUM = 6;
|
|
248
|
+
ATTRIBUTE_TYPE_MULTI_ENUM = 7;
|
|
249
|
+
ATTRIBUTE_TYPE_RANGE = 8;
|
|
250
|
+
ATTRIBUTE_TYPE_DATE = 9;
|
|
251
|
+
}
|
|
252
|
+
|