import type { ShopifyCustomerResponse, ShopifyUpdateCustomerParams } from '@/tools/shopify/types' import { CUSTOMER_OUTPUT_PROPERTIES } from '@/tools/shopify/types' import type { ToolConfig } from '@/tools/types' export const shopifyUpdateCustomerTool: ToolConfig< ShopifyUpdateCustomerParams, ShopifyCustomerResponse > = { id: 'shopify_update_customer', name: 'Shopify Update Customer', description: 'Update an existing customer in your Shopify store', version: '1.0.0', oauth: { required: true, provider: 'shopify', }, params: { shopDomain: { type: 'string', required: true, visibility: 'user-only', description: 'Your Shopify store domain (e.g., mystore.myshopify.com)', }, customerId: { type: 'string', required: true, visibility: 'user-or-llm', description: 'Customer ID to update (gid://shopify/Customer/123456789)', }, email: { type: 'string', required: false, visibility: 'user-or-llm', description: 'New customer email address', }, firstName: { type: 'string', required: false, visibility: 'user-or-llm', description: 'New customer first name', }, lastName: { type: 'string', required: false, visibility: 'user-or-llm', description: 'New customer last name', }, phone: { type: 'string', required: false, visibility: 'user-or-llm', description: 'New customer phone number', }, note: { type: 'string', required: false, visibility: 'user-or-llm', description: 'New note about the customer', }, tags: { type: 'array', required: false, visibility: 'user-or-llm', description: 'New customer tags', }, }, request: { url: (params) => `https://${params.shopDomain || params.idToken}/admin/api/2024-10/graphql.json`, method: 'POST', headers: (params) => { if (!params.accessToken) { throw new Error('Missing access token for Shopify API request') } return { 'Content-Type': 'application/json', 'X-Shopify-Access-Token': params.accessToken, } }, body: (params) => { if (!params.customerId) { throw new Error('Customer ID is required to update a customer') } const input: Record = { id: params.customerId, } if (params.email !== undefined) { input.email = params.email } if (params.firstName !== undefined) { input.firstName = params.firstName } if (params.lastName !== undefined) { input.lastName = params.lastName } if (params.phone !== undefined) { input.phone = params.phone } if (params.note !== undefined) { input.note = params.note } if (params.tags !== undefined) { input.tags = params.tags } return { query: ` mutation customerUpdate($input: CustomerInput!) { customerUpdate(input: $input) { customer { id email firstName lastName phone createdAt updatedAt note tags amountSpent { amount currencyCode } addresses { address1 city province country zip } defaultAddress { address1 city province country zip } } userErrors { field message } } } `, variables: { input, }, } }, }, transformResponse: async (response) => { const data = await response.json() if (data.errors) { return { success: false, error: data.errors[0]?.message || 'Failed to update customer', output: {}, } } const result = data.data?.customerUpdate if (result?.userErrors?.length > 0) { return { success: false, error: result.userErrors.map((e: { message: string }) => e.message).join(', '), output: {}, } } const customer = result?.customer if (!customer) { return { success: false, error: 'Customer update was not successful', output: {}, } } return { success: true, output: { customer, }, } }, outputs: { customer: { type: 'object', description: 'The updated customer', properties: CUSTOMER_OUTPUT_PROPERTIES, }, }, }