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
6 changes: 1 addition & 5 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54571,11 +54571,7 @@ export default {
type: 'string',
},
},
required: [
'connector_id',
'connector_customer_id',
'unique_provider_resource_key',
],
required: ['connector_id'],
type: 'object',
},
},
Expand Down
4 changes: 2 additions & 2 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down