-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: switch ContractNegotiation to connector client (#123)
* feat(api-management): switch to use contractNegotiation service (#56) * feat: remove old Policy model and use correct one (#56)
- Loading branch information
Showing
10 changed files
with
62 additions
and
580 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
import {Policy} from "../../mgmt-api-client"; | ||
import {DataService} from "./data-service"; | ||
import {PolicyInput} from "../../mgmt-api-client/model"; | ||
|
||
export interface ContractOffer { | ||
id: string; | ||
assetId: string; | ||
properties: any; | ||
"dcat:dataset": Array<any>; | ||
"dcat:service": DataService; | ||
policy: Policy; | ||
policy: PolicyInput; | ||
originator: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.