Make the rest of the application use "new" services

This commit is contained in:
2025-07-04 16:19:26 +02:00
parent 70d6979b47
commit 83fa902b4c
8 changed files with 159 additions and 179 deletions

View File

@@ -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