@fivenet-app/gen 0.9.3-1
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/README.md +1 -0
- package/google/protobuf/any.ts +322 -0
- package/google/protobuf/descriptor.ts +3475 -0
- package/google/protobuf/duration.ts +231 -0
- package/google/protobuf/timestamp.ts +290 -0
- package/package.json +15 -0
- package/perms.ts +178 -0
- package/resources/accounts/accounts.ts +195 -0
- package/resources/accounts/oauth2.ts +230 -0
- package/resources/calendar/access.ts +362 -0
- package/resources/calendar/calendar.ts +955 -0
- package/resources/centrum/access.ts +380 -0
- package/resources/centrum/dispatches.ts +854 -0
- package/resources/centrum/general.ts +231 -0
- package/resources/centrum/settings.ts +303 -0
- package/resources/centrum/units.ts +620 -0
- package/resources/common/access/dummy.ts +309 -0
- package/resources/common/content/content.ts +252 -0
- package/resources/common/cron/cron.ts +536 -0
- package/resources/common/database/database.ts +306 -0
- package/resources/common/error.ts +79 -0
- package/resources/common/grpcws/grpcws.ts +615 -0
- package/resources/common/i18n.ts +102 -0
- package/resources/common/uuid.ts +68 -0
- package/resources/documents/access.ts +388 -0
- package/resources/documents/activity.ts +803 -0
- package/resources/documents/category.ts +132 -0
- package/resources/documents/comment.ts +161 -0
- package/resources/documents/documents.ts +1124 -0
- package/resources/documents/requests.ts +196 -0
- package/resources/documents/templates.ts +949 -0
- package/resources/documents/workflow.ts +349 -0
- package/resources/filestore/file.ts +204 -0
- package/resources/internet/ads.ts +257 -0
- package/resources/internet/domain.ts +136 -0
- package/resources/internet/internet.ts +344 -0
- package/resources/internet/page.ts +236 -0
- package/resources/internet/search.ts +104 -0
- package/resources/jobs/activity.ts +600 -0
- package/resources/jobs/colleagues.ts +346 -0
- package/resources/jobs/conduct.ts +220 -0
- package/resources/jobs/labels.ts +240 -0
- package/resources/jobs/timeclock.ts +372 -0
- package/resources/laws/laws.ts +293 -0
- package/resources/livemap/livemap.ts +728 -0
- package/resources/livemap/tracker.ts +81 -0
- package/resources/mailer/access.ts +485 -0
- package/resources/mailer/email.ts +222 -0
- package/resources/mailer/events.ts +196 -0
- package/resources/mailer/message.ts +285 -0
- package/resources/mailer/settings.ts +95 -0
- package/resources/mailer/template.ts +164 -0
- package/resources/mailer/thread.ts +422 -0
- package/resources/mailer/user.ts +93 -0
- package/resources/notifications/events.ts +287 -0
- package/resources/notifications/notifications.ts +444 -0
- package/resources/permissions/permissions.ts +829 -0
- package/resources/qualifications/access.ts +275 -0
- package/resources/qualifications/exam.ts +1421 -0
- package/resources/qualifications/qualifications.ts +1289 -0
- package/resources/rector/audit.ts +226 -0
- package/resources/rector/config.ts +922 -0
- package/resources/stats/stats.ts +67 -0
- package/resources/sync/activity.ts +356 -0
- package/resources/sync/data.ts +455 -0
- package/resources/timestamp/timestamp.ts +78 -0
- package/resources/users/activity.ts +211 -0
- package/resources/users/job_props.ts +992 -0
- package/resources/users/jobs.ts +171 -0
- package/resources/users/labels.ts +161 -0
- package/resources/users/props.ts +207 -0
- package/resources/users/users.ts +570 -0
- package/resources/vehicles/vehicles.ts +114 -0
- package/resources/wiki/access.ts +362 -0
- package/resources/wiki/activity.ts +591 -0
- package/resources/wiki/page.ts +548 -0
- package/services/auth/auth.client.ts +171 -0
- package/services/auth/auth.ts +1331 -0
- package/services/calendar/calendar.client.ts +262 -0
- package/services/calendar/calendar.ts +1733 -0
- package/services/centrum/centrum.client.ts +365 -0
- package/services/centrum/centrum.ts +2619 -0
- package/services/citizenstore/citizenstore.client.ts +126 -0
- package/services/citizenstore/citizenstore.ts +847 -0
- package/services/completor/completor.client.ts +109 -0
- package/services/completor/completor.ts +616 -0
- package/services/dmv/vehicles.client.ts +41 -0
- package/services/dmv/vehicles.ts +191 -0
- package/services/docstore/docstore.client.ts +653 -0
- package/services/docstore/docstore.ts +4571 -0
- package/services/internet/ads.client.ts +41 -0
- package/services/internet/ads.ts +145 -0
- package/services/internet/internet.client.ts +58 -0
- package/services/internet/internet.ts +257 -0
- package/services/jobs/conduct.client.ts +92 -0
- package/services/jobs/conduct.ts +541 -0
- package/services/jobs/jobs.client.ts +194 -0
- package/services/jobs/jobs.ts +1301 -0
- package/services/jobs/timeclock.client.ts +75 -0
- package/services/jobs/timeclock.ts +808 -0
- package/services/livemapper/livemap.client.ts +76 -0
- package/services/livemapper/livemap.ts +552 -0
- package/services/mailer/mailer.client.ts +381 -0
- package/services/mailer/mailer.ts +2590 -0
- package/services/notificator/notificator.client.ts +76 -0
- package/services/notificator/notificator.ts +510 -0
- package/services/qualifications/qualifications.client.ts +279 -0
- package/services/qualifications/qualifications.ts +2142 -0
- package/services/rector/config.client.ts +58 -0
- package/services/rector/config.ts +216 -0
- package/services/rector/filestore.client.ts +75 -0
- package/services/rector/filestore.ts +378 -0
- package/services/rector/laws.client.ts +92 -0
- package/services/rector/laws.ts +416 -0
- package/services/rector/rector.client.ts +211 -0
- package/services/rector/rector.ts +1540 -0
- package/services/stats/stats.client.ts +37 -0
- package/services/stats/stats.ts +128 -0
- package/services/sync/sync.client.ts +110 -0
- package/services/sync/sync.ts +831 -0
- package/services/wiki/wiki.client.ts +126 -0
- package/services/wiki/wiki.ts +749 -0
- package/svcs.ts +307 -0
|
@@ -0,0 +1,653 @@
|
|
|
1
|
+
// @generated by protobuf-ts 2.9.4 with parameter optimize_speed,long_type_number,force_server_none
|
|
2
|
+
// @generated from protobuf file "services/docstore/docstore.proto" (package "services.docstore", syntax proto3)
|
|
3
|
+
// @ts-nocheck
|
|
4
|
+
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
|
5
|
+
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
|
|
6
|
+
import { DocStoreService } from "./docstore";
|
|
7
|
+
import type { SetDocumentReminderResponse } from "./docstore";
|
|
8
|
+
import type { SetDocumentReminderRequest } from "./docstore";
|
|
9
|
+
import type { ToggleDocumentPinResponse } from "./docstore";
|
|
10
|
+
import type { ToggleDocumentPinRequest } from "./docstore";
|
|
11
|
+
import type { ListDocumentPinsResponse } from "./docstore";
|
|
12
|
+
import type { ListDocumentPinsRequest } from "./docstore";
|
|
13
|
+
import type { DeleteCategoryResponse } from "./docstore";
|
|
14
|
+
import type { DeleteCategoryRequest } from "./docstore";
|
|
15
|
+
import type { UpdateCategoryResponse } from "./docstore";
|
|
16
|
+
import type { UpdateCategoryRequest } from "./docstore";
|
|
17
|
+
import type { CreateCategoryResponse } from "./docstore";
|
|
18
|
+
import type { CreateCategoryRequest } from "./docstore";
|
|
19
|
+
import type { ListCategoriesResponse } from "./docstore";
|
|
20
|
+
import type { ListCategoriesRequest } from "./docstore";
|
|
21
|
+
import type { ListUserDocumentsResponse } from "./docstore";
|
|
22
|
+
import type { ListUserDocumentsRequest } from "./docstore";
|
|
23
|
+
import type { DeleteDocumentReqResponse } from "./docstore";
|
|
24
|
+
import type { DeleteDocumentReqRequest } from "./docstore";
|
|
25
|
+
import type { UpdateDocumentReqResponse } from "./docstore";
|
|
26
|
+
import type { UpdateDocumentReqRequest } from "./docstore";
|
|
27
|
+
import type { CreateDocumentReqResponse } from "./docstore";
|
|
28
|
+
import type { CreateDocumentReqRequest } from "./docstore";
|
|
29
|
+
import type { ListDocumentReqsResponse } from "./docstore";
|
|
30
|
+
import type { ListDocumentReqsRequest } from "./docstore";
|
|
31
|
+
import type { ListDocumentActivityResponse } from "./docstore";
|
|
32
|
+
import type { ListDocumentActivityRequest } from "./docstore";
|
|
33
|
+
import type { SetDocumentAccessResponse } from "./docstore";
|
|
34
|
+
import type { SetDocumentAccessRequest } from "./docstore";
|
|
35
|
+
import type { GetDocumentAccessResponse } from "./docstore";
|
|
36
|
+
import type { GetDocumentAccessRequest } from "./docstore";
|
|
37
|
+
import type { DeleteCommentResponse } from "./docstore";
|
|
38
|
+
import type { DeleteCommentRequest } from "./docstore";
|
|
39
|
+
import type { EditCommentResponse } from "./docstore";
|
|
40
|
+
import type { EditCommentRequest } from "./docstore";
|
|
41
|
+
import type { PostCommentResponse } from "./docstore";
|
|
42
|
+
import type { PostCommentRequest } from "./docstore";
|
|
43
|
+
import type { GetCommentsResponse } from "./docstore";
|
|
44
|
+
import type { GetCommentsRequest } from "./docstore";
|
|
45
|
+
import type { RemoveDocumentRelationResponse } from "./docstore";
|
|
46
|
+
import type { RemoveDocumentRelationRequest } from "./docstore";
|
|
47
|
+
import type { AddDocumentRelationResponse } from "./docstore";
|
|
48
|
+
import type { AddDocumentRelationRequest } from "./docstore";
|
|
49
|
+
import type { RemoveDocumentReferenceResponse } from "./docstore";
|
|
50
|
+
import type { RemoveDocumentReferenceRequest } from "./docstore";
|
|
51
|
+
import type { AddDocumentReferenceResponse } from "./docstore";
|
|
52
|
+
import type { AddDocumentReferenceRequest } from "./docstore";
|
|
53
|
+
import type { GetDocumentRelationsResponse } from "./docstore";
|
|
54
|
+
import type { GetDocumentRelationsRequest } from "./docstore";
|
|
55
|
+
import type { GetDocumentReferencesResponse } from "./docstore";
|
|
56
|
+
import type { GetDocumentReferencesRequest } from "./docstore";
|
|
57
|
+
import type { ChangeDocumentOwnerResponse } from "./docstore";
|
|
58
|
+
import type { ChangeDocumentOwnerRequest } from "./docstore";
|
|
59
|
+
import type { ToggleDocumentResponse } from "./docstore";
|
|
60
|
+
import type { ToggleDocumentRequest } from "./docstore";
|
|
61
|
+
import type { DeleteDocumentResponse } from "./docstore";
|
|
62
|
+
import type { DeleteDocumentRequest } from "./docstore";
|
|
63
|
+
import type { UpdateDocumentResponse } from "./docstore";
|
|
64
|
+
import type { UpdateDocumentRequest } from "./docstore";
|
|
65
|
+
import type { CreateDocumentResponse } from "./docstore";
|
|
66
|
+
import type { CreateDocumentRequest } from "./docstore";
|
|
67
|
+
import type { GetDocumentResponse } from "./docstore";
|
|
68
|
+
import type { GetDocumentRequest } from "./docstore";
|
|
69
|
+
import type { ListDocumentsResponse } from "./docstore";
|
|
70
|
+
import type { ListDocumentsRequest } from "./docstore";
|
|
71
|
+
import type { DeleteTemplateResponse } from "./docstore";
|
|
72
|
+
import type { DeleteTemplateRequest } from "./docstore";
|
|
73
|
+
import type { UpdateTemplateResponse } from "./docstore";
|
|
74
|
+
import type { UpdateTemplateRequest } from "./docstore";
|
|
75
|
+
import type { CreateTemplateResponse } from "./docstore";
|
|
76
|
+
import type { CreateTemplateRequest } from "./docstore";
|
|
77
|
+
import type { GetTemplateResponse } from "./docstore";
|
|
78
|
+
import type { GetTemplateRequest } from "./docstore";
|
|
79
|
+
import { stackIntercept } from "@protobuf-ts/runtime-rpc";
|
|
80
|
+
import type { ListTemplatesResponse } from "./docstore";
|
|
81
|
+
import type { ListTemplatesRequest } from "./docstore";
|
|
82
|
+
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
|
|
83
|
+
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
|
|
84
|
+
/**
|
|
85
|
+
* @generated from protobuf service services.docstore.DocStoreService
|
|
86
|
+
*/
|
|
87
|
+
export interface IDocStoreServiceClient {
|
|
88
|
+
/**
|
|
89
|
+
* @perm
|
|
90
|
+
*
|
|
91
|
+
* @generated from protobuf rpc: ListTemplates(services.docstore.ListTemplatesRequest) returns (services.docstore.ListTemplatesResponse);
|
|
92
|
+
*/
|
|
93
|
+
listTemplates(input: ListTemplatesRequest, options?: RpcOptions): UnaryCall<ListTemplatesRequest, ListTemplatesResponse>;
|
|
94
|
+
/**
|
|
95
|
+
* @perm: Name=ListTemplates
|
|
96
|
+
*
|
|
97
|
+
* @generated from protobuf rpc: GetTemplate(services.docstore.GetTemplateRequest) returns (services.docstore.GetTemplateResponse);
|
|
98
|
+
*/
|
|
99
|
+
getTemplate(input: GetTemplateRequest, options?: RpcOptions): UnaryCall<GetTemplateRequest, GetTemplateResponse>;
|
|
100
|
+
/**
|
|
101
|
+
* @perm
|
|
102
|
+
*
|
|
103
|
+
* @generated from protobuf rpc: CreateTemplate(services.docstore.CreateTemplateRequest) returns (services.docstore.CreateTemplateResponse);
|
|
104
|
+
*/
|
|
105
|
+
createTemplate(input: CreateTemplateRequest, options?: RpcOptions): UnaryCall<CreateTemplateRequest, CreateTemplateResponse>;
|
|
106
|
+
/**
|
|
107
|
+
* @perm: Name=CreateTemplate
|
|
108
|
+
*
|
|
109
|
+
* @generated from protobuf rpc: UpdateTemplate(services.docstore.UpdateTemplateRequest) returns (services.docstore.UpdateTemplateResponse);
|
|
110
|
+
*/
|
|
111
|
+
updateTemplate(input: UpdateTemplateRequest, options?: RpcOptions): UnaryCall<UpdateTemplateRequest, UpdateTemplateResponse>;
|
|
112
|
+
/**
|
|
113
|
+
* @perm
|
|
114
|
+
*
|
|
115
|
+
* @generated from protobuf rpc: DeleteTemplate(services.docstore.DeleteTemplateRequest) returns (services.docstore.DeleteTemplateResponse);
|
|
116
|
+
*/
|
|
117
|
+
deleteTemplate(input: DeleteTemplateRequest, options?: RpcOptions): UnaryCall<DeleteTemplateRequest, DeleteTemplateResponse>;
|
|
118
|
+
/**
|
|
119
|
+
* @perm
|
|
120
|
+
*
|
|
121
|
+
* @generated from protobuf rpc: ListDocuments(services.docstore.ListDocumentsRequest) returns (services.docstore.ListDocumentsResponse);
|
|
122
|
+
*/
|
|
123
|
+
listDocuments(input: ListDocumentsRequest, options?: RpcOptions): UnaryCall<ListDocumentsRequest, ListDocumentsResponse>;
|
|
124
|
+
/**
|
|
125
|
+
* @perm: Name=ListDocuments
|
|
126
|
+
*
|
|
127
|
+
* @generated from protobuf rpc: GetDocument(services.docstore.GetDocumentRequest) returns (services.docstore.GetDocumentResponse);
|
|
128
|
+
*/
|
|
129
|
+
getDocument(input: GetDocumentRequest, options?: RpcOptions): UnaryCall<GetDocumentRequest, GetDocumentResponse>;
|
|
130
|
+
/**
|
|
131
|
+
* @perm
|
|
132
|
+
*
|
|
133
|
+
* @generated from protobuf rpc: CreateDocument(services.docstore.CreateDocumentRequest) returns (services.docstore.CreateDocumentResponse);
|
|
134
|
+
*/
|
|
135
|
+
createDocument(input: CreateDocumentRequest, options?: RpcOptions): UnaryCall<CreateDocumentRequest, CreateDocumentResponse>;
|
|
136
|
+
/**
|
|
137
|
+
* @perm: Attrs=Access/StringList:[]string{"Own", "Lower_Rank", "Same_Rank", "Any"}
|
|
138
|
+
*
|
|
139
|
+
* @generated from protobuf rpc: UpdateDocument(services.docstore.UpdateDocumentRequest) returns (services.docstore.UpdateDocumentResponse);
|
|
140
|
+
*/
|
|
141
|
+
updateDocument(input: UpdateDocumentRequest, options?: RpcOptions): UnaryCall<UpdateDocumentRequest, UpdateDocumentResponse>;
|
|
142
|
+
/**
|
|
143
|
+
* @perm: Attrs=Access/StringList:[]string{"Own", "Lower_Rank", "Same_Rank", "Any"}
|
|
144
|
+
*
|
|
145
|
+
* @generated from protobuf rpc: DeleteDocument(services.docstore.DeleteDocumentRequest) returns (services.docstore.DeleteDocumentResponse);
|
|
146
|
+
*/
|
|
147
|
+
deleteDocument(input: DeleteDocumentRequest, options?: RpcOptions): UnaryCall<DeleteDocumentRequest, DeleteDocumentResponse>;
|
|
148
|
+
/**
|
|
149
|
+
* @perm: Attrs=Access/StringList:[]string{"Own", "Lower_Rank", "Same_Rank", "Any"}
|
|
150
|
+
*
|
|
151
|
+
* @generated from protobuf rpc: ToggleDocument(services.docstore.ToggleDocumentRequest) returns (services.docstore.ToggleDocumentResponse);
|
|
152
|
+
*/
|
|
153
|
+
toggleDocument(input: ToggleDocumentRequest, options?: RpcOptions): UnaryCall<ToggleDocumentRequest, ToggleDocumentResponse>;
|
|
154
|
+
/**
|
|
155
|
+
* @perm: Attrs=Access/StringList:[]string{"Own", "Lower_Rank", "Same_Rank", "Any"}
|
|
156
|
+
*
|
|
157
|
+
* @generated from protobuf rpc: ChangeDocumentOwner(services.docstore.ChangeDocumentOwnerRequest) returns (services.docstore.ChangeDocumentOwnerResponse);
|
|
158
|
+
*/
|
|
159
|
+
changeDocumentOwner(input: ChangeDocumentOwnerRequest, options?: RpcOptions): UnaryCall<ChangeDocumentOwnerRequest, ChangeDocumentOwnerResponse>;
|
|
160
|
+
/**
|
|
161
|
+
* @perm: Name=ListDocuments
|
|
162
|
+
*
|
|
163
|
+
* @generated from protobuf rpc: GetDocumentReferences(services.docstore.GetDocumentReferencesRequest) returns (services.docstore.GetDocumentReferencesResponse);
|
|
164
|
+
*/
|
|
165
|
+
getDocumentReferences(input: GetDocumentReferencesRequest, options?: RpcOptions): UnaryCall<GetDocumentReferencesRequest, GetDocumentReferencesResponse>;
|
|
166
|
+
/**
|
|
167
|
+
* @perm: Name=ListDocuments
|
|
168
|
+
*
|
|
169
|
+
* @generated from protobuf rpc: GetDocumentRelations(services.docstore.GetDocumentRelationsRequest) returns (services.docstore.GetDocumentRelationsResponse);
|
|
170
|
+
*/
|
|
171
|
+
getDocumentRelations(input: GetDocumentRelationsRequest, options?: RpcOptions): UnaryCall<GetDocumentRelationsRequest, GetDocumentRelationsResponse>;
|
|
172
|
+
/**
|
|
173
|
+
* @perm
|
|
174
|
+
*
|
|
175
|
+
* @generated from protobuf rpc: AddDocumentReference(services.docstore.AddDocumentReferenceRequest) returns (services.docstore.AddDocumentReferenceResponse);
|
|
176
|
+
*/
|
|
177
|
+
addDocumentReference(input: AddDocumentReferenceRequest, options?: RpcOptions): UnaryCall<AddDocumentReferenceRequest, AddDocumentReferenceResponse>;
|
|
178
|
+
/**
|
|
179
|
+
* @perm: Name=AddDocumentReference
|
|
180
|
+
*
|
|
181
|
+
* @generated from protobuf rpc: RemoveDocumentReference(services.docstore.RemoveDocumentReferenceRequest) returns (services.docstore.RemoveDocumentReferenceResponse);
|
|
182
|
+
*/
|
|
183
|
+
removeDocumentReference(input: RemoveDocumentReferenceRequest, options?: RpcOptions): UnaryCall<RemoveDocumentReferenceRequest, RemoveDocumentReferenceResponse>;
|
|
184
|
+
/**
|
|
185
|
+
* @perm
|
|
186
|
+
*
|
|
187
|
+
* @generated from protobuf rpc: AddDocumentRelation(services.docstore.AddDocumentRelationRequest) returns (services.docstore.AddDocumentRelationResponse);
|
|
188
|
+
*/
|
|
189
|
+
addDocumentRelation(input: AddDocumentRelationRequest, options?: RpcOptions): UnaryCall<AddDocumentRelationRequest, AddDocumentRelationResponse>;
|
|
190
|
+
/**
|
|
191
|
+
* @perm: Name=AddDocumentRelation
|
|
192
|
+
*
|
|
193
|
+
* @generated from protobuf rpc: RemoveDocumentRelation(services.docstore.RemoveDocumentRelationRequest) returns (services.docstore.RemoveDocumentRelationResponse);
|
|
194
|
+
*/
|
|
195
|
+
removeDocumentRelation(input: RemoveDocumentRelationRequest, options?: RpcOptions): UnaryCall<RemoveDocumentRelationRequest, RemoveDocumentRelationResponse>;
|
|
196
|
+
/**
|
|
197
|
+
* @perm: Name=ListDocuments
|
|
198
|
+
*
|
|
199
|
+
* @generated from protobuf rpc: GetComments(services.docstore.GetCommentsRequest) returns (services.docstore.GetCommentsResponse);
|
|
200
|
+
*/
|
|
201
|
+
getComments(input: GetCommentsRequest, options?: RpcOptions): UnaryCall<GetCommentsRequest, GetCommentsResponse>;
|
|
202
|
+
/**
|
|
203
|
+
* @perm
|
|
204
|
+
*
|
|
205
|
+
* @generated from protobuf rpc: PostComment(services.docstore.PostCommentRequest) returns (services.docstore.PostCommentResponse);
|
|
206
|
+
*/
|
|
207
|
+
postComment(input: PostCommentRequest, options?: RpcOptions): UnaryCall<PostCommentRequest, PostCommentResponse>;
|
|
208
|
+
/**
|
|
209
|
+
* @perm: Name=PostComment
|
|
210
|
+
*
|
|
211
|
+
* @generated from protobuf rpc: EditComment(services.docstore.EditCommentRequest) returns (services.docstore.EditCommentResponse);
|
|
212
|
+
*/
|
|
213
|
+
editComment(input: EditCommentRequest, options?: RpcOptions): UnaryCall<EditCommentRequest, EditCommentResponse>;
|
|
214
|
+
/**
|
|
215
|
+
* @perm: Attrs=Access/StringList:[]string{"Own", "Lower_Rank", "Same_Rank", "Any"}
|
|
216
|
+
*
|
|
217
|
+
* @generated from protobuf rpc: DeleteComment(services.docstore.DeleteCommentRequest) returns (services.docstore.DeleteCommentResponse);
|
|
218
|
+
*/
|
|
219
|
+
deleteComment(input: DeleteCommentRequest, options?: RpcOptions): UnaryCall<DeleteCommentRequest, DeleteCommentResponse>;
|
|
220
|
+
/**
|
|
221
|
+
* @perm: Name=ListDocuments
|
|
222
|
+
*
|
|
223
|
+
* @generated from protobuf rpc: GetDocumentAccess(services.docstore.GetDocumentAccessRequest) returns (services.docstore.GetDocumentAccessResponse);
|
|
224
|
+
*/
|
|
225
|
+
getDocumentAccess(input: GetDocumentAccessRequest, options?: RpcOptions): UnaryCall<GetDocumentAccessRequest, GetDocumentAccessResponse>;
|
|
226
|
+
/**
|
|
227
|
+
* @perm: Name=CreateDocument
|
|
228
|
+
*
|
|
229
|
+
* @generated from protobuf rpc: SetDocumentAccess(services.docstore.SetDocumentAccessRequest) returns (services.docstore.SetDocumentAccessResponse);
|
|
230
|
+
*/
|
|
231
|
+
setDocumentAccess(input: SetDocumentAccessRequest, options?: RpcOptions): UnaryCall<SetDocumentAccessRequest, SetDocumentAccessResponse>;
|
|
232
|
+
/**
|
|
233
|
+
* @perm
|
|
234
|
+
*
|
|
235
|
+
* @generated from protobuf rpc: ListDocumentActivity(services.docstore.ListDocumentActivityRequest) returns (services.docstore.ListDocumentActivityResponse);
|
|
236
|
+
*/
|
|
237
|
+
listDocumentActivity(input: ListDocumentActivityRequest, options?: RpcOptions): UnaryCall<ListDocumentActivityRequest, ListDocumentActivityResponse>;
|
|
238
|
+
/**
|
|
239
|
+
* @perm
|
|
240
|
+
*
|
|
241
|
+
* @generated from protobuf rpc: ListDocumentReqs(services.docstore.ListDocumentReqsRequest) returns (services.docstore.ListDocumentReqsResponse);
|
|
242
|
+
*/
|
|
243
|
+
listDocumentReqs(input: ListDocumentReqsRequest, options?: RpcOptions): UnaryCall<ListDocumentReqsRequest, ListDocumentReqsResponse>;
|
|
244
|
+
/**
|
|
245
|
+
* @perm: Attrs=Types/StringList:[]string{"Access", "Closure", "Update", "Deletion", "OwnerChange"}
|
|
246
|
+
*
|
|
247
|
+
* @generated from protobuf rpc: CreateDocumentReq(services.docstore.CreateDocumentReqRequest) returns (services.docstore.CreateDocumentReqResponse);
|
|
248
|
+
*/
|
|
249
|
+
createDocumentReq(input: CreateDocumentReqRequest, options?: RpcOptions): UnaryCall<CreateDocumentReqRequest, CreateDocumentReqResponse>;
|
|
250
|
+
/**
|
|
251
|
+
* @perm: Name=CreateDocumentReq
|
|
252
|
+
*
|
|
253
|
+
* @generated from protobuf rpc: UpdateDocumentReq(services.docstore.UpdateDocumentReqRequest) returns (services.docstore.UpdateDocumentReqResponse);
|
|
254
|
+
*/
|
|
255
|
+
updateDocumentReq(input: UpdateDocumentReqRequest, options?: RpcOptions): UnaryCall<UpdateDocumentReqRequest, UpdateDocumentReqResponse>;
|
|
256
|
+
/**
|
|
257
|
+
* @perm
|
|
258
|
+
*
|
|
259
|
+
* @generated from protobuf rpc: DeleteDocumentReq(services.docstore.DeleteDocumentReqRequest) returns (services.docstore.DeleteDocumentReqResponse);
|
|
260
|
+
*/
|
|
261
|
+
deleteDocumentReq(input: DeleteDocumentReqRequest, options?: RpcOptions): UnaryCall<DeleteDocumentReqRequest, DeleteDocumentReqResponse>;
|
|
262
|
+
/**
|
|
263
|
+
* @perm
|
|
264
|
+
*
|
|
265
|
+
* @generated from protobuf rpc: ListUserDocuments(services.docstore.ListUserDocumentsRequest) returns (services.docstore.ListUserDocumentsResponse);
|
|
266
|
+
*/
|
|
267
|
+
listUserDocuments(input: ListUserDocumentsRequest, options?: RpcOptions): UnaryCall<ListUserDocumentsRequest, ListUserDocumentsResponse>;
|
|
268
|
+
/**
|
|
269
|
+
* @perm
|
|
270
|
+
*
|
|
271
|
+
* @generated from protobuf rpc: ListCategories(services.docstore.ListCategoriesRequest) returns (services.docstore.ListCategoriesResponse);
|
|
272
|
+
*/
|
|
273
|
+
listCategories(input: ListCategoriesRequest, options?: RpcOptions): UnaryCall<ListCategoriesRequest, ListCategoriesResponse>;
|
|
274
|
+
/**
|
|
275
|
+
* @perm
|
|
276
|
+
*
|
|
277
|
+
* @generated from protobuf rpc: CreateCategory(services.docstore.CreateCategoryRequest) returns (services.docstore.CreateCategoryResponse);
|
|
278
|
+
*/
|
|
279
|
+
createCategory(input: CreateCategoryRequest, options?: RpcOptions): UnaryCall<CreateCategoryRequest, CreateCategoryResponse>;
|
|
280
|
+
/**
|
|
281
|
+
* @perm: Name=CreateCategory
|
|
282
|
+
*
|
|
283
|
+
* @generated from protobuf rpc: UpdateCategory(services.docstore.UpdateCategoryRequest) returns (services.docstore.UpdateCategoryResponse);
|
|
284
|
+
*/
|
|
285
|
+
updateCategory(input: UpdateCategoryRequest, options?: RpcOptions): UnaryCall<UpdateCategoryRequest, UpdateCategoryResponse>;
|
|
286
|
+
/**
|
|
287
|
+
* @perm
|
|
288
|
+
*
|
|
289
|
+
* @generated from protobuf rpc: DeleteCategory(services.docstore.DeleteCategoryRequest) returns (services.docstore.DeleteCategoryResponse);
|
|
290
|
+
*/
|
|
291
|
+
deleteCategory(input: DeleteCategoryRequest, options?: RpcOptions): UnaryCall<DeleteCategoryRequest, DeleteCategoryResponse>;
|
|
292
|
+
/**
|
|
293
|
+
* @perm: Name=ListDocuments
|
|
294
|
+
*
|
|
295
|
+
* @generated from protobuf rpc: ListDocumentPins(services.docstore.ListDocumentPinsRequest) returns (services.docstore.ListDocumentPinsResponse);
|
|
296
|
+
*/
|
|
297
|
+
listDocumentPins(input: ListDocumentPinsRequest, options?: RpcOptions): UnaryCall<ListDocumentPinsRequest, ListDocumentPinsResponse>;
|
|
298
|
+
/**
|
|
299
|
+
* @perm
|
|
300
|
+
*
|
|
301
|
+
* @generated from protobuf rpc: ToggleDocumentPin(services.docstore.ToggleDocumentPinRequest) returns (services.docstore.ToggleDocumentPinResponse);
|
|
302
|
+
*/
|
|
303
|
+
toggleDocumentPin(input: ToggleDocumentPinRequest, options?: RpcOptions): UnaryCall<ToggleDocumentPinRequest, ToggleDocumentPinResponse>;
|
|
304
|
+
/**
|
|
305
|
+
* @perm
|
|
306
|
+
*
|
|
307
|
+
* @generated from protobuf rpc: SetDocumentReminder(services.docstore.SetDocumentReminderRequest) returns (services.docstore.SetDocumentReminderResponse);
|
|
308
|
+
*/
|
|
309
|
+
setDocumentReminder(input: SetDocumentReminderRequest, options?: RpcOptions): UnaryCall<SetDocumentReminderRequest, SetDocumentReminderResponse>;
|
|
310
|
+
}
|
|
311
|
+
/**
|
|
312
|
+
* @generated from protobuf service services.docstore.DocStoreService
|
|
313
|
+
*/
|
|
314
|
+
export class DocStoreServiceClient implements IDocStoreServiceClient, ServiceInfo {
|
|
315
|
+
typeName = DocStoreService.typeName;
|
|
316
|
+
methods = DocStoreService.methods;
|
|
317
|
+
options = DocStoreService.options;
|
|
318
|
+
constructor(private readonly _transport: RpcTransport) {
|
|
319
|
+
}
|
|
320
|
+
/**
|
|
321
|
+
* @perm
|
|
322
|
+
*
|
|
323
|
+
* @generated from protobuf rpc: ListTemplates(services.docstore.ListTemplatesRequest) returns (services.docstore.ListTemplatesResponse);
|
|
324
|
+
*/
|
|
325
|
+
listTemplates(input: ListTemplatesRequest, options?: RpcOptions): UnaryCall<ListTemplatesRequest, ListTemplatesResponse> {
|
|
326
|
+
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
|
327
|
+
return stackIntercept<ListTemplatesRequest, ListTemplatesResponse>("unary", this._transport, method, opt, input);
|
|
328
|
+
}
|
|
329
|
+
/**
|
|
330
|
+
* @perm: Name=ListTemplates
|
|
331
|
+
*
|
|
332
|
+
* @generated from protobuf rpc: GetTemplate(services.docstore.GetTemplateRequest) returns (services.docstore.GetTemplateResponse);
|
|
333
|
+
*/
|
|
334
|
+
getTemplate(input: GetTemplateRequest, options?: RpcOptions): UnaryCall<GetTemplateRequest, GetTemplateResponse> {
|
|
335
|
+
const method = this.methods[1], opt = this._transport.mergeOptions(options);
|
|
336
|
+
return stackIntercept<GetTemplateRequest, GetTemplateResponse>("unary", this._transport, method, opt, input);
|
|
337
|
+
}
|
|
338
|
+
/**
|
|
339
|
+
* @perm
|
|
340
|
+
*
|
|
341
|
+
* @generated from protobuf rpc: CreateTemplate(services.docstore.CreateTemplateRequest) returns (services.docstore.CreateTemplateResponse);
|
|
342
|
+
*/
|
|
343
|
+
createTemplate(input: CreateTemplateRequest, options?: RpcOptions): UnaryCall<CreateTemplateRequest, CreateTemplateResponse> {
|
|
344
|
+
const method = this.methods[2], opt = this._transport.mergeOptions(options);
|
|
345
|
+
return stackIntercept<CreateTemplateRequest, CreateTemplateResponse>("unary", this._transport, method, opt, input);
|
|
346
|
+
}
|
|
347
|
+
/**
|
|
348
|
+
* @perm: Name=CreateTemplate
|
|
349
|
+
*
|
|
350
|
+
* @generated from protobuf rpc: UpdateTemplate(services.docstore.UpdateTemplateRequest) returns (services.docstore.UpdateTemplateResponse);
|
|
351
|
+
*/
|
|
352
|
+
updateTemplate(input: UpdateTemplateRequest, options?: RpcOptions): UnaryCall<UpdateTemplateRequest, UpdateTemplateResponse> {
|
|
353
|
+
const method = this.methods[3], opt = this._transport.mergeOptions(options);
|
|
354
|
+
return stackIntercept<UpdateTemplateRequest, UpdateTemplateResponse>("unary", this._transport, method, opt, input);
|
|
355
|
+
}
|
|
356
|
+
/**
|
|
357
|
+
* @perm
|
|
358
|
+
*
|
|
359
|
+
* @generated from protobuf rpc: DeleteTemplate(services.docstore.DeleteTemplateRequest) returns (services.docstore.DeleteTemplateResponse);
|
|
360
|
+
*/
|
|
361
|
+
deleteTemplate(input: DeleteTemplateRequest, options?: RpcOptions): UnaryCall<DeleteTemplateRequest, DeleteTemplateResponse> {
|
|
362
|
+
const method = this.methods[4], opt = this._transport.mergeOptions(options);
|
|
363
|
+
return stackIntercept<DeleteTemplateRequest, DeleteTemplateResponse>("unary", this._transport, method, opt, input);
|
|
364
|
+
}
|
|
365
|
+
/**
|
|
366
|
+
* @perm
|
|
367
|
+
*
|
|
368
|
+
* @generated from protobuf rpc: ListDocuments(services.docstore.ListDocumentsRequest) returns (services.docstore.ListDocumentsResponse);
|
|
369
|
+
*/
|
|
370
|
+
listDocuments(input: ListDocumentsRequest, options?: RpcOptions): UnaryCall<ListDocumentsRequest, ListDocumentsResponse> {
|
|
371
|
+
const method = this.methods[5], opt = this._transport.mergeOptions(options);
|
|
372
|
+
return stackIntercept<ListDocumentsRequest, ListDocumentsResponse>("unary", this._transport, method, opt, input);
|
|
373
|
+
}
|
|
374
|
+
/**
|
|
375
|
+
* @perm: Name=ListDocuments
|
|
376
|
+
*
|
|
377
|
+
* @generated from protobuf rpc: GetDocument(services.docstore.GetDocumentRequest) returns (services.docstore.GetDocumentResponse);
|
|
378
|
+
*/
|
|
379
|
+
getDocument(input: GetDocumentRequest, options?: RpcOptions): UnaryCall<GetDocumentRequest, GetDocumentResponse> {
|
|
380
|
+
const method = this.methods[6], opt = this._transport.mergeOptions(options);
|
|
381
|
+
return stackIntercept<GetDocumentRequest, GetDocumentResponse>("unary", this._transport, method, opt, input);
|
|
382
|
+
}
|
|
383
|
+
/**
|
|
384
|
+
* @perm
|
|
385
|
+
*
|
|
386
|
+
* @generated from protobuf rpc: CreateDocument(services.docstore.CreateDocumentRequest) returns (services.docstore.CreateDocumentResponse);
|
|
387
|
+
*/
|
|
388
|
+
createDocument(input: CreateDocumentRequest, options?: RpcOptions): UnaryCall<CreateDocumentRequest, CreateDocumentResponse> {
|
|
389
|
+
const method = this.methods[7], opt = this._transport.mergeOptions(options);
|
|
390
|
+
return stackIntercept<CreateDocumentRequest, CreateDocumentResponse>("unary", this._transport, method, opt, input);
|
|
391
|
+
}
|
|
392
|
+
/**
|
|
393
|
+
* @perm: Attrs=Access/StringList:[]string{"Own", "Lower_Rank", "Same_Rank", "Any"}
|
|
394
|
+
*
|
|
395
|
+
* @generated from protobuf rpc: UpdateDocument(services.docstore.UpdateDocumentRequest) returns (services.docstore.UpdateDocumentResponse);
|
|
396
|
+
*/
|
|
397
|
+
updateDocument(input: UpdateDocumentRequest, options?: RpcOptions): UnaryCall<UpdateDocumentRequest, UpdateDocumentResponse> {
|
|
398
|
+
const method = this.methods[8], opt = this._transport.mergeOptions(options);
|
|
399
|
+
return stackIntercept<UpdateDocumentRequest, UpdateDocumentResponse>("unary", this._transport, method, opt, input);
|
|
400
|
+
}
|
|
401
|
+
/**
|
|
402
|
+
* @perm: Attrs=Access/StringList:[]string{"Own", "Lower_Rank", "Same_Rank", "Any"}
|
|
403
|
+
*
|
|
404
|
+
* @generated from protobuf rpc: DeleteDocument(services.docstore.DeleteDocumentRequest) returns (services.docstore.DeleteDocumentResponse);
|
|
405
|
+
*/
|
|
406
|
+
deleteDocument(input: DeleteDocumentRequest, options?: RpcOptions): UnaryCall<DeleteDocumentRequest, DeleteDocumentResponse> {
|
|
407
|
+
const method = this.methods[9], opt = this._transport.mergeOptions(options);
|
|
408
|
+
return stackIntercept<DeleteDocumentRequest, DeleteDocumentResponse>("unary", this._transport, method, opt, input);
|
|
409
|
+
}
|
|
410
|
+
/**
|
|
411
|
+
* @perm: Attrs=Access/StringList:[]string{"Own", "Lower_Rank", "Same_Rank", "Any"}
|
|
412
|
+
*
|
|
413
|
+
* @generated from protobuf rpc: ToggleDocument(services.docstore.ToggleDocumentRequest) returns (services.docstore.ToggleDocumentResponse);
|
|
414
|
+
*/
|
|
415
|
+
toggleDocument(input: ToggleDocumentRequest, options?: RpcOptions): UnaryCall<ToggleDocumentRequest, ToggleDocumentResponse> {
|
|
416
|
+
const method = this.methods[10], opt = this._transport.mergeOptions(options);
|
|
417
|
+
return stackIntercept<ToggleDocumentRequest, ToggleDocumentResponse>("unary", this._transport, method, opt, input);
|
|
418
|
+
}
|
|
419
|
+
/**
|
|
420
|
+
* @perm: Attrs=Access/StringList:[]string{"Own", "Lower_Rank", "Same_Rank", "Any"}
|
|
421
|
+
*
|
|
422
|
+
* @generated from protobuf rpc: ChangeDocumentOwner(services.docstore.ChangeDocumentOwnerRequest) returns (services.docstore.ChangeDocumentOwnerResponse);
|
|
423
|
+
*/
|
|
424
|
+
changeDocumentOwner(input: ChangeDocumentOwnerRequest, options?: RpcOptions): UnaryCall<ChangeDocumentOwnerRequest, ChangeDocumentOwnerResponse> {
|
|
425
|
+
const method = this.methods[11], opt = this._transport.mergeOptions(options);
|
|
426
|
+
return stackIntercept<ChangeDocumentOwnerRequest, ChangeDocumentOwnerResponse>("unary", this._transport, method, opt, input);
|
|
427
|
+
}
|
|
428
|
+
/**
|
|
429
|
+
* @perm: Name=ListDocuments
|
|
430
|
+
*
|
|
431
|
+
* @generated from protobuf rpc: GetDocumentReferences(services.docstore.GetDocumentReferencesRequest) returns (services.docstore.GetDocumentReferencesResponse);
|
|
432
|
+
*/
|
|
433
|
+
getDocumentReferences(input: GetDocumentReferencesRequest, options?: RpcOptions): UnaryCall<GetDocumentReferencesRequest, GetDocumentReferencesResponse> {
|
|
434
|
+
const method = this.methods[12], opt = this._transport.mergeOptions(options);
|
|
435
|
+
return stackIntercept<GetDocumentReferencesRequest, GetDocumentReferencesResponse>("unary", this._transport, method, opt, input);
|
|
436
|
+
}
|
|
437
|
+
/**
|
|
438
|
+
* @perm: Name=ListDocuments
|
|
439
|
+
*
|
|
440
|
+
* @generated from protobuf rpc: GetDocumentRelations(services.docstore.GetDocumentRelationsRequest) returns (services.docstore.GetDocumentRelationsResponse);
|
|
441
|
+
*/
|
|
442
|
+
getDocumentRelations(input: GetDocumentRelationsRequest, options?: RpcOptions): UnaryCall<GetDocumentRelationsRequest, GetDocumentRelationsResponse> {
|
|
443
|
+
const method = this.methods[13], opt = this._transport.mergeOptions(options);
|
|
444
|
+
return stackIntercept<GetDocumentRelationsRequest, GetDocumentRelationsResponse>("unary", this._transport, method, opt, input);
|
|
445
|
+
}
|
|
446
|
+
/**
|
|
447
|
+
* @perm
|
|
448
|
+
*
|
|
449
|
+
* @generated from protobuf rpc: AddDocumentReference(services.docstore.AddDocumentReferenceRequest) returns (services.docstore.AddDocumentReferenceResponse);
|
|
450
|
+
*/
|
|
451
|
+
addDocumentReference(input: AddDocumentReferenceRequest, options?: RpcOptions): UnaryCall<AddDocumentReferenceRequest, AddDocumentReferenceResponse> {
|
|
452
|
+
const method = this.methods[14], opt = this._transport.mergeOptions(options);
|
|
453
|
+
return stackIntercept<AddDocumentReferenceRequest, AddDocumentReferenceResponse>("unary", this._transport, method, opt, input);
|
|
454
|
+
}
|
|
455
|
+
/**
|
|
456
|
+
* @perm: Name=AddDocumentReference
|
|
457
|
+
*
|
|
458
|
+
* @generated from protobuf rpc: RemoveDocumentReference(services.docstore.RemoveDocumentReferenceRequest) returns (services.docstore.RemoveDocumentReferenceResponse);
|
|
459
|
+
*/
|
|
460
|
+
removeDocumentReference(input: RemoveDocumentReferenceRequest, options?: RpcOptions): UnaryCall<RemoveDocumentReferenceRequest, RemoveDocumentReferenceResponse> {
|
|
461
|
+
const method = this.methods[15], opt = this._transport.mergeOptions(options);
|
|
462
|
+
return stackIntercept<RemoveDocumentReferenceRequest, RemoveDocumentReferenceResponse>("unary", this._transport, method, opt, input);
|
|
463
|
+
}
|
|
464
|
+
/**
|
|
465
|
+
* @perm
|
|
466
|
+
*
|
|
467
|
+
* @generated from protobuf rpc: AddDocumentRelation(services.docstore.AddDocumentRelationRequest) returns (services.docstore.AddDocumentRelationResponse);
|
|
468
|
+
*/
|
|
469
|
+
addDocumentRelation(input: AddDocumentRelationRequest, options?: RpcOptions): UnaryCall<AddDocumentRelationRequest, AddDocumentRelationResponse> {
|
|
470
|
+
const method = this.methods[16], opt = this._transport.mergeOptions(options);
|
|
471
|
+
return stackIntercept<AddDocumentRelationRequest, AddDocumentRelationResponse>("unary", this._transport, method, opt, input);
|
|
472
|
+
}
|
|
473
|
+
/**
|
|
474
|
+
* @perm: Name=AddDocumentRelation
|
|
475
|
+
*
|
|
476
|
+
* @generated from protobuf rpc: RemoveDocumentRelation(services.docstore.RemoveDocumentRelationRequest) returns (services.docstore.RemoveDocumentRelationResponse);
|
|
477
|
+
*/
|
|
478
|
+
removeDocumentRelation(input: RemoveDocumentRelationRequest, options?: RpcOptions): UnaryCall<RemoveDocumentRelationRequest, RemoveDocumentRelationResponse> {
|
|
479
|
+
const method = this.methods[17], opt = this._transport.mergeOptions(options);
|
|
480
|
+
return stackIntercept<RemoveDocumentRelationRequest, RemoveDocumentRelationResponse>("unary", this._transport, method, opt, input);
|
|
481
|
+
}
|
|
482
|
+
/**
|
|
483
|
+
* @perm: Name=ListDocuments
|
|
484
|
+
*
|
|
485
|
+
* @generated from protobuf rpc: GetComments(services.docstore.GetCommentsRequest) returns (services.docstore.GetCommentsResponse);
|
|
486
|
+
*/
|
|
487
|
+
getComments(input: GetCommentsRequest, options?: RpcOptions): UnaryCall<GetCommentsRequest, GetCommentsResponse> {
|
|
488
|
+
const method = this.methods[18], opt = this._transport.mergeOptions(options);
|
|
489
|
+
return stackIntercept<GetCommentsRequest, GetCommentsResponse>("unary", this._transport, method, opt, input);
|
|
490
|
+
}
|
|
491
|
+
/**
|
|
492
|
+
* @perm
|
|
493
|
+
*
|
|
494
|
+
* @generated from protobuf rpc: PostComment(services.docstore.PostCommentRequest) returns (services.docstore.PostCommentResponse);
|
|
495
|
+
*/
|
|
496
|
+
postComment(input: PostCommentRequest, options?: RpcOptions): UnaryCall<PostCommentRequest, PostCommentResponse> {
|
|
497
|
+
const method = this.methods[19], opt = this._transport.mergeOptions(options);
|
|
498
|
+
return stackIntercept<PostCommentRequest, PostCommentResponse>("unary", this._transport, method, opt, input);
|
|
499
|
+
}
|
|
500
|
+
/**
|
|
501
|
+
* @perm: Name=PostComment
|
|
502
|
+
*
|
|
503
|
+
* @generated from protobuf rpc: EditComment(services.docstore.EditCommentRequest) returns (services.docstore.EditCommentResponse);
|
|
504
|
+
*/
|
|
505
|
+
editComment(input: EditCommentRequest, options?: RpcOptions): UnaryCall<EditCommentRequest, EditCommentResponse> {
|
|
506
|
+
const method = this.methods[20], opt = this._transport.mergeOptions(options);
|
|
507
|
+
return stackIntercept<EditCommentRequest, EditCommentResponse>("unary", this._transport, method, opt, input);
|
|
508
|
+
}
|
|
509
|
+
/**
|
|
510
|
+
* @perm: Attrs=Access/StringList:[]string{"Own", "Lower_Rank", "Same_Rank", "Any"}
|
|
511
|
+
*
|
|
512
|
+
* @generated from protobuf rpc: DeleteComment(services.docstore.DeleteCommentRequest) returns (services.docstore.DeleteCommentResponse);
|
|
513
|
+
*/
|
|
514
|
+
deleteComment(input: DeleteCommentRequest, options?: RpcOptions): UnaryCall<DeleteCommentRequest, DeleteCommentResponse> {
|
|
515
|
+
const method = this.methods[21], opt = this._transport.mergeOptions(options);
|
|
516
|
+
return stackIntercept<DeleteCommentRequest, DeleteCommentResponse>("unary", this._transport, method, opt, input);
|
|
517
|
+
}
|
|
518
|
+
/**
|
|
519
|
+
* @perm: Name=ListDocuments
|
|
520
|
+
*
|
|
521
|
+
* @generated from protobuf rpc: GetDocumentAccess(services.docstore.GetDocumentAccessRequest) returns (services.docstore.GetDocumentAccessResponse);
|
|
522
|
+
*/
|
|
523
|
+
getDocumentAccess(input: GetDocumentAccessRequest, options?: RpcOptions): UnaryCall<GetDocumentAccessRequest, GetDocumentAccessResponse> {
|
|
524
|
+
const method = this.methods[22], opt = this._transport.mergeOptions(options);
|
|
525
|
+
return stackIntercept<GetDocumentAccessRequest, GetDocumentAccessResponse>("unary", this._transport, method, opt, input);
|
|
526
|
+
}
|
|
527
|
+
/**
|
|
528
|
+
* @perm: Name=CreateDocument
|
|
529
|
+
*
|
|
530
|
+
* @generated from protobuf rpc: SetDocumentAccess(services.docstore.SetDocumentAccessRequest) returns (services.docstore.SetDocumentAccessResponse);
|
|
531
|
+
*/
|
|
532
|
+
setDocumentAccess(input: SetDocumentAccessRequest, options?: RpcOptions): UnaryCall<SetDocumentAccessRequest, SetDocumentAccessResponse> {
|
|
533
|
+
const method = this.methods[23], opt = this._transport.mergeOptions(options);
|
|
534
|
+
return stackIntercept<SetDocumentAccessRequest, SetDocumentAccessResponse>("unary", this._transport, method, opt, input);
|
|
535
|
+
}
|
|
536
|
+
/**
|
|
537
|
+
* @perm
|
|
538
|
+
*
|
|
539
|
+
* @generated from protobuf rpc: ListDocumentActivity(services.docstore.ListDocumentActivityRequest) returns (services.docstore.ListDocumentActivityResponse);
|
|
540
|
+
*/
|
|
541
|
+
listDocumentActivity(input: ListDocumentActivityRequest, options?: RpcOptions): UnaryCall<ListDocumentActivityRequest, ListDocumentActivityResponse> {
|
|
542
|
+
const method = this.methods[24], opt = this._transport.mergeOptions(options);
|
|
543
|
+
return stackIntercept<ListDocumentActivityRequest, ListDocumentActivityResponse>("unary", this._transport, method, opt, input);
|
|
544
|
+
}
|
|
545
|
+
/**
|
|
546
|
+
* @perm
|
|
547
|
+
*
|
|
548
|
+
* @generated from protobuf rpc: ListDocumentReqs(services.docstore.ListDocumentReqsRequest) returns (services.docstore.ListDocumentReqsResponse);
|
|
549
|
+
*/
|
|
550
|
+
listDocumentReqs(input: ListDocumentReqsRequest, options?: RpcOptions): UnaryCall<ListDocumentReqsRequest, ListDocumentReqsResponse> {
|
|
551
|
+
const method = this.methods[25], opt = this._transport.mergeOptions(options);
|
|
552
|
+
return stackIntercept<ListDocumentReqsRequest, ListDocumentReqsResponse>("unary", this._transport, method, opt, input);
|
|
553
|
+
}
|
|
554
|
+
/**
|
|
555
|
+
* @perm: Attrs=Types/StringList:[]string{"Access", "Closure", "Update", "Deletion", "OwnerChange"}
|
|
556
|
+
*
|
|
557
|
+
* @generated from protobuf rpc: CreateDocumentReq(services.docstore.CreateDocumentReqRequest) returns (services.docstore.CreateDocumentReqResponse);
|
|
558
|
+
*/
|
|
559
|
+
createDocumentReq(input: CreateDocumentReqRequest, options?: RpcOptions): UnaryCall<CreateDocumentReqRequest, CreateDocumentReqResponse> {
|
|
560
|
+
const method = this.methods[26], opt = this._transport.mergeOptions(options);
|
|
561
|
+
return stackIntercept<CreateDocumentReqRequest, CreateDocumentReqResponse>("unary", this._transport, method, opt, input);
|
|
562
|
+
}
|
|
563
|
+
/**
|
|
564
|
+
* @perm: Name=CreateDocumentReq
|
|
565
|
+
*
|
|
566
|
+
* @generated from protobuf rpc: UpdateDocumentReq(services.docstore.UpdateDocumentReqRequest) returns (services.docstore.UpdateDocumentReqResponse);
|
|
567
|
+
*/
|
|
568
|
+
updateDocumentReq(input: UpdateDocumentReqRequest, options?: RpcOptions): UnaryCall<UpdateDocumentReqRequest, UpdateDocumentReqResponse> {
|
|
569
|
+
const method = this.methods[27], opt = this._transport.mergeOptions(options);
|
|
570
|
+
return stackIntercept<UpdateDocumentReqRequest, UpdateDocumentReqResponse>("unary", this._transport, method, opt, input);
|
|
571
|
+
}
|
|
572
|
+
/**
|
|
573
|
+
* @perm
|
|
574
|
+
*
|
|
575
|
+
* @generated from protobuf rpc: DeleteDocumentReq(services.docstore.DeleteDocumentReqRequest) returns (services.docstore.DeleteDocumentReqResponse);
|
|
576
|
+
*/
|
|
577
|
+
deleteDocumentReq(input: DeleteDocumentReqRequest, options?: RpcOptions): UnaryCall<DeleteDocumentReqRequest, DeleteDocumentReqResponse> {
|
|
578
|
+
const method = this.methods[28], opt = this._transport.mergeOptions(options);
|
|
579
|
+
return stackIntercept<DeleteDocumentReqRequest, DeleteDocumentReqResponse>("unary", this._transport, method, opt, input);
|
|
580
|
+
}
|
|
581
|
+
/**
|
|
582
|
+
* @perm
|
|
583
|
+
*
|
|
584
|
+
* @generated from protobuf rpc: ListUserDocuments(services.docstore.ListUserDocumentsRequest) returns (services.docstore.ListUserDocumentsResponse);
|
|
585
|
+
*/
|
|
586
|
+
listUserDocuments(input: ListUserDocumentsRequest, options?: RpcOptions): UnaryCall<ListUserDocumentsRequest, ListUserDocumentsResponse> {
|
|
587
|
+
const method = this.methods[29], opt = this._transport.mergeOptions(options);
|
|
588
|
+
return stackIntercept<ListUserDocumentsRequest, ListUserDocumentsResponse>("unary", this._transport, method, opt, input);
|
|
589
|
+
}
|
|
590
|
+
/**
|
|
591
|
+
* @perm
|
|
592
|
+
*
|
|
593
|
+
* @generated from protobuf rpc: ListCategories(services.docstore.ListCategoriesRequest) returns (services.docstore.ListCategoriesResponse);
|
|
594
|
+
*/
|
|
595
|
+
listCategories(input: ListCategoriesRequest, options?: RpcOptions): UnaryCall<ListCategoriesRequest, ListCategoriesResponse> {
|
|
596
|
+
const method = this.methods[30], opt = this._transport.mergeOptions(options);
|
|
597
|
+
return stackIntercept<ListCategoriesRequest, ListCategoriesResponse>("unary", this._transport, method, opt, input);
|
|
598
|
+
}
|
|
599
|
+
/**
|
|
600
|
+
* @perm
|
|
601
|
+
*
|
|
602
|
+
* @generated from protobuf rpc: CreateCategory(services.docstore.CreateCategoryRequest) returns (services.docstore.CreateCategoryResponse);
|
|
603
|
+
*/
|
|
604
|
+
createCategory(input: CreateCategoryRequest, options?: RpcOptions): UnaryCall<CreateCategoryRequest, CreateCategoryResponse> {
|
|
605
|
+
const method = this.methods[31], opt = this._transport.mergeOptions(options);
|
|
606
|
+
return stackIntercept<CreateCategoryRequest, CreateCategoryResponse>("unary", this._transport, method, opt, input);
|
|
607
|
+
}
|
|
608
|
+
/**
|
|
609
|
+
* @perm: Name=CreateCategory
|
|
610
|
+
*
|
|
611
|
+
* @generated from protobuf rpc: UpdateCategory(services.docstore.UpdateCategoryRequest) returns (services.docstore.UpdateCategoryResponse);
|
|
612
|
+
*/
|
|
613
|
+
updateCategory(input: UpdateCategoryRequest, options?: RpcOptions): UnaryCall<UpdateCategoryRequest, UpdateCategoryResponse> {
|
|
614
|
+
const method = this.methods[32], opt = this._transport.mergeOptions(options);
|
|
615
|
+
return stackIntercept<UpdateCategoryRequest, UpdateCategoryResponse>("unary", this._transport, method, opt, input);
|
|
616
|
+
}
|
|
617
|
+
/**
|
|
618
|
+
* @perm
|
|
619
|
+
*
|
|
620
|
+
* @generated from protobuf rpc: DeleteCategory(services.docstore.DeleteCategoryRequest) returns (services.docstore.DeleteCategoryResponse);
|
|
621
|
+
*/
|
|
622
|
+
deleteCategory(input: DeleteCategoryRequest, options?: RpcOptions): UnaryCall<DeleteCategoryRequest, DeleteCategoryResponse> {
|
|
623
|
+
const method = this.methods[33], opt = this._transport.mergeOptions(options);
|
|
624
|
+
return stackIntercept<DeleteCategoryRequest, DeleteCategoryResponse>("unary", this._transport, method, opt, input);
|
|
625
|
+
}
|
|
626
|
+
/**
|
|
627
|
+
* @perm: Name=ListDocuments
|
|
628
|
+
*
|
|
629
|
+
* @generated from protobuf rpc: ListDocumentPins(services.docstore.ListDocumentPinsRequest) returns (services.docstore.ListDocumentPinsResponse);
|
|
630
|
+
*/
|
|
631
|
+
listDocumentPins(input: ListDocumentPinsRequest, options?: RpcOptions): UnaryCall<ListDocumentPinsRequest, ListDocumentPinsResponse> {
|
|
632
|
+
const method = this.methods[34], opt = this._transport.mergeOptions(options);
|
|
633
|
+
return stackIntercept<ListDocumentPinsRequest, ListDocumentPinsResponse>("unary", this._transport, method, opt, input);
|
|
634
|
+
}
|
|
635
|
+
/**
|
|
636
|
+
* @perm
|
|
637
|
+
*
|
|
638
|
+
* @generated from protobuf rpc: ToggleDocumentPin(services.docstore.ToggleDocumentPinRequest) returns (services.docstore.ToggleDocumentPinResponse);
|
|
639
|
+
*/
|
|
640
|
+
toggleDocumentPin(input: ToggleDocumentPinRequest, options?: RpcOptions): UnaryCall<ToggleDocumentPinRequest, ToggleDocumentPinResponse> {
|
|
641
|
+
const method = this.methods[35], opt = this._transport.mergeOptions(options);
|
|
642
|
+
return stackIntercept<ToggleDocumentPinRequest, ToggleDocumentPinResponse>("unary", this._transport, method, opt, input);
|
|
643
|
+
}
|
|
644
|
+
/**
|
|
645
|
+
* @perm
|
|
646
|
+
*
|
|
647
|
+
* @generated from protobuf rpc: SetDocumentReminder(services.docstore.SetDocumentReminderRequest) returns (services.docstore.SetDocumentReminderResponse);
|
|
648
|
+
*/
|
|
649
|
+
setDocumentReminder(input: SetDocumentReminderRequest, options?: RpcOptions): UnaryCall<SetDocumentReminderRequest, SetDocumentReminderResponse> {
|
|
650
|
+
const method = this.methods[36], opt = this._transport.mergeOptions(options);
|
|
651
|
+
return stackIntercept<SetDocumentReminderRequest, SetDocumentReminderResponse>("unary", this._transport, method, opt, input);
|
|
652
|
+
}
|
|
653
|
+
}
|