@@ -44,8 +44,6 @@ const EXPENSE_READ_CONTEXT_TYPE_OPS = [
4444 'sap_concur_list_expenses' ,
4545 'sap_concur_get_expense' ,
4646 'sap_concur_get_itemizations' ,
47- 'sap_concur_create_report_comment' ,
48- 'sap_concur_list_report_comments' ,
4947 'sap_concur_list_exceptions' ,
5048]
5149
@@ -60,6 +58,8 @@ const ATTENDEE_CONTEXT_TYPE_OPS = [
6058 'sap_concur_list_attendee_associations' ,
6159 'sap_concur_associate_attendees' ,
6260 'sap_concur_remove_all_attendees' ,
61+ 'sap_concur_create_report_comment' ,
62+ 'sap_concur_list_report_comments' ,
6363]
6464
6565const ALLOCATION_CONTEXT_TYPE_OPS = [
@@ -1104,18 +1104,6 @@ export const SapConcurBlock: BlockConfig<SapConcurProxyResponse> = {
11041104 placeholder : '200' ,
11051105 condition : { field : 'operation' , value : 'sap_concur_list_travel_profiles_summary' } ,
11061106 } ,
1107- {
1108- id : 'travelProfileActive' ,
1109- title : 'Active Filter' ,
1110- type : 'dropdown' ,
1111- options : [
1112- { label : 'Any' , id : '' } ,
1113- { label : 'Active' , id : '1' } ,
1114- { label : 'Inactive' , id : '0' } ,
1115- ] ,
1116- value : ( ) => '' ,
1117- condition : { field : 'operation' , value : 'sap_concur_list_travel_profiles_summary' } ,
1118- } ,
11191107 {
11201108 id : 'travelConfigs' ,
11211109 title : 'Travel Config IDs' ,
@@ -1721,10 +1709,6 @@ export const SapConcurBlock: BlockConfig<SapConcurProxyResponse> = {
17211709 lastModifiedDate : params . lastModifiedDate ,
17221710 page : params . travelProfilePage ? Number ( params . travelProfilePage ) : undefined ,
17231711 itemsPerPage : params . itemsPerPage ? Number ( params . itemsPerPage ) : undefined ,
1724- active :
1725- params . travelProfileActive === '1' || params . travelProfileActive === '0'
1726- ? params . travelProfileActive
1727- : undefined ,
17281712 travelConfigs : params . travelConfigs || undefined ,
17291713 }
17301714 case 'sap_concur_search_locations' :
@@ -1885,10 +1869,6 @@ export const SapConcurBlock: BlockConfig<SapConcurProxyResponse> = {
18851869 page : { type : 'number' , description : 'Page number (lists/list_items)' } ,
18861870 travelProfilePage : { type : 'number' , description : 'Profile summary page number' } ,
18871871 itemsPerPage : { type : 'number' , description : 'Profile summary items per page' } ,
1888- travelProfileActive : {
1889- type : 'string' ,
1890- description : 'Active filter ("1" for active, "0" for inactive)' ,
1891- } ,
18921872 travelConfigs : { type : 'string' , description : 'Comma-separated travel config ids' } ,
18931873 searchText : { type : 'string' , description : 'Locations v5 free-text search' } ,
18941874 locCode : { type : 'string' , description : 'Locations v5 location code' } ,
0 commit comments