-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
105 changed files
with
546 additions
and
577 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,5 +1,5 @@ | ||
export declare function moveFeeDown(feeId: number | string): Promise<boolean>; | ||
export declare function moveFeeDownToBottom(feeId: number | string): Promise<boolean>; | ||
export declare function moveFeeUp(feeId: number): Promise<boolean>; | ||
export declare function moveFeeUp(feeId: number | string): Promise<boolean>; | ||
export declare function moveFeeUpToTop(feeId: number | string): Promise<boolean>; | ||
export default moveFeeUp; |
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,4 +1,4 @@ | ||
export declare function moveOccupancyTypeFieldDown(occupancyTypeFieldId: number): Promise<boolean>; | ||
export declare function moveOccupancyTypeFieldDownToBottom(occupancyTypeFieldId: number): Promise<boolean>; | ||
export declare function moveOccupancyTypeFieldUp(occupancyTypeFieldId: number): Promise<boolean>; | ||
export declare function moveOccupancyTypeFieldUpToTop(occupancyTypeFieldId: number): Promise<boolean>; | ||
export declare function moveOccupancyTypeFieldDown(occupancyTypeFieldId: number | string): Promise<boolean>; | ||
export declare function moveOccupancyTypeFieldDownToBottom(occupancyTypeFieldId: number | string): Promise<boolean>; | ||
export declare function moveOccupancyTypeFieldUp(occupancyTypeFieldId: number | string): Promise<boolean>; | ||
export declare function moveOccupancyTypeFieldUpToTop(occupancyTypeFieldId: number | string): Promise<boolean>; |
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,6 +1,6 @@ | ||
type RecordTable = 'FeeCategories' | 'LotOccupantTypes' | 'LotStatuses' | 'LotTypes' | 'OccupancyTypes' | 'WorkOrderMilestoneTypes' | 'WorkOrderTypes'; | ||
export declare function moveRecordDown(recordTable: RecordTable, recordId: number): Promise<boolean>; | ||
export declare function moveRecordDownToBottom(recordTable: RecordTable, recordId: number): Promise<boolean>; | ||
export declare function moveRecordUp(recordTable: RecordTable, recordId: number): Promise<boolean>; | ||
export declare function moveRecordUpToTop(recordTable: RecordTable, recordId: number): Promise<boolean>; | ||
export declare function moveRecordDown(recordTable: RecordTable, recordId: number | string): Promise<boolean>; | ||
export declare function moveRecordDownToBottom(recordTable: RecordTable, recordId: number | string): Promise<boolean>; | ||
export declare function moveRecordUp(recordTable: RecordTable, recordId: number | string): Promise<boolean>; | ||
export declare function moveRecordUpToTop(recordTable: RecordTable, recordId: number | string): Promise<boolean>; | ||
export {}; |
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
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
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,2 +1,4 @@ | ||
import type { Request, Response } from 'express'; | ||
export default function handler(request: Request, response: Response): Promise<void>; | ||
export default function handler(request: Request<unknown, unknown, { | ||
workOrderTypeId: string; | ||
}>, response: Response): Promise<void>; |
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,2 +1,5 @@ | ||
import type { Request, Response } from 'express'; | ||
export default function handler(request: Request, response: Response): Promise<void>; | ||
export default function handler(request: Request<unknown, unknown, { | ||
feeCategoryId: string; | ||
moveToEnd: '0' | '1'; | ||
}>, response: Response): Promise<void>; |
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,2 +1,5 @@ | ||
import type { Request, Response } from 'express'; | ||
export default function handler(request: Request, response: Response): Promise<void>; | ||
export default function handler(request: Request<unknown, unknown, { | ||
feeCategoryId: string; | ||
moveToEnd: '0' | '1'; | ||
}>, response: Response): Promise<void>; |
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,2 +1,5 @@ | ||
import type { Request, Response } from 'express'; | ||
export default function handler(request: Request, response: Response): Promise<void>; | ||
export default function handler(request: Request<unknown, unknown, { | ||
feeId: string; | ||
moveToEnd: '0' | '1'; | ||
}>, response: Response): Promise<void>; |
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,2 +1,5 @@ | ||
import type { Request, Response } from 'express'; | ||
export default function handler(request: Request, response: Response): Promise<void>; | ||
export default function handler(request: Request<unknown, unknown, { | ||
feeId: string; | ||
moveToEnd: '0' | '1'; | ||
}>, response: Response): Promise<void>; |
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,2 +1,5 @@ | ||
import type { Request, Response } from 'express'; | ||
export default function handler(request: Request, response: Response): Promise<void>; | ||
export default function handler(request: Request<unknown, unknown, { | ||
lotOccupantTypeId: string; | ||
moveToEnd: '0' | '1'; | ||
}>, response: Response): Promise<void>; |
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,2 +1,5 @@ | ||
import type { Request, Response } from 'express'; | ||
export default function handler(request: Request, response: Response): Promise<void>; | ||
export default function handler(request: Request<unknown, unknown, { | ||
lotOccupantTypeId: string; | ||
moveToEnd: '0' | '1'; | ||
}>, response: Response): Promise<void>; |
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,2 +1,5 @@ | ||
import type { Request, Response } from 'express'; | ||
export default function handler(request: Request, response: Response): Promise<void>; | ||
export default function handler(request: Request<unknown, unknown, { | ||
lotStatusId: string; | ||
moveToEnd: '0' | '1'; | ||
}>, response: Response): Promise<void>; |
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,2 +1,5 @@ | ||
import type { Request, Response } from 'express'; | ||
export default function handler(request: Request, response: Response): Promise<void>; | ||
export default function handler(request: Request<unknown, unknown, { | ||
lotStatusId: string; | ||
moveToEnd: '0' | '1'; | ||
}>, response: Response): Promise<void>; |
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,2 +1,5 @@ | ||
import type { Request, Response } from 'express'; | ||
export default function handler(request: Request, response: Response): Promise<void>; | ||
export default function handler(request: Request<unknown, unknown, { | ||
lotTypeId: string; | ||
moveToEnd: '0' | '1'; | ||
}>, response: Response): Promise<void>; |
Oops, something went wrong.