@compfest-18/oppenheimer-schema 0.0.13-develop.65bdfd6 → 0.0.14
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/index.d.mts +17 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1405,6 +1405,23 @@ declare const xcelerateRegistrations: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
|
1405
1405
|
identity: undefined;
|
|
1406
1406
|
generated: undefined;
|
|
1407
1407
|
}, {}, {}>;
|
|
1408
|
+
selectionStatus: drizzle_orm_pg_core.PgColumn<{
|
|
1409
|
+
name: "selection_status";
|
|
1410
|
+
tableName: "xcelerate_registrations";
|
|
1411
|
+
dataType: "string";
|
|
1412
|
+
columnType: "PgEnumColumn";
|
|
1413
|
+
data: "PENDING" | "REJECTED" | "ACCEPTED";
|
|
1414
|
+
driverParam: string;
|
|
1415
|
+
notNull: true;
|
|
1416
|
+
hasDefault: true;
|
|
1417
|
+
isPrimaryKey: false;
|
|
1418
|
+
isAutoincrement: false;
|
|
1419
|
+
hasRuntimeDefault: false;
|
|
1420
|
+
enumValues: ["PENDING", "REJECTED", "ACCEPTED"];
|
|
1421
|
+
baseColumn: never;
|
|
1422
|
+
identity: undefined;
|
|
1423
|
+
generated: undefined;
|
|
1424
|
+
}, {}, {}>;
|
|
1408
1425
|
reviewHtml: drizzle_orm_pg_core.PgColumn<{
|
|
1409
1426
|
name: "review_html";
|
|
1410
1427
|
tableName: "xcelerate_registrations";
|
package/dist/index.mjs
CHANGED
|
@@ -241,6 +241,9 @@ var xcelerateRegistrations = pgTable6(
|
|
|
241
241
|
batch: text6("batch"),
|
|
242
242
|
cvUrl: text6("cv_url"),
|
|
243
243
|
cvFileName: text6("cv_file_name"),
|
|
244
|
+
// Workshop selection (acc/reject) based on CV. Seminar auto-accepts
|
|
245
|
+
// (admin shows "Accepted" regardless); workshop starts PENDING.
|
|
246
|
+
selectionStatus: submissionStatusEnum("selection_status").notNull().default("PENDING"),
|
|
244
247
|
// CV review flow (workshop only). seminar/foundation leave these null.
|
|
245
248
|
reviewHtml: text6("review_html"),
|
|
246
249
|
reviewText: text6("review_text"),
|