tango-app-api-trax 3.3.1-beta-10 → 3.3.1-beta-12

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.
@@ -24,7 +24,6 @@ traxRouter
24
24
  .get( '/aichecklist', isAllowedSessionHandler, isAllowedClient, accessVerification( { userType: [ 'tango', 'client' ], access: [ { featureName: 'TangoTrax', name: 'checklist', permissions: [ ] } ] } ), validate( aichecklistValidation ), traxController.aiChecklist )
25
25
  .get( '/predefinedChecklist', isAllowedSessionHandler, isAllowedClient, accessVerification( { userType: [ 'tango', 'client' ], access: [ { featureName: 'TangoTrax', name: 'checklist', permissions: [ ] } ] } ), validate( aichecklistValidation ), traxController.preDefinedChecklist )
26
26
  .post( '/selectAssign', validate( selectAssign ), traxController.selectAssign )
27
- .get( '/checklistV2', isAllowedSessionHandler, isAllowedClient, accessVerification( { userType: [ 'tango', 'client' ], access: [ { featureName: 'TangoTrax', name: 'checklist', permissions: [ ] } ] } ), validate( checklistPageSchema ), traxController.checklistV2 )
28
27
  .post( '/assign', isAllowedSessionHandler, traxController.checklistAssign )
29
28
  .post( '/remove', isAllowedSessionHandler, traxController.removeAssign )
30
29
  .post( '/removeAssignList', isAllowedSessionHandler, traxController.deleteAssignList );
@@ -29,7 +29,6 @@ import {
29
29
  reportChecklistTableV1,
30
30
  reinitiatechecklist,
31
31
  sendAlert,
32
- checklistPerformanceV2,
33
32
  } from '../controllers/traxDashboard.controllers.js';
34
33
 
35
34
  traxDashboardRouter
@@ -57,7 +56,6 @@ traxDashboardRouter
57
56
  .post( '/reportChecklistData', reportChecklistTable )
58
57
  .post( '/reportChecklistDataV1', isAllowedSessionHandler, isAllowedClient, accessVerification( { userType: [ 'tango', 'client' ], access: [ { featureName: 'TangoTrax', name: 'checklist', permissions: [] } ] } ), validate( dashboardValidationDtos.validateReportChecklistTableParams ), reportChecklistTableV1 )
59
58
  .post( '/reinitiatechecklist', isAllowedSessionHandler, isAllowedClient, accessVerification( { userType: [ 'tango', 'client' ], access: [ { featureName: 'TangoTrax', name: 'checklist', permissions: [ 'isAdd', 'isEdit' ] } ] } ), reinitiatechecklist )
60
- .post( '/sendAlert', isAllowedSessionHandler, sendAlert )
61
- .post( '/checklistPerformanceV2', isAllowedSessionHandler, isAllowedClient, accessVerification( { userType: [ 'tango', 'client' ], access: [ { featureName: 'TangoTrax', name: 'checklist', permissions: [] } ] } ), validate( dashboardValidationDtos.validateChecklistPerformanceParams ), checklistPerformanceV2 );
59
+ .post( '/sendAlert', isAllowedSessionHandler, sendAlert );
62
60
 
63
61
  export default traxDashboardRouter;
@@ -18,7 +18,6 @@ import {
18
18
  flagComparisonCardsV1,
19
19
  flagTablesV1,
20
20
  checklistDropdownV1,
21
- flagTablesV2,
22
21
  } from '../controllers/teaxFlag.controller.js';
23
22
  import { isAllowedSessionHandler } from 'tango-app-api-middleware';
24
23
  import { accessVerification } from 'tango-app-api-middleware';
@@ -69,10 +68,7 @@ traxFlagRouter
69
68
  flagComparisonCardsV1 )
70
69
  .post( '/flagTablesV1', isAllowedSessionHandler,
71
70
  accessVerification( { userType: [ 'tango', 'client' ], access: [ { featureName: 'TangoTrax', name: 'checklist', permissions: [] } ] } ),
72
- flagTablesV1 )
73
- .post( '/flagTablesV2', isAllowedSessionHandler,
74
- accessVerification( { userType: [ 'tango', 'client' ], access: [ { featureName: 'TangoTrax', name: 'checklist', permissions: [] } ] } ),
75
- flagTablesV2 );
71
+ flagTablesV1 );
76
72
 
77
73
 
78
74
  export default traxFlagRouter;