diff --git a/src/lib/seam/connect/openapi.ts b/src/lib/seam/connect/openapi.ts index 41212b77..829a8c66 100644 --- a/src/lib/seam/connect/openapi.ts +++ b/src/lib/seam/connect/openapi.ts @@ -54571,11 +54571,7 @@ export default { type: 'string', }, }, - required: [ - 'connector_id', - 'connector_customer_id', - 'unique_provider_resource_key', - ], + required: ['connector_id'], type: 'object', }, }, diff --git a/src/lib/seam/connect/route-types.ts b/src/lib/seam/connect/route-types.ts index 9339c2e4..af27a3fa 100644 --- a/src/lib/seam/connect/route-types.ts +++ b/src/lib/seam/connect/route-types.ts @@ -63120,9 +63120,9 @@ export type Routes = { /** Key of the customer to sync */ customer_key?: string | undefined /** ID of the connector customer to sync */ - connector_customer_id: string | null + connector_customer_id?: (string | null) | undefined /** Unique provider resource key of the connector to sync */ - unique_provider_resource_key: string | null + unique_provider_resource_key?: (string | null) | undefined } formData: {} jsonResponse: {