placementt-core 1.300.140 → 1.300.142
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/lib/typeDefinitions.d.ts +12 -0
- package/package.json +1 -1
- package/src/typeDefinitions.ts +14 -1
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -395,6 +395,7 @@ export type UserData = {
|
|
|
395
395
|
created: Timestamp;
|
|
396
396
|
lastSynced: Timestamp;
|
|
397
397
|
};
|
|
398
|
+
completedProductFeedback?: string[];
|
|
398
399
|
};
|
|
399
400
|
export type DataViewerFilterView = {
|
|
400
401
|
title: string;
|
|
@@ -1182,6 +1183,17 @@ export type Reminder = {
|
|
|
1182
1183
|
dueDate: string;
|
|
1183
1184
|
status: "upcoming" | "dismissed";
|
|
1184
1185
|
};
|
|
1186
|
+
export type ProductFeedback = {
|
|
1187
|
+
formId: string;
|
|
1188
|
+
title: string;
|
|
1189
|
+
description: string;
|
|
1190
|
+
product: Products;
|
|
1191
|
+
userType: "Staff" | "Students";
|
|
1192
|
+
userGroup: "admin" | "all";
|
|
1193
|
+
created: string;
|
|
1194
|
+
released: string;
|
|
1195
|
+
published?: boolean;
|
|
1196
|
+
};
|
|
1185
1197
|
export type Sorts = {
|
|
1186
1198
|
[label: string]: {
|
|
1187
1199
|
value: string;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -409,7 +409,8 @@ export type UserData = {
|
|
|
409
409
|
integrations: ("placementReminders"|"draftEvents"|"publishedEvents"|"employerEmails"|"placementDates")[]
|
|
410
410
|
created: Timestamp,
|
|
411
411
|
lastSynced: Timestamp,
|
|
412
|
-
}
|
|
412
|
+
},
|
|
413
|
+
completedProductFeedback?: string[]
|
|
413
414
|
};
|
|
414
415
|
|
|
415
416
|
export type DataViewerFilterView = {
|
|
@@ -1172,6 +1173,18 @@ export type Reminder = {
|
|
|
1172
1173
|
status: "upcoming"|"dismissed"
|
|
1173
1174
|
}
|
|
1174
1175
|
|
|
1176
|
+
export type ProductFeedback = {
|
|
1177
|
+
formId: string,
|
|
1178
|
+
title: string,
|
|
1179
|
+
description: string,
|
|
1180
|
+
product: Products,
|
|
1181
|
+
userType: "Staff"|"Students",
|
|
1182
|
+
userGroup: "admin"|"all",
|
|
1183
|
+
created: string,
|
|
1184
|
+
released: string // iso string
|
|
1185
|
+
published?: boolean,
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1175
1188
|
export type Sorts = {[label: string]: {
|
|
1176
1189
|
value: string
|
|
1177
1190
|
direction: "asc"|"desc"
|