@togatherlabs/shared-protos 1.0.25 → 1.0.26
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/experienceservice/tags/v1/index.d.ts +1 -0
- package/dist/experienceservice/tags/v1/index.js +1 -0
- package/dist/experienceservice/tags/v1/tags_pb.d.ts +172 -0
- package/dist/experienceservice/tags/v1/tags_pb.d.ts.map +1 -0
- package/dist/experienceservice/tags/v1/tags_pb.js +43 -0
- package/dist/experienceservice/tags/v1/tags_pb.js.map +1 -0
- package/dist/userservice/user/v1/user_pb.d.ts +10 -10
- package/dist/userservice/user/v1/user_pb.d.ts.map +1 -1
- package/dist/userservice/user/v1/user_pb.js +1 -1
- package/dist/userservice/user/v1/user_pb.js.map +1 -1
- package/package.json +7 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './tags_pb.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './tags_pb.js';
|
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
3
|
+
/**
|
|
4
|
+
* Describes the file experienceservice/tags/v1/tags.proto.
|
|
5
|
+
*/
|
|
6
|
+
export declare const file_experienceservice_tags_v1_tags: GenFile;
|
|
7
|
+
/**
|
|
8
|
+
* @generated from message experienceservice.tags.v1.GetTagsRequest
|
|
9
|
+
*/
|
|
10
|
+
export type GetTagsRequest = Message<"experienceservice.tags.v1.GetTagsRequest"> & {
|
|
11
|
+
/**
|
|
12
|
+
* @generated from field: optional int32 page = 1;
|
|
13
|
+
*/
|
|
14
|
+
page?: number;
|
|
15
|
+
/**
|
|
16
|
+
* @generated from field: optional int32 limit = 2;
|
|
17
|
+
*/
|
|
18
|
+
limit?: number;
|
|
19
|
+
/**
|
|
20
|
+
* @generated from field: optional string search = 3;
|
|
21
|
+
*/
|
|
22
|
+
search?: string;
|
|
23
|
+
/**
|
|
24
|
+
* @generated from field: optional string name = 4;
|
|
25
|
+
*/
|
|
26
|
+
name?: string;
|
|
27
|
+
/**
|
|
28
|
+
* @generated from field: optional string sort_by = 5;
|
|
29
|
+
*/
|
|
30
|
+
sortBy?: string;
|
|
31
|
+
/**
|
|
32
|
+
* @generated from field: optional string sort_order = 6;
|
|
33
|
+
*/
|
|
34
|
+
sortOrder?: string;
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* Describes the message experienceservice.tags.v1.GetTagsRequest.
|
|
38
|
+
* Use `create(GetTagsRequestSchema)` to create a new message.
|
|
39
|
+
*/
|
|
40
|
+
export declare const GetTagsRequestSchema: GenMessage<GetTagsRequest>;
|
|
41
|
+
/**
|
|
42
|
+
* @generated from message experienceservice.tags.v1.GetTagsResponse
|
|
43
|
+
*/
|
|
44
|
+
export type GetTagsResponse = Message<"experienceservice.tags.v1.GetTagsResponse"> & {
|
|
45
|
+
/**
|
|
46
|
+
* @generated from field: repeated experienceservice.tags.v1.TagInfo tags = 1;
|
|
47
|
+
*/
|
|
48
|
+
tags: TagInfo[];
|
|
49
|
+
/**
|
|
50
|
+
* @generated from field: optional experienceservice.tags.v1.Pagination pagination = 2;
|
|
51
|
+
*/
|
|
52
|
+
pagination?: Pagination;
|
|
53
|
+
};
|
|
54
|
+
/**
|
|
55
|
+
* Describes the message experienceservice.tags.v1.GetTagsResponse.
|
|
56
|
+
* Use `create(GetTagsResponseSchema)` to create a new message.
|
|
57
|
+
*/
|
|
58
|
+
export declare const GetTagsResponseSchema: GenMessage<GetTagsResponse>;
|
|
59
|
+
/**
|
|
60
|
+
* @generated from message experienceservice.tags.v1.GetTagByIdRequest
|
|
61
|
+
*/
|
|
62
|
+
export type GetTagByIdRequest = Message<"experienceservice.tags.v1.GetTagByIdRequest"> & {
|
|
63
|
+
/**
|
|
64
|
+
* @generated from field: string id = 1;
|
|
65
|
+
*/
|
|
66
|
+
id: string;
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* Describes the message experienceservice.tags.v1.GetTagByIdRequest.
|
|
70
|
+
* Use `create(GetTagByIdRequestSchema)` to create a new message.
|
|
71
|
+
*/
|
|
72
|
+
export declare const GetTagByIdRequestSchema: GenMessage<GetTagByIdRequest>;
|
|
73
|
+
/**
|
|
74
|
+
* @generated from message experienceservice.tags.v1.GetTagByIdResponse
|
|
75
|
+
*/
|
|
76
|
+
export type GetTagByIdResponse = Message<"experienceservice.tags.v1.GetTagByIdResponse"> & {
|
|
77
|
+
/**
|
|
78
|
+
* @generated from field: optional experienceservice.tags.v1.TagInfo tag = 1;
|
|
79
|
+
*/
|
|
80
|
+
tag?: TagInfo;
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* Describes the message experienceservice.tags.v1.GetTagByIdResponse.
|
|
84
|
+
* Use `create(GetTagByIdResponseSchema)` to create a new message.
|
|
85
|
+
*/
|
|
86
|
+
export declare const GetTagByIdResponseSchema: GenMessage<GetTagByIdResponse>;
|
|
87
|
+
/**
|
|
88
|
+
* @generated from message experienceservice.tags.v1.TagInfo
|
|
89
|
+
*/
|
|
90
|
+
export type TagInfo = Message<"experienceservice.tags.v1.TagInfo"> & {
|
|
91
|
+
/**
|
|
92
|
+
* @generated from field: string id = 1;
|
|
93
|
+
*/
|
|
94
|
+
id: string;
|
|
95
|
+
/**
|
|
96
|
+
* @generated from field: string name = 2;
|
|
97
|
+
*/
|
|
98
|
+
name: string;
|
|
99
|
+
/**
|
|
100
|
+
* @generated from field: string icon = 3;
|
|
101
|
+
*/
|
|
102
|
+
icon: string;
|
|
103
|
+
/**
|
|
104
|
+
* @generated from field: string created_at = 4;
|
|
105
|
+
*/
|
|
106
|
+
createdAt: string;
|
|
107
|
+
/**
|
|
108
|
+
* @generated from field: string updated_at = 5;
|
|
109
|
+
*/
|
|
110
|
+
updatedAt: string;
|
|
111
|
+
};
|
|
112
|
+
/**
|
|
113
|
+
* Describes the message experienceservice.tags.v1.TagInfo.
|
|
114
|
+
* Use `create(TagInfoSchema)` to create a new message.
|
|
115
|
+
*/
|
|
116
|
+
export declare const TagInfoSchema: GenMessage<TagInfo>;
|
|
117
|
+
/**
|
|
118
|
+
* @generated from message experienceservice.tags.v1.Pagination
|
|
119
|
+
*/
|
|
120
|
+
export type Pagination = Message<"experienceservice.tags.v1.Pagination"> & {
|
|
121
|
+
/**
|
|
122
|
+
* @generated from field: int32 page = 1;
|
|
123
|
+
*/
|
|
124
|
+
page: number;
|
|
125
|
+
/**
|
|
126
|
+
* @generated from field: int32 limit = 2;
|
|
127
|
+
*/
|
|
128
|
+
limit: number;
|
|
129
|
+
/**
|
|
130
|
+
* @generated from field: int32 total_items = 3;
|
|
131
|
+
*/
|
|
132
|
+
totalItems: number;
|
|
133
|
+
/**
|
|
134
|
+
* @generated from field: int32 total_pages = 4;
|
|
135
|
+
*/
|
|
136
|
+
totalPages: number;
|
|
137
|
+
/**
|
|
138
|
+
* @generated from field: bool has_next_page = 5;
|
|
139
|
+
*/
|
|
140
|
+
hasNextPage: boolean;
|
|
141
|
+
/**
|
|
142
|
+
* @generated from field: bool has_previous_page = 6;
|
|
143
|
+
*/
|
|
144
|
+
hasPreviousPage: boolean;
|
|
145
|
+
};
|
|
146
|
+
/**
|
|
147
|
+
* Describes the message experienceservice.tags.v1.Pagination.
|
|
148
|
+
* Use `create(PaginationSchema)` to create a new message.
|
|
149
|
+
*/
|
|
150
|
+
export declare const PaginationSchema: GenMessage<Pagination>;
|
|
151
|
+
/**
|
|
152
|
+
* @generated from service experienceservice.tags.v1.ExperienceService
|
|
153
|
+
*/
|
|
154
|
+
export declare const ExperienceService: GenService<{
|
|
155
|
+
/**
|
|
156
|
+
* @generated from rpc experienceservice.tags.v1.ExperienceService.GetTags
|
|
157
|
+
*/
|
|
158
|
+
getTags: {
|
|
159
|
+
methodKind: "unary";
|
|
160
|
+
input: typeof GetTagsRequestSchema;
|
|
161
|
+
output: typeof GetTagsResponseSchema;
|
|
162
|
+
};
|
|
163
|
+
/**
|
|
164
|
+
* @generated from rpc experienceservice.tags.v1.ExperienceService.GetTagById
|
|
165
|
+
*/
|
|
166
|
+
getTagById: {
|
|
167
|
+
methodKind: "unary";
|
|
168
|
+
input: typeof GetTagByIdRequestSchema;
|
|
169
|
+
output: typeof GetTagByIdResponseSchema;
|
|
170
|
+
};
|
|
171
|
+
}>;
|
|
172
|
+
//# sourceMappingURL=tags_pb.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tags_pb.d.ts","sourceRoot":"","sources":["../../../../src/experienceservice/tags/v1/tags_pb.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts"
|
|
2
|
+
// @generated from file experienceservice/tags/v1/tags.proto (package experienceservice.tags.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
+
/**
|
|
6
|
+
* Describes the file experienceservice/tags/v1/tags.proto.
|
|
7
|
+
*/
|
|
8
|
+
export const file_experienceservice_tags_v1_tags = /*@__PURE__*/ fileDesc("CiRleHBlcmllbmNlc2VydmljZS90YWdzL3YxL3RhZ3MucHJvdG8SGWV4cGVyaWVuY2VzZXJ2aWNlLnRhZ3MudjEi0AEKDkdldFRhZ3NSZXF1ZXN0EhEKBHBhZ2UYASABKAVIAIgBARISCgVsaW1pdBgCIAEoBUgBiAEBEhMKBnNlYXJjaBgDIAEoCUgCiAEBEhEKBG5hbWUYBCABKAlIA4gBARIUCgdzb3J0X2J5GAUgASgJSASIAQESFwoKc29ydF9vcmRlchgGIAEoCUgFiAEBQgcKBV9wYWdlQggKBl9saW1pdEIJCgdfc2VhcmNoQgcKBV9uYW1lQgoKCF9zb3J0X2J5Qg0KC19zb3J0X29yZGVyIpIBCg9HZXRUYWdzUmVzcG9uc2USMAoEdGFncxgBIAMoCzIiLmV4cGVyaWVuY2VzZXJ2aWNlLnRhZ3MudjEuVGFnSW5mbxI+CgpwYWdpbmF0aW9uGAIgASgLMiUuZXhwZXJpZW5jZXNlcnZpY2UudGFncy52MS5QYWdpbmF0aW9uSACIAQFCDQoLX3BhZ2luYXRpb24iHwoRR2V0VGFnQnlJZFJlcXVlc3QSCgoCaWQYASABKAkiUgoSR2V0VGFnQnlJZFJlc3BvbnNlEjQKA3RhZxgBIAEoCzIiLmV4cGVyaWVuY2VzZXJ2aWNlLnRhZ3MudjEuVGFnSW5mb0gAiAEBQgYKBF90YWciWQoHVGFnSW5mbxIKCgJpZBgBIAEoCRIMCgRuYW1lGAIgASgJEgwKBGljb24YAyABKAkSEgoKY3JlYXRlZF9hdBgEIAEoCRISCgp1cGRhdGVkX2F0GAUgASgJIoUBCgpQYWdpbmF0aW9uEgwKBHBhZ2UYASABKAUSDQoFbGltaXQYAiABKAUSEwoLdG90YWxfaXRlbXMYAyABKAUSEwoLdG90YWxfcGFnZXMYBCABKAUSFQoNaGFzX25leHRfcGFnZRgFIAEoCBIZChFoYXNfcHJldmlvdXNfcGFnZRgGIAEoCDLgAQoRRXhwZXJpZW5jZVNlcnZpY2USYAoHR2V0VGFncxIpLmV4cGVyaWVuY2VzZXJ2aWNlLnRhZ3MudjEuR2V0VGFnc1JlcXVlc3QaKi5leHBlcmllbmNlc2VydmljZS50YWdzLnYxLkdldFRhZ3NSZXNwb25zZRJpCgpHZXRUYWdCeUlkEiwuZXhwZXJpZW5jZXNlcnZpY2UudGFncy52MS5HZXRUYWdCeUlkUmVxdWVzdBotLmV4cGVyaWVuY2VzZXJ2aWNlLnRhZ3MudjEuR2V0VGFnQnlJZFJlc3BvbnNlYgZwcm90bzM");
|
|
9
|
+
/**
|
|
10
|
+
* Describes the message experienceservice.tags.v1.GetTagsRequest.
|
|
11
|
+
* Use `create(GetTagsRequestSchema)` to create a new message.
|
|
12
|
+
*/
|
|
13
|
+
export const GetTagsRequestSchema = /*@__PURE__*/ messageDesc(file_experienceservice_tags_v1_tags, 0);
|
|
14
|
+
/**
|
|
15
|
+
* Describes the message experienceservice.tags.v1.GetTagsResponse.
|
|
16
|
+
* Use `create(GetTagsResponseSchema)` to create a new message.
|
|
17
|
+
*/
|
|
18
|
+
export const GetTagsResponseSchema = /*@__PURE__*/ messageDesc(file_experienceservice_tags_v1_tags, 1);
|
|
19
|
+
/**
|
|
20
|
+
* Describes the message experienceservice.tags.v1.GetTagByIdRequest.
|
|
21
|
+
* Use `create(GetTagByIdRequestSchema)` to create a new message.
|
|
22
|
+
*/
|
|
23
|
+
export const GetTagByIdRequestSchema = /*@__PURE__*/ messageDesc(file_experienceservice_tags_v1_tags, 2);
|
|
24
|
+
/**
|
|
25
|
+
* Describes the message experienceservice.tags.v1.GetTagByIdResponse.
|
|
26
|
+
* Use `create(GetTagByIdResponseSchema)` to create a new message.
|
|
27
|
+
*/
|
|
28
|
+
export const GetTagByIdResponseSchema = /*@__PURE__*/ messageDesc(file_experienceservice_tags_v1_tags, 3);
|
|
29
|
+
/**
|
|
30
|
+
* Describes the message experienceservice.tags.v1.TagInfo.
|
|
31
|
+
* Use `create(TagInfoSchema)` to create a new message.
|
|
32
|
+
*/
|
|
33
|
+
export const TagInfoSchema = /*@__PURE__*/ messageDesc(file_experienceservice_tags_v1_tags, 4);
|
|
34
|
+
/**
|
|
35
|
+
* Describes the message experienceservice.tags.v1.Pagination.
|
|
36
|
+
* Use `create(PaginationSchema)` to create a new message.
|
|
37
|
+
*/
|
|
38
|
+
export const PaginationSchema = /*@__PURE__*/ messageDesc(file_experienceservice_tags_v1_tags, 5);
|
|
39
|
+
/**
|
|
40
|
+
* @generated from service experienceservice.tags.v1.ExperienceService
|
|
41
|
+
*/
|
|
42
|
+
export const ExperienceService = /*@__PURE__*/ serviceDesc(file_experienceservice_tags_v1_tags, 0);
|
|
43
|
+
//# sourceMappingURL=tags_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tags_pb.js","sourceRoot":"","sources":["../../../../src/experienceservice/tags/v1/tags_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,+GAA+G;AAC/G,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAGlF;;GAEG;AACH,MAAM,CAAC,MAAM,mCAAmC,GAAY,aAAa,CACvE,QAAQ,CAAC,6zCAA6zC,CAAC,CAAC;AAqC10C;;;GAGG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAA+B,aAAa,CAC3E,WAAW,CAAC,mCAAmC,EAAE,CAAC,CAAC,CAAC;AAiBtD;;;GAGG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAgC,aAAa,CAC7E,WAAW,CAAC,mCAAmC,EAAE,CAAC,CAAC,CAAC;AAYtD;;;GAGG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAkC,aAAa,CACjF,WAAW,CAAC,mCAAmC,EAAE,CAAC,CAAC,CAAC;AAYtD;;;GAGG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAmC,aAAa,CACnF,WAAW,CAAC,mCAAmC,EAAE,CAAC,CAAC,CAAC;AAgCtD;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAwB,aAAa,CAC7D,WAAW,CAAC,mCAAmC,EAAE,CAAC,CAAC,CAAC;AAqCtD;;;GAGG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAA2B,aAAa,CACnE,WAAW,CAAC,mCAAmC,EAAE,CAAC,CAAC,CAAC;AAEtD;;GAEG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAiBzB,aAAa,CAChB,WAAW,CAAC,mCAAmC,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -35,11 +35,11 @@ export type User = Message<"userservice.user.v1.User"> & {
|
|
|
35
35
|
*/
|
|
36
36
|
email: string;
|
|
37
37
|
/**
|
|
38
|
-
* @generated from field: string
|
|
38
|
+
* @generated from field: string first_name = 4;
|
|
39
39
|
*/
|
|
40
40
|
firstName: string;
|
|
41
41
|
/**
|
|
42
|
-
* @generated from field: string
|
|
42
|
+
* @generated from field: string last_name = 5;
|
|
43
43
|
*/
|
|
44
44
|
lastName: string;
|
|
45
45
|
/**
|
|
@@ -47,19 +47,19 @@ export type User = Message<"userservice.user.v1.User"> & {
|
|
|
47
47
|
*/
|
|
48
48
|
phone: string;
|
|
49
49
|
/**
|
|
50
|
-
* @generated from field: string
|
|
50
|
+
* @generated from field: string password_hash = 7;
|
|
51
51
|
*/
|
|
52
52
|
passwordHash: string;
|
|
53
53
|
/**
|
|
54
|
-
* @generated from field: string
|
|
54
|
+
* @generated from field: string google_sub = 8;
|
|
55
55
|
*/
|
|
56
56
|
googleSub: string;
|
|
57
57
|
/**
|
|
58
|
-
* @generated from field: string
|
|
58
|
+
* @generated from field: string display_name = 9;
|
|
59
59
|
*/
|
|
60
60
|
displayName: string;
|
|
61
61
|
/**
|
|
62
|
-
* @generated from field: string
|
|
62
|
+
* @generated from field: string avatar_key = 10;
|
|
63
63
|
*/
|
|
64
64
|
avatarKey: string;
|
|
65
65
|
/**
|
|
@@ -71,11 +71,11 @@ export type User = Message<"userservice.user.v1.User"> & {
|
|
|
71
71
|
*/
|
|
72
72
|
gender: string;
|
|
73
73
|
/**
|
|
74
|
-
* @generated from field: string
|
|
74
|
+
* @generated from field: string home_city = 13;
|
|
75
75
|
*/
|
|
76
76
|
homeCity: string;
|
|
77
77
|
/**
|
|
78
|
-
* @generated from field: int32
|
|
78
|
+
* @generated from field: int32 social_score = 14;
|
|
79
79
|
*/
|
|
80
80
|
socialScore: number;
|
|
81
81
|
/**
|
|
@@ -83,11 +83,11 @@ export type User = Message<"userservice.user.v1.User"> & {
|
|
|
83
83
|
*/
|
|
84
84
|
status: string;
|
|
85
85
|
/**
|
|
86
|
-
* @generated from field: string
|
|
86
|
+
* @generated from field: string created_at = 16;
|
|
87
87
|
*/
|
|
88
88
|
createdAt: string;
|
|
89
89
|
/**
|
|
90
|
-
* @generated from field: string
|
|
90
|
+
* @generated from field: string updated_at = 17;
|
|
91
91
|
*/
|
|
92
92
|
updatedAt: string;
|
|
93
93
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user_pb.d.ts","sourceRoot":"","sources":["../../../../src/userservice/user/v1/user_pb.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAEpF,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,6BAA6B,EAAE,
|
|
1
|
+
{"version":3,"file":"user_pb.d.ts","sourceRoot":"","sources":["../../../../src/userservice/user/v1/user_pb.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAEpF,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,6BAA6B,EAAE,OAC0uB,CAAC;AAEvxB;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,uCAAuC,CAAC,GAAG;IACjF;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,uBAAuB,EAAE,UAAU,CAAC,iBAAiB,CACnB,CAAC;AAEhD;;GAEG;AACH,MAAM,MAAM,IAAI,GAAG,OAAO,CAAC,0BAA0B,CAAC,GAAG;IACvD;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;IAEZ;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,UAAU,EAAE,UAAU,CAAC,IAAI,CACO,CAAC;AAEhD;;GAEG;AACH,MAAM,MAAM,kBAAkB,GAAG,OAAO,CAAC,wCAAwC,CAAC,GAAG;IACnF;;OAEG;IACH,IAAI,CAAC,EAAE,IAAI,CAAC;CACb,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,wBAAwB,EAAE,UAAU,CAAC,kBAAkB,CACrB,CAAC;AAEhD;;GAEG;AACH,eAAO,MAAM,WAAW,EAAE,UAAU,CAAC;IACnC;;OAEG;IACH,UAAU,EAAE;QACV,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,uBAAuB,CAAC;QACtC,MAAM,EAAE,OAAO,wBAAwB,CAAC;KACzC,CAAC;CACH,CAC8C,CAAC"}
|
|
@@ -5,7 +5,7 @@ import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2
|
|
|
5
5
|
/**
|
|
6
6
|
* Describes the file userservice/user/v1/user.proto.
|
|
7
7
|
*/
|
|
8
|
-
export const file_userservice_user_v1_user = /*@__PURE__*/ fileDesc("
|
|
8
|
+
export const file_userservice_user_v1_user = /*@__PURE__*/ fileDesc("Ch51c2Vyc2VydmljZS91c2VyL3YxL3VzZXIucHJvdG8SE3VzZXJzZXJ2aWNlLnVzZXIudjEiHwoRR2V0UHJvZmlsZVJlcXVlc3QSCgoCaWQYASABKAkiuAIKBFVzZXISCgoCaWQYASABKAkSDAoEbmFtZRgCIAEoCRINCgVlbWFpbBgDIAEoCRISCgpmaXJzdF9uYW1lGAQgASgJEhEKCWxhc3RfbmFtZRgFIAEoCRINCgVwaG9uZRgGIAEoCRIVCg1wYXNzd29yZF9oYXNoGAcgASgJEhIKCmdvb2dsZV9zdWIYCCABKAkSFAoMZGlzcGxheV9uYW1lGAkgASgJEhIKCmF2YXRhcl9rZXkYCiABKAkSCwoDZG9iGAsgASgJEg4KBmdlbmRlchgMIAEoCRIRCglob21lX2NpdHkYDSABKAkSFAoMc29jaWFsX3Njb3JlGA4gASgFEg4KBnN0YXR1cxgPIAEoCRISCgpjcmVhdGVkX2F0GBAgASgJEhIKCnVwZGF0ZWRfYXQYESABKAkiPQoSR2V0UHJvZmlsZVJlc3BvbnNlEicKBHVzZXIYASABKAsyGS51c2Vyc2VydmljZS51c2VyLnYxLlVzZXIybAoLVXNlclNlcnZpY2USXQoKR2V0UHJvZmlsZRImLnVzZXJzZXJ2aWNlLnVzZXIudjEuR2V0UHJvZmlsZVJlcXVlc3QaJy51c2Vyc2VydmljZS51c2VyLnYxLkdldFByb2ZpbGVSZXNwb25zZWIGcHJvdG8z");
|
|
9
9
|
/**
|
|
10
10
|
* Describes the message userservice.user.v1.GetProfileRequest.
|
|
11
11
|
* Use `create(GetProfileRequestSchema)` to create a new message.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user_pb.js","sourceRoot":"","sources":["../../../../src/userservice/user/v1/user_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,mGAAmG;AACnG,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAGlF;;GAEG;AACH,MAAM,CAAC,MAAM,6BAA6B,GAAY,aAAa,CACjE,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"user_pb.js","sourceRoot":"","sources":["../../../../src/userservice/user/v1/user_pb.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,mGAAmG;AACnG,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAGlF;;GAEG;AACH,MAAM,CAAC,MAAM,6BAA6B,GAAY,aAAa,CACjE,QAAQ,CAAC,0wBAA0wB,CAAC,CAAC;AAYvxB;;;GAGG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAkC,aAAa,CACjF,WAAW,CAAC,6BAA6B,EAAE,CAAC,CAAC,CAAC;AA4FhD;;;GAGG;AACH,MAAM,CAAC,MAAM,UAAU,GAAqB,aAAa,CACvD,WAAW,CAAC,6BAA6B,EAAE,CAAC,CAAC,CAAC;AAYhD;;;GAGG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAmC,aAAa,CACnF,WAAW,CAAC,6BAA6B,EAAE,CAAC,CAAC,CAAC;AAEhD;;GAEG;AACH,MAAM,CAAC,MAAM,WAAW,GASnB,aAAa,CAChB,WAAW,CAAC,6BAA6B,EAAE,CAAC,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@togatherlabs/shared-protos",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.26",
|
|
4
4
|
"description": "Generated TypeScript gRPC definitions for Togather shared protos",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -27,6 +27,12 @@
|
|
|
27
27
|
"require": "./dist/experienceservice/experience/v1/index.js",
|
|
28
28
|
"default": "./dist/experienceservice/experience/v1/index.js"
|
|
29
29
|
},
|
|
30
|
+
"./experienceservice/tags/v1": {
|
|
31
|
+
"types": "./dist/experienceservice/tags/v1/index.d.ts",
|
|
32
|
+
"import": "./dist/experienceservice/tags/v1/index.js",
|
|
33
|
+
"require": "./dist/experienceservice/tags/v1/index.js",
|
|
34
|
+
"default": "./dist/experienceservice/tags/v1/index.js"
|
|
35
|
+
},
|
|
30
36
|
"./userservice/user/v1": {
|
|
31
37
|
"types": "./dist/userservice/user/v1/index.d.ts",
|
|
32
38
|
"import": "./dist/userservice/user/v1/index.js",
|