@g2gs/contracts 1.0.74 → 1.0.75
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/admin/ticket/v1/service_connect.d.ts +62 -0
- package/admin/ticket/v1/service_connect.js +62 -0
- package/admin/ticket/v1/service_pb.d.ts +357 -0
- package/admin/ticket/v1/service_pb.js +111 -0
- package/package.json +1 -1
- package/public/faq/v1/service_connect.d.ts +44 -0
- package/public/faq/v1/service_connect.js +44 -0
- package/public/faq/v1/service_pb.d.ts +222 -0
- package/public/faq/v1/service_pb.js +82 -0
- package/public/ticket/v1/service_connect.d.ts +62 -0
- package/public/ticket/v1/service_connect.js +62 -0
- package/public/ticket/v1/service_pb.d.ts +326 -0
- package/public/ticket/v1/service_pb.js +104 -0
|
@@ -0,0 +1,326 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.11.0
|
|
2
|
+
// @generated from file public/ticket/v1/service.proto (package public.ticket.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import type { Message as Message$1 } from "@bufbuild/protobuf";
|
|
7
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Describes the file public/ticket/v1/service.proto.
|
|
11
|
+
*/
|
|
12
|
+
export declare const file_public_ticket_v1_service: GenFile;
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* @generated from message public.ticket.v1.Ticket
|
|
16
|
+
*/
|
|
17
|
+
export declare type Ticket = Message$1<"public.ticket.v1.Ticket"> & {
|
|
18
|
+
/**
|
|
19
|
+
* @generated from field: uint64 id = 1;
|
|
20
|
+
*/
|
|
21
|
+
id: bigint;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @generated from field: uint64 customer_id = 2;
|
|
25
|
+
*/
|
|
26
|
+
customerId: bigint;
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* @generated from field: string status = 3;
|
|
30
|
+
*/
|
|
31
|
+
status: string;
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* @generated from field: uint64 faq_sub_question_id = 4;
|
|
35
|
+
*/
|
|
36
|
+
faqSubQuestionId: bigint;
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* @generated from field: google.protobuf.Timestamp created_at = 5;
|
|
40
|
+
*/
|
|
41
|
+
createdAt?: Timestamp;
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* @generated from field: google.protobuf.Timestamp updated_at = 6;
|
|
45
|
+
*/
|
|
46
|
+
updatedAt?: Timestamp;
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* @generated from field: google.protobuf.Timestamp closed_at = 7;
|
|
50
|
+
*/
|
|
51
|
+
closedAt?: Timestamp;
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Describes the message public.ticket.v1.Ticket.
|
|
56
|
+
* Use `create(TicketSchema)` to create a new message.
|
|
57
|
+
*/
|
|
58
|
+
export declare const TicketSchema: GenMessage<Ticket>;
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* @generated from message public.ticket.v1.Message
|
|
62
|
+
*/
|
|
63
|
+
export declare type Message = Message$1<"public.ticket.v1.Message"> & {
|
|
64
|
+
/**
|
|
65
|
+
* @generated from field: uint64 id = 1;
|
|
66
|
+
*/
|
|
67
|
+
id: bigint;
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* @generated from field: uint64 ticket_id = 2;
|
|
71
|
+
*/
|
|
72
|
+
ticketId: bigint;
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* @generated from field: string author_type = 3;
|
|
76
|
+
*/
|
|
77
|
+
authorType: string;
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* @generated from field: uint64 customer_id = 4;
|
|
81
|
+
*/
|
|
82
|
+
customerId: bigint;
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* @generated from field: uint64 staff_id = 5;
|
|
86
|
+
*/
|
|
87
|
+
staffId: bigint;
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* @generated from field: string text = 6;
|
|
91
|
+
*/
|
|
92
|
+
text: string;
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* @generated from field: google.protobuf.Timestamp created_at = 7;
|
|
96
|
+
*/
|
|
97
|
+
createdAt?: Timestamp;
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* Describes the message public.ticket.v1.Message.
|
|
102
|
+
* Use `create(MessageSchema)` to create a new message.
|
|
103
|
+
*/
|
|
104
|
+
export declare const MessageSchema: GenMessage<Message>;
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* @generated from message public.ticket.v1.ListTicketsRequest
|
|
108
|
+
*/
|
|
109
|
+
export declare type ListTicketsRequest = Message$1<"public.ticket.v1.ListTicketsRequest"> & {
|
|
110
|
+
/**
|
|
111
|
+
* @generated from field: uint32 limit = 1;
|
|
112
|
+
*/
|
|
113
|
+
limit: number;
|
|
114
|
+
|
|
115
|
+
/**
|
|
116
|
+
* @generated from field: uint64 offset = 2;
|
|
117
|
+
*/
|
|
118
|
+
offset: bigint;
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* Describes the message public.ticket.v1.ListTicketsRequest.
|
|
123
|
+
* Use `create(ListTicketsRequestSchema)` to create a new message.
|
|
124
|
+
*/
|
|
125
|
+
export declare const ListTicketsRequestSchema: GenMessage<ListTicketsRequest>;
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* @generated from message public.ticket.v1.ListTicketsResponse
|
|
129
|
+
*/
|
|
130
|
+
export declare type ListTicketsResponse = Message$1<"public.ticket.v1.ListTicketsResponse"> & {
|
|
131
|
+
/**
|
|
132
|
+
* @generated from field: repeated public.ticket.v1.Ticket items = 1;
|
|
133
|
+
*/
|
|
134
|
+
items: Ticket[];
|
|
135
|
+
};
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* Describes the message public.ticket.v1.ListTicketsResponse.
|
|
139
|
+
* Use `create(ListTicketsResponseSchema)` to create a new message.
|
|
140
|
+
*/
|
|
141
|
+
export declare const ListTicketsResponseSchema: GenMessage<ListTicketsResponse>;
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* @generated from message public.ticket.v1.GetTicketRequest
|
|
145
|
+
*/
|
|
146
|
+
export declare type GetTicketRequest = Message$1<"public.ticket.v1.GetTicketRequest"> & {
|
|
147
|
+
/**
|
|
148
|
+
* @generated from field: uint64 ticket_id = 1;
|
|
149
|
+
*/
|
|
150
|
+
ticketId: bigint;
|
|
151
|
+
};
|
|
152
|
+
|
|
153
|
+
/**
|
|
154
|
+
* Describes the message public.ticket.v1.GetTicketRequest.
|
|
155
|
+
* Use `create(GetTicketRequestSchema)` to create a new message.
|
|
156
|
+
*/
|
|
157
|
+
export declare const GetTicketRequestSchema: GenMessage<GetTicketRequest>;
|
|
158
|
+
|
|
159
|
+
/**
|
|
160
|
+
* @generated from message public.ticket.v1.GetTicketResponse
|
|
161
|
+
*/
|
|
162
|
+
export declare type GetTicketResponse = Message$1<"public.ticket.v1.GetTicketResponse"> & {
|
|
163
|
+
/**
|
|
164
|
+
* @generated from field: public.ticket.v1.Ticket ticket = 1;
|
|
165
|
+
*/
|
|
166
|
+
ticket?: Ticket;
|
|
167
|
+
|
|
168
|
+
/**
|
|
169
|
+
* @generated from field: repeated public.ticket.v1.Message messages = 2;
|
|
170
|
+
*/
|
|
171
|
+
messages: Message[];
|
|
172
|
+
};
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* Describes the message public.ticket.v1.GetTicketResponse.
|
|
176
|
+
* Use `create(GetTicketResponseSchema)` to create a new message.
|
|
177
|
+
*/
|
|
178
|
+
export declare const GetTicketResponseSchema: GenMessage<GetTicketResponse>;
|
|
179
|
+
|
|
180
|
+
/**
|
|
181
|
+
* @generated from message public.ticket.v1.CreateTicketRequest
|
|
182
|
+
*/
|
|
183
|
+
export declare type CreateTicketRequest = Message$1<"public.ticket.v1.CreateTicketRequest"> & {
|
|
184
|
+
/**
|
|
185
|
+
* @generated from field: optional uint64 faq_sub_question_id = 1;
|
|
186
|
+
*/
|
|
187
|
+
faqSubQuestionId?: bigint;
|
|
188
|
+
};
|
|
189
|
+
|
|
190
|
+
/**
|
|
191
|
+
* Describes the message public.ticket.v1.CreateTicketRequest.
|
|
192
|
+
* Use `create(CreateTicketRequestSchema)` to create a new message.
|
|
193
|
+
*/
|
|
194
|
+
export declare const CreateTicketRequestSchema: GenMessage<CreateTicketRequest>;
|
|
195
|
+
|
|
196
|
+
/**
|
|
197
|
+
* @generated from message public.ticket.v1.CreateTicketResponse
|
|
198
|
+
*/
|
|
199
|
+
export declare type CreateTicketResponse = Message$1<"public.ticket.v1.CreateTicketResponse"> & {
|
|
200
|
+
/**
|
|
201
|
+
* @generated from field: public.ticket.v1.Ticket ticket = 1;
|
|
202
|
+
*/
|
|
203
|
+
ticket?: Ticket;
|
|
204
|
+
};
|
|
205
|
+
|
|
206
|
+
/**
|
|
207
|
+
* Describes the message public.ticket.v1.CreateTicketResponse.
|
|
208
|
+
* Use `create(CreateTicketResponseSchema)` to create a new message.
|
|
209
|
+
*/
|
|
210
|
+
export declare const CreateTicketResponseSchema: GenMessage<CreateTicketResponse>;
|
|
211
|
+
|
|
212
|
+
/**
|
|
213
|
+
* @generated from message public.ticket.v1.SendMessageRequest
|
|
214
|
+
*/
|
|
215
|
+
export declare type SendMessageRequest = Message$1<"public.ticket.v1.SendMessageRequest"> & {
|
|
216
|
+
/**
|
|
217
|
+
* @generated from field: uint64 ticket_id = 1;
|
|
218
|
+
*/
|
|
219
|
+
ticketId: bigint;
|
|
220
|
+
|
|
221
|
+
/**
|
|
222
|
+
* @generated from field: string text = 2;
|
|
223
|
+
*/
|
|
224
|
+
text: string;
|
|
225
|
+
};
|
|
226
|
+
|
|
227
|
+
/**
|
|
228
|
+
* Describes the message public.ticket.v1.SendMessageRequest.
|
|
229
|
+
* Use `create(SendMessageRequestSchema)` to create a new message.
|
|
230
|
+
*/
|
|
231
|
+
export declare const SendMessageRequestSchema: GenMessage<SendMessageRequest>;
|
|
232
|
+
|
|
233
|
+
/**
|
|
234
|
+
* @generated from message public.ticket.v1.SendMessageResponse
|
|
235
|
+
*/
|
|
236
|
+
export declare type SendMessageResponse = Message$1<"public.ticket.v1.SendMessageResponse"> & {
|
|
237
|
+
/**
|
|
238
|
+
* @generated from field: public.ticket.v1.Message message = 1;
|
|
239
|
+
*/
|
|
240
|
+
message?: Message;
|
|
241
|
+
};
|
|
242
|
+
|
|
243
|
+
/**
|
|
244
|
+
* Describes the message public.ticket.v1.SendMessageResponse.
|
|
245
|
+
* Use `create(SendMessageResponseSchema)` to create a new message.
|
|
246
|
+
*/
|
|
247
|
+
export declare const SendMessageResponseSchema: GenMessage<SendMessageResponse>;
|
|
248
|
+
|
|
249
|
+
/**
|
|
250
|
+
* @generated from message public.ticket.v1.CloseTicketRequest
|
|
251
|
+
*/
|
|
252
|
+
export declare type CloseTicketRequest = Message$1<"public.ticket.v1.CloseTicketRequest"> & {
|
|
253
|
+
/**
|
|
254
|
+
* @generated from field: uint64 ticket_id = 1;
|
|
255
|
+
*/
|
|
256
|
+
ticketId: bigint;
|
|
257
|
+
};
|
|
258
|
+
|
|
259
|
+
/**
|
|
260
|
+
* Describes the message public.ticket.v1.CloseTicketRequest.
|
|
261
|
+
* Use `create(CloseTicketRequestSchema)` to create a new message.
|
|
262
|
+
*/
|
|
263
|
+
export declare const CloseTicketRequestSchema: GenMessage<CloseTicketRequest>;
|
|
264
|
+
|
|
265
|
+
/**
|
|
266
|
+
* @generated from message public.ticket.v1.CloseTicketResponse
|
|
267
|
+
*/
|
|
268
|
+
export declare type CloseTicketResponse = Message$1<"public.ticket.v1.CloseTicketResponse"> & {
|
|
269
|
+
/**
|
|
270
|
+
* @generated from field: public.ticket.v1.Ticket ticket = 1;
|
|
271
|
+
*/
|
|
272
|
+
ticket?: Ticket;
|
|
273
|
+
};
|
|
274
|
+
|
|
275
|
+
/**
|
|
276
|
+
* Describes the message public.ticket.v1.CloseTicketResponse.
|
|
277
|
+
* Use `create(CloseTicketResponseSchema)` to create a new message.
|
|
278
|
+
*/
|
|
279
|
+
export declare const CloseTicketResponseSchema: GenMessage<CloseTicketResponse>;
|
|
280
|
+
|
|
281
|
+
/**
|
|
282
|
+
* @generated from service public.ticket.v1.PublicTicketService
|
|
283
|
+
*/
|
|
284
|
+
export declare const PublicTicketService: GenService<{
|
|
285
|
+
/**
|
|
286
|
+
* @generated from rpc public.ticket.v1.PublicTicketService.ListTickets
|
|
287
|
+
*/
|
|
288
|
+
listTickets: {
|
|
289
|
+
methodKind: "unary";
|
|
290
|
+
input: typeof ListTicketsRequestSchema;
|
|
291
|
+
output: typeof ListTicketsResponseSchema;
|
|
292
|
+
},
|
|
293
|
+
/**
|
|
294
|
+
* @generated from rpc public.ticket.v1.PublicTicketService.GetTicket
|
|
295
|
+
*/
|
|
296
|
+
getTicket: {
|
|
297
|
+
methodKind: "unary";
|
|
298
|
+
input: typeof GetTicketRequestSchema;
|
|
299
|
+
output: typeof GetTicketResponseSchema;
|
|
300
|
+
},
|
|
301
|
+
/**
|
|
302
|
+
* @generated from rpc public.ticket.v1.PublicTicketService.SendMessage
|
|
303
|
+
*/
|
|
304
|
+
sendMessage: {
|
|
305
|
+
methodKind: "unary";
|
|
306
|
+
input: typeof SendMessageRequestSchema;
|
|
307
|
+
output: typeof SendMessageResponseSchema;
|
|
308
|
+
},
|
|
309
|
+
/**
|
|
310
|
+
* @generated from rpc public.ticket.v1.PublicTicketService.CreateTicket
|
|
311
|
+
*/
|
|
312
|
+
createTicket: {
|
|
313
|
+
methodKind: "unary";
|
|
314
|
+
input: typeof CreateTicketRequestSchema;
|
|
315
|
+
output: typeof CreateTicketResponseSchema;
|
|
316
|
+
},
|
|
317
|
+
/**
|
|
318
|
+
* @generated from rpc public.ticket.v1.PublicTicketService.CloseTicket
|
|
319
|
+
*/
|
|
320
|
+
closeTicket: {
|
|
321
|
+
methodKind: "unary";
|
|
322
|
+
input: typeof CloseTicketRequestSchema;
|
|
323
|
+
output: typeof CloseTicketResponseSchema;
|
|
324
|
+
},
|
|
325
|
+
}>;
|
|
326
|
+
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.11.0
|
|
2
|
+
// @generated from file public/ticket/v1/service.proto (package public.ticket.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import { file_google_api_annotations } from "../../../google/api/annotations_pb";
|
|
7
|
+
import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Describes the file public/ticket/v1/service.proto.
|
|
11
|
+
*/
|
|
12
|
+
export const file_public_ticket_v1_service = /*@__PURE__*/
|
|
13
|
+
fileDesc("Ch5wdWJsaWMvdGlja2V0L3YxL3NlcnZpY2UucHJvdG8SEHB1YmxpYy50aWNrZXQudjEi5QEKBlRpY2tldBIKCgJpZBgBIAEoBBITCgtjdXN0b21lcl9pZBgCIAEoBBIOCgZzdGF0dXMYAyABKAkSGwoTZmFxX3N1Yl9xdWVzdGlvbl9pZBgEIAEoBBIuCgpjcmVhdGVkX2F0GAUgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIuCgp1cGRhdGVkX2F0GAYgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBItCgljbG9zZWRfYXQYByABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wIqIBCgdNZXNzYWdlEgoKAmlkGAEgASgEEhEKCXRpY2tldF9pZBgCIAEoBBITCgthdXRob3JfdHlwZRgDIAEoCRITCgtjdXN0b21lcl9pZBgEIAEoBBIQCghzdGFmZl9pZBgFIAEoBBIMCgR0ZXh0GAYgASgJEi4KCmNyZWF0ZWRfYXQYByABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wIjMKEkxpc3RUaWNrZXRzUmVxdWVzdBINCgVsaW1pdBgBIAEoDRIOCgZvZmZzZXQYAiABKAQiPgoTTGlzdFRpY2tldHNSZXNwb25zZRInCgVpdGVtcxgBIAMoCzIYLnB1YmxpYy50aWNrZXQudjEuVGlja2V0IiUKEEdldFRpY2tldFJlcXVlc3QSEQoJdGlja2V0X2lkGAEgASgEImoKEUdldFRpY2tldFJlc3BvbnNlEigKBnRpY2tldBgBIAEoCzIYLnB1YmxpYy50aWNrZXQudjEuVGlja2V0EisKCG1lc3NhZ2VzGAIgAygLMhkucHVibGljLnRpY2tldC52MS5NZXNzYWdlIk8KE0NyZWF0ZVRpY2tldFJlcXVlc3QSIAoTZmFxX3N1Yl9xdWVzdGlvbl9pZBgBIAEoBEgAiAEBQhYKFF9mYXFfc3ViX3F1ZXN0aW9uX2lkIkAKFENyZWF0ZVRpY2tldFJlc3BvbnNlEigKBnRpY2tldBgBIAEoCzIYLnB1YmxpYy50aWNrZXQudjEuVGlja2V0IjUKElNlbmRNZXNzYWdlUmVxdWVzdBIRCgl0aWNrZXRfaWQYASABKAQSDAoEdGV4dBgCIAEoCSJBChNTZW5kTWVzc2FnZVJlc3BvbnNlEioKB21lc3NhZ2UYASABKAsyGS5wdWJsaWMudGlja2V0LnYxLk1lc3NhZ2UiJwoSQ2xvc2VUaWNrZXRSZXF1ZXN0EhEKCXRpY2tldF9pZBgBIAEoBCI/ChNDbG9zZVRpY2tldFJlc3BvbnNlEigKBnRpY2tldBgBIAEoCzIYLnB1YmxpYy50aWNrZXQudjEuVGlja2V0MqgFChNQdWJsaWNUaWNrZXRTZXJ2aWNlEnYKC0xpc3RUaWNrZXRzEiQucHVibGljLnRpY2tldC52MS5MaXN0VGlja2V0c1JlcXVlc3QaJS5wdWJsaWMudGlja2V0LnYxLkxpc3RUaWNrZXRzUmVzcG9uc2UiGoLT5JMCFBISL3B1YmxpYy92MS90aWNrZXRzEnwKCUdldFRpY2tldBIiLnB1YmxpYy50aWNrZXQudjEuR2V0VGlja2V0UmVxdWVzdBojLnB1YmxpYy50aWNrZXQudjEuR2V0VGlja2V0UmVzcG9uc2UiJoLT5JMCIBIeL3B1YmxpYy92MS90aWNrZXRzL3t0aWNrZXRfaWR9Eo4BCgtTZW5kTWVzc2FnZRIkLnB1YmxpYy50aWNrZXQudjEuU2VuZE1lc3NhZ2VSZXF1ZXN0GiUucHVibGljLnRpY2tldC52MS5TZW5kTWVzc2FnZVJlc3BvbnNlIjKC0+STAiw6ASoiJy9wdWJsaWMvdjEvdGlja2V0cy97dGlja2V0X2lkfS9tZXNzYWdlcxJ8CgxDcmVhdGVUaWNrZXQSJS5wdWJsaWMudGlja2V0LnYxLkNyZWF0ZVRpY2tldFJlcXVlc3QaJi5wdWJsaWMudGlja2V0LnYxLkNyZWF0ZVRpY2tldFJlc3BvbnNlIh2C0+STAhc6ASoiEi9wdWJsaWMvdjEvdGlja2V0cxKLAQoLQ2xvc2VUaWNrZXQSJC5wdWJsaWMudGlja2V0LnYxLkNsb3NlVGlja2V0UmVxdWVzdBolLnB1YmxpYy50aWNrZXQudjEuQ2xvc2VUaWNrZXRSZXNwb25zZSIvgtPkkwIpOgEqIiQvcHVibGljL3YxL3RpY2tldHMve3RpY2tldF9pZH0vY2xvc2VCQlpAZ2l0aHViLmNvbS9HMkdzL2FwaS1jb250cmFjdHMtZ28vcHVibGljL3RpY2tldC92MTtwdWJsaWN0aWNrZXR2MWIGcHJvdG8z", [file_google_api_annotations, file_google_protobuf_timestamp]);
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Describes the message public.ticket.v1.Ticket.
|
|
17
|
+
* Use `create(TicketSchema)` to create a new message.
|
|
18
|
+
*/
|
|
19
|
+
export const TicketSchema = /*@__PURE__*/
|
|
20
|
+
messageDesc(file_public_ticket_v1_service, 0);
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Describes the message public.ticket.v1.Message.
|
|
24
|
+
* Use `create(MessageSchema)` to create a new message.
|
|
25
|
+
*/
|
|
26
|
+
export const MessageSchema = /*@__PURE__*/
|
|
27
|
+
messageDesc(file_public_ticket_v1_service, 1);
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Describes the message public.ticket.v1.ListTicketsRequest.
|
|
31
|
+
* Use `create(ListTicketsRequestSchema)` to create a new message.
|
|
32
|
+
*/
|
|
33
|
+
export const ListTicketsRequestSchema = /*@__PURE__*/
|
|
34
|
+
messageDesc(file_public_ticket_v1_service, 2);
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Describes the message public.ticket.v1.ListTicketsResponse.
|
|
38
|
+
* Use `create(ListTicketsResponseSchema)` to create a new message.
|
|
39
|
+
*/
|
|
40
|
+
export const ListTicketsResponseSchema = /*@__PURE__*/
|
|
41
|
+
messageDesc(file_public_ticket_v1_service, 3);
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* Describes the message public.ticket.v1.GetTicketRequest.
|
|
45
|
+
* Use `create(GetTicketRequestSchema)` to create a new message.
|
|
46
|
+
*/
|
|
47
|
+
export const GetTicketRequestSchema = /*@__PURE__*/
|
|
48
|
+
messageDesc(file_public_ticket_v1_service, 4);
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Describes the message public.ticket.v1.GetTicketResponse.
|
|
52
|
+
* Use `create(GetTicketResponseSchema)` to create a new message.
|
|
53
|
+
*/
|
|
54
|
+
export const GetTicketResponseSchema = /*@__PURE__*/
|
|
55
|
+
messageDesc(file_public_ticket_v1_service, 5);
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Describes the message public.ticket.v1.CreateTicketRequest.
|
|
59
|
+
* Use `create(CreateTicketRequestSchema)` to create a new message.
|
|
60
|
+
*/
|
|
61
|
+
export const CreateTicketRequestSchema = /*@__PURE__*/
|
|
62
|
+
messageDesc(file_public_ticket_v1_service, 6);
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* Describes the message public.ticket.v1.CreateTicketResponse.
|
|
66
|
+
* Use `create(CreateTicketResponseSchema)` to create a new message.
|
|
67
|
+
*/
|
|
68
|
+
export const CreateTicketResponseSchema = /*@__PURE__*/
|
|
69
|
+
messageDesc(file_public_ticket_v1_service, 7);
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* Describes the message public.ticket.v1.SendMessageRequest.
|
|
73
|
+
* Use `create(SendMessageRequestSchema)` to create a new message.
|
|
74
|
+
*/
|
|
75
|
+
export const SendMessageRequestSchema = /*@__PURE__*/
|
|
76
|
+
messageDesc(file_public_ticket_v1_service, 8);
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* Describes the message public.ticket.v1.SendMessageResponse.
|
|
80
|
+
* Use `create(SendMessageResponseSchema)` to create a new message.
|
|
81
|
+
*/
|
|
82
|
+
export const SendMessageResponseSchema = /*@__PURE__*/
|
|
83
|
+
messageDesc(file_public_ticket_v1_service, 9);
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Describes the message public.ticket.v1.CloseTicketRequest.
|
|
87
|
+
* Use `create(CloseTicketRequestSchema)` to create a new message.
|
|
88
|
+
*/
|
|
89
|
+
export const CloseTicketRequestSchema = /*@__PURE__*/
|
|
90
|
+
messageDesc(file_public_ticket_v1_service, 10);
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Describes the message public.ticket.v1.CloseTicketResponse.
|
|
94
|
+
* Use `create(CloseTicketResponseSchema)` to create a new message.
|
|
95
|
+
*/
|
|
96
|
+
export const CloseTicketResponseSchema = /*@__PURE__*/
|
|
97
|
+
messageDesc(file_public_ticket_v1_service, 11);
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* @generated from service public.ticket.v1.PublicTicketService
|
|
101
|
+
*/
|
|
102
|
+
export const PublicTicketService = /*@__PURE__*/
|
|
103
|
+
serviceDesc(file_public_ticket_v1_service, 0);
|
|
104
|
+
|