@dynamatix/gb-schemas 2.14.14 → 2.14.16
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.
- package/dist/applications/applications-task.model.d.ts +12 -0
- package/dist/applications/applications-task.model.d.ts.map +1 -1
- package/dist/applications/applications-task.model.js +2 -0
- package/dist/applications/applications-task.type.d.ts +2 -0
- package/dist/applications/applications-task.type.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -51,6 +51,8 @@ declare const ApplicationsTaskModel: mongoose.Model<{
|
|
|
51
51
|
responderId?: mongoose.Types.ObjectId | null | undefined;
|
|
52
52
|
taskType?: "internal" | "broker" | null | undefined;
|
|
53
53
|
acceptedDate?: string | null | undefined;
|
|
54
|
+
acceptedById?: mongoose.Types.ObjectId | null | undefined;
|
|
55
|
+
rejectedById?: mongoose.Types.ObjectId | null | undefined;
|
|
54
56
|
};
|
|
55
57
|
statusDate: string;
|
|
56
58
|
statusReason: string;
|
|
@@ -94,6 +96,8 @@ declare const ApplicationsTaskModel: mongoose.Model<{
|
|
|
94
96
|
responderId?: mongoose.Types.ObjectId | null | undefined;
|
|
95
97
|
taskType?: "internal" | "broker" | null | undefined;
|
|
96
98
|
acceptedDate?: string | null | undefined;
|
|
99
|
+
acceptedById?: mongoose.Types.ObjectId | null | undefined;
|
|
100
|
+
rejectedById?: mongoose.Types.ObjectId | null | undefined;
|
|
97
101
|
};
|
|
98
102
|
statusDate: string;
|
|
99
103
|
statusReason: string;
|
|
@@ -137,6 +141,8 @@ declare const ApplicationsTaskModel: mongoose.Model<{
|
|
|
137
141
|
responderId?: mongoose.Types.ObjectId | null | undefined;
|
|
138
142
|
taskType?: "internal" | "broker" | null | undefined;
|
|
139
143
|
acceptedDate?: string | null | undefined;
|
|
144
|
+
acceptedById?: mongoose.Types.ObjectId | null | undefined;
|
|
145
|
+
rejectedById?: mongoose.Types.ObjectId | null | undefined;
|
|
140
146
|
};
|
|
141
147
|
statusDate: string;
|
|
142
148
|
statusReason: string;
|
|
@@ -186,6 +192,8 @@ declare const ApplicationsTaskModel: mongoose.Model<{
|
|
|
186
192
|
responderId?: mongoose.Types.ObjectId | null | undefined;
|
|
187
193
|
taskType?: "internal" | "broker" | null | undefined;
|
|
188
194
|
acceptedDate?: string | null | undefined;
|
|
195
|
+
acceptedById?: mongoose.Types.ObjectId | null | undefined;
|
|
196
|
+
rejectedById?: mongoose.Types.ObjectId | null | undefined;
|
|
189
197
|
};
|
|
190
198
|
statusDate: string;
|
|
191
199
|
statusReason: string;
|
|
@@ -229,6 +237,8 @@ declare const ApplicationsTaskModel: mongoose.Model<{
|
|
|
229
237
|
responderId?: mongoose.Types.ObjectId | null | undefined;
|
|
230
238
|
taskType?: "internal" | "broker" | null | undefined;
|
|
231
239
|
acceptedDate?: string | null | undefined;
|
|
240
|
+
acceptedById?: mongoose.Types.ObjectId | null | undefined;
|
|
241
|
+
rejectedById?: mongoose.Types.ObjectId | null | undefined;
|
|
232
242
|
};
|
|
233
243
|
statusDate: string;
|
|
234
244
|
statusReason: string;
|
|
@@ -272,6 +282,8 @@ declare const ApplicationsTaskModel: mongoose.Model<{
|
|
|
272
282
|
responderId?: mongoose.Types.ObjectId | null | undefined;
|
|
273
283
|
taskType?: "internal" | "broker" | null | undefined;
|
|
274
284
|
acceptedDate?: string | null | undefined;
|
|
285
|
+
acceptedById?: mongoose.Types.ObjectId | null | undefined;
|
|
286
|
+
rejectedById?: mongoose.Types.ObjectId | null | undefined;
|
|
275
287
|
};
|
|
276
288
|
statusDate: string;
|
|
277
289
|
statusReason: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"applications-task.model.d.ts","sourceRoot":"","sources":["../../applications/applications-task.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,OAAO,QAAQ,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"applications-task.model.d.ts","sourceRoot":"","sources":["../../applications/applications-task.model.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,OAAO,QAAQ,MAAM,UAAU,CAAC;AAiEhC,QAAA,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAA6D,CAAC;AACzF,eAAe,qBAAqB,CAAC"}
|
|
@@ -16,6 +16,8 @@ const additionalDataSchema = new mongoose.Schema({
|
|
|
16
16
|
required: false
|
|
17
17
|
},
|
|
18
18
|
acceptedDate: { type: String },
|
|
19
|
+
acceptedById: { type: mongoose.Schema.Types.ObjectId, ref: "User", required: false },
|
|
20
|
+
rejectedById: { type: mongoose.Schema.Types.ObjectId, ref: "User", required: false },
|
|
19
21
|
rejectionReason: { type: String, default: null },
|
|
20
22
|
rejectionDate: { type: String, default: null },
|
|
21
23
|
responderRemarks: { type: String, default: "" },
|
|
@@ -43,6 +43,8 @@ export interface IApplicationsTaskAdditionalData extends IBaseType {
|
|
|
43
43
|
requesterFileName?: string | null;
|
|
44
44
|
responderFileName?: string | null;
|
|
45
45
|
respondedDate?: string | null;
|
|
46
|
+
acceptedById?: string | null;
|
|
47
|
+
rejectedById?: string | null;
|
|
46
48
|
}
|
|
47
49
|
export default interface IApplicationsTaskType extends IBaseType {
|
|
48
50
|
checkflowId: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"applications-task.type.d.ts","sourceRoot":"","sources":["../../applications/applications-task.type.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AACjC,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAEhD,MAAM,WAAW,+BAAgC,SAAQ,SAAS;IAC9D,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,KAAK,CAAC,QAAQ,CAAC;IAC1B,cAAc,EAAE,KAAK,CAAC,QAAQ,CAAC;IAC/B,eAAe,EAAE,MAAM,CAAC;IACxB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"applications-task.type.d.ts","sourceRoot":"","sources":["../../applications/applications-task.type.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AACjC,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAEhD,MAAM,WAAW,+BAAgC,SAAQ,SAAS;IAC9D,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,KAAK,CAAC,QAAQ,CAAC;IAC1B,cAAc,EAAE,KAAK,CAAC,QAAQ,CAAC;IAC/B,eAAe,EAAE,MAAM,CAAC;IACxB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAChC;AAED,MAAM,CAAC,OAAO,WAAW,qBAAsB,SAAQ,SAAS;IAC5D,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,KAAK,CAAC,QAAQ,CAAC;IAC9B,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,cAAc,EAAE,+BAA+B,CAAC;IAChD,SAAS,EAAE,MAAM,CAAC;CACrB"}
|