@compfest-18/oppenheimer-schema 0.0.5-develop.61a4c70 → 0.0.6-develop.5850f63
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 +541 -1
- package/dist/index.mjs +644 -526
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -8,6 +8,7 @@ declare const programTaskTypeEnum: drizzle_orm_pg_core.PgEnum<["TEAM", "PERSONAL
|
|
|
8
8
|
declare const fileTypeEnum: drizzle_orm_pg_core.PgEnum<["PDF", "DOCX", "PPTX", "ZIP", "RAR", "IMAGE", "VIDEO"]>;
|
|
9
9
|
declare const teamStatusEnum: drizzle_orm_pg_core.PgEnum<["WAITING_FOR_VERIFICATION", "VERIFIED", "VERIFICATION_FAILED"]>;
|
|
10
10
|
declare const submissionStatusEnum: drizzle_orm_pg_core.PgEnum<["PENDING", "REJECTED", "ACCEPTED"]>;
|
|
11
|
+
declare const joinRequestStatusEnum: drizzle_orm_pg_core.PgEnum<["PENDING", "ACCEPTED", "REJECTED"]>;
|
|
11
12
|
declare const knowEventSourceEnum: drizzle_orm_pg_core.PgEnum<["INSTAGRAM", "WEBSITE", "FRIENDS", "TIKTOK", "LINKEDIN", "OTHERS"]>;
|
|
12
13
|
declare const questionTypeEnum: drizzle_orm_pg_core.PgEnum<["STRING", "BOOLEAN", "NUMBER"]>;
|
|
13
14
|
declare const mainEventOccupationTypeEnum: drizzle_orm_pg_core.PgEnum<["STUDENT", "WORKING_PROFESSIONAL"]>;
|
|
@@ -2836,6 +2837,23 @@ declare const teams: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
|
2836
2837
|
identity: undefined;
|
|
2837
2838
|
generated: undefined;
|
|
2838
2839
|
}, {}, {}>;
|
|
2840
|
+
isPublic: drizzle_orm_pg_core.PgColumn<{
|
|
2841
|
+
name: "is_public";
|
|
2842
|
+
tableName: "teams";
|
|
2843
|
+
dataType: "boolean";
|
|
2844
|
+
columnType: "PgBoolean";
|
|
2845
|
+
data: boolean;
|
|
2846
|
+
driverParam: boolean;
|
|
2847
|
+
notNull: true;
|
|
2848
|
+
hasDefault: true;
|
|
2849
|
+
isPrimaryKey: false;
|
|
2850
|
+
isAutoincrement: false;
|
|
2851
|
+
hasRuntimeDefault: false;
|
|
2852
|
+
enumValues: undefined;
|
|
2853
|
+
baseColumn: never;
|
|
2854
|
+
identity: undefined;
|
|
2855
|
+
generated: undefined;
|
|
2856
|
+
}, {}, {}>;
|
|
2839
2857
|
deletedAt: drizzle_orm_pg_core.PgColumn<{
|
|
2840
2858
|
name: "deleted_at";
|
|
2841
2859
|
tableName: "teams";
|
|
@@ -2895,6 +2913,308 @@ declare const teamsRelations: drizzle_orm.Relations<"teams", {
|
|
|
2895
2913
|
members: drizzle_orm.Many<"members">;
|
|
2896
2914
|
}>;
|
|
2897
2915
|
|
|
2916
|
+
/**
|
|
2917
|
+
* A user's request to join a (public) team. The team leader approves requests
|
|
2918
|
+
* up to the program's max member count; remaining requests are auto-rejected
|
|
2919
|
+
* once the team reaches capacity.
|
|
2920
|
+
*/
|
|
2921
|
+
declare const teamJoinRequests: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
2922
|
+
name: "team_join_requests";
|
|
2923
|
+
schema: undefined;
|
|
2924
|
+
columns: {
|
|
2925
|
+
id: drizzle_orm_pg_core.PgColumn<{
|
|
2926
|
+
name: "id";
|
|
2927
|
+
tableName: "team_join_requests";
|
|
2928
|
+
dataType: "string";
|
|
2929
|
+
columnType: "PgText";
|
|
2930
|
+
data: string;
|
|
2931
|
+
driverParam: string;
|
|
2932
|
+
notNull: true;
|
|
2933
|
+
hasDefault: false;
|
|
2934
|
+
isPrimaryKey: true;
|
|
2935
|
+
isAutoincrement: false;
|
|
2936
|
+
hasRuntimeDefault: false;
|
|
2937
|
+
enumValues: [string, ...string[]];
|
|
2938
|
+
baseColumn: never;
|
|
2939
|
+
identity: undefined;
|
|
2940
|
+
generated: undefined;
|
|
2941
|
+
}, {}, {}>;
|
|
2942
|
+
teamId: drizzle_orm_pg_core.PgColumn<{
|
|
2943
|
+
name: "team_id";
|
|
2944
|
+
tableName: "team_join_requests";
|
|
2945
|
+
dataType: "string";
|
|
2946
|
+
columnType: "PgText";
|
|
2947
|
+
data: string;
|
|
2948
|
+
driverParam: string;
|
|
2949
|
+
notNull: true;
|
|
2950
|
+
hasDefault: false;
|
|
2951
|
+
isPrimaryKey: false;
|
|
2952
|
+
isAutoincrement: false;
|
|
2953
|
+
hasRuntimeDefault: false;
|
|
2954
|
+
enumValues: [string, ...string[]];
|
|
2955
|
+
baseColumn: never;
|
|
2956
|
+
identity: undefined;
|
|
2957
|
+
generated: undefined;
|
|
2958
|
+
}, {}, {}>;
|
|
2959
|
+
userId: drizzle_orm_pg_core.PgColumn<{
|
|
2960
|
+
name: "user_id";
|
|
2961
|
+
tableName: "team_join_requests";
|
|
2962
|
+
dataType: "string";
|
|
2963
|
+
columnType: "PgText";
|
|
2964
|
+
data: string;
|
|
2965
|
+
driverParam: string;
|
|
2966
|
+
notNull: true;
|
|
2967
|
+
hasDefault: false;
|
|
2968
|
+
isPrimaryKey: false;
|
|
2969
|
+
isAutoincrement: false;
|
|
2970
|
+
hasRuntimeDefault: false;
|
|
2971
|
+
enumValues: [string, ...string[]];
|
|
2972
|
+
baseColumn: never;
|
|
2973
|
+
identity: undefined;
|
|
2974
|
+
generated: undefined;
|
|
2975
|
+
}, {}, {}>;
|
|
2976
|
+
status: drizzle_orm_pg_core.PgColumn<{
|
|
2977
|
+
name: "status";
|
|
2978
|
+
tableName: "team_join_requests";
|
|
2979
|
+
dataType: "string";
|
|
2980
|
+
columnType: "PgEnumColumn";
|
|
2981
|
+
data: "PENDING" | "REJECTED" | "ACCEPTED";
|
|
2982
|
+
driverParam: string;
|
|
2983
|
+
notNull: true;
|
|
2984
|
+
hasDefault: true;
|
|
2985
|
+
isPrimaryKey: false;
|
|
2986
|
+
isAutoincrement: false;
|
|
2987
|
+
hasRuntimeDefault: false;
|
|
2988
|
+
enumValues: ["PENDING", "ACCEPTED", "REJECTED"];
|
|
2989
|
+
baseColumn: never;
|
|
2990
|
+
identity: undefined;
|
|
2991
|
+
generated: undefined;
|
|
2992
|
+
}, {}, {}>;
|
|
2993
|
+
deletedAt: drizzle_orm_pg_core.PgColumn<{
|
|
2994
|
+
name: "deleted_at";
|
|
2995
|
+
tableName: "team_join_requests";
|
|
2996
|
+
dataType: "date";
|
|
2997
|
+
columnType: "PgTimestamp";
|
|
2998
|
+
data: Date;
|
|
2999
|
+
driverParam: string;
|
|
3000
|
+
notNull: false;
|
|
3001
|
+
hasDefault: false;
|
|
3002
|
+
isPrimaryKey: false;
|
|
3003
|
+
isAutoincrement: false;
|
|
3004
|
+
hasRuntimeDefault: false;
|
|
3005
|
+
enumValues: undefined;
|
|
3006
|
+
baseColumn: never;
|
|
3007
|
+
identity: undefined;
|
|
3008
|
+
generated: undefined;
|
|
3009
|
+
}, {}, {}>;
|
|
3010
|
+
createdAt: drizzle_orm_pg_core.PgColumn<{
|
|
3011
|
+
name: "created_at";
|
|
3012
|
+
tableName: "team_join_requests";
|
|
3013
|
+
dataType: "date";
|
|
3014
|
+
columnType: "PgTimestamp";
|
|
3015
|
+
data: Date;
|
|
3016
|
+
driverParam: string;
|
|
3017
|
+
notNull: true;
|
|
3018
|
+
hasDefault: true;
|
|
3019
|
+
isPrimaryKey: false;
|
|
3020
|
+
isAutoincrement: false;
|
|
3021
|
+
hasRuntimeDefault: false;
|
|
3022
|
+
enumValues: undefined;
|
|
3023
|
+
baseColumn: never;
|
|
3024
|
+
identity: undefined;
|
|
3025
|
+
generated: undefined;
|
|
3026
|
+
}, {}, {}>;
|
|
3027
|
+
updatedAt: drizzle_orm_pg_core.PgColumn<{
|
|
3028
|
+
name: "updated_at";
|
|
3029
|
+
tableName: "team_join_requests";
|
|
3030
|
+
dataType: "date";
|
|
3031
|
+
columnType: "PgTimestamp";
|
|
3032
|
+
data: Date;
|
|
3033
|
+
driverParam: string;
|
|
3034
|
+
notNull: true;
|
|
3035
|
+
hasDefault: true;
|
|
3036
|
+
isPrimaryKey: false;
|
|
3037
|
+
isAutoincrement: false;
|
|
3038
|
+
hasRuntimeDefault: false;
|
|
3039
|
+
enumValues: undefined;
|
|
3040
|
+
baseColumn: never;
|
|
3041
|
+
identity: undefined;
|
|
3042
|
+
generated: undefined;
|
|
3043
|
+
}, {}, {}>;
|
|
3044
|
+
};
|
|
3045
|
+
dialect: "pg";
|
|
3046
|
+
}>;
|
|
3047
|
+
declare const teamJoinRequestsRelations: drizzle_orm.Relations<"team_join_requests", {
|
|
3048
|
+
team: drizzle_orm.One<"teams", true>;
|
|
3049
|
+
user: drizzle_orm.One<"users", true>;
|
|
3050
|
+
}>;
|
|
3051
|
+
|
|
3052
|
+
declare const competitionPaymentProofs: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
3053
|
+
name: "competition_payment_proofs";
|
|
3054
|
+
schema: undefined;
|
|
3055
|
+
columns: {
|
|
3056
|
+
id: drizzle_orm_pg_core.PgColumn<{
|
|
3057
|
+
name: "id";
|
|
3058
|
+
tableName: "competition_payment_proofs";
|
|
3059
|
+
dataType: "string";
|
|
3060
|
+
columnType: "PgText";
|
|
3061
|
+
data: string;
|
|
3062
|
+
driverParam: string;
|
|
3063
|
+
notNull: true;
|
|
3064
|
+
hasDefault: false;
|
|
3065
|
+
isPrimaryKey: true;
|
|
3066
|
+
isAutoincrement: false;
|
|
3067
|
+
hasRuntimeDefault: false;
|
|
3068
|
+
enumValues: [string, ...string[]];
|
|
3069
|
+
baseColumn: never;
|
|
3070
|
+
identity: undefined;
|
|
3071
|
+
generated: undefined;
|
|
3072
|
+
}, {}, {}>;
|
|
3073
|
+
programId: drizzle_orm_pg_core.PgColumn<{
|
|
3074
|
+
name: "program_id";
|
|
3075
|
+
tableName: "competition_payment_proofs";
|
|
3076
|
+
dataType: "string";
|
|
3077
|
+
columnType: "PgText";
|
|
3078
|
+
data: string;
|
|
3079
|
+
driverParam: string;
|
|
3080
|
+
notNull: true;
|
|
3081
|
+
hasDefault: false;
|
|
3082
|
+
isPrimaryKey: false;
|
|
3083
|
+
isAutoincrement: false;
|
|
3084
|
+
hasRuntimeDefault: false;
|
|
3085
|
+
enumValues: [string, ...string[]];
|
|
3086
|
+
baseColumn: never;
|
|
3087
|
+
identity: undefined;
|
|
3088
|
+
generated: undefined;
|
|
3089
|
+
}, {}, {}>;
|
|
3090
|
+
teamId: drizzle_orm_pg_core.PgColumn<{
|
|
3091
|
+
name: "team_id";
|
|
3092
|
+
tableName: "competition_payment_proofs";
|
|
3093
|
+
dataType: "string";
|
|
3094
|
+
columnType: "PgText";
|
|
3095
|
+
data: string;
|
|
3096
|
+
driverParam: string;
|
|
3097
|
+
notNull: false;
|
|
3098
|
+
hasDefault: false;
|
|
3099
|
+
isPrimaryKey: false;
|
|
3100
|
+
isAutoincrement: false;
|
|
3101
|
+
hasRuntimeDefault: false;
|
|
3102
|
+
enumValues: [string, ...string[]];
|
|
3103
|
+
baseColumn: never;
|
|
3104
|
+
identity: undefined;
|
|
3105
|
+
generated: undefined;
|
|
3106
|
+
}, {}, {}>;
|
|
3107
|
+
userId: drizzle_orm_pg_core.PgColumn<{
|
|
3108
|
+
name: "user_id";
|
|
3109
|
+
tableName: "competition_payment_proofs";
|
|
3110
|
+
dataType: "string";
|
|
3111
|
+
columnType: "PgText";
|
|
3112
|
+
data: string;
|
|
3113
|
+
driverParam: string;
|
|
3114
|
+
notNull: false;
|
|
3115
|
+
hasDefault: false;
|
|
3116
|
+
isPrimaryKey: false;
|
|
3117
|
+
isAutoincrement: false;
|
|
3118
|
+
hasRuntimeDefault: false;
|
|
3119
|
+
enumValues: [string, ...string[]];
|
|
3120
|
+
baseColumn: never;
|
|
3121
|
+
identity: undefined;
|
|
3122
|
+
generated: undefined;
|
|
3123
|
+
}, {}, {}>;
|
|
3124
|
+
fileUrl: drizzle_orm_pg_core.PgColumn<{
|
|
3125
|
+
name: "file_url";
|
|
3126
|
+
tableName: "competition_payment_proofs";
|
|
3127
|
+
dataType: "string";
|
|
3128
|
+
columnType: "PgText";
|
|
3129
|
+
data: string;
|
|
3130
|
+
driverParam: string;
|
|
3131
|
+
notNull: true;
|
|
3132
|
+
hasDefault: false;
|
|
3133
|
+
isPrimaryKey: false;
|
|
3134
|
+
isAutoincrement: false;
|
|
3135
|
+
hasRuntimeDefault: false;
|
|
3136
|
+
enumValues: [string, ...string[]];
|
|
3137
|
+
baseColumn: never;
|
|
3138
|
+
identity: undefined;
|
|
3139
|
+
generated: undefined;
|
|
3140
|
+
}, {}, {}>;
|
|
3141
|
+
fileName: drizzle_orm_pg_core.PgColumn<{
|
|
3142
|
+
name: "file_name";
|
|
3143
|
+
tableName: "competition_payment_proofs";
|
|
3144
|
+
dataType: "string";
|
|
3145
|
+
columnType: "PgText";
|
|
3146
|
+
data: string;
|
|
3147
|
+
driverParam: string;
|
|
3148
|
+
notNull: true;
|
|
3149
|
+
hasDefault: false;
|
|
3150
|
+
isPrimaryKey: false;
|
|
3151
|
+
isAutoincrement: false;
|
|
3152
|
+
hasRuntimeDefault: false;
|
|
3153
|
+
enumValues: [string, ...string[]];
|
|
3154
|
+
baseColumn: never;
|
|
3155
|
+
identity: undefined;
|
|
3156
|
+
generated: undefined;
|
|
3157
|
+
}, {}, {}>;
|
|
3158
|
+
status: drizzle_orm_pg_core.PgColumn<{
|
|
3159
|
+
name: "status";
|
|
3160
|
+
tableName: "competition_payment_proofs";
|
|
3161
|
+
dataType: "string";
|
|
3162
|
+
columnType: "PgEnumColumn";
|
|
3163
|
+
data: "PENDING" | "REJECTED" | "ACCEPTED";
|
|
3164
|
+
driverParam: string;
|
|
3165
|
+
notNull: true;
|
|
3166
|
+
hasDefault: true;
|
|
3167
|
+
isPrimaryKey: false;
|
|
3168
|
+
isAutoincrement: false;
|
|
3169
|
+
hasRuntimeDefault: false;
|
|
3170
|
+
enumValues: ["PENDING", "REJECTED", "ACCEPTED"];
|
|
3171
|
+
baseColumn: never;
|
|
3172
|
+
identity: undefined;
|
|
3173
|
+
generated: undefined;
|
|
3174
|
+
}, {}, {}>;
|
|
3175
|
+
createdAt: drizzle_orm_pg_core.PgColumn<{
|
|
3176
|
+
name: "created_at";
|
|
3177
|
+
tableName: "competition_payment_proofs";
|
|
3178
|
+
dataType: "date";
|
|
3179
|
+
columnType: "PgTimestamp";
|
|
3180
|
+
data: Date;
|
|
3181
|
+
driverParam: string;
|
|
3182
|
+
notNull: true;
|
|
3183
|
+
hasDefault: true;
|
|
3184
|
+
isPrimaryKey: false;
|
|
3185
|
+
isAutoincrement: false;
|
|
3186
|
+
hasRuntimeDefault: false;
|
|
3187
|
+
enumValues: undefined;
|
|
3188
|
+
baseColumn: never;
|
|
3189
|
+
identity: undefined;
|
|
3190
|
+
generated: undefined;
|
|
3191
|
+
}, {}, {}>;
|
|
3192
|
+
updatedAt: drizzle_orm_pg_core.PgColumn<{
|
|
3193
|
+
name: "updated_at";
|
|
3194
|
+
tableName: "competition_payment_proofs";
|
|
3195
|
+
dataType: "date";
|
|
3196
|
+
columnType: "PgTimestamp";
|
|
3197
|
+
data: Date;
|
|
3198
|
+
driverParam: string;
|
|
3199
|
+
notNull: true;
|
|
3200
|
+
hasDefault: true;
|
|
3201
|
+
isPrimaryKey: false;
|
|
3202
|
+
isAutoincrement: false;
|
|
3203
|
+
hasRuntimeDefault: false;
|
|
3204
|
+
enumValues: undefined;
|
|
3205
|
+
baseColumn: never;
|
|
3206
|
+
identity: undefined;
|
|
3207
|
+
generated: undefined;
|
|
3208
|
+
}, {}, {}>;
|
|
3209
|
+
};
|
|
3210
|
+
dialect: "pg";
|
|
3211
|
+
}>;
|
|
3212
|
+
declare const competitionPaymentProofsRelations: drizzle_orm.Relations<"competition_payment_proofs", {
|
|
3213
|
+
program: drizzle_orm.One<"programs", true>;
|
|
3214
|
+
team: drizzle_orm.One<"teams", false>;
|
|
3215
|
+
user: drizzle_orm.One<"users", false>;
|
|
3216
|
+
}>;
|
|
3217
|
+
|
|
2898
3218
|
declare const programTasks: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
2899
3219
|
name: "program_tasks";
|
|
2900
3220
|
schema: undefined;
|
|
@@ -7759,6 +8079,99 @@ declare const cvClinicVouchers: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
|
7759
8079
|
dialect: "pg";
|
|
7760
8080
|
}>;
|
|
7761
8081
|
|
|
8082
|
+
declare const competitionShowcases: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
8083
|
+
name: "competition_showcases";
|
|
8084
|
+
schema: undefined;
|
|
8085
|
+
columns: {
|
|
8086
|
+
id: drizzle_orm_pg_core.PgColumn<{
|
|
8087
|
+
name: "id";
|
|
8088
|
+
tableName: "competition_showcases";
|
|
8089
|
+
dataType: "string";
|
|
8090
|
+
columnType: "PgText";
|
|
8091
|
+
data: string;
|
|
8092
|
+
driverParam: string;
|
|
8093
|
+
notNull: true;
|
|
8094
|
+
hasDefault: false;
|
|
8095
|
+
isPrimaryKey: true;
|
|
8096
|
+
isAutoincrement: false;
|
|
8097
|
+
hasRuntimeDefault: false;
|
|
8098
|
+
enumValues: [string, ...string[]];
|
|
8099
|
+
baseColumn: never;
|
|
8100
|
+
identity: undefined;
|
|
8101
|
+
generated: undefined;
|
|
8102
|
+
}, {}, {}>;
|
|
8103
|
+
slug: drizzle_orm_pg_core.PgColumn<{
|
|
8104
|
+
name: "slug";
|
|
8105
|
+
tableName: "competition_showcases";
|
|
8106
|
+
dataType: "string";
|
|
8107
|
+
columnType: "PgText";
|
|
8108
|
+
data: string;
|
|
8109
|
+
driverParam: string;
|
|
8110
|
+
notNull: false;
|
|
8111
|
+
hasDefault: false;
|
|
8112
|
+
isPrimaryKey: false;
|
|
8113
|
+
isAutoincrement: false;
|
|
8114
|
+
hasRuntimeDefault: false;
|
|
8115
|
+
enumValues: [string, ...string[]];
|
|
8116
|
+
baseColumn: never;
|
|
8117
|
+
identity: undefined;
|
|
8118
|
+
generated: undefined;
|
|
8119
|
+
}, {}, {}>;
|
|
8120
|
+
name: drizzle_orm_pg_core.PgColumn<{
|
|
8121
|
+
name: "name";
|
|
8122
|
+
tableName: "competition_showcases";
|
|
8123
|
+
dataType: "string";
|
|
8124
|
+
columnType: "PgText";
|
|
8125
|
+
data: string;
|
|
8126
|
+
driverParam: string;
|
|
8127
|
+
notNull: true;
|
|
8128
|
+
hasDefault: false;
|
|
8129
|
+
isPrimaryKey: false;
|
|
8130
|
+
isAutoincrement: false;
|
|
8131
|
+
hasRuntimeDefault: false;
|
|
8132
|
+
enumValues: [string, ...string[]];
|
|
8133
|
+
baseColumn: never;
|
|
8134
|
+
identity: undefined;
|
|
8135
|
+
generated: undefined;
|
|
8136
|
+
}, {}, {}>;
|
|
8137
|
+
createdAt: drizzle_orm_pg_core.PgColumn<{
|
|
8138
|
+
name: "created_at";
|
|
8139
|
+
tableName: "competition_showcases";
|
|
8140
|
+
dataType: "date";
|
|
8141
|
+
columnType: "PgTimestamp";
|
|
8142
|
+
data: Date;
|
|
8143
|
+
driverParam: string;
|
|
8144
|
+
notNull: true;
|
|
8145
|
+
hasDefault: true;
|
|
8146
|
+
isPrimaryKey: false;
|
|
8147
|
+
isAutoincrement: false;
|
|
8148
|
+
hasRuntimeDefault: false;
|
|
8149
|
+
enumValues: undefined;
|
|
8150
|
+
baseColumn: never;
|
|
8151
|
+
identity: undefined;
|
|
8152
|
+
generated: undefined;
|
|
8153
|
+
}, {}, {}>;
|
|
8154
|
+
updatedAt: drizzle_orm_pg_core.PgColumn<{
|
|
8155
|
+
name: "updated_at";
|
|
8156
|
+
tableName: "competition_showcases";
|
|
8157
|
+
dataType: "date";
|
|
8158
|
+
columnType: "PgTimestamp";
|
|
8159
|
+
data: Date;
|
|
8160
|
+
driverParam: string;
|
|
8161
|
+
notNull: true;
|
|
8162
|
+
hasDefault: true;
|
|
8163
|
+
isPrimaryKey: false;
|
|
8164
|
+
isAutoincrement: false;
|
|
8165
|
+
hasRuntimeDefault: false;
|
|
8166
|
+
enumValues: undefined;
|
|
8167
|
+
baseColumn: never;
|
|
8168
|
+
identity: undefined;
|
|
8169
|
+
generated: undefined;
|
|
8170
|
+
}, {}, {}>;
|
|
8171
|
+
};
|
|
8172
|
+
dialect: "pg";
|
|
8173
|
+
}>;
|
|
8174
|
+
|
|
7762
8175
|
declare const nominees: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
7763
8176
|
name: "nominees";
|
|
7764
8177
|
schema: undefined;
|
|
@@ -8136,6 +8549,23 @@ declare const projects: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
|
8136
8549
|
identity: undefined;
|
|
8137
8550
|
generated: undefined;
|
|
8138
8551
|
}, {}, {}>;
|
|
8552
|
+
slug: drizzle_orm_pg_core.PgColumn<{
|
|
8553
|
+
name: "slug";
|
|
8554
|
+
tableName: "projects";
|
|
8555
|
+
dataType: "string";
|
|
8556
|
+
columnType: "PgText";
|
|
8557
|
+
data: string;
|
|
8558
|
+
driverParam: string;
|
|
8559
|
+
notNull: true;
|
|
8560
|
+
hasDefault: false;
|
|
8561
|
+
isPrimaryKey: false;
|
|
8562
|
+
isAutoincrement: false;
|
|
8563
|
+
hasRuntimeDefault: false;
|
|
8564
|
+
enumValues: [string, ...string[]];
|
|
8565
|
+
baseColumn: never;
|
|
8566
|
+
identity: undefined;
|
|
8567
|
+
generated: undefined;
|
|
8568
|
+
}, {}, {}>;
|
|
8139
8569
|
name: drizzle_orm_pg_core.PgColumn<{
|
|
8140
8570
|
name: "name";
|
|
8141
8571
|
tableName: "projects";
|
|
@@ -8221,6 +8651,23 @@ declare const projects: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
|
8221
8651
|
identity: undefined;
|
|
8222
8652
|
generated: undefined;
|
|
8223
8653
|
}, {}, {}>;
|
|
8654
|
+
externalUrl: drizzle_orm_pg_core.PgColumn<{
|
|
8655
|
+
name: "external_url";
|
|
8656
|
+
tableName: "projects";
|
|
8657
|
+
dataType: "string";
|
|
8658
|
+
columnType: "PgText";
|
|
8659
|
+
data: string;
|
|
8660
|
+
driverParam: string;
|
|
8661
|
+
notNull: false;
|
|
8662
|
+
hasDefault: false;
|
|
8663
|
+
isPrimaryKey: false;
|
|
8664
|
+
isAutoincrement: false;
|
|
8665
|
+
hasRuntimeDefault: false;
|
|
8666
|
+
enumValues: [string, ...string[]];
|
|
8667
|
+
baseColumn: never;
|
|
8668
|
+
identity: undefined;
|
|
8669
|
+
generated: undefined;
|
|
8670
|
+
}, {}, {}>;
|
|
8224
8671
|
teamName: drizzle_orm_pg_core.PgColumn<{
|
|
8225
8672
|
name: "team_name";
|
|
8226
8673
|
tableName: "projects";
|
|
@@ -8310,6 +8757,99 @@ declare const projects: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
|
8310
8757
|
dialect: "pg";
|
|
8311
8758
|
}>;
|
|
8312
8759
|
|
|
8760
|
+
declare const projectVotes: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
8761
|
+
name: "project_votes";
|
|
8762
|
+
schema: undefined;
|
|
8763
|
+
columns: {
|
|
8764
|
+
id: drizzle_orm_pg_core.PgColumn<{
|
|
8765
|
+
name: "id";
|
|
8766
|
+
tableName: "project_votes";
|
|
8767
|
+
dataType: "string";
|
|
8768
|
+
columnType: "PgText";
|
|
8769
|
+
data: string;
|
|
8770
|
+
driverParam: string;
|
|
8771
|
+
notNull: true;
|
|
8772
|
+
hasDefault: false;
|
|
8773
|
+
isPrimaryKey: true;
|
|
8774
|
+
isAutoincrement: false;
|
|
8775
|
+
hasRuntimeDefault: false;
|
|
8776
|
+
enumValues: [string, ...string[]];
|
|
8777
|
+
baseColumn: never;
|
|
8778
|
+
identity: undefined;
|
|
8779
|
+
generated: undefined;
|
|
8780
|
+
}, {}, {}>;
|
|
8781
|
+
userId: drizzle_orm_pg_core.PgColumn<{
|
|
8782
|
+
name: "user_id";
|
|
8783
|
+
tableName: "project_votes";
|
|
8784
|
+
dataType: "string";
|
|
8785
|
+
columnType: "PgText";
|
|
8786
|
+
data: string;
|
|
8787
|
+
driverParam: string;
|
|
8788
|
+
notNull: true;
|
|
8789
|
+
hasDefault: false;
|
|
8790
|
+
isPrimaryKey: false;
|
|
8791
|
+
isAutoincrement: false;
|
|
8792
|
+
hasRuntimeDefault: false;
|
|
8793
|
+
enumValues: [string, ...string[]];
|
|
8794
|
+
baseColumn: never;
|
|
8795
|
+
identity: undefined;
|
|
8796
|
+
generated: undefined;
|
|
8797
|
+
}, {}, {}>;
|
|
8798
|
+
projectId: drizzle_orm_pg_core.PgColumn<{
|
|
8799
|
+
name: "project_id";
|
|
8800
|
+
tableName: "project_votes";
|
|
8801
|
+
dataType: "string";
|
|
8802
|
+
columnType: "PgText";
|
|
8803
|
+
data: string;
|
|
8804
|
+
driverParam: string;
|
|
8805
|
+
notNull: true;
|
|
8806
|
+
hasDefault: false;
|
|
8807
|
+
isPrimaryKey: false;
|
|
8808
|
+
isAutoincrement: false;
|
|
8809
|
+
hasRuntimeDefault: false;
|
|
8810
|
+
enumValues: [string, ...string[]];
|
|
8811
|
+
baseColumn: never;
|
|
8812
|
+
identity: undefined;
|
|
8813
|
+
generated: undefined;
|
|
8814
|
+
}, {}, {}>;
|
|
8815
|
+
type: drizzle_orm_pg_core.PgColumn<{
|
|
8816
|
+
name: "type";
|
|
8817
|
+
tableName: "project_votes";
|
|
8818
|
+
dataType: "string";
|
|
8819
|
+
columnType: "PgEnumColumn";
|
|
8820
|
+
data: "IGI" | "AIC";
|
|
8821
|
+
driverParam: string;
|
|
8822
|
+
notNull: true;
|
|
8823
|
+
hasDefault: false;
|
|
8824
|
+
isPrimaryKey: false;
|
|
8825
|
+
isAutoincrement: false;
|
|
8826
|
+
hasRuntimeDefault: false;
|
|
8827
|
+
enumValues: ["IGI", "AIC"];
|
|
8828
|
+
baseColumn: never;
|
|
8829
|
+
identity: undefined;
|
|
8830
|
+
generated: undefined;
|
|
8831
|
+
}, {}, {}>;
|
|
8832
|
+
createdAt: drizzle_orm_pg_core.PgColumn<{
|
|
8833
|
+
name: "created_at";
|
|
8834
|
+
tableName: "project_votes";
|
|
8835
|
+
dataType: "date";
|
|
8836
|
+
columnType: "PgTimestamp";
|
|
8837
|
+
data: Date;
|
|
8838
|
+
driverParam: string;
|
|
8839
|
+
notNull: true;
|
|
8840
|
+
hasDefault: true;
|
|
8841
|
+
isPrimaryKey: false;
|
|
8842
|
+
isAutoincrement: false;
|
|
8843
|
+
hasRuntimeDefault: false;
|
|
8844
|
+
enumValues: undefined;
|
|
8845
|
+
baseColumn: never;
|
|
8846
|
+
identity: undefined;
|
|
8847
|
+
generated: undefined;
|
|
8848
|
+
}, {}, {}>;
|
|
8849
|
+
};
|
|
8850
|
+
dialect: "pg";
|
|
8851
|
+
}>;
|
|
8852
|
+
|
|
8313
8853
|
declare const exhibitors: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
8314
8854
|
name: "exhibitors";
|
|
8315
8855
|
schema: undefined;
|
|
@@ -9998,4 +10538,4 @@ declare const posts: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
|
9998
10538
|
dialect: "pg";
|
|
9999
10539
|
}>;
|
|
10000
10540
|
|
|
10001
|
-
export { adWatchHistories, adWatchHistoriesRelations, adWatchSessions, adWatchSessionsRelations, advertisements, announcements, announcementsRelations, articles, boothRewardTypeEnum, cartStatusEnum, comments, companyExhibitionVacancies, companyExhibitionVacanciesRelations, companyExhibitions, cvClinicClaims, cvClinicVouchers, dashboardNotificationUserReads, dashboardNotificationUserReadsRelations, dashboardNotifications, detentionStateEnum, eventDates, eventDatesRelations, eventEnum, eventRegistrations, eventRegistrationsRelations, events, eventsRelations, exhibitors, exploreITFunfacts, feedbackOptions, feedbackOptionsRelations, feedbackQuestions, feedbackQuestionsRelations, feedbackSubmissions, feedbackSubmissionsRelations, feedbacks, feedbacksRelations, fileTypeEnum, gameDevelopers, gameDevelopersRelations, gameOrientationEnum, gameRules, gameRulesRelations, games, gamesRelations, grandLaunchingRegistrations, grandLaunchingRegistrationsRelations, interviewApplicantStatusEnum, knowEventSourceEnum, leaderboardHistories, likes, mainEventBoothRewards, mainEventMiniQuizAttempts, mainEventMiniQuizAttemptsRelations, mainEventMiniQuizQuestionOptions, mainEventMiniQuizQuestionOptionsRelations, mainEventMiniQuizQuestions, mainEventMiniQuizQuestionsRelations, mainEventMiniQuizzes, mainEventMiniQuizzesRelations, mainEventOccupationTypeEnum, mainEventRegistrations, mainEventRegistrationsRelations, members, membersRelations, miniQuizAttempts, miniQuizAttemptsRelations, miniQuizQuestions, miniQuizQuestionsRelations, miniQuizzes, miniQuizzesRelations, nomineeTypeEnum, nomineeVotes, nominees, playgroundExpenseHistories, playgroundExpenseHistoriesRelations, playgroundRewardHistories, playgroundRewardHistoriesRelations, playgroundTokens, playgroundTokensRelations, posts, programCodeEnum, programRegistrations, programRegistrationsRelations, programTaskExtraDescriptions, programTaskExtraDescriptionsRelations, programTaskSubmissions, programTaskSubmissionsRelations, programTaskTypeEnum, programTasks, programTasksRelations, programTypeEnum, programs, programsRelations, projects, questionTypeEnum, rewardTypeEnum, singleParticipants, singleParticipantsRelations, submissionStatusEnum, submissionStatusEnumLocal, supermarketItemOptions, supermarketItemOptionsRelations, supermarketItems, supermarketUserCartItems, supermarketUserCartItemsRelations, supermarketUserCarts, supermarketUserCartsRelations, teamStatusEnum, teams, teamsRelations, tokenTypeEnum, userPlayGameHistories, userPlayGameHistoriesRelations, userPlaygroundDetentions, userPlaygrounds, userProfiles, userProfilesRelations, users, vacancyJobTypeEnum, walkInInterviewApplicants, walkInInterviewApplicantsRelations, walkInInterviewCompanies, walkInInterviewCompaniesRelations, walkInInterviewCompanySlots, walkInInterviewCompanySlotsRelations, xcelerateRegistrations, xcelerateRegistrationsRelations, xcelerateWorkshopTaskSubmissions, xcelerateWorkshopTaskSubmissionsRelations, xcelerateWorkshopTasks };
|
|
10541
|
+
export { adWatchHistories, adWatchHistoriesRelations, adWatchSessions, adWatchSessionsRelations, advertisements, announcements, announcementsRelations, articles, boothRewardTypeEnum, cartStatusEnum, comments, companyExhibitionVacancies, companyExhibitionVacanciesRelations, companyExhibitions, competitionPaymentProofs, competitionPaymentProofsRelations, competitionShowcases, cvClinicClaims, cvClinicVouchers, dashboardNotificationUserReads, dashboardNotificationUserReadsRelations, dashboardNotifications, detentionStateEnum, eventDates, eventDatesRelations, eventEnum, eventRegistrations, eventRegistrationsRelations, events, eventsRelations, exhibitors, exploreITFunfacts, feedbackOptions, feedbackOptionsRelations, feedbackQuestions, feedbackQuestionsRelations, feedbackSubmissions, feedbackSubmissionsRelations, feedbacks, feedbacksRelations, fileTypeEnum, gameDevelopers, gameDevelopersRelations, gameOrientationEnum, gameRules, gameRulesRelations, games, gamesRelations, grandLaunchingRegistrations, grandLaunchingRegistrationsRelations, interviewApplicantStatusEnum, joinRequestStatusEnum, knowEventSourceEnum, leaderboardHistories, likes, mainEventBoothRewards, mainEventMiniQuizAttempts, mainEventMiniQuizAttemptsRelations, mainEventMiniQuizQuestionOptions, mainEventMiniQuizQuestionOptionsRelations, mainEventMiniQuizQuestions, mainEventMiniQuizQuestionsRelations, mainEventMiniQuizzes, mainEventMiniQuizzesRelations, mainEventOccupationTypeEnum, mainEventRegistrations, mainEventRegistrationsRelations, members, membersRelations, miniQuizAttempts, miniQuizAttemptsRelations, miniQuizQuestions, miniQuizQuestionsRelations, miniQuizzes, miniQuizzesRelations, nomineeTypeEnum, nomineeVotes, nominees, playgroundExpenseHistories, playgroundExpenseHistoriesRelations, playgroundRewardHistories, playgroundRewardHistoriesRelations, playgroundTokens, playgroundTokensRelations, posts, programCodeEnum, programRegistrations, programRegistrationsRelations, programTaskExtraDescriptions, programTaskExtraDescriptionsRelations, programTaskSubmissions, programTaskSubmissionsRelations, programTaskTypeEnum, programTasks, programTasksRelations, programTypeEnum, programs, programsRelations, projectVotes, projects, questionTypeEnum, rewardTypeEnum, singleParticipants, singleParticipantsRelations, submissionStatusEnum, submissionStatusEnumLocal, supermarketItemOptions, supermarketItemOptionsRelations, supermarketItems, supermarketUserCartItems, supermarketUserCartItemsRelations, supermarketUserCarts, supermarketUserCartsRelations, teamJoinRequests, teamJoinRequestsRelations, teamStatusEnum, teams, teamsRelations, tokenTypeEnum, userPlayGameHistories, userPlayGameHistoriesRelations, userPlaygroundDetentions, userPlaygrounds, userProfiles, userProfilesRelations, users, vacancyJobTypeEnum, walkInInterviewApplicants, walkInInterviewApplicantsRelations, walkInInterviewCompanies, walkInInterviewCompaniesRelations, walkInInterviewCompanySlots, walkInInterviewCompanySlotsRelations, xcelerateRegistrations, xcelerateRegistrationsRelations, xcelerateWorkshopTaskSubmissions, xcelerateWorkshopTaskSubmissionsRelations, xcelerateWorkshopTasks };
|