-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wiz (new) #169
base: dev
Are you sure you want to change the base?
wiz (new) #169
Changes from 47 commits
391018b
1ab1ef4
b0215e7
e1d360b
825a6f8
e368fd0
a345ac8
4c27eb6
17ab642
a858301
e36c624
81bdae0
0f9b901
f3ba4da
859e6a4
8859f06
09670e8
1a8feb4
7ea0829
7f310cd
619e77b
53b7aea
eebe8be
13352fc
0810bc6
24831a2
8802809
ec16022
64f9bb7
ec5b984
f21a76c
1507934
00e0617
469cef1
98ac821
d4232a3
720c0f4
457962e
e2d9841
31a127c
0ca3aa2
c759a50
d77fb5c
813c254
9f36129
8f75dbe
f55ceb3
97e1a06
5177dd7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,59 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'use strict'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
module.exports = { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type: 'pwd', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
definition: { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
auth: { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
url: { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type: 'text', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name: 'Wiz Endpoint URL. For example: https://api.us18.app.wiz.io/graphql' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
clientId: { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type: 'text', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name: 'Client ID' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
clientSecret: { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type: 'text', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name: 'Client Secret' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
accountNameFromProfileInfo: context => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const name = context.clientId; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const threshold = 10; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (name.length > threshold) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return name.slice(0, 3) + '....' + name.slice(-3); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return name; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
validate: async context => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const url = 'https://auth.app.wiz.io/oauth/token'; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const { data } = await context.httpRequest({ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
method: 'POST', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
headers: { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'content-type': 'application/x-www-form-urlencoded', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'accept': 'application/json' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
data: { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
grant_type: 'client_credentials', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
audience: 'wiz-api', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
client_id: context.clientId, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
client_secret: context.clientSecret | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
url | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
token: data.access_token, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
expires: data.expires_in | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+34
to
+57
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Add error handling for failed authentication. The validate: async context => {
const url = 'https://auth.app.wiz.io/oauth/token';
+ try {
const { data } = await context.httpRequest({
method: 'POST',
headers: {
'content-type': 'application/x-www-form-urlencoded',
'accept': 'application/json'
},
data: {
grant_type: 'client_credentials',
audience: 'wiz-api',
client_id: context.clientId,
client_secret: context.clientSecret
},
url
});
return {
token: data.access_token,
expires: data.expires_in
};
+ } catch (error) {
+ const statusCode = error.response?.status;
+ const errorMessage = error.response?.data?.error_description || error.message;
+
+ if (statusCode === 401) {
+ throw new Error(`Authentication failed: Invalid client credentials. ${errorMessage}`);
+ } else if (statusCode === 403) {
+ throw new Error(`Authentication failed: Insufficient permissions. ${errorMessage}`);
+ } else {
+ throw new Error(`Authentication failed: ${errorMessage}`);
+ }
+ }
} 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"name": "appmixer.wiz", | ||
"version": "1.0.6", | ||
"changelog": { | ||
"1.0.5": [ | ||
"Initial version." | ||
], | ||
"1.0.6": [ | ||
"UploadSecurityScan: remove vulnerabilityFindings part." | ||
] | ||
} | ||
} |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,25 @@ | ||||||
'use strict'; | ||||||
const lib = require('../../lib'); | ||||||
const resources = require('./resources'); | ||||||
|
||||||
module.exports = { | ||||||
|
||||||
// docs: https://win.wiz.io/reference/pull-cloud-resources | ||||||
async receive(context) { | ||||||
|
||||||
const { filter, limit = 10 } = context.messages.in.content; | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Add missing outputType parameter to input destructuring. The - const { filter, limit = 10 } = context.messages.in.content;
+ const { outputType = 'object', filter, limit = 10 } = context.messages.in.content; 📝 Committable suggestion
Suggested change
|
||||||
|
||||||
let filterBy; | ||||||
if (filter) { | ||||||
try { | ||||||
filterBy = JSON.parse(filter); | ||||||
} catch (e) { | ||||||
throw new context.CancelError('Invalid Input: Filter', e); | ||||||
} | ||||||
} | ||||||
|
||||||
const records = await resources.exposed.getResources(context, { filterBy, limit }); | ||||||
|
||||||
return lib.sendArrayOutput({ context, records, outputType: 'object' }); | ||||||
} | ||||||
}; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,291 @@ | ||
{ | ||
"name": "appmixer.wiz.core.FindCloudResources", | ||
"author": "Appmixer <[email protected]>", | ||
"description": "Execute the CloudResourceSearch query to return a list of cloud resources according to different filters, such as project ID or entity type.", | ||
"private": false, | ||
"auth": { | ||
"service": "appmixer:wiz" | ||
}, | ||
"quota": { | ||
"manager": "appmixer:wiz", | ||
"resources": "requests" | ||
}, | ||
"version": "1.0.0", | ||
"inPorts": [ | ||
{ | ||
"name": "in", | ||
"schema": { | ||
"type": "object", | ||
"properties": { | ||
"filter": { "type": "string" }, | ||
"limit": { "type": "number" } | ||
}, | ||
"required": [] | ||
}, | ||
"inspector": { | ||
"inputs": { | ||
"filter": { | ||
"type": "textarea", | ||
"label": "Filter", | ||
"tooltip": "This object defines query filters to narrow down search results and return specific cloud resources.", | ||
"index": 0 | ||
}, | ||
"limit": { | ||
"type": "number", | ||
"label": "Limit", | ||
"defaultValue": 100, | ||
"index": 1 | ||
} | ||
coderabbitai[bot] marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
} | ||
} | ||
], | ||
"outPorts": [ | ||
{ | ||
"name": "out", | ||
"options": [ | ||
{ | ||
"label": "Id", | ||
"value": "id", | ||
"schema": { | ||
"type": "string" | ||
} | ||
}, | ||
{ | ||
"label": "Name", | ||
"value": "name", | ||
"schema": { | ||
"type": "string" | ||
} | ||
}, | ||
{ | ||
"label": "Type", | ||
"value": "type", | ||
"schema": { | ||
"type": "string" | ||
} | ||
}, | ||
{ | ||
"label": "Subscription Id", | ||
"value": "subscriptionId", | ||
"schema": { | ||
"type": "string" | ||
} | ||
}, | ||
{ | ||
"label": "Subscription External Id", | ||
"value": "subscriptionExternalId", | ||
"schema": { | ||
"type": "string" | ||
} | ||
}, | ||
{ | ||
"label": "Graph Entity", | ||
"value": "graphEntity", | ||
"schema": { | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": "string", | ||
"title": "Graph Entity.Id" | ||
}, | ||
"providerUniqueId": { | ||
"type": "null", | ||
"title": "Graph Entity.Provider Unique Id" | ||
}, | ||
"name": { | ||
"type": "string", | ||
"title": "Graph Entity.Name" | ||
}, | ||
"type": { | ||
"type": "string", | ||
"title": "Graph Entity.Type" | ||
}, | ||
"projects": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": "string", | ||
"title": "Graph Entity.Projects.Id" | ||
} | ||
} | ||
}, | ||
"title": "Graph Entity.Projects" | ||
}, | ||
"properties": { | ||
"type": "object", | ||
"properties": { | ||
"_environments": { | ||
"type": "string", | ||
"title": "Graph Entity.Properties.Environments" | ||
}, | ||
"_productIDs": { | ||
"type": "string", | ||
"title": "Graph Entity.Properties.Product I Ds" | ||
}, | ||
"_vertexID": { | ||
"type": "string", | ||
"title": "Graph Entity.Properties.Vertex I D" | ||
}, | ||
"allPorts": { | ||
"type": "boolean", | ||
"title": "Graph Entity.Properties.All Ports" | ||
}, | ||
"cloudPlatform": { | ||
"type": "string", | ||
"title": "Graph Entity.Properties.Cloud Platform" | ||
}, | ||
"cloudProviderURL": { | ||
"type": "null", | ||
"title": "Graph Entity.Properties.Cloud Provider U R L" | ||
}, | ||
"exposureLevel_description": { | ||
"type": "string", | ||
"title": "Graph Entity.Properties.Exposure Level Description" | ||
}, | ||
"exposureLevel_name": { | ||
"type": "string", | ||
"title": "Graph Entity.Properties.Exposure Level Name" | ||
}, | ||
"exposureLevel_value": { | ||
"type": "number", | ||
"title": "Graph Entity.Properties.Exposure Level Value" | ||
}, | ||
"externalId": { | ||
"type": "string", | ||
"title": "Graph Entity.Properties.External Id" | ||
}, | ||
"finalHost": { | ||
"type": "string", | ||
"title": "Graph Entity.Properties.Final Host" | ||
}, | ||
"finalPort": { | ||
"type": "number", | ||
"title": "Graph Entity.Properties.Final Port" | ||
}, | ||
"fullResourceName": { | ||
"type": "null", | ||
"title": "Graph Entity.Properties.Full Resource Name" | ||
}, | ||
"hasScreenshot": { | ||
"type": "boolean", | ||
"title": "Graph Entity.Properties.Has Screenshot" | ||
}, | ||
"host": { | ||
"type": "string", | ||
"title": "Graph Entity.Properties.Host" | ||
}, | ||
"httpContentType": { | ||
"type": "string", | ||
"title": "Graph Entity.Properties.Http Content Type" | ||
}, | ||
"httpGETStatus": { | ||
"type": "string", | ||
"title": "Graph Entity.Properties.Http G E T Status" | ||
}, | ||
"httpGETStatusCode": { | ||
"type": "number", | ||
"title": "Graph Entity.Properties.Http G E T Status Code" | ||
}, | ||
"httpTitleSnippet": { | ||
"type": "string", | ||
"title": "Graph Entity.Properties.Http Title Snippet" | ||
}, | ||
"name": { | ||
"type": "string", | ||
"title": "Graph Entity.Properties.Name" | ||
}, | ||
"nativeType": { | ||
"type": "null", | ||
"title": "Graph Entity.Properties.Native Type" | ||
}, | ||
"path": { | ||
"type": "null", | ||
"title": "Graph Entity.Properties.Path" | ||
}, | ||
"port": { | ||
"type": "number", | ||
"title": "Graph Entity.Properties.Port" | ||
}, | ||
"portEnd": { | ||
"type": "number", | ||
"title": "Graph Entity.Properties.Port End" | ||
}, | ||
"portRange": { | ||
"type": "boolean", | ||
"title": "Graph Entity.Properties.Port Range" | ||
}, | ||
"portStart": { | ||
"type": "number", | ||
"title": "Graph Entity.Properties.Port Start" | ||
}, | ||
"portValidationResult": { | ||
"type": "string", | ||
"title": "Graph Entity.Properties.Port Validation Result" | ||
}, | ||
"protocol": { | ||
"type": "null", | ||
"title": "Graph Entity.Properties.Protocol" | ||
}, | ||
"protocols": { | ||
"type": "string", | ||
"title": "Graph Entity.Properties.Protocols" | ||
}, | ||
"providerUniqueId": { | ||
"type": "null", | ||
"title": "Graph Entity.Properties.Provider Unique Id" | ||
}, | ||
"region": { | ||
"type": "null", | ||
"title": "Graph Entity.Properties.Region" | ||
}, | ||
"resourceGroupExternalId": { | ||
"type": "null", | ||
"title": "Graph Entity.Properties.Resource Group External Id" | ||
}, | ||
"status": { | ||
"type": "null", | ||
"title": "Graph Entity.Properties.Status" | ||
}, | ||
"subscriptionExternalId": { | ||
"type": "string", | ||
"title": "Graph Entity.Properties.Subscription External Id" | ||
}, | ||
"updatedAt": { | ||
"type": "string", | ||
"title": "Graph Entity.Properties.Updated At" | ||
}, | ||
"zone": { | ||
"type": "null", | ||
"title": "Graph Entity.Properties.Zone" | ||
} | ||
}, | ||
"title": "Graph Entity.Properties" | ||
}, | ||
"firstSeen": { | ||
"type": "string", | ||
"title": "Graph Entity.First Seen" | ||
}, | ||
"lastSeen": { | ||
"type": "string", | ||
"title": "Graph Entity.Last Seen" | ||
} | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "notFound", | ||
"options": [ | ||
{ | ||
"label": "Filter", | ||
"value": "filter" | ||
} | ||
] | ||
} | ||
], | ||
"icon": "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIGNsYXNzPSJTdmdJY29uX19TdHlsZWRJY29uLXNjLXYxbnN1ei0wIGgtW2NhbGModmFyKC0tdG9wLW5hdmJhci1oZWlnaHQpLThweCldIGljb24tYWNjZW50IGRhcms6aWNvbi13aGl0ZSIgdmlld0JveD0iMTYgNCA2OCA1MCI+PHBhdGggZmlsbD0iY3VycmVudENvbG9yIiBkPSJNMzkuNzE3IDI3LjExNmEuMDk3LjA5NyAwIDAgMCAuMTc5LS4wMDZsMi44NDItNy40MWEuOTIuOTIgMCAwIDEgLjg1MS0uNTlsMi42NTEtLjAxNGEuOTE2LjkxNiAwIDAgMSAuODY1IDEuMjM1TDQwLjY5MyAzNy42NGMtLjAxLjAyNy0uMjIuMjExLS4zNTQuMzE0LS4wNjYuMDUtLjE0NC4wNTYtLjIyNC4wMzNhLjkuOSAwIDAgMS0uNTgtLjUxNmwtMy40MjEtOC4yNDZhLjQ4NC40ODQgMCAwIDAtLjg3NS0uMDE4bC00LjI5IDguNThhLjA5Ny4wOTcgMCAwIDEtLjE3OC0uMDA4bC02LjcwOS0xNy40NDVhLjkxNy45MTcgMCAwIDEgLjg1NS0xLjI0NWgyLjg4Yy4zOCAwIC43Mi4yMzQuODU2LjU4OWwyLjg0MiA3LjQzMmMuMDMuMDguMTQyLjA4NC4xNzguMDA2bDMuNTgyLTcuNzk2YS40ODUuNDg1IDAgMCAxIC44OCAwek03Mi4zNDggMTIuMDc4Yy0uMDIyLS4xMDQtLjI0NS0uMTA0LS4yNjYgMC0uMTY3LjgxMi0uNTEzIDIuMDM2LTEuMTYzIDIuNjg2LS42NTEuNjUtMS44NzYuOTk3LTIuNjg3IDEuMTYzLS4xMDQuMDIyLS4xMDQuMjQ1IDAgLjI2Ni44MTEuMTY3IDIuMDM2LjUxMyAyLjY4NiAxLjE2My44NS44NSAxLjE0MyAyLjAxIDEuMjQ0IDIuNzA4LjAwNi4wNDQuMTQ1LjA1LjE1My4wMDcuMTUzLS43NS41LTIuMDIgMS4xOTYtMi43MTUuNjUtLjY1IDEuODc1LS45OTYgMi42ODYtMS4xNjMuMTA0LS4wMjEuMTA0LS4yNDQgMC0uMjY2LS44MTEtLjE2Ni0yLjAzNi0uNTEyLTIuNjg2LTEuMTYzLS42NS0uNjUtLjk5Ny0xLjg3NC0xLjE2My0yLjY4Nk00OC4xNjQgMjAuMTA4YzAtLjUwNy40MS0uOTE3LjkxNy0uOTE3aDIuNzdjLjUwNiAwIC45MTYuNDEuOTE2LjkxN3YxNi45NmMwIC41MDYtLjQxLjkxNi0uOTE3LjkxNmgtMi43N2EuOTE3LjkxNyAwIDAgMS0uOTE2LS45MTd6TTYwLjc2NCAyNC4wNDJhLjI0Mi4yNDIgMCAwIDAtLjIxNy0uMzVoLTUuNDczYS45MTcuOTE3IDAgMCAxLS45MTctLjkxN3YtMi42NjdjMC0uNTA3LjQxLS45MTcuOTE3LS45MTdoMTIuNjI4Yy4zOTIgMCAuOTE5LjMxOS43MzIuNjY0LS4wNi4xMS03LjI2NyAxMy41OTMtNy4yOTkgMTMuNjUybC0uMDAxLjAwM2EuMjQyLjI0MiAwIDAgMCAuMjE0LjM1Nmg2LjY3Yy41MDYgMCAuOTE2LjQxLjkxNi45MTZ2Mi4yODVjMCAuNTA3LS40MS45MTctLjkxNi45MTdINTQuNjI0Yy0uNDQyIDAtLjUzLS42NDItLjMzMi0xLjAzNnoiPjwvcGF0aD48L3N2Zz4=" | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Consider validating the clientId before using it.
The
accountNameFromProfileInfo
function assumescontext.clientId
is always a string. Add validation to handle cases where it might be undefined or not a string.📝 Committable suggestion