@compfest-18/oppenheimer-schema 0.0.6-staging.f62347d → 0.0.9
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 +440 -1
- package/dist/index.mjs +653 -564
- 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"]>;
|
|
@@ -114,6 +115,23 @@ declare const users: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
|
114
115
|
identity: undefined;
|
|
115
116
|
generated: undefined;
|
|
116
117
|
}, {}, {}>;
|
|
118
|
+
isNameCustom: drizzle_orm_pg_core.PgColumn<{
|
|
119
|
+
name: "is_name_custom";
|
|
120
|
+
tableName: "users";
|
|
121
|
+
dataType: "boolean";
|
|
122
|
+
columnType: "PgBoolean";
|
|
123
|
+
data: boolean;
|
|
124
|
+
driverParam: boolean;
|
|
125
|
+
notNull: true;
|
|
126
|
+
hasDefault: true;
|
|
127
|
+
isPrimaryKey: false;
|
|
128
|
+
isAutoincrement: false;
|
|
129
|
+
hasRuntimeDefault: false;
|
|
130
|
+
enumValues: undefined;
|
|
131
|
+
baseColumn: never;
|
|
132
|
+
identity: undefined;
|
|
133
|
+
generated: undefined;
|
|
134
|
+
}, {}, {}>;
|
|
117
135
|
createdAt: drizzle_orm_pg_core.PgColumn<{
|
|
118
136
|
name: "createdAt";
|
|
119
137
|
tableName: "users";
|
|
@@ -2836,6 +2854,40 @@ declare const teams: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
|
2836
2854
|
identity: undefined;
|
|
2837
2855
|
generated: undefined;
|
|
2838
2856
|
}, {}, {}>;
|
|
2857
|
+
isPublic: drizzle_orm_pg_core.PgColumn<{
|
|
2858
|
+
name: "is_public";
|
|
2859
|
+
tableName: "teams";
|
|
2860
|
+
dataType: "boolean";
|
|
2861
|
+
columnType: "PgBoolean";
|
|
2862
|
+
data: boolean;
|
|
2863
|
+
driverParam: boolean;
|
|
2864
|
+
notNull: true;
|
|
2865
|
+
hasDefault: true;
|
|
2866
|
+
isPrimaryKey: false;
|
|
2867
|
+
isAutoincrement: false;
|
|
2868
|
+
hasRuntimeDefault: false;
|
|
2869
|
+
enumValues: undefined;
|
|
2870
|
+
baseColumn: never;
|
|
2871
|
+
identity: undefined;
|
|
2872
|
+
generated: undefined;
|
|
2873
|
+
}, {}, {}>;
|
|
2874
|
+
batch: drizzle_orm_pg_core.PgColumn<{
|
|
2875
|
+
name: "batch";
|
|
2876
|
+
tableName: "teams";
|
|
2877
|
+
dataType: "number";
|
|
2878
|
+
columnType: "PgInteger";
|
|
2879
|
+
data: number;
|
|
2880
|
+
driverParam: string | number;
|
|
2881
|
+
notNull: true;
|
|
2882
|
+
hasDefault: true;
|
|
2883
|
+
isPrimaryKey: false;
|
|
2884
|
+
isAutoincrement: false;
|
|
2885
|
+
hasRuntimeDefault: false;
|
|
2886
|
+
enumValues: undefined;
|
|
2887
|
+
baseColumn: never;
|
|
2888
|
+
identity: undefined;
|
|
2889
|
+
generated: undefined;
|
|
2890
|
+
}, {}, {}>;
|
|
2839
2891
|
deletedAt: drizzle_orm_pg_core.PgColumn<{
|
|
2840
2892
|
name: "deleted_at";
|
|
2841
2893
|
tableName: "teams";
|
|
@@ -2895,6 +2947,308 @@ declare const teamsRelations: drizzle_orm.Relations<"teams", {
|
|
|
2895
2947
|
members: drizzle_orm.Many<"members">;
|
|
2896
2948
|
}>;
|
|
2897
2949
|
|
|
2950
|
+
/**
|
|
2951
|
+
* A user's request to join a (public) team. The team leader approves requests
|
|
2952
|
+
* up to the program's max member count; remaining requests are auto-rejected
|
|
2953
|
+
* once the team reaches capacity.
|
|
2954
|
+
*/
|
|
2955
|
+
declare const teamJoinRequests: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
2956
|
+
name: "team_join_requests";
|
|
2957
|
+
schema: undefined;
|
|
2958
|
+
columns: {
|
|
2959
|
+
id: drizzle_orm_pg_core.PgColumn<{
|
|
2960
|
+
name: "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: true;
|
|
2969
|
+
isAutoincrement: false;
|
|
2970
|
+
hasRuntimeDefault: false;
|
|
2971
|
+
enumValues: [string, ...string[]];
|
|
2972
|
+
baseColumn: never;
|
|
2973
|
+
identity: undefined;
|
|
2974
|
+
generated: undefined;
|
|
2975
|
+
}, {}, {}>;
|
|
2976
|
+
teamId: drizzle_orm_pg_core.PgColumn<{
|
|
2977
|
+
name: "team_id";
|
|
2978
|
+
tableName: "team_join_requests";
|
|
2979
|
+
dataType: "string";
|
|
2980
|
+
columnType: "PgText";
|
|
2981
|
+
data: string;
|
|
2982
|
+
driverParam: string;
|
|
2983
|
+
notNull: true;
|
|
2984
|
+
hasDefault: false;
|
|
2985
|
+
isPrimaryKey: false;
|
|
2986
|
+
isAutoincrement: false;
|
|
2987
|
+
hasRuntimeDefault: false;
|
|
2988
|
+
enumValues: [string, ...string[]];
|
|
2989
|
+
baseColumn: never;
|
|
2990
|
+
identity: undefined;
|
|
2991
|
+
generated: undefined;
|
|
2992
|
+
}, {}, {}>;
|
|
2993
|
+
userId: drizzle_orm_pg_core.PgColumn<{
|
|
2994
|
+
name: "user_id";
|
|
2995
|
+
tableName: "team_join_requests";
|
|
2996
|
+
dataType: "string";
|
|
2997
|
+
columnType: "PgText";
|
|
2998
|
+
data: string;
|
|
2999
|
+
driverParam: string;
|
|
3000
|
+
notNull: true;
|
|
3001
|
+
hasDefault: false;
|
|
3002
|
+
isPrimaryKey: false;
|
|
3003
|
+
isAutoincrement: false;
|
|
3004
|
+
hasRuntimeDefault: false;
|
|
3005
|
+
enumValues: [string, ...string[]];
|
|
3006
|
+
baseColumn: never;
|
|
3007
|
+
identity: undefined;
|
|
3008
|
+
generated: undefined;
|
|
3009
|
+
}, {}, {}>;
|
|
3010
|
+
status: drizzle_orm_pg_core.PgColumn<{
|
|
3011
|
+
name: "status";
|
|
3012
|
+
tableName: "team_join_requests";
|
|
3013
|
+
dataType: "string";
|
|
3014
|
+
columnType: "PgEnumColumn";
|
|
3015
|
+
data: "PENDING" | "REJECTED" | "ACCEPTED";
|
|
3016
|
+
driverParam: string;
|
|
3017
|
+
notNull: true;
|
|
3018
|
+
hasDefault: true;
|
|
3019
|
+
isPrimaryKey: false;
|
|
3020
|
+
isAutoincrement: false;
|
|
3021
|
+
hasRuntimeDefault: false;
|
|
3022
|
+
enumValues: ["PENDING", "ACCEPTED", "REJECTED"];
|
|
3023
|
+
baseColumn: never;
|
|
3024
|
+
identity: undefined;
|
|
3025
|
+
generated: undefined;
|
|
3026
|
+
}, {}, {}>;
|
|
3027
|
+
deletedAt: drizzle_orm_pg_core.PgColumn<{
|
|
3028
|
+
name: "deleted_at";
|
|
3029
|
+
tableName: "team_join_requests";
|
|
3030
|
+
dataType: "date";
|
|
3031
|
+
columnType: "PgTimestamp";
|
|
3032
|
+
data: Date;
|
|
3033
|
+
driverParam: string;
|
|
3034
|
+
notNull: false;
|
|
3035
|
+
hasDefault: false;
|
|
3036
|
+
isPrimaryKey: false;
|
|
3037
|
+
isAutoincrement: false;
|
|
3038
|
+
hasRuntimeDefault: false;
|
|
3039
|
+
enumValues: undefined;
|
|
3040
|
+
baseColumn: never;
|
|
3041
|
+
identity: undefined;
|
|
3042
|
+
generated: undefined;
|
|
3043
|
+
}, {}, {}>;
|
|
3044
|
+
createdAt: drizzle_orm_pg_core.PgColumn<{
|
|
3045
|
+
name: "created_at";
|
|
3046
|
+
tableName: "team_join_requests";
|
|
3047
|
+
dataType: "date";
|
|
3048
|
+
columnType: "PgTimestamp";
|
|
3049
|
+
data: Date;
|
|
3050
|
+
driverParam: string;
|
|
3051
|
+
notNull: true;
|
|
3052
|
+
hasDefault: true;
|
|
3053
|
+
isPrimaryKey: false;
|
|
3054
|
+
isAutoincrement: false;
|
|
3055
|
+
hasRuntimeDefault: false;
|
|
3056
|
+
enumValues: undefined;
|
|
3057
|
+
baseColumn: never;
|
|
3058
|
+
identity: undefined;
|
|
3059
|
+
generated: undefined;
|
|
3060
|
+
}, {}, {}>;
|
|
3061
|
+
updatedAt: drizzle_orm_pg_core.PgColumn<{
|
|
3062
|
+
name: "updated_at";
|
|
3063
|
+
tableName: "team_join_requests";
|
|
3064
|
+
dataType: "date";
|
|
3065
|
+
columnType: "PgTimestamp";
|
|
3066
|
+
data: Date;
|
|
3067
|
+
driverParam: string;
|
|
3068
|
+
notNull: true;
|
|
3069
|
+
hasDefault: true;
|
|
3070
|
+
isPrimaryKey: false;
|
|
3071
|
+
isAutoincrement: false;
|
|
3072
|
+
hasRuntimeDefault: false;
|
|
3073
|
+
enumValues: undefined;
|
|
3074
|
+
baseColumn: never;
|
|
3075
|
+
identity: undefined;
|
|
3076
|
+
generated: undefined;
|
|
3077
|
+
}, {}, {}>;
|
|
3078
|
+
};
|
|
3079
|
+
dialect: "pg";
|
|
3080
|
+
}>;
|
|
3081
|
+
declare const teamJoinRequestsRelations: drizzle_orm.Relations<"team_join_requests", {
|
|
3082
|
+
team: drizzle_orm.One<"teams", true>;
|
|
3083
|
+
user: drizzle_orm.One<"users", true>;
|
|
3084
|
+
}>;
|
|
3085
|
+
|
|
3086
|
+
declare const competitionPaymentProofs: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
3087
|
+
name: "competition_payment_proofs";
|
|
3088
|
+
schema: undefined;
|
|
3089
|
+
columns: {
|
|
3090
|
+
id: drizzle_orm_pg_core.PgColumn<{
|
|
3091
|
+
name: "id";
|
|
3092
|
+
tableName: "competition_payment_proofs";
|
|
3093
|
+
dataType: "string";
|
|
3094
|
+
columnType: "PgText";
|
|
3095
|
+
data: string;
|
|
3096
|
+
driverParam: string;
|
|
3097
|
+
notNull: true;
|
|
3098
|
+
hasDefault: false;
|
|
3099
|
+
isPrimaryKey: true;
|
|
3100
|
+
isAutoincrement: false;
|
|
3101
|
+
hasRuntimeDefault: false;
|
|
3102
|
+
enumValues: [string, ...string[]];
|
|
3103
|
+
baseColumn: never;
|
|
3104
|
+
identity: undefined;
|
|
3105
|
+
generated: undefined;
|
|
3106
|
+
}, {}, {}>;
|
|
3107
|
+
programId: drizzle_orm_pg_core.PgColumn<{
|
|
3108
|
+
name: "program_id";
|
|
3109
|
+
tableName: "competition_payment_proofs";
|
|
3110
|
+
dataType: "string";
|
|
3111
|
+
columnType: "PgText";
|
|
3112
|
+
data: string;
|
|
3113
|
+
driverParam: string;
|
|
3114
|
+
notNull: true;
|
|
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
|
+
teamId: drizzle_orm_pg_core.PgColumn<{
|
|
3125
|
+
name: "team_id";
|
|
3126
|
+
tableName: "competition_payment_proofs";
|
|
3127
|
+
dataType: "string";
|
|
3128
|
+
columnType: "PgText";
|
|
3129
|
+
data: string;
|
|
3130
|
+
driverParam: string;
|
|
3131
|
+
notNull: false;
|
|
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
|
+
userId: drizzle_orm_pg_core.PgColumn<{
|
|
3142
|
+
name: "user_id";
|
|
3143
|
+
tableName: "competition_payment_proofs";
|
|
3144
|
+
dataType: "string";
|
|
3145
|
+
columnType: "PgText";
|
|
3146
|
+
data: string;
|
|
3147
|
+
driverParam: string;
|
|
3148
|
+
notNull: false;
|
|
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
|
+
fileUrl: drizzle_orm_pg_core.PgColumn<{
|
|
3159
|
+
name: "file_url";
|
|
3160
|
+
tableName: "competition_payment_proofs";
|
|
3161
|
+
dataType: "string";
|
|
3162
|
+
columnType: "PgText";
|
|
3163
|
+
data: string;
|
|
3164
|
+
driverParam: string;
|
|
3165
|
+
notNull: true;
|
|
3166
|
+
hasDefault: false;
|
|
3167
|
+
isPrimaryKey: false;
|
|
3168
|
+
isAutoincrement: false;
|
|
3169
|
+
hasRuntimeDefault: false;
|
|
3170
|
+
enumValues: [string, ...string[]];
|
|
3171
|
+
baseColumn: never;
|
|
3172
|
+
identity: undefined;
|
|
3173
|
+
generated: undefined;
|
|
3174
|
+
}, {}, {}>;
|
|
3175
|
+
fileName: drizzle_orm_pg_core.PgColumn<{
|
|
3176
|
+
name: "file_name";
|
|
3177
|
+
tableName: "competition_payment_proofs";
|
|
3178
|
+
dataType: "string";
|
|
3179
|
+
columnType: "PgText";
|
|
3180
|
+
data: string;
|
|
3181
|
+
driverParam: string;
|
|
3182
|
+
notNull: true;
|
|
3183
|
+
hasDefault: false;
|
|
3184
|
+
isPrimaryKey: false;
|
|
3185
|
+
isAutoincrement: false;
|
|
3186
|
+
hasRuntimeDefault: false;
|
|
3187
|
+
enumValues: [string, ...string[]];
|
|
3188
|
+
baseColumn: never;
|
|
3189
|
+
identity: undefined;
|
|
3190
|
+
generated: undefined;
|
|
3191
|
+
}, {}, {}>;
|
|
3192
|
+
status: drizzle_orm_pg_core.PgColumn<{
|
|
3193
|
+
name: "status";
|
|
3194
|
+
tableName: "competition_payment_proofs";
|
|
3195
|
+
dataType: "string";
|
|
3196
|
+
columnType: "PgEnumColumn";
|
|
3197
|
+
data: "PENDING" | "REJECTED" | "ACCEPTED";
|
|
3198
|
+
driverParam: string;
|
|
3199
|
+
notNull: true;
|
|
3200
|
+
hasDefault: true;
|
|
3201
|
+
isPrimaryKey: false;
|
|
3202
|
+
isAutoincrement: false;
|
|
3203
|
+
hasRuntimeDefault: false;
|
|
3204
|
+
enumValues: ["PENDING", "REJECTED", "ACCEPTED"];
|
|
3205
|
+
baseColumn: never;
|
|
3206
|
+
identity: undefined;
|
|
3207
|
+
generated: undefined;
|
|
3208
|
+
}, {}, {}>;
|
|
3209
|
+
createdAt: drizzle_orm_pg_core.PgColumn<{
|
|
3210
|
+
name: "created_at";
|
|
3211
|
+
tableName: "competition_payment_proofs";
|
|
3212
|
+
dataType: "date";
|
|
3213
|
+
columnType: "PgTimestamp";
|
|
3214
|
+
data: Date;
|
|
3215
|
+
driverParam: string;
|
|
3216
|
+
notNull: true;
|
|
3217
|
+
hasDefault: true;
|
|
3218
|
+
isPrimaryKey: false;
|
|
3219
|
+
isAutoincrement: false;
|
|
3220
|
+
hasRuntimeDefault: false;
|
|
3221
|
+
enumValues: undefined;
|
|
3222
|
+
baseColumn: never;
|
|
3223
|
+
identity: undefined;
|
|
3224
|
+
generated: undefined;
|
|
3225
|
+
}, {}, {}>;
|
|
3226
|
+
updatedAt: drizzle_orm_pg_core.PgColumn<{
|
|
3227
|
+
name: "updated_at";
|
|
3228
|
+
tableName: "competition_payment_proofs";
|
|
3229
|
+
dataType: "date";
|
|
3230
|
+
columnType: "PgTimestamp";
|
|
3231
|
+
data: Date;
|
|
3232
|
+
driverParam: string;
|
|
3233
|
+
notNull: true;
|
|
3234
|
+
hasDefault: true;
|
|
3235
|
+
isPrimaryKey: false;
|
|
3236
|
+
isAutoincrement: false;
|
|
3237
|
+
hasRuntimeDefault: false;
|
|
3238
|
+
enumValues: undefined;
|
|
3239
|
+
baseColumn: never;
|
|
3240
|
+
identity: undefined;
|
|
3241
|
+
generated: undefined;
|
|
3242
|
+
}, {}, {}>;
|
|
3243
|
+
};
|
|
3244
|
+
dialect: "pg";
|
|
3245
|
+
}>;
|
|
3246
|
+
declare const competitionPaymentProofsRelations: drizzle_orm.Relations<"competition_payment_proofs", {
|
|
3247
|
+
program: drizzle_orm.One<"programs", true>;
|
|
3248
|
+
team: drizzle_orm.One<"teams", false>;
|
|
3249
|
+
user: drizzle_orm.One<"users", false>;
|
|
3250
|
+
}>;
|
|
3251
|
+
|
|
2898
3252
|
declare const programTasks: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
2899
3253
|
name: "program_tasks";
|
|
2900
3254
|
schema: undefined;
|
|
@@ -3061,6 +3415,40 @@ declare const programTasks: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
|
3061
3415
|
}, {}, {}, drizzle_orm.ColumnBuilderExtraConfig>;
|
|
3062
3416
|
size: undefined;
|
|
3063
3417
|
}>;
|
|
3418
|
+
isOptional: drizzle_orm_pg_core.PgColumn<{
|
|
3419
|
+
name: "is_optional";
|
|
3420
|
+
tableName: "program_tasks";
|
|
3421
|
+
dataType: "boolean";
|
|
3422
|
+
columnType: "PgBoolean";
|
|
3423
|
+
data: boolean;
|
|
3424
|
+
driverParam: boolean;
|
|
3425
|
+
notNull: true;
|
|
3426
|
+
hasDefault: true;
|
|
3427
|
+
isPrimaryKey: false;
|
|
3428
|
+
isAutoincrement: false;
|
|
3429
|
+
hasRuntimeDefault: false;
|
|
3430
|
+
enumValues: undefined;
|
|
3431
|
+
baseColumn: never;
|
|
3432
|
+
identity: undefined;
|
|
3433
|
+
generated: undefined;
|
|
3434
|
+
}, {}, {}>;
|
|
3435
|
+
isRegistrationTask: drizzle_orm_pg_core.PgColumn<{
|
|
3436
|
+
name: "is_registration_task";
|
|
3437
|
+
tableName: "program_tasks";
|
|
3438
|
+
dataType: "boolean";
|
|
3439
|
+
columnType: "PgBoolean";
|
|
3440
|
+
data: boolean;
|
|
3441
|
+
driverParam: boolean;
|
|
3442
|
+
notNull: true;
|
|
3443
|
+
hasDefault: true;
|
|
3444
|
+
isPrimaryKey: false;
|
|
3445
|
+
isAutoincrement: false;
|
|
3446
|
+
hasRuntimeDefault: false;
|
|
3447
|
+
enumValues: undefined;
|
|
3448
|
+
baseColumn: never;
|
|
3449
|
+
identity: undefined;
|
|
3450
|
+
generated: undefined;
|
|
3451
|
+
}, {}, {}>;
|
|
3064
3452
|
deletedAt: drizzle_orm_pg_core.PgColumn<{
|
|
3065
3453
|
name: "deleted_at";
|
|
3066
3454
|
tableName: "program_tasks";
|
|
@@ -7696,6 +8084,57 @@ declare const cvClinicClaims: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
|
7696
8084
|
identity: undefined;
|
|
7697
8085
|
generated: undefined;
|
|
7698
8086
|
}, {}, {}>;
|
|
8087
|
+
cvFileUrl: drizzle_orm_pg_core.PgColumn<{
|
|
8088
|
+
name: "cv_file_url";
|
|
8089
|
+
tableName: "cv_clinic_claims";
|
|
8090
|
+
dataType: "string";
|
|
8091
|
+
columnType: "PgText";
|
|
8092
|
+
data: string;
|
|
8093
|
+
driverParam: string;
|
|
8094
|
+
notNull: false;
|
|
8095
|
+
hasDefault: false;
|
|
8096
|
+
isPrimaryKey: false;
|
|
8097
|
+
isAutoincrement: false;
|
|
8098
|
+
hasRuntimeDefault: false;
|
|
8099
|
+
enumValues: [string, ...string[]];
|
|
8100
|
+
baseColumn: never;
|
|
8101
|
+
identity: undefined;
|
|
8102
|
+
generated: undefined;
|
|
8103
|
+
}, {}, {}>;
|
|
8104
|
+
cvFileName: drizzle_orm_pg_core.PgColumn<{
|
|
8105
|
+
name: "cv_file_name";
|
|
8106
|
+
tableName: "cv_clinic_claims";
|
|
8107
|
+
dataType: "string";
|
|
8108
|
+
columnType: "PgText";
|
|
8109
|
+
data: string;
|
|
8110
|
+
driverParam: string;
|
|
8111
|
+
notNull: false;
|
|
8112
|
+
hasDefault: false;
|
|
8113
|
+
isPrimaryKey: false;
|
|
8114
|
+
isAutoincrement: false;
|
|
8115
|
+
hasRuntimeDefault: false;
|
|
8116
|
+
enumValues: [string, ...string[]];
|
|
8117
|
+
baseColumn: never;
|
|
8118
|
+
identity: undefined;
|
|
8119
|
+
generated: undefined;
|
|
8120
|
+
}, {}, {}>;
|
|
8121
|
+
note: drizzle_orm_pg_core.PgColumn<{
|
|
8122
|
+
name: "note";
|
|
8123
|
+
tableName: "cv_clinic_claims";
|
|
8124
|
+
dataType: "string";
|
|
8125
|
+
columnType: "PgText";
|
|
8126
|
+
data: string;
|
|
8127
|
+
driverParam: string;
|
|
8128
|
+
notNull: false;
|
|
8129
|
+
hasDefault: false;
|
|
8130
|
+
isPrimaryKey: false;
|
|
8131
|
+
isAutoincrement: false;
|
|
8132
|
+
hasRuntimeDefault: false;
|
|
8133
|
+
enumValues: [string, ...string[]];
|
|
8134
|
+
baseColumn: never;
|
|
8135
|
+
identity: undefined;
|
|
8136
|
+
generated: undefined;
|
|
8137
|
+
}, {}, {}>;
|
|
7699
8138
|
createdAt: drizzle_orm_pg_core.PgColumn<{
|
|
7700
8139
|
name: "created_at";
|
|
7701
8140
|
tableName: "cv_clinic_claims";
|
|
@@ -10218,4 +10657,4 @@ declare const posts: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
|
10218
10657
|
dialect: "pg";
|
|
10219
10658
|
}>;
|
|
10220
10659
|
|
|
10221
|
-
export { adWatchHistories, adWatchHistoriesRelations, adWatchSessions, adWatchSessionsRelations, advertisements, announcements, announcementsRelations, articles, boothRewardTypeEnum, cartStatusEnum, comments, companyExhibitionVacancies, companyExhibitionVacanciesRelations, companyExhibitions, 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, 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, teamStatusEnum, teams, teamsRelations, tokenTypeEnum, userPlayGameHistories, userPlayGameHistoriesRelations, userPlaygroundDetentions, userPlaygrounds, userProfiles, userProfilesRelations, users, vacancyJobTypeEnum, walkInInterviewApplicants, walkInInterviewApplicantsRelations, walkInInterviewCompanies, walkInInterviewCompaniesRelations, walkInInterviewCompanySlots, walkInInterviewCompanySlotsRelations, xcelerateRegistrations, xcelerateRegistrationsRelations, xcelerateWorkshopTaskSubmissions, xcelerateWorkshopTaskSubmissionsRelations, xcelerateWorkshopTasks };
|
|
10660
|
+
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 };
|