diff --git a/src/lib/seam/connect/openapi.ts b/src/lib/seam/connect/openapi.ts index 771a51d0..77e60342 100644 --- a/src/lib/seam/connect/openapi.ts +++ b/src/lib/seam/connect/openapi.ts @@ -54573,9 +54573,6 @@ export default { }, required: [ 'connector_id', - 'connector_type', - 'customer_id', - 'customer_key', 'connector_customer_id', 'unique_provider_resource_key', ], diff --git a/src/lib/seam/connect/route-types.ts b/src/lib/seam/connect/route-types.ts index e81b79a6..b2ebd263 100644 --- a/src/lib/seam/connect/route-types.ts +++ b/src/lib/seam/connect/route-types.ts @@ -63114,11 +63114,11 @@ export type Routes = { /** ID of the connector to sync */ connector_id: string /** Type of the connector to sync */ - connector_type: string + connector_type?: string | undefined /** ID of the customer to sync */ - customer_id: string + customer_id?: string | undefined /** Key of the customer to sync */ - customer_key: string + customer_key?: string | undefined /** ID of the connector customer to sync */ connector_customer_id: string | null /** Unique provider resource key of the connector to sync */