@compfest-18/oppenheimer-schema 0.0.6-staging.f62347d → 0.0.8
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 +423 -1
- package/dist/index.mjs +638 -550
- 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,23 @@ 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
|
+
}, {}, {}>;
|
|
2839
2874
|
deletedAt: drizzle_orm_pg_core.PgColumn<{
|
|
2840
2875
|
name: "deleted_at";
|
|
2841
2876
|
tableName: "teams";
|
|
@@ -2895,6 +2930,308 @@ declare const teamsRelations: drizzle_orm.Relations<"teams", {
|
|
|
2895
2930
|
members: drizzle_orm.Many<"members">;
|
|
2896
2931
|
}>;
|
|
2897
2932
|
|
|
2933
|
+
/**
|
|
2934
|
+
* A user's request to join a (public) team. The team leader approves requests
|
|
2935
|
+
* up to the program's max member count; remaining requests are auto-rejected
|
|
2936
|
+
* once the team reaches capacity.
|
|
2937
|
+
*/
|
|
2938
|
+
declare const teamJoinRequests: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
2939
|
+
name: "team_join_requests";
|
|
2940
|
+
schema: undefined;
|
|
2941
|
+
columns: {
|
|
2942
|
+
id: drizzle_orm_pg_core.PgColumn<{
|
|
2943
|
+
name: "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: true;
|
|
2952
|
+
isAutoincrement: false;
|
|
2953
|
+
hasRuntimeDefault: false;
|
|
2954
|
+
enumValues: [string, ...string[]];
|
|
2955
|
+
baseColumn: never;
|
|
2956
|
+
identity: undefined;
|
|
2957
|
+
generated: undefined;
|
|
2958
|
+
}, {}, {}>;
|
|
2959
|
+
teamId: drizzle_orm_pg_core.PgColumn<{
|
|
2960
|
+
name: "team_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
|
+
userId: drizzle_orm_pg_core.PgColumn<{
|
|
2977
|
+
name: "user_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
|
+
status: drizzle_orm_pg_core.PgColumn<{
|
|
2994
|
+
name: "status";
|
|
2995
|
+
tableName: "team_join_requests";
|
|
2996
|
+
dataType: "string";
|
|
2997
|
+
columnType: "PgEnumColumn";
|
|
2998
|
+
data: "PENDING" | "REJECTED" | "ACCEPTED";
|
|
2999
|
+
driverParam: string;
|
|
3000
|
+
notNull: true;
|
|
3001
|
+
hasDefault: true;
|
|
3002
|
+
isPrimaryKey: false;
|
|
3003
|
+
isAutoincrement: false;
|
|
3004
|
+
hasRuntimeDefault: false;
|
|
3005
|
+
enumValues: ["PENDING", "ACCEPTED", "REJECTED"];
|
|
3006
|
+
baseColumn: never;
|
|
3007
|
+
identity: undefined;
|
|
3008
|
+
generated: undefined;
|
|
3009
|
+
}, {}, {}>;
|
|
3010
|
+
deletedAt: drizzle_orm_pg_core.PgColumn<{
|
|
3011
|
+
name: "deleted_at";
|
|
3012
|
+
tableName: "team_join_requests";
|
|
3013
|
+
dataType: "date";
|
|
3014
|
+
columnType: "PgTimestamp";
|
|
3015
|
+
data: Date;
|
|
3016
|
+
driverParam: string;
|
|
3017
|
+
notNull: false;
|
|
3018
|
+
hasDefault: false;
|
|
3019
|
+
isPrimaryKey: false;
|
|
3020
|
+
isAutoincrement: false;
|
|
3021
|
+
hasRuntimeDefault: false;
|
|
3022
|
+
enumValues: undefined;
|
|
3023
|
+
baseColumn: never;
|
|
3024
|
+
identity: undefined;
|
|
3025
|
+
generated: undefined;
|
|
3026
|
+
}, {}, {}>;
|
|
3027
|
+
createdAt: drizzle_orm_pg_core.PgColumn<{
|
|
3028
|
+
name: "created_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
|
+
updatedAt: drizzle_orm_pg_core.PgColumn<{
|
|
3045
|
+
name: "updated_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
|
+
};
|
|
3062
|
+
dialect: "pg";
|
|
3063
|
+
}>;
|
|
3064
|
+
declare const teamJoinRequestsRelations: drizzle_orm.Relations<"team_join_requests", {
|
|
3065
|
+
team: drizzle_orm.One<"teams", true>;
|
|
3066
|
+
user: drizzle_orm.One<"users", true>;
|
|
3067
|
+
}>;
|
|
3068
|
+
|
|
3069
|
+
declare const competitionPaymentProofs: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
3070
|
+
name: "competition_payment_proofs";
|
|
3071
|
+
schema: undefined;
|
|
3072
|
+
columns: {
|
|
3073
|
+
id: drizzle_orm_pg_core.PgColumn<{
|
|
3074
|
+
name: "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: true;
|
|
3083
|
+
isAutoincrement: false;
|
|
3084
|
+
hasRuntimeDefault: false;
|
|
3085
|
+
enumValues: [string, ...string[]];
|
|
3086
|
+
baseColumn: never;
|
|
3087
|
+
identity: undefined;
|
|
3088
|
+
generated: undefined;
|
|
3089
|
+
}, {}, {}>;
|
|
3090
|
+
programId: drizzle_orm_pg_core.PgColumn<{
|
|
3091
|
+
name: "program_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: false;
|
|
3100
|
+
isAutoincrement: false;
|
|
3101
|
+
hasRuntimeDefault: false;
|
|
3102
|
+
enumValues: [string, ...string[]];
|
|
3103
|
+
baseColumn: never;
|
|
3104
|
+
identity: undefined;
|
|
3105
|
+
generated: undefined;
|
|
3106
|
+
}, {}, {}>;
|
|
3107
|
+
teamId: drizzle_orm_pg_core.PgColumn<{
|
|
3108
|
+
name: "team_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
|
+
userId: drizzle_orm_pg_core.PgColumn<{
|
|
3125
|
+
name: "user_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
|
+
fileUrl: drizzle_orm_pg_core.PgColumn<{
|
|
3142
|
+
name: "file_url";
|
|
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
|
+
fileName: drizzle_orm_pg_core.PgColumn<{
|
|
3159
|
+
name: "file_name";
|
|
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
|
+
status: drizzle_orm_pg_core.PgColumn<{
|
|
3176
|
+
name: "status";
|
|
3177
|
+
tableName: "competition_payment_proofs";
|
|
3178
|
+
dataType: "string";
|
|
3179
|
+
columnType: "PgEnumColumn";
|
|
3180
|
+
data: "PENDING" | "REJECTED" | "ACCEPTED";
|
|
3181
|
+
driverParam: string;
|
|
3182
|
+
notNull: true;
|
|
3183
|
+
hasDefault: true;
|
|
3184
|
+
isPrimaryKey: false;
|
|
3185
|
+
isAutoincrement: false;
|
|
3186
|
+
hasRuntimeDefault: false;
|
|
3187
|
+
enumValues: ["PENDING", "REJECTED", "ACCEPTED"];
|
|
3188
|
+
baseColumn: never;
|
|
3189
|
+
identity: undefined;
|
|
3190
|
+
generated: undefined;
|
|
3191
|
+
}, {}, {}>;
|
|
3192
|
+
createdAt: drizzle_orm_pg_core.PgColumn<{
|
|
3193
|
+
name: "created_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
|
+
updatedAt: drizzle_orm_pg_core.PgColumn<{
|
|
3210
|
+
name: "updated_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
|
+
};
|
|
3227
|
+
dialect: "pg";
|
|
3228
|
+
}>;
|
|
3229
|
+
declare const competitionPaymentProofsRelations: drizzle_orm.Relations<"competition_payment_proofs", {
|
|
3230
|
+
program: drizzle_orm.One<"programs", true>;
|
|
3231
|
+
team: drizzle_orm.One<"teams", false>;
|
|
3232
|
+
user: drizzle_orm.One<"users", false>;
|
|
3233
|
+
}>;
|
|
3234
|
+
|
|
2898
3235
|
declare const programTasks: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
2899
3236
|
name: "program_tasks";
|
|
2900
3237
|
schema: undefined;
|
|
@@ -3061,6 +3398,40 @@ declare const programTasks: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
|
3061
3398
|
}, {}, {}, drizzle_orm.ColumnBuilderExtraConfig>;
|
|
3062
3399
|
size: undefined;
|
|
3063
3400
|
}>;
|
|
3401
|
+
isOptional: drizzle_orm_pg_core.PgColumn<{
|
|
3402
|
+
name: "is_optional";
|
|
3403
|
+
tableName: "program_tasks";
|
|
3404
|
+
dataType: "boolean";
|
|
3405
|
+
columnType: "PgBoolean";
|
|
3406
|
+
data: boolean;
|
|
3407
|
+
driverParam: boolean;
|
|
3408
|
+
notNull: true;
|
|
3409
|
+
hasDefault: true;
|
|
3410
|
+
isPrimaryKey: false;
|
|
3411
|
+
isAutoincrement: false;
|
|
3412
|
+
hasRuntimeDefault: false;
|
|
3413
|
+
enumValues: undefined;
|
|
3414
|
+
baseColumn: never;
|
|
3415
|
+
identity: undefined;
|
|
3416
|
+
generated: undefined;
|
|
3417
|
+
}, {}, {}>;
|
|
3418
|
+
isRegistrationTask: drizzle_orm_pg_core.PgColumn<{
|
|
3419
|
+
name: "is_registration_task";
|
|
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
|
+
}, {}, {}>;
|
|
3064
3435
|
deletedAt: drizzle_orm_pg_core.PgColumn<{
|
|
3065
3436
|
name: "deleted_at";
|
|
3066
3437
|
tableName: "program_tasks";
|
|
@@ -7696,6 +8067,57 @@ declare const cvClinicClaims: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
|
7696
8067
|
identity: undefined;
|
|
7697
8068
|
generated: undefined;
|
|
7698
8069
|
}, {}, {}>;
|
|
8070
|
+
cvFileUrl: drizzle_orm_pg_core.PgColumn<{
|
|
8071
|
+
name: "cv_file_url";
|
|
8072
|
+
tableName: "cv_clinic_claims";
|
|
8073
|
+
dataType: "string";
|
|
8074
|
+
columnType: "PgText";
|
|
8075
|
+
data: string;
|
|
8076
|
+
driverParam: string;
|
|
8077
|
+
notNull: false;
|
|
8078
|
+
hasDefault: false;
|
|
8079
|
+
isPrimaryKey: false;
|
|
8080
|
+
isAutoincrement: false;
|
|
8081
|
+
hasRuntimeDefault: false;
|
|
8082
|
+
enumValues: [string, ...string[]];
|
|
8083
|
+
baseColumn: never;
|
|
8084
|
+
identity: undefined;
|
|
8085
|
+
generated: undefined;
|
|
8086
|
+
}, {}, {}>;
|
|
8087
|
+
cvFileName: drizzle_orm_pg_core.PgColumn<{
|
|
8088
|
+
name: "cv_file_name";
|
|
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
|
+
note: drizzle_orm_pg_core.PgColumn<{
|
|
8105
|
+
name: "note";
|
|
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
|
+
}, {}, {}>;
|
|
7699
8121
|
createdAt: drizzle_orm_pg_core.PgColumn<{
|
|
7700
8122
|
name: "created_at";
|
|
7701
8123
|
tableName: "cv_clinic_claims";
|
|
@@ -10218,4 +10640,4 @@ declare const posts: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
|
10218
10640
|
dialect: "pg";
|
|
10219
10641
|
}>;
|
|
10220
10642
|
|
|
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 };
|
|
10643
|
+
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 };
|