@g2gs/contracts 1.0.117 → 1.0.119
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/ai/v1/service_connect.d.ts +19 -1
- package/admin/ai/v1/service_connect.js +19 -1
- package/admin/ai/v1/service_pb.d.ts +80 -0
- package/admin/ai/v1/service_pb.js +36 -8
- package/admin/category/v1/service_connect.d.ts +10 -1
- package/admin/category/v1/service_connect.js +10 -1
- package/admin/category/v1/service_pb.d.ts +40 -0
- package/admin/category/v1/service_pb.js +19 -5
- package/admin/faq/v1/service_connect.d.ts +19 -1
- package/admin/faq/v1/service_connect.js +19 -1
- package/admin/faq/v1/service_pb.d.ts +80 -0
- package/admin/faq/v1/service_pb.js +35 -7
- package/admin/file/v1/service_connect.d.ts +10 -1
- package/admin/file/v1/service_connect.js +10 -1
- package/admin/file/v1/service_pb.d.ts +40 -0
- package/admin/file/v1/service_pb.js +17 -3
- package/admin/inventory/v1/service_connect.d.ts +10 -1
- package/admin/inventory/v1/service_connect.js +10 -1
- package/admin/inventory/v1/service_pb.d.ts +104 -0
- package/admin/inventory/v1/service_pb.js +25 -4
- package/admin/order/v1/service_connect.d.ts +19 -1
- package/admin/order/v1/service_connect.js +19 -1
- package/admin/order/v1/service_pb.d.ts +115 -0
- package/admin/order/v1/service_pb.js +49 -21
- package/admin/product/v1/service_connect.d.ts +37 -1
- package/admin/product/v1/service_connect.js +37 -1
- package/admin/product/v1/service_pb.d.ts +160 -0
- package/admin/product/v1/service_pb.js +75 -19
- package/admin/proxy/v1/service_connect.d.ts +10 -1
- package/admin/proxy/v1/service_connect.js +10 -1
- package/admin/proxy/v1/service_pb.d.ts +40 -0
- package/admin/proxy/v1/service_pb.js +18 -4
- package/admin/roles/v1/service_connect.d.ts +28 -1
- package/admin/roles/v1/service_connect.js +28 -1
- package/admin/roles/v1/service_pb.d.ts +141 -0
- package/admin/roles/v1/service_pb.js +67 -18
- package/admin/schedule/v1/service_connect.d.ts +19 -1
- package/admin/schedule/v1/service_connect.js +19 -1
- package/admin/schedule/v1/service_pb.d.ts +80 -0
- package/admin/schedule/v1/service_pb.js +56 -28
- package/admin/tasks/v1/service_connect.d.ts +10 -1
- package/admin/tasks/v1/service_connect.js +10 -1
- package/admin/tasks/v1/service_pb.d.ts +40 -0
- package/admin/tasks/v1/service_pb.js +32 -18
- package/admin/template_ref/v1/service_connect.d.ts +19 -1
- package/admin/template_ref/v1/service_connect.js +19 -1
- package/admin/template_ref/v1/service_pb.d.ts +80 -0
- package/admin/template_ref/v1/service_pb.js +39 -11
- package/admin/ticket/v1/service_connect.d.ts +19 -1
- package/admin/ticket/v1/service_connect.js +19 -1
- package/admin/ticket/v1/service_pb.d.ts +80 -0
- package/admin/ticket/v1/service_pb.js +38 -10
- package/admin/wb/v1/service_connect.d.ts +37 -1
- package/admin/wb/v1/service_connect.js +37 -1
- package/admin/wb/v1/service_pb.d.ts +160 -0
- package/admin/wb/v1/service_pb.js +85 -29
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
5
|
|
|
6
|
-
import { BanGeminiKeyRequest, CreateGeminiKeyRequest, CreateGeminiKeyResponse, DeleteGeminiKeyRequest, GetRequestRequest, GetRequestResponse, ListGeminiKeysRequest, ListGeminiKeysResponse, ListRequestsRequest, ListRequestsResponse, UnbanGeminiKeyRequest } from "./service_pb.js";
|
|
6
|
+
import { BanGeminiKeyRequest, CreateGeminiKeyRequest, CreateGeminiKeyResponse, DeleteGeminiKeyRequest, GetGeminiKeysByIDsRequest, GetGeminiKeysByIDsResponse, GetRequestRequest, GetRequestResponse, GetRequestsByRequestIDsRequest, GetRequestsByRequestIDsResponse, ListGeminiKeysRequest, ListGeminiKeysResponse, ListRequestsRequest, ListRequestsResponse, UnbanGeminiKeyRequest } from "./service_pb.js";
|
|
7
7
|
import { Empty, MethodKind } from "@bufbuild/protobuf";
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -30,6 +30,15 @@ export declare const AIAdminService: {
|
|
|
30
30
|
readonly O: typeof ListGeminiKeysResponse,
|
|
31
31
|
readonly kind: MethodKind.Unary,
|
|
32
32
|
},
|
|
33
|
+
/**
|
|
34
|
+
* @generated from rpc admin.ai.v1.AIAdminService.GetGeminiKeysByIDs
|
|
35
|
+
*/
|
|
36
|
+
readonly getGeminiKeysByIDs: {
|
|
37
|
+
readonly name: "GetGeminiKeysByIDs",
|
|
38
|
+
readonly I: typeof GetGeminiKeysByIDsRequest,
|
|
39
|
+
readonly O: typeof GetGeminiKeysByIDsResponse,
|
|
40
|
+
readonly kind: MethodKind.Unary,
|
|
41
|
+
},
|
|
33
42
|
/**
|
|
34
43
|
* @generated from rpc admin.ai.v1.AIAdminService.DeleteGeminiKey
|
|
35
44
|
*/
|
|
@@ -75,6 +84,15 @@ export declare const AIAdminService: {
|
|
|
75
84
|
readonly O: typeof GetRequestResponse,
|
|
76
85
|
readonly kind: MethodKind.Unary,
|
|
77
86
|
},
|
|
87
|
+
/**
|
|
88
|
+
* @generated from rpc admin.ai.v1.AIAdminService.GetRequestsByRequestIDs
|
|
89
|
+
*/
|
|
90
|
+
readonly getRequestsByRequestIDs: {
|
|
91
|
+
readonly name: "GetRequestsByRequestIDs",
|
|
92
|
+
readonly I: typeof GetRequestsByRequestIDsRequest,
|
|
93
|
+
readonly O: typeof GetRequestsByRequestIDsResponse,
|
|
94
|
+
readonly kind: MethodKind.Unary,
|
|
95
|
+
},
|
|
78
96
|
}
|
|
79
97
|
};
|
|
80
98
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
5
|
|
|
6
|
-
import { BanGeminiKeyRequest, CreateGeminiKeyRequest, CreateGeminiKeyResponse, DeleteGeminiKeyRequest, GetRequestRequest, GetRequestResponse, ListGeminiKeysRequest, ListGeminiKeysResponse, ListRequestsRequest, ListRequestsResponse, UnbanGeminiKeyRequest } from "./service_pb.js";
|
|
6
|
+
import { BanGeminiKeyRequest, CreateGeminiKeyRequest, CreateGeminiKeyResponse, DeleteGeminiKeyRequest, GetGeminiKeysByIDsRequest, GetGeminiKeysByIDsResponse, GetRequestRequest, GetRequestResponse, GetRequestsByRequestIDsRequest, GetRequestsByRequestIDsResponse, ListGeminiKeysRequest, ListGeminiKeysResponse, ListRequestsRequest, ListRequestsResponse, UnbanGeminiKeyRequest } from "./service_pb.js";
|
|
7
7
|
import { Empty, MethodKind } from "@bufbuild/protobuf";
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -30,6 +30,15 @@ export const AIAdminService = {
|
|
|
30
30
|
O: ListGeminiKeysResponse,
|
|
31
31
|
kind: MethodKind.Unary,
|
|
32
32
|
},
|
|
33
|
+
/**
|
|
34
|
+
* @generated from rpc admin.ai.v1.AIAdminService.GetGeminiKeysByIDs
|
|
35
|
+
*/
|
|
36
|
+
getGeminiKeysByIDs: {
|
|
37
|
+
name: "GetGeminiKeysByIDs",
|
|
38
|
+
I: GetGeminiKeysByIDsRequest,
|
|
39
|
+
O: GetGeminiKeysByIDsResponse,
|
|
40
|
+
kind: MethodKind.Unary,
|
|
41
|
+
},
|
|
33
42
|
/**
|
|
34
43
|
* @generated from rpc admin.ai.v1.AIAdminService.DeleteGeminiKey
|
|
35
44
|
*/
|
|
@@ -75,6 +84,15 @@ export const AIAdminService = {
|
|
|
75
84
|
O: GetRequestResponse,
|
|
76
85
|
kind: MethodKind.Unary,
|
|
77
86
|
},
|
|
87
|
+
/**
|
|
88
|
+
* @generated from rpc admin.ai.v1.AIAdminService.GetRequestsByRequestIDs
|
|
89
|
+
*/
|
|
90
|
+
getRequestsByRequestIDs: {
|
|
91
|
+
name: "GetRequestsByRequestIDs",
|
|
92
|
+
I: GetRequestsByRequestIDsRequest,
|
|
93
|
+
O: GetRequestsByRequestIDsResponse,
|
|
94
|
+
kind: MethodKind.Unary,
|
|
95
|
+
},
|
|
78
96
|
}
|
|
79
97
|
};
|
|
80
98
|
|
|
@@ -187,6 +187,38 @@ export declare type ListGeminiKeysResponse = Message<"admin.ai.v1.ListGeminiKeys
|
|
|
187
187
|
*/
|
|
188
188
|
export declare const ListGeminiKeysResponseSchema: GenMessage<ListGeminiKeysResponse>;
|
|
189
189
|
|
|
190
|
+
/**
|
|
191
|
+
* @generated from message admin.ai.v1.GetGeminiKeysByIDsRequest
|
|
192
|
+
*/
|
|
193
|
+
export declare type GetGeminiKeysByIDsRequest = Message<"admin.ai.v1.GetGeminiKeysByIDsRequest"> & {
|
|
194
|
+
/**
|
|
195
|
+
* @generated from field: repeated uint64 ids = 1;
|
|
196
|
+
*/
|
|
197
|
+
ids: bigint[];
|
|
198
|
+
};
|
|
199
|
+
|
|
200
|
+
/**
|
|
201
|
+
* Describes the message admin.ai.v1.GetGeminiKeysByIDsRequest.
|
|
202
|
+
* Use `create(GetGeminiKeysByIDsRequestSchema)` to create a new message.
|
|
203
|
+
*/
|
|
204
|
+
export declare const GetGeminiKeysByIDsRequestSchema: GenMessage<GetGeminiKeysByIDsRequest>;
|
|
205
|
+
|
|
206
|
+
/**
|
|
207
|
+
* @generated from message admin.ai.v1.GetGeminiKeysByIDsResponse
|
|
208
|
+
*/
|
|
209
|
+
export declare type GetGeminiKeysByIDsResponse = Message<"admin.ai.v1.GetGeminiKeysByIDsResponse"> & {
|
|
210
|
+
/**
|
|
211
|
+
* @generated from field: repeated admin.ai.v1.GeminiKey keys = 1;
|
|
212
|
+
*/
|
|
213
|
+
keys: GeminiKey[];
|
|
214
|
+
};
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* Describes the message admin.ai.v1.GetGeminiKeysByIDsResponse.
|
|
218
|
+
* Use `create(GetGeminiKeysByIDsResponseSchema)` to create a new message.
|
|
219
|
+
*/
|
|
220
|
+
export declare const GetGeminiKeysByIDsResponseSchema: GenMessage<GetGeminiKeysByIDsResponse>;
|
|
221
|
+
|
|
190
222
|
/**
|
|
191
223
|
* @generated from message admin.ai.v1.DeleteGeminiKeyRequest
|
|
192
224
|
*/
|
|
@@ -314,6 +346,38 @@ export declare type GetRequestResponse = Message<"admin.ai.v1.GetRequestResponse
|
|
|
314
346
|
*/
|
|
315
347
|
export declare const GetRequestResponseSchema: GenMessage<GetRequestResponse>;
|
|
316
348
|
|
|
349
|
+
/**
|
|
350
|
+
* @generated from message admin.ai.v1.GetRequestsByRequestIDsRequest
|
|
351
|
+
*/
|
|
352
|
+
export declare type GetRequestsByRequestIDsRequest = Message<"admin.ai.v1.GetRequestsByRequestIDsRequest"> & {
|
|
353
|
+
/**
|
|
354
|
+
* @generated from field: repeated string request_ids = 1;
|
|
355
|
+
*/
|
|
356
|
+
requestIds: string[];
|
|
357
|
+
};
|
|
358
|
+
|
|
359
|
+
/**
|
|
360
|
+
* Describes the message admin.ai.v1.GetRequestsByRequestIDsRequest.
|
|
361
|
+
* Use `create(GetRequestsByRequestIDsRequestSchema)` to create a new message.
|
|
362
|
+
*/
|
|
363
|
+
export declare const GetRequestsByRequestIDsRequestSchema: GenMessage<GetRequestsByRequestIDsRequest>;
|
|
364
|
+
|
|
365
|
+
/**
|
|
366
|
+
* @generated from message admin.ai.v1.GetRequestsByRequestIDsResponse
|
|
367
|
+
*/
|
|
368
|
+
export declare type GetRequestsByRequestIDsResponse = Message<"admin.ai.v1.GetRequestsByRequestIDsResponse"> & {
|
|
369
|
+
/**
|
|
370
|
+
* @generated from field: repeated admin.ai.v1.AIRequestRecord requests = 1;
|
|
371
|
+
*/
|
|
372
|
+
requests: AIRequestRecord[];
|
|
373
|
+
};
|
|
374
|
+
|
|
375
|
+
/**
|
|
376
|
+
* Describes the message admin.ai.v1.GetRequestsByRequestIDsResponse.
|
|
377
|
+
* Use `create(GetRequestsByRequestIDsResponseSchema)` to create a new message.
|
|
378
|
+
*/
|
|
379
|
+
export declare const GetRequestsByRequestIDsResponseSchema: GenMessage<GetRequestsByRequestIDsResponse>;
|
|
380
|
+
|
|
317
381
|
/**
|
|
318
382
|
* @generated from service admin.ai.v1.AIAdminService
|
|
319
383
|
*/
|
|
@@ -334,6 +398,14 @@ export declare const AIAdminService: GenService<{
|
|
|
334
398
|
input: typeof ListGeminiKeysRequestSchema;
|
|
335
399
|
output: typeof ListGeminiKeysResponseSchema;
|
|
336
400
|
},
|
|
401
|
+
/**
|
|
402
|
+
* @generated from rpc admin.ai.v1.AIAdminService.GetGeminiKeysByIDs
|
|
403
|
+
*/
|
|
404
|
+
getGeminiKeysByIDs: {
|
|
405
|
+
methodKind: "unary";
|
|
406
|
+
input: typeof GetGeminiKeysByIDsRequestSchema;
|
|
407
|
+
output: typeof GetGeminiKeysByIDsResponseSchema;
|
|
408
|
+
},
|
|
337
409
|
/**
|
|
338
410
|
* @generated from rpc admin.ai.v1.AIAdminService.DeleteGeminiKey
|
|
339
411
|
*/
|
|
@@ -374,5 +446,13 @@ export declare const AIAdminService: GenService<{
|
|
|
374
446
|
input: typeof GetRequestRequestSchema;
|
|
375
447
|
output: typeof GetRequestResponseSchema;
|
|
376
448
|
},
|
|
449
|
+
/**
|
|
450
|
+
* @generated from rpc admin.ai.v1.AIAdminService.GetRequestsByRequestIDs
|
|
451
|
+
*/
|
|
452
|
+
getRequestsByRequestIDs: {
|
|
453
|
+
methodKind: "unary";
|
|
454
|
+
input: typeof GetRequestsByRequestIDsRequestSchema;
|
|
455
|
+
output: typeof GetRequestsByRequestIDsResponseSchema;
|
|
456
|
+
},
|
|
377
457
|
}>;
|
|
378
458
|
|
|
@@ -10,7 +10,7 @@ import { file_google_protobuf_empty, file_google_protobuf_timestamp } from "@buf
|
|
|
10
10
|
* Describes the file admin/ai/v1/service.proto.
|
|
11
11
|
*/
|
|
12
12
|
export const file_admin_ai_v1_service = /*@__PURE__*/
|
|
13
|
-
fileDesc("ChlhZG1pbi9haS92MS9zZXJ2aWNlLnByb3RvEgthZG1pbi5haS52MSLjAQoJR2VtaW5pS2V5EgoKAmlkGAEgASgEEg8KB2FwaV9rZXkYAiABKAkSDgoGYmFubmVkGAMgASgIEjcKDmRpc2FibGVkX3VudGlsGAQgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEgAiAEBEjAKDGxhc3RfdXNlZF9hdBgFIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASEwoLdXNhZ2VfY291bnQYBiABKAMSFgoOcmVxdWVzdHNfdG9kYXkYByABKANCEQoPX2Rpc2FibGVkX3VudGlsIoUCCg9BSVJlcXVlc3RSZWNvcmQSCgoCaWQYASABKAQSEgoKcmVxdWVzdF9pZBgCIAEoCRIOCgZzdGF0dXMYAyABKAkSDgoGcHJvbXB0GAQgASgJEhMKBnJlc3VsdBgFIAEoCUgAiAEBEhIKBWVycm9yGAYgASgJSAGIAQESLgoKY3JlYXRlZF9hdBgHIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASNAoLZmluaXNoZWRfYXQYCCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wSAKIAQFCCQoHX3Jlc3VsdEIICgZfZXJyb3JCDgoMX2ZpbmlzaGVkX2F0IikKFkNyZWF0ZUdlbWluaUtleVJlcXVlc3QSDwoHYXBpX2tleRgBIAEoCSI+
|
|
13
|
+
fileDesc("ChlhZG1pbi9haS92MS9zZXJ2aWNlLnByb3RvEgthZG1pbi5haS52MSLjAQoJR2VtaW5pS2V5EgoKAmlkGAEgASgEEg8KB2FwaV9rZXkYAiABKAkSDgoGYmFubmVkGAMgASgIEjcKDmRpc2FibGVkX3VudGlsGAQgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEgAiAEBEjAKDGxhc3RfdXNlZF9hdBgFIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASEwoLdXNhZ2VfY291bnQYBiABKAMSFgoOcmVxdWVzdHNfdG9kYXkYByABKANCEQoPX2Rpc2FibGVkX3VudGlsIoUCCg9BSVJlcXVlc3RSZWNvcmQSCgoCaWQYASABKAQSEgoKcmVxdWVzdF9pZBgCIAEoCRIOCgZzdGF0dXMYAyABKAkSDgoGcHJvbXB0GAQgASgJEhMKBnJlc3VsdBgFIAEoCUgAiAEBEhIKBWVycm9yGAYgASgJSAGIAQESLgoKY3JlYXRlZF9hdBgHIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASNAoLZmluaXNoZWRfYXQYCCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wSAKIAQFCCQoHX3Jlc3VsdEIICgZfZXJyb3JCDgoMX2ZpbmlzaGVkX2F0IikKFkNyZWF0ZUdlbWluaUtleVJlcXVlc3QSDwoHYXBpX2tleRgBIAEoCSI+ChdDcmVhdGVHZW1pbmlLZXlSZXNwb25zZRIjCgNrZXkYASABKAsyFi5hZG1pbi5haS52MS5HZW1pbmlLZXkiTgoVTGlzdEdlbWluaUtleXNSZXF1ZXN0EhYKDmluY2x1ZGVfYmFubmVkGAEgASgIEg0KBWxpbWl0GAIgASgNEg4KBm9mZnNldBgDIAEoBCJNChZMaXN0R2VtaW5pS2V5c1Jlc3BvbnNlEiQKBGtleXMYASADKAsyFi5hZG1pbi5haS52MS5HZW1pbmlLZXkSDQoFdG90YWwYAiABKAQiKAoZR2V0R2VtaW5pS2V5c0J5SURzUmVxdWVzdBILCgNpZHMYASADKAQiQgoaR2V0R2VtaW5pS2V5c0J5SURzUmVzcG9uc2USJAoEa2V5cxgBIAMoCzIWLmFkbWluLmFpLnYxLkdlbWluaUtleSIkChZEZWxldGVHZW1pbmlLZXlSZXF1ZXN0EgoKAmlkGAEgASgEIiEKE0JhbkdlbWluaUtleVJlcXVlc3QSCgoCaWQYASABKAQiIwoVVW5iYW5HZW1pbmlLZXlSZXF1ZXN0EgoKAmlkGAEgASgEIkQKE0xpc3RSZXF1ZXN0c1JlcXVlc3QSDgoGc3RhdHVzGAEgASgJEg0KBWxpbWl0GAIgASgNEg4KBm9mZnNldBgDIAEoBCJVChRMaXN0UmVxdWVzdHNSZXNwb25zZRIuCghyZXF1ZXN0cxgBIAMoCzIcLmFkbWluLmFpLnYxLkFJUmVxdWVzdFJlY29yZBINCgV0b3RhbBgCIAEoBCInChFHZXRSZXF1ZXN0UmVxdWVzdBISCgpyZXF1ZXN0X2lkGAEgASgJIkMKEkdldFJlcXVlc3RSZXNwb25zZRItCgdyZXF1ZXN0GAEgASgLMhwuYWRtaW4uYWkudjEuQUlSZXF1ZXN0UmVjb3JkIjUKHkdldFJlcXVlc3RzQnlSZXF1ZXN0SURzUmVxdWVzdBITCgtyZXF1ZXN0X2lkcxgBIAMoCSJRCh9HZXRSZXF1ZXN0c0J5UmVxdWVzdElEc1Jlc3BvbnNlEi4KCHJlcXVlc3RzGAEgAygLMhwuYWRtaW4uYWkudjEuQUlSZXF1ZXN0UmVjb3JkMvQICg5BSUFkbWluU2VydmljZRJ6Cg9DcmVhdGVHZW1pbmlLZXkSIy5hZG1pbi5haS52MS5DcmVhdGVHZW1pbmlLZXlSZXF1ZXN0GiQuYWRtaW4uYWkudjEuQ3JlYXRlR2VtaW5pS2V5UmVzcG9uc2UiHILT5JMCFjoBKiIRL2FkbWluL3YxL2FpL2tleXMSdAoOTGlzdEdlbWluaUtleXMSIi5hZG1pbi5haS52MS5MaXN0R2VtaW5pS2V5c1JlcXVlc3QaIy5hZG1pbi5haS52MS5MaXN0R2VtaW5pS2V5c1Jlc3BvbnNlIhmC0+STAhMSES9hZG1pbi92MS9haS9rZXlzEokBChJHZXRHZW1pbmlLZXlzQnlJRHMSJi5hZG1pbi5haS52MS5HZXRHZW1pbmlLZXlzQnlJRHNSZXF1ZXN0GicuYWRtaW4uYWkudjEuR2V0R2VtaW5pS2V5c0J5SURzUmVzcG9uc2UiIoLT5JMCHDoBKiIXL2FkbWluL3YxL2FpL2tleXMvYmF0Y2gSbgoPRGVsZXRlR2VtaW5pS2V5EiMuYWRtaW4uYWkudjEuRGVsZXRlR2VtaW5pS2V5UmVxdWVzdBoWLmdvb2dsZS5wcm90b2J1Zi5FbXB0eSIegtPkkwIYKhYvYWRtaW4vdjEvYWkva2V5cy97aWR9Em8KDEJhbkdlbWluaUtleRIgLmFkbWluLmFpLnYxLkJhbkdlbWluaUtleVJlcXVlc3QaFi5nb29nbGUucHJvdG9idWYuRW1wdHkiJYLT5JMCHzoBKiIaL2FkbWluL3YxL2FpL2tleXMve2lkfS9iYW4SdQoOVW5iYW5HZW1pbmlLZXkSIi5hZG1pbi5haS52MS5VbmJhbkdlbWluaUtleVJlcXVlc3QaFi5nb29nbGUucHJvdG9idWYuRW1wdHkiJ4LT5JMCIToBKiIcL2FkbWluL3YxL2FpL2tleXMve2lkfS91bmJhbhJyCgxMaXN0UmVxdWVzdHMSIC5hZG1pbi5haS52MS5MaXN0UmVxdWVzdHNSZXF1ZXN0GiEuYWRtaW4uYWkudjEuTGlzdFJlcXVlc3RzUmVzcG9uc2UiHYLT5JMCFxIVL2FkbWluL3YxL2FpL3JlcXVlc3RzEnkKCkdldFJlcXVlc3QSHi5hZG1pbi5haS52MS5HZXRSZXF1ZXN0UmVxdWVzdBofLmFkbWluLmFpLnYxLkdldFJlcXVlc3RSZXNwb25zZSIqgtPkkwIkEiIvYWRtaW4vdjEvYWkvcmVxdWVzdHMve3JlcXVlc3RfaWR9EpwBChdHZXRSZXF1ZXN0c0J5UmVxdWVzdElEcxIrLmFkbWluLmFpLnYxLkdldFJlcXVlc3RzQnlSZXF1ZXN0SURzUmVxdWVzdBosLmFkbWluLmFpLnYxLkdldFJlcXVlc3RzQnlSZXF1ZXN0SURzUmVzcG9uc2UiJoLT5JMCIDoBKiIbL2FkbWluL3YxL2FpL3JlcXVlc3RzL2JhdGNoQjhaNmdpdGh1Yi5jb20vRzJHcy9hcGktY29udHJhY3RzLWdvL2FkbWluL2FpL3YxO2FkbWluYWl2MWIGcHJvdG8z", [file_google_api_annotations, file_google_protobuf_empty, file_google_protobuf_timestamp]);
|
|
14
14
|
|
|
15
15
|
/**
|
|
16
16
|
* Describes the message admin.ai.v1.GeminiKey.
|
|
@@ -54,54 +54,82 @@ export const ListGeminiKeysRequestSchema = /*@__PURE__*/
|
|
|
54
54
|
export const ListGeminiKeysResponseSchema = /*@__PURE__*/
|
|
55
55
|
messageDesc(file_admin_ai_v1_service, 5);
|
|
56
56
|
|
|
57
|
+
/**
|
|
58
|
+
* Describes the message admin.ai.v1.GetGeminiKeysByIDsRequest.
|
|
59
|
+
* Use `create(GetGeminiKeysByIDsRequestSchema)` to create a new message.
|
|
60
|
+
*/
|
|
61
|
+
export const GetGeminiKeysByIDsRequestSchema = /*@__PURE__*/
|
|
62
|
+
messageDesc(file_admin_ai_v1_service, 6);
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* Describes the message admin.ai.v1.GetGeminiKeysByIDsResponse.
|
|
66
|
+
* Use `create(GetGeminiKeysByIDsResponseSchema)` to create a new message.
|
|
67
|
+
*/
|
|
68
|
+
export const GetGeminiKeysByIDsResponseSchema = /*@__PURE__*/
|
|
69
|
+
messageDesc(file_admin_ai_v1_service, 7);
|
|
70
|
+
|
|
57
71
|
/**
|
|
58
72
|
* Describes the message admin.ai.v1.DeleteGeminiKeyRequest.
|
|
59
73
|
* Use `create(DeleteGeminiKeyRequestSchema)` to create a new message.
|
|
60
74
|
*/
|
|
61
75
|
export const DeleteGeminiKeyRequestSchema = /*@__PURE__*/
|
|
62
|
-
messageDesc(file_admin_ai_v1_service,
|
|
76
|
+
messageDesc(file_admin_ai_v1_service, 8);
|
|
63
77
|
|
|
64
78
|
/**
|
|
65
79
|
* Describes the message admin.ai.v1.BanGeminiKeyRequest.
|
|
66
80
|
* Use `create(BanGeminiKeyRequestSchema)` to create a new message.
|
|
67
81
|
*/
|
|
68
82
|
export const BanGeminiKeyRequestSchema = /*@__PURE__*/
|
|
69
|
-
messageDesc(file_admin_ai_v1_service,
|
|
83
|
+
messageDesc(file_admin_ai_v1_service, 9);
|
|
70
84
|
|
|
71
85
|
/**
|
|
72
86
|
* Describes the message admin.ai.v1.UnbanGeminiKeyRequest.
|
|
73
87
|
* Use `create(UnbanGeminiKeyRequestSchema)` to create a new message.
|
|
74
88
|
*/
|
|
75
89
|
export const UnbanGeminiKeyRequestSchema = /*@__PURE__*/
|
|
76
|
-
messageDesc(file_admin_ai_v1_service,
|
|
90
|
+
messageDesc(file_admin_ai_v1_service, 10);
|
|
77
91
|
|
|
78
92
|
/**
|
|
79
93
|
* Describes the message admin.ai.v1.ListRequestsRequest.
|
|
80
94
|
* Use `create(ListRequestsRequestSchema)` to create a new message.
|
|
81
95
|
*/
|
|
82
96
|
export const ListRequestsRequestSchema = /*@__PURE__*/
|
|
83
|
-
messageDesc(file_admin_ai_v1_service,
|
|
97
|
+
messageDesc(file_admin_ai_v1_service, 11);
|
|
84
98
|
|
|
85
99
|
/**
|
|
86
100
|
* Describes the message admin.ai.v1.ListRequestsResponse.
|
|
87
101
|
* Use `create(ListRequestsResponseSchema)` to create a new message.
|
|
88
102
|
*/
|
|
89
103
|
export const ListRequestsResponseSchema = /*@__PURE__*/
|
|
90
|
-
messageDesc(file_admin_ai_v1_service,
|
|
104
|
+
messageDesc(file_admin_ai_v1_service, 12);
|
|
91
105
|
|
|
92
106
|
/**
|
|
93
107
|
* Describes the message admin.ai.v1.GetRequestRequest.
|
|
94
108
|
* Use `create(GetRequestRequestSchema)` to create a new message.
|
|
95
109
|
*/
|
|
96
110
|
export const GetRequestRequestSchema = /*@__PURE__*/
|
|
97
|
-
messageDesc(file_admin_ai_v1_service,
|
|
111
|
+
messageDesc(file_admin_ai_v1_service, 13);
|
|
98
112
|
|
|
99
113
|
/**
|
|
100
114
|
* Describes the message admin.ai.v1.GetRequestResponse.
|
|
101
115
|
* Use `create(GetRequestResponseSchema)` to create a new message.
|
|
102
116
|
*/
|
|
103
117
|
export const GetRequestResponseSchema = /*@__PURE__*/
|
|
104
|
-
messageDesc(file_admin_ai_v1_service,
|
|
118
|
+
messageDesc(file_admin_ai_v1_service, 14);
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* Describes the message admin.ai.v1.GetRequestsByRequestIDsRequest.
|
|
122
|
+
* Use `create(GetRequestsByRequestIDsRequestSchema)` to create a new message.
|
|
123
|
+
*/
|
|
124
|
+
export const GetRequestsByRequestIDsRequestSchema = /*@__PURE__*/
|
|
125
|
+
messageDesc(file_admin_ai_v1_service, 15);
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* Describes the message admin.ai.v1.GetRequestsByRequestIDsResponse.
|
|
129
|
+
* Use `create(GetRequestsByRequestIDsResponseSchema)` to create a new message.
|
|
130
|
+
*/
|
|
131
|
+
export const GetRequestsByRequestIDsResponseSchema = /*@__PURE__*/
|
|
132
|
+
messageDesc(file_admin_ai_v1_service, 16);
|
|
105
133
|
|
|
106
134
|
/**
|
|
107
135
|
* @generated from service admin.ai.v1.AIAdminService
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
5
|
|
|
6
|
-
import { ArchiveCategoryRequest, ArchiveCategoryResponse, CreateCategoryRequest, CreateCategoryResponse, GetCategoryRequest, GetCategoryResponse, ListCategoriesRequest, ListCategoriesResponse, SetCategoryActiveRequest, SetCategoryActiveResponse, UpdateCategoryRequest, UpdateCategoryResponse } from "./service_pb.js";
|
|
6
|
+
import { ArchiveCategoryRequest, ArchiveCategoryResponse, CreateCategoryRequest, CreateCategoryResponse, GetCategoriesByIDsRequest, GetCategoriesByIDsResponse, GetCategoryRequest, GetCategoryResponse, ListCategoriesRequest, ListCategoriesResponse, SetCategoryActiveRequest, SetCategoryActiveResponse, UpdateCategoryRequest, UpdateCategoryResponse } from "./service_pb.js";
|
|
7
7
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -48,6 +48,15 @@ export declare const CategoryAdminService: {
|
|
|
48
48
|
readonly O: typeof ListCategoriesResponse,
|
|
49
49
|
readonly kind: MethodKind.Unary,
|
|
50
50
|
},
|
|
51
|
+
/**
|
|
52
|
+
* @generated from rpc admin.category.v1.CategoryAdminService.GetCategoriesByIDs
|
|
53
|
+
*/
|
|
54
|
+
readonly getCategoriesByIDs: {
|
|
55
|
+
readonly name: "GetCategoriesByIDs",
|
|
56
|
+
readonly I: typeof GetCategoriesByIDsRequest,
|
|
57
|
+
readonly O: typeof GetCategoriesByIDsResponse,
|
|
58
|
+
readonly kind: MethodKind.Unary,
|
|
59
|
+
},
|
|
51
60
|
/**
|
|
52
61
|
* @generated from rpc admin.category.v1.CategoryAdminService.SetCategoryActive
|
|
53
62
|
*/
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
5
|
|
|
6
|
-
import { ArchiveCategoryRequest, ArchiveCategoryResponse, CreateCategoryRequest, CreateCategoryResponse, GetCategoryRequest, GetCategoryResponse, ListCategoriesRequest, ListCategoriesResponse, SetCategoryActiveRequest, SetCategoryActiveResponse, UpdateCategoryRequest, UpdateCategoryResponse } from "./service_pb.js";
|
|
6
|
+
import { ArchiveCategoryRequest, ArchiveCategoryResponse, CreateCategoryRequest, CreateCategoryResponse, GetCategoriesByIDsRequest, GetCategoriesByIDsResponse, GetCategoryRequest, GetCategoryResponse, ListCategoriesRequest, ListCategoriesResponse, SetCategoryActiveRequest, SetCategoryActiveResponse, UpdateCategoryRequest, UpdateCategoryResponse } from "./service_pb.js";
|
|
7
7
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -48,6 +48,15 @@ export const CategoryAdminService = {
|
|
|
48
48
|
O: ListCategoriesResponse,
|
|
49
49
|
kind: MethodKind.Unary,
|
|
50
50
|
},
|
|
51
|
+
/**
|
|
52
|
+
* @generated from rpc admin.category.v1.CategoryAdminService.GetCategoriesByIDs
|
|
53
|
+
*/
|
|
54
|
+
getCategoriesByIDs: {
|
|
55
|
+
name: "GetCategoriesByIDs",
|
|
56
|
+
I: GetCategoriesByIDsRequest,
|
|
57
|
+
O: GetCategoriesByIDsResponse,
|
|
58
|
+
kind: MethodKind.Unary,
|
|
59
|
+
},
|
|
51
60
|
/**
|
|
52
61
|
* @generated from rpc admin.category.v1.CategoryAdminService.SetCategoryActive
|
|
53
62
|
*/
|
|
@@ -274,6 +274,38 @@ export declare type ListCategoriesResponse = Message<"admin.category.v1.ListCate
|
|
|
274
274
|
*/
|
|
275
275
|
export declare const ListCategoriesResponseSchema: GenMessage<ListCategoriesResponse>;
|
|
276
276
|
|
|
277
|
+
/**
|
|
278
|
+
* @generated from message admin.category.v1.GetCategoriesByIDsRequest
|
|
279
|
+
*/
|
|
280
|
+
export declare type GetCategoriesByIDsRequest = Message<"admin.category.v1.GetCategoriesByIDsRequest"> & {
|
|
281
|
+
/**
|
|
282
|
+
* @generated from field: repeated uint64 category_ids = 1;
|
|
283
|
+
*/
|
|
284
|
+
categoryIds: bigint[];
|
|
285
|
+
};
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* Describes the message admin.category.v1.GetCategoriesByIDsRequest.
|
|
289
|
+
* Use `create(GetCategoriesByIDsRequestSchema)` to create a new message.
|
|
290
|
+
*/
|
|
291
|
+
export declare const GetCategoriesByIDsRequestSchema: GenMessage<GetCategoriesByIDsRequest>;
|
|
292
|
+
|
|
293
|
+
/**
|
|
294
|
+
* @generated from message admin.category.v1.GetCategoriesByIDsResponse
|
|
295
|
+
*/
|
|
296
|
+
export declare type GetCategoriesByIDsResponse = Message<"admin.category.v1.GetCategoriesByIDsResponse"> & {
|
|
297
|
+
/**
|
|
298
|
+
* @generated from field: repeated admin.category.v1.Category items = 1;
|
|
299
|
+
*/
|
|
300
|
+
items: Category[];
|
|
301
|
+
};
|
|
302
|
+
|
|
303
|
+
/**
|
|
304
|
+
* Describes the message admin.category.v1.GetCategoriesByIDsResponse.
|
|
305
|
+
* Use `create(GetCategoriesByIDsResponseSchema)` to create a new message.
|
|
306
|
+
*/
|
|
307
|
+
export declare const GetCategoriesByIDsResponseSchema: GenMessage<GetCategoriesByIDsResponse>;
|
|
308
|
+
|
|
277
309
|
/**
|
|
278
310
|
* @generated from message admin.category.v1.SetCategoryActiveRequest
|
|
279
311
|
*/
|
|
@@ -430,6 +462,14 @@ export declare const CategoryAdminService: GenService<{
|
|
|
430
462
|
input: typeof ListCategoriesRequestSchema;
|
|
431
463
|
output: typeof ListCategoriesResponseSchema;
|
|
432
464
|
},
|
|
465
|
+
/**
|
|
466
|
+
* @generated from rpc admin.category.v1.CategoryAdminService.GetCategoriesByIDs
|
|
467
|
+
*/
|
|
468
|
+
getCategoriesByIDs: {
|
|
469
|
+
methodKind: "unary";
|
|
470
|
+
input: typeof GetCategoriesByIDsRequestSchema;
|
|
471
|
+
output: typeof GetCategoriesByIDsResponseSchema;
|
|
472
|
+
},
|
|
433
473
|
/**
|
|
434
474
|
* @generated from rpc admin.category.v1.CategoryAdminService.SetCategoryActive
|
|
435
475
|
*/
|
|
@@ -10,7 +10,7 @@ import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
|
10
10
|
* Describes the file admin/category/v1/service.proto.
|
|
11
11
|
*/
|
|
12
12
|
export const file_admin_category_v1_service = /*@__PURE__*/
|
|
13
|
-
fileDesc("
|
|
13
|
+
fileDesc("Ch9hZG1pbi9jYXRlZ29yeS92MS9zZXJ2aWNlLnByb3RvEhFhZG1pbi5jYXRlZ29yeS52MSLsAQoIQ2F0ZWdvcnkSEwoLY2F0ZWdvcnlfaWQYASABKAQSDQoFdGl0bGUYAiABKAkSFgoJcGFyZW50X2lkGAMgASgESACIAQESEQoJaXNfYWN0aXZlGAQgASgIEhIKCnNvcnRfb3JkZXIYBSABKAUSDwoHdmVyc2lvbhgGIAEoDRIuCgpjcmVhdGVkX2F0GAcgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIuCgp1cGRhdGVkX2F0GAggASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEIMCgpfcGFyZW50X2lkInMKFUNyZWF0ZUNhdGVnb3J5UmVxdWVzdBINCgV0aXRsZRgBIAEoCRIWCglwYXJlbnRfaWQYAiABKARIAIgBARISCgpzb3J0X29yZGVyGAMgASgFEhEKCWlzX2FjdGl2ZRgEIAEoCEIMCgpfcGFyZW50X2lkIkcKFkNyZWF0ZUNhdGVnb3J5UmVzcG9uc2USLQoIY2F0ZWdvcnkYASABKAsyGy5hZG1pbi5jYXRlZ29yeS52MS5DYXRlZ29yeSLdAQoVVXBkYXRlQ2F0ZWdvcnlSZXF1ZXN0EhMKC2NhdGVnb3J5X2lkGAEgASgEEhIKBXRpdGxlGAIgASgJSAGIAQESFwoNcGFyZW50X2lkX3NldBgDIAEoBEgAEhkKD3BhcmVudF9pZF9jbGVhchgEIAEoCEgAEhcKCnNvcnRfb3JkZXIYBSABKAVIAogBARIWCglpc19hY3RpdmUYBiABKAhIA4gBAUIPCg1wYXJlbnRfY2hhbmdlQggKBl90aXRsZUINCgtfc29ydF9vcmRlckIMCgpfaXNfYWN0aXZlIkcKFlVwZGF0ZUNhdGVnb3J5UmVzcG9uc2USLQoIY2F0ZWdvcnkYASABKAsyGy5hZG1pbi5jYXRlZ29yeS52MS5DYXRlZ29yeSIpChJHZXRDYXRlZ29yeVJlcXVlc3QSEwoLY2F0ZWdvcnlfaWQYASABKAQiRAoTR2V0Q2F0ZWdvcnlSZXNwb25zZRItCghjYXRlZ29yeRgBIAEoCzIbLmFkbWluLmNhdGVnb3J5LnYxLkNhdGVnb3J5IoQCChVMaXN0Q2F0ZWdvcmllc1JlcXVlc3QSFwoKdGl0bGVfbGlrZRgBIAEoCUgAiAEBEhYKCXBhcmVudF9pZBgCIAEoBEgBiAEBEhMKC29ubHlfYWN0aXZlGAMgASgIEg0KBWxpbWl0GAQgASgNEg4KBm9mZnNldBgFIAEoBBI1Cgdzb3J0X2J5GAYgASgOMiQuYWRtaW4uY2F0ZWdvcnkudjEuQ2F0ZWdvcnlTb3J0RmllbGQSMgoIc29ydF9kaXIYByABKA4yIC5hZG1pbi5jYXRlZ29yeS52MS5Tb3J0RGlyZWN0aW9uQg0KC190aXRsZV9saWtlQgwKCl9wYXJlbnRfaWQiUwoWTGlzdENhdGVnb3JpZXNSZXNwb25zZRIqCgVpdGVtcxgBIAMoCzIbLmFkbWluLmNhdGVnb3J5LnYxLkNhdGVnb3J5Eg0KBXRvdGFsGAIgASgEIjEKGUdldENhdGVnb3JpZXNCeUlEc1JlcXVlc3QSFAoMY2F0ZWdvcnlfaWRzGAEgAygEIkgKGkdldENhdGVnb3JpZXNCeUlEc1Jlc3BvbnNlEioKBWl0ZW1zGAEgAygLMhsuYWRtaW4uY2F0ZWdvcnkudjEuQ2F0ZWdvcnkiQgoYU2V0Q2F0ZWdvcnlBY3RpdmVSZXF1ZXN0EhMKC2NhdGVnb3J5X2lkGAEgASgEEhEKCWlzX2FjdGl2ZRgCIAEoCCJKChlTZXRDYXRlZ29yeUFjdGl2ZVJlc3BvbnNlEi0KCGNhdGVnb3J5GAEgASgLMhsuYWRtaW4uY2F0ZWdvcnkudjEuQ2F0ZWdvcnkiLQoWQXJjaGl2ZUNhdGVnb3J5UmVxdWVzdBITCgtjYXRlZ29yeV9pZBgBIAEoBCIZChdBcmNoaXZlQ2F0ZWdvcnlSZXNwb25zZSpgCg1Tb3J0RGlyZWN0aW9uEh4KGlNPUlRfRElSRUNUSU9OX1VOU1BFQ0lGSUVEEAASFgoSU09SVF9ESVJFQ1RJT05fQVNDEAESFwoTU09SVF9ESVJFQ1RJT05fREVTQxACKpcBChFDYXRlZ29yeVNvcnRGaWVsZBIjCh9DQVRFR09SWV9TT1JUX0ZJRUxEX1VOU1BFQ0lGSUVEEAASGgoWQ0FURUdPUllfU09SVF9GSUVMRF9JRBABEh0KGUNBVEVHT1JZX1NPUlRfRklFTERfVElUTEUQAhIiCh5DQVRFR09SWV9TT1JUX0ZJRUxEX1NPUlRfT1JERVIQAzKrCAoUQ2F0ZWdvcnlBZG1pblNlcnZpY2UShgEKDkNyZWF0ZUNhdGVnb3J5EiguYWRtaW4uY2F0ZWdvcnkudjEuQ3JlYXRlQ2F0ZWdvcnlSZXF1ZXN0GikuYWRtaW4uY2F0ZWdvcnkudjEuQ3JlYXRlQ2F0ZWdvcnlSZXNwb25zZSIfgtPkkwIZOgEqIhQvYWRtaW4vdjEvY2F0ZWdvcmllcxKUAQoOVXBkYXRlQ2F0ZWdvcnkSKC5hZG1pbi5jYXRlZ29yeS52MS5VcGRhdGVDYXRlZ29yeVJlcXVlc3QaKS5hZG1pbi5jYXRlZ29yeS52MS5VcGRhdGVDYXRlZ29yeVJlc3BvbnNlIi2C0+STAic6ASoyIi9hZG1pbi92MS9jYXRlZ29yaWVzL3tjYXRlZ29yeV9pZH0SiAEKC0dldENhdGVnb3J5EiUuYWRtaW4uY2F0ZWdvcnkudjEuR2V0Q2F0ZWdvcnlSZXF1ZXN0GiYuYWRtaW4uY2F0ZWdvcnkudjEuR2V0Q2F0ZWdvcnlSZXNwb25zZSIqgtPkkwIkEiIvYWRtaW4vdjEvY2F0ZWdvcmllcy97Y2F0ZWdvcnlfaWR9EoMBCg5MaXN0Q2F0ZWdvcmllcxIoLmFkbWluLmNhdGVnb3J5LnYxLkxpc3RDYXRlZ29yaWVzUmVxdWVzdBopLmFkbWluLmNhdGVnb3J5LnYxLkxpc3RDYXRlZ29yaWVzUmVzcG9uc2UiHILT5JMCFhIUL2FkbWluL3YxL2NhdGVnb3JpZXMSmAEKEkdldENhdGVnb3JpZXNCeUlEcxIsLmFkbWluLmNhdGVnb3J5LnYxLkdldENhdGVnb3JpZXNCeUlEc1JlcXVlc3QaLS5hZG1pbi5jYXRlZ29yeS52MS5HZXRDYXRlZ29yaWVzQnlJRHNSZXNwb25zZSIlgtPkkwIfOgEqIhovYWRtaW4vdjEvY2F0ZWdvcmllcy9iYXRjaBKkAQoRU2V0Q2F0ZWdvcnlBY3RpdmUSKy5hZG1pbi5jYXRlZ29yeS52MS5TZXRDYXRlZ29yeUFjdGl2ZVJlcXVlc3QaLC5hZG1pbi5jYXRlZ29yeS52MS5TZXRDYXRlZ29yeUFjdGl2ZVJlc3BvbnNlIjSC0+STAi46ASoiKS9hZG1pbi92MS9jYXRlZ29yaWVzL3tjYXRlZ29yeV9pZH0vYWN0aXZlEp8BCg9BcmNoaXZlQ2F0ZWdvcnkSKS5hZG1pbi5jYXRlZ29yeS52MS5BcmNoaXZlQ2F0ZWdvcnlSZXF1ZXN0GiouYWRtaW4uY2F0ZWdvcnkudjEuQXJjaGl2ZUNhdGVnb3J5UmVzcG9uc2UiNYLT5JMCLzoBKiIqL2FkbWluL3YxL2NhdGVnb3JpZXMve2NhdGVnb3J5X2lkfS9hcmNoaXZlQkRaQmdpdGh1Yi5jb20vRzJHcy9hcGktY29udHJhY3RzLWdvL2FkbWluL2NhdGVnb3J5L3YxO2FkbWluY2F0ZWdvcnl2MWIGcHJvdG8z", [file_google_api_annotations, file_google_protobuf_timestamp]);
|
|
14
14
|
|
|
15
15
|
/**
|
|
16
16
|
* Describes the message admin.category.v1.Category.
|
|
@@ -75,33 +75,47 @@ export const ListCategoriesRequestSchema = /*@__PURE__*/
|
|
|
75
75
|
export const ListCategoriesResponseSchema = /*@__PURE__*/
|
|
76
76
|
messageDesc(file_admin_category_v1_service, 8);
|
|
77
77
|
|
|
78
|
+
/**
|
|
79
|
+
* Describes the message admin.category.v1.GetCategoriesByIDsRequest.
|
|
80
|
+
* Use `create(GetCategoriesByIDsRequestSchema)` to create a new message.
|
|
81
|
+
*/
|
|
82
|
+
export const GetCategoriesByIDsRequestSchema = /*@__PURE__*/
|
|
83
|
+
messageDesc(file_admin_category_v1_service, 9);
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Describes the message admin.category.v1.GetCategoriesByIDsResponse.
|
|
87
|
+
* Use `create(GetCategoriesByIDsResponseSchema)` to create a new message.
|
|
88
|
+
*/
|
|
89
|
+
export const GetCategoriesByIDsResponseSchema = /*@__PURE__*/
|
|
90
|
+
messageDesc(file_admin_category_v1_service, 10);
|
|
91
|
+
|
|
78
92
|
/**
|
|
79
93
|
* Describes the message admin.category.v1.SetCategoryActiveRequest.
|
|
80
94
|
* Use `create(SetCategoryActiveRequestSchema)` to create a new message.
|
|
81
95
|
*/
|
|
82
96
|
export const SetCategoryActiveRequestSchema = /*@__PURE__*/
|
|
83
|
-
messageDesc(file_admin_category_v1_service,
|
|
97
|
+
messageDesc(file_admin_category_v1_service, 11);
|
|
84
98
|
|
|
85
99
|
/**
|
|
86
100
|
* Describes the message admin.category.v1.SetCategoryActiveResponse.
|
|
87
101
|
* Use `create(SetCategoryActiveResponseSchema)` to create a new message.
|
|
88
102
|
*/
|
|
89
103
|
export const SetCategoryActiveResponseSchema = /*@__PURE__*/
|
|
90
|
-
messageDesc(file_admin_category_v1_service,
|
|
104
|
+
messageDesc(file_admin_category_v1_service, 12);
|
|
91
105
|
|
|
92
106
|
/**
|
|
93
107
|
* Describes the message admin.category.v1.ArchiveCategoryRequest.
|
|
94
108
|
* Use `create(ArchiveCategoryRequestSchema)` to create a new message.
|
|
95
109
|
*/
|
|
96
110
|
export const ArchiveCategoryRequestSchema = /*@__PURE__*/
|
|
97
|
-
messageDesc(file_admin_category_v1_service,
|
|
111
|
+
messageDesc(file_admin_category_v1_service, 13);
|
|
98
112
|
|
|
99
113
|
/**
|
|
100
114
|
* Describes the message admin.category.v1.ArchiveCategoryResponse.
|
|
101
115
|
* Use `create(ArchiveCategoryResponseSchema)` to create a new message.
|
|
102
116
|
*/
|
|
103
117
|
export const ArchiveCategoryResponseSchema = /*@__PURE__*/
|
|
104
|
-
messageDesc(file_admin_category_v1_service,
|
|
118
|
+
messageDesc(file_admin_category_v1_service, 14);
|
|
105
119
|
|
|
106
120
|
/**
|
|
107
121
|
* Describes the enum admin.category.v1.SortDirection.
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
5
|
|
|
6
|
-
import { AddSubQuestionFileRequest, AddSubQuestionFileResponse, CreateGroupRequest, CreateGroupResponse, CreateQuestionRequest, CreateQuestionResponse, CreateSubQuestionRequest, CreateSubQuestionResponse, DeleteGroupRequest, DeleteGroupResponse, DeleteQuestionRequest, DeleteQuestionResponse, DeleteSubQuestionRequest, DeleteSubQuestionResponse, GetSubQuestionsByIDsRequest, GetSubQuestionsByIDsResponse, ListGroupsRequest, ListGroupsResponse, ListQuestionsRequest, ListQuestionsResponse, ListSubQuestionsRequest, ListSubQuestionsResponse, RemoveSubQuestionFileRequest, RemoveSubQuestionFileResponse, UpdateGroupRequest, UpdateGroupResponse, UpdateQuestionRequest, UpdateQuestionResponse, UpdateSubQuestionRequest, UpdateSubQuestionResponse } from "./service_pb.js";
|
|
6
|
+
import { AddSubQuestionFileRequest, AddSubQuestionFileResponse, CreateGroupRequest, CreateGroupResponse, CreateQuestionRequest, CreateQuestionResponse, CreateSubQuestionRequest, CreateSubQuestionResponse, DeleteGroupRequest, DeleteGroupResponse, DeleteQuestionRequest, DeleteQuestionResponse, DeleteSubQuestionRequest, DeleteSubQuestionResponse, GetGroupsByIDsRequest, GetGroupsByIDsResponse, GetQuestionsByIDsRequest, GetQuestionsByIDsResponse, GetSubQuestionsByIDsRequest, GetSubQuestionsByIDsResponse, ListGroupsRequest, ListGroupsResponse, ListQuestionsRequest, ListQuestionsResponse, ListSubQuestionsRequest, ListSubQuestionsResponse, RemoveSubQuestionFileRequest, RemoveSubQuestionFileResponse, UpdateGroupRequest, UpdateGroupResponse, UpdateQuestionRequest, UpdateQuestionResponse, UpdateSubQuestionRequest, UpdateSubQuestionResponse } from "./service_pb.js";
|
|
7
7
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -21,6 +21,15 @@ export declare const FAQAdminService: {
|
|
|
21
21
|
readonly O: typeof ListGroupsResponse,
|
|
22
22
|
readonly kind: MethodKind.Unary,
|
|
23
23
|
},
|
|
24
|
+
/**
|
|
25
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.GetGroupsByIDs
|
|
26
|
+
*/
|
|
27
|
+
readonly getGroupsByIDs: {
|
|
28
|
+
readonly name: "GetGroupsByIDs",
|
|
29
|
+
readonly I: typeof GetGroupsByIDsRequest,
|
|
30
|
+
readonly O: typeof GetGroupsByIDsResponse,
|
|
31
|
+
readonly kind: MethodKind.Unary,
|
|
32
|
+
},
|
|
24
33
|
/**
|
|
25
34
|
* @generated from rpc admin.faq.v1.FAQAdminService.ListQuestions
|
|
26
35
|
*/
|
|
@@ -30,6 +39,15 @@ export declare const FAQAdminService: {
|
|
|
30
39
|
readonly O: typeof ListQuestionsResponse,
|
|
31
40
|
readonly kind: MethodKind.Unary,
|
|
32
41
|
},
|
|
42
|
+
/**
|
|
43
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.GetQuestionsByIDs
|
|
44
|
+
*/
|
|
45
|
+
readonly getQuestionsByIDs: {
|
|
46
|
+
readonly name: "GetQuestionsByIDs",
|
|
47
|
+
readonly I: typeof GetQuestionsByIDsRequest,
|
|
48
|
+
readonly O: typeof GetQuestionsByIDsResponse,
|
|
49
|
+
readonly kind: MethodKind.Unary,
|
|
50
|
+
},
|
|
33
51
|
/**
|
|
34
52
|
* @generated from rpc admin.faq.v1.FAQAdminService.ListSubQuestions
|
|
35
53
|
*/
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
5
|
|
|
6
|
-
import { AddSubQuestionFileRequest, AddSubQuestionFileResponse, CreateGroupRequest, CreateGroupResponse, CreateQuestionRequest, CreateQuestionResponse, CreateSubQuestionRequest, CreateSubQuestionResponse, DeleteGroupRequest, DeleteGroupResponse, DeleteQuestionRequest, DeleteQuestionResponse, DeleteSubQuestionRequest, DeleteSubQuestionResponse, GetSubQuestionsByIDsRequest, GetSubQuestionsByIDsResponse, ListGroupsRequest, ListGroupsResponse, ListQuestionsRequest, ListQuestionsResponse, ListSubQuestionsRequest, ListSubQuestionsResponse, RemoveSubQuestionFileRequest, RemoveSubQuestionFileResponse, UpdateGroupRequest, UpdateGroupResponse, UpdateQuestionRequest, UpdateQuestionResponse, UpdateSubQuestionRequest, UpdateSubQuestionResponse } from "./service_pb.js";
|
|
6
|
+
import { AddSubQuestionFileRequest, AddSubQuestionFileResponse, CreateGroupRequest, CreateGroupResponse, CreateQuestionRequest, CreateQuestionResponse, CreateSubQuestionRequest, CreateSubQuestionResponse, DeleteGroupRequest, DeleteGroupResponse, DeleteQuestionRequest, DeleteQuestionResponse, DeleteSubQuestionRequest, DeleteSubQuestionResponse, GetGroupsByIDsRequest, GetGroupsByIDsResponse, GetQuestionsByIDsRequest, GetQuestionsByIDsResponse, GetSubQuestionsByIDsRequest, GetSubQuestionsByIDsResponse, ListGroupsRequest, ListGroupsResponse, ListQuestionsRequest, ListQuestionsResponse, ListSubQuestionsRequest, ListSubQuestionsResponse, RemoveSubQuestionFileRequest, RemoveSubQuestionFileResponse, UpdateGroupRequest, UpdateGroupResponse, UpdateQuestionRequest, UpdateQuestionResponse, UpdateSubQuestionRequest, UpdateSubQuestionResponse } from "./service_pb.js";
|
|
7
7
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -21,6 +21,15 @@ export const FAQAdminService = {
|
|
|
21
21
|
O: ListGroupsResponse,
|
|
22
22
|
kind: MethodKind.Unary,
|
|
23
23
|
},
|
|
24
|
+
/**
|
|
25
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.GetGroupsByIDs
|
|
26
|
+
*/
|
|
27
|
+
getGroupsByIDs: {
|
|
28
|
+
name: "GetGroupsByIDs",
|
|
29
|
+
I: GetGroupsByIDsRequest,
|
|
30
|
+
O: GetGroupsByIDsResponse,
|
|
31
|
+
kind: MethodKind.Unary,
|
|
32
|
+
},
|
|
24
33
|
/**
|
|
25
34
|
* @generated from rpc admin.faq.v1.FAQAdminService.ListQuestions
|
|
26
35
|
*/
|
|
@@ -30,6 +39,15 @@ export const FAQAdminService = {
|
|
|
30
39
|
O: ListQuestionsResponse,
|
|
31
40
|
kind: MethodKind.Unary,
|
|
32
41
|
},
|
|
42
|
+
/**
|
|
43
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.GetQuestionsByIDs
|
|
44
|
+
*/
|
|
45
|
+
getQuestionsByIDs: {
|
|
46
|
+
name: "GetQuestionsByIDs",
|
|
47
|
+
I: GetQuestionsByIDsRequest,
|
|
48
|
+
O: GetQuestionsByIDsResponse,
|
|
49
|
+
kind: MethodKind.Unary,
|
|
50
|
+
},
|
|
33
51
|
/**
|
|
34
52
|
* @generated from rpc admin.faq.v1.FAQAdminService.ListSubQuestions
|
|
35
53
|
*/
|
|
@@ -770,6 +770,38 @@ export declare type ListGroupsResponse = Message<"admin.faq.v1.ListGroupsRespons
|
|
|
770
770
|
*/
|
|
771
771
|
export declare const ListGroupsResponseSchema: GenMessage<ListGroupsResponse>;
|
|
772
772
|
|
|
773
|
+
/**
|
|
774
|
+
* @generated from message admin.faq.v1.GetGroupsByIDsRequest
|
|
775
|
+
*/
|
|
776
|
+
export declare type GetGroupsByIDsRequest = Message<"admin.faq.v1.GetGroupsByIDsRequest"> & {
|
|
777
|
+
/**
|
|
778
|
+
* @generated from field: repeated uint64 ids = 1;
|
|
779
|
+
*/
|
|
780
|
+
ids: bigint[];
|
|
781
|
+
};
|
|
782
|
+
|
|
783
|
+
/**
|
|
784
|
+
* Describes the message admin.faq.v1.GetGroupsByIDsRequest.
|
|
785
|
+
* Use `create(GetGroupsByIDsRequestSchema)` to create a new message.
|
|
786
|
+
*/
|
|
787
|
+
export declare const GetGroupsByIDsRequestSchema: GenMessage<GetGroupsByIDsRequest>;
|
|
788
|
+
|
|
789
|
+
/**
|
|
790
|
+
* @generated from message admin.faq.v1.GetGroupsByIDsResponse
|
|
791
|
+
*/
|
|
792
|
+
export declare type GetGroupsByIDsResponse = Message<"admin.faq.v1.GetGroupsByIDsResponse"> & {
|
|
793
|
+
/**
|
|
794
|
+
* @generated from field: repeated admin.faq.v1.FAQGroup items = 1;
|
|
795
|
+
*/
|
|
796
|
+
items: FAQGroup[];
|
|
797
|
+
};
|
|
798
|
+
|
|
799
|
+
/**
|
|
800
|
+
* Describes the message admin.faq.v1.GetGroupsByIDsResponse.
|
|
801
|
+
* Use `create(GetGroupsByIDsResponseSchema)` to create a new message.
|
|
802
|
+
*/
|
|
803
|
+
export declare const GetGroupsByIDsResponseSchema: GenMessage<GetGroupsByIDsResponse>;
|
|
804
|
+
|
|
773
805
|
/**
|
|
774
806
|
* @generated from message admin.faq.v1.ListQuestionsRequest
|
|
775
807
|
*/
|
|
@@ -802,6 +834,38 @@ export declare type ListQuestionsResponse = Message<"admin.faq.v1.ListQuestionsR
|
|
|
802
834
|
*/
|
|
803
835
|
export declare const ListQuestionsResponseSchema: GenMessage<ListQuestionsResponse>;
|
|
804
836
|
|
|
837
|
+
/**
|
|
838
|
+
* @generated from message admin.faq.v1.GetQuestionsByIDsRequest
|
|
839
|
+
*/
|
|
840
|
+
export declare type GetQuestionsByIDsRequest = Message<"admin.faq.v1.GetQuestionsByIDsRequest"> & {
|
|
841
|
+
/**
|
|
842
|
+
* @generated from field: repeated uint64 ids = 1;
|
|
843
|
+
*/
|
|
844
|
+
ids: bigint[];
|
|
845
|
+
};
|
|
846
|
+
|
|
847
|
+
/**
|
|
848
|
+
* Describes the message admin.faq.v1.GetQuestionsByIDsRequest.
|
|
849
|
+
* Use `create(GetQuestionsByIDsRequestSchema)` to create a new message.
|
|
850
|
+
*/
|
|
851
|
+
export declare const GetQuestionsByIDsRequestSchema: GenMessage<GetQuestionsByIDsRequest>;
|
|
852
|
+
|
|
853
|
+
/**
|
|
854
|
+
* @generated from message admin.faq.v1.GetQuestionsByIDsResponse
|
|
855
|
+
*/
|
|
856
|
+
export declare type GetQuestionsByIDsResponse = Message<"admin.faq.v1.GetQuestionsByIDsResponse"> & {
|
|
857
|
+
/**
|
|
858
|
+
* @generated from field: repeated admin.faq.v1.FAQQuestion items = 1;
|
|
859
|
+
*/
|
|
860
|
+
items: FAQQuestion[];
|
|
861
|
+
};
|
|
862
|
+
|
|
863
|
+
/**
|
|
864
|
+
* Describes the message admin.faq.v1.GetQuestionsByIDsResponse.
|
|
865
|
+
* Use `create(GetQuestionsByIDsResponseSchema)` to create a new message.
|
|
866
|
+
*/
|
|
867
|
+
export declare const GetQuestionsByIDsResponseSchema: GenMessage<GetQuestionsByIDsResponse>;
|
|
868
|
+
|
|
805
869
|
/**
|
|
806
870
|
* @generated from message admin.faq.v1.ListSubQuestionsRequest
|
|
807
871
|
*/
|
|
@@ -878,6 +942,14 @@ export declare const FAQAdminService: GenService<{
|
|
|
878
942
|
input: typeof ListGroupsRequestSchema;
|
|
879
943
|
output: typeof ListGroupsResponseSchema;
|
|
880
944
|
},
|
|
945
|
+
/**
|
|
946
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.GetGroupsByIDs
|
|
947
|
+
*/
|
|
948
|
+
getGroupsByIDs: {
|
|
949
|
+
methodKind: "unary";
|
|
950
|
+
input: typeof GetGroupsByIDsRequestSchema;
|
|
951
|
+
output: typeof GetGroupsByIDsResponseSchema;
|
|
952
|
+
},
|
|
881
953
|
/**
|
|
882
954
|
* @generated from rpc admin.faq.v1.FAQAdminService.ListQuestions
|
|
883
955
|
*/
|
|
@@ -886,6 +958,14 @@ export declare const FAQAdminService: GenService<{
|
|
|
886
958
|
input: typeof ListQuestionsRequestSchema;
|
|
887
959
|
output: typeof ListQuestionsResponseSchema;
|
|
888
960
|
},
|
|
961
|
+
/**
|
|
962
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.GetQuestionsByIDs
|
|
963
|
+
*/
|
|
964
|
+
getQuestionsByIDs: {
|
|
965
|
+
methodKind: "unary";
|
|
966
|
+
input: typeof GetQuestionsByIDsRequestSchema;
|
|
967
|
+
output: typeof GetQuestionsByIDsResponseSchema;
|
|
968
|
+
},
|
|
889
969
|
/**
|
|
890
970
|
* @generated from rpc admin.faq.v1.FAQAdminService.ListSubQuestions
|
|
891
971
|
*/
|