forked from Yara724/api
lookups and inquiries in lookups added
This commit is contained in:
@@ -238,6 +238,59 @@ export class LookupsController {
|
||||
return await this.lookupsService.getFileTypes();
|
||||
}
|
||||
|
||||
@Get("cities")
|
||||
@ApiOperation({
|
||||
summary: "Fanavaran cities lookup",
|
||||
description: "Returns city codes from common/base-info/cities.",
|
||||
})
|
||||
@ApiOkResponse({
|
||||
description: "Returns Fanavaran cities lookup data",
|
||||
schema: { type: "array", items: { type: "object" } },
|
||||
})
|
||||
async cities() {
|
||||
return await this.lookupsService.getCities();
|
||||
}
|
||||
|
||||
@Get("provinces")
|
||||
@ApiOperation({
|
||||
summary: "Fanavaran provinces lookup",
|
||||
description: "Returns province codes from common/base-info/provinces.",
|
||||
})
|
||||
@ApiOkResponse({
|
||||
description: "Returns Fanavaran provinces lookup data",
|
||||
schema: { type: "array", items: { type: "object" } },
|
||||
})
|
||||
async provinces() {
|
||||
return await this.lookupsService.getProvinces();
|
||||
}
|
||||
|
||||
@Get("dmg-case-type")
|
||||
@ApiOperation({
|
||||
summary: "Fanavaran damage case type lookup",
|
||||
description: "Returns damage case type codes from car/code-list/dmg-case-type.",
|
||||
})
|
||||
@ApiOkResponse({
|
||||
description: "Returns Fanavaran damage case type lookup data",
|
||||
schema: { type: "array", items: { type: "object" } },
|
||||
})
|
||||
async dmgCaseType() {
|
||||
return await this.lookupsService.getDmgCaseType();
|
||||
}
|
||||
|
||||
@Get("dmg-history-status")
|
||||
@ApiOperation({
|
||||
summary: "Fanavaran damage history status lookup",
|
||||
description:
|
||||
"Returns damage history status codes from car/code-list/dmg-case-history-status.",
|
||||
})
|
||||
@ApiOkResponse({
|
||||
description: "Returns Fanavaran damage history status lookup data",
|
||||
schema: { type: "array", items: { type: "object" } },
|
||||
})
|
||||
async dmgHistoryStatus() {
|
||||
return await this.lookupsService.getDmgHistoryStatus();
|
||||
}
|
||||
|
||||
@Get("inquiry-by-vin")
|
||||
@ApiOperation({
|
||||
summary: "Fanavaran vehicle inquiry by VIN",
|
||||
|
||||
Reference in New Issue
Block a user