@g2gs/contracts 1.0.87 → 1.0.89
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 +28 -1
- package/admin/faq/v1/service_connect.js +28 -1
- package/admin/faq/v1/service_pb.d.ts +116 -0
- package/admin/faq/v1/service_pb.js +43 -1
- package/admin/schedule/v1/service_connect.d.ts +152 -0
- package/admin/schedule/v1/service_connect.js +152 -0
- package/admin/schedule/v1/service_pb.d.ts +1102 -0
- package/admin/schedule/v1/service_pb.js +293 -0
- package/admin/tasks/v1/service_connect.d.ts +107 -0
- package/admin/tasks/v1/service_connect.js +107 -0
- package/admin/tasks/v1/service_pb.d.ts +739 -0
- package/admin/tasks/v1/service_pb.js +205 -0
- package/package.json +1 -1
|
@@ -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, 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, 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
|
/**
|
|
@@ -12,6 +12,33 @@ import { MethodKind } from "@bufbuild/protobuf";
|
|
|
12
12
|
export declare const FAQAdminService: {
|
|
13
13
|
readonly typeName: "admin.faq.v1.FAQAdminService",
|
|
14
14
|
readonly methods: {
|
|
15
|
+
/**
|
|
16
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.ListGroups
|
|
17
|
+
*/
|
|
18
|
+
readonly listGroups: {
|
|
19
|
+
readonly name: "ListGroups",
|
|
20
|
+
readonly I: typeof ListGroupsRequest,
|
|
21
|
+
readonly O: typeof ListGroupsResponse,
|
|
22
|
+
readonly kind: MethodKind.Unary,
|
|
23
|
+
},
|
|
24
|
+
/**
|
|
25
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.ListQuestions
|
|
26
|
+
*/
|
|
27
|
+
readonly listQuestions: {
|
|
28
|
+
readonly name: "ListQuestions",
|
|
29
|
+
readonly I: typeof ListQuestionsRequest,
|
|
30
|
+
readonly O: typeof ListQuestionsResponse,
|
|
31
|
+
readonly kind: MethodKind.Unary,
|
|
32
|
+
},
|
|
33
|
+
/**
|
|
34
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.ListSubQuestions
|
|
35
|
+
*/
|
|
36
|
+
readonly listSubQuestions: {
|
|
37
|
+
readonly name: "ListSubQuestions",
|
|
38
|
+
readonly I: typeof ListSubQuestionsRequest,
|
|
39
|
+
readonly O: typeof ListSubQuestionsResponse,
|
|
40
|
+
readonly kind: MethodKind.Unary,
|
|
41
|
+
},
|
|
15
42
|
/**
|
|
16
43
|
* @generated from rpc admin.faq.v1.FAQAdminService.CreateGroup
|
|
17
44
|
*/
|
|
@@ -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, 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, 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
|
/**
|
|
@@ -12,6 +12,33 @@ import { MethodKind } from "@bufbuild/protobuf";
|
|
|
12
12
|
export const FAQAdminService = {
|
|
13
13
|
typeName: "admin.faq.v1.FAQAdminService",
|
|
14
14
|
methods: {
|
|
15
|
+
/**
|
|
16
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.ListGroups
|
|
17
|
+
*/
|
|
18
|
+
listGroups: {
|
|
19
|
+
name: "ListGroups",
|
|
20
|
+
I: ListGroupsRequest,
|
|
21
|
+
O: ListGroupsResponse,
|
|
22
|
+
kind: MethodKind.Unary,
|
|
23
|
+
},
|
|
24
|
+
/**
|
|
25
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.ListQuestions
|
|
26
|
+
*/
|
|
27
|
+
listQuestions: {
|
|
28
|
+
name: "ListQuestions",
|
|
29
|
+
I: ListQuestionsRequest,
|
|
30
|
+
O: ListQuestionsResponse,
|
|
31
|
+
kind: MethodKind.Unary,
|
|
32
|
+
},
|
|
33
|
+
/**
|
|
34
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.ListSubQuestions
|
|
35
|
+
*/
|
|
36
|
+
listSubQuestions: {
|
|
37
|
+
name: "ListSubQuestions",
|
|
38
|
+
I: ListSubQuestionsRequest,
|
|
39
|
+
O: ListSubQuestionsResponse,
|
|
40
|
+
kind: MethodKind.Unary,
|
|
41
|
+
},
|
|
15
42
|
/**
|
|
16
43
|
* @generated from rpc admin.faq.v1.FAQAdminService.CreateGroup
|
|
17
44
|
*/
|
|
@@ -742,10 +742,126 @@ export declare type RemoveSubQuestionFileResponse = Message<"admin.faq.v1.Remove
|
|
|
742
742
|
*/
|
|
743
743
|
export declare const RemoveSubQuestionFileResponseSchema: GenMessage<RemoveSubQuestionFileResponse>;
|
|
744
744
|
|
|
745
|
+
/**
|
|
746
|
+
* @generated from message admin.faq.v1.ListGroupsRequest
|
|
747
|
+
*/
|
|
748
|
+
export declare type ListGroupsRequest = Message<"admin.faq.v1.ListGroupsRequest"> & {
|
|
749
|
+
};
|
|
750
|
+
|
|
751
|
+
/**
|
|
752
|
+
* Describes the message admin.faq.v1.ListGroupsRequest.
|
|
753
|
+
* Use `create(ListGroupsRequestSchema)` to create a new message.
|
|
754
|
+
*/
|
|
755
|
+
export declare const ListGroupsRequestSchema: GenMessage<ListGroupsRequest>;
|
|
756
|
+
|
|
757
|
+
/**
|
|
758
|
+
* @generated from message admin.faq.v1.ListGroupsResponse
|
|
759
|
+
*/
|
|
760
|
+
export declare type ListGroupsResponse = Message<"admin.faq.v1.ListGroupsResponse"> & {
|
|
761
|
+
/**
|
|
762
|
+
* @generated from field: repeated admin.faq.v1.FAQGroup items = 1;
|
|
763
|
+
*/
|
|
764
|
+
items: FAQGroup[];
|
|
765
|
+
};
|
|
766
|
+
|
|
767
|
+
/**
|
|
768
|
+
* Describes the message admin.faq.v1.ListGroupsResponse.
|
|
769
|
+
* Use `create(ListGroupsResponseSchema)` to create a new message.
|
|
770
|
+
*/
|
|
771
|
+
export declare const ListGroupsResponseSchema: GenMessage<ListGroupsResponse>;
|
|
772
|
+
|
|
773
|
+
/**
|
|
774
|
+
* @generated from message admin.faq.v1.ListQuestionsRequest
|
|
775
|
+
*/
|
|
776
|
+
export declare type ListQuestionsRequest = Message<"admin.faq.v1.ListQuestionsRequest"> & {
|
|
777
|
+
/**
|
|
778
|
+
* @generated from field: uint64 group_id = 1;
|
|
779
|
+
*/
|
|
780
|
+
groupId: bigint;
|
|
781
|
+
};
|
|
782
|
+
|
|
783
|
+
/**
|
|
784
|
+
* Describes the message admin.faq.v1.ListQuestionsRequest.
|
|
785
|
+
* Use `create(ListQuestionsRequestSchema)` to create a new message.
|
|
786
|
+
*/
|
|
787
|
+
export declare const ListQuestionsRequestSchema: GenMessage<ListQuestionsRequest>;
|
|
788
|
+
|
|
789
|
+
/**
|
|
790
|
+
* @generated from message admin.faq.v1.ListQuestionsResponse
|
|
791
|
+
*/
|
|
792
|
+
export declare type ListQuestionsResponse = Message<"admin.faq.v1.ListQuestionsResponse"> & {
|
|
793
|
+
/**
|
|
794
|
+
* @generated from field: repeated admin.faq.v1.FAQQuestion items = 1;
|
|
795
|
+
*/
|
|
796
|
+
items: FAQQuestion[];
|
|
797
|
+
};
|
|
798
|
+
|
|
799
|
+
/**
|
|
800
|
+
* Describes the message admin.faq.v1.ListQuestionsResponse.
|
|
801
|
+
* Use `create(ListQuestionsResponseSchema)` to create a new message.
|
|
802
|
+
*/
|
|
803
|
+
export declare const ListQuestionsResponseSchema: GenMessage<ListQuestionsResponse>;
|
|
804
|
+
|
|
805
|
+
/**
|
|
806
|
+
* @generated from message admin.faq.v1.ListSubQuestionsRequest
|
|
807
|
+
*/
|
|
808
|
+
export declare type ListSubQuestionsRequest = Message<"admin.faq.v1.ListSubQuestionsRequest"> & {
|
|
809
|
+
/**
|
|
810
|
+
* @generated from field: uint64 question_id = 1;
|
|
811
|
+
*/
|
|
812
|
+
questionId: bigint;
|
|
813
|
+
};
|
|
814
|
+
|
|
815
|
+
/**
|
|
816
|
+
* Describes the message admin.faq.v1.ListSubQuestionsRequest.
|
|
817
|
+
* Use `create(ListSubQuestionsRequestSchema)` to create a new message.
|
|
818
|
+
*/
|
|
819
|
+
export declare const ListSubQuestionsRequestSchema: GenMessage<ListSubQuestionsRequest>;
|
|
820
|
+
|
|
821
|
+
/**
|
|
822
|
+
* @generated from message admin.faq.v1.ListSubQuestionsResponse
|
|
823
|
+
*/
|
|
824
|
+
export declare type ListSubQuestionsResponse = Message<"admin.faq.v1.ListSubQuestionsResponse"> & {
|
|
825
|
+
/**
|
|
826
|
+
* @generated from field: repeated admin.faq.v1.FAQSubQuestion items = 1;
|
|
827
|
+
*/
|
|
828
|
+
items: FAQSubQuestion[];
|
|
829
|
+
};
|
|
830
|
+
|
|
831
|
+
/**
|
|
832
|
+
* Describes the message admin.faq.v1.ListSubQuestionsResponse.
|
|
833
|
+
* Use `create(ListSubQuestionsResponseSchema)` to create a new message.
|
|
834
|
+
*/
|
|
835
|
+
export declare const ListSubQuestionsResponseSchema: GenMessage<ListSubQuestionsResponse>;
|
|
836
|
+
|
|
745
837
|
/**
|
|
746
838
|
* @generated from service admin.faq.v1.FAQAdminService
|
|
747
839
|
*/
|
|
748
840
|
export declare const FAQAdminService: GenService<{
|
|
841
|
+
/**
|
|
842
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.ListGroups
|
|
843
|
+
*/
|
|
844
|
+
listGroups: {
|
|
845
|
+
methodKind: "unary";
|
|
846
|
+
input: typeof ListGroupsRequestSchema;
|
|
847
|
+
output: typeof ListGroupsResponseSchema;
|
|
848
|
+
},
|
|
849
|
+
/**
|
|
850
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.ListQuestions
|
|
851
|
+
*/
|
|
852
|
+
listQuestions: {
|
|
853
|
+
methodKind: "unary";
|
|
854
|
+
input: typeof ListQuestionsRequestSchema;
|
|
855
|
+
output: typeof ListQuestionsResponseSchema;
|
|
856
|
+
},
|
|
857
|
+
/**
|
|
858
|
+
* @generated from rpc admin.faq.v1.FAQAdminService.ListSubQuestions
|
|
859
|
+
*/
|
|
860
|
+
listSubQuestions: {
|
|
861
|
+
methodKind: "unary";
|
|
862
|
+
input: typeof ListSubQuestionsRequestSchema;
|
|
863
|
+
output: typeof ListSubQuestionsResponseSchema;
|
|
864
|
+
},
|
|
749
865
|
/**
|
|
750
866
|
* @generated from rpc admin.faq.v1.FAQAdminService.CreateGroup
|
|
751
867
|
*/
|
|
@@ -10,7 +10,7 @@ import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
|
10
10
|
* Describes the file admin/faq/v1/service.proto.
|
|
11
11
|
*/
|
|
12
12
|
export const file_admin_faq_v1_service = /*@__PURE__*/
|
|
13
|
-
fileDesc("
|
|
13
|
+
fileDesc("ChphZG1pbi9mYXEvdjEvc2VydmljZS5wcm90bxIMYWRtaW4uZmFxLnYxIkoKCEFJQ29uZmlnEg8KB2VuYWJsZWQYASABKAgSFwoPcHJvbXB0X3RlbXBsYXRlGAIgASgJEhQKDGF1dG9fcmVzb2x2ZRgDIAEoCCJJCg1Sb3V0aW5nUG9saWN5EhQKDG5lZWRfbWFuYWdlchgBIAEoCBIiCgJhaRgCIAEoCzIWLmFkbWluLmZhcS52MS5BSUNvbmZpZyKCAQoNRkFRQXR0YWNobWVudBIPCgdmaWxlX2lkGAEgASgEEhMKC3VuaXF1ZV9uYW1lGAIgASgJEhUKDW9yaWdpbmFsX25hbWUYAyABKAkSEQoJbWltZV90eXBlGAQgASgJEhIKCnNpemVfYnl0ZXMYBSABKAMSDQoFb3JkZXIYBiABKAUisgEKCEZBUUdyb3VwEgoKAmlkGAEgASgEEg0KBXRpdGxlGAIgASgJEgwKBHNsdWcYAyABKAkSDQoFb3JkZXIYBCABKAUSDgoGYWN0aXZlGAUgASgIEi4KCmNyZWF0ZWRfYXQYBiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEi4KCnVwZGF0ZWRfYXQYByABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wIscBCgtGQVFRdWVzdGlvbhIKCgJpZBgBIAEoBBIQCghncm91cF9pZBgCIAEoBBINCgV0aXRsZRgDIAEoCRIMCgRzbHVnGAQgASgJEg0KBW9yZGVyGAUgASgFEg4KBmFjdGl2ZRgGIAEoCBIuCgpjcmVhdGVkX2F0GAcgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIuCgp1cGRhdGVkX2F0GAggASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcCK0AgoORkFRU3ViUXVlc3Rpb24SCgoCaWQYASABKAQSEwoLcXVlc3Rpb25faWQYAiABKAQSDQoFdGl0bGUYAyABKAkSDAoEYm9keRgEIAEoCRIMCgRzbHVnGAUgASgJEg0KBW9yZGVyGAYgASgFEg4KBmFjdGl2ZRgHIAEoCBIrCgZwb2xpY3kYCCABKAsyGy5hZG1pbi5mYXEudjEuUm91dGluZ1BvbGljeRIqCgVmaWxlcxgJIAMoCzIbLmFkbWluLmZhcS52MS5GQVFBdHRhY2htZW50Ei4KCmNyZWF0ZWRfYXQYCiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEi4KCnVwZGF0ZWRfYXQYCyABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wIk4KEkNyZWF0ZUdyb3VwUmVxdWVzdBINCgV0aXRsZRgBIAEoCRIRCgRzbHVnGAIgASgJSACIAQESDQoFb3JkZXIYAyABKAVCBwoFX3NsdWciPAoTQ3JlYXRlR3JvdXBSZXNwb25zZRIlCgVncm91cBgBIAEoCzIWLmFkbWluLmZhcS52MS5GQVFHcm91cCKeAQoSVXBkYXRlR3JvdXBSZXF1ZXN0EhAKCGdyb3VwX2lkGAEgASgEEhIKBXRpdGxlGAIgASgJSACIAQESEQoEc2x1ZxgDIAEoCUgBiAEBEhIKBW9yZGVyGAQgASgFSAKIAQESEwoGYWN0aXZlGAUgASgISAOIAQFCCAoGX3RpdGxlQgcKBV9zbHVnQggKBl9vcmRlckIJCgdfYWN0aXZlIjwKE1VwZGF0ZUdyb3VwUmVzcG9uc2USJQoFZ3JvdXAYASABKAsyFi5hZG1pbi5mYXEudjEuRkFRR3JvdXAiJgoSRGVsZXRlR3JvdXBSZXF1ZXN0EhAKCGdyb3VwX2lkGAEgASgEIhUKE0RlbGV0ZUdyb3VwUmVzcG9uc2UiYwoVQ3JlYXRlUXVlc3Rpb25SZXF1ZXN0EhAKCGdyb3VwX2lkGAEgASgEEg0KBXRpdGxlGAIgASgJEhEKBHNsdWcYAyABKAlIAIgBARINCgVvcmRlchgEIAEoBUIHCgVfc2x1ZyJFChZDcmVhdGVRdWVzdGlvblJlc3BvbnNlEisKCHF1ZXN0aW9uGAEgASgLMhkuYWRtaW4uZmFxLnYxLkZBUVF1ZXN0aW9uIsgBChVVcGRhdGVRdWVzdGlvblJlcXVlc3QSEwoLcXVlc3Rpb25faWQYASABKAQSFQoIZ3JvdXBfaWQYAiABKARIAIgBARISCgV0aXRsZRgDIAEoCUgBiAEBEhEKBHNsdWcYBCABKAlIAogBARISCgVvcmRlchgFIAEoBUgDiAEBEhMKBmFjdGl2ZRgGIAEoCEgEiAEBQgsKCV9ncm91cF9pZEIICgZfdGl0bGVCBwoFX3NsdWdCCAoGX29yZGVyQgkKB19hY3RpdmUiRQoWVXBkYXRlUXVlc3Rpb25SZXNwb25zZRIrCghxdWVzdGlvbhgBIAEoCzIZLmFkbWluLmZhcS52MS5GQVFRdWVzdGlvbiIsChVEZWxldGVRdWVzdGlvblJlcXVlc3QSEwoLcXVlc3Rpb25faWQYASABKAQiGAoWRGVsZXRlUXVlc3Rpb25SZXNwb25zZSLQAQoYQ3JlYXRlU3ViUXVlc3Rpb25SZXF1ZXN0EhMKC3F1ZXN0aW9uX2lkGAEgASgEEg0KBXRpdGxlGAIgASgJEgwKBGJvZHkYAyABKAkSEQoEc2x1ZxgEIAEoCUgAiAEBEg0KBW9yZGVyGAUgASgFEisKBnBvbGljeRgGIAEoCzIbLmFkbWluLmZhcS52MS5Sb3V0aW5nUG9saWN5EioKBWZpbGVzGAcgAygLMhsuYWRtaW4uZmFxLnYxLkZBUUF0dGFjaG1lbnRCBwoFX3NsdWciTwoZQ3JlYXRlU3ViUXVlc3Rpb25SZXNwb25zZRIyCgxzdWJfcXVlc3Rpb24YASABKAsyHC5hZG1pbi5mYXEudjEuRkFRU3ViUXVlc3Rpb24ihAIKGFVwZGF0ZVN1YlF1ZXN0aW9uUmVxdWVzdBIXCg9zdWJfcXVlc3Rpb25faWQYASABKAQSEgoFdGl0bGUYAiABKAlIAIgBARIRCgRib2R5GAMgASgJSAGIAQESEQoEc2x1ZxgEIAEoCUgCiAEBEhIKBW9yZGVyGAUgASgFSAOIAQESEwoGYWN0aXZlGAYgASgISASIAQESMAoGcG9saWN5GAcgASgLMhsuYWRtaW4uZmFxLnYxLlJvdXRpbmdQb2xpY3lIBYgBAUIICgZfdGl0bGVCBwoFX2JvZHlCBwoFX3NsdWdCCAoGX29yZGVyQgkKB19hY3RpdmVCCQoHX3BvbGljeSJPChlVcGRhdGVTdWJRdWVzdGlvblJlc3BvbnNlEjIKDHN1Yl9xdWVzdGlvbhgBIAEoCzIcLmFkbWluLmZhcS52MS5GQVFTdWJRdWVzdGlvbiIzChhEZWxldGVTdWJRdWVzdGlvblJlcXVlc3QSFwoPc3ViX3F1ZXN0aW9uX2lkGAEgASgEIhsKGURlbGV0ZVN1YlF1ZXN0aW9uUmVzcG9uc2UiXwoZQWRkU3ViUXVlc3Rpb25GaWxlUmVxdWVzdBIXCg9zdWJfcXVlc3Rpb25faWQYASABKAQSKQoEZmlsZRgCIAEoCzIbLmFkbWluLmZhcS52MS5GQVFBdHRhY2htZW50IlAKGkFkZFN1YlF1ZXN0aW9uRmlsZVJlc3BvbnNlEjIKDHN1Yl9xdWVzdGlvbhgBIAEoCzIcLmFkbWluLmZhcS52MS5GQVFTdWJRdWVzdGlvbiJIChxSZW1vdmVTdWJRdWVzdGlvbkZpbGVSZXF1ZXN0EhcKD3N1Yl9xdWVzdGlvbl9pZBgBIAEoBBIPCgdmaWxlX2lkGAIgASgEIlMKHVJlbW92ZVN1YlF1ZXN0aW9uRmlsZVJlc3BvbnNlEjIKDHN1Yl9xdWVzdGlvbhgBIAEoCzIcLmFkbWluLmZhcS52MS5GQVFTdWJRdWVzdGlvbiITChFMaXN0R3JvdXBzUmVxdWVzdCI7ChJMaXN0R3JvdXBzUmVzcG9uc2USJQoFaXRlbXMYASADKAsyFi5hZG1pbi5mYXEudjEuRkFRR3JvdXAiKAoUTGlzdFF1ZXN0aW9uc1JlcXVlc3QSEAoIZ3JvdXBfaWQYASABKAQiQQoVTGlzdFF1ZXN0aW9uc1Jlc3BvbnNlEigKBWl0ZW1zGAEgAygLMhkuYWRtaW4uZmFxLnYxLkZBUVF1ZXN0aW9uIi4KF0xpc3RTdWJRdWVzdGlvbnNSZXF1ZXN0EhMKC3F1ZXN0aW9uX2lkGAEgASgEIkcKGExpc3RTdWJRdWVzdGlvbnNSZXNwb25zZRIrCgVpdGVtcxgBIAMoCzIcLmFkbWluLmZhcS52MS5GQVFTdWJRdWVzdGlvbjLxDwoPRkFRQWRtaW5TZXJ2aWNlEm0KCkxpc3RHcm91cHMSHy5hZG1pbi5mYXEudjEuTGlzdEdyb3Vwc1JlcXVlc3QaIC5hZG1pbi5mYXEudjEuTGlzdEdyb3Vwc1Jlc3BvbnNlIhyC0+STAhYSFC9hZG1pbi92MS9mYXEvZ3JvdXBzEosBCg1MaXN0UXVlc3Rpb25zEiIuYWRtaW4uZmFxLnYxLkxpc3RRdWVzdGlvbnNSZXF1ZXN0GiMuYWRtaW4uZmFxLnYxLkxpc3RRdWVzdGlvbnNSZXNwb25zZSIxgtPkkwIrEikvYWRtaW4vdjEvZmFxL2dyb3Vwcy97Z3JvdXBfaWR9L3F1ZXN0aW9ucxKeAQoQTGlzdFN1YlF1ZXN0aW9ucxIlLmFkbWluLmZhcS52MS5MaXN0U3ViUXVlc3Rpb25zUmVxdWVzdBomLmFkbWluLmZhcS52MS5MaXN0U3ViUXVlc3Rpb25zUmVzcG9uc2UiO4LT5JMCNRIzL2FkbWluL3YxL2ZhcS9xdWVzdGlvbnMve3F1ZXN0aW9uX2lkfS9zdWItcXVlc3Rpb25zEnMKC0NyZWF0ZUdyb3VwEiAuYWRtaW4uZmFxLnYxLkNyZWF0ZUdyb3VwUmVxdWVzdBohLmFkbWluLmZhcS52MS5DcmVhdGVHcm91cFJlc3BvbnNlIh+C0+STAhk6ASoiFC9hZG1pbi92MS9mYXEvZ3JvdXBzEn4KC1VwZGF0ZUdyb3VwEiAuYWRtaW4uZmFxLnYxLlVwZGF0ZUdyb3VwUmVxdWVzdBohLmFkbWluLmZhcS52MS5VcGRhdGVHcm91cFJlc3BvbnNlIiqC0+STAiQ6ASoyHy9hZG1pbi92MS9mYXEvZ3JvdXBzL3tncm91cF9pZH0SewoLRGVsZXRlR3JvdXASIC5hZG1pbi5mYXEudjEuRGVsZXRlR3JvdXBSZXF1ZXN0GiEuYWRtaW4uZmFxLnYxLkRlbGV0ZUdyb3VwUmVzcG9uc2UiJ4LT5JMCISofL2FkbWluL3YxL2ZhcS9ncm91cHMve2dyb3VwX2lkfRJ/Cg5DcmVhdGVRdWVzdGlvbhIjLmFkbWluLmZhcS52MS5DcmVhdGVRdWVzdGlvblJlcXVlc3QaJC5hZG1pbi5mYXEudjEuQ3JlYXRlUXVlc3Rpb25SZXNwb25zZSIigtPkkwIcOgEqIhcvYWRtaW4vdjEvZmFxL3F1ZXN0aW9ucxKNAQoOVXBkYXRlUXVlc3Rpb24SIy5hZG1pbi5mYXEudjEuVXBkYXRlUXVlc3Rpb25SZXF1ZXN0GiQuYWRtaW4uZmFxLnYxLlVwZGF0ZVF1ZXN0aW9uUmVzcG9uc2UiMILT5JMCKjoBKjIlL2FkbWluL3YxL2ZhcS9xdWVzdGlvbnMve3F1ZXN0aW9uX2lkfRKKAQoORGVsZXRlUXVlc3Rpb24SIy5hZG1pbi5mYXEudjEuRGVsZXRlUXVlc3Rpb25SZXF1ZXN0GiQuYWRtaW4uZmFxLnYxLkRlbGV0ZVF1ZXN0aW9uUmVzcG9uc2UiLYLT5JMCJyolL2FkbWluL3YxL2ZhcS9xdWVzdGlvbnMve3F1ZXN0aW9uX2lkfRKMAQoRQ3JlYXRlU3ViUXVlc3Rpb24SJi5hZG1pbi5mYXEudjEuQ3JlYXRlU3ViUXVlc3Rpb25SZXF1ZXN0GicuYWRtaW4uZmFxLnYxLkNyZWF0ZVN1YlF1ZXN0aW9uUmVzcG9uc2UiJoLT5JMCIDoBKiIbL2FkbWluL3YxL2ZhcS9zdWItcXVlc3Rpb25zEp4BChFVcGRhdGVTdWJRdWVzdGlvbhImLmFkbWluLmZhcS52MS5VcGRhdGVTdWJRdWVzdGlvblJlcXVlc3QaJy5hZG1pbi5mYXEudjEuVXBkYXRlU3ViUXVlc3Rpb25SZXNwb25zZSI4gtPkkwIyOgEqMi0vYWRtaW4vdjEvZmFxL3N1Yi1xdWVzdGlvbnMve3N1Yl9xdWVzdGlvbl9pZH0SmwEKEURlbGV0ZVN1YlF1ZXN0aW9uEiYuYWRtaW4uZmFxLnYxLkRlbGV0ZVN1YlF1ZXN0aW9uUmVxdWVzdBonLmFkbWluLmZhcS52MS5EZWxldGVTdWJRdWVzdGlvblJlc3BvbnNlIjWC0+STAi8qLS9hZG1pbi92MS9mYXEvc3ViLXF1ZXN0aW9ucy97c3ViX3F1ZXN0aW9uX2lkfRKnAQoSQWRkU3ViUXVlc3Rpb25GaWxlEicuYWRtaW4uZmFxLnYxLkFkZFN1YlF1ZXN0aW9uRmlsZVJlcXVlc3QaKC5hZG1pbi5mYXEudjEuQWRkU3ViUXVlc3Rpb25GaWxlUmVzcG9uc2UiPoLT5JMCODoBKiIzL2FkbWluL3YxL2ZhcS9zdWItcXVlc3Rpb25zL3tzdWJfcXVlc3Rpb25faWR9L2ZpbGVzErcBChVSZW1vdmVTdWJRdWVzdGlvbkZpbGUSKi5hZG1pbi5mYXEudjEuUmVtb3ZlU3ViUXVlc3Rpb25GaWxlUmVxdWVzdBorLmFkbWluLmZhcS52MS5SZW1vdmVTdWJRdWVzdGlvbkZpbGVSZXNwb25zZSJFgtPkkwI/Kj0vYWRtaW4vdjEvZmFxL3N1Yi1xdWVzdGlvbnMve3N1Yl9xdWVzdGlvbl9pZH0vZmlsZXMve2ZpbGVfaWR9QjpaOGdpdGh1Yi5jb20vRzJHcy9hcGktY29udHJhY3RzLWdvL2FkbWluL2ZhcS92MTthZG1pbmZhcXYxYgZwcm90bzM", [file_google_api_annotations, file_google_protobuf_timestamp]);
|
|
14
14
|
|
|
15
15
|
/**
|
|
16
16
|
* Describes the message admin.faq.v1.AIConfig.
|
|
@@ -208,6 +208,48 @@ export const RemoveSubQuestionFileRequestSchema = /*@__PURE__*/
|
|
|
208
208
|
export const RemoveSubQuestionFileResponseSchema = /*@__PURE__*/
|
|
209
209
|
messageDesc(file_admin_faq_v1_service, 27);
|
|
210
210
|
|
|
211
|
+
/**
|
|
212
|
+
* Describes the message admin.faq.v1.ListGroupsRequest.
|
|
213
|
+
* Use `create(ListGroupsRequestSchema)` to create a new message.
|
|
214
|
+
*/
|
|
215
|
+
export const ListGroupsRequestSchema = /*@__PURE__*/
|
|
216
|
+
messageDesc(file_admin_faq_v1_service, 28);
|
|
217
|
+
|
|
218
|
+
/**
|
|
219
|
+
* Describes the message admin.faq.v1.ListGroupsResponse.
|
|
220
|
+
* Use `create(ListGroupsResponseSchema)` to create a new message.
|
|
221
|
+
*/
|
|
222
|
+
export const ListGroupsResponseSchema = /*@__PURE__*/
|
|
223
|
+
messageDesc(file_admin_faq_v1_service, 29);
|
|
224
|
+
|
|
225
|
+
/**
|
|
226
|
+
* Describes the message admin.faq.v1.ListQuestionsRequest.
|
|
227
|
+
* Use `create(ListQuestionsRequestSchema)` to create a new message.
|
|
228
|
+
*/
|
|
229
|
+
export const ListQuestionsRequestSchema = /*@__PURE__*/
|
|
230
|
+
messageDesc(file_admin_faq_v1_service, 30);
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* Describes the message admin.faq.v1.ListQuestionsResponse.
|
|
234
|
+
* Use `create(ListQuestionsResponseSchema)` to create a new message.
|
|
235
|
+
*/
|
|
236
|
+
export const ListQuestionsResponseSchema = /*@__PURE__*/
|
|
237
|
+
messageDesc(file_admin_faq_v1_service, 31);
|
|
238
|
+
|
|
239
|
+
/**
|
|
240
|
+
* Describes the message admin.faq.v1.ListSubQuestionsRequest.
|
|
241
|
+
* Use `create(ListSubQuestionsRequestSchema)` to create a new message.
|
|
242
|
+
*/
|
|
243
|
+
export const ListSubQuestionsRequestSchema = /*@__PURE__*/
|
|
244
|
+
messageDesc(file_admin_faq_v1_service, 32);
|
|
245
|
+
|
|
246
|
+
/**
|
|
247
|
+
* Describes the message admin.faq.v1.ListSubQuestionsResponse.
|
|
248
|
+
* Use `create(ListSubQuestionsResponseSchema)` to create a new message.
|
|
249
|
+
*/
|
|
250
|
+
export const ListSubQuestionsResponseSchema = /*@__PURE__*/
|
|
251
|
+
messageDesc(file_admin_faq_v1_service, 33);
|
|
252
|
+
|
|
211
253
|
/**
|
|
212
254
|
* @generated from service admin.faq.v1.FAQAdminService
|
|
213
255
|
*/
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
// @generated by protoc-gen-connect-es v1.6.1
|
|
2
|
+
// @generated from file admin/schedule/v1/service.proto (package admin.schedule.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
|
|
6
|
+
import { CreatePenaltyRequest, CreatePenaltyResponse, CreateShiftRequest, CreateShiftResponse, CreateShiftTemplateRequest, CreateShiftTemplateResponse, DeletePenaltyRequest, DeletePenaltyResponse, DeleteShiftRequest, DeleteShiftResponse, DeleteShiftTemplateRequest, DeleteShiftTemplateResponse, GetMyShiftTasksRequest, GetMyShiftTasksResponse, GetOnDutyManagersRequest, GetOnDutyManagersResponse, GetShiftRequest, GetShiftResponse, GetShiftTemplateRequest, GetShiftTemplateResponse, ListShiftsRequest, ListShiftsResponse, ListShiftTemplatesRequest, ListShiftTemplatesResponse, ToggleShiftTaskCompletionRequest, ToggleShiftTaskCompletionResponse, UpdateShiftRequest, UpdateShiftResponse, UpdateShiftTemplateRequest, UpdateShiftTemplateResponse } from "./service_pb.js";
|
|
7
|
+
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* @generated from service admin.schedule.v1.ScheduleAdminService
|
|
11
|
+
*/
|
|
12
|
+
export declare const ScheduleAdminService: {
|
|
13
|
+
readonly typeName: "admin.schedule.v1.ScheduleAdminService",
|
|
14
|
+
readonly methods: {
|
|
15
|
+
/**
|
|
16
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.ListShifts
|
|
17
|
+
*/
|
|
18
|
+
readonly listShifts: {
|
|
19
|
+
readonly name: "ListShifts",
|
|
20
|
+
readonly I: typeof ListShiftsRequest,
|
|
21
|
+
readonly O: typeof ListShiftsResponse,
|
|
22
|
+
readonly kind: MethodKind.Unary,
|
|
23
|
+
},
|
|
24
|
+
/**
|
|
25
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.GetShift
|
|
26
|
+
*/
|
|
27
|
+
readonly getShift: {
|
|
28
|
+
readonly name: "GetShift",
|
|
29
|
+
readonly I: typeof GetShiftRequest,
|
|
30
|
+
readonly O: typeof GetShiftResponse,
|
|
31
|
+
readonly kind: MethodKind.Unary,
|
|
32
|
+
},
|
|
33
|
+
/**
|
|
34
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.CreateShift
|
|
35
|
+
*/
|
|
36
|
+
readonly createShift: {
|
|
37
|
+
readonly name: "CreateShift",
|
|
38
|
+
readonly I: typeof CreateShiftRequest,
|
|
39
|
+
readonly O: typeof CreateShiftResponse,
|
|
40
|
+
readonly kind: MethodKind.Unary,
|
|
41
|
+
},
|
|
42
|
+
/**
|
|
43
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.UpdateShift
|
|
44
|
+
*/
|
|
45
|
+
readonly updateShift: {
|
|
46
|
+
readonly name: "UpdateShift",
|
|
47
|
+
readonly I: typeof UpdateShiftRequest,
|
|
48
|
+
readonly O: typeof UpdateShiftResponse,
|
|
49
|
+
readonly kind: MethodKind.Unary,
|
|
50
|
+
},
|
|
51
|
+
/**
|
|
52
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.DeleteShift
|
|
53
|
+
*/
|
|
54
|
+
readonly deleteShift: {
|
|
55
|
+
readonly name: "DeleteShift",
|
|
56
|
+
readonly I: typeof DeleteShiftRequest,
|
|
57
|
+
readonly O: typeof DeleteShiftResponse,
|
|
58
|
+
readonly kind: MethodKind.Unary,
|
|
59
|
+
},
|
|
60
|
+
/**
|
|
61
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.GetOnDutyManagers
|
|
62
|
+
*/
|
|
63
|
+
readonly getOnDutyManagers: {
|
|
64
|
+
readonly name: "GetOnDutyManagers",
|
|
65
|
+
readonly I: typeof GetOnDutyManagersRequest,
|
|
66
|
+
readonly O: typeof GetOnDutyManagersResponse,
|
|
67
|
+
readonly kind: MethodKind.Unary,
|
|
68
|
+
},
|
|
69
|
+
/**
|
|
70
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.ListShiftTemplates
|
|
71
|
+
*/
|
|
72
|
+
readonly listShiftTemplates: {
|
|
73
|
+
readonly name: "ListShiftTemplates",
|
|
74
|
+
readonly I: typeof ListShiftTemplatesRequest,
|
|
75
|
+
readonly O: typeof ListShiftTemplatesResponse,
|
|
76
|
+
readonly kind: MethodKind.Unary,
|
|
77
|
+
},
|
|
78
|
+
/**
|
|
79
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.GetShiftTemplate
|
|
80
|
+
*/
|
|
81
|
+
readonly getShiftTemplate: {
|
|
82
|
+
readonly name: "GetShiftTemplate",
|
|
83
|
+
readonly I: typeof GetShiftTemplateRequest,
|
|
84
|
+
readonly O: typeof GetShiftTemplateResponse,
|
|
85
|
+
readonly kind: MethodKind.Unary,
|
|
86
|
+
},
|
|
87
|
+
/**
|
|
88
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.CreateShiftTemplate
|
|
89
|
+
*/
|
|
90
|
+
readonly createShiftTemplate: {
|
|
91
|
+
readonly name: "CreateShiftTemplate",
|
|
92
|
+
readonly I: typeof CreateShiftTemplateRequest,
|
|
93
|
+
readonly O: typeof CreateShiftTemplateResponse,
|
|
94
|
+
readonly kind: MethodKind.Unary,
|
|
95
|
+
},
|
|
96
|
+
/**
|
|
97
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.UpdateShiftTemplate
|
|
98
|
+
*/
|
|
99
|
+
readonly updateShiftTemplate: {
|
|
100
|
+
readonly name: "UpdateShiftTemplate",
|
|
101
|
+
readonly I: typeof UpdateShiftTemplateRequest,
|
|
102
|
+
readonly O: typeof UpdateShiftTemplateResponse,
|
|
103
|
+
readonly kind: MethodKind.Unary,
|
|
104
|
+
},
|
|
105
|
+
/**
|
|
106
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.DeleteShiftTemplate
|
|
107
|
+
*/
|
|
108
|
+
readonly deleteShiftTemplate: {
|
|
109
|
+
readonly name: "DeleteShiftTemplate",
|
|
110
|
+
readonly I: typeof DeleteShiftTemplateRequest,
|
|
111
|
+
readonly O: typeof DeleteShiftTemplateResponse,
|
|
112
|
+
readonly kind: MethodKind.Unary,
|
|
113
|
+
},
|
|
114
|
+
/**
|
|
115
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.CreatePenalty
|
|
116
|
+
*/
|
|
117
|
+
readonly createPenalty: {
|
|
118
|
+
readonly name: "CreatePenalty",
|
|
119
|
+
readonly I: typeof CreatePenaltyRequest,
|
|
120
|
+
readonly O: typeof CreatePenaltyResponse,
|
|
121
|
+
readonly kind: MethodKind.Unary,
|
|
122
|
+
},
|
|
123
|
+
/**
|
|
124
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.DeletePenalty
|
|
125
|
+
*/
|
|
126
|
+
readonly deletePenalty: {
|
|
127
|
+
readonly name: "DeletePenalty",
|
|
128
|
+
readonly I: typeof DeletePenaltyRequest,
|
|
129
|
+
readonly O: typeof DeletePenaltyResponse,
|
|
130
|
+
readonly kind: MethodKind.Unary,
|
|
131
|
+
},
|
|
132
|
+
/**
|
|
133
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.GetMyShiftTasks
|
|
134
|
+
*/
|
|
135
|
+
readonly getMyShiftTasks: {
|
|
136
|
+
readonly name: "GetMyShiftTasks",
|
|
137
|
+
readonly I: typeof GetMyShiftTasksRequest,
|
|
138
|
+
readonly O: typeof GetMyShiftTasksResponse,
|
|
139
|
+
readonly kind: MethodKind.Unary,
|
|
140
|
+
},
|
|
141
|
+
/**
|
|
142
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.ToggleShiftTaskCompletion
|
|
143
|
+
*/
|
|
144
|
+
readonly toggleShiftTaskCompletion: {
|
|
145
|
+
readonly name: "ToggleShiftTaskCompletion",
|
|
146
|
+
readonly I: typeof ToggleShiftTaskCompletionRequest,
|
|
147
|
+
readonly O: typeof ToggleShiftTaskCompletionResponse,
|
|
148
|
+
readonly kind: MethodKind.Unary,
|
|
149
|
+
},
|
|
150
|
+
}
|
|
151
|
+
};
|
|
152
|
+
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
// @generated by protoc-gen-connect-es v1.6.1
|
|
2
|
+
// @generated from file admin/schedule/v1/service.proto (package admin.schedule.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
|
|
6
|
+
import { CreatePenaltyRequest, CreatePenaltyResponse, CreateShiftRequest, CreateShiftResponse, CreateShiftTemplateRequest, CreateShiftTemplateResponse, DeletePenaltyRequest, DeletePenaltyResponse, DeleteShiftRequest, DeleteShiftResponse, DeleteShiftTemplateRequest, DeleteShiftTemplateResponse, GetMyShiftTasksRequest, GetMyShiftTasksResponse, GetOnDutyManagersRequest, GetOnDutyManagersResponse, GetShiftRequest, GetShiftResponse, GetShiftTemplateRequest, GetShiftTemplateResponse, ListShiftsRequest, ListShiftsResponse, ListShiftTemplatesRequest, ListShiftTemplatesResponse, ToggleShiftTaskCompletionRequest, ToggleShiftTaskCompletionResponse, UpdateShiftRequest, UpdateShiftResponse, UpdateShiftTemplateRequest, UpdateShiftTemplateResponse } from "./service_pb.js";
|
|
7
|
+
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* @generated from service admin.schedule.v1.ScheduleAdminService
|
|
11
|
+
*/
|
|
12
|
+
export const ScheduleAdminService = {
|
|
13
|
+
typeName: "admin.schedule.v1.ScheduleAdminService",
|
|
14
|
+
methods: {
|
|
15
|
+
/**
|
|
16
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.ListShifts
|
|
17
|
+
*/
|
|
18
|
+
listShifts: {
|
|
19
|
+
name: "ListShifts",
|
|
20
|
+
I: ListShiftsRequest,
|
|
21
|
+
O: ListShiftsResponse,
|
|
22
|
+
kind: MethodKind.Unary,
|
|
23
|
+
},
|
|
24
|
+
/**
|
|
25
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.GetShift
|
|
26
|
+
*/
|
|
27
|
+
getShift: {
|
|
28
|
+
name: "GetShift",
|
|
29
|
+
I: GetShiftRequest,
|
|
30
|
+
O: GetShiftResponse,
|
|
31
|
+
kind: MethodKind.Unary,
|
|
32
|
+
},
|
|
33
|
+
/**
|
|
34
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.CreateShift
|
|
35
|
+
*/
|
|
36
|
+
createShift: {
|
|
37
|
+
name: "CreateShift",
|
|
38
|
+
I: CreateShiftRequest,
|
|
39
|
+
O: CreateShiftResponse,
|
|
40
|
+
kind: MethodKind.Unary,
|
|
41
|
+
},
|
|
42
|
+
/**
|
|
43
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.UpdateShift
|
|
44
|
+
*/
|
|
45
|
+
updateShift: {
|
|
46
|
+
name: "UpdateShift",
|
|
47
|
+
I: UpdateShiftRequest,
|
|
48
|
+
O: UpdateShiftResponse,
|
|
49
|
+
kind: MethodKind.Unary,
|
|
50
|
+
},
|
|
51
|
+
/**
|
|
52
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.DeleteShift
|
|
53
|
+
*/
|
|
54
|
+
deleteShift: {
|
|
55
|
+
name: "DeleteShift",
|
|
56
|
+
I: DeleteShiftRequest,
|
|
57
|
+
O: DeleteShiftResponse,
|
|
58
|
+
kind: MethodKind.Unary,
|
|
59
|
+
},
|
|
60
|
+
/**
|
|
61
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.GetOnDutyManagers
|
|
62
|
+
*/
|
|
63
|
+
getOnDutyManagers: {
|
|
64
|
+
name: "GetOnDutyManagers",
|
|
65
|
+
I: GetOnDutyManagersRequest,
|
|
66
|
+
O: GetOnDutyManagersResponse,
|
|
67
|
+
kind: MethodKind.Unary,
|
|
68
|
+
},
|
|
69
|
+
/**
|
|
70
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.ListShiftTemplates
|
|
71
|
+
*/
|
|
72
|
+
listShiftTemplates: {
|
|
73
|
+
name: "ListShiftTemplates",
|
|
74
|
+
I: ListShiftTemplatesRequest,
|
|
75
|
+
O: ListShiftTemplatesResponse,
|
|
76
|
+
kind: MethodKind.Unary,
|
|
77
|
+
},
|
|
78
|
+
/**
|
|
79
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.GetShiftTemplate
|
|
80
|
+
*/
|
|
81
|
+
getShiftTemplate: {
|
|
82
|
+
name: "GetShiftTemplate",
|
|
83
|
+
I: GetShiftTemplateRequest,
|
|
84
|
+
O: GetShiftTemplateResponse,
|
|
85
|
+
kind: MethodKind.Unary,
|
|
86
|
+
},
|
|
87
|
+
/**
|
|
88
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.CreateShiftTemplate
|
|
89
|
+
*/
|
|
90
|
+
createShiftTemplate: {
|
|
91
|
+
name: "CreateShiftTemplate",
|
|
92
|
+
I: CreateShiftTemplateRequest,
|
|
93
|
+
O: CreateShiftTemplateResponse,
|
|
94
|
+
kind: MethodKind.Unary,
|
|
95
|
+
},
|
|
96
|
+
/**
|
|
97
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.UpdateShiftTemplate
|
|
98
|
+
*/
|
|
99
|
+
updateShiftTemplate: {
|
|
100
|
+
name: "UpdateShiftTemplate",
|
|
101
|
+
I: UpdateShiftTemplateRequest,
|
|
102
|
+
O: UpdateShiftTemplateResponse,
|
|
103
|
+
kind: MethodKind.Unary,
|
|
104
|
+
},
|
|
105
|
+
/**
|
|
106
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.DeleteShiftTemplate
|
|
107
|
+
*/
|
|
108
|
+
deleteShiftTemplate: {
|
|
109
|
+
name: "DeleteShiftTemplate",
|
|
110
|
+
I: DeleteShiftTemplateRequest,
|
|
111
|
+
O: DeleteShiftTemplateResponse,
|
|
112
|
+
kind: MethodKind.Unary,
|
|
113
|
+
},
|
|
114
|
+
/**
|
|
115
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.CreatePenalty
|
|
116
|
+
*/
|
|
117
|
+
createPenalty: {
|
|
118
|
+
name: "CreatePenalty",
|
|
119
|
+
I: CreatePenaltyRequest,
|
|
120
|
+
O: CreatePenaltyResponse,
|
|
121
|
+
kind: MethodKind.Unary,
|
|
122
|
+
},
|
|
123
|
+
/**
|
|
124
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.DeletePenalty
|
|
125
|
+
*/
|
|
126
|
+
deletePenalty: {
|
|
127
|
+
name: "DeletePenalty",
|
|
128
|
+
I: DeletePenaltyRequest,
|
|
129
|
+
O: DeletePenaltyResponse,
|
|
130
|
+
kind: MethodKind.Unary,
|
|
131
|
+
},
|
|
132
|
+
/**
|
|
133
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.GetMyShiftTasks
|
|
134
|
+
*/
|
|
135
|
+
getMyShiftTasks: {
|
|
136
|
+
name: "GetMyShiftTasks",
|
|
137
|
+
I: GetMyShiftTasksRequest,
|
|
138
|
+
O: GetMyShiftTasksResponse,
|
|
139
|
+
kind: MethodKind.Unary,
|
|
140
|
+
},
|
|
141
|
+
/**
|
|
142
|
+
* @generated from rpc admin.schedule.v1.ScheduleAdminService.ToggleShiftTaskCompletion
|
|
143
|
+
*/
|
|
144
|
+
toggleShiftTaskCompletion: {
|
|
145
|
+
name: "ToggleShiftTaskCompletion",
|
|
146
|
+
I: ToggleShiftTaskCompletionRequest,
|
|
147
|
+
O: ToggleShiftTaskCompletionResponse,
|
|
148
|
+
kind: MethodKind.Unary,
|
|
149
|
+
},
|
|
150
|
+
}
|
|
151
|
+
};
|
|
152
|
+
|