Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions apps/docs/components/icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4141,6 +4141,25 @@ export function SapS4HanaIcon(props: SVGProps<SVGSVGElement>) {
)
}

export function SapConcurIcon(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns='http://www.w3.org/2000/svg' viewBox='0 0 43.1 43.1'>
<path
fill='#F0AB00'
d='M20.5,28.2c-3.6,0-6.6-3-6.6-6.6s2.9-6.6,6.6-6.6c1.8,0,3.5,0.7,4.6,1.9l3.4-3.4c-2.1-2.1-4.9-3.3-8.1-3.3 C14.1,10.2,9,15.3,9,21.6S14.1,33,20.4,33c3.1,0,6-1.3,8.1-3.3l-3.4-3.4C23.9,27.4,22.3,28.2,20.5,28.2'
/>
<path
fill='#F0AB00'
d='M30.1,18.7c-1.6,0-2.9,1.3-2.9,2.9s1.3,2.9,2.9,2.9c1.6,0,2.9-1.3,2.9-2.9C33,20,31.7,18.7,30.1,18.7'
/>
<path
fill='#F0AB00'
d='M0,43.1h43.1V0H0V43.1z M4.8,38.2V4.8h33.4v15.5v2.4v15.5C38.2,38.2,4.8,38.2,4.8,38.2z'
/>
</svg>
)
}

export function ServiceNowIcon(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns='http://www.w3.org/2000/svg' viewBox='0 0 71.1 63.6'>
Expand Down
2 changes: 2 additions & 0 deletions apps/docs/components/ui/icon-mapping.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ import {
RootlyIcon,
S3Icon,
SalesforceIcon,
SapConcurIcon,
SapS4HanaIcon,
SESIcon,
SearchIcon,
Expand Down Expand Up @@ -372,6 +373,7 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
rootly: RootlyIcon,
s3: S3Icon,
salesforce: SalesforceIcon,
sap_concur: SapConcurIcon,
sap_s4hana: SapS4HanaIcon,
search: SearchIcon,
secrets_manager: SecretsManagerIcon,
Expand Down
1 change: 1 addition & 0 deletions apps/docs/content/docs/en/tools/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@
"rootly",
"s3",
"salesforce",
"sap_concur",
"sap_s4hana",
"search",
"secrets_manager",
Expand Down
2,761 changes: 2,761 additions & 0 deletions apps/docs/content/docs/en/tools/sap_concur.mdx

Large diffs are not rendered by default.

1,005 changes: 803 additions & 202 deletions apps/docs/content/docs/en/tools/sap_s4hana.mdx

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions apps/docs/content/docs/en/tools/sharepoint.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -278,5 +278,15 @@ Upload files to a SharePoint document library
| ↳ `createdDateTime` | string | When the file was created |
| ↳ `lastModifiedDateTime` | string | When the file was last modified |
| `fileCount` | number | Number of files uploaded |
| `skippedFiles` | array | Files that were skipped before upload |
| ↳ `name` | string | File name |
| ↳ `size` | number | File size in bytes |
| ↳ `limit` | number | Upload size limit in bytes |
| ↳ `reason` | string | Reason the file was skipped |
| `skippedCount` | number | Number of files skipped |
| `errors` | array | Per-file upload errors |
| ↳ `name` | string | File name |
| ↳ `error` | string | Error message |
| ↳ `status` | number | HTTP status from Microsoft Graph |


2 changes: 2 additions & 0 deletions apps/sim/app/(landing)/integrations/data/icon-mapping.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ import {
RootlyIcon,
S3Icon,
SalesforceIcon,
SapConcurIcon,
SapS4HanaIcon,
SESIcon,
SearchIcon,
Expand Down Expand Up @@ -354,6 +355,7 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
rootly: RootlyIcon,
s3: S3Icon,
salesforce: SalesforceIcon,
sap_concur: SapConcurIcon,
sap_s4hana: SapS4HanaIcon,
search: SearchIcon,
secrets_manager: SecretsManagerIcon,
Expand Down
Loading
Loading