@vendasta/developer-training 0.12.1 → 0.12.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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 +7 -1
- package/fesm2015/vendasta-developer-training.mjs +434 -137
- package/fesm2015/vendasta-developer-training.mjs.map +1 -1
- package/fesm2020/vendasta-developer-training.mjs +434 -137
- 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 +1 -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 +1 -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,16 +319,26 @@ 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.todoItems) {
|
314
|
-
m.todoItems = proto.todoItems.map(TKabakovToDoItem.fromProto);
|
315
|
-
}
|
316
342
|
return m;
|
317
343
|
}
|
318
344
|
constructor(kwargs) {
|
@@ -323,16 +349,22 @@ class TKabakovListToDoItemsResponse {
|
|
323
349
|
}
|
324
350
|
toApiJson() {
|
325
351
|
const toReturn = {};
|
326
|
-
if (typeof this.
|
327
|
-
toReturn['
|
352
|
+
if (typeof this.title !== 'undefined') {
|
353
|
+
toReturn['title'] = this.title;
|
354
|
+
}
|
355
|
+
if (typeof this.description !== 'undefined') {
|
356
|
+
toReturn['description'] = this.description;
|
328
357
|
}
|
329
358
|
return toReturn;
|
330
359
|
}
|
331
360
|
}
|
332
|
-
class
|
361
|
+
class TKabakovAddToDoItemResponse {
|
333
362
|
static fromProto(proto) {
|
334
|
-
let m = new
|
363
|
+
let m = new TKabakovAddToDoItemResponse();
|
335
364
|
m = Object.assign(m, proto);
|
365
|
+
if (proto.todoItem) {
|
366
|
+
m.todoItem = TKabakovToDoItem.fromProto(proto.todoItem);
|
367
|
+
}
|
336
368
|
return m;
|
337
369
|
}
|
338
370
|
constructor(kwargs) {
|
@@ -343,15 +375,15 @@ class TKabakovToDoId {
|
|
343
375
|
}
|
344
376
|
toApiJson() {
|
345
377
|
const toReturn = {};
|
346
|
-
if (typeof this.
|
347
|
-
toReturn['
|
378
|
+
if (typeof this.todoItem !== 'undefined' && this.todoItem !== null) {
|
379
|
+
toReturn['todoItem'] = 'toApiJson' in this.todoItem ? this.todoItem.toApiJson() : this.todoItem;
|
348
380
|
}
|
349
381
|
return toReturn;
|
350
382
|
}
|
351
383
|
}
|
352
|
-
class
|
384
|
+
class TKabakovDeleteToDoItemRequest {
|
353
385
|
static fromProto(proto) {
|
354
|
-
let m = new
|
386
|
+
let m = new TKabakovDeleteToDoItemRequest();
|
355
387
|
m = Object.assign(m, proto);
|
356
388
|
return m;
|
357
389
|
}
|
@@ -366,28 +398,13 @@ class TKabakovToDoItem {
|
|
366
398
|
if (typeof this.todoId !== 'undefined') {
|
367
399
|
toReturn['todoId'] = this.todoId;
|
368
400
|
}
|
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
401
|
return toReturn;
|
382
402
|
}
|
383
403
|
}
|
384
|
-
class
|
404
|
+
class TKabakovDeleteToDoItemResponse {
|
385
405
|
static fromProto(proto) {
|
386
|
-
let m = new
|
406
|
+
let m = new TKabakovDeleteToDoItemResponse();
|
387
407
|
m = Object.assign(m, proto);
|
388
|
-
if (proto.todoItem) {
|
389
|
-
m.todoItem = TKabakovToDoItem.fromProto(proto.todoItem);
|
390
|
-
}
|
391
408
|
return m;
|
392
409
|
}
|
393
410
|
constructor(kwargs) {
|
@@ -398,19 +415,16 @@ class TKabakovUpdateToDoItemRequest {
|
|
398
415
|
}
|
399
416
|
toApiJson() {
|
400
417
|
const toReturn = {};
|
401
|
-
if (typeof this.
|
402
|
-
toReturn['
|
418
|
+
if (typeof this.todoId !== 'undefined') {
|
419
|
+
toReturn['todoId'] = this.todoId;
|
403
420
|
}
|
404
421
|
return toReturn;
|
405
422
|
}
|
406
423
|
}
|
407
|
-
class
|
424
|
+
class TKabakovGetToDoItemRequest {
|
408
425
|
static fromProto(proto) {
|
409
|
-
let m = new
|
426
|
+
let m = new TKabakovGetToDoItemRequest();
|
410
427
|
m = Object.assign(m, proto);
|
411
|
-
if (proto.todoItem) {
|
412
|
-
m.todoItem = TKabakovToDoItem.fromProto(proto.todoItem);
|
413
|
-
}
|
414
428
|
return m;
|
415
429
|
}
|
416
430
|
constructor(kwargs) {
|
@@ -421,23 +435,19 @@ class TKabakovUpdateToDoItemResponse {
|
|
421
435
|
}
|
422
436
|
toApiJson() {
|
423
437
|
const toReturn = {};
|
424
|
-
if (typeof this.
|
425
|
-
toReturn['
|
438
|
+
if (typeof this.todoId !== 'undefined') {
|
439
|
+
toReturn['todoId'] = this.todoId;
|
426
440
|
}
|
427
441
|
return toReturn;
|
428
442
|
}
|
429
443
|
}
|
430
|
-
|
431
|
-
function enumStringToValue$2(enumRef, value) {
|
432
|
-
if (typeof value === 'number') {
|
433
|
-
return value;
|
434
|
-
}
|
435
|
-
return enumRef[value];
|
436
|
-
}
|
437
|
-
class CreateLFossenierTaskRequest {
|
444
|
+
class TKabakovGetToDoItemResponse {
|
438
445
|
static fromProto(proto) {
|
439
|
-
let m = new
|
446
|
+
let m = new TKabakovGetToDoItemResponse();
|
440
447
|
m = Object.assign(m, proto);
|
448
|
+
if (proto.todoItem) {
|
449
|
+
m.todoItem = TKabakovToDoItem.fromProto(proto.todoItem);
|
450
|
+
}
|
441
451
|
return m;
|
442
452
|
}
|
443
453
|
constructor(kwargs) {
|
@@ -448,15 +458,15 @@ class CreateLFossenierTaskRequest {
|
|
448
458
|
}
|
449
459
|
toApiJson() {
|
450
460
|
const toReturn = {};
|
451
|
-
if (typeof this.
|
452
|
-
toReturn['
|
461
|
+
if (typeof this.todoItem !== 'undefined' && this.todoItem !== null) {
|
462
|
+
toReturn['todoItem'] = 'toApiJson' in this.todoItem ? this.todoItem.toApiJson() : this.todoItem;
|
453
463
|
}
|
454
464
|
return toReturn;
|
455
465
|
}
|
456
466
|
}
|
457
|
-
class
|
467
|
+
class TKabakovListToDoItemsRequest {
|
458
468
|
static fromProto(proto) {
|
459
|
-
let m = new
|
469
|
+
let m = new TKabakovListToDoItemsRequest();
|
460
470
|
m = Object.assign(m, proto);
|
461
471
|
return m;
|
462
472
|
}
|
@@ -468,19 +478,16 @@ class DeleteLFossenierTaskRequest {
|
|
468
478
|
}
|
469
479
|
toApiJson() {
|
470
480
|
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
481
|
return toReturn;
|
478
482
|
}
|
479
483
|
}
|
480
|
-
class
|
484
|
+
class TKabakovListToDoItemsResponse {
|
481
485
|
static fromProto(proto) {
|
482
|
-
let m = new
|
486
|
+
let m = new TKabakovListToDoItemsResponse();
|
483
487
|
m = Object.assign(m, proto);
|
488
|
+
if (proto.todoItems) {
|
489
|
+
m.todoItems = proto.todoItems.map(TKabakovToDoItem.fromProto);
|
490
|
+
}
|
484
491
|
return m;
|
485
492
|
}
|
486
493
|
constructor(kwargs) {
|
@@ -491,19 +498,16 @@ class LoadLFossenierTaskRequest {
|
|
491
498
|
}
|
492
499
|
toApiJson() {
|
493
500
|
const toReturn = {};
|
494
|
-
if (typeof this.
|
495
|
-
toReturn['
|
501
|
+
if (typeof this.todoItems !== 'undefined' && this.todoItems !== null) {
|
502
|
+
toReturn['todoItems'] = 'toApiJson' in this.todoItems ? this.todoItems.toApiJson() : this.todoItems;
|
496
503
|
}
|
497
504
|
return toReturn;
|
498
505
|
}
|
499
506
|
}
|
500
|
-
class
|
507
|
+
class TKabakovToDoId {
|
501
508
|
static fromProto(proto) {
|
502
|
-
let m = new
|
509
|
+
let m = new TKabakovToDoId();
|
503
510
|
m = Object.assign(m, proto);
|
504
|
-
if (proto.todoTasks) {
|
505
|
-
m.todoTasks = proto.todoTasks.map(TodoTaskMessage.fromProto);
|
506
|
-
}
|
507
511
|
return m;
|
508
512
|
}
|
509
513
|
constructor(kwargs) {
|
@@ -514,16 +518,19 @@ class LoadLFossenierTaskResponse {
|
|
514
518
|
}
|
515
519
|
toApiJson() {
|
516
520
|
const toReturn = {};
|
517
|
-
if (typeof this.
|
518
|
-
toReturn['
|
521
|
+
if (typeof this.todoId !== 'undefined') {
|
522
|
+
toReturn['todoId'] = this.todoId;
|
519
523
|
}
|
520
524
|
return toReturn;
|
521
525
|
}
|
522
526
|
}
|
523
|
-
class
|
527
|
+
class TKabakovToDoItem {
|
524
528
|
static fromProto(proto) {
|
525
|
-
let m = new
|
529
|
+
let m = new TKabakovToDoItem();
|
526
530
|
m = Object.assign(m, proto);
|
531
|
+
if (proto.dueDate) {
|
532
|
+
m.dueDate = new Date(proto.dueDate);
|
533
|
+
}
|
527
534
|
return m;
|
528
535
|
}
|
529
536
|
constructor(kwargs) {
|
@@ -534,22 +541,34 @@ class TodoTaskMessage {
|
|
534
541
|
}
|
535
542
|
toApiJson() {
|
536
543
|
const toReturn = {};
|
537
|
-
if (typeof this.
|
538
|
-
toReturn['
|
544
|
+
if (typeof this.todoId !== 'undefined') {
|
545
|
+
toReturn['todoId'] = this.todoId;
|
539
546
|
}
|
540
|
-
if (typeof this.
|
541
|
-
toReturn['
|
547
|
+
if (typeof this.title !== 'undefined') {
|
548
|
+
toReturn['title'] = this.title;
|
542
549
|
}
|
543
|
-
if (typeof this.
|
544
|
-
toReturn['
|
550
|
+
if (typeof this.description !== 'undefined') {
|
551
|
+
toReturn['description'] = this.description;
|
552
|
+
}
|
553
|
+
if (typeof this.isDone !== 'undefined') {
|
554
|
+
toReturn['isDone'] = this.isDone;
|
555
|
+
}
|
556
|
+
if (typeof this.deleted !== 'undefined') {
|
557
|
+
toReturn['deleted'] = this.deleted;
|
558
|
+
}
|
559
|
+
if (typeof this.dueDate !== 'undefined' && this.dueDate !== null) {
|
560
|
+
toReturn['dueDate'] = 'toApiJson' in this.dueDate ? this.dueDate.toApiJson() : this.dueDate;
|
545
561
|
}
|
546
562
|
return toReturn;
|
547
563
|
}
|
548
564
|
}
|
549
|
-
class
|
565
|
+
class TKabakovUpdateToDoItemRequest {
|
550
566
|
static fromProto(proto) {
|
551
|
-
let m = new
|
567
|
+
let m = new TKabakovUpdateToDoItemRequest();
|
552
568
|
m = Object.assign(m, proto);
|
569
|
+
if (proto.todoItem) {
|
570
|
+
m.todoItem = TKabakovToDoItem.fromProto(proto.todoItem);
|
571
|
+
}
|
553
572
|
return m;
|
554
573
|
}
|
555
574
|
constructor(kwargs) {
|
@@ -560,29 +579,19 @@ class ToggleFinishedLFossenierTaskRequest {
|
|
560
579
|
}
|
561
580
|
toApiJson() {
|
562
581
|
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;
|
582
|
+
if (typeof this.todoItem !== 'undefined' && this.todoItem !== null) {
|
583
|
+
toReturn['todoItem'] = 'toApiJson' in this.todoItem ? this.todoItem.toApiJson() : this.todoItem;
|
571
584
|
}
|
572
585
|
return toReturn;
|
573
586
|
}
|
574
587
|
}
|
575
|
-
|
576
|
-
function enumStringToValue$1(enumRef, value) {
|
577
|
-
if (typeof value === 'number') {
|
578
|
-
return value;
|
579
|
-
}
|
580
|
-
return enumRef[value];
|
581
|
-
}
|
582
|
-
class Access {
|
588
|
+
class TKabakovUpdateToDoItemResponse {
|
583
589
|
static fromProto(proto) {
|
584
|
-
let m = new
|
590
|
+
let m = new TKabakovUpdateToDoItemResponse();
|
585
591
|
m = Object.assign(m, proto);
|
592
|
+
if (proto.todoItem) {
|
593
|
+
m.todoItem = TKabakovToDoItem.fromProto(proto.todoItem);
|
594
|
+
}
|
586
595
|
return m;
|
587
596
|
}
|
588
597
|
constructor(kwargs) {
|
@@ -593,11 +602,8 @@ class Access {
|
|
593
602
|
}
|
594
603
|
toApiJson() {
|
595
604
|
const toReturn = {};
|
596
|
-
if (typeof this.
|
597
|
-
toReturn['
|
598
|
-
}
|
599
|
-
if (typeof this.public !== 'undefined') {
|
600
|
-
toReturn['public'] = this.public;
|
605
|
+
if (typeof this.todoItem !== 'undefined' && this.todoItem !== null) {
|
606
|
+
toReturn['todoItem'] = 'toApiJson' in this.todoItem ? this.todoItem.toApiJson() : this.todoItem;
|
601
607
|
}
|
602
608
|
return toReturn;
|
603
609
|
}
|
@@ -954,6 +960,49 @@ class CreateHdoTodoResponse {
|
|
954
960
|
return toReturn;
|
955
961
|
}
|
956
962
|
}
|
963
|
+
class CreateListRequest {
|
964
|
+
static fromProto(proto) {
|
965
|
+
let m = new CreateListRequest();
|
966
|
+
m = Object.assign(m, proto);
|
967
|
+
return m;
|
968
|
+
}
|
969
|
+
constructor(kwargs) {
|
970
|
+
if (!kwargs) {
|
971
|
+
return;
|
972
|
+
}
|
973
|
+
Object.assign(this, kwargs);
|
974
|
+
}
|
975
|
+
toApiJson() {
|
976
|
+
const toReturn = {};
|
977
|
+
if (typeof this.title !== 'undefined') {
|
978
|
+
toReturn['title'] = this.title;
|
979
|
+
}
|
980
|
+
if (typeof this.description !== 'undefined') {
|
981
|
+
toReturn['description'] = this.description;
|
982
|
+
}
|
983
|
+
return toReturn;
|
984
|
+
}
|
985
|
+
}
|
986
|
+
class CreateListResponse {
|
987
|
+
static fromProto(proto) {
|
988
|
+
let m = new CreateListResponse();
|
989
|
+
m = Object.assign(m, proto);
|
990
|
+
return m;
|
991
|
+
}
|
992
|
+
constructor(kwargs) {
|
993
|
+
if (!kwargs) {
|
994
|
+
return;
|
995
|
+
}
|
996
|
+
Object.assign(this, kwargs);
|
997
|
+
}
|
998
|
+
toApiJson() {
|
999
|
+
const toReturn = {};
|
1000
|
+
if (typeof this.id !== 'undefined') {
|
1001
|
+
toReturn['id'] = this.id;
|
1002
|
+
}
|
1003
|
+
return toReturn;
|
1004
|
+
}
|
1005
|
+
}
|
957
1006
|
class CreateWHorrellTaskRequest {
|
958
1007
|
static fromProto(proto) {
|
959
1008
|
let m = new CreateWHorrellTaskRequest();
|
@@ -1057,6 +1106,26 @@ class DeleteHdoTodoResponse {
|
|
1057
1106
|
return toReturn;
|
1058
1107
|
}
|
1059
1108
|
}
|
1109
|
+
class DeleteListRequest {
|
1110
|
+
static fromProto(proto) {
|
1111
|
+
let m = new DeleteListRequest();
|
1112
|
+
m = Object.assign(m, proto);
|
1113
|
+
return m;
|
1114
|
+
}
|
1115
|
+
constructor(kwargs) {
|
1116
|
+
if (!kwargs) {
|
1117
|
+
return;
|
1118
|
+
}
|
1119
|
+
Object.assign(this, kwargs);
|
1120
|
+
}
|
1121
|
+
toApiJson() {
|
1122
|
+
const toReturn = {};
|
1123
|
+
if (typeof this.id !== 'undefined') {
|
1124
|
+
toReturn['id'] = this.id;
|
1125
|
+
}
|
1126
|
+
return toReturn;
|
1127
|
+
}
|
1128
|
+
}
|
1060
1129
|
class DeleteWHorrellTaskRequest {
|
1061
1130
|
static fromProto(proto) {
|
1062
1131
|
let m = new DeleteWHorrellTaskRequest();
|
@@ -1250,6 +1319,55 @@ class GetHdoTodoResponse {
|
|
1250
1319
|
return toReturn;
|
1251
1320
|
}
|
1252
1321
|
}
|
1322
|
+
class GetListRequest {
|
1323
|
+
static fromProto(proto) {
|
1324
|
+
let m = new GetListRequest();
|
1325
|
+
m = Object.assign(m, proto);
|
1326
|
+
return m;
|
1327
|
+
}
|
1328
|
+
constructor(kwargs) {
|
1329
|
+
if (!kwargs) {
|
1330
|
+
return;
|
1331
|
+
}
|
1332
|
+
Object.assign(this, kwargs);
|
1333
|
+
}
|
1334
|
+
toApiJson() {
|
1335
|
+
const toReturn = {};
|
1336
|
+
if (typeof this.id !== 'undefined') {
|
1337
|
+
toReturn['id'] = this.id;
|
1338
|
+
}
|
1339
|
+
if (typeof this.category !== 'undefined') {
|
1340
|
+
toReturn['category'] = this.category;
|
1341
|
+
}
|
1342
|
+
if (typeof this.status !== 'undefined') {
|
1343
|
+
toReturn['status'] = this.status;
|
1344
|
+
}
|
1345
|
+
return toReturn;
|
1346
|
+
}
|
1347
|
+
}
|
1348
|
+
class GetListResponse {
|
1349
|
+
static fromProto(proto) {
|
1350
|
+
let m = new GetListResponse();
|
1351
|
+
m = Object.assign(m, proto);
|
1352
|
+
if (proto.item) {
|
1353
|
+
m.item = proto.item.map(TodoList.fromProto);
|
1354
|
+
}
|
1355
|
+
return m;
|
1356
|
+
}
|
1357
|
+
constructor(kwargs) {
|
1358
|
+
if (!kwargs) {
|
1359
|
+
return;
|
1360
|
+
}
|
1361
|
+
Object.assign(this, kwargs);
|
1362
|
+
}
|
1363
|
+
toApiJson() {
|
1364
|
+
const toReturn = {};
|
1365
|
+
if (typeof this.item !== 'undefined' && this.item !== null) {
|
1366
|
+
toReturn['item'] = 'toApiJson' in this.item ? this.item.toApiJson() : this.item;
|
1367
|
+
}
|
1368
|
+
return toReturn;
|
1369
|
+
}
|
1370
|
+
}
|
1253
1371
|
class GetWHorrellTaskRequest {
|
1254
1372
|
static fromProto(proto) {
|
1255
1373
|
let m = new GetWHorrellTaskRequest();
|
@@ -1870,6 +1988,120 @@ class MMugotUpdateTaskResponse {
|
|
1870
1988
|
return toReturn;
|
1871
1989
|
}
|
1872
1990
|
}
|
1991
|
+
class NValleCreateTaskRequest {
|
1992
|
+
static fromProto(proto) {
|
1993
|
+
let m = new NValleCreateTaskRequest();
|
1994
|
+
m = Object.assign(m, proto);
|
1995
|
+
if (proto.due) {
|
1996
|
+
m.due = new Date(proto.due);
|
1997
|
+
}
|
1998
|
+
return m;
|
1999
|
+
}
|
2000
|
+
constructor(kwargs) {
|
2001
|
+
if (!kwargs) {
|
2002
|
+
return;
|
2003
|
+
}
|
2004
|
+
Object.assign(this, kwargs);
|
2005
|
+
}
|
2006
|
+
toApiJson() {
|
2007
|
+
const toReturn = {};
|
2008
|
+
if (typeof this.title !== 'undefined') {
|
2009
|
+
toReturn['title'] = this.title;
|
2010
|
+
}
|
2011
|
+
if (typeof this.description !== 'undefined') {
|
2012
|
+
toReturn['description'] = this.description;
|
2013
|
+
}
|
2014
|
+
if (typeof this.completed !== 'undefined') {
|
2015
|
+
toReturn['completed'] = this.completed;
|
2016
|
+
}
|
2017
|
+
if (typeof this.due !== 'undefined' && this.due !== null) {
|
2018
|
+
toReturn['due'] = 'toApiJson' in this.due ? this.due.toApiJson() : this.due;
|
2019
|
+
}
|
2020
|
+
return toReturn;
|
2021
|
+
}
|
2022
|
+
}
|
2023
|
+
class NValleCreateTaskResponse {
|
2024
|
+
static fromProto(proto) {
|
2025
|
+
let m = new NValleCreateTaskResponse();
|
2026
|
+
m = Object.assign(m, proto);
|
2027
|
+
if (proto.due) {
|
2028
|
+
m.due = new Date(proto.due);
|
2029
|
+
}
|
2030
|
+
if (proto.created) {
|
2031
|
+
m.created = new Date(proto.created);
|
2032
|
+
}
|
2033
|
+
if (proto.updated) {
|
2034
|
+
m.updated = new Date(proto.updated);
|
2035
|
+
}
|
2036
|
+
return m;
|
2037
|
+
}
|
2038
|
+
constructor(kwargs) {
|
2039
|
+
if (!kwargs) {
|
2040
|
+
return;
|
2041
|
+
}
|
2042
|
+
Object.assign(this, kwargs);
|
2043
|
+
}
|
2044
|
+
toApiJson() {
|
2045
|
+
const toReturn = {};
|
2046
|
+
if (typeof this.id !== 'undefined') {
|
2047
|
+
toReturn['id'] = this.id;
|
2048
|
+
}
|
2049
|
+
if (typeof this.title !== 'undefined') {
|
2050
|
+
toReturn['title'] = this.title;
|
2051
|
+
}
|
2052
|
+
if (typeof this.description !== 'undefined') {
|
2053
|
+
toReturn['description'] = this.description;
|
2054
|
+
}
|
2055
|
+
if (typeof this.completed !== 'undefined') {
|
2056
|
+
toReturn['completed'] = this.completed;
|
2057
|
+
}
|
2058
|
+
if (typeof this.due !== 'undefined' && this.due !== null) {
|
2059
|
+
toReturn['due'] = 'toApiJson' in this.due ? this.due.toApiJson() : this.due;
|
2060
|
+
}
|
2061
|
+
if (typeof this.created !== 'undefined' && this.created !== null) {
|
2062
|
+
toReturn['created'] = 'toApiJson' in this.created ? this.created.toApiJson() : this.created;
|
2063
|
+
}
|
2064
|
+
if (typeof this.updated !== 'undefined' && this.updated !== null) {
|
2065
|
+
toReturn['updated'] = 'toApiJson' in this.updated ? this.updated.toApiJson() : this.updated;
|
2066
|
+
}
|
2067
|
+
return toReturn;
|
2068
|
+
}
|
2069
|
+
}
|
2070
|
+
class TodoList {
|
2071
|
+
static fromProto(proto) {
|
2072
|
+
let m = new TodoList();
|
2073
|
+
m = Object.assign(m, proto);
|
2074
|
+
if (proto.createdAt) {
|
2075
|
+
m.createdAt = parseInt(proto.createdAt, 10);
|
2076
|
+
}
|
2077
|
+
return m;
|
2078
|
+
}
|
2079
|
+
constructor(kwargs) {
|
2080
|
+
if (!kwargs) {
|
2081
|
+
return;
|
2082
|
+
}
|
2083
|
+
Object.assign(this, kwargs);
|
2084
|
+
}
|
2085
|
+
toApiJson() {
|
2086
|
+
const toReturn = {};
|
2087
|
+
if (typeof this.title !== 'undefined') {
|
2088
|
+
toReturn['title'] = this.title;
|
2089
|
+
}
|
2090
|
+
if (typeof this.completed !== 'undefined') {
|
2091
|
+
toReturn['completed'] = this.completed;
|
2092
|
+
}
|
2093
|
+
if (typeof this.createdAt !== 'undefined') {
|
2094
|
+
toReturn['createdAt'] = this.createdAt;
|
2095
|
+
}
|
2096
|
+
if (typeof this.id !== 'undefined') {
|
2097
|
+
toReturn['id'] = this.id;
|
2098
|
+
}
|
2099
|
+
if (typeof this.description !== 'undefined') {
|
2100
|
+
toReturn['description'] = this.description;
|
2101
|
+
}
|
2102
|
+
return toReturn;
|
2103
|
+
}
|
2104
|
+
}
|
1873
2105
|
class UpdateHdoTodoRequest {
|
1874
2106
|
static fromProto(proto) {
|
1875
2107
|
let m = new UpdateHdoTodoRequest();
|
@@ -2186,6 +2418,43 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImpor
|
|
2186
2418
|
args: [{ providedIn: 'root' }]
|
2187
2419
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
2188
2420
|
|
2421
|
+
// *********************************
|
2422
|
+
class KarishmaListApiService {
|
2423
|
+
constructor(http, hostService) {
|
2424
|
+
this.http = http;
|
2425
|
+
this.hostService = hostService;
|
2426
|
+
this._host = this.hostService.hostWithScheme;
|
2427
|
+
}
|
2428
|
+
apiOptions() {
|
2429
|
+
return {
|
2430
|
+
headers: new HttpHeaders({
|
2431
|
+
'Content-Type': 'application/json'
|
2432
|
+
}),
|
2433
|
+
withCredentials: true
|
2434
|
+
};
|
2435
|
+
}
|
2436
|
+
getListR(r) {
|
2437
|
+
const request = (r.toApiJson) ? r : new GetListRequest(r);
|
2438
|
+
return this.http.post(this._host + "/developertraining.v1.KarishmaList/GetListR", request.toApiJson(), this.apiOptions())
|
2439
|
+
.pipe(map(resp => GetListResponse.fromProto(resp)));
|
2440
|
+
}
|
2441
|
+
createListR(r) {
|
2442
|
+
const request = (r.toApiJson) ? r : new CreateListRequest(r);
|
2443
|
+
return this.http.post(this._host + "/developertraining.v1.KarishmaList/CreateListR", request.toApiJson(), this.apiOptions())
|
2444
|
+
.pipe(map(resp => CreateListResponse.fromProto(resp)));
|
2445
|
+
}
|
2446
|
+
deleteListR(r) {
|
2447
|
+
const request = (r.toApiJson) ? r : new DeleteListRequest(r);
|
2448
|
+
return this.http.post(this._host + "/developertraining.v1.KarishmaList/DeleteListR", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
2449
|
+
}
|
2450
|
+
}
|
2451
|
+
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 });
|
2452
|
+
KarishmaListApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: KarishmaListApiService, providedIn: 'root' });
|
2453
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: KarishmaListApiService, decorators: [{
|
2454
|
+
type: Injectable,
|
2455
|
+
args: [{ providedIn: 'root' }]
|
2456
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
2457
|
+
|
2189
2458
|
// *********************************
|
2190
2459
|
class LFossenierTodoApiService {
|
2191
2460
|
constructor(http, hostService) {
|
@@ -2273,6 +2542,34 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImpor
|
|
2273
2542
|
args: [{ providedIn: 'root' }]
|
2274
2543
|
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
2275
2544
|
|
2545
|
+
// *********************************
|
2546
|
+
class NValleTodoApiService {
|
2547
|
+
constructor(http, hostService) {
|
2548
|
+
this.http = http;
|
2549
|
+
this.hostService = hostService;
|
2550
|
+
this._host = this.hostService.hostWithScheme;
|
2551
|
+
}
|
2552
|
+
apiOptions() {
|
2553
|
+
return {
|
2554
|
+
headers: new HttpHeaders({
|
2555
|
+
'Content-Type': 'application/json'
|
2556
|
+
}),
|
2557
|
+
withCredentials: true
|
2558
|
+
};
|
2559
|
+
}
|
2560
|
+
createTask(r) {
|
2561
|
+
const request = (r.toApiJson) ? r : new NValleCreateTaskRequest(r);
|
2562
|
+
return this.http.post(this._host + "/developertraining.v1.NValleTodoService/CreateTask", request.toApiJson(), this.apiOptions())
|
2563
|
+
.pipe(map(resp => NValleCreateTaskResponse.fromProto(resp)));
|
2564
|
+
}
|
2565
|
+
}
|
2566
|
+
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 });
|
2567
|
+
NValleTodoApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: NValleTodoApiService, providedIn: 'root' });
|
2568
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: NValleTodoApiService, decorators: [{
|
2569
|
+
type: Injectable,
|
2570
|
+
args: [{ providedIn: 'root' }]
|
2571
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: HostService }]; } });
|
2572
|
+
|
2276
2573
|
// *********************************
|
2277
2574
|
class TKabakovToDoApiService {
|
2278
2575
|
constructor(http, hostService) {
|
@@ -2374,5 +2671,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImpor
|
|
2374
2671
|
* Generated bundle index. Do not edit.
|
2375
2672
|
*/
|
2376
2673
|
|
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 };
|
2674
|
+
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
2675
|
//# sourceMappingURL=vendasta-developer-training.mjs.map
|