@togatherlabs/shared-protos 1.0.28 → 1.0.30
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/chatservice/chat/v1/chat_pb.d.ts +167 -0
- package/dist/chatservice/chat/v1/chat_pb.d.ts.map +1 -0
- package/dist/chatservice/chat/v1/chat_pb.js +40 -0
- package/dist/chatservice/chat/v1/chat_pb.js.map +1 -0
- package/dist/chatservice/chat/v1/index.d.ts +1 -0
- package/dist/chatservice/chat/v1/index.js +1 -0
- package/dist/experienceservice/tags/v1/tags_pb.d.ts +5 -59
- package/dist/experienceservice/tags/v1/tags_pb.d.ts.map +1 -1
- package/dist/experienceservice/tags/v1/tags_pb.js +2 -54
- package/dist/experienceservice/tags/v1/tags_pb.js.map +1 -1
- package/package.json +7 -1
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
3
|
+
/**
|
|
4
|
+
* Describes the file chatservice/chat/v1/chat.proto.
|
|
5
|
+
*/
|
|
6
|
+
export declare const file_chatservice_chat_v1_chat: GenFile;
|
|
7
|
+
/**
|
|
8
|
+
* Request to send a chat message
|
|
9
|
+
*
|
|
10
|
+
* @generated from message chatservice.chat.v1.SendChatMessageRequest
|
|
11
|
+
*/
|
|
12
|
+
export type SendChatMessageRequest = Message<"chatservice.chat.v1.SendChatMessageRequest"> & {
|
|
13
|
+
/**
|
|
14
|
+
* @generated from field: string room_id = 1;
|
|
15
|
+
*/
|
|
16
|
+
roomId: string;
|
|
17
|
+
/**
|
|
18
|
+
* @generated from field: string sender_id = 2;
|
|
19
|
+
*/
|
|
20
|
+
senderId: string;
|
|
21
|
+
/**
|
|
22
|
+
* @generated from field: string sender_name = 3;
|
|
23
|
+
*/
|
|
24
|
+
senderName: string;
|
|
25
|
+
/**
|
|
26
|
+
* @generated from field: string content = 4;
|
|
27
|
+
*/
|
|
28
|
+
content: string;
|
|
29
|
+
/**
|
|
30
|
+
* @generated from field: optional chatservice.chat.v1.ReplyToMessage reply_to = 5;
|
|
31
|
+
*/
|
|
32
|
+
replyTo?: ReplyToMessage;
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* Describes the message chatservice.chat.v1.SendChatMessageRequest.
|
|
36
|
+
* Use `create(SendChatMessageRequestSchema)` to create a new message.
|
|
37
|
+
*/
|
|
38
|
+
export declare const SendChatMessageRequestSchema: GenMessage<SendChatMessageRequest>;
|
|
39
|
+
/**
|
|
40
|
+
* Reply-to message reference (only ID, Chat Service will fetch full message)
|
|
41
|
+
*
|
|
42
|
+
* @generated from message chatservice.chat.v1.ReplyToMessage
|
|
43
|
+
*/
|
|
44
|
+
export type ReplyToMessage = Message<"chatservice.chat.v1.ReplyToMessage"> & {
|
|
45
|
+
/**
|
|
46
|
+
* @generated from field: string message_id = 1;
|
|
47
|
+
*/
|
|
48
|
+
messageId: string;
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* Describes the message chatservice.chat.v1.ReplyToMessage.
|
|
52
|
+
* Use `create(ReplyToMessageSchema)` to create a new message.
|
|
53
|
+
*/
|
|
54
|
+
export declare const ReplyToMessageSchema: GenMessage<ReplyToMessage>;
|
|
55
|
+
/**
|
|
56
|
+
* Response after saving message
|
|
57
|
+
*
|
|
58
|
+
* @generated from message chatservice.chat.v1.SendChatMessageResponse
|
|
59
|
+
*/
|
|
60
|
+
export type SendChatMessageResponse = Message<"chatservice.chat.v1.SendChatMessageResponse"> & {
|
|
61
|
+
/**
|
|
62
|
+
* @generated from field: bool success = 1;
|
|
63
|
+
*/
|
|
64
|
+
success: boolean;
|
|
65
|
+
/**
|
|
66
|
+
* @generated from field: optional chatservice.chat.v1.ChatMessage message = 2;
|
|
67
|
+
*/
|
|
68
|
+
message?: ChatMessage;
|
|
69
|
+
/**
|
|
70
|
+
* @generated from field: optional string error = 3;
|
|
71
|
+
*/
|
|
72
|
+
error?: string;
|
|
73
|
+
};
|
|
74
|
+
/**
|
|
75
|
+
* Describes the message chatservice.chat.v1.SendChatMessageResponse.
|
|
76
|
+
* Use `create(SendChatMessageResponseSchema)` to create a new message.
|
|
77
|
+
*/
|
|
78
|
+
export declare const SendChatMessageResponseSchema: GenMessage<SendChatMessageResponse>;
|
|
79
|
+
/**
|
|
80
|
+
* Saved chat message (returned to WebSocket service for broadcasting)
|
|
81
|
+
*
|
|
82
|
+
* @generated from message chatservice.chat.v1.ChatMessage
|
|
83
|
+
*/
|
|
84
|
+
export type ChatMessage = Message<"chatservice.chat.v1.ChatMessage"> & {
|
|
85
|
+
/**
|
|
86
|
+
* @generated from field: string message_id = 1;
|
|
87
|
+
*/
|
|
88
|
+
messageId: string;
|
|
89
|
+
/**
|
|
90
|
+
* @generated from field: string room_id = 2;
|
|
91
|
+
*/
|
|
92
|
+
roomId: string;
|
|
93
|
+
/**
|
|
94
|
+
* @generated from field: string sender_id = 3;
|
|
95
|
+
*/
|
|
96
|
+
senderId: string;
|
|
97
|
+
/**
|
|
98
|
+
* @generated from field: string sender_name = 4;
|
|
99
|
+
*/
|
|
100
|
+
senderName: string;
|
|
101
|
+
/**
|
|
102
|
+
* @generated from field: string content = 5;
|
|
103
|
+
*/
|
|
104
|
+
content: string;
|
|
105
|
+
/**
|
|
106
|
+
* @generated from field: int64 timestamp = 6;
|
|
107
|
+
*/
|
|
108
|
+
timestamp: bigint;
|
|
109
|
+
/**
|
|
110
|
+
* @generated from field: optional chatservice.chat.v1.ReplyToMessagePreview reply_to = 7;
|
|
111
|
+
*/
|
|
112
|
+
replyTo?: ReplyToMessagePreview;
|
|
113
|
+
};
|
|
114
|
+
/**
|
|
115
|
+
* Describes the message chatservice.chat.v1.ChatMessage.
|
|
116
|
+
* Use `create(ChatMessageSchema)` to create a new message.
|
|
117
|
+
*/
|
|
118
|
+
export declare const ChatMessageSchema: GenMessage<ChatMessage>;
|
|
119
|
+
/**
|
|
120
|
+
* Reply preview in response (includes original message preview)
|
|
121
|
+
*
|
|
122
|
+
* @generated from message chatservice.chat.v1.ReplyToMessagePreview
|
|
123
|
+
*/
|
|
124
|
+
export type ReplyToMessagePreview = Message<"chatservice.chat.v1.ReplyToMessagePreview"> & {
|
|
125
|
+
/**
|
|
126
|
+
* @generated from field: string message_id = 1;
|
|
127
|
+
*/
|
|
128
|
+
messageId: string;
|
|
129
|
+
/**
|
|
130
|
+
* Preview of original message (first 200 chars)
|
|
131
|
+
*
|
|
132
|
+
* @generated from field: string content = 2;
|
|
133
|
+
*/
|
|
134
|
+
content: string;
|
|
135
|
+
/**
|
|
136
|
+
* @generated from field: string sender_id = 3;
|
|
137
|
+
*/
|
|
138
|
+
senderId: string;
|
|
139
|
+
/**
|
|
140
|
+
* @generated from field: string sender_name = 4;
|
|
141
|
+
*/
|
|
142
|
+
senderName: string;
|
|
143
|
+
};
|
|
144
|
+
/**
|
|
145
|
+
* Describes the message chatservice.chat.v1.ReplyToMessagePreview.
|
|
146
|
+
* Use `create(ReplyToMessagePreviewSchema)` to create a new message.
|
|
147
|
+
*/
|
|
148
|
+
export declare const ReplyToMessagePreviewSchema: GenMessage<ReplyToMessagePreview>;
|
|
149
|
+
/**
|
|
150
|
+
* Chat Service RPC definition
|
|
151
|
+
*
|
|
152
|
+
* @generated from service chatservice.chat.v1.ChatService
|
|
153
|
+
*/
|
|
154
|
+
export declare const ChatService: GenService<{
|
|
155
|
+
/**
|
|
156
|
+
* Send a chat message to a room
|
|
157
|
+
* Returns the saved message with server timestamp
|
|
158
|
+
*
|
|
159
|
+
* @generated from rpc chatservice.chat.v1.ChatService.SendChatMessage
|
|
160
|
+
*/
|
|
161
|
+
sendChatMessage: {
|
|
162
|
+
methodKind: "unary";
|
|
163
|
+
input: typeof SendChatMessageRequestSchema;
|
|
164
|
+
output: typeof SendChatMessageResponseSchema;
|
|
165
|
+
};
|
|
166
|
+
}>;
|
|
167
|
+
//# sourceMappingURL=chat_pb.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chat_pb.d.ts","sourceRoot":"","sources":["../../../../src/chatservice/chat/v1/chat_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,OACklC,CAAC;AAE/nC;;;;GAIG;AACH,MAAM,MAAM,sBAAsB,GAAG,OAAO,CAAC,4CAA4C,CAAC,GAAG;IAC3F;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,OAAO,CAAC,EAAE,cAAc,CAAC;CAC1B,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,4BAA4B,EAAE,UAAU,CAAC,sBAAsB,CAC7B,CAAC;AAEhD;;;;GAIG;AACH,MAAM,MAAM,cAAc,GAAG,OAAO,CAAC,oCAAoC,CAAC,GAAG;IAC3E;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,oBAAoB,EAAE,UAAU,CAAC,cAAc,CACb,CAAC;AAEhD;;;;GAIG;AACH,MAAM,MAAM,uBAAuB,GAAG,OAAO,CAAC,6CAA6C,CAAC,GAAG;IAC7F;;OAEG;IACH,OAAO,EAAE,OAAO,CAAC;IAEjB;;OAEG;IACH,OAAO,CAAC,EAAE,WAAW,CAAC;IAEtB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,6BAA6B,EAAE,UAAU,CAAC,uBAAuB,CAC/B,CAAC;AAEhD;;;;GAIG;AACH,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,iCAAiC,CAAC,GAAG;IACrE;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,OAAO,CAAC,EAAE,qBAAqB,CAAC;CACjC,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,iBAAiB,EAAE,UAAU,CAAC,WAAW,CACP,CAAC;AAEhD;;;;GAIG;AACH,MAAM,MAAM,qBAAqB,GAAG,OAAO,CAAC,2CAA2C,CAAC,GAAG;IACzF;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;;;OAIG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,2BAA2B,EAAE,UAAU,CAAC,qBAAqB,CAC3B,CAAC;AAEhD;;;;GAIG;AACH,eAAO,MAAM,WAAW,EAAE,UAAU,CAAC;IACnC;;;;;OAKG;IACH,eAAe,EAAE;QACf,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,4BAA4B,CAAC;QAC3C,MAAM,EAAE,OAAO,6BAA6B,CAAC;KAC9C,CAAC;CACH,CAC8C,CAAC"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts"
|
|
2
|
+
// @generated from file chatservice/chat/v1/chat.proto (package chatservice.chat.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
+
/**
|
|
6
|
+
* Describes the file chatservice/chat/v1/chat.proto.
|
|
7
|
+
*/
|
|
8
|
+
export const file_chatservice_chat_v1_chat = /*@__PURE__*/ fileDesc("Ch5jaGF0c2VydmljZS9jaGF0L3YxL2NoYXQucHJvdG8SE2NoYXRzZXJ2aWNlLmNoYXQudjEiqwEKFlNlbmRDaGF0TWVzc2FnZVJlcXVlc3QSDwoHcm9vbV9pZBgBIAEoCRIRCglzZW5kZXJfaWQYAiABKAkSEwoLc2VuZGVyX25hbWUYAyABKAkSDwoHY29udGVudBgEIAEoCRI6CghyZXBseV90bxgFIAEoCzIjLmNoYXRzZXJ2aWNlLmNoYXQudjEuUmVwbHlUb01lc3NhZ2VIAIgBAUILCglfcmVwbHlfdG8iJAoOUmVwbHlUb01lc3NhZ2USEgoKbWVzc2FnZV9pZBgBIAEoCSKMAQoXU2VuZENoYXRNZXNzYWdlUmVzcG9uc2USDwoHc3VjY2VzcxgBIAEoCBI2CgdtZXNzYWdlGAIgASgLMiAuY2hhdHNlcnZpY2UuY2hhdC52MS5DaGF0TWVzc2FnZUgAiAEBEhIKBWVycm9yGAMgASgJSAGIAQFCCgoIX21lc3NhZ2VCCAoGX2Vycm9yIs4BCgtDaGF0TWVzc2FnZRISCgptZXNzYWdlX2lkGAEgASgJEg8KB3Jvb21faWQYAiABKAkSEQoJc2VuZGVyX2lkGAMgASgJEhMKC3NlbmRlcl9uYW1lGAQgASgJEg8KB2NvbnRlbnQYBSABKAkSEQoJdGltZXN0YW1wGAYgASgDEkEKCHJlcGx5X3RvGAcgASgLMiouY2hhdHNlcnZpY2UuY2hhdC52MS5SZXBseVRvTWVzc2FnZVByZXZpZXdIAIgBAUILCglfcmVwbHlfdG8iZAoVUmVwbHlUb01lc3NhZ2VQcmV2aWV3EhIKCm1lc3NhZ2VfaWQYASABKAkSDwoHY29udGVudBgCIAEoCRIRCglzZW5kZXJfaWQYAyABKAkSEwoLc2VuZGVyX25hbWUYBCABKAkyewoLQ2hhdFNlcnZpY2USbAoPU2VuZENoYXRNZXNzYWdlEisuY2hhdHNlcnZpY2UuY2hhdC52MS5TZW5kQ2hhdE1lc3NhZ2VSZXF1ZXN0GiwuY2hhdHNlcnZpY2UuY2hhdC52MS5TZW5kQ2hhdE1lc3NhZ2VSZXNwb25zZWIGcHJvdG8z");
|
|
9
|
+
/**
|
|
10
|
+
* Describes the message chatservice.chat.v1.SendChatMessageRequest.
|
|
11
|
+
* Use `create(SendChatMessageRequestSchema)` to create a new message.
|
|
12
|
+
*/
|
|
13
|
+
export const SendChatMessageRequestSchema = /*@__PURE__*/ messageDesc(file_chatservice_chat_v1_chat, 0);
|
|
14
|
+
/**
|
|
15
|
+
* Describes the message chatservice.chat.v1.ReplyToMessage.
|
|
16
|
+
* Use `create(ReplyToMessageSchema)` to create a new message.
|
|
17
|
+
*/
|
|
18
|
+
export const ReplyToMessageSchema = /*@__PURE__*/ messageDesc(file_chatservice_chat_v1_chat, 1);
|
|
19
|
+
/**
|
|
20
|
+
* Describes the message chatservice.chat.v1.SendChatMessageResponse.
|
|
21
|
+
* Use `create(SendChatMessageResponseSchema)` to create a new message.
|
|
22
|
+
*/
|
|
23
|
+
export const SendChatMessageResponseSchema = /*@__PURE__*/ messageDesc(file_chatservice_chat_v1_chat, 2);
|
|
24
|
+
/**
|
|
25
|
+
* Describes the message chatservice.chat.v1.ChatMessage.
|
|
26
|
+
* Use `create(ChatMessageSchema)` to create a new message.
|
|
27
|
+
*/
|
|
28
|
+
export const ChatMessageSchema = /*@__PURE__*/ messageDesc(file_chatservice_chat_v1_chat, 3);
|
|
29
|
+
/**
|
|
30
|
+
* Describes the message chatservice.chat.v1.ReplyToMessagePreview.
|
|
31
|
+
* Use `create(ReplyToMessagePreviewSchema)` to create a new message.
|
|
32
|
+
*/
|
|
33
|
+
export const ReplyToMessagePreviewSchema = /*@__PURE__*/ messageDesc(file_chatservice_chat_v1_chat, 4);
|
|
34
|
+
/**
|
|
35
|
+
* Chat Service RPC definition
|
|
36
|
+
*
|
|
37
|
+
* @generated from service chatservice.chat.v1.ChatService
|
|
38
|
+
*/
|
|
39
|
+
export const ChatService = /*@__PURE__*/ serviceDesc(file_chatservice_chat_v1_chat, 0);
|
|
40
|
+
//# sourceMappingURL=chat_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chat_pb.js","sourceRoot":"","sources":["../../../../src/chatservice/chat/v1/chat_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,knCAAknC,CAAC,CAAC;AAkC/nC;;;GAGG;AACH,MAAM,CAAC,MAAM,4BAA4B,GAAuC,aAAa,CAC3F,WAAW,CAAC,6BAA6B,EAAE,CAAC,CAAC,CAAC;AAchD;;;GAGG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAA+B,aAAa,CAC3E,WAAW,CAAC,6BAA6B,EAAE,CAAC,CAAC,CAAC;AAwBhD;;;GAGG;AACH,MAAM,CAAC,MAAM,6BAA6B,GAAwC,aAAa,CAC7F,WAAW,CAAC,6BAA6B,EAAE,CAAC,CAAC,CAAC;AA4ChD;;;GAGG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAA4B,aAAa,CACrE,WAAW,CAAC,6BAA6B,EAAE,CAAC,CAAC,CAAC;AA+BhD;;;GAGG;AACH,MAAM,CAAC,MAAM,2BAA2B,GAAsC,aAAa,CACzF,WAAW,CAAC,6BAA6B,EAAE,CAAC,CAAC,CAAC;AAEhD;;;;GAIG;AACH,MAAM,CAAC,MAAM,WAAW,GAYnB,aAAa,CAChB,WAAW,CAAC,6BAA6B,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './chat_pb.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './chat_pb.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
2
2
|
import type { Message } from "@bufbuild/protobuf";
|
|
3
3
|
/**
|
|
4
4
|
* Describes the file experienceservice/tags/v1/tags.proto.
|
|
@@ -25,17 +25,13 @@ export type GetTagsRequest = Message<"experienceservice.tags.v1.GetTagsRequest">
|
|
|
25
25
|
*/
|
|
26
26
|
name?: string;
|
|
27
27
|
/**
|
|
28
|
-
* @generated from field: optional
|
|
28
|
+
* @generated from field: optional string sort_by = 5;
|
|
29
29
|
*/
|
|
30
|
-
sortBy?:
|
|
30
|
+
sortBy?: string;
|
|
31
31
|
/**
|
|
32
|
-
* @generated from field: optional
|
|
32
|
+
* @generated from field: optional string sort_order = 6;
|
|
33
33
|
*/
|
|
34
|
-
|
|
35
|
-
/**
|
|
36
|
-
* @generated from field: optional experienceservice.tags.v1.SortOrder sort_order = 7;
|
|
37
|
-
*/
|
|
38
|
-
sortOrder?: SortOrder;
|
|
34
|
+
sortOrder?: string;
|
|
39
35
|
};
|
|
40
36
|
/**
|
|
41
37
|
* Describes the message experienceservice.tags.v1.GetTagsRequest.
|
|
@@ -152,56 +148,6 @@ export type Pagination = Message<"experienceservice.tags.v1.Pagination"> & {
|
|
|
152
148
|
* Use `create(PaginationSchema)` to create a new message.
|
|
153
149
|
*/
|
|
154
150
|
export declare const PaginationSchema: GenMessage<Pagination>;
|
|
155
|
-
/**
|
|
156
|
-
* @generated from enum experienceservice.tags.v1.SortBy
|
|
157
|
-
*/
|
|
158
|
-
export declare enum SortBy {
|
|
159
|
-
/**
|
|
160
|
-
* unspecified
|
|
161
|
-
*
|
|
162
|
-
* @generated from enum value: SORT_BY_UNSPECIFIED = 0;
|
|
163
|
-
*/
|
|
164
|
-
UNSPECIFIED = 0,
|
|
165
|
-
/**
|
|
166
|
-
* @generated from enum value: SORT_BY_NAME = 1;
|
|
167
|
-
*/
|
|
168
|
-
NAME = 1,
|
|
169
|
-
/**
|
|
170
|
-
* @generated from enum value: SORT_BY_CREATED_AT = 2;
|
|
171
|
-
*/
|
|
172
|
-
CREATED_AT = 2,
|
|
173
|
-
/**
|
|
174
|
-
* @generated from enum value: SORT_BY_UPDATED_AT = 3;
|
|
175
|
-
*/
|
|
176
|
-
UPDATED_AT = 3
|
|
177
|
-
}
|
|
178
|
-
/**
|
|
179
|
-
* Describes the enum experienceservice.tags.v1.SortBy.
|
|
180
|
-
*/
|
|
181
|
-
export declare const SortBySchema: GenEnum<SortBy>;
|
|
182
|
-
/**
|
|
183
|
-
* @generated from enum experienceservice.tags.v1.SortOrder
|
|
184
|
-
*/
|
|
185
|
-
export declare enum SortOrder {
|
|
186
|
-
/**
|
|
187
|
-
* unspecified
|
|
188
|
-
*
|
|
189
|
-
* @generated from enum value: SORT_ORDER_UNSPECIFIED = 0;
|
|
190
|
-
*/
|
|
191
|
-
UNSPECIFIED = 0,
|
|
192
|
-
/**
|
|
193
|
-
* @generated from enum value: SORT_ORDER_ASC = 1;
|
|
194
|
-
*/
|
|
195
|
-
ASC = 1,
|
|
196
|
-
/**
|
|
197
|
-
* @generated from enum value: SORT_ORDER_DESC = 2;
|
|
198
|
-
*/
|
|
199
|
-
DESC = 2
|
|
200
|
-
}
|
|
201
|
-
/**
|
|
202
|
-
* Describes the enum experienceservice.tags.v1.SortOrder.
|
|
203
|
-
*/
|
|
204
|
-
export declare const SortOrderSchema: GenEnum<SortOrder>;
|
|
205
151
|
/**
|
|
206
152
|
* @generated from service experienceservice.tags.v1.ExperienceService
|
|
207
153
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tags_pb.d.ts","sourceRoot":"","sources":["../../../../src/experienceservice/tags/v1/tags_pb.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"tags_pb.d.ts","sourceRoot":"","sources":["../../../../src/experienceservice/tags/v1/tags_pb.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
// @generated by protoc-gen-es v2.9.0 with parameter "target=ts"
|
|
2
2
|
// @generated from file experienceservice/tags/v1/tags.proto (package experienceservice.tags.v1, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
|
-
import {
|
|
4
|
+
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
5
|
/**
|
|
6
6
|
* Describes the file experienceservice/tags/v1/tags.proto.
|
|
7
7
|
*/
|
|
8
|
-
export const file_experienceservice_tags_v1_tags = /*@__PURE__*/ fileDesc("
|
|
8
|
+
export const file_experienceservice_tags_v1_tags = /*@__PURE__*/ fileDesc("CiRleHBlcmllbmNlc2VydmljZS90YWdzL3YxL3RhZ3MucHJvdG8SGWV4cGVyaWVuY2VzZXJ2aWNlLnRhZ3MudjEi0AEKDkdldFRhZ3NSZXF1ZXN0EhEKBHBhZ2UYASABKAVIAIgBARISCgVsaW1pdBgCIAEoBUgBiAEBEhMKBnNlYXJjaBgDIAEoCUgCiAEBEhEKBG5hbWUYBCABKAlIA4gBARIUCgdzb3J0X2J5GAUgASgJSASIAQESFwoKc29ydF9vcmRlchgGIAEoCUgFiAEBQgcKBV9wYWdlQggKBl9saW1pdEIJCgdfc2VhcmNoQgcKBV9uYW1lQgoKCF9zb3J0X2J5Qg0KC19zb3J0X29yZGVyIpIBCg9HZXRUYWdzUmVzcG9uc2USMAoEdGFncxgBIAMoCzIiLmV4cGVyaWVuY2VzZXJ2aWNlLnRhZ3MudjEuVGFnSW5mbxI+CgpwYWdpbmF0aW9uGAIgASgLMiUuZXhwZXJpZW5jZXNlcnZpY2UudGFncy52MS5QYWdpbmF0aW9uSACIAQFCDQoLX3BhZ2luYXRpb24iHwoRR2V0VGFnQnlJZFJlcXVlc3QSCgoCaWQYASABKAkiUgoSR2V0VGFnQnlJZFJlc3BvbnNlEjQKA3RhZxgBIAEoCzIiLmV4cGVyaWVuY2VzZXJ2aWNlLnRhZ3MudjEuVGFnSW5mb0gAiAEBQgYKBF90YWciWQoHVGFnSW5mbxIKCgJpZBgBIAEoCRIMCgRuYW1lGAIgASgJEgwKBGljb24YAyABKAkSEgoKY3JlYXRlZF9hdBgEIAEoCRISCgp1cGRhdGVkX2F0GAUgASgJIoUBCgpQYWdpbmF0aW9uEgwKBHBhZ2UYASABKAUSDQoFbGltaXQYAiABKAUSEwoLdG90YWxfaXRlbXMYAyABKAUSEwoLdG90YWxfcGFnZXMYBCABKAUSFQoNaGFzX25leHRfcGFnZRgFIAEoCBIZChFoYXNfcHJldmlvdXNfcGFnZRgGIAEoCDLgAQoRRXhwZXJpZW5jZVNlcnZpY2USYAoHR2V0VGFncxIpLmV4cGVyaWVuY2VzZXJ2aWNlLnRhZ3MudjEuR2V0VGFnc1JlcXVlc3QaKi5leHBlcmllbmNlc2VydmljZS50YWdzLnYxLkdldFRhZ3NSZXNwb25zZRJpCgpHZXRUYWdCeUlkEiwuZXhwZXJpZW5jZXNlcnZpY2UudGFncy52MS5HZXRUYWdCeUlkUmVxdWVzdBotLmV4cGVyaWVuY2VzZXJ2aWNlLnRhZ3MudjEuR2V0VGFnQnlJZFJlc3BvbnNlYgZwcm90bzM");
|
|
9
9
|
/**
|
|
10
10
|
* Describes the message experienceservice.tags.v1.GetTagsRequest.
|
|
11
11
|
* Use `create(GetTagsRequestSchema)` to create a new message.
|
|
@@ -36,58 +36,6 @@ export const TagInfoSchema = /*@__PURE__*/ messageDesc(file_experienceservice_ta
|
|
|
36
36
|
* Use `create(PaginationSchema)` to create a new message.
|
|
37
37
|
*/
|
|
38
38
|
export const PaginationSchema = /*@__PURE__*/ messageDesc(file_experienceservice_tags_v1_tags, 5);
|
|
39
|
-
/**
|
|
40
|
-
* @generated from enum experienceservice.tags.v1.SortBy
|
|
41
|
-
*/
|
|
42
|
-
export var SortBy;
|
|
43
|
-
(function (SortBy) {
|
|
44
|
-
/**
|
|
45
|
-
* unspecified
|
|
46
|
-
*
|
|
47
|
-
* @generated from enum value: SORT_BY_UNSPECIFIED = 0;
|
|
48
|
-
*/
|
|
49
|
-
SortBy[SortBy["UNSPECIFIED"] = 0] = "UNSPECIFIED";
|
|
50
|
-
/**
|
|
51
|
-
* @generated from enum value: SORT_BY_NAME = 1;
|
|
52
|
-
*/
|
|
53
|
-
SortBy[SortBy["NAME"] = 1] = "NAME";
|
|
54
|
-
/**
|
|
55
|
-
* @generated from enum value: SORT_BY_CREATED_AT = 2;
|
|
56
|
-
*/
|
|
57
|
-
SortBy[SortBy["CREATED_AT"] = 2] = "CREATED_AT";
|
|
58
|
-
/**
|
|
59
|
-
* @generated from enum value: SORT_BY_UPDATED_AT = 3;
|
|
60
|
-
*/
|
|
61
|
-
SortBy[SortBy["UPDATED_AT"] = 3] = "UPDATED_AT";
|
|
62
|
-
})(SortBy || (SortBy = {}));
|
|
63
|
-
/**
|
|
64
|
-
* Describes the enum experienceservice.tags.v1.SortBy.
|
|
65
|
-
*/
|
|
66
|
-
export const SortBySchema = /*@__PURE__*/ enumDesc(file_experienceservice_tags_v1_tags, 0);
|
|
67
|
-
/**
|
|
68
|
-
* @generated from enum experienceservice.tags.v1.SortOrder
|
|
69
|
-
*/
|
|
70
|
-
export var SortOrder;
|
|
71
|
-
(function (SortOrder) {
|
|
72
|
-
/**
|
|
73
|
-
* unspecified
|
|
74
|
-
*
|
|
75
|
-
* @generated from enum value: SORT_ORDER_UNSPECIFIED = 0;
|
|
76
|
-
*/
|
|
77
|
-
SortOrder[SortOrder["UNSPECIFIED"] = 0] = "UNSPECIFIED";
|
|
78
|
-
/**
|
|
79
|
-
* @generated from enum value: SORT_ORDER_ASC = 1;
|
|
80
|
-
*/
|
|
81
|
-
SortOrder[SortOrder["ASC"] = 1] = "ASC";
|
|
82
|
-
/**
|
|
83
|
-
* @generated from enum value: SORT_ORDER_DESC = 2;
|
|
84
|
-
*/
|
|
85
|
-
SortOrder[SortOrder["DESC"] = 2] = "DESC";
|
|
86
|
-
})(SortOrder || (SortOrder = {}));
|
|
87
|
-
/**
|
|
88
|
-
* Describes the enum experienceservice.tags.v1.SortOrder.
|
|
89
|
-
*/
|
|
90
|
-
export const SortOrderSchema = /*@__PURE__*/ enumDesc(file_experienceservice_tags_v1_tags, 1);
|
|
91
39
|
/**
|
|
92
40
|
* @generated from service experienceservice.tags.v1.ExperienceService
|
|
93
41
|
*/
|
|
@@ -1 +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,
|
|
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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@togatherlabs/shared-protos",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.30",
|
|
4
4
|
"description": "Generated TypeScript gRPC definitions for Togather shared protos",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -21,6 +21,12 @@
|
|
|
21
21
|
"require": "./dist/authservice/admin/v1/index.js",
|
|
22
22
|
"default": "./dist/authservice/admin/v1/index.js"
|
|
23
23
|
},
|
|
24
|
+
"./chatservice/chat/v1": {
|
|
25
|
+
"types": "./dist/chatservice/chat/v1/index.d.ts",
|
|
26
|
+
"import": "./dist/chatservice/chat/v1/index.js",
|
|
27
|
+
"require": "./dist/chatservice/chat/v1/index.js",
|
|
28
|
+
"default": "./dist/chatservice/chat/v1/index.js"
|
|
29
|
+
},
|
|
24
30
|
"./experienceservice/experience/v1": {
|
|
25
31
|
"types": "./dist/experienceservice/experience/v1/index.d.ts",
|
|
26
32
|
"import": "./dist/experienceservice/experience/v1/index.js",
|