gemcap-be-common 1.5.169 → 1.5.170
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -57,10 +57,10 @@ export interface IProductBrokerPlain extends Omit<IProductBroker, 'borrowerId' |
|
|
|
57
57
|
PLCodeId: string;
|
|
58
58
|
}
|
|
59
59
|
export interface IProductBrokerDocWithLoanBroker extends TProductBrokerDoc {
|
|
60
|
-
loanBroker
|
|
60
|
+
loanBroker?: ILoanBrokerLean;
|
|
61
61
|
}
|
|
62
62
|
export interface IProductBrokerWithLoanBrokerPlain extends IProductBrokerPlain {
|
|
63
|
-
loanBroker
|
|
63
|
+
loanBroker?: ILoanBrokerPlain;
|
|
64
64
|
}
|
|
65
65
|
export type IProductBrokerView = Omit<IProductBrokerLean, 'borrowerId' | 'order'>;
|
|
66
66
|
export type TProductBrokerModel = mongoose.Model<IProductBroker>;
|
|
@@ -57,11 +57,11 @@ export interface IProductBrokerPlain extends Omit<IProductBroker, 'borrowerId' |
|
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
export interface IProductBrokerDocWithLoanBroker extends TProductBrokerDoc {
|
|
60
|
-
loanBroker
|
|
60
|
+
loanBroker?: ILoanBrokerLean;
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
export interface IProductBrokerWithLoanBrokerPlain extends IProductBrokerPlain {
|
|
64
|
-
loanBroker
|
|
64
|
+
loanBroker?: ILoanBrokerPlain;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
export type IProductBrokerView = Omit<IProductBrokerLean, 'borrowerId' | 'order'>
|