in packages/enterprise-search/src/api/workplace/api.ts [71:83]
async putContentSource (this: That, params: T.PutContentSourceRequest, options?: TransportRequestOptions): Promise<T.PutContentSourceResponse> {
const {
content_source_id,
body,
...querystring
} = params ?? {}
return await this.transport.request<T.PutContentSourceResponse>({
method: 'PUT',
path: `/api/ws/v1/sources/${content_source_id}`,
querystring,
body: body
}, options)
}