@cleardu/types 1.0.76 → 1.0.78
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/constants/index.d.ts +267 -3
- package/constants/index.js +358 -94
- package/constants/index.ts +359 -95
- package/package.json +1 -1
- package/tsconfig.build.tsbuildinfo +1 -1
package/constants/index.d.ts
CHANGED
|
@@ -88,6 +88,7 @@ export declare const userModules: {
|
|
|
88
88
|
Breaks: number;
|
|
89
89
|
PaymentAccounts: number;
|
|
90
90
|
PaymentLinks: number;
|
|
91
|
+
ClientDispositions: number;
|
|
91
92
|
};
|
|
92
93
|
export declare const dispoSubDispo: {
|
|
93
94
|
dispositions: {
|
|
@@ -200,71 +201,200 @@ export declare const Constants: {
|
|
|
200
201
|
SEEDER: {
|
|
201
202
|
ROLE: {
|
|
202
203
|
PERMISSION: {
|
|
204
|
+
CENTER: {
|
|
205
|
+
ADD: {
|
|
206
|
+
TITLE: string;
|
|
207
|
+
SLUG: string;
|
|
208
|
+
DESCRIPTION: string;
|
|
209
|
+
MODULE_ID: number;
|
|
210
|
+
};
|
|
211
|
+
EDIT: {
|
|
212
|
+
TITLE: string;
|
|
213
|
+
SLUG: string;
|
|
214
|
+
DESCRIPTION: string;
|
|
215
|
+
MODULE_ID: number;
|
|
216
|
+
};
|
|
217
|
+
UPDATE: {
|
|
218
|
+
TITLE: string;
|
|
219
|
+
SLUG: string;
|
|
220
|
+
DESCRIPTION: string;
|
|
221
|
+
MODULE_ID: number;
|
|
222
|
+
};
|
|
223
|
+
LIST: {
|
|
224
|
+
TITLE: string;
|
|
225
|
+
SLUG: string;
|
|
226
|
+
DESCRIPTION: string;
|
|
227
|
+
MODULE_ID: number;
|
|
228
|
+
};
|
|
229
|
+
};
|
|
230
|
+
DISPOSITIONS: {
|
|
231
|
+
ADD: {
|
|
232
|
+
TITLE: string;
|
|
233
|
+
SLUG: string;
|
|
234
|
+
DESCRIPTION: string;
|
|
235
|
+
MODULE_ID: number;
|
|
236
|
+
};
|
|
237
|
+
EDIT: {
|
|
238
|
+
TITLE: string;
|
|
239
|
+
SLUG: string;
|
|
240
|
+
DESCRIPTION: string;
|
|
241
|
+
MODULE_ID: number;
|
|
242
|
+
};
|
|
243
|
+
UPDATE: {
|
|
244
|
+
TITLE: string;
|
|
245
|
+
SLUG: string;
|
|
246
|
+
DESCRIPTION: string;
|
|
247
|
+
MODULE_ID: number;
|
|
248
|
+
};
|
|
249
|
+
LIST: {
|
|
250
|
+
TITLE: string;
|
|
251
|
+
SLUG: string;
|
|
252
|
+
DESCRIPTION: string;
|
|
253
|
+
MODULE_ID: number;
|
|
254
|
+
};
|
|
255
|
+
DELETE: {
|
|
256
|
+
TITLE: string;
|
|
257
|
+
SLUG: string;
|
|
258
|
+
DESCRIPTION: string;
|
|
259
|
+
MODULE_ID: number;
|
|
260
|
+
};
|
|
261
|
+
};
|
|
262
|
+
BREACK: {
|
|
263
|
+
ADD: {
|
|
264
|
+
TITLE: string;
|
|
265
|
+
SLUG: string;
|
|
266
|
+
DESCRIPTION: string;
|
|
267
|
+
MODULE_ID: number;
|
|
268
|
+
};
|
|
269
|
+
EDIT: {
|
|
270
|
+
TITLE: string;
|
|
271
|
+
SLUG: string;
|
|
272
|
+
DESCRIPTION: string;
|
|
273
|
+
MODULE_ID: number;
|
|
274
|
+
};
|
|
275
|
+
UPDATE: {
|
|
276
|
+
TITLE: string;
|
|
277
|
+
SLUG: string;
|
|
278
|
+
DESCRIPTION: string;
|
|
279
|
+
MODULE_ID: number;
|
|
280
|
+
};
|
|
281
|
+
LIST: {
|
|
282
|
+
TITLE: string;
|
|
283
|
+
SLUG: string;
|
|
284
|
+
DESCRIPTION: string;
|
|
285
|
+
MODULE_ID: number;
|
|
286
|
+
};
|
|
287
|
+
DELETE: {
|
|
288
|
+
TITLE: string;
|
|
289
|
+
SLUG: string;
|
|
290
|
+
DESCRIPTION: string;
|
|
291
|
+
MODULE_ID: number;
|
|
292
|
+
};
|
|
293
|
+
};
|
|
203
294
|
SETUP_MASTER: {
|
|
204
295
|
TITLE: string;
|
|
205
296
|
SLUG: string;
|
|
206
297
|
DESCRIPTION: string;
|
|
298
|
+
MODULE_ID: number;
|
|
207
299
|
};
|
|
208
300
|
PERMISSIONS: {
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
301
|
+
ADD: {
|
|
302
|
+
TITLE: string;
|
|
303
|
+
SLUG: string;
|
|
304
|
+
DESCRIPTION: string;
|
|
305
|
+
MODULE_ID: number;
|
|
306
|
+
};
|
|
307
|
+
EDIT: {
|
|
308
|
+
TITLE: string;
|
|
309
|
+
SLUG: string;
|
|
310
|
+
DESCRIPTION: string;
|
|
311
|
+
MODULE_ID: number;
|
|
312
|
+
};
|
|
313
|
+
UPDATE: {
|
|
314
|
+
TITLE: string;
|
|
315
|
+
SLUG: string;
|
|
316
|
+
DESCRIPTION: string;
|
|
317
|
+
MODULE_ID: number;
|
|
318
|
+
};
|
|
319
|
+
LIST: {
|
|
320
|
+
TITLE: string;
|
|
321
|
+
SLUG: string;
|
|
322
|
+
DESCRIPTION: string;
|
|
323
|
+
MODULE_ID: number;
|
|
324
|
+
};
|
|
325
|
+
DELETE: {
|
|
326
|
+
TITLE: string;
|
|
327
|
+
SLUG: string;
|
|
328
|
+
DESCRIPTION: string;
|
|
329
|
+
MODULE_ID: number;
|
|
330
|
+
};
|
|
212
331
|
};
|
|
213
332
|
DASHBOARD: {
|
|
214
333
|
ADMIN_DASHBOARD: {
|
|
215
334
|
TITLE: string;
|
|
216
335
|
SLUG: string;
|
|
217
336
|
DESCRIPTION: string;
|
|
337
|
+
MODULE_ID: number;
|
|
218
338
|
};
|
|
219
339
|
VIEW_PORTFOLIO_DASHBOARD: {
|
|
220
340
|
TITLE: string;
|
|
221
341
|
SLUG: string;
|
|
222
342
|
DESCRIPTION: string;
|
|
343
|
+
MODULE_ID: number;
|
|
223
344
|
};
|
|
224
345
|
VIEW_COLLECTION_DASHBOARD: {
|
|
225
346
|
TITLE: string;
|
|
226
347
|
SLUG: string;
|
|
227
348
|
DESCRIPTION: string;
|
|
349
|
+
MODULE_ID: number;
|
|
228
350
|
};
|
|
229
351
|
VIEW_STATE_WISE_DASHBOARD: {
|
|
230
352
|
TITLE: string;
|
|
231
353
|
SLUG: string;
|
|
232
354
|
DESCRIPTION: string;
|
|
355
|
+
MODULE_ID: number;
|
|
233
356
|
};
|
|
234
357
|
VIEW_TAT_WISE_DASHBOARD: {
|
|
235
358
|
TITLE: string;
|
|
236
359
|
SLUG: string;
|
|
237
360
|
DESCRIPTION: string;
|
|
361
|
+
MODULE_ID: number;
|
|
238
362
|
};
|
|
239
363
|
VIEW_SMS_DASHBOARD: {
|
|
240
364
|
TITLE: string;
|
|
241
365
|
SLUG: string;
|
|
242
366
|
DESCRIPTION: string;
|
|
367
|
+
MODULE_ID: number;
|
|
243
368
|
};
|
|
244
369
|
VIEW_WHATSAPP_DASHBOARD: {
|
|
245
370
|
TITLE: string;
|
|
246
371
|
SLUG: string;
|
|
247
372
|
DESCRIPTION: string;
|
|
373
|
+
MODULE_ID: number;
|
|
248
374
|
};
|
|
249
375
|
VIEW_IVR_DASHBOARD: {
|
|
250
376
|
TITLE: string;
|
|
251
377
|
SLUG: string;
|
|
252
378
|
DESCRIPTION: string;
|
|
379
|
+
MODULE_ID: number;
|
|
253
380
|
};
|
|
254
381
|
VIEW_EMAIL_DASHBOARD: {
|
|
255
382
|
TITLE: string;
|
|
256
383
|
SLUG: string;
|
|
257
384
|
DESCRIPTION: string;
|
|
385
|
+
MODULE_ID: number;
|
|
258
386
|
};
|
|
259
387
|
VIEW_BOT_DASHBOARD: {
|
|
260
388
|
TITLE: string;
|
|
261
389
|
SLUG: string;
|
|
262
390
|
DESCRIPTION: string;
|
|
391
|
+
MODULE_ID: number;
|
|
263
392
|
};
|
|
264
393
|
VIEW_USER_DASHBOARD: {
|
|
265
394
|
TITLE: string;
|
|
266
395
|
SLUG: string;
|
|
267
396
|
DESCRIPTION: string;
|
|
397
|
+
MODULE_ID: number;
|
|
268
398
|
};
|
|
269
399
|
};
|
|
270
400
|
ROLE: {
|
|
@@ -272,26 +402,31 @@ export declare const Constants: {
|
|
|
272
402
|
TITLE: string;
|
|
273
403
|
SLUG: string;
|
|
274
404
|
DESCRIPTION: string;
|
|
405
|
+
MODULE_ID: number;
|
|
275
406
|
};
|
|
276
407
|
ADD: {
|
|
277
408
|
TITLE: string;
|
|
278
409
|
SLUG: string;
|
|
279
410
|
DESCRIPTION: string;
|
|
411
|
+
MODULE_ID: number;
|
|
280
412
|
};
|
|
281
413
|
EDIT: {
|
|
282
414
|
TITLE: string;
|
|
283
415
|
SLUG: string;
|
|
284
416
|
DESCRIPTION: string;
|
|
417
|
+
MODULE_ID: number;
|
|
285
418
|
};
|
|
286
419
|
DELETE: {
|
|
287
420
|
TITLE: string;
|
|
288
421
|
SLUG: string;
|
|
289
422
|
DESCRIPTION: string;
|
|
423
|
+
MODULE_ID: number;
|
|
290
424
|
};
|
|
291
425
|
EXPORT: {
|
|
292
426
|
TITLE: string;
|
|
293
427
|
SLUG: string;
|
|
294
428
|
DESCRIPTION: string;
|
|
429
|
+
MODULE_ID: number;
|
|
295
430
|
};
|
|
296
431
|
};
|
|
297
432
|
USER: {
|
|
@@ -299,26 +434,31 @@ export declare const Constants: {
|
|
|
299
434
|
TITLE: string;
|
|
300
435
|
SLUG: string;
|
|
301
436
|
DESCRIPTION: string;
|
|
437
|
+
MODULE_ID: number;
|
|
302
438
|
};
|
|
303
439
|
ADD: {
|
|
304
440
|
TITLE: string;
|
|
305
441
|
SLUG: string;
|
|
306
442
|
DESCRIPTION: string;
|
|
443
|
+
MODULE_ID: number;
|
|
307
444
|
};
|
|
308
445
|
EDIT: {
|
|
309
446
|
TITLE: string;
|
|
310
447
|
SLUG: string;
|
|
311
448
|
DESCRIPTION: string;
|
|
449
|
+
MODULE_ID: number;
|
|
312
450
|
};
|
|
313
451
|
DELETE: {
|
|
314
452
|
TITLE: string;
|
|
315
453
|
SLUG: string;
|
|
316
454
|
DESCRIPTION: string;
|
|
455
|
+
MODULE_ID: number;
|
|
317
456
|
};
|
|
318
457
|
EXPORT: {
|
|
319
458
|
TITLE: string;
|
|
320
459
|
SLUG: string;
|
|
321
460
|
DESCRIPTION: string;
|
|
461
|
+
MODULE_ID: number;
|
|
322
462
|
};
|
|
323
463
|
};
|
|
324
464
|
CLIENT: {
|
|
@@ -326,26 +466,63 @@ export declare const Constants: {
|
|
|
326
466
|
TITLE: string;
|
|
327
467
|
SLUG: string;
|
|
328
468
|
DESCRIPTION: string;
|
|
469
|
+
MODULE_ID: number;
|
|
329
470
|
};
|
|
330
471
|
ADD: {
|
|
331
472
|
TITLE: string;
|
|
332
473
|
SLUG: string;
|
|
333
474
|
DESCRIPTION: string;
|
|
475
|
+
MODULE_ID: number;
|
|
334
476
|
};
|
|
335
477
|
EDIT: {
|
|
336
478
|
TITLE: string;
|
|
337
479
|
SLUG: string;
|
|
338
480
|
DESCRIPTION: string;
|
|
481
|
+
MODULE_ID: number;
|
|
339
482
|
};
|
|
340
483
|
DELETE: {
|
|
341
484
|
TITLE: string;
|
|
342
485
|
SLUG: string;
|
|
343
486
|
DESCRIPTION: string;
|
|
487
|
+
MODULE_ID: number;
|
|
344
488
|
};
|
|
345
489
|
EXPORT: {
|
|
346
490
|
TITLE: string;
|
|
347
491
|
SLUG: string;
|
|
348
492
|
DESCRIPTION: string;
|
|
493
|
+
MODULE_ID: number;
|
|
494
|
+
};
|
|
495
|
+
DISPOSITIONS: {
|
|
496
|
+
ADD: {
|
|
497
|
+
TITLE: string;
|
|
498
|
+
SLUG: string;
|
|
499
|
+
DESCRIPTION: string;
|
|
500
|
+
MODULE_ID: number;
|
|
501
|
+
};
|
|
502
|
+
EDIT: {
|
|
503
|
+
TITLE: string;
|
|
504
|
+
SLUG: string;
|
|
505
|
+
DESCRIPTION: string;
|
|
506
|
+
MODULE_ID: number;
|
|
507
|
+
};
|
|
508
|
+
UPDATE: {
|
|
509
|
+
TITLE: string;
|
|
510
|
+
SLUG: string;
|
|
511
|
+
DESCRIPTION: string;
|
|
512
|
+
MODULE_ID: number;
|
|
513
|
+
};
|
|
514
|
+
LIST: {
|
|
515
|
+
TITLE: string;
|
|
516
|
+
SLUG: string;
|
|
517
|
+
DESCRIPTION: string;
|
|
518
|
+
MODULE_ID: number;
|
|
519
|
+
};
|
|
520
|
+
DELETE: {
|
|
521
|
+
TITLE: string;
|
|
522
|
+
SLUG: string;
|
|
523
|
+
DESCRIPTION: string;
|
|
524
|
+
MODULE_ID: number;
|
|
525
|
+
};
|
|
349
526
|
};
|
|
350
527
|
};
|
|
351
528
|
CAMPAIGN: {
|
|
@@ -353,36 +530,43 @@ export declare const Constants: {
|
|
|
353
530
|
TITLE: string;
|
|
354
531
|
SLUG: string;
|
|
355
532
|
DESCRIPTION: string;
|
|
533
|
+
MODULE_ID: number;
|
|
356
534
|
};
|
|
357
535
|
ADD: {
|
|
358
536
|
TITLE: string;
|
|
359
537
|
SLUG: string;
|
|
360
538
|
DESCRIPTION: string;
|
|
539
|
+
MODULE_ID: number;
|
|
361
540
|
};
|
|
362
541
|
EDIT: {
|
|
363
542
|
TITLE: string;
|
|
364
543
|
SLUG: string;
|
|
365
544
|
DESCRIPTION: string;
|
|
545
|
+
MODULE_ID: number;
|
|
366
546
|
};
|
|
367
547
|
START_STOP: {
|
|
368
548
|
TITLE: string;
|
|
369
549
|
SLUG: string;
|
|
370
550
|
DESCRIPTION: string;
|
|
551
|
+
MODULE_ID: number;
|
|
371
552
|
};
|
|
372
553
|
CRON_START_STOP: {
|
|
373
554
|
TITLE: string;
|
|
374
555
|
SLUG: string;
|
|
375
556
|
DESCRIPTION: string;
|
|
557
|
+
MODULE_ID: number;
|
|
376
558
|
};
|
|
377
559
|
EXPORT: {
|
|
378
560
|
TITLE: string;
|
|
379
561
|
SLUG: string;
|
|
380
562
|
DESCRIPTION: string;
|
|
563
|
+
MODULE_ID: number;
|
|
381
564
|
};
|
|
382
565
|
DELETE: {
|
|
383
566
|
TITLE: string;
|
|
384
567
|
SLUG: string;
|
|
385
568
|
DESCRIPTION: string;
|
|
569
|
+
MODULE_ID: number;
|
|
386
570
|
};
|
|
387
571
|
};
|
|
388
572
|
PORTFOLIO: {
|
|
@@ -390,26 +574,37 @@ export declare const Constants: {
|
|
|
390
574
|
TITLE: string;
|
|
391
575
|
SLUG: string;
|
|
392
576
|
DESCRIPTION: string;
|
|
577
|
+
MODULE_ID: number;
|
|
393
578
|
};
|
|
394
579
|
ADD: {
|
|
395
580
|
TITLE: string;
|
|
396
581
|
SLUG: string;
|
|
397
582
|
DESCRIPTION: string;
|
|
583
|
+
MODULE_ID: number;
|
|
398
584
|
};
|
|
399
585
|
EDIT: {
|
|
400
586
|
TITLE: string;
|
|
401
587
|
SLUG: string;
|
|
402
588
|
DESCRIPTION: string;
|
|
589
|
+
MODULE_ID: number;
|
|
403
590
|
};
|
|
404
591
|
DELETE: {
|
|
405
592
|
TITLE: string;
|
|
406
593
|
SLUG: string;
|
|
407
594
|
DESCRIPTION: string;
|
|
595
|
+
MODULE_ID: number;
|
|
408
596
|
};
|
|
409
597
|
EXPORT: {
|
|
410
598
|
TITLE: string;
|
|
411
599
|
SLUG: string;
|
|
412
600
|
DESCRIPTION: string;
|
|
601
|
+
MODULE_ID: number;
|
|
602
|
+
};
|
|
603
|
+
UPDATE: {
|
|
604
|
+
TITLE: string;
|
|
605
|
+
SLUG: string;
|
|
606
|
+
DESCRIPTION: string;
|
|
607
|
+
MODULE_ID: number;
|
|
413
608
|
};
|
|
414
609
|
};
|
|
415
610
|
TEMPLATE: {
|
|
@@ -417,26 +612,31 @@ export declare const Constants: {
|
|
|
417
612
|
TITLE: string;
|
|
418
613
|
SLUG: string;
|
|
419
614
|
DESCRIPTION: string;
|
|
615
|
+
MODULE_ID: number;
|
|
420
616
|
};
|
|
421
617
|
ADD: {
|
|
422
618
|
TITLE: string;
|
|
423
619
|
SLUG: string;
|
|
424
620
|
DESCRIPTION: string;
|
|
621
|
+
MODULE_ID: number;
|
|
425
622
|
};
|
|
426
623
|
EDIT: {
|
|
427
624
|
TITLE: string;
|
|
428
625
|
SLUG: string;
|
|
429
626
|
DESCRIPTION: string;
|
|
627
|
+
MODULE_ID: number;
|
|
430
628
|
};
|
|
431
629
|
DELETE: {
|
|
432
630
|
TITLE: string;
|
|
433
631
|
SLUG: string;
|
|
434
632
|
DESCRIPTION: string;
|
|
633
|
+
MODULE_ID: number;
|
|
435
634
|
};
|
|
436
635
|
EXPORT: {
|
|
437
636
|
TITLE: string;
|
|
438
637
|
SLUG: string;
|
|
439
638
|
DESCRIPTION: string;
|
|
639
|
+
MODULE_ID: number;
|
|
440
640
|
};
|
|
441
641
|
};
|
|
442
642
|
MERCHANT: {
|
|
@@ -444,31 +644,37 @@ export declare const Constants: {
|
|
|
444
644
|
TITLE: string;
|
|
445
645
|
SLUG: string;
|
|
446
646
|
DESCRIPTION: string;
|
|
647
|
+
MODULE_ID: number;
|
|
447
648
|
};
|
|
448
649
|
ADD: {
|
|
449
650
|
TITLE: string;
|
|
450
651
|
SLUG: string;
|
|
451
652
|
DESCRIPTION: string;
|
|
653
|
+
MODULE_ID: number;
|
|
452
654
|
};
|
|
453
655
|
EDIT: {
|
|
454
656
|
TITLE: string;
|
|
455
657
|
SLUG: string;
|
|
456
658
|
DESCRIPTION: string;
|
|
659
|
+
MODULE_ID: number;
|
|
457
660
|
};
|
|
458
661
|
DELETE: {
|
|
459
662
|
TITLE: string;
|
|
460
663
|
SLUG: string;
|
|
461
664
|
DESCRIPTION: string;
|
|
665
|
+
MODULE_ID: number;
|
|
462
666
|
};
|
|
463
667
|
UPLOAD: {
|
|
464
668
|
TITLE: string;
|
|
465
669
|
SLUG: string;
|
|
466
670
|
DESCRIPTION: string;
|
|
671
|
+
MODULE_ID: number;
|
|
467
672
|
};
|
|
468
673
|
EXPORT: {
|
|
469
674
|
TITLE: string;
|
|
470
675
|
SLUG: string;
|
|
471
676
|
DESCRIPTION: string;
|
|
677
|
+
MODULE_ID: number;
|
|
472
678
|
};
|
|
473
679
|
};
|
|
474
680
|
BORROWERS: {
|
|
@@ -476,46 +682,55 @@ export declare const Constants: {
|
|
|
476
682
|
TITLE: string;
|
|
477
683
|
SLUG: string;
|
|
478
684
|
DESCRIPTION: string;
|
|
685
|
+
MODULE_ID: number;
|
|
479
686
|
};
|
|
480
687
|
LIST: {
|
|
481
688
|
TITLE: string;
|
|
482
689
|
SLUG: string;
|
|
483
690
|
DESCRIPTION: string;
|
|
691
|
+
MODULE_ID: number;
|
|
484
692
|
};
|
|
485
693
|
ACTIVE: {
|
|
486
694
|
TITLE: string;
|
|
487
695
|
SLUG: string;
|
|
488
696
|
DESCRIPTION: string;
|
|
697
|
+
MODULE_ID: number;
|
|
489
698
|
};
|
|
490
699
|
INACTIVE: {
|
|
491
700
|
TITLE: string;
|
|
492
701
|
SLUG: string;
|
|
493
702
|
DESCRIPTION: string;
|
|
703
|
+
MODULE_ID: number;
|
|
494
704
|
};
|
|
495
705
|
EDIT: {
|
|
496
706
|
TITLE: string;
|
|
497
707
|
SLUG: string;
|
|
498
708
|
DESCRIPTION: string;
|
|
709
|
+
MODULE_ID: number;
|
|
499
710
|
};
|
|
500
711
|
UPLOAD: {
|
|
501
712
|
TITLE: string;
|
|
502
713
|
SLUG: string;
|
|
503
714
|
DESCRIPTION: string;
|
|
715
|
+
MODULE_ID: number;
|
|
504
716
|
};
|
|
505
717
|
HISTORY: {
|
|
506
718
|
TITLE: string;
|
|
507
719
|
SLUG: string;
|
|
508
720
|
DESCRIPTION: string;
|
|
721
|
+
MODULE_ID: number;
|
|
509
722
|
};
|
|
510
723
|
PROFILE: {
|
|
511
724
|
TITLE: string;
|
|
512
725
|
SLUG: string;
|
|
513
726
|
DESCRIPTION: string;
|
|
727
|
+
MODULE_ID: number;
|
|
514
728
|
};
|
|
515
729
|
RE_ASSIGN: {
|
|
516
730
|
TITLE: string;
|
|
517
731
|
SLUG: string;
|
|
518
732
|
DESCRIPTION: string;
|
|
733
|
+
MODULE_ID: number;
|
|
519
734
|
};
|
|
520
735
|
};
|
|
521
736
|
CALL_SUMMARY: {
|
|
@@ -523,11 +738,13 @@ export declare const Constants: {
|
|
|
523
738
|
TITLE: string;
|
|
524
739
|
SLUG: string;
|
|
525
740
|
DESCRIPTION: string;
|
|
741
|
+
MODULE_ID: number;
|
|
526
742
|
};
|
|
527
743
|
EXPORT: {
|
|
528
744
|
TITLE: string;
|
|
529
745
|
SLUG: string;
|
|
530
746
|
DESCRIPTION: string;
|
|
747
|
+
MODULE_ID: number;
|
|
531
748
|
};
|
|
532
749
|
};
|
|
533
750
|
AGGENT: {
|
|
@@ -535,40 +752,65 @@ export declare const Constants: {
|
|
|
535
752
|
TITLE: string;
|
|
536
753
|
SLUG: string;
|
|
537
754
|
DESCRIPTION: string;
|
|
755
|
+
MODULE_ID: number;
|
|
538
756
|
};
|
|
539
757
|
EXPORT: {
|
|
540
758
|
TITLE: string;
|
|
541
759
|
SLUG: string;
|
|
542
760
|
DESCRIPTION: string;
|
|
761
|
+
MODULE_ID: number;
|
|
543
762
|
};
|
|
544
763
|
LIST_LIVE_STATUS: {
|
|
545
764
|
TITLE: string;
|
|
546
765
|
SLUG: string;
|
|
547
766
|
DESCRIPTION: string;
|
|
767
|
+
MODULE_ID: number;
|
|
548
768
|
};
|
|
549
769
|
PRODUCTIVITY: {
|
|
550
770
|
LIST: {
|
|
551
771
|
TITLE: string;
|
|
552
772
|
SLUG: string;
|
|
553
773
|
DESCRIPTION: string;
|
|
774
|
+
MODULE_ID: number;
|
|
554
775
|
};
|
|
555
776
|
EXPORT: {
|
|
556
777
|
TITLE: string;
|
|
557
778
|
SLUG: string;
|
|
558
779
|
DESCRIPTION: string;
|
|
780
|
+
MODULE_ID: number;
|
|
559
781
|
};
|
|
560
782
|
};
|
|
561
783
|
};
|
|
562
784
|
SETTLEMENTS: {
|
|
785
|
+
ADD: {
|
|
786
|
+
TITLE: string;
|
|
787
|
+
SLUG: string;
|
|
788
|
+
DESCRIPTION: string;
|
|
789
|
+
MODULE_ID: number;
|
|
790
|
+
};
|
|
791
|
+
EDIT: {
|
|
792
|
+
TITLE: string;
|
|
793
|
+
SLUG: string;
|
|
794
|
+
DESCRIPTION: string;
|
|
795
|
+
MODULE_ID: number;
|
|
796
|
+
};
|
|
563
797
|
LIST: {
|
|
564
798
|
TITLE: string;
|
|
565
799
|
SLUG: string;
|
|
566
800
|
DESCRIPTION: string;
|
|
801
|
+
MODULE_ID: number;
|
|
802
|
+
};
|
|
803
|
+
UPDATE: {
|
|
804
|
+
TITLE: string;
|
|
805
|
+
SLUG: string;
|
|
806
|
+
DESCRIPTION: string;
|
|
807
|
+
MODULE_ID: number;
|
|
567
808
|
};
|
|
568
809
|
EXPORT: {
|
|
569
810
|
TITLE: string;
|
|
570
811
|
SLUG: string;
|
|
571
812
|
DESCRIPTION: string;
|
|
813
|
+
MODULE_ID: number;
|
|
572
814
|
};
|
|
573
815
|
};
|
|
574
816
|
PAYMENT: {
|
|
@@ -576,42 +818,50 @@ export declare const Constants: {
|
|
|
576
818
|
TITLE: string;
|
|
577
819
|
SLUG: string;
|
|
578
820
|
DESCRIPTION: string;
|
|
821
|
+
MODULE_ID: number;
|
|
579
822
|
};
|
|
580
823
|
EXPORT: {
|
|
581
824
|
TITLE: string;
|
|
582
825
|
SLUG: string;
|
|
583
826
|
DESCRIPTION: string;
|
|
827
|
+
MODULE_ID: number;
|
|
584
828
|
};
|
|
585
829
|
UPLOAD: {
|
|
586
830
|
TITLE: string;
|
|
587
831
|
SLUG: string;
|
|
588
832
|
DESCRIPTION: string;
|
|
833
|
+
MODULE_ID: number;
|
|
589
834
|
};
|
|
590
835
|
ACCOUNT: {
|
|
591
836
|
ADD: {
|
|
592
837
|
TITLE: string;
|
|
593
838
|
SLUG: string;
|
|
594
839
|
DESCRIPTION: string;
|
|
840
|
+
MODULE_ID: number;
|
|
595
841
|
};
|
|
596
842
|
GET: {
|
|
597
843
|
TITLE: string;
|
|
598
844
|
SLUG: string;
|
|
599
845
|
DESCRIPTION: string;
|
|
846
|
+
MODULE_ID: number;
|
|
600
847
|
};
|
|
601
848
|
LIST: {
|
|
602
849
|
TITLE: string;
|
|
603
850
|
SLUG: string;
|
|
604
851
|
DESCRIPTION: string;
|
|
852
|
+
MODULE_ID: number;
|
|
605
853
|
};
|
|
606
854
|
UPDATE: {
|
|
607
855
|
TITLE: string;
|
|
608
856
|
SLUG: string;
|
|
609
857
|
DESCRIPTION: string;
|
|
858
|
+
MODULE_ID: number;
|
|
610
859
|
};
|
|
611
860
|
REMOVE: {
|
|
612
861
|
TITLE: string;
|
|
613
862
|
SLUG: string;
|
|
614
863
|
DESCRIPTION: string;
|
|
864
|
+
MODULE_ID: number;
|
|
615
865
|
};
|
|
616
866
|
};
|
|
617
867
|
CODE: {
|
|
@@ -619,26 +869,31 @@ export declare const Constants: {
|
|
|
619
869
|
TITLE: string;
|
|
620
870
|
SLUG: string;
|
|
621
871
|
DESCRIPTION: string;
|
|
872
|
+
MODULE_ID: number;
|
|
622
873
|
};
|
|
623
874
|
GET: {
|
|
624
875
|
TITLE: string;
|
|
625
876
|
SLUG: string;
|
|
626
877
|
DESCRIPTION: string;
|
|
878
|
+
MODULE_ID: number;
|
|
627
879
|
};
|
|
628
880
|
LIST: {
|
|
629
881
|
TITLE: string;
|
|
630
882
|
SLUG: string;
|
|
631
883
|
DESCRIPTION: string;
|
|
884
|
+
MODULE_ID: number;
|
|
632
885
|
};
|
|
633
886
|
UPDATE: {
|
|
634
887
|
TITLE: string;
|
|
635
888
|
SLUG: string;
|
|
636
889
|
DESCRIPTION: string;
|
|
890
|
+
MODULE_ID: number;
|
|
637
891
|
};
|
|
638
892
|
REMOVE: {
|
|
639
893
|
TITLE: string;
|
|
640
894
|
SLUG: string;
|
|
641
895
|
DESCRIPTION: string;
|
|
896
|
+
MODULE_ID: number;
|
|
642
897
|
};
|
|
643
898
|
};
|
|
644
899
|
};
|
|
@@ -648,11 +903,13 @@ export declare const Constants: {
|
|
|
648
903
|
TITLE: string;
|
|
649
904
|
SLUG: string;
|
|
650
905
|
DESCRIPTION: string;
|
|
906
|
+
MODULE_ID: number;
|
|
651
907
|
};
|
|
652
908
|
EXPORT: {
|
|
653
909
|
TITLE: string;
|
|
654
910
|
SLUG: string;
|
|
655
911
|
DESCRIPTION: string;
|
|
912
|
+
MODULE_ID: number;
|
|
656
913
|
};
|
|
657
914
|
};
|
|
658
915
|
};
|
|
@@ -661,6 +918,7 @@ export declare const Constants: {
|
|
|
661
918
|
TITLE: string;
|
|
662
919
|
SLUG: string;
|
|
663
920
|
DESCRIPTION: string;
|
|
921
|
+
MODULE_ID: number;
|
|
664
922
|
};
|
|
665
923
|
};
|
|
666
924
|
FILE: {
|
|
@@ -669,11 +927,13 @@ export declare const Constants: {
|
|
|
669
927
|
TITLE: string;
|
|
670
928
|
SLUG: string;
|
|
671
929
|
DESCRIPTION: string;
|
|
930
|
+
MODULE_ID: number;
|
|
672
931
|
};
|
|
673
932
|
ATTACHMENT: {
|
|
674
933
|
TITLE: string;
|
|
675
934
|
SLUG: string;
|
|
676
935
|
DESCRIPTION: string;
|
|
936
|
+
MODULE_ID: number;
|
|
677
937
|
};
|
|
678
938
|
};
|
|
679
939
|
UPLOAD: {
|
|
@@ -681,16 +941,19 @@ export declare const Constants: {
|
|
|
681
941
|
TITLE: string;
|
|
682
942
|
SLUG: string;
|
|
683
943
|
DESCRIPTION: string;
|
|
944
|
+
MODULE_ID: number;
|
|
684
945
|
};
|
|
685
946
|
PAYMENT: {
|
|
686
947
|
TITLE: string;
|
|
687
948
|
SLUG: string;
|
|
688
949
|
DESCRIPTION: string;
|
|
950
|
+
MODULE_ID: number;
|
|
689
951
|
};
|
|
690
952
|
ATTACHMENTS: {
|
|
691
953
|
TITLE: string;
|
|
692
954
|
SLUG: string;
|
|
693
955
|
DESCRIPTION: string;
|
|
956
|
+
MODULE_ID: number;
|
|
694
957
|
};
|
|
695
958
|
};
|
|
696
959
|
REMOVE: {
|
|
@@ -698,6 +961,7 @@ export declare const Constants: {
|
|
|
698
961
|
TITLE: string;
|
|
699
962
|
SLUG: string;
|
|
700
963
|
DESCRIPTION: string;
|
|
964
|
+
MODULE_ID: number;
|
|
701
965
|
};
|
|
702
966
|
};
|
|
703
967
|
};
|