@vendasta/developer-training 0.6.1 → 0.7.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.
Files changed (37) hide show
  1. package/esm2020/lib/_internal/a-hundal-to-do-project.api.service.mjs +61 -0
  2. package/esm2020/lib/_internal/hdo-todo.api.service.mjs +60 -0
  3. package/esm2020/lib/_internal/index.mjs +5 -1
  4. package/esm2020/lib/_internal/interfaces/annotations.interface.mjs +8 -0
  5. package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
  6. package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
  7. package/esm2020/lib/_internal/interfaces/lfossenier-todo.interface.mjs +8 -0
  8. package/esm2020/lib/_internal/interfaces/tkabakovtodo.interface.mjs +8 -0
  9. package/esm2020/lib/_internal/l-fossenier-todo.api.service.mjs +53 -0
  10. package/esm2020/lib/_internal/m-mugot-list-qa.api.service.mjs +4 -4
  11. package/esm2020/lib/_internal/objects/annotations.mjs +24 -0
  12. package/esm2020/lib/_internal/objects/api.mjs +505 -5
  13. package/esm2020/lib/_internal/objects/index.mjs +5 -2
  14. package/esm2020/lib/_internal/objects/lfossenier-todo.mjs +139 -0
  15. package/esm2020/lib/_internal/objects/tkabakovtodo.mjs +268 -0
  16. package/esm2020/lib/_internal/t-kabakov-to-do.api.service.mjs +61 -0
  17. package/fesm2015/vendasta-developer-training.mjs +1121 -7
  18. package/fesm2015/vendasta-developer-training.mjs.map +1 -1
  19. package/fesm2020/vendasta-developer-training.mjs +1121 -7
  20. package/fesm2020/vendasta-developer-training.mjs.map +1 -1
  21. package/lib/_internal/a-hundal-to-do-project.api.service.d.ts +20 -0
  22. package/lib/_internal/hdo-todo.api.service.d.ts +20 -0
  23. package/lib/_internal/index.d.ts +4 -0
  24. package/lib/_internal/interfaces/annotations.interface.d.ts +4 -0
  25. package/lib/_internal/interfaces/api.interface.d.ts +78 -2
  26. package/lib/_internal/interfaces/index.d.ts +4 -1
  27. package/lib/_internal/interfaces/lfossenier-todo.interface.d.ts +23 -0
  28. package/lib/_internal/interfaces/tkabakovtodo.interface.d.ts +40 -0
  29. package/lib/_internal/l-fossenier-todo.api.service.d.ts +19 -0
  30. package/lib/_internal/m-mugot-list-qa.api.service.d.ts +3 -3
  31. package/lib/_internal/objects/annotations.d.ts +8 -0
  32. package/lib/_internal/objects/api.d.ts +148 -6
  33. package/lib/_internal/objects/index.d.ts +4 -1
  34. package/lib/_internal/objects/lfossenier-todo.d.ts +42 -0
  35. package/lib/_internal/objects/tkabakovtodo.d.ts +77 -0
  36. package/lib/_internal/t-kabakov-to-do.api.service.d.ts +20 -0
  37. package/package.json +1 -1
@@ -127,6 +127,891 @@ class ReplaceBusinessQuestionsAnswersRequest {
127
127
  }
128
128
  }
129
129
 
130
+ class TKabakovAddToDoItemRequest {
131
+ static fromProto(proto) {
132
+ let m = new TKabakovAddToDoItemRequest();
133
+ m = Object.assign(m, proto);
134
+ return m;
135
+ }
136
+ constructor(kwargs) {
137
+ if (!kwargs) {
138
+ return;
139
+ }
140
+ Object.assign(this, kwargs);
141
+ }
142
+ toApiJson() {
143
+ const toReturn = {};
144
+ if (typeof this.title !== 'undefined') {
145
+ toReturn['title'] = this.title;
146
+ }
147
+ if (typeof this.description !== 'undefined') {
148
+ toReturn['description'] = this.description;
149
+ }
150
+ return toReturn;
151
+ }
152
+ }
153
+ class TKabakovAddToDoItemResponse {
154
+ static fromProto(proto) {
155
+ let m = new TKabakovAddToDoItemResponse();
156
+ m = Object.assign(m, proto);
157
+ if (proto.todoItem) {
158
+ m.todoItem = TKabakovToDoItem.fromProto(proto.todoItem);
159
+ }
160
+ return m;
161
+ }
162
+ constructor(kwargs) {
163
+ if (!kwargs) {
164
+ return;
165
+ }
166
+ Object.assign(this, kwargs);
167
+ }
168
+ toApiJson() {
169
+ const toReturn = {};
170
+ if (typeof this.todoItem !== 'undefined' && this.todoItem !== null) {
171
+ toReturn['todoItem'] = 'toApiJson' in this.todoItem ? this.todoItem.toApiJson() : this.todoItem;
172
+ }
173
+ return toReturn;
174
+ }
175
+ }
176
+ class TKabakovDeleteToDoItemRequest {
177
+ static fromProto(proto) {
178
+ let m = new TKabakovDeleteToDoItemRequest();
179
+ m = Object.assign(m, proto);
180
+ return m;
181
+ }
182
+ constructor(kwargs) {
183
+ if (!kwargs) {
184
+ return;
185
+ }
186
+ Object.assign(this, kwargs);
187
+ }
188
+ toApiJson() {
189
+ const toReturn = {};
190
+ if (typeof this.todoId !== 'undefined') {
191
+ toReturn['todoId'] = this.todoId;
192
+ }
193
+ return toReturn;
194
+ }
195
+ }
196
+ class TKabakovDeleteToDoItemResponse {
197
+ static fromProto(proto) {
198
+ let m = new TKabakovDeleteToDoItemResponse();
199
+ m = Object.assign(m, proto);
200
+ return m;
201
+ }
202
+ constructor(kwargs) {
203
+ if (!kwargs) {
204
+ return;
205
+ }
206
+ Object.assign(this, kwargs);
207
+ }
208
+ toApiJson() {
209
+ const toReturn = {};
210
+ if (typeof this.todoId !== 'undefined') {
211
+ toReturn['todoId'] = this.todoId;
212
+ }
213
+ return toReturn;
214
+ }
215
+ }
216
+ class TKabakovGetToDoItemRequest {
217
+ static fromProto(proto) {
218
+ let m = new TKabakovGetToDoItemRequest();
219
+ m = Object.assign(m, proto);
220
+ return m;
221
+ }
222
+ constructor(kwargs) {
223
+ if (!kwargs) {
224
+ return;
225
+ }
226
+ Object.assign(this, kwargs);
227
+ }
228
+ toApiJson() {
229
+ const toReturn = {};
230
+ if (typeof this.todoId !== 'undefined') {
231
+ toReturn['todoId'] = this.todoId;
232
+ }
233
+ return toReturn;
234
+ }
235
+ }
236
+ class TKabakovGetToDoItemResponse {
237
+ static fromProto(proto) {
238
+ let m = new TKabakovGetToDoItemResponse();
239
+ m = Object.assign(m, proto);
240
+ if (proto.todoItem) {
241
+ m.todoItem = TKabakovToDoItem.fromProto(proto.todoItem);
242
+ }
243
+ return m;
244
+ }
245
+ constructor(kwargs) {
246
+ if (!kwargs) {
247
+ return;
248
+ }
249
+ Object.assign(this, kwargs);
250
+ }
251
+ toApiJson() {
252
+ const toReturn = {};
253
+ if (typeof this.todoItem !== 'undefined' && this.todoItem !== null) {
254
+ toReturn['todoItem'] = 'toApiJson' in this.todoItem ? this.todoItem.toApiJson() : this.todoItem;
255
+ }
256
+ return toReturn;
257
+ }
258
+ }
259
+ class TKabakovListToDoItemsRequest {
260
+ static fromProto(proto) {
261
+ let m = new TKabakovListToDoItemsRequest();
262
+ m = Object.assign(m, proto);
263
+ return m;
264
+ }
265
+ constructor(kwargs) {
266
+ if (!kwargs) {
267
+ return;
268
+ }
269
+ Object.assign(this, kwargs);
270
+ }
271
+ toApiJson() {
272
+ const toReturn = {};
273
+ return toReturn;
274
+ }
275
+ }
276
+ class TKabakovListToDoItemsResponse {
277
+ static fromProto(proto) {
278
+ let m = new TKabakovListToDoItemsResponse();
279
+ m = Object.assign(m, proto);
280
+ if (proto.todoItems) {
281
+ m.todoItems = proto.todoItems.map(TKabakovToDoItem.fromProto);
282
+ }
283
+ return m;
284
+ }
285
+ constructor(kwargs) {
286
+ if (!kwargs) {
287
+ return;
288
+ }
289
+ Object.assign(this, kwargs);
290
+ }
291
+ toApiJson() {
292
+ const toReturn = {};
293
+ if (typeof this.todoItems !== 'undefined' && this.todoItems !== null) {
294
+ toReturn['todoItems'] = 'toApiJson' in this.todoItems ? this.todoItems.toApiJson() : this.todoItems;
295
+ }
296
+ return toReturn;
297
+ }
298
+ }
299
+ class TKabakovToDoId {
300
+ static fromProto(proto) {
301
+ let m = new TKabakovToDoId();
302
+ m = Object.assign(m, proto);
303
+ return m;
304
+ }
305
+ constructor(kwargs) {
306
+ if (!kwargs) {
307
+ return;
308
+ }
309
+ Object.assign(this, kwargs);
310
+ }
311
+ toApiJson() {
312
+ const toReturn = {};
313
+ if (typeof this.todoId !== 'undefined') {
314
+ toReturn['todoId'] = this.todoId;
315
+ }
316
+ return toReturn;
317
+ }
318
+ }
319
+ class TKabakovToDoItem {
320
+ static fromProto(proto) {
321
+ let m = new TKabakovToDoItem();
322
+ m = Object.assign(m, proto);
323
+ return m;
324
+ }
325
+ constructor(kwargs) {
326
+ if (!kwargs) {
327
+ return;
328
+ }
329
+ Object.assign(this, kwargs);
330
+ }
331
+ toApiJson() {
332
+ const toReturn = {};
333
+ if (typeof this.todoId !== 'undefined') {
334
+ toReturn['todoId'] = this.todoId;
335
+ }
336
+ if (typeof this.title !== 'undefined') {
337
+ toReturn['title'] = this.title;
338
+ }
339
+ if (typeof this.description !== 'undefined') {
340
+ toReturn['description'] = this.description;
341
+ }
342
+ if (typeof this.isDone !== 'undefined') {
343
+ toReturn['isDone'] = this.isDone;
344
+ }
345
+ if (typeof this.deleted !== 'undefined') {
346
+ toReturn['deleted'] = this.deleted;
347
+ }
348
+ return toReturn;
349
+ }
350
+ }
351
+ class TKabakovUpdateToDoItemRequest {
352
+ static fromProto(proto) {
353
+ let m = new TKabakovUpdateToDoItemRequest();
354
+ m = Object.assign(m, proto);
355
+ if (proto.todoItem) {
356
+ m.todoItem = TKabakovToDoItem.fromProto(proto.todoItem);
357
+ }
358
+ return m;
359
+ }
360
+ constructor(kwargs) {
361
+ if (!kwargs) {
362
+ return;
363
+ }
364
+ Object.assign(this, kwargs);
365
+ }
366
+ toApiJson() {
367
+ const toReturn = {};
368
+ if (typeof this.todoItem !== 'undefined' && this.todoItem !== null) {
369
+ toReturn['todoItem'] = 'toApiJson' in this.todoItem ? this.todoItem.toApiJson() : this.todoItem;
370
+ }
371
+ return toReturn;
372
+ }
373
+ }
374
+ class TKabakovUpdateToDoItemResponse {
375
+ static fromProto(proto) {
376
+ let m = new TKabakovUpdateToDoItemResponse();
377
+ m = Object.assign(m, proto);
378
+ if (proto.todoItem) {
379
+ m.todoItem = TKabakovToDoItem.fromProto(proto.todoItem);
380
+ }
381
+ return m;
382
+ }
383
+ constructor(kwargs) {
384
+ if (!kwargs) {
385
+ return;
386
+ }
387
+ Object.assign(this, kwargs);
388
+ }
389
+ toApiJson() {
390
+ const toReturn = {};
391
+ if (typeof this.todoItem !== 'undefined' && this.todoItem !== null) {
392
+ toReturn['todoItem'] = 'toApiJson' in this.todoItem ? this.todoItem.toApiJson() : this.todoItem;
393
+ }
394
+ return toReturn;
395
+ }
396
+ }
397
+
398
+ class CreateLFossenierTaskRequest {
399
+ static fromProto(proto) {
400
+ let m = new CreateLFossenierTaskRequest();
401
+ m = Object.assign(m, proto);
402
+ return m;
403
+ }
404
+ constructor(kwargs) {
405
+ if (!kwargs) {
406
+ return;
407
+ }
408
+ Object.assign(this, kwargs);
409
+ }
410
+ toApiJson() {
411
+ const toReturn = {};
412
+ if (typeof this.taskName !== 'undefined') {
413
+ toReturn['taskName'] = this.taskName;
414
+ }
415
+ return toReturn;
416
+ }
417
+ }
418
+ class DeleteLFossenierTaskRequest {
419
+ static fromProto(proto) {
420
+ let m = new DeleteLFossenierTaskRequest();
421
+ m = Object.assign(m, proto);
422
+ return m;
423
+ }
424
+ constructor(kwargs) {
425
+ if (!kwargs) {
426
+ return;
427
+ }
428
+ Object.assign(this, kwargs);
429
+ }
430
+ toApiJson() {
431
+ const toReturn = {};
432
+ if (typeof this.taskId !== 'undefined') {
433
+ toReturn['taskId'] = this.taskId;
434
+ }
435
+ if (typeof this.taskName !== 'undefined') {
436
+ toReturn['taskName'] = this.taskName;
437
+ }
438
+ return toReturn;
439
+ }
440
+ }
441
+ class LoadLFossenierTaskRequest {
442
+ static fromProto(proto) {
443
+ let m = new LoadLFossenierTaskRequest();
444
+ m = Object.assign(m, proto);
445
+ return m;
446
+ }
447
+ constructor(kwargs) {
448
+ if (!kwargs) {
449
+ return;
450
+ }
451
+ Object.assign(this, kwargs);
452
+ }
453
+ toApiJson() {
454
+ const toReturn = {};
455
+ if (typeof this.finished !== 'undefined') {
456
+ toReturn['finished'] = this.finished;
457
+ }
458
+ return toReturn;
459
+ }
460
+ }
461
+ class LoadLFossenierTaskResponse {
462
+ static fromProto(proto) {
463
+ let m = new LoadLFossenierTaskResponse();
464
+ m = Object.assign(m, proto);
465
+ if (proto.todoTasks) {
466
+ m.todoTasks = proto.todoTasks.map(TodoTaskMessage.fromProto);
467
+ }
468
+ return m;
469
+ }
470
+ constructor(kwargs) {
471
+ if (!kwargs) {
472
+ return;
473
+ }
474
+ Object.assign(this, kwargs);
475
+ }
476
+ toApiJson() {
477
+ const toReturn = {};
478
+ if (typeof this.todoTasks !== 'undefined' && this.todoTasks !== null) {
479
+ toReturn['todoTasks'] = 'toApiJson' in this.todoTasks ? this.todoTasks.toApiJson() : this.todoTasks;
480
+ }
481
+ return toReturn;
482
+ }
483
+ }
484
+ class TodoTaskMessage {
485
+ static fromProto(proto) {
486
+ let m = new TodoTaskMessage();
487
+ m = Object.assign(m, proto);
488
+ return m;
489
+ }
490
+ constructor(kwargs) {
491
+ if (!kwargs) {
492
+ return;
493
+ }
494
+ Object.assign(this, kwargs);
495
+ }
496
+ toApiJson() {
497
+ const toReturn = {};
498
+ if (typeof this.taskNames !== 'undefined') {
499
+ toReturn['taskNames'] = this.taskNames;
500
+ }
501
+ if (typeof this.finished !== 'undefined') {
502
+ toReturn['finished'] = this.finished;
503
+ }
504
+ if (typeof this.taskId !== 'undefined') {
505
+ toReturn['taskId'] = this.taskId;
506
+ }
507
+ return toReturn;
508
+ }
509
+ }
510
+ class ToggleFinishedLFossenierTaskRequest {
511
+ static fromProto(proto) {
512
+ let m = new ToggleFinishedLFossenierTaskRequest();
513
+ m = Object.assign(m, proto);
514
+ return m;
515
+ }
516
+ constructor(kwargs) {
517
+ if (!kwargs) {
518
+ return;
519
+ }
520
+ Object.assign(this, kwargs);
521
+ }
522
+ toApiJson() {
523
+ const toReturn = {};
524
+ if (typeof this.taskId !== 'undefined') {
525
+ toReturn['taskId'] = this.taskId;
526
+ }
527
+ if (typeof this.taskName !== 'undefined') {
528
+ toReturn['taskName'] = this.taskName;
529
+ }
530
+ if (typeof this.finished !== 'undefined') {
531
+ toReturn['finished'] = this.finished;
532
+ }
533
+ return toReturn;
534
+ }
535
+ }
536
+
537
+ class Access {
538
+ static fromProto(proto) {
539
+ let m = new Access();
540
+ m = Object.assign(m, proto);
541
+ return m;
542
+ }
543
+ constructor(kwargs) {
544
+ if (!kwargs) {
545
+ return;
546
+ }
547
+ Object.assign(this, kwargs);
548
+ }
549
+ toApiJson() {
550
+ const toReturn = {};
551
+ if (typeof this.scope !== 'undefined') {
552
+ toReturn['scope'] = this.scope;
553
+ }
554
+ if (typeof this.public !== 'undefined') {
555
+ toReturn['public'] = this.public;
556
+ }
557
+ return toReturn;
558
+ }
559
+ }
560
+
561
+ class AHundalAddTaskRequest {
562
+ static fromProto(proto) {
563
+ let m = new AHundalAddTaskRequest();
564
+ m = Object.assign(m, proto);
565
+ if (proto.newTask) {
566
+ m.newTask = AHundalTask.fromProto(proto.newTask);
567
+ }
568
+ return m;
569
+ }
570
+ constructor(kwargs) {
571
+ if (!kwargs) {
572
+ return;
573
+ }
574
+ Object.assign(this, kwargs);
575
+ }
576
+ toApiJson() {
577
+ const toReturn = {};
578
+ if (typeof this.newTask !== 'undefined' && this.newTask !== null) {
579
+ toReturn['newTask'] = 'toApiJson' in this.newTask ? this.newTask.toApiJson() : this.newTask;
580
+ }
581
+ return toReturn;
582
+ }
583
+ }
584
+ class AHundalAddTaskResponse {
585
+ static fromProto(proto) {
586
+ let m = new AHundalAddTaskResponse();
587
+ m = Object.assign(m, proto);
588
+ return m;
589
+ }
590
+ constructor(kwargs) {
591
+ if (!kwargs) {
592
+ return;
593
+ }
594
+ Object.assign(this, kwargs);
595
+ }
596
+ toApiJson() {
597
+ const toReturn = {};
598
+ if (typeof this.addSuccesfull !== 'undefined') {
599
+ toReturn['addSuccesfull'] = this.addSuccesfull;
600
+ }
601
+ return toReturn;
602
+ }
603
+ }
604
+ class AHundalDeleteTaskRequest {
605
+ static fromProto(proto) {
606
+ let m = new AHundalDeleteTaskRequest();
607
+ m = Object.assign(m, proto);
608
+ return m;
609
+ }
610
+ constructor(kwargs) {
611
+ if (!kwargs) {
612
+ return;
613
+ }
614
+ Object.assign(this, kwargs);
615
+ }
616
+ toApiJson() {
617
+ const toReturn = {};
618
+ if (typeof this.taskId !== 'undefined') {
619
+ toReturn['taskId'] = this.taskId;
620
+ }
621
+ return toReturn;
622
+ }
623
+ }
624
+ class AHundalDeleteTaskResponse {
625
+ static fromProto(proto) {
626
+ let m = new AHundalDeleteTaskResponse();
627
+ m = Object.assign(m, proto);
628
+ return m;
629
+ }
630
+ constructor(kwargs) {
631
+ if (!kwargs) {
632
+ return;
633
+ }
634
+ Object.assign(this, kwargs);
635
+ }
636
+ toApiJson() {
637
+ const toReturn = {};
638
+ if (typeof this.deleteSuccesfull !== 'undefined') {
639
+ toReturn['deleteSuccesfull'] = this.deleteSuccesfull;
640
+ }
641
+ return toReturn;
642
+ }
643
+ }
644
+ class AHundalEditTaskRequest {
645
+ static fromProto(proto) {
646
+ let m = new AHundalEditTaskRequest();
647
+ m = Object.assign(m, proto);
648
+ if (proto.editedTask) {
649
+ m.editedTask = AHundalTask.fromProto(proto.editedTask);
650
+ }
651
+ return m;
652
+ }
653
+ constructor(kwargs) {
654
+ if (!kwargs) {
655
+ return;
656
+ }
657
+ Object.assign(this, kwargs);
658
+ }
659
+ toApiJson() {
660
+ const toReturn = {};
661
+ if (typeof this.editedTask !== 'undefined' && this.editedTask !== null) {
662
+ toReturn['editedTask'] = 'toApiJson' in this.editedTask ? this.editedTask.toApiJson() : this.editedTask;
663
+ }
664
+ return toReturn;
665
+ }
666
+ }
667
+ class AHundalEditTaskResponse {
668
+ static fromProto(proto) {
669
+ let m = new AHundalEditTaskResponse();
670
+ m = Object.assign(m, proto);
671
+ return m;
672
+ }
673
+ constructor(kwargs) {
674
+ if (!kwargs) {
675
+ return;
676
+ }
677
+ Object.assign(this, kwargs);
678
+ }
679
+ toApiJson() {
680
+ const toReturn = {};
681
+ if (typeof this.editSuccesfull !== 'undefined') {
682
+ toReturn['editSuccesfull'] = this.editSuccesfull;
683
+ }
684
+ return toReturn;
685
+ }
686
+ }
687
+ class AHundalGetSpecificTaskRequest {
688
+ static fromProto(proto) {
689
+ let m = new AHundalGetSpecificTaskRequest();
690
+ m = Object.assign(m, proto);
691
+ return m;
692
+ }
693
+ constructor(kwargs) {
694
+ if (!kwargs) {
695
+ return;
696
+ }
697
+ Object.assign(this, kwargs);
698
+ }
699
+ toApiJson() {
700
+ const toReturn = {};
701
+ if (typeof this.taskId !== 'undefined') {
702
+ toReturn['taskId'] = this.taskId;
703
+ }
704
+ return toReturn;
705
+ }
706
+ }
707
+ class AHundalGetSpecificTaskResponse {
708
+ static fromProto(proto) {
709
+ let m = new AHundalGetSpecificTaskResponse();
710
+ m = Object.assign(m, proto);
711
+ if (proto.ahundalTask) {
712
+ m.ahundalTask = AHundalTask.fromProto(proto.ahundalTask);
713
+ }
714
+ return m;
715
+ }
716
+ constructor(kwargs) {
717
+ if (!kwargs) {
718
+ return;
719
+ }
720
+ Object.assign(this, kwargs);
721
+ }
722
+ toApiJson() {
723
+ const toReturn = {};
724
+ if (typeof this.ahundalTask !== 'undefined' && this.ahundalTask !== null) {
725
+ toReturn['ahundalTask'] = 'toApiJson' in this.ahundalTask ? this.ahundalTask.toApiJson() : this.ahundalTask;
726
+ }
727
+ return toReturn;
728
+ }
729
+ }
730
+ class AHundalGetTasksRequest {
731
+ static fromProto(proto) {
732
+ let m = new AHundalGetTasksRequest();
733
+ m = Object.assign(m, proto);
734
+ return m;
735
+ }
736
+ constructor(kwargs) {
737
+ if (!kwargs) {
738
+ return;
739
+ }
740
+ Object.assign(this, kwargs);
741
+ }
742
+ toApiJson() {
743
+ const toReturn = {};
744
+ if (typeof this.taskId !== 'undefined') {
745
+ toReturn['taskId'] = this.taskId;
746
+ }
747
+ return toReturn;
748
+ }
749
+ }
750
+ class AHundalGetTasksResponse {
751
+ static fromProto(proto) {
752
+ let m = new AHundalGetTasksResponse();
753
+ m = Object.assign(m, proto);
754
+ if (proto.ahundalTask) {
755
+ m.ahundalTask = proto.ahundalTask.map(AHundalTask.fromProto);
756
+ }
757
+ return m;
758
+ }
759
+ constructor(kwargs) {
760
+ if (!kwargs) {
761
+ return;
762
+ }
763
+ Object.assign(this, kwargs);
764
+ }
765
+ toApiJson() {
766
+ const toReturn = {};
767
+ if (typeof this.ahundalTask !== 'undefined' && this.ahundalTask !== null) {
768
+ toReturn['ahundalTask'] = 'toApiJson' in this.ahundalTask ? this.ahundalTask.toApiJson() : this.ahundalTask;
769
+ }
770
+ return toReturn;
771
+ }
772
+ }
773
+ class AHundalTask {
774
+ static fromProto(proto) {
775
+ let m = new AHundalTask();
776
+ m = Object.assign(m, proto);
777
+ return m;
778
+ }
779
+ constructor(kwargs) {
780
+ if (!kwargs) {
781
+ return;
782
+ }
783
+ Object.assign(this, kwargs);
784
+ }
785
+ toApiJson() {
786
+ const toReturn = {};
787
+ if (typeof this.id !== 'undefined') {
788
+ toReturn['id'] = this.id;
789
+ }
790
+ if (typeof this.taskTitle !== 'undefined') {
791
+ toReturn['taskTitle'] = this.taskTitle;
792
+ }
793
+ if (typeof this.day !== 'undefined') {
794
+ toReturn['day'] = this.day;
795
+ }
796
+ if (typeof this.month !== 'undefined') {
797
+ toReturn['month'] = this.month;
798
+ }
799
+ if (typeof this.year !== 'undefined') {
800
+ toReturn['year'] = this.year;
801
+ }
802
+ if (typeof this.description !== 'undefined') {
803
+ toReturn['description'] = this.description;
804
+ }
805
+ if (typeof this.completed !== 'undefined') {
806
+ toReturn['completed'] = this.completed;
807
+ }
808
+ if (typeof this.isDeleted !== 'undefined') {
809
+ toReturn['isDeleted'] = this.isDeleted;
810
+ }
811
+ return toReturn;
812
+ }
813
+ }
814
+ class CreateHdoTodoRequest {
815
+ static fromProto(proto) {
816
+ let m = new CreateHdoTodoRequest();
817
+ m = Object.assign(m, proto);
818
+ if (proto.todo) {
819
+ m.todo = HdoTodoItem.fromProto(proto.todo);
820
+ }
821
+ return m;
822
+ }
823
+ constructor(kwargs) {
824
+ if (!kwargs) {
825
+ return;
826
+ }
827
+ Object.assign(this, kwargs);
828
+ }
829
+ toApiJson() {
830
+ const toReturn = {};
831
+ if (typeof this.todo !== 'undefined' && this.todo !== null) {
832
+ toReturn['todo'] = 'toApiJson' in this.todo ? this.todo.toApiJson() : this.todo;
833
+ }
834
+ return toReturn;
835
+ }
836
+ }
837
+ class CreateHdoTodoResponse {
838
+ static fromProto(proto) {
839
+ let m = new CreateHdoTodoResponse();
840
+ m = Object.assign(m, proto);
841
+ if (proto.todo) {
842
+ m.todo = HdoTodoItem.fromProto(proto.todo);
843
+ }
844
+ return m;
845
+ }
846
+ constructor(kwargs) {
847
+ if (!kwargs) {
848
+ return;
849
+ }
850
+ Object.assign(this, kwargs);
851
+ }
852
+ toApiJson() {
853
+ const toReturn = {};
854
+ if (typeof this.todo !== 'undefined' && this.todo !== null) {
855
+ toReturn['todo'] = 'toApiJson' in this.todo ? this.todo.toApiJson() : this.todo;
856
+ }
857
+ return toReturn;
858
+ }
859
+ }
860
+ class DeleteHdoTodoRequest {
861
+ static fromProto(proto) {
862
+ let m = new DeleteHdoTodoRequest();
863
+ m = Object.assign(m, proto);
864
+ return m;
865
+ }
866
+ constructor(kwargs) {
867
+ if (!kwargs) {
868
+ return;
869
+ }
870
+ Object.assign(this, kwargs);
871
+ }
872
+ toApiJson() {
873
+ const toReturn = {};
874
+ if (typeof this.id !== 'undefined') {
875
+ toReturn['id'] = this.id;
876
+ }
877
+ return toReturn;
878
+ }
879
+ }
880
+ class DeleteHdoTodoResponse {
881
+ static fromProto(proto) {
882
+ let m = new DeleteHdoTodoResponse();
883
+ m = Object.assign(m, proto);
884
+ return m;
885
+ }
886
+ constructor(kwargs) {
887
+ if (!kwargs) {
888
+ return;
889
+ }
890
+ Object.assign(this, kwargs);
891
+ }
892
+ toApiJson() {
893
+ const toReturn = {};
894
+ if (typeof this.message !== 'undefined') {
895
+ toReturn['message'] = this.message;
896
+ }
897
+ return toReturn;
898
+ }
899
+ }
900
+ class GetHdoTodoRequest {
901
+ static fromProto(proto) {
902
+ let m = new GetHdoTodoRequest();
903
+ m = Object.assign(m, proto);
904
+ return m;
905
+ }
906
+ constructor(kwargs) {
907
+ if (!kwargs) {
908
+ return;
909
+ }
910
+ Object.assign(this, kwargs);
911
+ }
912
+ toApiJson() {
913
+ const toReturn = {};
914
+ if (typeof this.id !== 'undefined') {
915
+ toReturn['id'] = this.id;
916
+ }
917
+ return toReturn;
918
+ }
919
+ }
920
+ class GetHdoTodoResponse {
921
+ static fromProto(proto) {
922
+ let m = new GetHdoTodoResponse();
923
+ m = Object.assign(m, proto);
924
+ if (proto.todo) {
925
+ m.todo = HdoTodoItem.fromProto(proto.todo);
926
+ }
927
+ return m;
928
+ }
929
+ constructor(kwargs) {
930
+ if (!kwargs) {
931
+ return;
932
+ }
933
+ Object.assign(this, kwargs);
934
+ }
935
+ toApiJson() {
936
+ const toReturn = {};
937
+ if (typeof this.todo !== 'undefined' && this.todo !== null) {
938
+ toReturn['todo'] = 'toApiJson' in this.todo ? this.todo.toApiJson() : this.todo;
939
+ }
940
+ return toReturn;
941
+ }
942
+ }
943
+ class HdoTodoItem {
944
+ static fromProto(proto) {
945
+ let m = new HdoTodoItem();
946
+ m = Object.assign(m, proto);
947
+ return m;
948
+ }
949
+ constructor(kwargs) {
950
+ if (!kwargs) {
951
+ return;
952
+ }
953
+ Object.assign(this, kwargs);
954
+ }
955
+ toApiJson() {
956
+ const toReturn = {};
957
+ if (typeof this.id !== 'undefined') {
958
+ toReturn['id'] = this.id;
959
+ }
960
+ if (typeof this.title !== 'undefined') {
961
+ toReturn['title'] = this.title;
962
+ }
963
+ if (typeof this.description !== 'undefined') {
964
+ toReturn['description'] = this.description;
965
+ }
966
+ if (typeof this.completed !== 'undefined') {
967
+ toReturn['completed'] = this.completed;
968
+ }
969
+ if (typeof this.deleted !== 'undefined') {
970
+ toReturn['deleted'] = this.deleted;
971
+ }
972
+ return toReturn;
973
+ }
974
+ }
975
+ class ListHdoTodoRequest {
976
+ static fromProto(proto) {
977
+ let m = new ListHdoTodoRequest();
978
+ m = Object.assign(m, proto);
979
+ return m;
980
+ }
981
+ constructor(kwargs) {
982
+ if (!kwargs) {
983
+ return;
984
+ }
985
+ Object.assign(this, kwargs);
986
+ }
987
+ toApiJson() {
988
+ const toReturn = {};
989
+ return toReturn;
990
+ }
991
+ }
992
+ class ListHdoTodoResponse {
993
+ static fromProto(proto) {
994
+ let m = new ListHdoTodoResponse();
995
+ m = Object.assign(m, proto);
996
+ if (proto.todos) {
997
+ m.todos = proto.todos.map(HdoTodoItem.fromProto);
998
+ }
999
+ return m;
1000
+ }
1001
+ constructor(kwargs) {
1002
+ if (!kwargs) {
1003
+ return;
1004
+ }
1005
+ Object.assign(this, kwargs);
1006
+ }
1007
+ toApiJson() {
1008
+ const toReturn = {};
1009
+ if (typeof this.todos !== 'undefined' && this.todos !== null) {
1010
+ toReturn['todos'] = 'toApiJson' in this.todos ? this.todos.toApiJson() : this.todos;
1011
+ }
1012
+ return toReturn;
1013
+ }
1014
+ }
130
1015
  class MMugotCreateTaskRequest {
131
1016
  static fromProto(proto) {
132
1017
  let m = new MMugotCreateTaskRequest();
@@ -190,9 +1075,9 @@ class MMugotDeleteTaskRequest {
190
1075
  return toReturn;
191
1076
  }
192
1077
  }
193
- class MMugotGetTaskRequest {
1078
+ class MMugotListTaskRequest {
194
1079
  static fromProto(proto) {
195
- let m = new MMugotGetTaskRequest();
1080
+ let m = new MMugotListTaskRequest();
196
1081
  m = Object.assign(m, proto);
197
1082
  return m;
198
1083
  }
@@ -210,9 +1095,9 @@ class MMugotGetTaskRequest {
210
1095
  return toReturn;
211
1096
  }
212
1097
  }
213
- class MMugotGetTaskResponse {
1098
+ class MMugotListTaskResponse {
214
1099
  static fromProto(proto) {
215
- let m = new MMugotGetTaskResponse();
1100
+ let m = new MMugotListTaskResponse();
216
1101
  m = Object.assign(m, proto);
217
1102
  if (proto.task) {
218
1103
  m.task = MMugotTask.fromProto(proto.task);
@@ -265,6 +1150,52 @@ class MMugotTask {
265
1150
  return toReturn;
266
1151
  }
267
1152
  }
1153
+ class UpdateHdoTodoRequest {
1154
+ static fromProto(proto) {
1155
+ let m = new UpdateHdoTodoRequest();
1156
+ m = Object.assign(m, proto);
1157
+ if (proto.todo) {
1158
+ m.todo = HdoTodoItem.fromProto(proto.todo);
1159
+ }
1160
+ return m;
1161
+ }
1162
+ constructor(kwargs) {
1163
+ if (!kwargs) {
1164
+ return;
1165
+ }
1166
+ Object.assign(this, kwargs);
1167
+ }
1168
+ toApiJson() {
1169
+ const toReturn = {};
1170
+ if (typeof this.todo !== 'undefined' && this.todo !== null) {
1171
+ toReturn['todo'] = 'toApiJson' in this.todo ? this.todo.toApiJson() : this.todo;
1172
+ }
1173
+ return toReturn;
1174
+ }
1175
+ }
1176
+ class UpdateHdoTodoResponse {
1177
+ static fromProto(proto) {
1178
+ let m = new UpdateHdoTodoResponse();
1179
+ m = Object.assign(m, proto);
1180
+ if (proto.todo) {
1181
+ m.todo = HdoTodoItem.fromProto(proto.todo);
1182
+ }
1183
+ return m;
1184
+ }
1185
+ constructor(kwargs) {
1186
+ if (!kwargs) {
1187
+ return;
1188
+ }
1189
+ Object.assign(this, kwargs);
1190
+ }
1191
+ toApiJson() {
1192
+ const toReturn = {};
1193
+ if (typeof this.todo !== 'undefined' && this.todo !== null) {
1194
+ toReturn['todo'] = 'toApiJson' in this.todo ? this.todo.toApiJson() : this.todo;
1195
+ }
1196
+ return toReturn;
1197
+ }
1198
+ }
268
1199
 
269
1200
  // *********************************
270
1201
 
@@ -292,6 +1223,54 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImpor
292
1223
  args: [{ providedIn: 'root' }]
293
1224
  }] });
294
1225
 
1226
+ // *********************************
1227
+ class AHundalToDoProjectApiService {
1228
+ constructor(http, hostService) {
1229
+ this.http = http;
1230
+ this.hostService = hostService;
1231
+ this._host = this.hostService.hostWithScheme;
1232
+ }
1233
+ apiOptions() {
1234
+ return {
1235
+ headers: new HttpHeaders({
1236
+ 'Content-Type': 'application/json'
1237
+ }),
1238
+ withCredentials: true
1239
+ };
1240
+ }
1241
+ aHundalGetTasks(r) {
1242
+ const request = (r.toApiJson) ? r : new AHundalGetTasksRequest(r);
1243
+ return this.http.post(this._host + "/developertraining.v1.AHundalToDoProject/AHundalGetTasks", request.toApiJson(), this.apiOptions())
1244
+ .pipe(map(resp => AHundalGetTasksResponse.fromProto(resp)));
1245
+ }
1246
+ aHundalAddTask(r) {
1247
+ const request = (r.toApiJson) ? r : new AHundalAddTaskRequest(r);
1248
+ return this.http.post(this._host + "/developertraining.v1.AHundalToDoProject/AHundalAddTask", request.toApiJson(), this.apiOptions())
1249
+ .pipe(map(resp => AHundalAddTaskResponse.fromProto(resp)));
1250
+ }
1251
+ aHundalEditTask(r) {
1252
+ const request = (r.toApiJson) ? r : new AHundalEditTaskRequest(r);
1253
+ return this.http.post(this._host + "/developertraining.v1.AHundalToDoProject/AHundalEditTask", request.toApiJson(), this.apiOptions())
1254
+ .pipe(map(resp => AHundalEditTaskResponse.fromProto(resp)));
1255
+ }
1256
+ aHundalDeleteTask(r) {
1257
+ const request = (r.toApiJson) ? r : new AHundalDeleteTaskRequest(r);
1258
+ return this.http.post(this._host + "/developertraining.v1.AHundalToDoProject/AHundalDeleteTask", request.toApiJson(), this.apiOptions())
1259
+ .pipe(map(resp => AHundalDeleteTaskResponse.fromProto(resp)));
1260
+ }
1261
+ aHundalGetSpecificTask(r) {
1262
+ const request = (r.toApiJson) ? r : new AHundalGetSpecificTaskRequest(r);
1263
+ return this.http.post(this._host + "/developertraining.v1.AHundalToDoProject/AHundalGetSpecificTask", request.toApiJson(), this.apiOptions())
1264
+ .pipe(map(resp => AHundalGetSpecificTaskResponse.fromProto(resp)));
1265
+ }
1266
+ }
1267
+ AHundalToDoProjectApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: AHundalToDoProjectApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
1268
+ AHundalToDoProjectApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: AHundalToDoProjectApiService, providedIn: 'root' });
1269
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: AHundalToDoProjectApiService, decorators: [{
1270
+ type: Injectable,
1271
+ args: [{ providedIn: 'root' }]
1272
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
1273
+
295
1274
  // *********************************
296
1275
  class BusinessQAApiService {
297
1276
  constructor(http, hostService) {
@@ -324,6 +1303,93 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImpor
324
1303
  args: [{ providedIn: 'root' }]
325
1304
  }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
326
1305
 
1306
+ // *********************************
1307
+ class HdoTodoApiService {
1308
+ constructor(http, hostService) {
1309
+ this.http = http;
1310
+ this.hostService = hostService;
1311
+ this._host = this.hostService.hostWithScheme;
1312
+ }
1313
+ apiOptions() {
1314
+ return {
1315
+ headers: new HttpHeaders({
1316
+ 'Content-Type': 'application/json'
1317
+ }),
1318
+ withCredentials: true
1319
+ };
1320
+ }
1321
+ createHdoTodo(r) {
1322
+ const request = (r.toApiJson) ? r : new CreateHdoTodoRequest(r);
1323
+ return this.http.post(this._host + "/developertraining.v1.HdoTodoService/CreateHdoTodo", request.toApiJson(), this.apiOptions())
1324
+ .pipe(map(resp => CreateHdoTodoResponse.fromProto(resp)));
1325
+ }
1326
+ deleteHdoTodo(r) {
1327
+ const request = (r.toApiJson) ? r : new DeleteHdoTodoRequest(r);
1328
+ return this.http.post(this._host + "/developertraining.v1.HdoTodoService/DeleteHdoTodo", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
1329
+ }
1330
+ listHdoTodos(r) {
1331
+ const request = (r.toApiJson) ? r : new ListHdoTodoRequest(r);
1332
+ return this.http.post(this._host + "/developertraining.v1.HdoTodoService/ListHdoTodos", request.toApiJson(), this.apiOptions())
1333
+ .pipe(map(resp => ListHdoTodoResponse.fromProto(resp)));
1334
+ }
1335
+ updateHdoTodo(r) {
1336
+ const request = (r.toApiJson) ? r : new UpdateHdoTodoRequest(r);
1337
+ return this.http.post(this._host + "/developertraining.v1.HdoTodoService/UpdateHdoTodo", request.toApiJson(), this.apiOptions())
1338
+ .pipe(map(resp => UpdateHdoTodoResponse.fromProto(resp)));
1339
+ }
1340
+ getHdoTodo(r) {
1341
+ const request = (r.toApiJson) ? r : new GetHdoTodoRequest(r);
1342
+ return this.http.post(this._host + "/developertraining.v1.HdoTodoService/GetHdoTodo", request.toApiJson(), this.apiOptions())
1343
+ .pipe(map(resp => GetHdoTodoResponse.fromProto(resp)));
1344
+ }
1345
+ }
1346
+ HdoTodoApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: HdoTodoApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
1347
+ HdoTodoApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: HdoTodoApiService, providedIn: 'root' });
1348
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: HdoTodoApiService, decorators: [{
1349
+ type: Injectable,
1350
+ args: [{ providedIn: 'root' }]
1351
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
1352
+
1353
+ // *********************************
1354
+ class LFossenierTodoApiService {
1355
+ constructor(http, hostService) {
1356
+ this.http = http;
1357
+ this.hostService = hostService;
1358
+ this._host = this.hostService.hostWithScheme;
1359
+ }
1360
+ apiOptions() {
1361
+ return {
1362
+ headers: new HttpHeaders({
1363
+ 'Content-Type': 'application/json'
1364
+ }),
1365
+ withCredentials: true
1366
+ };
1367
+ }
1368
+ createLFossenierTask(r) {
1369
+ const request = (r.toApiJson) ? r : new CreateLFossenierTaskRequest(r);
1370
+ return this.http.post(this._host + "/developertraining.v1.LFossenierTodo/CreateLFossenierTask", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
1371
+ }
1372
+ deleteLFossenierTask(r) {
1373
+ const request = (r.toApiJson) ? r : new DeleteLFossenierTaskRequest(r);
1374
+ return this.http.post(this._host + "/developertraining.v1.LFossenierTodo/DeleteLFossenierTask", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
1375
+ }
1376
+ toggleFinishedLFossenierTask(r) {
1377
+ const request = (r.toApiJson) ? r : new ToggleFinishedLFossenierTaskRequest(r);
1378
+ return this.http.post(this._host + "/developertraining.v1.LFossenierTodo/ToggleFinishedLFossenierTask", request.toApiJson(), Object.assign(Object.assign({}, this.apiOptions()), { observe: 'response' }));
1379
+ }
1380
+ loadLFossenierTask(r) {
1381
+ const request = (r.toApiJson) ? r : new LoadLFossenierTaskRequest(r);
1382
+ return this.http.post(this._host + "/developertraining.v1.LFossenierTodo/LoadLFossenierTask", request.toApiJson(), this.apiOptions())
1383
+ .pipe(map(resp => LoadLFossenierTaskResponse.fromProto(resp)));
1384
+ }
1385
+ }
1386
+ LFossenierTodoApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: LFossenierTodoApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
1387
+ LFossenierTodoApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: LFossenierTodoApiService, providedIn: 'root' });
1388
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: LFossenierTodoApiService, decorators: [{
1389
+ type: Injectable,
1390
+ args: [{ providedIn: 'root' }]
1391
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
1392
+
327
1393
  // *********************************
328
1394
  class MMugotListQAApiService {
329
1395
  constructor(http, hostService) {
@@ -345,9 +1411,9 @@ class MMugotListQAApiService {
345
1411
  .pipe(map(resp => MMugotCreateTaskResponse.fromProto(resp)));
346
1412
  }
347
1413
  getTask(r) {
348
- const request = (r.toApiJson) ? r : new MMugotGetTaskRequest(r);
1414
+ const request = (r.toApiJson) ? r : new MMugotListTaskRequest(r);
349
1415
  return this.http.post(this._host + "/developertraining.v1.MMugotListQA/GetTask", request.toApiJson(), this.apiOptions())
350
- .pipe(map(resp => MMugotGetTaskResponse.fromProto(resp)));
1416
+ .pipe(map(resp => MMugotListTaskResponse.fromProto(resp)));
351
1417
  }
352
1418
  deleteTask(r) {
353
1419
  const request = (r.toApiJson) ? r : new MMugotDeleteTaskRequest(r);
@@ -361,11 +1427,59 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImpor
361
1427
  args: [{ providedIn: 'root' }]
362
1428
  }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
363
1429
 
1430
+ // *********************************
1431
+ class TKabakovToDoApiService {
1432
+ constructor(http, hostService) {
1433
+ this.http = http;
1434
+ this.hostService = hostService;
1435
+ this._host = this.hostService.hostWithScheme;
1436
+ }
1437
+ apiOptions() {
1438
+ return {
1439
+ headers: new HttpHeaders({
1440
+ 'Content-Type': 'application/json'
1441
+ }),
1442
+ withCredentials: true
1443
+ };
1444
+ }
1445
+ tKabakovGetToDoItem(r) {
1446
+ const request = (r.toApiJson) ? r : new TKabakovGetToDoItemRequest(r);
1447
+ return this.http.post(this._host + "/developertraining.v1.TKabakovToDo/TKabakovGetToDoItem", request.toApiJson(), this.apiOptions())
1448
+ .pipe(map(resp => TKabakovGetToDoItemResponse.fromProto(resp)));
1449
+ }
1450
+ tKabakovAddToDoItem(r) {
1451
+ const request = (r.toApiJson) ? r : new TKabakovAddToDoItemRequest(r);
1452
+ return this.http.post(this._host + "/developertraining.v1.TKabakovToDo/TKabakovAddToDoItem", request.toApiJson(), this.apiOptions())
1453
+ .pipe(map(resp => TKabakovAddToDoItemResponse.fromProto(resp)));
1454
+ }
1455
+ tKabakovDeleteToDoItem(r) {
1456
+ const request = (r.toApiJson) ? r : new TKabakovDeleteToDoItemRequest(r);
1457
+ return this.http.post(this._host + "/developertraining.v1.TKabakovToDo/TKabakovDeleteToDoItem", request.toApiJson(), this.apiOptions())
1458
+ .pipe(map(resp => TKabakovDeleteToDoItemResponse.fromProto(resp)));
1459
+ }
1460
+ tKabakovUpdateToDoItem(r) {
1461
+ const request = (r.toApiJson) ? r : new TKabakovUpdateToDoItemRequest(r);
1462
+ return this.http.post(this._host + "/developertraining.v1.TKabakovToDo/TKabakovUpdateToDoItem", request.toApiJson(), this.apiOptions())
1463
+ .pipe(map(resp => TKabakovUpdateToDoItemResponse.fromProto(resp)));
1464
+ }
1465
+ tKabakovListToDoItems(r) {
1466
+ const request = (r.toApiJson) ? r : new TKabakovListToDoItemsRequest(r);
1467
+ return this.http.post(this._host + "/developertraining.v1.TKabakovToDo/TKabakovListToDoItems", request.toApiJson(), this.apiOptions())
1468
+ .pipe(map(resp => TKabakovListToDoItemsResponse.fromProto(resp)));
1469
+ }
1470
+ }
1471
+ TKabakovToDoApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: TKabakovToDoApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
1472
+ TKabakovToDoApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: TKabakovToDoApiService, providedIn: 'root' });
1473
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: TKabakovToDoApiService, decorators: [{
1474
+ type: Injectable,
1475
+ args: [{ providedIn: 'root' }]
1476
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
1477
+
364
1478
  // *********************************
365
1479
 
366
1480
  /**
367
1481
  * Generated bundle index. Do not edit.
368
1482
  */
369
1483
 
370
- export { BusinessQAApiService, FieldMask, GetBusinessQuestionsAnswersRequest, GetBusinessQuestionsAnswersResponse, MMugotCreateTaskRequest, MMugotCreateTaskResponse, MMugotDeleteTaskRequest, MMugotGetTaskRequest, MMugotGetTaskResponse, MMugotListQAApiService, MMugotTask, QuestionsAnswers, ReplaceBusinessQuestionsAnswersRequest };
1484
+ export { AHundalAddTaskRequest, AHundalAddTaskResponse, AHundalDeleteTaskRequest, AHundalDeleteTaskResponse, AHundalEditTaskRequest, AHundalEditTaskResponse, AHundalGetSpecificTaskRequest, AHundalGetSpecificTaskResponse, AHundalGetTasksRequest, AHundalGetTasksResponse, AHundalTask, AHundalToDoProjectApiService, Access, BusinessQAApiService, CreateHdoTodoRequest, CreateHdoTodoResponse, CreateLFossenierTaskRequest, DeleteHdoTodoRequest, DeleteHdoTodoResponse, DeleteLFossenierTaskRequest, FieldMask, GetBusinessQuestionsAnswersRequest, GetBusinessQuestionsAnswersResponse, GetHdoTodoRequest, GetHdoTodoResponse, HdoTodoApiService, HdoTodoItem, LFossenierTodoApiService, ListHdoTodoRequest, ListHdoTodoResponse, LoadLFossenierTaskRequest, LoadLFossenierTaskResponse, MMugotCreateTaskRequest, MMugotCreateTaskResponse, MMugotDeleteTaskRequest, MMugotListQAApiService, MMugotListTaskRequest, MMugotListTaskResponse, MMugotTask, QuestionsAnswers, ReplaceBusinessQuestionsAnswersRequest, TKabakovAddToDoItemRequest, TKabakovAddToDoItemResponse, TKabakovDeleteToDoItemRequest, TKabakovDeleteToDoItemResponse, TKabakovGetToDoItemRequest, TKabakovGetToDoItemResponse, TKabakovListToDoItemsRequest, TKabakovListToDoItemsResponse, TKabakovToDoApiService, TKabakovToDoId, TKabakovToDoItem, TKabakovUpdateToDoItemRequest, TKabakovUpdateToDoItemResponse, TodoTaskMessage, ToggleFinishedLFossenierTaskRequest, UpdateHdoTodoRequest, UpdateHdoTodoResponse };
371
1485
  //# sourceMappingURL=vendasta-developer-training.mjs.map