@opsee/mcp-server 0.8.1 → 0.8.2
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/gen/api/v1/board_pb.d.ts +225 -1
- package/gen/api/v1/board_pb.js +54 -5
- package/gen/api/v1/comment_pb.d.ts +15 -0
- package/gen/api/v1/comment_pb.js +1 -1
- package/gen/api/v1/initiative_pb.d.ts +785 -0
- package/gen/api/v1/initiative_pb.js +199 -0
- package/gen/api/v1/integration_pb.d.ts +750 -0
- package/gen/api/v1/integration_pb.js +193 -0
- package/gen/api/v1/models_pb.d.ts +234 -0
- package/gen/api/v1/models_pb.js +17 -3
- package/gen/api/v1/readiness_pb.d.ts +834 -0
- package/gen/api/v1/readiness_pb.js +197 -0
- package/gen/api/v1/task_pb.d.ts +8 -0
- package/gen/api/v1/task_pb.js +1 -1
- package/package.json +1 -1
- package/src/client/api.ts +3 -0
- package/src/server.ts +2 -0
- package/src/tools/comments.ts +10 -6
- package/src/tools/initiatives.ts +321 -0
- package/src/tools/tasks.ts +100 -1
- package/src/utils/format.ts +244 -1
package/gen/api/v1/board_pb.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegen
|
|
|
6
6
|
import type { Message } from "@bufbuild/protobuf";
|
|
7
7
|
import type { Pagination } from "./pagination_pb";
|
|
8
8
|
import type { FilterOptions } from "./filter_pb";
|
|
9
|
-
import type { Board } from "./models_pb";
|
|
9
|
+
import type { Board, Task } from "./models_pb";
|
|
10
10
|
import type { EmptySchema } from "@bufbuild/protobuf/wkt";
|
|
11
11
|
|
|
12
12
|
/**
|
|
@@ -167,6 +167,24 @@ export declare type DeleteBoardRequest = Message<"api.v1.DeleteBoardRequest"> &
|
|
|
167
167
|
*/
|
|
168
168
|
export declare const DeleteBoardRequestSchema: GenMessage<DeleteBoardRequest>;
|
|
169
169
|
|
|
170
|
+
/**
|
|
171
|
+
* StreamBoardRequest opens the live Board Channel for a single board.
|
|
172
|
+
*
|
|
173
|
+
* @generated from message api.v1.StreamBoardRequest
|
|
174
|
+
*/
|
|
175
|
+
export declare type StreamBoardRequest = Message<"api.v1.StreamBoardRequest"> & {
|
|
176
|
+
/**
|
|
177
|
+
* @generated from field: uint32 board_id = 1;
|
|
178
|
+
*/
|
|
179
|
+
boardId: number;
|
|
180
|
+
};
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
* Describes the message api.v1.StreamBoardRequest.
|
|
184
|
+
* Use `create(StreamBoardRequestSchema)` to create a new message.
|
|
185
|
+
*/
|
|
186
|
+
export declare const StreamBoardRequestSchema: GenMessage<StreamBoardRequest>;
|
|
187
|
+
|
|
170
188
|
/**
|
|
171
189
|
* Response definitions
|
|
172
190
|
*
|
|
@@ -238,6 +256,200 @@ export declare type GetBoardResponse = Message<"api.v1.GetBoardResponse"> & {
|
|
|
238
256
|
*/
|
|
239
257
|
export declare const GetBoardResponseSchema: GenMessage<GetBoardResponse>;
|
|
240
258
|
|
|
259
|
+
/**
|
|
260
|
+
* --- Live Board Updates (ADR-0002) ---
|
|
261
|
+
*
|
|
262
|
+
* A Board Event is a single change broadcast on a board's Board Channel
|
|
263
|
+
* (board:{board_id}). The envelope is shared by every event shape; the
|
|
264
|
+
* oneof payload carries the specific change. The wire format is "fat" — it
|
|
265
|
+
* carries the full changed entity, not a bare refetch signal — so the client
|
|
266
|
+
* can patch its cache in place where possible.
|
|
267
|
+
*
|
|
268
|
+
* `seq` is a monotonic per-board sequence (a Redis INCR on the board key) used
|
|
269
|
+
* by the client for gap detection. `actor_user_id` is the user who caused the
|
|
270
|
+
* change; the originating client skips its own events to avoid fighting its
|
|
271
|
+
* optimistic update. actor_user_id == 0 is the reserved system / no-viewer
|
|
272
|
+
* sentinel (import, webhook) which never collides with a real user id, so
|
|
273
|
+
* clients always apply system-originated events.
|
|
274
|
+
*
|
|
275
|
+
* @generated from message api.v1.BoardEvent
|
|
276
|
+
*/
|
|
277
|
+
export declare type BoardEvent = Message<"api.v1.BoardEvent"> & {
|
|
278
|
+
/**
|
|
279
|
+
* @generated from field: uint64 seq = 1;
|
|
280
|
+
*/
|
|
281
|
+
seq: bigint;
|
|
282
|
+
|
|
283
|
+
/**
|
|
284
|
+
* @generated from field: uint32 board_id = 2;
|
|
285
|
+
*/
|
|
286
|
+
boardId: number;
|
|
287
|
+
|
|
288
|
+
/**
|
|
289
|
+
* @generated from field: uint32 actor_user_id = 3;
|
|
290
|
+
*/
|
|
291
|
+
actorUserId: number;
|
|
292
|
+
|
|
293
|
+
/**
|
|
294
|
+
* @generated from oneof api.v1.BoardEvent.payload
|
|
295
|
+
*/
|
|
296
|
+
payload: {
|
|
297
|
+
/**
|
|
298
|
+
* @generated from field: api.v1.TaskUpdated task_updated = 10;
|
|
299
|
+
*/
|
|
300
|
+
value: TaskUpdated;
|
|
301
|
+
case: "taskUpdated";
|
|
302
|
+
} | {
|
|
303
|
+
/**
|
|
304
|
+
* @generated from field: api.v1.TaskCreated task_created = 11;
|
|
305
|
+
*/
|
|
306
|
+
value: TaskCreated;
|
|
307
|
+
case: "taskCreated";
|
|
308
|
+
} | {
|
|
309
|
+
/**
|
|
310
|
+
* @generated from field: api.v1.TaskMoved task_moved = 12;
|
|
311
|
+
*/
|
|
312
|
+
value: TaskMoved;
|
|
313
|
+
case: "taskMoved";
|
|
314
|
+
} | {
|
|
315
|
+
/**
|
|
316
|
+
* @generated from field: api.v1.TaskDeleted task_deleted = 13;
|
|
317
|
+
*/
|
|
318
|
+
value: TaskDeleted;
|
|
319
|
+
case: "taskDeleted";
|
|
320
|
+
} | {
|
|
321
|
+
/**
|
|
322
|
+
* @generated from field: api.v1.BoardChanged board_changed = 14;
|
|
323
|
+
*/
|
|
324
|
+
value: BoardChanged;
|
|
325
|
+
case: "boardChanged";
|
|
326
|
+
} | { case: undefined; value?: undefined };
|
|
327
|
+
};
|
|
328
|
+
|
|
329
|
+
/**
|
|
330
|
+
* Describes the message api.v1.BoardEvent.
|
|
331
|
+
* Use `create(BoardEventSchema)` to create a new message.
|
|
332
|
+
*/
|
|
333
|
+
export declare const BoardEventSchema: GenMessage<BoardEvent>;
|
|
334
|
+
|
|
335
|
+
/**
|
|
336
|
+
* TaskUpdated is emitted when a Task field (title, description, assignee, ...)
|
|
337
|
+
* changes without a structural move. Carries the full updated Task so the
|
|
338
|
+
* client can patch the card in place.
|
|
339
|
+
*
|
|
340
|
+
* @generated from message api.v1.TaskUpdated
|
|
341
|
+
*/
|
|
342
|
+
export declare type TaskUpdated = Message<"api.v1.TaskUpdated"> & {
|
|
343
|
+
/**
|
|
344
|
+
* @generated from field: api.v1.Task task = 1;
|
|
345
|
+
*/
|
|
346
|
+
task?: Task;
|
|
347
|
+
};
|
|
348
|
+
|
|
349
|
+
/**
|
|
350
|
+
* Describes the message api.v1.TaskUpdated.
|
|
351
|
+
* Use `create(TaskUpdatedSchema)` to create a new message.
|
|
352
|
+
*/
|
|
353
|
+
export declare const TaskUpdatedSchema: GenMessage<TaskUpdated>;
|
|
354
|
+
|
|
355
|
+
/**
|
|
356
|
+
* TaskCreated is emitted when a Task is added to the board. The client
|
|
357
|
+
* invalidates the affected column query rather than inserting the carried Task
|
|
358
|
+
* directly, because the new card's fractional position may sit on a column
|
|
359
|
+
* page that is not currently loaded.
|
|
360
|
+
*
|
|
361
|
+
* @generated from message api.v1.TaskCreated
|
|
362
|
+
*/
|
|
363
|
+
export declare type TaskCreated = Message<"api.v1.TaskCreated"> & {
|
|
364
|
+
/**
|
|
365
|
+
* @generated from field: api.v1.Task task = 1;
|
|
366
|
+
*/
|
|
367
|
+
task?: Task;
|
|
368
|
+
};
|
|
369
|
+
|
|
370
|
+
/**
|
|
371
|
+
* Describes the message api.v1.TaskCreated.
|
|
372
|
+
* Use `create(TaskCreatedSchema)` to create a new message.
|
|
373
|
+
*/
|
|
374
|
+
export declare const TaskCreatedSchema: GenMessage<TaskCreated>;
|
|
375
|
+
|
|
376
|
+
/**
|
|
377
|
+
* TaskMoved is emitted when a Task's column or fractional display_order
|
|
378
|
+
* changes. The client invalidates both the source and destination column
|
|
379
|
+
* queries (the new position may be on an unloaded page).
|
|
380
|
+
*
|
|
381
|
+
* @generated from message api.v1.TaskMoved
|
|
382
|
+
*/
|
|
383
|
+
export declare type TaskMoved = Message<"api.v1.TaskMoved"> & {
|
|
384
|
+
/**
|
|
385
|
+
* @generated from field: api.v1.Task task = 1;
|
|
386
|
+
*/
|
|
387
|
+
task?: Task;
|
|
388
|
+
|
|
389
|
+
/**
|
|
390
|
+
* @generated from field: uint32 from_column_id = 2;
|
|
391
|
+
*/
|
|
392
|
+
fromColumnId: number;
|
|
393
|
+
|
|
394
|
+
/**
|
|
395
|
+
* @generated from field: uint32 to_column_id = 3;
|
|
396
|
+
*/
|
|
397
|
+
toColumnId: number;
|
|
398
|
+
};
|
|
399
|
+
|
|
400
|
+
/**
|
|
401
|
+
* Describes the message api.v1.TaskMoved.
|
|
402
|
+
* Use `create(TaskMovedSchema)` to create a new message.
|
|
403
|
+
*/
|
|
404
|
+
export declare const TaskMovedSchema: GenMessage<TaskMoved>;
|
|
405
|
+
|
|
406
|
+
/**
|
|
407
|
+
* TaskDeleted is emitted when a Task is removed from the board. The client
|
|
408
|
+
* patch-removes the card from the cache in place. board_column_id is a hint
|
|
409
|
+
* for the column the task last lived in.
|
|
410
|
+
*
|
|
411
|
+
* @generated from message api.v1.TaskDeleted
|
|
412
|
+
*/
|
|
413
|
+
export declare type TaskDeleted = Message<"api.v1.TaskDeleted"> & {
|
|
414
|
+
/**
|
|
415
|
+
* @generated from field: uint32 task_id = 1;
|
|
416
|
+
*/
|
|
417
|
+
taskId: number;
|
|
418
|
+
|
|
419
|
+
/**
|
|
420
|
+
* @generated from field: uint32 board_column_id = 2;
|
|
421
|
+
*/
|
|
422
|
+
boardColumnId: number;
|
|
423
|
+
};
|
|
424
|
+
|
|
425
|
+
/**
|
|
426
|
+
* Describes the message api.v1.TaskDeleted.
|
|
427
|
+
* Use `create(TaskDeletedSchema)` to create a new message.
|
|
428
|
+
*/
|
|
429
|
+
export declare const TaskDeletedSchema: GenMessage<TaskDeleted>;
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* BoardChanged is a single coarse event emitted by bulk / import / sync paths
|
|
433
|
+
* instead of one granular event per Task — a 500-task import is one event, not
|
|
434
|
+
* a 500-event storm. The client invalidates each listed column once. Bulk
|
|
435
|
+
* paths set actor_user_id to the system sentinel (0) so the event is always
|
|
436
|
+
* applied (a coarse refetch is idempotent and has no optimistic state to fight).
|
|
437
|
+
*
|
|
438
|
+
* @generated from message api.v1.BoardChanged
|
|
439
|
+
*/
|
|
440
|
+
export declare type BoardChanged = Message<"api.v1.BoardChanged"> & {
|
|
441
|
+
/**
|
|
442
|
+
* @generated from field: repeated uint32 affected_column_ids = 1;
|
|
443
|
+
*/
|
|
444
|
+
affectedColumnIds: number[];
|
|
445
|
+
};
|
|
446
|
+
|
|
447
|
+
/**
|
|
448
|
+
* Describes the message api.v1.BoardChanged.
|
|
449
|
+
* Use `create(BoardChangedSchema)` to create a new message.
|
|
450
|
+
*/
|
|
451
|
+
export declare const BoardChangedSchema: GenMessage<BoardChanged>;
|
|
452
|
+
|
|
241
453
|
/**
|
|
242
454
|
* Service definition
|
|
243
455
|
*
|
|
@@ -292,5 +504,17 @@ export declare const BoardService: GenService<{
|
|
|
292
504
|
input: typeof DeleteBoardRequestSchema;
|
|
293
505
|
output: typeof EmptySchema;
|
|
294
506
|
},
|
|
507
|
+
/**
|
|
508
|
+
* StreamBoard streams live Board Events to a single board's viewers. Mirrors
|
|
509
|
+
* StreamNotifications: a Connect server stream backed by Redis Pub/Sub,
|
|
510
|
+
* torn down on client disconnect (ctx cancellation).
|
|
511
|
+
*
|
|
512
|
+
* @generated from rpc api.v1.BoardService.StreamBoard
|
|
513
|
+
*/
|
|
514
|
+
streamBoard: {
|
|
515
|
+
methodKind: "server_streaming";
|
|
516
|
+
input: typeof StreamBoardRequestSchema;
|
|
517
|
+
output: typeof BoardEventSchema;
|
|
518
|
+
},
|
|
295
519
|
}>;
|
|
296
520
|
|
package/gen/api/v1/board_pb.js
CHANGED
|
@@ -14,7 +14,7 @@ import { file_api_v1_models } from "./models_pb";
|
|
|
14
14
|
* Describes the file api/v1/board.proto.
|
|
15
15
|
*/
|
|
16
16
|
export const file_api_v1_board = /*@__PURE__*/
|
|
17
|
-
fileDesc("ChJhcGkvdjEvYm9hcmQucHJvdG8SBmFwaS52MSKZAQoPQWRkQm9hcmRSZXF1ZXN0EhUKBG5hbWUYASABKAlCB/pCBHICEGQSGAoLZGVzY3JpcHRpb24YAiABKAlIAIgBARIeCg1kaXNwbGF5X29yZGVyGAMgASgFQgf6QgQaAigAEhEKCWlzX2FjdGl2ZRgEIAEoCBISCgpwcm9qZWN0X2lkGAUgASgNQg4KDF9kZXNjcmlwdGlvbiKvAQoQRWRpdEJvYXJkUmVxdWVzdBITCgJpZBgBIAEoDUIH+kIEKgIoARIVCgRuYW1lGAIgASgJQgf6QgRyAhBkEhgKC2Rlc2NyaXB0aW9uGAMgASgJSACIAQESHgoNZGlzcGxheV9vcmRlchgEIAEoBUIH+kIEGgIoABIRCglpc19hY3RpdmUYBSABKAgSEgoKcHJvamVjdF9pZBgGIAEoDUIOCgxfZGVzY3JpcHRpb24iHQoPR2V0Qm9hcmRSZXF1ZXN0EgoKAmlkGAEgASgNIi8KFUdldEJvYXJkQnlVVUlEUmVxdWVzdBIWCgR1dWlkGAEgASgJQgj6QgVyA7ABASKQAQoQR2V0Qm9hcmRzUmVxdWVzdBIbCgpwcm9qZWN0X2lkGAEgASgNQgf6QgQqAigBEjAKCnBhZ2luYXRpb24YAiABKAsyEi5hcGkudjEuUGFnaW5hdGlvbkII+
|
|
17
|
+
fileDesc("ChJhcGkvdjEvYm9hcmQucHJvdG8SBmFwaS52MSKZAQoPQWRkQm9hcmRSZXF1ZXN0EhUKBG5hbWUYASABKAlCB/pCBHICEGQSGAoLZGVzY3JpcHRpb24YAiABKAlIAIgBARIeCg1kaXNwbGF5X29yZGVyGAMgASgFQgf6QgQaAigAEhEKCWlzX2FjdGl2ZRgEIAEoCBISCgpwcm9qZWN0X2lkGAUgASgNQg4KDF9kZXNjcmlwdGlvbiKvAQoQRWRpdEJvYXJkUmVxdWVzdBITCgJpZBgBIAEoDUIH+kIEKgIoARIVCgRuYW1lGAIgASgJQgf6QgRyAhBkEhgKC2Rlc2NyaXB0aW9uGAMgASgJSACIAQESHgoNZGlzcGxheV9vcmRlchgEIAEoBUIH+kIEGgIoABIRCglpc19hY3RpdmUYBSABKAgSEgoKcHJvamVjdF9pZBgGIAEoDUIOCgxfZGVzY3JpcHRpb24iHQoPR2V0Qm9hcmRSZXF1ZXN0EgoKAmlkGAEgASgNIi8KFUdldEJvYXJkQnlVVUlEUmVxdWVzdBIWCgR1dWlkGAEgASgJQgj6QgVyA7ABASKQAQoQR2V0Qm9hcmRzUmVxdWVzdBIbCgpwcm9qZWN0X2lkGAEgASgNQgf6QgQqAigBEjAKCnBhZ2luYXRpb24YAiABKAsyEi5hcGkudjEuUGFnaW5hdGlvbkII+kIFigECEAESLQoOZmlsdGVyX29wdGlvbnMYAyABKAsyFS5hcGkudjEuRmlsdGVyT3B0aW9ucyIgChJEZWxldGVCb2FyZFJlcXVlc3QSCgoCaWQYASABKA0iLwoSU3RyZWFtQm9hcmRSZXF1ZXN0EhkKCGJvYXJkX2lkGAEgASgNQgf6QgQqAigBIloKEUdldEJvYXJkc1Jlc3BvbnNlEh0KBmJvYXJkcxgBIAMoCzINLmFwaS52MS5Cb2FyZBImCgpwYWdpbmF0aW9uGAIgASgLMhIuYXBpLnYxLlBhZ2luYXRpb24iMAoQQWRkQm9hcmRSZXNwb25zZRIcCgVib2FyZBgBIAEoCzINLmFwaS52MS5Cb2FyZCIxChFFZGl0Qm9hcmRSZXNwb25zZRIcCgVib2FyZBgBIAEoCzINLmFwaS52MS5Cb2FyZCIwChBHZXRCb2FyZFJlc3BvbnNlEhwKBWJvYXJkGAEgASgLMg0uYXBpLnYxLkJvYXJkIqwCCgpCb2FyZEV2ZW50EgsKA3NlcRgBIAEoBBIQCghib2FyZF9pZBgCIAEoDRIVCg1hY3Rvcl91c2VyX2lkGAMgASgNEisKDHRhc2tfdXBkYXRlZBgKIAEoCzITLmFwaS52MS5UYXNrVXBkYXRlZEgAEisKDHRhc2tfY3JlYXRlZBgLIAEoCzITLmFwaS52MS5UYXNrQ3JlYXRlZEgAEicKCnRhc2tfbW92ZWQYDCABKAsyES5hcGkudjEuVGFza01vdmVkSAASKwoMdGFza19kZWxldGVkGA0gASgLMhMuYXBpLnYxLlRhc2tEZWxldGVkSAASLQoNYm9hcmRfY2hhbmdlZBgOIAEoCzIULmFwaS52MS5Cb2FyZENoYW5nZWRIAEIJCgdwYXlsb2FkIikKC1Rhc2tVcGRhdGVkEhoKBHRhc2sYASABKAsyDC5hcGkudjEuVGFzayIpCgtUYXNrQ3JlYXRlZBIaCgR0YXNrGAEgASgLMgwuYXBpLnYxLlRhc2siVQoJVGFza01vdmVkEhoKBHRhc2sYASABKAsyDC5hcGkudjEuVGFzaxIWCg5mcm9tX2NvbHVtbl9pZBgCIAEoDRIUCgx0b19jb2x1bW5faWQYAyABKA0iNwoLVGFza0RlbGV0ZWQSDwoHdGFza19pZBgBIAEoDRIXCg9ib2FyZF9jb2x1bW5faWQYAiABKA0iKwoMQm9hcmRDaGFuZ2VkEhsKE2FmZmVjdGVkX2NvbHVtbl9pZHMYASADKA0ykAUKDEJvYXJkU2VydmljZRJYCghBZGRCb2FyZBIXLmFwaS52MS5BZGRCb2FyZFJlcXVlc3QaGC5hcGkudjEuQWRkQm9hcmRSZXNwb25zZSIZgtPkkwITOgEqIg4vYXBpL3YxL2JvYXJkcxJgCglFZGl0Qm9hcmQSGC5hcGkudjEuRWRpdEJvYXJkUmVxdWVzdBoZLmFwaS52MS5FZGl0Qm9hcmRSZXNwb25zZSIegtPkkwIYOgEqGhMvYXBpL3YxL2JvYXJkcy97aWR9EloKCEdldEJvYXJkEhcuYXBpLnYxLkdldEJvYXJkUmVxdWVzdBoYLmFwaS52MS5HZXRCb2FyZFJlc3BvbnNlIhuC0+STAhUSEy9hcGkvdjEvYm9hcmRzL3tpZH0SbQoOR2V0Qm9hcmRCeVVVSUQSHS5hcGkudjEuR2V0Qm9hcmRCeVVVSURSZXF1ZXN0GhguYXBpLnYxLkdldEJvYXJkUmVzcG9uc2UiIoLT5JMCHBIaL2FwaS92MS9ib2FyZHMvdXVpZC97dXVpZH0SWAoJR2V0Qm9hcmRzEhguYXBpLnYxLkdldEJvYXJkc1JlcXVlc3QaGS5hcGkudjEuR2V0Qm9hcmRzUmVzcG9uc2UiFoLT5JMCEBIOL2FwaS92MS9ib2FyZHMSXgoLRGVsZXRlQm9hcmQSGi5hcGkudjEuRGVsZXRlQm9hcmRSZXF1ZXN0GhYuZ29vZ2xlLnByb3RvYnVmLkVtcHR5IhuC0+STAhUqEy9hcGkvdjEvYm9hcmRzL3tpZH0SPwoLU3RyZWFtQm9hcmQSGi5hcGkudjEuU3RyZWFtQm9hcmRSZXF1ZXN0GhIuYXBpLnYxLkJvYXJkRXZlbnQwAUJvCgpjb20uYXBpLnYxQgpCb2FyZFByb3RvUAFaHG9wc2VlL2JhY2tlbmQvZ2VuL2FwaS92MTtnZW6iAgNBWFiqAgZBcGkuVjHKAgZBcGlcVjHiAhJBcGlcVjFcR1BCTWV0YWRhdGHqAgdBcGk6OlYxYgZwcm90bzM", [file_google_protobuf_empty, file_google_api_annotations, file_validate_validate, file_api_v1_pagination, file_api_v1_filter, file_api_v1_models]);
|
|
18
18
|
|
|
19
19
|
/**
|
|
20
20
|
* Describes the message api.v1.AddBoardRequest.
|
|
@@ -58,33 +58,82 @@ export const GetBoardsRequestSchema = /*@__PURE__*/
|
|
|
58
58
|
export const DeleteBoardRequestSchema = /*@__PURE__*/
|
|
59
59
|
messageDesc(file_api_v1_board, 5);
|
|
60
60
|
|
|
61
|
+
/**
|
|
62
|
+
* Describes the message api.v1.StreamBoardRequest.
|
|
63
|
+
* Use `create(StreamBoardRequestSchema)` to create a new message.
|
|
64
|
+
*/
|
|
65
|
+
export const StreamBoardRequestSchema = /*@__PURE__*/
|
|
66
|
+
messageDesc(file_api_v1_board, 6);
|
|
67
|
+
|
|
61
68
|
/**
|
|
62
69
|
* Describes the message api.v1.GetBoardsResponse.
|
|
63
70
|
* Use `create(GetBoardsResponseSchema)` to create a new message.
|
|
64
71
|
*/
|
|
65
72
|
export const GetBoardsResponseSchema = /*@__PURE__*/
|
|
66
|
-
messageDesc(file_api_v1_board,
|
|
73
|
+
messageDesc(file_api_v1_board, 7);
|
|
67
74
|
|
|
68
75
|
/**
|
|
69
76
|
* Describes the message api.v1.AddBoardResponse.
|
|
70
77
|
* Use `create(AddBoardResponseSchema)` to create a new message.
|
|
71
78
|
*/
|
|
72
79
|
export const AddBoardResponseSchema = /*@__PURE__*/
|
|
73
|
-
messageDesc(file_api_v1_board,
|
|
80
|
+
messageDesc(file_api_v1_board, 8);
|
|
74
81
|
|
|
75
82
|
/**
|
|
76
83
|
* Describes the message api.v1.EditBoardResponse.
|
|
77
84
|
* Use `create(EditBoardResponseSchema)` to create a new message.
|
|
78
85
|
*/
|
|
79
86
|
export const EditBoardResponseSchema = /*@__PURE__*/
|
|
80
|
-
messageDesc(file_api_v1_board,
|
|
87
|
+
messageDesc(file_api_v1_board, 9);
|
|
81
88
|
|
|
82
89
|
/**
|
|
83
90
|
* Describes the message api.v1.GetBoardResponse.
|
|
84
91
|
* Use `create(GetBoardResponseSchema)` to create a new message.
|
|
85
92
|
*/
|
|
86
93
|
export const GetBoardResponseSchema = /*@__PURE__*/
|
|
87
|
-
messageDesc(file_api_v1_board,
|
|
94
|
+
messageDesc(file_api_v1_board, 10);
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* Describes the message api.v1.BoardEvent.
|
|
98
|
+
* Use `create(BoardEventSchema)` to create a new message.
|
|
99
|
+
*/
|
|
100
|
+
export const BoardEventSchema = /*@__PURE__*/
|
|
101
|
+
messageDesc(file_api_v1_board, 11);
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* Describes the message api.v1.TaskUpdated.
|
|
105
|
+
* Use `create(TaskUpdatedSchema)` to create a new message.
|
|
106
|
+
*/
|
|
107
|
+
export const TaskUpdatedSchema = /*@__PURE__*/
|
|
108
|
+
messageDesc(file_api_v1_board, 12);
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Describes the message api.v1.TaskCreated.
|
|
112
|
+
* Use `create(TaskCreatedSchema)` to create a new message.
|
|
113
|
+
*/
|
|
114
|
+
export const TaskCreatedSchema = /*@__PURE__*/
|
|
115
|
+
messageDesc(file_api_v1_board, 13);
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Describes the message api.v1.TaskMoved.
|
|
119
|
+
* Use `create(TaskMovedSchema)` to create a new message.
|
|
120
|
+
*/
|
|
121
|
+
export const TaskMovedSchema = /*@__PURE__*/
|
|
122
|
+
messageDesc(file_api_v1_board, 14);
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* Describes the message api.v1.TaskDeleted.
|
|
126
|
+
* Use `create(TaskDeletedSchema)` to create a new message.
|
|
127
|
+
*/
|
|
128
|
+
export const TaskDeletedSchema = /*@__PURE__*/
|
|
129
|
+
messageDesc(file_api_v1_board, 15);
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* Describes the message api.v1.BoardChanged.
|
|
133
|
+
* Use `create(BoardChangedSchema)` to create a new message.
|
|
134
|
+
*/
|
|
135
|
+
export const BoardChangedSchema = /*@__PURE__*/
|
|
136
|
+
messageDesc(file_api_v1_board, 16);
|
|
88
137
|
|
|
89
138
|
/**
|
|
90
139
|
* Service definition
|
|
@@ -44,6 +44,11 @@ export declare type AddCommentRequest = Message<"api.v1.AddCommentRequest"> & {
|
|
|
44
44
|
* @generated from field: uint32 user_id = 5;
|
|
45
45
|
*/
|
|
46
46
|
userId: number;
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* @generated from field: optional uint32 initiative_id = 6;
|
|
50
|
+
*/
|
|
51
|
+
initiativeId?: number;
|
|
47
52
|
};
|
|
48
53
|
|
|
49
54
|
/**
|
|
@@ -85,6 +90,11 @@ export declare type EditCommentRequest = Message<"api.v1.EditCommentRequest"> &
|
|
|
85
90
|
* @generated from field: uint32 user_id = 6;
|
|
86
91
|
*/
|
|
87
92
|
userId: number;
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* @generated from field: optional uint32 initiative_id = 7;
|
|
96
|
+
*/
|
|
97
|
+
initiativeId?: number;
|
|
88
98
|
};
|
|
89
99
|
|
|
90
100
|
/**
|
|
@@ -132,6 +142,11 @@ export declare type GetCommentsRequest = Message<"api.v1.GetCommentsRequest"> &
|
|
|
132
142
|
* @generated from field: optional uint32 doc_page_id = 4;
|
|
133
143
|
*/
|
|
134
144
|
docPageId?: number;
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* @generated from field: optional uint32 initiative_id = 5;
|
|
148
|
+
*/
|
|
149
|
+
initiativeId?: number;
|
|
135
150
|
};
|
|
136
151
|
|
|
137
152
|
/**
|
package/gen/api/v1/comment_pb.js
CHANGED
|
@@ -14,7 +14,7 @@ import { file_api_v1_models } from "./models_pb";
|
|
|
14
14
|
* Describes the file api/v1/comment.proto.
|
|
15
15
|
*/
|
|
16
16
|
export const file_api_v1_comment = /*@__PURE__*/
|
|
17
|
-
fileDesc("
|
|
17
|
+
fileDesc("ChRhcGkvdjEvY29tbWVudC5wcm90bxIGYXBpLnYxIs0BChFBZGRDb21tZW50UmVxdWVzdBIYCgdjb250ZW50GAEgASgJQgf6QgRyAhABEhMKC2lzX2ludGVybmFsGAIgASgIEhQKB3Rhc2tfaWQYAyABKA1IAIgBARIYCgtkb2NfcGFnZV9pZBgEIAEoDUgBiAEBEg8KB3VzZXJfaWQYBSABKA0SGgoNaW5pdGlhdGl2ZV9pZBgGIAEoDUgCiAEBQgoKCF90YXNrX2lkQg4KDF9kb2NfcGFnZV9pZEIQCg5faW5pdGlhdGl2ZV9pZCLjAQoSRWRpdENvbW1lbnRSZXF1ZXN0EhMKAmlkGAEgASgNQgf6QgQqAigBEhgKB2NvbnRlbnQYAiABKAlCB/pCBHICEAESEwoLaXNfaW50ZXJuYWwYAyABKAgSFAoHdGFza19pZBgEIAEoDUgAiAEBEhgKC2RvY19wYWdlX2lkGAUgASgNSAGIAQESDwoHdXNlcl9pZBgGIAEoDRIaCg1pbml0aWF0aXZlX2lkGAcgASgNSAKIAQFCCgoIX3Rhc2tfaWRCDgoMX2RvY19wYWdlX2lkQhAKDl9pbml0aWF0aXZlX2lkIh8KEUdldENvbW1lbnRSZXF1ZXN0EgoKAmlkGAEgASgNIu8BChJHZXRDb21tZW50c1JlcXVlc3QSMAoKcGFnaW5hdGlvbhgBIAEoCzISLmFwaS52MS5QYWdpbmF0aW9uQgj6QgWKAQIQARItCg5maWx0ZXJfb3B0aW9ucxgCIAEoCzIVLmFwaS52MS5GaWx0ZXJPcHRpb25zEhQKB3Rhc2tfaWQYAyABKA1IAIgBARIYCgtkb2NfcGFnZV9pZBgEIAEoDUgBiAEBEhoKDWluaXRpYXRpdmVfaWQYBSABKA1IAogBAUIKCghfdGFza19pZEIOCgxfZG9jX3BhZ2VfaWRCEAoOX2luaXRpYXRpdmVfaWQiIgoURGVsZXRlQ29tbWVudFJlcXVlc3QSCgoCaWQYASABKA0iYAoTR2V0Q29tbWVudHNSZXNwb25zZRIhCghjb21tZW50cxgBIAMoCzIPLmFwaS52MS5Db21tZW50EiYKCnBhZ2luYXRpb24YAiABKAsyEi5hcGkudjEuUGFnaW5hdGlvbiI2ChJBZGRDb21tZW50UmVzcG9uc2USIAoHY29tbWVudBgBIAEoCzIPLmFwaS52MS5Db21tZW50IjcKE0VkaXRDb21tZW50UmVzcG9uc2USIAoHY29tbWVudBgBIAEoCzIPLmFwaS52MS5Db21tZW50IjYKEkdldENvbW1lbnRSZXNwb25zZRIgCgdjb21tZW50GAEgASgLMg8uYXBpLnYxLkNvbW1lbnQyiAQKDkNvbW1lbnRTZXJ2aWNlEmAKCkFkZENvbW1lbnQSGS5hcGkudjEuQWRkQ29tbWVudFJlcXVlc3QaGi5hcGkudjEuQWRkQ29tbWVudFJlc3BvbnNlIhuC0+STAhU6ASoiEC9hcGkvdjEvY29tbWVudHMSaAoLRWRpdENvbW1lbnQSGi5hcGkudjEuRWRpdENvbW1lbnRSZXF1ZXN0GhsuYXBpLnYxLkVkaXRDb21tZW50UmVzcG9uc2UiIILT5JMCGjoBKhoVL2FwaS92MS9jb21tZW50cy97aWR9EmIKCkdldENvbW1lbnQSGS5hcGkudjEuR2V0Q29tbWVudFJlcXVlc3QaGi5hcGkudjEuR2V0Q29tbWVudFJlc3BvbnNlIh2C0+STAhcSFS9hcGkvdjEvY29tbWVudHMve2lkfRJgCgtHZXRDb21tZW50cxIaLmFwaS52MS5HZXRDb21tZW50c1JlcXVlc3QaGy5hcGkudjEuR2V0Q29tbWVudHNSZXNwb25zZSIYgtPkkwISEhAvYXBpL3YxL2NvbW1lbnRzEmQKDURlbGV0ZUNvbW1lbnQSHC5hcGkudjEuRGVsZXRlQ29tbWVudFJlcXVlc3QaFi5nb29nbGUucHJvdG9idWYuRW1wdHkiHYLT5JMCFyoVL2FwaS92MS9jb21tZW50cy97aWR9QnEKCmNvbS5hcGkudjFCDENvbW1lbnRQcm90b1ABWhxvcHNlZS9iYWNrZW5kL2dlbi9hcGkvdjE7Z2VuogIDQVhYqgIGQXBpLlYxygIGQXBpXFYx4gISQXBpXFYxXEdQQk1ldGFkYXRh6gIHQXBpOjpWMWIGcHJvdG8z", [file_google_protobuf_empty, file_google_api_annotations, file_validate_validate, file_api_v1_pagination, file_api_v1_filter, file_api_v1_models]);
|
|
18
18
|
|
|
19
19
|
/**
|
|
20
20
|
* Describes the message api.v1.AddCommentRequest.
|