Skip to content
Open
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
9 changes: 6 additions & 3 deletions src/clients/external/Masterdata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const routes = {
schema: (dataEntity: string, schema: string) => `${dataEntity}/schemas/${schema}`,
scroll: (dataEntity: string) => `${dataEntity}/scroll`,
search: (dataEntity: string) => `${dataEntity}/search`,
searchKeyword: (dataEntity: string, keyword: string) => `${dataEntity}/search?_keyword=${encodeURIComponent(keyword)}`,
}

export class MasterData extends ExternalClient {
Expand Down Expand Up @@ -39,8 +40,8 @@ export class MasterData extends ExternalClient {
})
}

public createOrUpdateSchema<T>(
{ dataEntity, schemaName, schemaBody }: CreateSchemaInput,
public searchDocumentsWithKeyword<T>(
{ dataEntity, fields, keyword, pagination, schema, sort }: SearchWithKeywordInput,
tracingConfig?: RequestTracingConfig
) {
const metric = 'masterdata-createOrUpdateSchema'
Expand Down Expand Up @@ -165,7 +166,9 @@ export class MasterData extends ExternalClient {
public searchDocuments<T>(
{ dataEntity, fields, where, pagination, schema, sort }: SearchInput,
tracingConfig?: RequestTracingConfig
) {
)

{
const metric = 'masterdata-searchDocuments'
return this.http.get<T[]>(routes.search(dataEntity), {
cacheable: CacheType.None,
Expand Down