Skip to content

Commit

Permalink
fix: eclude fcats identifier from keys
Browse files Browse the repository at this point in the history
  • Loading branch information
AlitaBernachot committed Mar 4, 2025
1 parent c0ca80e commit d9bdc0a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions libs/common/domain/src/lib/model/record/metadata.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ export type OnlineResource = DatasetOnlineResource | ServiceOnlineResource

export type CatalogRecord = DatasetRecord | ReuseRecord | ServiceRecord

export type CatalogRecordKeys =
| keyof DatasetRecord
| keyof ReuseRecord
| keyof ServiceRecord
export type CatalogRecordKeys = Exclude<
keyof DatasetRecord | keyof ReuseRecord | keyof ServiceRecord,
'featureCatalogIdentifier'
>

0 comments on commit d9bdc0a

Please sign in to comment.