Make the rest of the application use "new" services
This commit is contained in:
@@ -29,8 +29,8 @@ export type HTMLString = string
|
||||
|
||||
type ExpandType<T> = unknown extends T
|
||||
? T extends unknown
|
||||
? { expand?: unknown }
|
||||
: { expand: T }
|
||||
? { expand?: unknown }
|
||||
: { expand: T }
|
||||
: { expand: T }
|
||||
|
||||
// System fields
|
||||
@@ -105,6 +105,7 @@ export type IndBillitemRecord = {
|
||||
quantity: number
|
||||
updated?: IsoDateString
|
||||
}
|
||||
export type IndBillitemRecordNoId = Omit<IndBillitemRecord, 'id' | 'created' | 'updated'>
|
||||
|
||||
export type IndFacilityRecord = {
|
||||
created?: IsoDateString
|
||||
@@ -138,6 +139,7 @@ export type IndJobRecord = {
|
||||
status: IndJobStatusOptions
|
||||
updated?: IsoDateString
|
||||
}
|
||||
export type IndJobRecordNoId = Omit<IndJobRecord, 'id' | 'created' | 'updated'>
|
||||
|
||||
export type IndTransactionRecord = {
|
||||
buyer?: string
|
||||
@@ -154,6 +156,7 @@ export type IndTransactionRecord = {
|
||||
updated?: IsoDateString
|
||||
wallet?: string
|
||||
}
|
||||
export type IndTransactionRecordNoId = Omit<IndTransactionRecord, 'id' | 'created' | 'updated'>
|
||||
|
||||
export type RegionviewRecord = {
|
||||
id: string
|
||||
|
||||
Reference in New Issue
Block a user