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
2 changes: 1 addition & 1 deletion apps/docs/components/icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4099,7 +4099,7 @@ export function SalesforceIcon(props: SVGProps<SVGSVGElement>) {
export function SapS4HanaIcon(props: SVGProps<SVGSVGElement>) {
const id = useId()
return (
<svg {...props} xmlns='http://www.w3.org/2000/svg' viewBox='0 0 412.38 204'>
<svg {...props} xmlns='http://www.w3.org/2000/svg' viewBox='15 10 382.38 184'>
<defs>
<linearGradient
id={id}
Expand Down
2 changes: 1 addition & 1 deletion apps/sim/components/icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4099,7 +4099,7 @@ export function SalesforceIcon(props: SVGProps<SVGSVGElement>) {
export function SapS4HanaIcon(props: SVGProps<SVGSVGElement>) {
const id = useId()
return (
<svg {...props} xmlns='http://www.w3.org/2000/svg' viewBox='0 0 412.38 204'>
<svg {...props} xmlns='http://www.w3.org/2000/svg' viewBox='15 10 382.38 184'>
<defs>
<linearGradient
id={id}
Expand Down
2 changes: 1 addition & 1 deletion apps/sim/tools/sap_s4hana/update_business_partner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export const updateBusinessPartnerTool: ToolConfig<UpdateBusinessPartnerParams,
...baseProxyBody(params),
service: 'API_BUSINESS_PARTNER',
path: `/A_BusinessPartner(${quoteOdataKey(params.businessPartner)})`,
method: 'PATCH',
method: 'MERGE',
query: { $format: 'json' },
body: payload,
ifMatch: params.ifMatch || '*',
Expand Down
2 changes: 1 addition & 1 deletion apps/sim/tools/sap_s4hana/update_customer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const updateCustomerTool: ToolConfig<UpdateCustomerParams, SapProxyRespon
...baseProxyBody(params),
service: 'API_BUSINESS_PARTNER',
path: `/A_Customer(${quoteOdataKey(params.customer)})`,
method: 'PATCH',
method: 'MERGE',
query: { $format: 'json' },
body: payload,
ifMatch: params.ifMatch || '*',
Expand Down
2 changes: 1 addition & 1 deletion apps/sim/tools/sap_s4hana/update_product.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const updateProductTool: ToolConfig<UpdateProductParams, SapProxyResponse
...baseProxyBody(params),
service: 'API_PRODUCT_SRV',
path: `/A_Product(${quoteOdataKey(params.product)})`,
method: 'PATCH',
method: 'MERGE',
query: { $format: 'json' },
body: payload,
ifMatch: params.ifMatch || '*',
Expand Down
2 changes: 1 addition & 1 deletion apps/sim/tools/sap_s4hana/update_purchase_order.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const updatePurchaseOrderTool: ToolConfig<UpdatePurchaseOrderParams, SapP
...baseProxyBody(params),
service: 'API_PURCHASEORDER_PROCESS_SRV',
path: `/A_PurchaseOrder(${quoteOdataKey(params.purchaseOrder)})`,
method: 'PATCH',
method: 'MERGE',
query: { $format: 'json' },
body: payload,
ifMatch: params.ifMatch || '*',
Expand Down
2 changes: 1 addition & 1 deletion apps/sim/tools/sap_s4hana/update_purchase_requisition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export const updatePurchaseRequisitionTool: ToolConfig<
...baseProxyBody(params),
service: 'API_PURCHASEREQ_PROCESS_SRV',
path: `/A_PurchaseRequisitionHeader(${quoteOdataKey(params.purchaseRequisition)})`,
method: 'PATCH',
method: 'MERGE',
query: { $format: 'json' },
body: payload,
ifMatch: params.ifMatch || '*',
Expand Down
2 changes: 1 addition & 1 deletion apps/sim/tools/sap_s4hana/update_sales_order.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const updateSalesOrderTool: ToolConfig<UpdateSalesOrderParams, SapProxyRe
...baseProxyBody(params),
service: 'API_SALES_ORDER_SRV',
path: `/A_SalesOrder(${quoteOdataKey(params.salesOrder)})`,
method: 'PATCH',
method: 'MERGE',
query: { $format: 'json' },
body: payload,
ifMatch: params.ifMatch || '*',
Expand Down
2 changes: 1 addition & 1 deletion apps/sim/tools/sap_s4hana/update_supplier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const updateSupplierTool: ToolConfig<UpdateSupplierParams, SapProxyRespon
...baseProxyBody(params),
service: 'API_BUSINESS_PARTNER',
path: `/A_Supplier(${quoteOdataKey(params.supplier)})`,
method: 'PATCH',
method: 'MERGE',
query: { $format: 'json' },
body: payload,
ifMatch: params.ifMatch || '*',
Expand Down
Loading