@vendasta/developer-training 0.12.1 → 0.12.3
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/_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/tkabakovtodo.interface.mjs +1 -1
- package/esm2020/lib/_internal/karishma-list.api.service.mjs +50 -0
- package/esm2020/lib/_internal/n-valle-todo.api.service.mjs +41 -0
- package/esm2020/lib/_internal/objects/api.mjs +227 -1
- package/esm2020/lib/_internal/objects/index.mjs +3 -3
- package/esm2020/lib/_internal/objects/tkabakovtodo.mjs +13 -1
- package/fesm2015/vendasta-developer-training.mjs +439 -136
- package/fesm2015/vendasta-developer-training.mjs.map +1 -1
- package/fesm2020/vendasta-developer-training.mjs +439 -136
- package/fesm2020/vendasta-developer-training.mjs.map +1 -1
- 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 -2
- package/lib/_internal/interfaces/tkabakovtodo.interface.d.ts +2 -0
- package/lib/_internal/karishma-list.api.service.d.ts +18 -0
- package/lib/_internal/n-valle-todo.api.service.d.ts +16 -0
- package/lib/_internal/objects/api.d.ts +64 -0
- package/lib/_internal/objects/index.d.ts +2 -2
- package/lib/_internal/objects/tkabakovtodo.d.ts +2 -0
- package/package.json +1 -1
@@ -160,9 +160,9 @@ function enumStringToValue$3(enumRef, value) {
|
|
160
160
|
}
|
161
161
|
return enumRef[value];
|
162
162
|
}
|
163
|
-
class
|
163
|
+
class CreateLFossenierTaskRequest {
|
164
164
|
static fromProto(proto) {
|
165
|
-
let m = new
|
165
|
+
let m = new CreateLFossenierTaskRequest();
|
166
166
|
m = Object.assign(m, proto);
|
167
167
|
return m;
|
168
168
|
}
|
@@ -174,22 +174,16 @@ class TKabakovAddToDoItemRequest {
|
|
174
174
|
}
|
175
175
|
toApiJson() {
|
176
176
|
const toReturn = {};
|
177
|
-
if (typeof this.
|
178
|
-
toReturn['
|
179
|
-
}
|
180
|
-
if (typeof this.description !== 'undefined') {
|
181
|
-
toReturn['description'] = this.description;
|
177
|
+
if (typeof this.taskName !== 'undefined') {
|
178
|
+
toReturn['taskName'] = this.taskName;
|
182
179
|
}
|
183
180
|
return toReturn;
|
184
181
|
}
|
185
182
|
}
|
186
|
-
class
|
183
|
+
class DeleteLFossenierTaskRequest {
|
187
184
|
static fromProto(proto) {
|
188
|
-
let m = new
|
185
|
+
let m = new DeleteLFossenierTaskRequest();
|
189
186
|
m = Object.assign(m, proto);
|
190
|
-
if (proto.todoItem) {
|
191
|
-
m.todoItem = TKabakovToDoItem.fromProto(proto.todoItem);
|
192
|
-
}
|
193
187
|
return m;
|
194
188
|
}
|
195
189
|
constructor(kwargs) {
|
@@ -200,15 +194,18 @@ class TKabakovAddToDoItemResponse {
|
|
200
194
|
}
|
201
195
|
toApiJson() {
|
202
196
|
const toReturn = {};
|
203
|
-
if (typeof this.
|
204
|
-
toReturn['
|
197
|
+
if (typeof this.taskId !== 'undefined') {
|
198
|
+
toReturn['taskId'] = this.taskId;
|
199
|
+
}
|
200
|
+
if (typeof this.taskName !== 'undefined') {
|
201
|
+
toReturn['taskName'] = this.taskName;
|
205
202
|
}
|
206
203
|
return toReturn;
|
207
204
|
}
|
208
205
|
}
|
209
|
-
class
|
206
|
+
class LoadLFossenierTaskRequest {
|
210
207
|
static fromProto(proto) {
|
211
|
-
let m = new
|
208
|
+
let m = new LoadLFossenierTaskRequest();
|
212
209
|
m = Object.assign(m, proto);
|
213
210
|
return m;
|
214
211
|
}
|
@@ -220,16 +217,19 @@ class TKabakovDeleteToDoItemRequest {
|
|
220
217
|
}
|
221
218
|
toApiJson() {
|
222
219
|
const toReturn = {};
|
223
|
-
if (typeof this.
|
224
|
-
toReturn['
|
220
|
+
if (typeof this.finished !== 'undefined') {
|
221
|
+
toReturn['finished'] = this.finished;
|
225
222
|
}
|
226
223
|
return toReturn;
|
227
224
|
}
|
228
225
|
}
|
229
|
-
class
|
226
|
+
class LoadLFossenierTaskResponse {
|
230
227
|
static fromProto(proto) {
|
231
|
-
let m = new
|
228
|
+
let m = new LoadLFossenierTaskResponse();
|
232
229
|
m = Object.assign(m, proto);
|
230
|
+
if (proto.todoTasks) {
|
231
|
+
m.todoTasks = proto.todoTasks.map(TodoTaskMessage.fromProto);
|
232
|
+
}
|
233
233
|
return m;
|
234
234
|
}
|
235
235
|
constructor(kwargs) {
|
@@ -240,15 +240,15 @@ class TKabakovDeleteToDoItemResponse {
|
|
240
240
|
}
|
241
241
|
toApiJson() {
|
242
242
|
const toReturn = {};
|
243
|
-
if (typeof this.
|
244
|
-
toReturn['
|
243
|
+
if (typeof this.todoTasks !== 'undefined' && this.todoTasks !== null) {
|
244
|
+
toReturn['todoTasks'] = 'toApiJson' in this.todoTasks ? this.todoTasks.toApiJson() : this.todoTasks;
|
245
245
|
}
|
246
246
|
return toReturn;
|
247
247
|
}
|
248
248
|
}
|
249
|
-
class
|
249
|
+
class TodoTaskMessage {
|
250
250
|
static fromProto(proto) {
|
251
|
-
let m = new
|
251
|
+
let m = new TodoTaskMessage();
|
252
252
|
m = Object.assign(m, proto);
|
253
253
|
return m;
|
254
254
|
}
|
@@ -260,19 +260,22 @@ class TKabakovGetToDoItemRequest {
|
|
260
260
|
}
|
261
261
|
toApiJson() {
|
262
262
|
const toReturn = {};
|
263
|
-
if (typeof this.
|
264
|
-
toReturn['
|
263
|
+
if (typeof this.taskNames !== 'undefined') {
|
264
|
+
toReturn['taskNames'] = this.taskNames;
|
265
|
+
}
|
266
|
+
if (typeof this.finished !== 'undefined') {
|
267
|
+
toReturn['finished'] = this.finished;
|
268
|
+
}
|
269
|
+
if (typeof this.taskId !== 'undefined') {
|
270
|
+
toReturn['taskId'] = this.taskId;
|
265
271
|
}
|
266
272
|
return toReturn;
|
267
273
|
}
|
268
274
|
}
|
269
|
-
class
|
275
|
+
class ToggleFinishedLFossenierTaskRequest {
|
270
276
|
static fromProto(proto) {
|
271
|
-
let m = new
|
277
|
+
let m = new ToggleFinishedLFossenierTaskRequest();
|
272
278
|
m = Object.assign(m, proto);
|
273
|
-
if (proto.todoItem) {
|
274
|
-
m.todoItem = TKabakovToDoItem.fromProto(proto.todoItem);
|
275
|
-
}
|
276
279
|
return m;
|
277
280
|
}
|
278
281
|
constructor(kwargs) {
|
@@ -283,15 +286,28 @@ class TKabakovGetToDoItemResponse {
|
|
283
286
|
}
|
284
287
|
toApiJson() {
|
285
288
|
const toReturn = {};
|
286
|
-
if (typeof this.
|
287
|
-
toReturn['
|
289
|
+
if (typeof this.taskId !== 'undefined') {
|
290
|
+
toReturn['taskId'] = this.taskId;
|
291
|
+
}
|
292
|
+
if (typeof this.taskName !== 'undefined') {
|
293
|
+
toReturn['taskName'] = this.taskName;
|
294
|
+
}
|
295
|
+
if (typeof this.finished !== 'undefined') {
|
296
|
+
toReturn['finished'] = this.finished;
|
288
297
|
}
|
289
298
|
return toReturn;
|
290
299
|
}
|
291
300
|
}
|
292
|
-
|
301
|
+
|
302
|
+
function enumStringToValue$2(enumRef, value) {
|
303
|
+
if (typeof value === 'number') {
|
304
|
+
return value;
|
305
|
+
}
|
306
|
+
return enumRef[value];
|
307
|
+
}
|
308
|
+
class Access {
|
293
309
|
static fromProto(proto) {
|
294
|
-
let m = new
|
310
|
+
let m = new Access();
|
295
311
|
m = Object.assign(m, proto);
|
296
312
|
return m;
|
297
313
|
}
|
@@ -303,15 +319,28 @@ class TKabakovListToDoItemsRequest {
|
|
303
319
|
}
|
304
320
|
toApiJson() {
|
305
321
|
const toReturn = {};
|
322
|
+
if (typeof this.scope !== 'undefined') {
|
323
|
+
toReturn['scope'] = this.scope;
|
324
|
+
}
|
325
|
+
if (typeof this.public !== 'undefined') {
|
326
|
+
toReturn['public'] = this.public;
|
327
|
+
}
|
306
328
|
return toReturn;
|
307
329
|
}
|
308
330
|
}
|
309
|
-
|
331
|
+
|
332
|
+
function enumStringToValue$1(enumRef, value) {
|
333
|
+
if (typeof value === 'number') {
|
334
|
+
return value;
|
335
|
+
}
|
336
|
+
return enumRef[value];
|
337
|
+
}
|
338
|
+
class TKabakovAddToDoItemRequest {
|
310
339
|
static fromProto(proto) {
|
311
|
-
let m = new
|
340
|
+
let m = new TKabakovAddToDoItemRequest();
|
312
341
|
m = Object.assign(m, proto);
|
313
|
-
if (proto.
|
314
|
-
m.
|
342
|
+
if (proto.dueDate) {
|
343
|
+
m.dueDate = new Date(proto.dueDate);
|
315
344
|
}
|
316
345
|
return m;
|
317
346
|
}
|
@@ -323,16 +352,25 @@ class TKabakovListToDoItemsResponse {
|
|
323
352
|
}
|
324
353
|
toApiJson() {
|
325
354
|
const toReturn = {};
|
326
|
-
if (typeof this.
|
327
|
-
toReturn['
|
355
|
+
if (typeof this.title !== 'undefined') {
|
356
|
+
toReturn['title'] = this.title;
|
357
|
+
}
|
358
|
+
if (typeof this.description !== 'undefined') {
|
359
|
+
toReturn['description'] = this.description;
|
360
|
+
}
|
361
|
+
if (typeof this.dueDate !== 'undefined' && this.dueDate !== null) {
|
362
|
+
toReturn['dueDate'] = 'toApiJson' in this.dueDate ? this.dueDate.toApiJson() : this.dueDate;
|
328
363
|
}
|
329
364
|
return toReturn;
|
330
365
|
}
|
331
366
|
}
|
332
|
-
class
|
367
|
+
class TKabakovAddToDoItemResponse {
|
333
368
|
static fromProto(proto) {
|
334
|
-
let m = new
|
369
|
+
let m = new TKabakovAddToDoItemResponse();
|
335
370
|
m = Object.assign(m, proto);
|
371
|
+
if (proto.todoItem) {
|
372
|
+
m.todoItem = TKabakovToDoItem.fromProto(proto.todoItem);
|
373
|
+
}
|
336
374
|
return m;
|
337
375
|
}
|
338
376
|
constructor(kwargs) {
|
@@ -343,15 +381,15 @@ class TKabakovToDoId {
|
|
343
381
|
}
|
344
382
|
toApiJson() {
|
345
383
|
const toReturn = {};
|
346
|
-
if (typeof this.
|
347
|
-
toReturn['
|
384
|
+
if (typeof this.todoItem !== 'undefined' && this.todoItem !== null) {
|
385
|
+
toReturn['todoItem'] = 'toApiJson' in this.todoItem ? this.todoItem.toApiJson() : this.todoItem;
|
348
386
|
}
|
349
387
|
return toReturn;
|
350
388
|
}
|
351
389
|
}
|
352
|
-
class
|
390
|
+
class TKabakovDeleteToDoItemRequest {
|
353
391
|
static fromProto(proto) {
|
354
|
-
let m = new
|
392
|
+
let m = new TKabakovDeleteToDoItemRequest();
|
355
393
|
m = Object.assign(m, proto);
|
356
394
|
return m;
|
357
395
|
}
|
@@ -366,28 +404,13 @@ class TKabakovToDoItem {
|
|
366
404
|
if (typeof this.todoId !== 'undefined') {
|
367
405
|
toReturn['todoId'] = this.todoId;
|
368
406
|
}
|
369
|
-
if (typeof this.title !== 'undefined') {
|
370
|
-
toReturn['title'] = this.title;
|
371
|
-
}
|
372
|
-
if (typeof this.description !== 'undefined') {
|
373
|
-
toReturn['description'] = this.description;
|
374
|
-
}
|
375
|
-
if (typeof this.isDone !== 'undefined') {
|
376
|
-
toReturn['isDone'] = this.isDone;
|
377
|
-
}
|
378
|
-
if (typeof this.deleted !== 'undefined') {
|
379
|
-
toReturn['deleted'] = this.deleted;
|
380
|
-
}
|
381
407
|
return toReturn;
|
382
408
|
}
|
383
409
|
}
|
384
|
-
class
|
410
|
+
class TKabakovDeleteToDoItemResponse {
|
385
411
|
static fromProto(proto) {
|
386
|
-
let m = new
|
412
|
+
let m = new TKabakovDeleteToDoItemResponse();
|
387
413
|
m = Object.assign(m, proto);
|
388
|
-
if (proto.todoItem) {
|
389
|
-
m.todoItem = TKabakovToDoItem.fromProto(proto.todoItem);
|
390
|
-
}
|
391
414
|
return m;
|
392
415
|
}
|
393
416
|
constructor(kwargs) {
|
@@ -398,19 +421,16 @@ class TKabakovUpdateToDoItemRequest {
|
|
398
421
|
}
|
399
422
|
toApiJson() {
|
400
423
|
const toReturn = {};
|
401
|
-
if (typeof this.
|
402
|
-
toReturn['
|
424
|
+
if (typeof this.todoId !== 'undefined') {
|
425
|
+
toReturn['todoId'] = this.todoId;
|
403
426
|
}
|
404
427
|
return toReturn;
|
405
428
|
}
|
406
429
|
}
|
407
|
-
class
|
430
|
+
class TKabakovGetToDoItemRequest {
|
408
431
|
static fromProto(proto) {
|
409
|
-
let m = new
|
432
|
+
let m = new TKabakovGetToDoItemRequest();
|
410
433
|
m = Object.assign(m, proto);
|
411
|
-
if (proto.todoItem) {
|
412
|
-
m.todoItem = TKabakovToDoItem.fromProto(proto.todoItem);
|
413
|
-
}
|
414
434
|
return m;
|
415
435
|
}
|
416
436
|
constructor(kwargs) {
|
@@ -421,23 +441,19 @@ class TKabakovUpdateToDoItemResponse {
|
|
421
441
|
}
|
422
442
|
toApiJson() {
|
423
443
|
const toReturn = {};
|
424
|
-
if (typeof this.
|
425
|
-
toReturn['
|
444
|
+
if (typeof this.todoId !== 'undefined') {
|
445
|
+
toReturn['todoId'] = this.todoId;
|
426
446
|
}
|
427
447
|
return toReturn;
|
428
448
|
}
|
429
449
|
}
|
430
|
-
|
431
|
-
function enumStringToValue$2(enumRef, value) {
|
432
|
-
if (typeof value === 'number') {
|
433
|
-
return value;
|
434
|
-
}
|
435
|
-
return enumRef[value];
|
436
|
-
}
|
437
|
-
class CreateLFossenierTaskRequest {
|
450
|
+
class TKabakovGetToDoItemResponse {
|
438
451
|
static fromProto(proto) {
|
439
|
-
let m = new
|
452
|
+
let m = new TKabakovGetToDoItemResponse();
|
440
453
|
m = Object.assign(m, proto);
|
454
|
+
if (proto.todoItem) {
|
455
|
+
m.todoItem = TKabakovToDoItem.fromProto(proto.todoItem);
|
456
|
+
}
|
441
457
|
return m;
|
442
458
|
}
|
443
459
|
constructor(kwargs) {
|
@@ -448,15 +464,15 @@ class CreateLFossenierTaskRequest {
|
|
448
464
|
}
|
449
465
|
toApiJson() {
|
450
466
|
const toReturn = {};
|
451
|
-
if (typeof this.
|
452
|
-
toReturn['
|
467
|
+
if (typeof this.todoItem !== 'undefined' && this.todoItem !== null) {
|
468
|
+
toReturn['todoItem'] = 'toApiJson' in this.todoItem ? this.todoItem.toApiJson() : this.todoItem;
|
453
469
|
}
|
454
470
|
return toReturn;
|
455
471
|
}
|
456
472
|
}
|
457
|
-
class
|
473
|
+
class TKabakovListToDoItemsRequest {
|
458
474
|
static fromProto(proto) {
|
459
|
-
let m = new
|
475
|
+
let m = new TKabakovListToDoItemsRequest();
|
460
476
|
m = Object.assign(m, proto);
|
461
477
|
return m;
|
462
478
|
}
|
@@ -468,19 +484,16 @@ class DeleteLFossenierTaskRequest {
|
|
468
484
|
}
|
469
485
|
toApiJson() {
|
470
486
|
const toReturn = {};
|
471
|
-
if (typeof this.taskId !== 'undefined') {
|
472
|
-
toReturn['taskId'] = this.taskId;
|
473
|
-
}
|
474
|
-
if (typeof this.taskName !== 'undefined') {
|
475
|
-
toReturn['taskName'] = this.taskName;
|
476
|
-
}
|
477
487
|
return toReturn;
|
478
488
|
}
|
479
489
|
}
|
480
|
-
class
|
490
|
+
class TKabakovListToDoItemsResponse {
|
481
491
|
static fromProto(proto) {
|
482
|
-
let m = new
|
492
|
+
let m = new TKabakovListToDoItemsResponse();
|
483
493
|
m = Object.assign(m, proto);
|
494
|
+
if (proto.todoItems) {
|
495
|
+
m.todoItems = proto.todoItems.map(TKabakovToDoItem.fromProto);
|
496
|
+
}
|
484
497
|
return m;
|
485
498
|
}
|
486
499
|
constructor(kwargs) {
|
@@ -491,19 +504,16 @@ class LoadLFossenierTaskRequest {
|
|
491
504
|
}
|
492
505
|
toApiJson() {
|
493
506
|
const toReturn = {};
|
494
|
-
if (typeof this.
|
495
|
-
toReturn['
|
507
|
+
if (typeof this.todoItems !== 'undefined' && this.todoItems !== null) {
|
508
|
+
toReturn['todoItems'] = 'toApiJson' in this.todoItems ? this.todoItems.toApiJson() : this.todoItems;
|
496
509
|
}
|
497
510
|
return toReturn;
|
498
511
|
}
|
499
512
|
}
|
500
|
-
class
|
513
|
+
class TKabakovToDoId {
|
501
514
|
static fromProto(proto) {
|
502
|
-
let m = new
|
515
|
+
let m = new TKabakovToDoId();
|
503
516
|
m = Object.assign(m, proto);
|
504
|
-
if (proto.todoTasks) {
|
505
|
-
m.todoTasks = proto.todoTasks.map(TodoTaskMessage.fromProto);
|
506
|
-
}
|
507
517
|
return m;
|
508
518
|
}
|
509
519
|
constructor(kwargs) {
|
@@ -514,16 +524,19 @@ class LoadLFossenierTaskResponse {
|
|
514
524
|
}
|
515
525
|
toApiJson() {
|
516
526
|
const toReturn = {};
|
517
|
-
if (typeof this.
|
518
|
-
toReturn['
|
527
|
+
if (typeof this.todoId !== 'undefined') {
|
528
|
+
toReturn['todoId'] = this.todoId;
|
519
529
|
}
|
520
530
|
return toReturn;
|
521
531
|
}
|
522
532
|
}
|
523
|
-
class
|
533
|
+
class TKabakovToDoItem {
|
524
534
|
static fromProto(proto) {
|
525
|
-
let m = new
|
535
|
+
let m = new TKabakovToDoItem();
|
526
536
|
m = Object.assign(m, proto);
|
537
|
+
if (proto.dueDate) {
|
538
|
+
m.dueDate = new Date(proto.dueDate);
|
539
|
+
}
|
527
540
|
return m;
|
528
541
|
}
|
529
542
|
constructor(kwargs) {
|
@@ -534,22 +547,34 @@ class TodoTaskMessage {
|
|
534
547
|
}
|
535
548
|
toApiJson() {
|
536
549
|
const toReturn = {};
|
537
|
-
if (typeof this.
|
538
|
-
toReturn['
|
550
|
+
if (typeof this.todoId !== 'undefined') {
|
551
|
+
toReturn['todoId'] = this.todoId;
|
539
552
|
}
|
540
|
-
if (typeof this.
|
541
|
-
toReturn['
|
553
|
+
if (typeof this.title !== 'undefined') {
|
554
|
+
toReturn['title'] = this.title;
|
542
555
|
}
|
543
|
-
if (typeof this.
|
544
|
-
toReturn['
|
556
|
+
if (typeof this.description !== 'undefined') {
|
557
|
+
toReturn['description'] = this.description;
|
558
|
+
}
|
559
|
+
if (typeof this.isDone !== 'undefined') {
|
560
|
+
toReturn['isDone'] = this.isDone;
|
561
|
+
}
|
562
|
+
if (typeof this.deleted !== 'undefined') {
|
563
|
+
toReturn['deleted'] = this.deleted;
|
564
|
+
}
|
565
|
+
if (typeof this.dueDate !== 'undefined' && this.dueDate !== null) {
|
566
|
+
toReturn['dueDate'] = 'toApiJson' in this.dueDate ? this.dueDate.toApiJson() : this.dueDate;
|
545
567
|
}
|
546
568
|
return toReturn;
|
547
569
|
}
|
548
570
|
}
|
549
|
-
class
|
571
|
+
class TKabakovUpdateToDoItemRequest {
|
550
572
|
static fromProto(proto) {
|
551
|
-
let m = new
|
573
|
+
let m = new TKabakovUpdateToDoItemRequest();
|
552
574
|
m = Object.assign(m, proto);
|
575
|
+
if (proto.todoItem) {
|
576
|
+
m.todoItem = TKabakovToDoItem.fromProto(proto.todoItem);
|
577
|
+
}
|
553
578
|
return m;
|
554
579
|
}
|
555
580
|
constructor(kwargs) {
|
@@ -560,29 +585,19 @@ class ToggleFinishedLFossenierTaskRequest {
|
|
560
585
|
}
|
561
586
|
toApiJson() {
|
562
587
|
const toReturn = {};
|
563
|
-
if (typeof this.
|
564
|
-
toReturn['
|
565
|
-
}
|
566
|
-
if (typeof this.taskName !== 'undefined') {
|
567
|
-
toReturn['taskName'] = this.taskName;
|
568
|
-
}
|
569
|
-
if (typeof this.finished !== 'undefined') {
|
570
|
-
toReturn['finished'] = this.finished;
|
588
|
+
if (typeof this.todoItem !== 'undefined' && this.todoItem !== null) {
|
589
|
+
toReturn['todoItem'] = 'toApiJson' in this.todoItem ? this.todoItem.toApiJson() : this.todoItem;
|
571
590
|
}
|
572
591
|
return toReturn;
|
573
592
|
}
|
574
593
|
}
|
575
|
-
|
576
|
-
function enumStringToValue$1(enumRef, value) {
|
577
|
-
if (typeof value === 'number') {
|
578
|
-
return value;
|
579
|
-
}
|
580
|
-
return enumRef[value];
|
581
|
-
}
|
582
|
-
class Access {
|
594
|
+
class TKabakovUpdateToDoItemResponse {
|
583
595
|
static fromProto(proto) {
|
584
|
-
let m = new
|
596
|
+
let m = new TKabakovUpdateToDoItemResponse();
|
585
597
|
m = Object.assign(m, proto);
|
598
|
+
if (proto.todoItem) {
|
599
|
+
m.todoItem = TKabakovToDoItem.fromProto(proto.todoItem);
|
600
|
+
}
|
586
601
|
return m;
|
587
602
|
}
|
588
603
|
constructor(kwargs) {
|
@@ -593,11 +608,8 @@ class Access {
|
|
593
608
|
}
|
594
609
|
toApiJson() {
|
595
610
|
const toReturn = {};
|
596
|
-
if (typeof this.
|
597
|
-
toReturn['
|
598
|
-
}
|
599
|
-
if (typeof this.public !== 'undefined') {
|
600
|
-
toReturn['public'] = this.public;
|
611
|
+
if (typeof this.todoItem !== 'undefined' && this.todoItem !== null) {
|
612
|
+
toReturn['todoItem'] = 'toApiJson' in this.todoItem ? this.todoItem.toApiJson() : this.todoItem;
|
601
613
|
}
|
602
614
|
return toReturn;
|
603
615
|
}
|
@@ -954,6 +966,49 @@ class CreateHdoTodoResponse {
|
|
954
966
|
return toReturn;
|
955
967
|
}
|
956
968
|
}
|
969
|
+
class CreateListRequest {
|
970
|
+
static fromProto(proto) {
|
971
|
+
let m = new CreateListRequest();
|
972
|
+
m = Object.assign(m, proto);
|
973
|
+
return m;
|
974
|
+
}
|
975
|
+
constructor(kwargs) {
|
976
|
+
if (!kwargs) {
|
977
|
+
return;
|
978
|
+
}
|
979
|
+
Object.assign(this, kwargs);
|
980
|
+
}
|
981
|
+
toApiJson() {
|
982
|
+
const toReturn = {};
|
983
|
+
if (typeof this.title !== 'undefined') {
|
984
|
+
toReturn['title'] = this.title;
|
985
|
+
}
|
986
|
+
if (typeof this.description !== 'undefined') {
|
987
|
+
toReturn['description'] = this.description;
|
988
|
+
}
|
989
|
+
return toReturn;
|
990
|
+
}
|
991
|
+
}
|
992
|
+
class CreateListResponse {
|
993
|
+
static fromProto(proto) {
|
994
|
+
let m = new CreateListResponse();
|
995
|
+
m = Object.assign(m, proto);
|
996
|
+
return m;
|
997
|
+
}
|
998
|
+
constructor(kwargs) {
|
999
|
+
if (!kwargs) {
|
1000
|
+
return;
|
1001
|
+
}
|
1002
|
+
Object.assign(this, kwargs);
|
1003
|
+
}
|
1004
|
+
toApiJson() {
|
1005
|
+
const toReturn = {};
|
1006
|
+
if (typeof this.id !== 'undefined') {
|
1007
|
+
toReturn['id'] = this.id;
|
1008
|
+
}
|
1009
|
+
return toReturn;
|
1010
|
+
}
|
1011
|
+
}
|
957
1012
|
class CreateWHorrellTaskRequest {
|
958
1013
|
static fromProto(proto) {
|
959
1014
|
let m = new CreateWHorrellTaskRequest();
|
@@ -1057,6 +1112,26 @@ class DeleteHdoTodoResponse {
|
|
1057
1112
|
return toReturn;
|
1058
1113
|
}
|
1059
1114
|
}
|
1115
|
+
class DeleteListRequest {
|
1116
|
+
static fromProto(proto) {
|
1117
|
+
let m = new DeleteListRequest();
|
1118
|
+
m = Object.assign(m, proto);
|
1119
|
+
return m;
|
1120
|
+
}
|
1121
|
+
constructor(kwargs) {
|
1122
|
+
if (!kwargs) {
|
1123
|
+
return;
|
1124
|
+
}
|
1125
|
+
Object.assign(this, kwargs);
|
1126
|
+
}
|
1127
|
+
toApiJson() {
|
1128
|
+
const toReturn = {};
|
1129
|
+
if (typeof this.id !== 'undefined') {
|
1130
|
+
toReturn['id'] = this.id;
|
1131
|
+
}
|
1132
|
+
return toReturn;
|
1133
|
+
}
|
1134
|
+
}
|
1060
1135
|
class DeleteWHorrellTaskRequest {
|
1061
1136
|
static fromProto(proto) {
|
1062
1137
|
let m = new DeleteWHorrellTaskRequest();
|
@@ -1250,6 +1325,55 @@ class GetHdoTodoResponse {
|
|
1250
1325
|
return toReturn;
|
1251
1326
|
}
|
1252
1327
|
}
|
1328
|
+
class GetListRequest {
|
1329
|
+
static fromProto(proto) {
|
1330
|
+
let m = new GetListRequest();
|
1331
|
+
m = Object.assign(m, proto);
|
1332
|
+
return m;
|
1333
|
+
}
|
1334
|
+
constructor(kwargs) {
|
1335
|
+
if (!kwargs) {
|
1336
|
+
return;
|
1337
|
+
}
|
1338
|
+
Object.assign(this, kwargs);
|
1339
|
+
}
|
1340
|
+
toApiJson() {
|
1341
|
+
const toReturn = {};
|
1342
|
+
if (typeof this.id !== 'undefined') {
|
1343
|
+
toReturn['id'] = this.id;
|
1344
|
+
}
|
1345
|
+
if (typeof this.category !== 'undefined') {
|
1346
|
+
toReturn['category'] = this.category;
|
1347
|
+
}
|
1348
|
+
if (typeof this.status !== 'undefined') {
|
1349
|
+
toReturn['status'] = this.status;
|
1350
|
+
}
|
1351
|
+
return toReturn;
|
1352
|
+
}
|
1353
|
+
}
|
1354
|
+
class GetListResponse {
|
1355
|
+
static fromProto(proto) {
|
1356
|
+
let m = new GetListResponse();
|
1357
|
+
m = Object.assign(m, proto);
|
1358
|
+
if (proto.item) {
|
1359
|
+
m.item = proto.item.map(TodoList.fromProto);
|
1360
|
+
}
|
1361
|
+
return m;
|
1362
|
+
}
|
1363
|
+
constructor(kwargs) {
|
1364
|
+
if (!kwargs) {
|
1365
|
+
return;
|
1366
|
+
}
|
1367
|
+
Object.assign(this, kwargs);
|
1368
|
+
}
|
1369
|
+
toApiJson() {
|
1370
|
+
const toReturn = {};
|
1371
|
+
if (typeof this.item !== 'undefined' && this.item !== null) {
|
1372
|
+
toReturn['item'] = 'toApiJson' in this.item ? this.item.toApiJson() : this.item;
|
1373
|
+
}
|
1374
|
+
return toReturn;
|
1375
|
+
}
|
1376
|
+
}
|
1253
1377
|
class GetWHorrellTaskRequest {
|
1254
1378
|
static fromProto(proto) {
|
1255
1379
|
let m = new GetWHorrellTaskRequest();
|
@@ -1870,6 +1994,120 @@ class MMugotUpdateTaskResponse {
|
|
1870
1994
|
return toReturn;
|
1871
1995
|
}
|
1872
1996
|
}
|
1997
|
+
class NValleCreateTaskRequest {
|
1998
|
+
static fromProto(proto) {
|
1999
|
+
let m = new NValleCreateTaskRequest();
|
2000
|
+
m = Object.assign(m, proto);
|
2001
|
+
if (proto.due) {
|
2002
|
+
m.due = new Date(proto.due);
|
2003
|
+
}
|
2004
|
+
return m;
|
2005
|
+
}
|
2006
|
+
constructor(kwargs) {
|
2007
|
+
if (!kwargs) {
|
2008
|
+
return;
|
2009
|
+
}
|
2010
|
+
Object.assign(this, kwargs);
|
2011
|
+
}
|
2012
|
+
toApiJson() {
|
2013
|
+
const toReturn = {};
|
2014
|
+
if (typeof this.title !== 'undefined') {
|
2015
|
+
toReturn['title'] = this.title;
|
2016
|
+
}
|
2017
|
+
if (typeof this.description !== 'undefined') {
|
2018
|
+
toReturn['description'] = this.description;
|
2019
|
+
}
|
2020
|
+
if (typeof this.completed !== 'undefined') {
|
2021
|
+
toReturn['completed'] = this.completed;
|
2022
|
+
}
|
2023
|
+
if (typeof this.due !== 'undefined' && this.due !== null) {
|
2024
|
+
toReturn['due'] = 'toApiJson' in this.due ? this.due.toApiJson() : this.due;
|
2025
|
+
}
|
2026
|
+
return toReturn;
|
2027
|
+
}
|
2028
|
+
}
|
2029
|
+
class NValleCreateTaskResponse {
|
2030
|
+
static fromProto(proto) {
|
2031
|
+
let m = new NValleCreateTaskResponse();
|
2032
|
+
m = Object.assign(m, proto);
|
2033
|
+
if (proto.due) {
|
2034
|
+
m.due = new Date(proto.due);
|
2035
|
+
}
|
2036
|
+
if (proto.created) {
|
2037
|
+
m.created = new Date(proto.created);
|
2038
|
+
}
|
2039
|
+
if (proto.updated) {
|
2040
|
+
m.updated = new Date(proto.updated);
|
2041
|
+
}
|
2042
|
+
return m;
|
2043
|
+
}
|
2044
|
+
constructor(kwargs) {
|
2045
|
+
if (!kwargs) {
|
2046
|
+
return;
|
2047
|
+
}
|
2048
|
+
Object.assign(this, kwargs);
|
2049
|
+
}
|
2050
|
+
toApiJson() {
|
2051
|
+
const toReturn = {};
|
2052
|
+
if (typeof this.id !== 'undefined') {
|
2053
|
+
toReturn['id'] = this.id;
|
2054
|
+
}
|
2055
|
+
if (typeof this.title !== 'undefined') {
|
2056
|
+
toReturn['title'] = this.title;
|
2057
|
+
}
|
2058
|
+
if (typeof this.description !== 'undefined') {
|
2059
|
+
toReturn['description'] = this.description;
|
2060
|
+
}
|
2061
|
+
if (typeof this.completed !== 'undefined') {
|
2062
|
+
toReturn['completed'] = this.completed;
|
2063
|
+
}
|
2064
|
+
if (typeof this.due !== 'undefined' && this.due !== null) {
|
2065
|
+
toReturn['due'] = 'toApiJson' in this.due ? this.due.toApiJson() : this.due;
|
2066
|
+
}
|
2067
|
+
if (typeof this.created !== 'undefined' && this.created !== null) {
|
2068
|
+
toReturn['created'] = 'toApiJson' in this.created ? this.created.toApiJson() : this.created;
|
2069
|
+
}
|
2070
|
+
if (typeof this.updated !== 'undefined' && this.updated !== null) {
|
2071
|
+
toReturn['updated'] = 'toApiJson' in this.updated ? this.updated.toApiJson() : this.updated;
|
2072
|
+
}
|
2073
|
+
return toReturn;
|
2074
|
+
}
|
2075
|
+
}
|
2076
|
+
class TodoList {
|
2077
|
+
static fromProto(proto) {
|
2078
|
+
let m = new TodoList();
|
2079
|
+
m = Object.assign(m, proto);
|
2080
|
+
if (proto.createdAt) {
|
2081
|
+
m.createdAt = parseInt(proto.createdAt, 10);
|
2082
|
+
}
|
2083
|
+
return m;
|
2084
|
+
}
|
2085
|
+
constructor(kwargs) {
|
2086
|
+
if (!kwargs) {
|
2087
|
+
return;
|
2088
|
+
}
|
2089
|
+
Object.assign(this, kwargs);
|
2090
|
+
}
|
2091
|
+
toApiJson() {
|
2092
|
+
const toReturn = {};
|
2093
|
+
if (typeof this.title !== 'undefined') {
|
2094
|
+
toReturn['title'] = this.title;
|
2095
|
+
}
|
2096
|
+
if (typeof this.completed !== 'undefined') {
|
2097
|
+
toReturn['completed'] = this.completed;
|
2098
|
+
}
|
2099
|
+
if (typeof this.createdAt !== 'undefined') {
|
2100
|
+
toReturn['createdAt'] = this.createdAt;
|
2101
|
+
}
|
2102
|
+
if (typeof this.id !== 'undefined') {
|
2103
|
+
toReturn['id'] = this.id;
|
2104
|
+
}
|
2105
|
+
if (typeof this.description !== 'undefined') {
|
2106
|
+
toReturn['description'] = this.description;
|
2107
|
+
}
|
2108
|
+
return toReturn;
|
2109
|
+
}
|
2110
|
+
}
|
1873
2111
|
class UpdateHdoTodoRequest {
|
1874
2112
|
static fromProto(proto) {
|
1875
2113
|
let m = new UpdateHdoTodoRequest();
|
@@ -2186,6 +2424,43 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImpor
|
|
2186
2424
|
args: [{ providedIn: 'root' }]
|
2187
2425
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
2188
2426
|
|
2427
|
+
// *********************************
|
2428
|
+
class KarishmaListApiService {
|
2429
|
+
constructor(http, hostService) {
|
2430
|
+
this.http = http;
|
2431
|
+
this.hostService = hostService;
|
2432
|
+
this._host = this.hostService.hostWithScheme;
|
2433
|
+
}
|
2434
|
+
apiOptions() {
|
2435
|
+
return {
|
2436
|
+
headers: new HttpHeaders({
|
2437
|
+
'Content-Type': 'application/json'
|
2438
|
+
}),
|
2439
|
+
withCredentials: true
|
2440
|
+
};
|
2441
|
+
}
|
2442
|
+
getListR(r) {
|
2443
|
+
const request = (r.toApiJson) ? r : new GetListRequest(r);
|
2444
|
+
return this.http.post(this._host + "/developertraining.v1.KarishmaList/GetListR", request.toApiJson(), this.apiOptions())
|
2445
|
+
.pipe(map(resp => GetListResponse.fromProto(resp)));
|
2446
|
+
}
|
2447
|
+
createListR(r) {
|
2448
|
+
const request = (r.toApiJson) ? r : new CreateListRequest(r);
|
2449
|
+
return this.http.post(this._host + "/developertraining.v1.KarishmaList/CreateListR", request.toApiJson(), this.apiOptions())
|
2450
|
+
.pipe(map(resp => CreateListResponse.fromProto(resp)));
|
2451
|
+
}
|
2452
|
+
deleteListR(r) {
|
2453
|
+
const request = (r.toApiJson) ? r : new DeleteListRequest(r);
|
2454
|
+
return this.http.post(this._host + "/developertraining.v1.KarishmaList/DeleteListR", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
2455
|
+
}
|
2456
|
+
}
|
2457
|
+
KarishmaListApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: KarishmaListApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
2458
|
+
KarishmaListApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: KarishmaListApiService, providedIn: 'root' });
|
2459
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: KarishmaListApiService, decorators: [{
|
2460
|
+
type: Injectable,
|
2461
|
+
args: [{ providedIn: 'root' }]
|
2462
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
2463
|
+
|
2189
2464
|
// *********************************
|
2190
2465
|
class LFossenierTodoApiService {
|
2191
2466
|
constructor(http, hostService) {
|
@@ -2273,6 +2548,34 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImpor
|
|
2273
2548
|
args: [{ providedIn: 'root' }]
|
2274
2549
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
2275
2550
|
|
2551
|
+
// *********************************
|
2552
|
+
class NValleTodoApiService {
|
2553
|
+
constructor(http, hostService) {
|
2554
|
+
this.http = http;
|
2555
|
+
this.hostService = hostService;
|
2556
|
+
this._host = this.hostService.hostWithScheme;
|
2557
|
+
}
|
2558
|
+
apiOptions() {
|
2559
|
+
return {
|
2560
|
+
headers: new HttpHeaders({
|
2561
|
+
'Content-Type': 'application/json'
|
2562
|
+
}),
|
2563
|
+
withCredentials: true
|
2564
|
+
};
|
2565
|
+
}
|
2566
|
+
createTask(r) {
|
2567
|
+
const request = (r.toApiJson) ? r : new NValleCreateTaskRequest(r);
|
2568
|
+
return this.http.post(this._host + "/developertraining.v1.NValleTodoService/CreateTask", request.toApiJson(), this.apiOptions())
|
2569
|
+
.pipe(map(resp => NValleCreateTaskResponse.fromProto(resp)));
|
2570
|
+
}
|
2571
|
+
}
|
2572
|
+
NValleTodoApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: NValleTodoApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
2573
|
+
NValleTodoApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: NValleTodoApiService, providedIn: 'root' });
|
2574
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: NValleTodoApiService, decorators: [{
|
2575
|
+
type: Injectable,
|
2576
|
+
args: [{ providedIn: 'root' }]
|
2577
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
2578
|
+
|
2276
2579
|
// *********************************
|
2277
2580
|
class TKabakovToDoApiService {
|
2278
2581
|
constructor(http, hostService) {
|
@@ -2374,5 +2677,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImpor
|
|
2374
2677
|
* Generated bundle index. Do not edit.
|
2375
2678
|
*/
|
2376
2679
|
|
2377
|
-
export { AHundalAddTaskRequest, AHundalAddTaskResponse, AHundalDeleteTaskRequest, AHundalDeleteTaskResponse, AHundalEditTaskRequest, AHundalEditTaskResponse, AHundalGetSpecificTaskRequest, AHundalGetSpecificTaskResponse, AHundalGetTasksRequest, AHundalGetTasksResponse, AHundalTask, AHundalToDoProjectApiService, Access, BusinessQAApiService, CreateECurrieRequest, CreateECurrieResponse, CreateHdoTodoRequest, CreateHdoTodoResponse, CreateLFossenierTaskRequest, CreateWHorrellTaskRequest, CreateWHorrellTaskResponse, DeleteECurrieRequest, DeleteHdoTodoRequest, DeleteHdoTodoResponse, DeleteLFossenierTaskRequest, DeleteWHorrellTaskRequest, ECurrieListApiService, ECurrieTodoItem, EditWHorrellTaskRequest, EditWHorrellTaskResponse, FieldMask, GetBusinessQuestionsAnswersRequest, GetBusinessQuestionsAnswersResponse, GetECurrieListRequest, GetECurrieListResponse, GetHdoTodoRequest, GetHdoTodoResponse, GetWHorrellTaskRequest, GetWHorrellTaskResponse, HdoTodoApiService, HdoTodoItem, IOlaleyeCreateTaskRequest, IOlaleyeCreateTaskResponse, IOlaleyeDeleteTaskRequest, IOlaleyeDeleteTaskResponse, IOlaleyeEditTaskRequest, IOlaleyeEditTaskResponse, IOlaleyeGetTaskRequest, IOlaleyeGetTaskResponse, IOlaleyeListTasksRequest, IOlaleyeListTasksResponse, IOlaleyeTask, IOlaleyeToDoQAApiService, LFossenierTodoApiService, ListHdoTodoRequest, ListHdoTodoResponse, ListWHorrellTasksRequest, ListWHorrellTasksResponse, LoadLFossenierTaskRequest, LoadLFossenierTaskResponse, MMugotCreateTaskRequest, MMugotCreateTaskResponse, MMugotDeleteTaskRequest, MMugotGetTaskRequest, MMugotGetTaskResponse, MMugotListQAApiService, MMugotListTasksRequest, MMugotListTasksResponse, MMugotTask, MMugotUpdateTaskRequest, MMugotUpdateTaskResponse, QuestionsAnswers, ReplaceBusinessQuestionsAnswersRequest, TKabakovAddToDoItemRequest, TKabakovAddToDoItemResponse, TKabakovDeleteToDoItemRequest, TKabakovDeleteToDoItemResponse, TKabakovGetToDoItemRequest, TKabakovGetToDoItemResponse, TKabakovListToDoItemsRequest, TKabakovListToDoItemsResponse, TKabakovToDoApiService, TKabakovToDoId, TKabakovToDoItem, TKabakovUpdateToDoItemRequest, TKabakovUpdateToDoItemResponse, Task, TodoTaskMessage, ToggleFinishedLFossenierTaskRequest, UpdateHdoTodoRequest, UpdateHdoTodoResponse, WHorrellTask, WHorrellToDoApiService };
|
2680
|
+
export { AHundalAddTaskRequest, AHundalAddTaskResponse, AHundalDeleteTaskRequest, AHundalDeleteTaskResponse, AHundalEditTaskRequest, AHundalEditTaskResponse, AHundalGetSpecificTaskRequest, AHundalGetSpecificTaskResponse, AHundalGetTasksRequest, AHundalGetTasksResponse, AHundalTask, AHundalToDoProjectApiService, Access, BusinessQAApiService, CreateECurrieRequest, CreateECurrieResponse, CreateHdoTodoRequest, CreateHdoTodoResponse, CreateLFossenierTaskRequest, CreateListRequest, CreateListResponse, CreateWHorrellTaskRequest, CreateWHorrellTaskResponse, DeleteECurrieRequest, DeleteHdoTodoRequest, DeleteHdoTodoResponse, DeleteLFossenierTaskRequest, DeleteListRequest, DeleteWHorrellTaskRequest, ECurrieListApiService, ECurrieTodoItem, EditWHorrellTaskRequest, EditWHorrellTaskResponse, 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 };
|
2378
2681
|
//# sourceMappingURL=vendasta-developer-training.mjs.map
|