this repo has no description
1// Code generated by protoc-gen-go. DO NOT EDIT.
2// versions:
3// protoc-gen-go v1.36.6
4// protoc (unknown)
5// source: profile.proto
6
7package vyletdatabase
8
9import (
10 _ "buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go/buf/validate"
11 protoreflect "google.golang.org/protobuf/reflect/protoreflect"
12 protoimpl "google.golang.org/protobuf/runtime/protoimpl"
13 timestamppb "google.golang.org/protobuf/types/known/timestamppb"
14 reflect "reflect"
15 sync "sync"
16 unsafe "unsafe"
17)
18
19const (
20 // Verify that this generated code is sufficiently up-to-date.
21 _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
22 // Verify that runtime/protoimpl is sufficiently up-to-date.
23 _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
24)
25
26type Profile struct {
27 state protoimpl.MessageState `protogen:"open.v1"`
28 Did string `protobuf:"bytes,1,opt,name=did,proto3" json:"did,omitempty"`
29 DisplayName *string `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3,oneof" json:"display_name,omitempty"`
30 Description *string `protobuf:"bytes,3,opt,name=description,proto3,oneof" json:"description,omitempty"`
31 Pronouns *string `protobuf:"bytes,4,opt,name=pronouns,proto3,oneof" json:"pronouns,omitempty"`
32 Avatar *string `protobuf:"bytes,5,opt,name=avatar,proto3,oneof" json:"avatar,omitempty"`
33 CreatedAt *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
34 IndexedAt *timestamppb.Timestamp `protobuf:"bytes,7,opt,name=indexed_at,json=indexedAt,proto3" json:"indexed_at,omitempty"`
35 unknownFields protoimpl.UnknownFields
36 sizeCache protoimpl.SizeCache
37}
38
39func (x *Profile) Reset() {
40 *x = Profile{}
41 mi := &file_profile_proto_msgTypes[0]
42 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
43 ms.StoreMessageInfo(mi)
44}
45
46func (x *Profile) String() string {
47 return protoimpl.X.MessageStringOf(x)
48}
49
50func (*Profile) ProtoMessage() {}
51
52func (x *Profile) ProtoReflect() protoreflect.Message {
53 mi := &file_profile_proto_msgTypes[0]
54 if x != nil {
55 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
56 if ms.LoadMessageInfo() == nil {
57 ms.StoreMessageInfo(mi)
58 }
59 return ms
60 }
61 return mi.MessageOf(x)
62}
63
64// Deprecated: Use Profile.ProtoReflect.Descriptor instead.
65func (*Profile) Descriptor() ([]byte, []int) {
66 return file_profile_proto_rawDescGZIP(), []int{0}
67}
68
69func (x *Profile) GetDid() string {
70 if x != nil {
71 return x.Did
72 }
73 return ""
74}
75
76func (x *Profile) GetDisplayName() string {
77 if x != nil && x.DisplayName != nil {
78 return *x.DisplayName
79 }
80 return ""
81}
82
83func (x *Profile) GetDescription() string {
84 if x != nil && x.Description != nil {
85 return *x.Description
86 }
87 return ""
88}
89
90func (x *Profile) GetPronouns() string {
91 if x != nil && x.Pronouns != nil {
92 return *x.Pronouns
93 }
94 return ""
95}
96
97func (x *Profile) GetAvatar() string {
98 if x != nil && x.Avatar != nil {
99 return *x.Avatar
100 }
101 return ""
102}
103
104func (x *Profile) GetCreatedAt() *timestamppb.Timestamp {
105 if x != nil {
106 return x.CreatedAt
107 }
108 return nil
109}
110
111func (x *Profile) GetIndexedAt() *timestamppb.Timestamp {
112 if x != nil {
113 return x.IndexedAt
114 }
115 return nil
116}
117
118type CreateProfileRequest struct {
119 state protoimpl.MessageState `protogen:"open.v1"`
120 Profile *Profile `protobuf:"bytes,1,opt,name=profile,proto3" json:"profile,omitempty"`
121 unknownFields protoimpl.UnknownFields
122 sizeCache protoimpl.SizeCache
123}
124
125func (x *CreateProfileRequest) Reset() {
126 *x = CreateProfileRequest{}
127 mi := &file_profile_proto_msgTypes[1]
128 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
129 ms.StoreMessageInfo(mi)
130}
131
132func (x *CreateProfileRequest) String() string {
133 return protoimpl.X.MessageStringOf(x)
134}
135
136func (*CreateProfileRequest) ProtoMessage() {}
137
138func (x *CreateProfileRequest) ProtoReflect() protoreflect.Message {
139 mi := &file_profile_proto_msgTypes[1]
140 if x != nil {
141 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
142 if ms.LoadMessageInfo() == nil {
143 ms.StoreMessageInfo(mi)
144 }
145 return ms
146 }
147 return mi.MessageOf(x)
148}
149
150// Deprecated: Use CreateProfileRequest.ProtoReflect.Descriptor instead.
151func (*CreateProfileRequest) Descriptor() ([]byte, []int) {
152 return file_profile_proto_rawDescGZIP(), []int{1}
153}
154
155func (x *CreateProfileRequest) GetProfile() *Profile {
156 if x != nil {
157 return x.Profile
158 }
159 return nil
160}
161
162type CreateProfileResponse struct {
163 state protoimpl.MessageState `protogen:"open.v1"`
164 Error *string `protobuf:"bytes,1,opt,name=error,proto3,oneof" json:"error,omitempty"`
165 unknownFields protoimpl.UnknownFields
166 sizeCache protoimpl.SizeCache
167}
168
169func (x *CreateProfileResponse) Reset() {
170 *x = CreateProfileResponse{}
171 mi := &file_profile_proto_msgTypes[2]
172 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
173 ms.StoreMessageInfo(mi)
174}
175
176func (x *CreateProfileResponse) String() string {
177 return protoimpl.X.MessageStringOf(x)
178}
179
180func (*CreateProfileResponse) ProtoMessage() {}
181
182func (x *CreateProfileResponse) ProtoReflect() protoreflect.Message {
183 mi := &file_profile_proto_msgTypes[2]
184 if x != nil {
185 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
186 if ms.LoadMessageInfo() == nil {
187 ms.StoreMessageInfo(mi)
188 }
189 return ms
190 }
191 return mi.MessageOf(x)
192}
193
194// Deprecated: Use CreateProfileResponse.ProtoReflect.Descriptor instead.
195func (*CreateProfileResponse) Descriptor() ([]byte, []int) {
196 return file_profile_proto_rawDescGZIP(), []int{2}
197}
198
199func (x *CreateProfileResponse) GetError() string {
200 if x != nil && x.Error != nil {
201 return *x.Error
202 }
203 return ""
204}
205
206type DeleteProfileRequest struct {
207 state protoimpl.MessageState `protogen:"open.v1"`
208 Did string `protobuf:"bytes,1,opt,name=did,proto3" json:"did,omitempty"`
209 unknownFields protoimpl.UnknownFields
210 sizeCache protoimpl.SizeCache
211}
212
213func (x *DeleteProfileRequest) Reset() {
214 *x = DeleteProfileRequest{}
215 mi := &file_profile_proto_msgTypes[3]
216 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
217 ms.StoreMessageInfo(mi)
218}
219
220func (x *DeleteProfileRequest) String() string {
221 return protoimpl.X.MessageStringOf(x)
222}
223
224func (*DeleteProfileRequest) ProtoMessage() {}
225
226func (x *DeleteProfileRequest) ProtoReflect() protoreflect.Message {
227 mi := &file_profile_proto_msgTypes[3]
228 if x != nil {
229 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
230 if ms.LoadMessageInfo() == nil {
231 ms.StoreMessageInfo(mi)
232 }
233 return ms
234 }
235 return mi.MessageOf(x)
236}
237
238// Deprecated: Use DeleteProfileRequest.ProtoReflect.Descriptor instead.
239func (*DeleteProfileRequest) Descriptor() ([]byte, []int) {
240 return file_profile_proto_rawDescGZIP(), []int{3}
241}
242
243func (x *DeleteProfileRequest) GetDid() string {
244 if x != nil {
245 return x.Did
246 }
247 return ""
248}
249
250type DeleteProfileResponse struct {
251 state protoimpl.MessageState `protogen:"open.v1"`
252 Error *string `protobuf:"bytes,1,opt,name=error,proto3,oneof" json:"error,omitempty"`
253 unknownFields protoimpl.UnknownFields
254 sizeCache protoimpl.SizeCache
255}
256
257func (x *DeleteProfileResponse) Reset() {
258 *x = DeleteProfileResponse{}
259 mi := &file_profile_proto_msgTypes[4]
260 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
261 ms.StoreMessageInfo(mi)
262}
263
264func (x *DeleteProfileResponse) String() string {
265 return protoimpl.X.MessageStringOf(x)
266}
267
268func (*DeleteProfileResponse) ProtoMessage() {}
269
270func (x *DeleteProfileResponse) ProtoReflect() protoreflect.Message {
271 mi := &file_profile_proto_msgTypes[4]
272 if x != nil {
273 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
274 if ms.LoadMessageInfo() == nil {
275 ms.StoreMessageInfo(mi)
276 }
277 return ms
278 }
279 return mi.MessageOf(x)
280}
281
282// Deprecated: Use DeleteProfileResponse.ProtoReflect.Descriptor instead.
283func (*DeleteProfileResponse) Descriptor() ([]byte, []int) {
284 return file_profile_proto_rawDescGZIP(), []int{4}
285}
286
287func (x *DeleteProfileResponse) GetError() string {
288 if x != nil && x.Error != nil {
289 return *x.Error
290 }
291 return ""
292}
293
294type GetProfileRequest struct {
295 state protoimpl.MessageState `protogen:"open.v1"`
296 Did string `protobuf:"bytes,1,opt,name=did,proto3" json:"did,omitempty"`
297 unknownFields protoimpl.UnknownFields
298 sizeCache protoimpl.SizeCache
299}
300
301func (x *GetProfileRequest) Reset() {
302 *x = GetProfileRequest{}
303 mi := &file_profile_proto_msgTypes[5]
304 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
305 ms.StoreMessageInfo(mi)
306}
307
308func (x *GetProfileRequest) String() string {
309 return protoimpl.X.MessageStringOf(x)
310}
311
312func (*GetProfileRequest) ProtoMessage() {}
313
314func (x *GetProfileRequest) ProtoReflect() protoreflect.Message {
315 mi := &file_profile_proto_msgTypes[5]
316 if x != nil {
317 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
318 if ms.LoadMessageInfo() == nil {
319 ms.StoreMessageInfo(mi)
320 }
321 return ms
322 }
323 return mi.MessageOf(x)
324}
325
326// Deprecated: Use GetProfileRequest.ProtoReflect.Descriptor instead.
327func (*GetProfileRequest) Descriptor() ([]byte, []int) {
328 return file_profile_proto_rawDescGZIP(), []int{5}
329}
330
331func (x *GetProfileRequest) GetDid() string {
332 if x != nil {
333 return x.Did
334 }
335 return ""
336}
337
338type GetProfileResponse struct {
339 state protoimpl.MessageState `protogen:"open.v1"`
340 Error *string `protobuf:"bytes,1,opt,name=error,proto3,oneof" json:"error,omitempty"`
341 Profile *Profile `protobuf:"bytes,2,opt,name=profile,proto3,oneof" json:"profile,omitempty"`
342 unknownFields protoimpl.UnknownFields
343 sizeCache protoimpl.SizeCache
344}
345
346func (x *GetProfileResponse) Reset() {
347 *x = GetProfileResponse{}
348 mi := &file_profile_proto_msgTypes[6]
349 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
350 ms.StoreMessageInfo(mi)
351}
352
353func (x *GetProfileResponse) String() string {
354 return protoimpl.X.MessageStringOf(x)
355}
356
357func (*GetProfileResponse) ProtoMessage() {}
358
359func (x *GetProfileResponse) ProtoReflect() protoreflect.Message {
360 mi := &file_profile_proto_msgTypes[6]
361 if x != nil {
362 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
363 if ms.LoadMessageInfo() == nil {
364 ms.StoreMessageInfo(mi)
365 }
366 return ms
367 }
368 return mi.MessageOf(x)
369}
370
371// Deprecated: Use GetProfileResponse.ProtoReflect.Descriptor instead.
372func (*GetProfileResponse) Descriptor() ([]byte, []int) {
373 return file_profile_proto_rawDescGZIP(), []int{6}
374}
375
376func (x *GetProfileResponse) GetError() string {
377 if x != nil && x.Error != nil {
378 return *x.Error
379 }
380 return ""
381}
382
383func (x *GetProfileResponse) GetProfile() *Profile {
384 if x != nil {
385 return x.Profile
386 }
387 return nil
388}
389
390type GetProfilesRequest struct {
391 state protoimpl.MessageState `protogen:"open.v1"`
392 Dids []string `protobuf:"bytes,1,rep,name=dids,proto3" json:"dids,omitempty"`
393 unknownFields protoimpl.UnknownFields
394 sizeCache protoimpl.SizeCache
395}
396
397func (x *GetProfilesRequest) Reset() {
398 *x = GetProfilesRequest{}
399 mi := &file_profile_proto_msgTypes[7]
400 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
401 ms.StoreMessageInfo(mi)
402}
403
404func (x *GetProfilesRequest) String() string {
405 return protoimpl.X.MessageStringOf(x)
406}
407
408func (*GetProfilesRequest) ProtoMessage() {}
409
410func (x *GetProfilesRequest) ProtoReflect() protoreflect.Message {
411 mi := &file_profile_proto_msgTypes[7]
412 if x != nil {
413 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
414 if ms.LoadMessageInfo() == nil {
415 ms.StoreMessageInfo(mi)
416 }
417 return ms
418 }
419 return mi.MessageOf(x)
420}
421
422// Deprecated: Use GetProfilesRequest.ProtoReflect.Descriptor instead.
423func (*GetProfilesRequest) Descriptor() ([]byte, []int) {
424 return file_profile_proto_rawDescGZIP(), []int{7}
425}
426
427func (x *GetProfilesRequest) GetDids() []string {
428 if x != nil {
429 return x.Dids
430 }
431 return nil
432}
433
434type GetProfilesResponse struct {
435 state protoimpl.MessageState `protogen:"open.v1"`
436 Error *string `protobuf:"bytes,1,opt,name=error,proto3,oneof" json:"error,omitempty"`
437 Profiles map[string]*Profile `protobuf:"bytes,2,rep,name=profiles,proto3" json:"profiles,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
438 unknownFields protoimpl.UnknownFields
439 sizeCache protoimpl.SizeCache
440}
441
442func (x *GetProfilesResponse) Reset() {
443 *x = GetProfilesResponse{}
444 mi := &file_profile_proto_msgTypes[8]
445 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
446 ms.StoreMessageInfo(mi)
447}
448
449func (x *GetProfilesResponse) String() string {
450 return protoimpl.X.MessageStringOf(x)
451}
452
453func (*GetProfilesResponse) ProtoMessage() {}
454
455func (x *GetProfilesResponse) ProtoReflect() protoreflect.Message {
456 mi := &file_profile_proto_msgTypes[8]
457 if x != nil {
458 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
459 if ms.LoadMessageInfo() == nil {
460 ms.StoreMessageInfo(mi)
461 }
462 return ms
463 }
464 return mi.MessageOf(x)
465}
466
467// Deprecated: Use GetProfilesResponse.ProtoReflect.Descriptor instead.
468func (*GetProfilesResponse) Descriptor() ([]byte, []int) {
469 return file_profile_proto_rawDescGZIP(), []int{8}
470}
471
472func (x *GetProfilesResponse) GetError() string {
473 if x != nil && x.Error != nil {
474 return *x.Error
475 }
476 return ""
477}
478
479func (x *GetProfilesResponse) GetProfiles() map[string]*Profile {
480 if x != nil {
481 return x.Profiles
482 }
483 return nil
484}
485
486var File_profile_proto protoreflect.FileDescriptor
487
488const file_profile_proto_rawDesc = "" +
489 "\n" +
490 "\rprofile.proto\x12\rvyletdatabase\x1a\x1bbuf/validate/validate.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xdf\x02\n" +
491 "\aProfile\x12\x18\n" +
492 "\x03did\x18\x01 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x03did\x12&\n" +
493 "\fdisplay_name\x18\x02 \x01(\tH\x00R\vdisplayName\x88\x01\x01\x12%\n" +
494 "\vdescription\x18\x03 \x01(\tH\x01R\vdescription\x88\x01\x01\x12\x1f\n" +
495 "\bpronouns\x18\x04 \x01(\tH\x02R\bpronouns\x88\x01\x01\x12\x1b\n" +
496 "\x06avatar\x18\x05 \x01(\tH\x03R\x06avatar\x88\x01\x01\x129\n" +
497 "\n" +
498 "created_at\x18\x06 \x01(\v2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n" +
499 "\n" +
500 "indexed_at\x18\a \x01(\v2\x1a.google.protobuf.TimestampR\tindexedAtB\x0f\n" +
501 "\r_display_nameB\x0e\n" +
502 "\f_descriptionB\v\n" +
503 "\t_pronounsB\t\n" +
504 "\a_avatar\"H\n" +
505 "\x14CreateProfileRequest\x120\n" +
506 "\aprofile\x18\x01 \x01(\v2\x16.vyletdatabase.ProfileR\aprofile\"<\n" +
507 "\x15CreateProfileResponse\x12\x19\n" +
508 "\x05error\x18\x01 \x01(\tH\x00R\x05error\x88\x01\x01B\b\n" +
509 "\x06_error\"0\n" +
510 "\x14DeleteProfileRequest\x12\x18\n" +
511 "\x03did\x18\x01 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x03did\"<\n" +
512 "\x15DeleteProfileResponse\x12\x19\n" +
513 "\x05error\x18\x01 \x01(\tH\x00R\x05error\x88\x01\x01B\b\n" +
514 "\x06_error\"-\n" +
515 "\x11GetProfileRequest\x12\x18\n" +
516 "\x03did\x18\x01 \x01(\tB\x06\xbaH\x03\xc8\x01\x01R\x03did\"|\n" +
517 "\x12GetProfileResponse\x12\x19\n" +
518 "\x05error\x18\x01 \x01(\tH\x00R\x05error\x88\x01\x01\x125\n" +
519 "\aprofile\x18\x02 \x01(\v2\x16.vyletdatabase.ProfileH\x01R\aprofile\x88\x01\x01B\b\n" +
520 "\x06_errorB\n" +
521 "\n" +
522 "\b_profile\"0\n" +
523 "\x12GetProfilesRequest\x12\x1a\n" +
524 "\x04dids\x18\x01 \x03(\tB\x06\xbaH\x03\xc8\x01\x01R\x04dids\"\xdd\x01\n" +
525 "\x13GetProfilesResponse\x12\x19\n" +
526 "\x05error\x18\x01 \x01(\tH\x00R\x05error\x88\x01\x01\x12L\n" +
527 "\bprofiles\x18\x02 \x03(\v20.vyletdatabase.GetProfilesResponse.ProfilesEntryR\bprofiles\x1aS\n" +
528 "\rProfilesEntry\x12\x10\n" +
529 "\x03key\x18\x01 \x01(\tR\x03key\x12,\n" +
530 "\x05value\x18\x02 \x01(\v2\x16.vyletdatabase.ProfileR\x05value:\x028\x01B\b\n" +
531 "\x06_error2\xcd\x03\n" +
532 "\x0eProfileService\x12Z\n" +
533 "\rCreateProfile\x12#.vyletdatabase.CreateProfileRequest\x1a$.vyletdatabase.CreateProfileResponse\x12Z\n" +
534 "\rUpdateProfile\x12#.vyletdatabase.CreateProfileRequest\x1a$.vyletdatabase.CreateProfileResponse\x12Z\n" +
535 "\rDeleteProfile\x12#.vyletdatabase.DeleteProfileRequest\x1a$.vyletdatabase.DeleteProfileResponse\x12Q\n" +
536 "\n" +
537 "GetProfile\x12 .vyletdatabase.GetProfileRequest\x1a!.vyletdatabase.GetProfileResponse\x12T\n" +
538 "\vGetProfiles\x12!.vyletdatabase.GetProfilesRequest\x1a\".vyletdatabase.GetProfilesResponseB\x87\x01\n" +
539 "\x11com.vyletdatabaseB\fProfileProtoP\x01Z\x10./;vyletdatabase\xa2\x02\x03VXX\xaa\x02\rVyletdatabase\xca\x02\rVyletdatabase\xe2\x02\x19Vyletdatabase\\GPBMetadata\xea\x02\rVyletdatabaseb\x06proto3"
540
541var (
542 file_profile_proto_rawDescOnce sync.Once
543 file_profile_proto_rawDescData []byte
544)
545
546func file_profile_proto_rawDescGZIP() []byte {
547 file_profile_proto_rawDescOnce.Do(func() {
548 file_profile_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_profile_proto_rawDesc), len(file_profile_proto_rawDesc)))
549 })
550 return file_profile_proto_rawDescData
551}
552
553var file_profile_proto_msgTypes = make([]protoimpl.MessageInfo, 10)
554var file_profile_proto_goTypes = []any{
555 (*Profile)(nil), // 0: vyletdatabase.Profile
556 (*CreateProfileRequest)(nil), // 1: vyletdatabase.CreateProfileRequest
557 (*CreateProfileResponse)(nil), // 2: vyletdatabase.CreateProfileResponse
558 (*DeleteProfileRequest)(nil), // 3: vyletdatabase.DeleteProfileRequest
559 (*DeleteProfileResponse)(nil), // 4: vyletdatabase.DeleteProfileResponse
560 (*GetProfileRequest)(nil), // 5: vyletdatabase.GetProfileRequest
561 (*GetProfileResponse)(nil), // 6: vyletdatabase.GetProfileResponse
562 (*GetProfilesRequest)(nil), // 7: vyletdatabase.GetProfilesRequest
563 (*GetProfilesResponse)(nil), // 8: vyletdatabase.GetProfilesResponse
564 nil, // 9: vyletdatabase.GetProfilesResponse.ProfilesEntry
565 (*timestamppb.Timestamp)(nil), // 10: google.protobuf.Timestamp
566}
567var file_profile_proto_depIdxs = []int32{
568 10, // 0: vyletdatabase.Profile.created_at:type_name -> google.protobuf.Timestamp
569 10, // 1: vyletdatabase.Profile.indexed_at:type_name -> google.protobuf.Timestamp
570 0, // 2: vyletdatabase.CreateProfileRequest.profile:type_name -> vyletdatabase.Profile
571 0, // 3: vyletdatabase.GetProfileResponse.profile:type_name -> vyletdatabase.Profile
572 9, // 4: vyletdatabase.GetProfilesResponse.profiles:type_name -> vyletdatabase.GetProfilesResponse.ProfilesEntry
573 0, // 5: vyletdatabase.GetProfilesResponse.ProfilesEntry.value:type_name -> vyletdatabase.Profile
574 1, // 6: vyletdatabase.ProfileService.CreateProfile:input_type -> vyletdatabase.CreateProfileRequest
575 1, // 7: vyletdatabase.ProfileService.UpdateProfile:input_type -> vyletdatabase.CreateProfileRequest
576 3, // 8: vyletdatabase.ProfileService.DeleteProfile:input_type -> vyletdatabase.DeleteProfileRequest
577 5, // 9: vyletdatabase.ProfileService.GetProfile:input_type -> vyletdatabase.GetProfileRequest
578 7, // 10: vyletdatabase.ProfileService.GetProfiles:input_type -> vyletdatabase.GetProfilesRequest
579 2, // 11: vyletdatabase.ProfileService.CreateProfile:output_type -> vyletdatabase.CreateProfileResponse
580 2, // 12: vyletdatabase.ProfileService.UpdateProfile:output_type -> vyletdatabase.CreateProfileResponse
581 4, // 13: vyletdatabase.ProfileService.DeleteProfile:output_type -> vyletdatabase.DeleteProfileResponse
582 6, // 14: vyletdatabase.ProfileService.GetProfile:output_type -> vyletdatabase.GetProfileResponse
583 8, // 15: vyletdatabase.ProfileService.GetProfiles:output_type -> vyletdatabase.GetProfilesResponse
584 11, // [11:16] is the sub-list for method output_type
585 6, // [6:11] is the sub-list for method input_type
586 6, // [6:6] is the sub-list for extension type_name
587 6, // [6:6] is the sub-list for extension extendee
588 0, // [0:6] is the sub-list for field type_name
589}
590
591func init() { file_profile_proto_init() }
592func file_profile_proto_init() {
593 if File_profile_proto != nil {
594 return
595 }
596 file_profile_proto_msgTypes[0].OneofWrappers = []any{}
597 file_profile_proto_msgTypes[2].OneofWrappers = []any{}
598 file_profile_proto_msgTypes[4].OneofWrappers = []any{}
599 file_profile_proto_msgTypes[6].OneofWrappers = []any{}
600 file_profile_proto_msgTypes[8].OneofWrappers = []any{}
601 type x struct{}
602 out := protoimpl.TypeBuilder{
603 File: protoimpl.DescBuilder{
604 GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
605 RawDescriptor: unsafe.Slice(unsafe.StringData(file_profile_proto_rawDesc), len(file_profile_proto_rawDesc)),
606 NumEnums: 0,
607 NumMessages: 10,
608 NumExtensions: 0,
609 NumServices: 1,
610 },
611 GoTypes: file_profile_proto_goTypes,
612 DependencyIndexes: file_profile_proto_depIdxs,
613 MessageInfos: file_profile_proto_msgTypes,
614 }.Build()
615 File_profile_proto = out.File
616 file_profile_proto_goTypes = nil
617 file_profile_proto_depIdxs = nil
618}