mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 21:00:58 +03:00
Merge branch 'main' into feature/output-parsers
# Conflicts: # packages/ui/src/views/chatmessage/ChatMessage.js
This commit is contained in:
@@ -133,6 +133,7 @@ export const getNodeModulesPackagePath = (packageName: string): string => {
|
||||
* @returns {boolean}
|
||||
*/
|
||||
export const getInputVariables = (paramValue: string): string[] => {
|
||||
if (typeof paramValue !== 'string') return []
|
||||
let returnVal = paramValue
|
||||
const variableStack = []
|
||||
const inputVariables = []
|
||||
@@ -302,7 +303,7 @@ async function crawl(baseURL: string, currentURL: string, pages: string[], limit
|
||||
}
|
||||
|
||||
/**
|
||||
* Prep URL before passing into recursive carwl function
|
||||
* Prep URL before passing into recursive crawl function
|
||||
* @param {string} stringURL
|
||||
* @param {number} limit
|
||||
* @returns {Promise<string[]>}
|
||||
@@ -446,7 +447,7 @@ export const getCredentialData = async (selectedCredentialId: string, options: I
|
||||
|
||||
if (!credential) return {}
|
||||
|
||||
// Decrpyt credentialData
|
||||
// Decrypt credentialData
|
||||
const decryptedCredentialData = await decryptCredentialData(credential.encryptedData)
|
||||
|
||||
return decryptedCredentialData
|
||||
|
||||
Reference in New Issue
Block a user