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
3 changes: 0 additions & 3 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54573,9 +54573,6 @@ export default {
},
required: [
'connector_id',
'connector_type',
'customer_id',
'customer_key',
'connector_customer_id',
'unique_provider_resource_key',
],
Expand Down
6 changes: 3 additions & 3 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down