@g2gs/contracts 1.0.74 → 1.0.76
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/faq/v1/service_connect.d.ts +116 -0
- package/admin/faq/v1/service_connect.js +116 -0
- package/admin/faq/v1/service_pb.d.ts +838 -0
- package/admin/faq/v1/service_pb.js +216 -0
- 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,116 @@
|
|
|
1
|
+
// @generated by protoc-gen-connect-es v1.6.1
|
|
2
|
+
// @generated from file admin/faq/v1/service.proto (package admin.faq.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
|
|
6
|
+
import { AddSubQuestionFileRequest, AddSubQuestionFileResponse, CreateGroupRequest, CreateGroupResponse, CreateQuestionRequest, CreateQuestionResponse, CreateSubQuestionRequest, CreateSubQuestionResponse, DeleteGroupRequest, DeleteGroupResponse, DeleteQuestionRequest, DeleteQuestionResponse, DeleteSubQuestionRequest, DeleteSubQuestionResponse, RemoveSubQuestionFileRequest, RemoveSubQuestionFileResponse, UpdateGroupRequest, UpdateGroupResponse, UpdateQuestionRequest, UpdateQuestionResponse, UpdateSubQuestionRequest, UpdateSubQuestionResponse } from "./service_pb.js";
|
|
7
|
+
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* @generated from service admin.faq.v1.FAQAdminService
|
|
11
|
+
*/
|
|
12
|
+
export declare const FAQAdminService: {
|
|
13
|
+
readonly typeName: "admin.faq.v1.FAQAdminService",
|
|
14
|
+
readonly methods: {
|
|
15
|
+
/**
|
|
16
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.CreateGroup
|
|
17
|
+
*/
|
|
18
|
+
readonly createGroup: {
|
|
19
|
+
readonly name: "CreateGroup",
|
|
20
|
+
readonly I: typeof CreateGroupRequest,
|
|
21
|
+
readonly O: typeof CreateGroupResponse,
|
|
22
|
+
readonly kind: MethodKind.Unary,
|
|
23
|
+
},
|
|
24
|
+
/**
|
|
25
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.UpdateGroup
|
|
26
|
+
*/
|
|
27
|
+
readonly updateGroup: {
|
|
28
|
+
readonly name: "UpdateGroup",
|
|
29
|
+
readonly I: typeof UpdateGroupRequest,
|
|
30
|
+
readonly O: typeof UpdateGroupResponse,
|
|
31
|
+
readonly kind: MethodKind.Unary,
|
|
32
|
+
},
|
|
33
|
+
/**
|
|
34
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.DeleteGroup
|
|
35
|
+
*/
|
|
36
|
+
readonly deleteGroup: {
|
|
37
|
+
readonly name: "DeleteGroup",
|
|
38
|
+
readonly I: typeof DeleteGroupRequest,
|
|
39
|
+
readonly O: typeof DeleteGroupResponse,
|
|
40
|
+
readonly kind: MethodKind.Unary,
|
|
41
|
+
},
|
|
42
|
+
/**
|
|
43
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.CreateQuestion
|
|
44
|
+
*/
|
|
45
|
+
readonly createQuestion: {
|
|
46
|
+
readonly name: "CreateQuestion",
|
|
47
|
+
readonly I: typeof CreateQuestionRequest,
|
|
48
|
+
readonly O: typeof CreateQuestionResponse,
|
|
49
|
+
readonly kind: MethodKind.Unary,
|
|
50
|
+
},
|
|
51
|
+
/**
|
|
52
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.UpdateQuestion
|
|
53
|
+
*/
|
|
54
|
+
readonly updateQuestion: {
|
|
55
|
+
readonly name: "UpdateQuestion",
|
|
56
|
+
readonly I: typeof UpdateQuestionRequest,
|
|
57
|
+
readonly O: typeof UpdateQuestionResponse,
|
|
58
|
+
readonly kind: MethodKind.Unary,
|
|
59
|
+
},
|
|
60
|
+
/**
|
|
61
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.DeleteQuestion
|
|
62
|
+
*/
|
|
63
|
+
readonly deleteQuestion: {
|
|
64
|
+
readonly name: "DeleteQuestion",
|
|
65
|
+
readonly I: typeof DeleteQuestionRequest,
|
|
66
|
+
readonly O: typeof DeleteQuestionResponse,
|
|
67
|
+
readonly kind: MethodKind.Unary,
|
|
68
|
+
},
|
|
69
|
+
/**
|
|
70
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.CreateSubQuestion
|
|
71
|
+
*/
|
|
72
|
+
readonly createSubQuestion: {
|
|
73
|
+
readonly name: "CreateSubQuestion",
|
|
74
|
+
readonly I: typeof CreateSubQuestionRequest,
|
|
75
|
+
readonly O: typeof CreateSubQuestionResponse,
|
|
76
|
+
readonly kind: MethodKind.Unary,
|
|
77
|
+
},
|
|
78
|
+
/**
|
|
79
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.UpdateSubQuestion
|
|
80
|
+
*/
|
|
81
|
+
readonly updateSubQuestion: {
|
|
82
|
+
readonly name: "UpdateSubQuestion",
|
|
83
|
+
readonly I: typeof UpdateSubQuestionRequest,
|
|
84
|
+
readonly O: typeof UpdateSubQuestionResponse,
|
|
85
|
+
readonly kind: MethodKind.Unary,
|
|
86
|
+
},
|
|
87
|
+
/**
|
|
88
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.DeleteSubQuestion
|
|
89
|
+
*/
|
|
90
|
+
readonly deleteSubQuestion: {
|
|
91
|
+
readonly name: "DeleteSubQuestion",
|
|
92
|
+
readonly I: typeof DeleteSubQuestionRequest,
|
|
93
|
+
readonly O: typeof DeleteSubQuestionResponse,
|
|
94
|
+
readonly kind: MethodKind.Unary,
|
|
95
|
+
},
|
|
96
|
+
/**
|
|
97
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.AddSubQuestionFile
|
|
98
|
+
*/
|
|
99
|
+
readonly addSubQuestionFile: {
|
|
100
|
+
readonly name: "AddSubQuestionFile",
|
|
101
|
+
readonly I: typeof AddSubQuestionFileRequest,
|
|
102
|
+
readonly O: typeof AddSubQuestionFileResponse,
|
|
103
|
+
readonly kind: MethodKind.Unary,
|
|
104
|
+
},
|
|
105
|
+
/**
|
|
106
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.RemoveSubQuestionFile
|
|
107
|
+
*/
|
|
108
|
+
readonly removeSubQuestionFile: {
|
|
109
|
+
readonly name: "RemoveSubQuestionFile",
|
|
110
|
+
readonly I: typeof RemoveSubQuestionFileRequest,
|
|
111
|
+
readonly O: typeof RemoveSubQuestionFileResponse,
|
|
112
|
+
readonly kind: MethodKind.Unary,
|
|
113
|
+
},
|
|
114
|
+
}
|
|
115
|
+
};
|
|
116
|
+
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
// @generated by protoc-gen-connect-es v1.6.1
|
|
2
|
+
// @generated from file admin/faq/v1/service.proto (package admin.faq.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
|
|
6
|
+
import { AddSubQuestionFileRequest, AddSubQuestionFileResponse, CreateGroupRequest, CreateGroupResponse, CreateQuestionRequest, CreateQuestionResponse, CreateSubQuestionRequest, CreateSubQuestionResponse, DeleteGroupRequest, DeleteGroupResponse, DeleteQuestionRequest, DeleteQuestionResponse, DeleteSubQuestionRequest, DeleteSubQuestionResponse, RemoveSubQuestionFileRequest, RemoveSubQuestionFileResponse, UpdateGroupRequest, UpdateGroupResponse, UpdateQuestionRequest, UpdateQuestionResponse, UpdateSubQuestionRequest, UpdateSubQuestionResponse } from "./service_pb.js";
|
|
7
|
+
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* @generated from service admin.faq.v1.FAQAdminService
|
|
11
|
+
*/
|
|
12
|
+
export const FAQAdminService = {
|
|
13
|
+
typeName: "admin.faq.v1.FAQAdminService",
|
|
14
|
+
methods: {
|
|
15
|
+
/**
|
|
16
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.CreateGroup
|
|
17
|
+
*/
|
|
18
|
+
createGroup: {
|
|
19
|
+
name: "CreateGroup",
|
|
20
|
+
I: CreateGroupRequest,
|
|
21
|
+
O: CreateGroupResponse,
|
|
22
|
+
kind: MethodKind.Unary,
|
|
23
|
+
},
|
|
24
|
+
/**
|
|
25
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.UpdateGroup
|
|
26
|
+
*/
|
|
27
|
+
updateGroup: {
|
|
28
|
+
name: "UpdateGroup",
|
|
29
|
+
I: UpdateGroupRequest,
|
|
30
|
+
O: UpdateGroupResponse,
|
|
31
|
+
kind: MethodKind.Unary,
|
|
32
|
+
},
|
|
33
|
+
/**
|
|
34
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.DeleteGroup
|
|
35
|
+
*/
|
|
36
|
+
deleteGroup: {
|
|
37
|
+
name: "DeleteGroup",
|
|
38
|
+
I: DeleteGroupRequest,
|
|
39
|
+
O: DeleteGroupResponse,
|
|
40
|
+
kind: MethodKind.Unary,
|
|
41
|
+
},
|
|
42
|
+
/**
|
|
43
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.CreateQuestion
|
|
44
|
+
*/
|
|
45
|
+
createQuestion: {
|
|
46
|
+
name: "CreateQuestion",
|
|
47
|
+
I: CreateQuestionRequest,
|
|
48
|
+
O: CreateQuestionResponse,
|
|
49
|
+
kind: MethodKind.Unary,
|
|
50
|
+
},
|
|
51
|
+
/**
|
|
52
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.UpdateQuestion
|
|
53
|
+
*/
|
|
54
|
+
updateQuestion: {
|
|
55
|
+
name: "UpdateQuestion",
|
|
56
|
+
I: UpdateQuestionRequest,
|
|
57
|
+
O: UpdateQuestionResponse,
|
|
58
|
+
kind: MethodKind.Unary,
|
|
59
|
+
},
|
|
60
|
+
/**
|
|
61
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.DeleteQuestion
|
|
62
|
+
*/
|
|
63
|
+
deleteQuestion: {
|
|
64
|
+
name: "DeleteQuestion",
|
|
65
|
+
I: DeleteQuestionRequest,
|
|
66
|
+
O: DeleteQuestionResponse,
|
|
67
|
+
kind: MethodKind.Unary,
|
|
68
|
+
},
|
|
69
|
+
/**
|
|
70
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.CreateSubQuestion
|
|
71
|
+
*/
|
|
72
|
+
createSubQuestion: {
|
|
73
|
+
name: "CreateSubQuestion",
|
|
74
|
+
I: CreateSubQuestionRequest,
|
|
75
|
+
O: CreateSubQuestionResponse,
|
|
76
|
+
kind: MethodKind.Unary,
|
|
77
|
+
},
|
|
78
|
+
/**
|
|
79
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.UpdateSubQuestion
|
|
80
|
+
*/
|
|
81
|
+
updateSubQuestion: {
|
|
82
|
+
name: "UpdateSubQuestion",
|
|
83
|
+
I: UpdateSubQuestionRequest,
|
|
84
|
+
O: UpdateSubQuestionResponse,
|
|
85
|
+
kind: MethodKind.Unary,
|
|
86
|
+
},
|
|
87
|
+
/**
|
|
88
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.DeleteSubQuestion
|
|
89
|
+
*/
|
|
90
|
+
deleteSubQuestion: {
|
|
91
|
+
name: "DeleteSubQuestion",
|
|
92
|
+
I: DeleteSubQuestionRequest,
|
|
93
|
+
O: DeleteSubQuestionResponse,
|
|
94
|
+
kind: MethodKind.Unary,
|
|
95
|
+
},
|
|
96
|
+
/**
|
|
97
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.AddSubQuestionFile
|
|
98
|
+
*/
|
|
99
|
+
addSubQuestionFile: {
|
|
100
|
+
name: "AddSubQuestionFile",
|
|
101
|
+
I: AddSubQuestionFileRequest,
|
|
102
|
+
O: AddSubQuestionFileResponse,
|
|
103
|
+
kind: MethodKind.Unary,
|
|
104
|
+
},
|
|
105
|
+
/**
|
|
106
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.RemoveSubQuestionFile
|
|
107
|
+
*/
|
|
108
|
+
removeSubQuestionFile: {
|
|
109
|
+
name: "RemoveSubQuestionFile",
|
|
110
|
+
I: RemoveSubQuestionFileRequest,
|
|
111
|
+
O: RemoveSubQuestionFileResponse,
|
|
112
|
+
kind: MethodKind.Unary,
|
|
113
|
+
},
|
|
114
|
+
}
|
|
115
|
+
};
|
|
116
|
+
|