Skip to content

Commit 9726bb9

Browse files
committed
fix(sailpoint): update integration icon
1 parent 7970e21 commit 9726bb9

5 files changed

Lines changed: 13 additions & 15 deletions

File tree

apps/docs/components/icons.tsx

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5895,12 +5895,11 @@ export function PipedriveIcon(props: SVGProps<SVGSVGElement>) {
58955895

58965896
export function SailPointIcon(props: SVGProps<SVGSVGElement>) {
58975897
return (
5898-
<svg {...props} xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'>
5899-
<path
5900-
fill='currentColor'
5901-
d='M7.25 2.4c5.66 1.7 9.2 6.86 9.9 15.35a.75.75 0 0 1-.75.81H7.25a.75.75 0 0 1-.75-.75V3.12a.75.75 0 0 1 .95-.72Z'
5902-
/>
5903-
<rect fill='currentColor' x='3' y='19.9' width='18' height='1.8' rx='.9' />
5898+
<svg {...props} xmlns='http://www.w3.org/2000/svg' viewBox='0 0 109.5 107'>
5899+
<path fill='#0033A1' d='M63,0l13.2,78.6H0L63,0z' />
5900+
<path fill='#CC27B0' d='M62.9,0l46.7,78.6H76L62.9,0z' />
5901+
<path fill='#0071CE' d='M0,78.6h76.2l4.8,28.4L0,78.6z' />
5902+
<path fill='#E17FD2' d='M76,78.6h33.5L80.8,107L76,78.6z' />
59045903
</svg>
59055904
)
59065905
}

apps/docs/content/docs/integrations/sailpoint.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card"
77

88
<BlockInfoCard
99
type="sailpoint"
10-
color="#0033A1"
10+
color="#FFFFFF"
1111
/>
1212

1313
{/* MANUAL-CONTENT-START:intro */}

apps/sim/blocks/blocks/sailpoint.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ export const SailPointBlock: BlockConfig = {
141141
docsLink: 'https://docs.sim.ai/integrations/sailpoint',
142142
category: 'tools',
143143
integrationType: IntegrationType.Security,
144-
bgColor: '#0033A1',
144+
bgColor: '#FFFFFF',
145145
icon: SailPointIcon,
146146
authMode: AuthMode.ApiKey,
147147
canvasPresentation: {

apps/sim/components/icons.tsx

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5895,12 +5895,11 @@ export function PipedriveIcon(props: SVGProps<SVGSVGElement>) {
58955895

58965896
export function SailPointIcon(props: SVGProps<SVGSVGElement>) {
58975897
return (
5898-
<svg {...props} xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'>
5899-
<path
5900-
fill='currentColor'
5901-
d='M7.25 2.4c5.66 1.7 9.2 6.86 9.9 15.35a.75.75 0 0 1-.75.81H7.25a.75.75 0 0 1-.75-.75V3.12a.75.75 0 0 1 .95-.72Z'
5902-
/>
5903-
<rect fill='currentColor' x='3' y='19.9' width='18' height='1.8' rx='.9' />
5898+
<svg {...props} xmlns='http://www.w3.org/2000/svg' viewBox='0 0 109.5 107'>
5899+
<path fill='#0033A1' d='M63,0l13.2,78.6H0L63,0z' />
5900+
<path fill='#CC27B0' d='M62.9,0l46.7,78.6H76L62.9,0z' />
5901+
<path fill='#0071CE' d='M0,78.6h76.2l4.8,28.4L0,78.6z' />
5902+
<path fill='#E17FD2' d='M76,78.6h33.5L80.8,107L76,78.6z' />
59045903
</svg>
59055904
)
59065905
}

packages/deployment-config/src/integrations.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19447,7 +19447,7 @@
1944719447
"name": "SailPoint",
1944819448
"description": "Govern identities and access in SailPoint Identity Security Cloud",
1944919449
"longDescription": "Read and act on identity-governance data in SailPoint Identity Security Cloud (ISC) with a Personal Access Token (PAT) exchanged through OAuth2 client credentials at https://TENANT.api.identitynow.com/oauth/token. SailPoint versions each service independently, so the integration uses current service paths such as /search/v1, /identities/v1, and /access-requests/v1; there is no shared annual API-version setting. Use a PAT whose owner has the ISC user level required by each endpoint because many identity, role, access-profile, certification, approval, and access-request operations require user context in addition to scopes. Common read scopes include sp:search:read, idn:identity:read, idn:accounts:read, idn:entitlement:read, idn:role-unchecked:read or idn:role-checked:read, idn:access-profile:read, idn:sources:read, idn:campaign:read, idn:access-request-status:read, idn:access-request-config:read, idn:task-management:read, and idn:access-request-approvals:read. Mutations additionally use idn:sources:manage for account aggregation, idn:entitlement:manage for entitlement aggregation and entitlement request configuration, idn:campaign:manage for certification decisions and sign-off, the access-request scopes listed by SailPoint for request submission, idn:access-request:create for account-selection discovery, and idn:access-request-approvals:manage for approval actions. A scope alone does not grant authority beyond the PAT owner's ISC permissions, and authorization failures may be returned as provider errors or filtered visibility depending on the endpoint and tenant policy.",
19450-
"bgColor": "#0033A1",
19450+
"bgColor": "#FFFFFF",
1945119451
"iconName": "SailPointIcon",
1945219452
"docsUrl": "https://docs.sim.ai/integrations/sailpoint",
1945319453
"operations": [

0 commit comments

Comments
 (0)