|
|
|
@ -391,9 +391,10 @@ def pyOpenRPA_Debugging_HelperDefList(inRequest, inGSettings):
|
|
|
|
|
lPathSplitList = __Orchestrator__.WebRequestParsePath(inRequest=inRequest).split('/')
|
|
|
|
|
lQueryStr = None
|
|
|
|
|
if "HelperDefList" != lPathSplitList[-1] and "" != lPathSplitList[-1]: lQueryStr = lPathSplitList[-1]
|
|
|
|
|
lDefList = __Orchestrator__.ActivityItemHelperDefList(inDefQueryStr=lQueryStr)
|
|
|
|
|
for lDefStr in lDefList:
|
|
|
|
|
lResultDict["results"].append({"name": lDefStr, "value": lDefStr, "text": lDefStr})
|
|
|
|
|
if lQueryStr != "" and lQueryStr is not None:
|
|
|
|
|
lDefList = __Orchestrator__.ActivityItemHelperDefList(inDefQueryStr=lQueryStr)
|
|
|
|
|
for lDefStr in lDefList:
|
|
|
|
|
lResultDict["results"].append({"name": lDefStr, "value": lDefStr, "text": lDefStr})
|
|
|
|
|
__Orchestrator__.WebRequestResponseSend(inRequest=inRequest, inResponeStr=json.dumps(lResultDict))
|
|
|
|
|
|
|
|
|
|
def pyOpenRPA_Debugging_HelperDefAutofill(inRequest, inGSettings):
|
|
|
|
@ -473,6 +474,7 @@ def SettingsUpdate(inGlobalConfiguration):
|
|
|
|
|
{"Method": "POST", "URL": "/pyOpenRPA/ProcessorQueueAdd", "MatchType": "Equal","ResponseDefRequestGlobal": pyOpenRPA_Processor, "ResponseContentType": "application/json"},
|
|
|
|
|
{"Method": "POST", "URL": "/pyOpenRPA/ActivityListExecute", "MatchType": "Equal","ResponseDefRequestGlobal": pyOpenRPA_ActivityListExecute, "ResponseContentType": "application/json"},
|
|
|
|
|
{"Method": "POST", "URL": "/pyOpenRPA/Agent/O2A", "MatchType": "Equal","ResponseDefRequestGlobal": pyOpenRPA_Agent_O2A, "ResponseContentType": "application/json"},
|
|
|
|
|
{"Method": "POST", "URL": "/pyOpenRPA/Agent/A2O", "MatchType": "Equal","ResponseDefRequestGlobal": pyOpenRPA_Agent_A2O, "ResponseContentType": "application/json"},
|
|
|
|
|
{"Method": "GET", "URL": "/pyOpenRPA/Debugging/HelperDefList/", "MatchType": "BeginWith","ResponseDefRequestGlobal": pyOpenRPA_Debugging_HelperDefList, "ResponseContentType": "application/json"},
|
|
|
|
|
{"Method": "GET", "URL": "/pyOpenRPA/Debugging/HelperDefAutofill/", "MatchType": "BeginWith","ResponseDefRequestGlobal": pyOpenRPA_Debugging_HelperDefAutofill, "ResponseContentType": "application/json"},
|
|
|
|
|
]
|
|
|
|
|