Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Downgrade nestjs/swagger #1188

Merged
merged 1 commit into from
Apr 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"@nestjs/jwt": "^7.1.0",
"@nestjs/passport": "^7.1.0",
"@nestjs/platform-express": "^7.4.4",
"@nestjs/swagger": "4.8.0",
"@nestjs/swagger": "4.6.1",
"@nestjs/throttler": "^1.1.2",
"@nestjs/typeorm": "^7.1.0",
"@types/cache-manager": "^3.4.0",
Expand Down
16 changes: 8 additions & 8 deletions backend/core/types/src/backend-swagger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1888,13 +1888,13 @@ export interface Listing {
property: Property;

/** */
applicationAddress: Address;
applicationAddress: CombinedApplicationAddressTypes;

/** */
applicationPickUpAddress: Address;
applicationPickUpAddress: CombinedApplicationPickUpAddressTypes;

/** */
leasingAgentAddress: Address;
leasingAgentAddress: CombinedLeasingAgentAddressTypes;

/** */
leasingAgents?: UserBasic[];
Expand Down Expand Up @@ -3664,7 +3664,7 @@ export enum InputType {
'text' = 'text',
'address' = 'address'
}
export type CombinedAmiChartTypes = AmiChart;
export type CombinedAmiChartTypes = (AmiChart & any) | null;
export enum ApplicationMethodType {
'Internal' = 'Internal',
'FileDownload' = 'FileDownload',
Expand All @@ -3679,10 +3679,10 @@ export enum ListingEventType {
'publicLottery' = 'publicLottery',
'lotteryResults' = 'lotteryResults'
}
export type CombinedApplicationAddressTypes = AddressUpdate;
export type CombinedApplicationPickUpAddressTypes = AddressUpdate;
export type CombinedLeasingAgentAddressTypes = AddressUpdate;
export type CombinedWhatToExpectTypes = WhatToExpect;
export type CombinedApplicationAddressTypes = (AddressUpdate & any) | null;
export type CombinedApplicationPickUpAddressTypes = (AddressUpdate & any) | null;
export type CombinedLeasingAgentAddressTypes = (AddressUpdate & any) | null;
export type CombinedWhatToExpectTypes = (WhatToExpect & any) | null;
export enum IncomePeriod {
'perMonth' = 'perMonth',
'perYear' = 'perYear'
Expand Down