@dynamatix/gb-schemas 2.17.3 → 2.17.6
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.
|
@@ -49,6 +49,10 @@ declare const ApplicationOfferModel: mongoose.Model<{
|
|
|
49
49
|
isOfferIssuedConfirmed: boolean;
|
|
50
50
|
offerIssuedByUserId: mongoose.Types.ObjectId;
|
|
51
51
|
offerIssuedAt: NativeDate;
|
|
52
|
+
isBankSolicitorConfirmed: boolean;
|
|
53
|
+
bankSolicitorConfirmedByUserId: mongoose.Types.ObjectId;
|
|
54
|
+
bankSolicitorConfirmedAt: NativeDate;
|
|
55
|
+
isBankSolicitorConfirmedAtGeneration: boolean;
|
|
52
56
|
}, {}, {}, {}, mongoose.Document<unknown, {}, {
|
|
53
57
|
applicationId: mongoose.Types.ObjectId;
|
|
54
58
|
offerStatusLid: mongoose.Types.ObjectId;
|
|
@@ -71,6 +75,10 @@ declare const ApplicationOfferModel: mongoose.Model<{
|
|
|
71
75
|
isOfferIssuedConfirmed: boolean;
|
|
72
76
|
offerIssuedByUserId: mongoose.Types.ObjectId;
|
|
73
77
|
offerIssuedAt: NativeDate;
|
|
78
|
+
isBankSolicitorConfirmed: boolean;
|
|
79
|
+
bankSolicitorConfirmedByUserId: mongoose.Types.ObjectId;
|
|
80
|
+
bankSolicitorConfirmedAt: NativeDate;
|
|
81
|
+
isBankSolicitorConfirmedAtGeneration: boolean;
|
|
74
82
|
}, {}> & {
|
|
75
83
|
applicationId: mongoose.Types.ObjectId;
|
|
76
84
|
offerStatusLid: mongoose.Types.ObjectId;
|
|
@@ -93,6 +101,10 @@ declare const ApplicationOfferModel: mongoose.Model<{
|
|
|
93
101
|
isOfferIssuedConfirmed: boolean;
|
|
94
102
|
offerIssuedByUserId: mongoose.Types.ObjectId;
|
|
95
103
|
offerIssuedAt: NativeDate;
|
|
104
|
+
isBankSolicitorConfirmed: boolean;
|
|
105
|
+
bankSolicitorConfirmedByUserId: mongoose.Types.ObjectId;
|
|
106
|
+
bankSolicitorConfirmedAt: NativeDate;
|
|
107
|
+
isBankSolicitorConfirmedAtGeneration: boolean;
|
|
96
108
|
} & {
|
|
97
109
|
_id: mongoose.Types.ObjectId;
|
|
98
110
|
} & {
|
|
@@ -119,6 +131,10 @@ declare const ApplicationOfferModel: mongoose.Model<{
|
|
|
119
131
|
isOfferIssuedConfirmed: boolean;
|
|
120
132
|
offerIssuedByUserId: mongoose.Types.ObjectId;
|
|
121
133
|
offerIssuedAt: NativeDate;
|
|
134
|
+
isBankSolicitorConfirmed: boolean;
|
|
135
|
+
bankSolicitorConfirmedByUserId: mongoose.Types.ObjectId;
|
|
136
|
+
bankSolicitorConfirmedAt: NativeDate;
|
|
137
|
+
isBankSolicitorConfirmedAtGeneration: boolean;
|
|
122
138
|
}, mongoose.Document<unknown, {}, mongoose.FlatRecord<{
|
|
123
139
|
applicationId: mongoose.Types.ObjectId;
|
|
124
140
|
offerStatusLid: mongoose.Types.ObjectId;
|
|
@@ -141,6 +157,10 @@ declare const ApplicationOfferModel: mongoose.Model<{
|
|
|
141
157
|
isOfferIssuedConfirmed: boolean;
|
|
142
158
|
offerIssuedByUserId: mongoose.Types.ObjectId;
|
|
143
159
|
offerIssuedAt: NativeDate;
|
|
160
|
+
isBankSolicitorConfirmed: boolean;
|
|
161
|
+
bankSolicitorConfirmedByUserId: mongoose.Types.ObjectId;
|
|
162
|
+
bankSolicitorConfirmedAt: NativeDate;
|
|
163
|
+
isBankSolicitorConfirmedAtGeneration: boolean;
|
|
144
164
|
}>, {}> & mongoose.FlatRecord<{
|
|
145
165
|
applicationId: mongoose.Types.ObjectId;
|
|
146
166
|
offerStatusLid: mongoose.Types.ObjectId;
|
|
@@ -163,6 +183,10 @@ declare const ApplicationOfferModel: mongoose.Model<{
|
|
|
163
183
|
isOfferIssuedConfirmed: boolean;
|
|
164
184
|
offerIssuedByUserId: mongoose.Types.ObjectId;
|
|
165
185
|
offerIssuedAt: NativeDate;
|
|
186
|
+
isBankSolicitorConfirmed: boolean;
|
|
187
|
+
bankSolicitorConfirmedByUserId: mongoose.Types.ObjectId;
|
|
188
|
+
bankSolicitorConfirmedAt: NativeDate;
|
|
189
|
+
isBankSolicitorConfirmedAtGeneration: boolean;
|
|
166
190
|
}> & {
|
|
167
191
|
_id: mongoose.Types.ObjectId;
|
|
168
192
|
} & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"application-offer.model.d.ts","sourceRoot":"","sources":["../../applications/application-offer.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"application-offer.model.d.ts","sourceRoot":"","sources":["../../applications/application-offer.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,QAAQ,MAAM,UAAU,CAAC;AA2DhC,QAAA,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAkD,CAAC;AAC9E,eAAe,qBAAqB,CAAC"}
|
|
@@ -43,6 +43,10 @@ const offerSchema = new mongoose.Schema({
|
|
|
43
43
|
isOfferIssuedConfirmed: { type: Boolean, default: false },
|
|
44
44
|
offerIssuedByUserId: { type: mongoose.Schema.Types.ObjectId, ref: "User", default: null },
|
|
45
45
|
offerIssuedAt: { type: Date, default: null },
|
|
46
|
+
isBankSolicitorConfirmed: { type: Boolean, default: false },
|
|
47
|
+
bankSolicitorConfirmedByUserId: { type: mongoose.Schema.Types.ObjectId, ref: "User", default: null },
|
|
48
|
+
bankSolicitorConfirmedAt: { type: Date, default: null },
|
|
49
|
+
isBankSolicitorConfirmedAtGeneration: { type: Boolean, default: false },
|
|
46
50
|
});
|
|
47
51
|
// Apply audit middleware to the schema
|
|
48
52
|
applyAuditMiddleware(offerSchema, "ApplicationOffer");
|