@vendasta/developer-training 0.14.0 → 0.17.0
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/esm2020/lib/_generated/host.service.mjs +4 -4
- package/esm2020/lib/_generated/index.mjs +2 -0
- package/esm2020/lib/_internal/a-hundal-to-do-project.api.service.mjs +4 -4
- package/esm2020/lib/_internal/business-qa.api.service.mjs +4 -4
- package/esm2020/lib/_internal/e-currie-list.api.service.mjs +4 -4
- package/esm2020/lib/_internal/hdo-todo.api.service.mjs +4 -4
- package/esm2020/lib/_internal/i-olaleye-to-do-qa.api.service.mjs +4 -4
- package/esm2020/lib/_internal/index.mjs +3 -1
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/klutodo.interface.mjs +8 -0
- package/esm2020/lib/_internal/k-lu-todo.api.service.mjs +60 -0
- package/esm2020/lib/_internal/karishma-list.api.service.mjs +4 -4
- package/esm2020/lib/_internal/l-fossenier-todo.api.service.mjs +4 -4
- package/esm2020/lib/_internal/m-mugot-list-qa.api.service.mjs +4 -4
- package/esm2020/lib/_internal/n-valle-todo.api.service.mjs +4 -4
- package/esm2020/lib/_internal/objects/api.mjs +237 -1
- package/esm2020/lib/_internal/objects/index.mjs +3 -2
- package/esm2020/lib/_internal/objects/klutodo.mjs +269 -0
- package/esm2020/lib/_internal/s-bueckert-to-do-list.api.service.mjs +63 -0
- package/esm2020/lib/_internal/t-kabakov-to-do.api.service.mjs +4 -4
- package/esm2020/lib/_internal/w-horrell-to-do.api.service.mjs +4 -4
- package/esm2020/lib/index.mjs +2 -1
- package/esm2020/public_api.mjs +2 -2
- package/fesm2015/vendasta-developer-training.mjs +764 -82
- package/fesm2015/vendasta-developer-training.mjs.map +1 -1
- package/fesm2020/vendasta-developer-training.mjs +763 -81
- package/fesm2020/vendasta-developer-training.mjs.map +1 -1
- package/lib/_generated/index.d.ts +1 -0
- package/lib/_internal/index.d.ts +2 -0
- package/lib/_internal/interfaces/api.interface.d.ts +40 -0
- package/lib/_internal/interfaces/index.d.ts +2 -1
- package/lib/_internal/interfaces/klutodo.interface.d.ts +39 -0
- package/lib/_internal/k-lu-todo.api.service.d.ts +20 -0
- package/lib/_internal/objects/api.d.ts +70 -0
- package/lib/_internal/objects/index.d.ts +2 -1
- package/lib/_internal/objects/klutodo.d.ts +74 -0
- package/lib/_internal/s-bueckert-to-do-list.api.service.d.ts +21 -0
- package/lib/index.d.ts +1 -0
- package/package.json +1 -1
- package/public_api.d.ts +1 -1
@@ -4,6 +4,29 @@ import * as i1 from '@angular/common/http';
|
|
4
4
|
import { HttpHeaders } from '@angular/common/http';
|
5
5
|
import { map } from 'rxjs/operators';
|
6
6
|
|
7
|
+
const environment = (window ? window['environment'] : 'prod') ?? 'prod';
|
8
|
+
const hostMap = {
|
9
|
+
'local': 'developer-training-api.vendasta-local.com',
|
10
|
+
'test': '',
|
11
|
+
'demo': 'developer-training-demo.apigateway.co',
|
12
|
+
'prod': 'developer-training-prod.apigateway.co',
|
13
|
+
'production': 'developer-training-prod.apigateway.co',
|
14
|
+
};
|
15
|
+
class HostService {
|
16
|
+
get host() {
|
17
|
+
return hostMap[environment.toLowerCase()];
|
18
|
+
}
|
19
|
+
get hostWithScheme() {
|
20
|
+
return 'https://' + this.host;
|
21
|
+
}
|
22
|
+
}
|
23
|
+
HostService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HostService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
24
|
+
HostService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HostService, providedIn: 'root' });
|
25
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HostService, decorators: [{
|
26
|
+
type: Injectable,
|
27
|
+
args: [{ providedIn: 'root' }]
|
28
|
+
}] });
|
29
|
+
|
7
30
|
// *********************************
|
8
31
|
// Code generated by sdkgen
|
9
32
|
// DO NOT EDIT!.
|
@@ -17,9 +40,14 @@ var Task;
|
|
17
40
|
Task[Task["TASK_DESCRIPTION"] = 2] = "TASK_DESCRIPTION";
|
18
41
|
})(Task || (Task = {}));
|
19
42
|
|
43
|
+
// *********************************
|
44
|
+
// Code generated by sdkgen
|
45
|
+
// DO NOT EDIT!.
|
46
|
+
//
|
47
|
+
// Enums Index.
|
20
48
|
// *********************************
|
21
49
|
|
22
|
-
function enumStringToValue$
|
50
|
+
function enumStringToValue$6(enumRef, value) {
|
23
51
|
if (typeof value === 'number') {
|
24
52
|
return value;
|
25
53
|
}
|
@@ -46,7 +74,7 @@ class FieldMask {
|
|
46
74
|
}
|
47
75
|
}
|
48
76
|
|
49
|
-
function enumStringToValue$
|
77
|
+
function enumStringToValue$5(enumRef, value) {
|
50
78
|
if (typeof value === 'number') {
|
51
79
|
return value;
|
52
80
|
}
|
@@ -154,7 +182,7 @@ class ReplaceBusinessQuestionsAnswersRequest {
|
|
154
182
|
}
|
155
183
|
}
|
156
184
|
|
157
|
-
function enumStringToValue$
|
185
|
+
function enumStringToValue$4(enumRef, value) {
|
158
186
|
if (typeof value === 'number') {
|
159
187
|
return value;
|
160
188
|
}
|
@@ -299,7 +327,7 @@ class ToggleFinishedLFossenierTaskRequest {
|
|
299
327
|
}
|
300
328
|
}
|
301
329
|
|
302
|
-
function enumStringToValue$
|
330
|
+
function enumStringToValue$3(enumRef, value) {
|
303
331
|
if (typeof value === 'number') {
|
304
332
|
return value;
|
305
333
|
}
|
@@ -329,7 +357,7 @@ class Access {
|
|
329
357
|
}
|
330
358
|
}
|
331
359
|
|
332
|
-
function enumStringToValue$
|
360
|
+
function enumStringToValue$2(enumRef, value) {
|
333
361
|
if (typeof value === 'number') {
|
334
362
|
return value;
|
335
363
|
}
|
@@ -615,6 +643,275 @@ class TKabakovUpdateToDoItemResponse {
|
|
615
643
|
}
|
616
644
|
}
|
617
645
|
|
646
|
+
function enumStringToValue$1(enumRef, value) {
|
647
|
+
if (typeof value === 'number') {
|
648
|
+
return value;
|
649
|
+
}
|
650
|
+
return enumRef[value];
|
651
|
+
}
|
652
|
+
class CreateKLuTodoRequest {
|
653
|
+
static fromProto(proto) {
|
654
|
+
let m = new CreateKLuTodoRequest();
|
655
|
+
m = Object.assign(m, proto);
|
656
|
+
if (proto.todoItem) {
|
657
|
+
m.todoItem = KLuTodoItem.fromProto(proto.todoItem);
|
658
|
+
}
|
659
|
+
return m;
|
660
|
+
}
|
661
|
+
constructor(kwargs) {
|
662
|
+
if (!kwargs) {
|
663
|
+
return;
|
664
|
+
}
|
665
|
+
Object.assign(this, kwargs);
|
666
|
+
}
|
667
|
+
toApiJson() {
|
668
|
+
const toReturn = {};
|
669
|
+
if (typeof this.todoItem !== 'undefined' && this.todoItem !== null) {
|
670
|
+
toReturn['todoItem'] = 'toApiJson' in this.todoItem ? this.todoItem.toApiJson() : this.todoItem;
|
671
|
+
}
|
672
|
+
return toReturn;
|
673
|
+
}
|
674
|
+
}
|
675
|
+
class CreateKLuTodoResponse {
|
676
|
+
static fromProto(proto) {
|
677
|
+
let m = new CreateKLuTodoResponse();
|
678
|
+
m = Object.assign(m, proto);
|
679
|
+
if (proto.todoItem) {
|
680
|
+
m.todoItem = KLuTodoItem.fromProto(proto.todoItem);
|
681
|
+
}
|
682
|
+
return m;
|
683
|
+
}
|
684
|
+
constructor(kwargs) {
|
685
|
+
if (!kwargs) {
|
686
|
+
return;
|
687
|
+
}
|
688
|
+
Object.assign(this, kwargs);
|
689
|
+
}
|
690
|
+
toApiJson() {
|
691
|
+
const toReturn = {};
|
692
|
+
if (typeof this.todoItem !== 'undefined' && this.todoItem !== null) {
|
693
|
+
toReturn['todoItem'] = 'toApiJson' in this.todoItem ? this.todoItem.toApiJson() : this.todoItem;
|
694
|
+
}
|
695
|
+
return toReturn;
|
696
|
+
}
|
697
|
+
}
|
698
|
+
class DeleteKLuTodoRequest {
|
699
|
+
static fromProto(proto) {
|
700
|
+
let m = new DeleteKLuTodoRequest();
|
701
|
+
m = Object.assign(m, proto);
|
702
|
+
return m;
|
703
|
+
}
|
704
|
+
constructor(kwargs) {
|
705
|
+
if (!kwargs) {
|
706
|
+
return;
|
707
|
+
}
|
708
|
+
Object.assign(this, kwargs);
|
709
|
+
}
|
710
|
+
toApiJson() {
|
711
|
+
const toReturn = {};
|
712
|
+
if (typeof this.id !== 'undefined') {
|
713
|
+
toReturn['id'] = this.id;
|
714
|
+
}
|
715
|
+
return toReturn;
|
716
|
+
}
|
717
|
+
}
|
718
|
+
class GetKLuTodoRequest {
|
719
|
+
static fromProto(proto) {
|
720
|
+
let m = new GetKLuTodoRequest();
|
721
|
+
m = Object.assign(m, proto);
|
722
|
+
return m;
|
723
|
+
}
|
724
|
+
constructor(kwargs) {
|
725
|
+
if (!kwargs) {
|
726
|
+
return;
|
727
|
+
}
|
728
|
+
Object.assign(this, kwargs);
|
729
|
+
}
|
730
|
+
toApiJson() {
|
731
|
+
const toReturn = {};
|
732
|
+
if (typeof this.id !== 'undefined') {
|
733
|
+
toReturn['id'] = this.id;
|
734
|
+
}
|
735
|
+
return toReturn;
|
736
|
+
}
|
737
|
+
}
|
738
|
+
class GetKLuTodoResponse {
|
739
|
+
static fromProto(proto) {
|
740
|
+
let m = new GetKLuTodoResponse();
|
741
|
+
m = Object.assign(m, proto);
|
742
|
+
if (proto.todoItem) {
|
743
|
+
m.todoItem = KLuTodoItem.fromProto(proto.todoItem);
|
744
|
+
}
|
745
|
+
return m;
|
746
|
+
}
|
747
|
+
constructor(kwargs) {
|
748
|
+
if (!kwargs) {
|
749
|
+
return;
|
750
|
+
}
|
751
|
+
Object.assign(this, kwargs);
|
752
|
+
}
|
753
|
+
toApiJson() {
|
754
|
+
const toReturn = {};
|
755
|
+
if (typeof this.todoItem !== 'undefined' && this.todoItem !== null) {
|
756
|
+
toReturn['todoItem'] = 'toApiJson' in this.todoItem ? this.todoItem.toApiJson() : this.todoItem;
|
757
|
+
}
|
758
|
+
return toReturn;
|
759
|
+
}
|
760
|
+
}
|
761
|
+
class KLuTodoItem {
|
762
|
+
static fromProto(proto) {
|
763
|
+
let m = new KLuTodoItem();
|
764
|
+
m = Object.assign(m, proto);
|
765
|
+
if (proto.dueDate) {
|
766
|
+
m.dueDate = new Date(proto.dueDate);
|
767
|
+
}
|
768
|
+
return m;
|
769
|
+
}
|
770
|
+
constructor(kwargs) {
|
771
|
+
if (!kwargs) {
|
772
|
+
return;
|
773
|
+
}
|
774
|
+
Object.assign(this, kwargs);
|
775
|
+
}
|
776
|
+
toApiJson() {
|
777
|
+
const toReturn = {};
|
778
|
+
if (typeof this.id !== 'undefined') {
|
779
|
+
toReturn['id'] = this.id;
|
780
|
+
}
|
781
|
+
if (typeof this.title !== 'undefined') {
|
782
|
+
toReturn['title'] = this.title;
|
783
|
+
}
|
784
|
+
if (typeof this.description !== 'undefined') {
|
785
|
+
toReturn['description'] = this.description;
|
786
|
+
}
|
787
|
+
if (typeof this.dueDate !== 'undefined' && this.dueDate !== null) {
|
788
|
+
toReturn['dueDate'] = 'toApiJson' in this.dueDate ? this.dueDate.toApiJson() : this.dueDate;
|
789
|
+
}
|
790
|
+
if (typeof this.markedDone !== 'undefined') {
|
791
|
+
toReturn['markedDone'] = this.markedDone;
|
792
|
+
}
|
793
|
+
return toReturn;
|
794
|
+
}
|
795
|
+
}
|
796
|
+
class ListKLuTodoRequestListKLuTodoFilter {
|
797
|
+
static fromProto(proto) {
|
798
|
+
let m = new ListKLuTodoRequestListKLuTodoFilter();
|
799
|
+
m = Object.assign(m, proto);
|
800
|
+
return m;
|
801
|
+
}
|
802
|
+
constructor(kwargs) {
|
803
|
+
if (!kwargs) {
|
804
|
+
return;
|
805
|
+
}
|
806
|
+
Object.assign(this, kwargs);
|
807
|
+
}
|
808
|
+
toApiJson() {
|
809
|
+
const toReturn = {};
|
810
|
+
if (typeof this.id !== 'undefined') {
|
811
|
+
toReturn['id'] = this.id;
|
812
|
+
}
|
813
|
+
if (typeof this.title !== 'undefined') {
|
814
|
+
toReturn['title'] = this.title;
|
815
|
+
}
|
816
|
+
if (typeof this.markedDone !== 'undefined') {
|
817
|
+
toReturn['markedDone'] = this.markedDone;
|
818
|
+
}
|
819
|
+
return toReturn;
|
820
|
+
}
|
821
|
+
}
|
822
|
+
class ListKLuTodoRequest {
|
823
|
+
static fromProto(proto) {
|
824
|
+
let m = new ListKLuTodoRequest();
|
825
|
+
m = Object.assign(m, proto);
|
826
|
+
if (proto.filter) {
|
827
|
+
m.filter = ListKLuTodoRequestListKLuTodoFilter.fromProto(proto.filter);
|
828
|
+
}
|
829
|
+
return m;
|
830
|
+
}
|
831
|
+
constructor(kwargs) {
|
832
|
+
if (!kwargs) {
|
833
|
+
return;
|
834
|
+
}
|
835
|
+
Object.assign(this, kwargs);
|
836
|
+
}
|
837
|
+
toApiJson() {
|
838
|
+
const toReturn = {};
|
839
|
+
if (typeof this.filter !== 'undefined' && this.filter !== null) {
|
840
|
+
toReturn['filter'] = 'toApiJson' in this.filter ? this.filter.toApiJson() : this.filter;
|
841
|
+
}
|
842
|
+
return toReturn;
|
843
|
+
}
|
844
|
+
}
|
845
|
+
class ListKLuTodoResponse {
|
846
|
+
static fromProto(proto) {
|
847
|
+
let m = new ListKLuTodoResponse();
|
848
|
+
m = Object.assign(m, proto);
|
849
|
+
if (proto.todoItems) {
|
850
|
+
m.todoItems = proto.todoItems.map(KLuTodoItem.fromProto);
|
851
|
+
}
|
852
|
+
return m;
|
853
|
+
}
|
854
|
+
constructor(kwargs) {
|
855
|
+
if (!kwargs) {
|
856
|
+
return;
|
857
|
+
}
|
858
|
+
Object.assign(this, kwargs);
|
859
|
+
}
|
860
|
+
toApiJson() {
|
861
|
+
const toReturn = {};
|
862
|
+
if (typeof this.todoItems !== 'undefined' && this.todoItems !== null) {
|
863
|
+
toReturn['todoItems'] = 'toApiJson' in this.todoItems ? this.todoItems.toApiJson() : this.todoItems;
|
864
|
+
}
|
865
|
+
return toReturn;
|
866
|
+
}
|
867
|
+
}
|
868
|
+
class UpdateKLuTodoRequest {
|
869
|
+
static fromProto(proto) {
|
870
|
+
let m = new UpdateKLuTodoRequest();
|
871
|
+
m = Object.assign(m, proto);
|
872
|
+
if (proto.todoItem) {
|
873
|
+
m.todoItem = KLuTodoItem.fromProto(proto.todoItem);
|
874
|
+
}
|
875
|
+
return m;
|
876
|
+
}
|
877
|
+
constructor(kwargs) {
|
878
|
+
if (!kwargs) {
|
879
|
+
return;
|
880
|
+
}
|
881
|
+
Object.assign(this, kwargs);
|
882
|
+
}
|
883
|
+
toApiJson() {
|
884
|
+
const toReturn = {};
|
885
|
+
if (typeof this.todoItem !== 'undefined' && this.todoItem !== null) {
|
886
|
+
toReturn['todoItem'] = 'toApiJson' in this.todoItem ? this.todoItem.toApiJson() : this.todoItem;
|
887
|
+
}
|
888
|
+
return toReturn;
|
889
|
+
}
|
890
|
+
}
|
891
|
+
class UpdateKLuTodoResponse {
|
892
|
+
static fromProto(proto) {
|
893
|
+
let m = new UpdateKLuTodoResponse();
|
894
|
+
m = Object.assign(m, proto);
|
895
|
+
if (proto.todoItem) {
|
896
|
+
m.todoItem = KLuTodoItem.fromProto(proto.todoItem);
|
897
|
+
}
|
898
|
+
return m;
|
899
|
+
}
|
900
|
+
constructor(kwargs) {
|
901
|
+
if (!kwargs) {
|
902
|
+
return;
|
903
|
+
}
|
904
|
+
Object.assign(this, kwargs);
|
905
|
+
}
|
906
|
+
toApiJson() {
|
907
|
+
const toReturn = {};
|
908
|
+
if (typeof this.todoItem !== 'undefined' && this.todoItem !== null) {
|
909
|
+
toReturn['todoItem'] = 'toApiJson' in this.todoItem ? this.todoItem.toApiJson() : this.todoItem;
|
910
|
+
}
|
911
|
+
return toReturn;
|
912
|
+
}
|
913
|
+
}
|
914
|
+
|
618
915
|
function enumStringToValue(enumRef, value) {
|
619
916
|
if (typeof value === 'number') {
|
620
917
|
return value;
|
@@ -1009,6 +1306,52 @@ class CreateListResponse {
|
|
1009
1306
|
return toReturn;
|
1010
1307
|
}
|
1011
1308
|
}
|
1309
|
+
class CreateSBueckertToDoListItemRequest {
|
1310
|
+
static fromProto(proto) {
|
1311
|
+
let m = new CreateSBueckertToDoListItemRequest();
|
1312
|
+
m = Object.assign(m, proto);
|
1313
|
+
return m;
|
1314
|
+
}
|
1315
|
+
constructor(kwargs) {
|
1316
|
+
if (!kwargs) {
|
1317
|
+
return;
|
1318
|
+
}
|
1319
|
+
Object.assign(this, kwargs);
|
1320
|
+
}
|
1321
|
+
toApiJson() {
|
1322
|
+
const toReturn = {};
|
1323
|
+
if (typeof this.desc !== 'undefined') {
|
1324
|
+
toReturn['desc'] = this.desc;
|
1325
|
+
}
|
1326
|
+
if (typeof this.title !== 'undefined') {
|
1327
|
+
toReturn['title'] = this.title;
|
1328
|
+
}
|
1329
|
+
if (typeof this.date !== 'undefined') {
|
1330
|
+
toReturn['date'] = this.date;
|
1331
|
+
}
|
1332
|
+
return toReturn;
|
1333
|
+
}
|
1334
|
+
}
|
1335
|
+
class CreateSBueckertToDoListItemResponse {
|
1336
|
+
static fromProto(proto) {
|
1337
|
+
let m = new CreateSBueckertToDoListItemResponse();
|
1338
|
+
m = Object.assign(m, proto);
|
1339
|
+
return m;
|
1340
|
+
}
|
1341
|
+
constructor(kwargs) {
|
1342
|
+
if (!kwargs) {
|
1343
|
+
return;
|
1344
|
+
}
|
1345
|
+
Object.assign(this, kwargs);
|
1346
|
+
}
|
1347
|
+
toApiJson() {
|
1348
|
+
const toReturn = {};
|
1349
|
+
if (typeof this.itemId !== 'undefined') {
|
1350
|
+
toReturn['itemId'] = this.itemId;
|
1351
|
+
}
|
1352
|
+
return toReturn;
|
1353
|
+
}
|
1354
|
+
}
|
1012
1355
|
class CreateWHorrellTaskRequest {
|
1013
1356
|
static fromProto(proto) {
|
1014
1357
|
let m = new CreateWHorrellTaskRequest();
|
@@ -1112,6 +1455,26 @@ class DeleteListRequest {
|
|
1112
1455
|
return toReturn;
|
1113
1456
|
}
|
1114
1457
|
}
|
1458
|
+
class DeleteSBueckertToDoListItemRequest {
|
1459
|
+
static fromProto(proto) {
|
1460
|
+
let m = new DeleteSBueckertToDoListItemRequest();
|
1461
|
+
m = Object.assign(m, proto);
|
1462
|
+
return m;
|
1463
|
+
}
|
1464
|
+
constructor(kwargs) {
|
1465
|
+
if (!kwargs) {
|
1466
|
+
return;
|
1467
|
+
}
|
1468
|
+
Object.assign(this, kwargs);
|
1469
|
+
}
|
1470
|
+
toApiJson() {
|
1471
|
+
const toReturn = {};
|
1472
|
+
if (typeof this.itemId !== 'undefined') {
|
1473
|
+
toReturn['itemId'] = this.itemId;
|
1474
|
+
}
|
1475
|
+
return toReturn;
|
1476
|
+
}
|
1477
|
+
}
|
1115
1478
|
class DeleteWHorrellTaskRequest {
|
1116
1479
|
static fromProto(proto) {
|
1117
1480
|
let m = new DeleteWHorrellTaskRequest();
|
@@ -1262,12 +1625,61 @@ class GetHdoTodoRequest {
|
|
1262
1625
|
return toReturn;
|
1263
1626
|
}
|
1264
1627
|
}
|
1265
|
-
class GetHdoTodoResponse {
|
1628
|
+
class GetHdoTodoResponse {
|
1629
|
+
static fromProto(proto) {
|
1630
|
+
let m = new GetHdoTodoResponse();
|
1631
|
+
m = Object.assign(m, proto);
|
1632
|
+
if (proto.todo) {
|
1633
|
+
m.todo = HdoTodoItem.fromProto(proto.todo);
|
1634
|
+
}
|
1635
|
+
return m;
|
1636
|
+
}
|
1637
|
+
constructor(kwargs) {
|
1638
|
+
if (!kwargs) {
|
1639
|
+
return;
|
1640
|
+
}
|
1641
|
+
Object.assign(this, kwargs);
|
1642
|
+
}
|
1643
|
+
toApiJson() {
|
1644
|
+
const toReturn = {};
|
1645
|
+
if (typeof this.todo !== 'undefined' && this.todo !== null) {
|
1646
|
+
toReturn['todo'] = 'toApiJson' in this.todo ? this.todo.toApiJson() : this.todo;
|
1647
|
+
}
|
1648
|
+
return toReturn;
|
1649
|
+
}
|
1650
|
+
}
|
1651
|
+
class GetListRequest {
|
1652
|
+
static fromProto(proto) {
|
1653
|
+
let m = new GetListRequest();
|
1654
|
+
m = Object.assign(m, proto);
|
1655
|
+
return m;
|
1656
|
+
}
|
1657
|
+
constructor(kwargs) {
|
1658
|
+
if (!kwargs) {
|
1659
|
+
return;
|
1660
|
+
}
|
1661
|
+
Object.assign(this, kwargs);
|
1662
|
+
}
|
1663
|
+
toApiJson() {
|
1664
|
+
const toReturn = {};
|
1665
|
+
if (typeof this.id !== 'undefined') {
|
1666
|
+
toReturn['id'] = this.id;
|
1667
|
+
}
|
1668
|
+
if (typeof this.category !== 'undefined') {
|
1669
|
+
toReturn['category'] = this.category;
|
1670
|
+
}
|
1671
|
+
if (typeof this.status !== 'undefined') {
|
1672
|
+
toReturn['status'] = this.status;
|
1673
|
+
}
|
1674
|
+
return toReturn;
|
1675
|
+
}
|
1676
|
+
}
|
1677
|
+
class GetListResponse {
|
1266
1678
|
static fromProto(proto) {
|
1267
|
-
let m = new
|
1679
|
+
let m = new GetListResponse();
|
1268
1680
|
m = Object.assign(m, proto);
|
1269
|
-
if (proto.
|
1270
|
-
m.
|
1681
|
+
if (proto.item) {
|
1682
|
+
m.item = proto.item.map(TodoList.fromProto);
|
1271
1683
|
}
|
1272
1684
|
return m;
|
1273
1685
|
}
|
@@ -1279,15 +1691,15 @@ class GetHdoTodoResponse {
|
|
1279
1691
|
}
|
1280
1692
|
toApiJson() {
|
1281
1693
|
const toReturn = {};
|
1282
|
-
if (typeof this.
|
1283
|
-
toReturn['
|
1694
|
+
if (typeof this.item !== 'undefined' && this.item !== null) {
|
1695
|
+
toReturn['item'] = 'toApiJson' in this.item ? this.item.toApiJson() : this.item;
|
1284
1696
|
}
|
1285
1697
|
return toReturn;
|
1286
1698
|
}
|
1287
1699
|
}
|
1288
|
-
class
|
1700
|
+
class GetSBueckertToDoListItemRequest {
|
1289
1701
|
static fromProto(proto) {
|
1290
|
-
let m = new
|
1702
|
+
let m = new GetSBueckertToDoListItemRequest();
|
1291
1703
|
m = Object.assign(m, proto);
|
1292
1704
|
return m;
|
1293
1705
|
}
|
@@ -1299,24 +1711,18 @@ class GetListRequest {
|
|
1299
1711
|
}
|
1300
1712
|
toApiJson() {
|
1301
1713
|
const toReturn = {};
|
1302
|
-
if (typeof this.
|
1303
|
-
toReturn['
|
1304
|
-
}
|
1305
|
-
if (typeof this.category !== 'undefined') {
|
1306
|
-
toReturn['category'] = this.category;
|
1307
|
-
}
|
1308
|
-
if (typeof this.status !== 'undefined') {
|
1309
|
-
toReturn['status'] = this.status;
|
1714
|
+
if (typeof this.itemId !== 'undefined') {
|
1715
|
+
toReturn['itemId'] = this.itemId;
|
1310
1716
|
}
|
1311
1717
|
return toReturn;
|
1312
1718
|
}
|
1313
1719
|
}
|
1314
|
-
class
|
1720
|
+
class GetSBueckertToDoListItemResponse {
|
1315
1721
|
static fromProto(proto) {
|
1316
|
-
let m = new
|
1722
|
+
let m = new GetSBueckertToDoListItemResponse();
|
1317
1723
|
m = Object.assign(m, proto);
|
1318
1724
|
if (proto.item) {
|
1319
|
-
m.item = proto.item
|
1725
|
+
m.item = SBueckertToDoListItem.fromProto(proto.item);
|
1320
1726
|
}
|
1321
1727
|
return m;
|
1322
1728
|
}
|
@@ -1693,6 +2099,49 @@ class ListHdoTodoResponse {
|
|
1693
2099
|
return toReturn;
|
1694
2100
|
}
|
1695
2101
|
}
|
2102
|
+
class ListSBueckertToDoListItemRequest {
|
2103
|
+
static fromProto(proto) {
|
2104
|
+
let m = new ListSBueckertToDoListItemRequest();
|
2105
|
+
m = Object.assign(m, proto);
|
2106
|
+
return m;
|
2107
|
+
}
|
2108
|
+
constructor(kwargs) {
|
2109
|
+
if (!kwargs) {
|
2110
|
+
return;
|
2111
|
+
}
|
2112
|
+
Object.assign(this, kwargs);
|
2113
|
+
}
|
2114
|
+
toApiJson() {
|
2115
|
+
const toReturn = {};
|
2116
|
+
if (typeof this.resolved !== 'undefined') {
|
2117
|
+
toReturn['resolved'] = this.resolved;
|
2118
|
+
}
|
2119
|
+
return toReturn;
|
2120
|
+
}
|
2121
|
+
}
|
2122
|
+
class ListSBueckertToDoListItemResponse {
|
2123
|
+
static fromProto(proto) {
|
2124
|
+
let m = new ListSBueckertToDoListItemResponse();
|
2125
|
+
m = Object.assign(m, proto);
|
2126
|
+
if (proto.items) {
|
2127
|
+
m.items = proto.items.map(SBueckertToDoListItem.fromProto);
|
2128
|
+
}
|
2129
|
+
return m;
|
2130
|
+
}
|
2131
|
+
constructor(kwargs) {
|
2132
|
+
if (!kwargs) {
|
2133
|
+
return;
|
2134
|
+
}
|
2135
|
+
Object.assign(this, kwargs);
|
2136
|
+
}
|
2137
|
+
toApiJson() {
|
2138
|
+
const toReturn = {};
|
2139
|
+
if (typeof this.items !== 'undefined' && this.items !== null) {
|
2140
|
+
toReturn['items'] = 'toApiJson' in this.items ? this.items.toApiJson() : this.items;
|
2141
|
+
}
|
2142
|
+
return toReturn;
|
2143
|
+
}
|
2144
|
+
}
|
1696
2145
|
class ListWHorrellTasksRequest {
|
1697
2146
|
static fromProto(proto) {
|
1698
2147
|
let m = new ListWHorrellTasksRequest();
|
@@ -2033,6 +2482,61 @@ class NValleCreateTaskResponse {
|
|
2033
2482
|
return toReturn;
|
2034
2483
|
}
|
2035
2484
|
}
|
2485
|
+
class ResolveSBueckertToDoListItemRequest {
|
2486
|
+
static fromProto(proto) {
|
2487
|
+
let m = new ResolveSBueckertToDoListItemRequest();
|
2488
|
+
m = Object.assign(m, proto);
|
2489
|
+
return m;
|
2490
|
+
}
|
2491
|
+
constructor(kwargs) {
|
2492
|
+
if (!kwargs) {
|
2493
|
+
return;
|
2494
|
+
}
|
2495
|
+
Object.assign(this, kwargs);
|
2496
|
+
}
|
2497
|
+
toApiJson() {
|
2498
|
+
const toReturn = {};
|
2499
|
+
if (typeof this.itemId !== 'undefined') {
|
2500
|
+
toReturn['itemId'] = this.itemId;
|
2501
|
+
}
|
2502
|
+
return toReturn;
|
2503
|
+
}
|
2504
|
+
}
|
2505
|
+
class SBueckertToDoListItem {
|
2506
|
+
static fromProto(proto) {
|
2507
|
+
let m = new SBueckertToDoListItem();
|
2508
|
+
m = Object.assign(m, proto);
|
2509
|
+
return m;
|
2510
|
+
}
|
2511
|
+
constructor(kwargs) {
|
2512
|
+
if (!kwargs) {
|
2513
|
+
return;
|
2514
|
+
}
|
2515
|
+
Object.assign(this, kwargs);
|
2516
|
+
}
|
2517
|
+
toApiJson() {
|
2518
|
+
const toReturn = {};
|
2519
|
+
if (typeof this.itemId !== 'undefined') {
|
2520
|
+
toReturn['itemId'] = this.itemId;
|
2521
|
+
}
|
2522
|
+
if (typeof this.title !== 'undefined') {
|
2523
|
+
toReturn['title'] = this.title;
|
2524
|
+
}
|
2525
|
+
if (typeof this.desc !== 'undefined') {
|
2526
|
+
toReturn['desc'] = this.desc;
|
2527
|
+
}
|
2528
|
+
if (typeof this.date !== 'undefined') {
|
2529
|
+
toReturn['date'] = this.date;
|
2530
|
+
}
|
2531
|
+
if (typeof this.resolved !== 'undefined') {
|
2532
|
+
toReturn['resolved'] = this.resolved;
|
2533
|
+
}
|
2534
|
+
if (typeof this.deleted !== 'undefined') {
|
2535
|
+
toReturn['deleted'] = this.deleted;
|
2536
|
+
}
|
2537
|
+
return toReturn;
|
2538
|
+
}
|
2539
|
+
}
|
2036
2540
|
class TodoList {
|
2037
2541
|
static fromProto(proto) {
|
2038
2542
|
let m = new TodoList();
|
@@ -2114,6 +2618,35 @@ class UpdateHdoTodoResponse {
|
|
2114
2618
|
return toReturn;
|
2115
2619
|
}
|
2116
2620
|
}
|
2621
|
+
class UpdateSBueckertToDoListItemRequest {
|
2622
|
+
static fromProto(proto) {
|
2623
|
+
let m = new UpdateSBueckertToDoListItemRequest();
|
2624
|
+
m = Object.assign(m, proto);
|
2625
|
+
return m;
|
2626
|
+
}
|
2627
|
+
constructor(kwargs) {
|
2628
|
+
if (!kwargs) {
|
2629
|
+
return;
|
2630
|
+
}
|
2631
|
+
Object.assign(this, kwargs);
|
2632
|
+
}
|
2633
|
+
toApiJson() {
|
2634
|
+
const toReturn = {};
|
2635
|
+
if (typeof this.itemId !== 'undefined') {
|
2636
|
+
toReturn['itemId'] = this.itemId;
|
2637
|
+
}
|
2638
|
+
if (typeof this.title !== 'undefined') {
|
2639
|
+
toReturn['title'] = this.title;
|
2640
|
+
}
|
2641
|
+
if (typeof this.desc !== 'undefined') {
|
2642
|
+
toReturn['desc'] = this.desc;
|
2643
|
+
}
|
2644
|
+
if (typeof this.date !== 'undefined') {
|
2645
|
+
toReturn['date'] = this.date;
|
2646
|
+
}
|
2647
|
+
return toReturn;
|
2648
|
+
}
|
2649
|
+
}
|
2117
2650
|
class WHorrellTask {
|
2118
2651
|
static fromProto(proto) {
|
2119
2652
|
let m = new WHorrellTask();
|
@@ -2147,31 +2680,18 @@ class WHorrellTask {
|
|
2147
2680
|
}
|
2148
2681
|
}
|
2149
2682
|
|
2683
|
+
// *********************************
|
2684
|
+
// Code generated by sdkgen
|
2685
|
+
// DO NOT EDIT!.
|
2686
|
+
//
|
2687
|
+
// Objects Index.
|
2150
2688
|
// *********************************
|
2151
2689
|
|
2152
|
-
|
2153
|
-
|
2154
|
-
|
2155
|
-
|
2156
|
-
|
2157
|
-
'prod': 'developer-training-prod.apigateway.co',
|
2158
|
-
'production': 'developer-training-prod.apigateway.co',
|
2159
|
-
};
|
2160
|
-
class HostService {
|
2161
|
-
get host() {
|
2162
|
-
return hostMap[environment.toLowerCase()];
|
2163
|
-
}
|
2164
|
-
get hostWithScheme() {
|
2165
|
-
return 'https://' + this.host;
|
2166
|
-
}
|
2167
|
-
}
|
2168
|
-
HostService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: HostService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
2169
|
-
HostService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: HostService, providedIn: 'root' });
|
2170
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: HostService, decorators: [{
|
2171
|
-
type: Injectable,
|
2172
|
-
args: [{ providedIn: 'root' }]
|
2173
|
-
}] });
|
2174
|
-
|
2690
|
+
// *********************************
|
2691
|
+
// Code generated by sdkgen
|
2692
|
+
// DO NOT EDIT!.
|
2693
|
+
//
|
2694
|
+
// API Service.
|
2175
2695
|
// *********************************
|
2176
2696
|
class AHundalToDoProjectApiService {
|
2177
2697
|
constructor(http, hostService) {
|
@@ -2213,13 +2733,18 @@ class AHundalToDoProjectApiService {
|
|
2213
2733
|
.pipe(map(resp => AHundalGetSpecificTaskResponse.fromProto(resp)));
|
2214
2734
|
}
|
2215
2735
|
}
|
2216
|
-
AHundalToDoProjectApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2217
|
-
AHundalToDoProjectApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
2218
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
2736
|
+
AHundalToDoProjectApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AHundalToDoProjectApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
2737
|
+
AHundalToDoProjectApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AHundalToDoProjectApiService, providedIn: 'root' });
|
2738
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AHundalToDoProjectApiService, decorators: [{
|
2219
2739
|
type: Injectable,
|
2220
2740
|
args: [{ providedIn: 'root' }]
|
2221
2741
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
2222
2742
|
|
2743
|
+
// *********************************
|
2744
|
+
// Code generated by sdkgen
|
2745
|
+
// DO NOT EDIT!.
|
2746
|
+
//
|
2747
|
+
// API Service.
|
2223
2748
|
// *********************************
|
2224
2749
|
class BusinessQAApiService {
|
2225
2750
|
constructor(http, hostService) {
|
@@ -2245,13 +2770,18 @@ class BusinessQAApiService {
|
|
2245
2770
|
return this.http.post(this._host + "/developertraining.v1.BusinessQA/ReplaceBusinessQuestionsAnswers", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
2246
2771
|
}
|
2247
2772
|
}
|
2248
|
-
BusinessQAApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2249
|
-
BusinessQAApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
2250
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
2773
|
+
BusinessQAApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BusinessQAApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
2774
|
+
BusinessQAApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BusinessQAApiService, providedIn: 'root' });
|
2775
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BusinessQAApiService, decorators: [{
|
2251
2776
|
type: Injectable,
|
2252
2777
|
args: [{ providedIn: 'root' }]
|
2253
2778
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
2254
2779
|
|
2780
|
+
// *********************************
|
2781
|
+
// Code generated by sdkgen
|
2782
|
+
// DO NOT EDIT!.
|
2783
|
+
//
|
2784
|
+
// API Service.
|
2255
2785
|
// *********************************
|
2256
2786
|
class ECurrieListApiService {
|
2257
2787
|
constructor(http, hostService) {
|
@@ -2282,13 +2812,18 @@ class ECurrieListApiService {
|
|
2282
2812
|
return this.http.post(this._host + "/developertraining.v1.ECurrieList/Delete", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
2283
2813
|
}
|
2284
2814
|
}
|
2285
|
-
ECurrieListApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2286
|
-
ECurrieListApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
2287
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
2815
|
+
ECurrieListApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ECurrieListApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
2816
|
+
ECurrieListApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ECurrieListApiService, providedIn: 'root' });
|
2817
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ECurrieListApiService, decorators: [{
|
2288
2818
|
type: Injectable,
|
2289
2819
|
args: [{ providedIn: 'root' }]
|
2290
2820
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
2291
2821
|
|
2822
|
+
// *********************************
|
2823
|
+
// Code generated by sdkgen
|
2824
|
+
// DO NOT EDIT!.
|
2825
|
+
//
|
2826
|
+
// API Service.
|
2292
2827
|
// *********************************
|
2293
2828
|
class HdoTodoApiService {
|
2294
2829
|
constructor(http, hostService) {
|
@@ -2329,13 +2864,18 @@ class HdoTodoApiService {
|
|
2329
2864
|
.pipe(map(resp => GetHdoTodoResponse.fromProto(resp)));
|
2330
2865
|
}
|
2331
2866
|
}
|
2332
|
-
HdoTodoApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2333
|
-
HdoTodoApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
2334
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
2867
|
+
HdoTodoApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HdoTodoApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
2868
|
+
HdoTodoApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HdoTodoApiService, providedIn: 'root' });
|
2869
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: HdoTodoApiService, decorators: [{
|
2335
2870
|
type: Injectable,
|
2336
2871
|
args: [{ providedIn: 'root' }]
|
2337
2872
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
2338
2873
|
|
2874
|
+
// *********************************
|
2875
|
+
// Code generated by sdkgen
|
2876
|
+
// DO NOT EDIT!.
|
2877
|
+
//
|
2878
|
+
// API Service.
|
2339
2879
|
// *********************************
|
2340
2880
|
class IOlaleyeToDoQAApiService {
|
2341
2881
|
constructor(http, hostService) {
|
@@ -2377,13 +2917,70 @@ class IOlaleyeToDoQAApiService {
|
|
2377
2917
|
.pipe(map(resp => IOlaleyeListTasksResponse.fromProto(resp)));
|
2378
2918
|
}
|
2379
2919
|
}
|
2380
|
-
IOlaleyeToDoQAApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2381
|
-
IOlaleyeToDoQAApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
2382
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
2920
|
+
IOlaleyeToDoQAApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IOlaleyeToDoQAApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
2921
|
+
IOlaleyeToDoQAApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IOlaleyeToDoQAApiService, providedIn: 'root' });
|
2922
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IOlaleyeToDoQAApiService, decorators: [{
|
2923
|
+
type: Injectable,
|
2924
|
+
args: [{ providedIn: 'root' }]
|
2925
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
2926
|
+
|
2927
|
+
// *********************************
|
2928
|
+
// Code generated by sdkgen
|
2929
|
+
// DO NOT EDIT!.
|
2930
|
+
//
|
2931
|
+
// API Service.
|
2932
|
+
// *********************************
|
2933
|
+
class KLuTodoApiService {
|
2934
|
+
constructor(http, hostService) {
|
2935
|
+
this.http = http;
|
2936
|
+
this.hostService = hostService;
|
2937
|
+
this._host = this.hostService.hostWithScheme;
|
2938
|
+
}
|
2939
|
+
apiOptions() {
|
2940
|
+
return {
|
2941
|
+
headers: new HttpHeaders({
|
2942
|
+
'Content-Type': 'application/json'
|
2943
|
+
}),
|
2944
|
+
withCredentials: true
|
2945
|
+
};
|
2946
|
+
}
|
2947
|
+
createKLuTodoItem(r) {
|
2948
|
+
const request = (r.toApiJson) ? r : new CreateKLuTodoRequest(r);
|
2949
|
+
return this.http.post(this._host + "/developertraining.v1.KLuTodoService/CreateKLuTodoItem", request.toApiJson(), this.apiOptions())
|
2950
|
+
.pipe(map(resp => CreateKLuTodoResponse.fromProto(resp)));
|
2951
|
+
}
|
2952
|
+
deleteKLuTodoItem(r) {
|
2953
|
+
const request = (r.toApiJson) ? r : new DeleteKLuTodoRequest(r);
|
2954
|
+
return this.http.post(this._host + "/developertraining.v1.KLuTodoService/DeleteKLuTodoItem", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
2955
|
+
}
|
2956
|
+
getKLuTodoItem(r) {
|
2957
|
+
const request = (r.toApiJson) ? r : new GetKLuTodoRequest(r);
|
2958
|
+
return this.http.post(this._host + "/developertraining.v1.KLuTodoService/GetKLuTodoItem", request.toApiJson(), this.apiOptions())
|
2959
|
+
.pipe(map(resp => GetKLuTodoResponse.fromProto(resp)));
|
2960
|
+
}
|
2961
|
+
listKLuTodoItems(r) {
|
2962
|
+
const request = (r.toApiJson) ? r : new ListKLuTodoRequest(r);
|
2963
|
+
return this.http.post(this._host + "/developertraining.v1.KLuTodoService/ListKLuTodoItems", request.toApiJson(), this.apiOptions())
|
2964
|
+
.pipe(map(resp => ListKLuTodoResponse.fromProto(resp)));
|
2965
|
+
}
|
2966
|
+
updateKLuTodoItem(r) {
|
2967
|
+
const request = (r.toApiJson) ? r : new UpdateKLuTodoRequest(r);
|
2968
|
+
return this.http.post(this._host + "/developertraining.v1.KLuTodoService/UpdateKLuTodoItem", request.toApiJson(), this.apiOptions())
|
2969
|
+
.pipe(map(resp => UpdateKLuTodoResponse.fromProto(resp)));
|
2970
|
+
}
|
2971
|
+
}
|
2972
|
+
KLuTodoApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: KLuTodoApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
2973
|
+
KLuTodoApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: KLuTodoApiService, providedIn: 'root' });
|
2974
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: KLuTodoApiService, decorators: [{
|
2383
2975
|
type: Injectable,
|
2384
2976
|
args: [{ providedIn: 'root' }]
|
2385
2977
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
2386
2978
|
|
2979
|
+
// *********************************
|
2980
|
+
// Code generated by sdkgen
|
2981
|
+
// DO NOT EDIT!.
|
2982
|
+
//
|
2983
|
+
// API Service.
|
2387
2984
|
// *********************************
|
2388
2985
|
class KarishmaListApiService {
|
2389
2986
|
constructor(http, hostService) {
|
@@ -2414,13 +3011,18 @@ class KarishmaListApiService {
|
|
2414
3011
|
return this.http.post(this._host + "/developertraining.v1.KarishmaList/DeleteListR", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
2415
3012
|
}
|
2416
3013
|
}
|
2417
|
-
KarishmaListApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2418
|
-
KarishmaListApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
2419
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
3014
|
+
KarishmaListApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: KarishmaListApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
3015
|
+
KarishmaListApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: KarishmaListApiService, providedIn: 'root' });
|
3016
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: KarishmaListApiService, decorators: [{
|
2420
3017
|
type: Injectable,
|
2421
3018
|
args: [{ providedIn: 'root' }]
|
2422
3019
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
2423
3020
|
|
3021
|
+
// *********************************
|
3022
|
+
// Code generated by sdkgen
|
3023
|
+
// DO NOT EDIT!.
|
3024
|
+
//
|
3025
|
+
// API Service.
|
2424
3026
|
// *********************************
|
2425
3027
|
class LFossenierTodoApiService {
|
2426
3028
|
constructor(http, hostService) {
|
@@ -2454,13 +3056,18 @@ class LFossenierTodoApiService {
|
|
2454
3056
|
.pipe(map(resp => LoadLFossenierTaskResponse.fromProto(resp)));
|
2455
3057
|
}
|
2456
3058
|
}
|
2457
|
-
LFossenierTodoApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2458
|
-
LFossenierTodoApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
2459
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
3059
|
+
LFossenierTodoApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LFossenierTodoApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
3060
|
+
LFossenierTodoApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LFossenierTodoApiService, providedIn: 'root' });
|
3061
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LFossenierTodoApiService, decorators: [{
|
2460
3062
|
type: Injectable,
|
2461
3063
|
args: [{ providedIn: 'root' }]
|
2462
3064
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
2463
3065
|
|
3066
|
+
// *********************************
|
3067
|
+
// Code generated by sdkgen
|
3068
|
+
// DO NOT EDIT!.
|
3069
|
+
//
|
3070
|
+
// API Service.
|
2464
3071
|
// *********************************
|
2465
3072
|
class MMugotListQAApiService {
|
2466
3073
|
constructor(http, hostService) {
|
@@ -2501,13 +3108,18 @@ class MMugotListQAApiService {
|
|
2501
3108
|
.pipe(map(resp => MMugotUpdateTaskResponse.fromProto(resp)));
|
2502
3109
|
}
|
2503
3110
|
}
|
2504
|
-
MMugotListQAApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2505
|
-
MMugotListQAApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
2506
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
3111
|
+
MMugotListQAApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MMugotListQAApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
3112
|
+
MMugotListQAApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MMugotListQAApiService, providedIn: 'root' });
|
3113
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MMugotListQAApiService, decorators: [{
|
2507
3114
|
type: Injectable,
|
2508
3115
|
args: [{ providedIn: 'root' }]
|
2509
3116
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
2510
3117
|
|
3118
|
+
// *********************************
|
3119
|
+
// Code generated by sdkgen
|
3120
|
+
// DO NOT EDIT!.
|
3121
|
+
//
|
3122
|
+
// API Service.
|
2511
3123
|
// *********************************
|
2512
3124
|
class NValleTodoApiService {
|
2513
3125
|
constructor(http, hostService) {
|
@@ -2529,13 +3141,73 @@ class NValleTodoApiService {
|
|
2529
3141
|
.pipe(map(resp => NValleCreateTaskResponse.fromProto(resp)));
|
2530
3142
|
}
|
2531
3143
|
}
|
2532
|
-
NValleTodoApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2533
|
-
NValleTodoApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
2534
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
3144
|
+
NValleTodoApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NValleTodoApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
3145
|
+
NValleTodoApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NValleTodoApiService, providedIn: 'root' });
|
3146
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NValleTodoApiService, decorators: [{
|
3147
|
+
type: Injectable,
|
3148
|
+
args: [{ providedIn: 'root' }]
|
3149
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
3150
|
+
|
3151
|
+
// *********************************
|
3152
|
+
// Code generated by sdkgen
|
3153
|
+
// DO NOT EDIT!.
|
3154
|
+
//
|
3155
|
+
// API Service.
|
3156
|
+
// *********************************
|
3157
|
+
class SBueckertToDoListApiService {
|
3158
|
+
constructor(http, hostService) {
|
3159
|
+
this.http = http;
|
3160
|
+
this.hostService = hostService;
|
3161
|
+
this._host = this.hostService.hostWithScheme;
|
3162
|
+
}
|
3163
|
+
apiOptions() {
|
3164
|
+
return {
|
3165
|
+
headers: new HttpHeaders({
|
3166
|
+
'Content-Type': 'application/json'
|
3167
|
+
}),
|
3168
|
+
withCredentials: true
|
3169
|
+
};
|
3170
|
+
}
|
3171
|
+
createSBueckertToDoListItem(r) {
|
3172
|
+
const request = (r.toApiJson) ? r : new CreateSBueckertToDoListItemRequest(r);
|
3173
|
+
return this.http.post(this._host + "/developertraining.v1.SBueckertToDoList/CreateSBueckertToDoListItem", request.toApiJson(), this.apiOptions())
|
3174
|
+
.pipe(map(resp => CreateSBueckertToDoListItemResponse.fromProto(resp)));
|
3175
|
+
}
|
3176
|
+
deleteSBueckertToDoListItem(r) {
|
3177
|
+
const request = (r.toApiJson) ? r : new DeleteSBueckertToDoListItemRequest(r);
|
3178
|
+
return this.http.post(this._host + "/developertraining.v1.SBueckertToDoList/DeleteSBueckertToDoListItem", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
3179
|
+
}
|
3180
|
+
resolveSBueckertToDoListItem(r) {
|
3181
|
+
const request = (r.toApiJson) ? r : new ResolveSBueckertToDoListItemRequest(r);
|
3182
|
+
return this.http.post(this._host + "/developertraining.v1.SBueckertToDoList/ResolveSBueckertToDoListItem", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
3183
|
+
}
|
3184
|
+
updateSBueckertToDoListItem(r) {
|
3185
|
+
const request = (r.toApiJson) ? r : new UpdateSBueckertToDoListItemRequest(r);
|
3186
|
+
return this.http.post(this._host + "/developertraining.v1.SBueckertToDoList/UpdateSBueckertToDoListItem", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
3187
|
+
}
|
3188
|
+
listSBueckertToDoListItem(r) {
|
3189
|
+
const request = (r.toApiJson) ? r : new ListSBueckertToDoListItemRequest(r);
|
3190
|
+
return this.http.post(this._host + "/developertraining.v1.SBueckertToDoList/ListSBueckertToDoListItem", request.toApiJson(), this.apiOptions())
|
3191
|
+
.pipe(map(resp => ListSBueckertToDoListItemResponse.fromProto(resp)));
|
3192
|
+
}
|
3193
|
+
getSBueckertToDoListItem(r) {
|
3194
|
+
const request = (r.toApiJson) ? r : new GetSBueckertToDoListItemRequest(r);
|
3195
|
+
return this.http.post(this._host + "/developertraining.v1.SBueckertToDoList/GetSBueckertToDoListItem", request.toApiJson(), this.apiOptions())
|
3196
|
+
.pipe(map(resp => GetSBueckertToDoListItemResponse.fromProto(resp)));
|
3197
|
+
}
|
3198
|
+
}
|
3199
|
+
SBueckertToDoListApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SBueckertToDoListApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
3200
|
+
SBueckertToDoListApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SBueckertToDoListApiService, providedIn: 'root' });
|
3201
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SBueckertToDoListApiService, decorators: [{
|
2535
3202
|
type: Injectable,
|
2536
3203
|
args: [{ providedIn: 'root' }]
|
2537
3204
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
2538
3205
|
|
3206
|
+
// *********************************
|
3207
|
+
// Code generated by sdkgen
|
3208
|
+
// DO NOT EDIT!.
|
3209
|
+
//
|
3210
|
+
// API Service.
|
2539
3211
|
// *********************************
|
2540
3212
|
class TKabakovToDoApiService {
|
2541
3213
|
constructor(http, hostService) {
|
@@ -2577,13 +3249,18 @@ class TKabakovToDoApiService {
|
|
2577
3249
|
.pipe(map(resp => TKabakovListToDoItemsResponse.fromProto(resp)));
|
2578
3250
|
}
|
2579
3251
|
}
|
2580
|
-
TKabakovToDoApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2581
|
-
TKabakovToDoApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
2582
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
3252
|
+
TKabakovToDoApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TKabakovToDoApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
3253
|
+
TKabakovToDoApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TKabakovToDoApiService, providedIn: 'root' });
|
3254
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TKabakovToDoApiService, decorators: [{
|
2583
3255
|
type: Injectable,
|
2584
3256
|
args: [{ providedIn: 'root' }]
|
2585
3257
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
2586
3258
|
|
3259
|
+
// *********************************
|
3260
|
+
// Code generated by sdkgen
|
3261
|
+
// DO NOT EDIT!.
|
3262
|
+
//
|
3263
|
+
// API Service.
|
2587
3264
|
// *********************************
|
2588
3265
|
class WHorrellToDoApiService {
|
2589
3266
|
constructor(http, hostService) {
|
@@ -2622,18 +3299,23 @@ class WHorrellToDoApiService {
|
|
2622
3299
|
.pipe(map(resp => ListWHorrellTasksResponse.fromProto(resp)));
|
2623
3300
|
}
|
2624
3301
|
}
|
2625
|
-
WHorrellToDoApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
2626
|
-
WHorrellToDoApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.
|
2627
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
3302
|
+
WHorrellToDoApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WHorrellToDoApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
3303
|
+
WHorrellToDoApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WHorrellToDoApiService, providedIn: 'root' });
|
3304
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: WHorrellToDoApiService, decorators: [{
|
2628
3305
|
type: Injectable,
|
2629
3306
|
args: [{ providedIn: 'root' }]
|
2630
3307
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
2631
3308
|
|
2632
3309
|
// *********************************
|
3310
|
+
// Code generated by sdkgen
|
3311
|
+
// DO NOT EDIT!.
|
3312
|
+
//
|
3313
|
+
// Index.
|
3314
|
+
// *********************************
|
2633
3315
|
|
2634
3316
|
/**
|
2635
3317
|
* Generated bundle index. Do not edit.
|
2636
3318
|
*/
|
2637
3319
|
|
2638
|
-
export { AHundalAddTaskRequest, AHundalAddTaskResponse, AHundalDeleteTaskRequest, AHundalDeleteTaskResponse, AHundalEditTaskRequest, AHundalEditTaskResponse, AHundalGetSpecificTaskRequest, AHundalGetSpecificTaskResponse, AHundalGetTasksRequest, AHundalGetTasksResponse, AHundalTask, AHundalToDoProjectApiService, Access, BusinessQAApiService, CreateECurrieRequest, CreateECurrieResponse, CreateHdoTodoRequest, CreateHdoTodoResponse, CreateLFossenierTaskRequest, CreateListRequest, CreateListResponse, CreateWHorrellTaskRequest, DeleteECurrieRequest, DeleteHdoTodoRequest, DeleteHdoTodoResponse, DeleteLFossenierTaskRequest, DeleteListRequest, DeleteWHorrellTaskRequest, ECurrieListApiService, ECurrieTodoItem, EditWHorrellTaskRequest, FieldMask, GetBusinessQuestionsAnswersRequest, GetBusinessQuestionsAnswersResponse, GetECurrieListRequest, GetECurrieListResponse, GetHdoTodoRequest, GetHdoTodoResponse, GetListRequest, GetListResponse, GetWHorrellTaskRequest, GetWHorrellTaskResponse, HdoTodoApiService, HdoTodoItem, IOlaleyeCreateTaskRequest, IOlaleyeCreateTaskResponse, IOlaleyeDeleteTaskRequest, IOlaleyeDeleteTaskResponse, IOlaleyeEditTaskRequest, IOlaleyeEditTaskResponse, IOlaleyeGetTaskRequest, IOlaleyeGetTaskResponse, IOlaleyeListTasksRequest, IOlaleyeListTasksResponse, IOlaleyeTask, IOlaleyeToDoQAApiService, KarishmaListApiService, LFossenierTodoApiService, ListHdoTodoRequest, ListHdoTodoResponse, ListWHorrellTasksRequest, ListWHorrellTasksResponse, LoadLFossenierTaskRequest, LoadLFossenierTaskResponse, MMugotCreateTaskRequest, MMugotCreateTaskResponse, MMugotDeleteTaskRequest, MMugotGetTaskRequest, MMugotGetTaskResponse, MMugotListQAApiService, MMugotListTasksRequest, MMugotListTasksResponse, MMugotTask, MMugotUpdateTaskRequest, MMugotUpdateTaskResponse, NValleCreateTaskRequest, NValleCreateTaskResponse, NValleTodoApiService, QuestionsAnswers, ReplaceBusinessQuestionsAnswersRequest, TKabakovAddToDoItemRequest, TKabakovAddToDoItemResponse, TKabakovDeleteToDoItemRequest, TKabakovDeleteToDoItemResponse, TKabakovGetToDoItemRequest, TKabakovGetToDoItemResponse, TKabakovListToDoItemsRequest, TKabakovListToDoItemsResponse, TKabakovToDoApiService, TKabakovToDoId, TKabakovToDoItem, TKabakovUpdateToDoItemRequest, TKabakovUpdateToDoItemResponse, Task, TodoList, TodoTaskMessage, ToggleFinishedLFossenierTaskRequest, UpdateHdoTodoRequest, UpdateHdoTodoResponse, WHorrellTask, WHorrellToDoApiService };
|
3320
|
+
export { AHundalAddTaskRequest, AHundalAddTaskResponse, AHundalDeleteTaskRequest, AHundalDeleteTaskResponse, AHundalEditTaskRequest, AHundalEditTaskResponse, AHundalGetSpecificTaskRequest, AHundalGetSpecificTaskResponse, AHundalGetTasksRequest, AHundalGetTasksResponse, AHundalTask, AHundalToDoProjectApiService, Access, BusinessQAApiService, CreateECurrieRequest, CreateECurrieResponse, CreateHdoTodoRequest, CreateHdoTodoResponse, CreateKLuTodoRequest, CreateKLuTodoResponse, CreateLFossenierTaskRequest, CreateListRequest, CreateListResponse, CreateSBueckertToDoListItemRequest, CreateSBueckertToDoListItemResponse, CreateWHorrellTaskRequest, DeleteECurrieRequest, DeleteHdoTodoRequest, DeleteHdoTodoResponse, DeleteKLuTodoRequest, DeleteLFossenierTaskRequest, DeleteListRequest, DeleteSBueckertToDoListItemRequest, DeleteWHorrellTaskRequest, ECurrieListApiService, ECurrieTodoItem, EditWHorrellTaskRequest, FieldMask, GetBusinessQuestionsAnswersRequest, GetBusinessQuestionsAnswersResponse, GetECurrieListRequest, GetECurrieListResponse, GetHdoTodoRequest, GetHdoTodoResponse, GetKLuTodoRequest, GetKLuTodoResponse, GetListRequest, GetListResponse, GetSBueckertToDoListItemRequest, GetSBueckertToDoListItemResponse, GetWHorrellTaskRequest, GetWHorrellTaskResponse, HdoTodoApiService, HdoTodoItem, HostService, IOlaleyeCreateTaskRequest, IOlaleyeCreateTaskResponse, IOlaleyeDeleteTaskRequest, IOlaleyeDeleteTaskResponse, IOlaleyeEditTaskRequest, IOlaleyeEditTaskResponse, IOlaleyeGetTaskRequest, IOlaleyeGetTaskResponse, IOlaleyeListTasksRequest, IOlaleyeListTasksResponse, IOlaleyeTask, IOlaleyeToDoQAApiService, KLuTodoApiService, KLuTodoItem, KarishmaListApiService, LFossenierTodoApiService, ListHdoTodoRequest, ListHdoTodoResponse, ListKLuTodoRequest, ListKLuTodoRequestListKLuTodoFilter, ListKLuTodoResponse, ListSBueckertToDoListItemRequest, ListSBueckertToDoListItemResponse, ListWHorrellTasksRequest, ListWHorrellTasksResponse, LoadLFossenierTaskRequest, LoadLFossenierTaskResponse, MMugotCreateTaskRequest, MMugotCreateTaskResponse, MMugotDeleteTaskRequest, MMugotGetTaskRequest, MMugotGetTaskResponse, MMugotListQAApiService, MMugotListTasksRequest, MMugotListTasksResponse, MMugotTask, MMugotUpdateTaskRequest, MMugotUpdateTaskResponse, NValleCreateTaskRequest, NValleCreateTaskResponse, NValleTodoApiService, QuestionsAnswers, ReplaceBusinessQuestionsAnswersRequest, ResolveSBueckertToDoListItemRequest, SBueckertToDoListApiService, SBueckertToDoListItem, TKabakovAddToDoItemRequest, TKabakovAddToDoItemResponse, TKabakovDeleteToDoItemRequest, TKabakovDeleteToDoItemResponse, TKabakovGetToDoItemRequest, TKabakovGetToDoItemResponse, TKabakovListToDoItemsRequest, TKabakovListToDoItemsResponse, TKabakovToDoApiService, TKabakovToDoId, TKabakovToDoItem, TKabakovUpdateToDoItemRequest, TKabakovUpdateToDoItemResponse, Task, TodoList, TodoTaskMessage, ToggleFinishedLFossenierTaskRequest, UpdateHdoTodoRequest, UpdateHdoTodoResponse, UpdateKLuTodoRequest, UpdateKLuTodoResponse, UpdateSBueckertToDoListItemRequest, WHorrellTask, WHorrellToDoApiService };
|
2639
3321
|
//# sourceMappingURL=vendasta-developer-training.mjs.map
|