Skip to content

Commit

Permalink
Another fix for type name change.
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonLin0991 committed Jul 14, 2023
1 parent 722a5cf commit c451062
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions services/app-api/src/domain-models/contractAndRates/rateType.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import { ContractRevision, UpdateInfo } from './contractAndRatesZodSchema'
import {
ContractRevisionType,
UpdateInfoType,
} from './contractAndRatesZodSchema'

// Rate represents the rate specific information in a submission package
// All that data is contained in revisions, each revision represents the data in a single submission
Expand All @@ -14,11 +17,11 @@ interface Rate {
// The set of contractRevisions hold exactly what contract data was present at the time this rate was submitted.
interface RateRevision {
id: string
unlockInfo?: UpdateInfo
submitInfo?: UpdateInfo
unlockInfo?: UpdateInfoType
submitInfo?: UpdateInfoType

revisionFormData: string
contractRevisions?: ContractRevision[]
contractRevisions?: ContractRevisionType[]
}

export type { Rate, RateRevision }

0 comments on commit c451062

Please sign in to comment.