expo-backend-types 0.3.0-EXPO-245.3 → 0.3.0-EXPO-245.5
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/src/cuenta/dto/createCuenta.dto.d.ts +369 -0
- package/dist/src/cuenta/dto/createCuenta.dto.js +23 -0
- package/dist/src/cuenta/dto/getFiltroBase.dto.d.ts +154 -0
- package/dist/src/cuenta/dto/getFiltroBase.dto.js +29 -0
- package/dist/src/cuenta/dto/getMe.dto.d.ts +245 -0
- package/dist/src/cuenta/dto/getMe.dto.js +12 -0
- package/dist/src/cuenta/dto/updateFiltroBase.dto.d.ts +208 -0
- package/dist/src/cuenta/dto/updateFiltroBase.dto.js +28 -0
- package/dist/types/prisma-schema/edge.js +14 -3
- package/dist/types/prisma-schema/index-browser.js +11 -0
- package/dist/types/prisma-schema/index.d.ts +1758 -185
- package/dist/types/prisma-schema/index.js +14 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +16 -1
- package/dist/types/prisma-schema/wasm.js +11 -0
- package/dist/types/schema.d.ts +200 -0
- package/package.json +1 -1
@@ -38,6 +38,11 @@ export type Etiqueta = $Result.DefaultSelection<Prisma.$EtiquetaPayload>
|
|
38
38
|
*
|
39
39
|
*/
|
40
40
|
export type EtiquetaGrupo = $Result.DefaultSelection<Prisma.$EtiquetaGrupoPayload>
|
41
|
+
/**
|
42
|
+
* Model EventosCarpeta
|
43
|
+
*
|
44
|
+
*/
|
45
|
+
export type EventosCarpeta = $Result.DefaultSelection<Prisma.$EventosCarpetaPayload>
|
41
46
|
/**
|
42
47
|
* Model Evento
|
43
48
|
*
|
@@ -284,6 +289,16 @@ export class PrismaClient<
|
|
284
289
|
*/
|
285
290
|
get etiquetaGrupo(): Prisma.EtiquetaGrupoDelegate<ExtArgs>;
|
286
291
|
|
292
|
+
/**
|
293
|
+
* `prisma.eventosCarpeta`: Exposes CRUD operations for the **EventosCarpeta** model.
|
294
|
+
* Example usage:
|
295
|
+
* ```ts
|
296
|
+
* // Fetch zero or more EventosCarpetas
|
297
|
+
* const eventosCarpetas = await prisma.eventosCarpeta.findMany()
|
298
|
+
* ```
|
299
|
+
*/
|
300
|
+
get eventosCarpeta(): Prisma.EventosCarpetaDelegate<ExtArgs>;
|
301
|
+
|
287
302
|
/**
|
288
303
|
* `prisma.evento`: Exposes CRUD operations for the **Evento** model.
|
289
304
|
* Example usage:
|
@@ -795,6 +810,7 @@ export namespace Prisma {
|
|
795
810
|
Comentario: 'Comentario',
|
796
811
|
Etiqueta: 'Etiqueta',
|
797
812
|
EtiquetaGrupo: 'EtiquetaGrupo',
|
813
|
+
EventosCarpeta: 'EventosCarpeta',
|
798
814
|
Evento: 'Evento',
|
799
815
|
Mensaje: 'Mensaje',
|
800
816
|
Enums: 'Enums'
|
@@ -814,7 +830,7 @@ export namespace Prisma {
|
|
814
830
|
|
815
831
|
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
816
832
|
meta: {
|
817
|
-
modelProps: 'cuenta' | 'perfil' | 'comentario' | 'etiqueta' | 'etiquetaGrupo' | 'evento' | 'mensaje' | 'enums'
|
833
|
+
modelProps: 'cuenta' | 'perfil' | 'comentario' | 'etiqueta' | 'etiquetaGrupo' | 'eventosCarpeta' | 'evento' | 'mensaje' | 'enums'
|
818
834
|
txIsolationLevel: Prisma.TransactionIsolationLevel
|
819
835
|
},
|
820
836
|
model: {
|
@@ -1168,6 +1184,76 @@ export namespace Prisma {
|
|
1168
1184
|
}
|
1169
1185
|
}
|
1170
1186
|
}
|
1187
|
+
EventosCarpeta: {
|
1188
|
+
payload: Prisma.$EventosCarpetaPayload<ExtArgs>
|
1189
|
+
fields: Prisma.EventosCarpetaFieldRefs
|
1190
|
+
operations: {
|
1191
|
+
findUnique: {
|
1192
|
+
args: Prisma.EventosCarpetaFindUniqueArgs<ExtArgs>,
|
1193
|
+
result: $Utils.PayloadToResult<Prisma.$EventosCarpetaPayload> | null
|
1194
|
+
}
|
1195
|
+
findUniqueOrThrow: {
|
1196
|
+
args: Prisma.EventosCarpetaFindUniqueOrThrowArgs<ExtArgs>,
|
1197
|
+
result: $Utils.PayloadToResult<Prisma.$EventosCarpetaPayload>
|
1198
|
+
}
|
1199
|
+
findFirst: {
|
1200
|
+
args: Prisma.EventosCarpetaFindFirstArgs<ExtArgs>,
|
1201
|
+
result: $Utils.PayloadToResult<Prisma.$EventosCarpetaPayload> | null
|
1202
|
+
}
|
1203
|
+
findFirstOrThrow: {
|
1204
|
+
args: Prisma.EventosCarpetaFindFirstOrThrowArgs<ExtArgs>,
|
1205
|
+
result: $Utils.PayloadToResult<Prisma.$EventosCarpetaPayload>
|
1206
|
+
}
|
1207
|
+
findMany: {
|
1208
|
+
args: Prisma.EventosCarpetaFindManyArgs<ExtArgs>,
|
1209
|
+
result: $Utils.PayloadToResult<Prisma.$EventosCarpetaPayload>[]
|
1210
|
+
}
|
1211
|
+
create: {
|
1212
|
+
args: Prisma.EventosCarpetaCreateArgs<ExtArgs>,
|
1213
|
+
result: $Utils.PayloadToResult<Prisma.$EventosCarpetaPayload>
|
1214
|
+
}
|
1215
|
+
createMany: {
|
1216
|
+
args: Prisma.EventosCarpetaCreateManyArgs<ExtArgs>,
|
1217
|
+
result: Prisma.BatchPayload
|
1218
|
+
}
|
1219
|
+
createManyAndReturn: {
|
1220
|
+
args: Prisma.EventosCarpetaCreateManyAndReturnArgs<ExtArgs>,
|
1221
|
+
result: $Utils.PayloadToResult<Prisma.$EventosCarpetaPayload>[]
|
1222
|
+
}
|
1223
|
+
delete: {
|
1224
|
+
args: Prisma.EventosCarpetaDeleteArgs<ExtArgs>,
|
1225
|
+
result: $Utils.PayloadToResult<Prisma.$EventosCarpetaPayload>
|
1226
|
+
}
|
1227
|
+
update: {
|
1228
|
+
args: Prisma.EventosCarpetaUpdateArgs<ExtArgs>,
|
1229
|
+
result: $Utils.PayloadToResult<Prisma.$EventosCarpetaPayload>
|
1230
|
+
}
|
1231
|
+
deleteMany: {
|
1232
|
+
args: Prisma.EventosCarpetaDeleteManyArgs<ExtArgs>,
|
1233
|
+
result: Prisma.BatchPayload
|
1234
|
+
}
|
1235
|
+
updateMany: {
|
1236
|
+
args: Prisma.EventosCarpetaUpdateManyArgs<ExtArgs>,
|
1237
|
+
result: Prisma.BatchPayload
|
1238
|
+
}
|
1239
|
+
upsert: {
|
1240
|
+
args: Prisma.EventosCarpetaUpsertArgs<ExtArgs>,
|
1241
|
+
result: $Utils.PayloadToResult<Prisma.$EventosCarpetaPayload>
|
1242
|
+
}
|
1243
|
+
aggregate: {
|
1244
|
+
args: Prisma.EventosCarpetaAggregateArgs<ExtArgs>,
|
1245
|
+
result: $Utils.Optional<AggregateEventosCarpeta>
|
1246
|
+
}
|
1247
|
+
groupBy: {
|
1248
|
+
args: Prisma.EventosCarpetaGroupByArgs<ExtArgs>,
|
1249
|
+
result: $Utils.Optional<EventosCarpetaGroupByOutputType>[]
|
1250
|
+
}
|
1251
|
+
count: {
|
1252
|
+
args: Prisma.EventosCarpetaCountArgs<ExtArgs>,
|
1253
|
+
result: $Utils.Optional<EventosCarpetaCountAggregateOutputType> | number
|
1254
|
+
}
|
1255
|
+
}
|
1256
|
+
}
|
1171
1257
|
Evento: {
|
1172
1258
|
payload: Prisma.$EventoPayload<ExtArgs>
|
1173
1259
|
fields: Prisma.EventoFieldRefs
|
@@ -1729,6 +1815,37 @@ export namespace Prisma {
|
|
1729
1815
|
}
|
1730
1816
|
|
1731
1817
|
|
1818
|
+
/**
|
1819
|
+
* Count Type EventosCarpetaCountOutputType
|
1820
|
+
*/
|
1821
|
+
|
1822
|
+
export type EventosCarpetaCountOutputType = {
|
1823
|
+
eventos: number
|
1824
|
+
}
|
1825
|
+
|
1826
|
+
export type EventosCarpetaCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
1827
|
+
eventos?: boolean | EventosCarpetaCountOutputTypeCountEventosArgs
|
1828
|
+
}
|
1829
|
+
|
1830
|
+
// Custom InputTypes
|
1831
|
+
/**
|
1832
|
+
* EventosCarpetaCountOutputType without action
|
1833
|
+
*/
|
1834
|
+
export type EventosCarpetaCountOutputTypeDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
1835
|
+
/**
|
1836
|
+
* Select specific fields to fetch from the EventosCarpetaCountOutputType
|
1837
|
+
*/
|
1838
|
+
select?: EventosCarpetaCountOutputTypeSelect<ExtArgs> | null
|
1839
|
+
}
|
1840
|
+
|
1841
|
+
/**
|
1842
|
+
* EventosCarpetaCountOutputType without action
|
1843
|
+
*/
|
1844
|
+
export type EventosCarpetaCountOutputTypeCountEventosArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
1845
|
+
where?: EventoWhereInput
|
1846
|
+
}
|
1847
|
+
|
1848
|
+
|
1732
1849
|
/**
|
1733
1850
|
* Count Type EventoCountOutputType
|
1734
1851
|
*/
|
@@ -2839,6 +2956,7 @@ export namespace Prisma {
|
|
2839
2956
|
id: string | null
|
2840
2957
|
idLegible: number | null
|
2841
2958
|
telefono: string | null
|
2959
|
+
telefonoSecundario: string | null
|
2842
2960
|
nombreCompleto: string | null
|
2843
2961
|
nombrePila: string | null
|
2844
2962
|
genero: string | null
|
@@ -2857,6 +2975,7 @@ export namespace Prisma {
|
|
2857
2975
|
id: string | null
|
2858
2976
|
idLegible: number | null
|
2859
2977
|
telefono: string | null
|
2978
|
+
telefonoSecundario: string | null
|
2860
2979
|
nombreCompleto: string | null
|
2861
2980
|
nombrePila: string | null
|
2862
2981
|
genero: string | null
|
@@ -2875,6 +2994,7 @@ export namespace Prisma {
|
|
2875
2994
|
id: number
|
2876
2995
|
idLegible: number
|
2877
2996
|
telefono: number
|
2997
|
+
telefonoSecundario: number
|
2878
2998
|
nombreCompleto: number
|
2879
2999
|
nombrePila: number
|
2880
3000
|
genero: number
|
@@ -2904,6 +3024,7 @@ export namespace Prisma {
|
|
2904
3024
|
id?: true
|
2905
3025
|
idLegible?: true
|
2906
3026
|
telefono?: true
|
3027
|
+
telefonoSecundario?: true
|
2907
3028
|
nombreCompleto?: true
|
2908
3029
|
nombrePila?: true
|
2909
3030
|
genero?: true
|
@@ -2922,6 +3043,7 @@ export namespace Prisma {
|
|
2922
3043
|
id?: true
|
2923
3044
|
idLegible?: true
|
2924
3045
|
telefono?: true
|
3046
|
+
telefonoSecundario?: true
|
2925
3047
|
nombreCompleto?: true
|
2926
3048
|
nombrePila?: true
|
2927
3049
|
genero?: true
|
@@ -2940,6 +3062,7 @@ export namespace Prisma {
|
|
2940
3062
|
id?: true
|
2941
3063
|
idLegible?: true
|
2942
3064
|
telefono?: true
|
3065
|
+
telefonoSecundario?: true
|
2943
3066
|
nombreCompleto?: true
|
2944
3067
|
nombrePila?: true
|
2945
3068
|
genero?: true
|
@@ -3046,6 +3169,7 @@ export namespace Prisma {
|
|
3046
3169
|
id: string
|
3047
3170
|
idLegible: number
|
3048
3171
|
telefono: string
|
3172
|
+
telefonoSecundario: string | null
|
3049
3173
|
nombreCompleto: string
|
3050
3174
|
nombrePila: string | null
|
3051
3175
|
genero: string | null
|
@@ -3084,6 +3208,7 @@ export namespace Prisma {
|
|
3084
3208
|
id?: boolean
|
3085
3209
|
idLegible?: boolean
|
3086
3210
|
telefono?: boolean
|
3211
|
+
telefonoSecundario?: boolean
|
3087
3212
|
nombreCompleto?: boolean
|
3088
3213
|
nombrePila?: boolean
|
3089
3214
|
genero?: boolean
|
@@ -3107,6 +3232,7 @@ export namespace Prisma {
|
|
3107
3232
|
id?: boolean
|
3108
3233
|
idLegible?: boolean
|
3109
3234
|
telefono?: boolean
|
3235
|
+
telefonoSecundario?: boolean
|
3110
3236
|
nombreCompleto?: boolean
|
3111
3237
|
nombrePila?: boolean
|
3112
3238
|
genero?: boolean
|
@@ -3142,6 +3268,7 @@ export namespace Prisma {
|
|
3142
3268
|
id: string
|
3143
3269
|
idLegible: number
|
3144
3270
|
telefono: string
|
3271
|
+
telefonoSecundario: string | null
|
3145
3272
|
nombreCompleto: string
|
3146
3273
|
nombrePila: string | null
|
3147
3274
|
genero: string | null
|
@@ -3583,6 +3710,7 @@ export namespace Prisma {
|
|
3583
3710
|
readonly id: FieldRef<"Perfil", 'String'>
|
3584
3711
|
readonly idLegible: FieldRef<"Perfil", 'Int'>
|
3585
3712
|
readonly telefono: FieldRef<"Perfil", 'String'>
|
3713
|
+
readonly telefonoSecundario: FieldRef<"Perfil", 'String'>
|
3586
3714
|
readonly nombreCompleto: FieldRef<"Perfil", 'String'>
|
3587
3715
|
readonly nombrePila: FieldRef<"Perfil", 'String'>
|
3588
3716
|
readonly genero: FieldRef<"Perfil", 'String'>
|
@@ -7026,393 +7154,1378 @@ export namespace Prisma {
|
|
7026
7154
|
|
7027
7155
|
|
7028
7156
|
/**
|
7029
|
-
* Model
|
7157
|
+
* Model EventosCarpeta
|
7030
7158
|
*/
|
7031
7159
|
|
7032
|
-
export type
|
7033
|
-
_count:
|
7034
|
-
_min:
|
7035
|
-
_max:
|
7160
|
+
export type AggregateEventosCarpeta = {
|
7161
|
+
_count: EventosCarpetaCountAggregateOutputType | null
|
7162
|
+
_min: EventosCarpetaMinAggregateOutputType | null
|
7163
|
+
_max: EventosCarpetaMaxAggregateOutputType | null
|
7036
7164
|
}
|
7037
7165
|
|
7038
|
-
export type
|
7166
|
+
export type EventosCarpetaMinAggregateOutputType = {
|
7039
7167
|
id: string | null
|
7040
7168
|
nombre: string | null
|
7041
|
-
|
7042
|
-
ubicacion: string | null
|
7043
|
-
etiquetaAsistioId: string | null
|
7044
|
-
etiquetaConfirmoId: string | null
|
7045
|
-
eventoPadreId: string | null
|
7169
|
+
color: string | null
|
7046
7170
|
created_at: Date | null
|
7047
7171
|
updated_at: Date | null
|
7048
7172
|
}
|
7049
7173
|
|
7050
|
-
export type
|
7174
|
+
export type EventosCarpetaMaxAggregateOutputType = {
|
7051
7175
|
id: string | null
|
7052
7176
|
nombre: string | null
|
7053
|
-
|
7054
|
-
ubicacion: string | null
|
7055
|
-
etiquetaAsistioId: string | null
|
7056
|
-
etiquetaConfirmoId: string | null
|
7057
|
-
eventoPadreId: string | null
|
7177
|
+
color: string | null
|
7058
7178
|
created_at: Date | null
|
7059
7179
|
updated_at: Date | null
|
7060
7180
|
}
|
7061
7181
|
|
7062
|
-
export type
|
7182
|
+
export type EventosCarpetaCountAggregateOutputType = {
|
7063
7183
|
id: number
|
7064
7184
|
nombre: number
|
7065
|
-
|
7066
|
-
ubicacion: number
|
7067
|
-
etiquetaAsistioId: number
|
7068
|
-
etiquetaConfirmoId: number
|
7069
|
-
eventoPadreId: number
|
7185
|
+
color: number
|
7070
7186
|
created_at: number
|
7071
7187
|
updated_at: number
|
7072
7188
|
_all: number
|
7073
7189
|
}
|
7074
7190
|
|
7075
7191
|
|
7076
|
-
export type
|
7192
|
+
export type EventosCarpetaMinAggregateInputType = {
|
7077
7193
|
id?: true
|
7078
7194
|
nombre?: true
|
7079
|
-
|
7080
|
-
ubicacion?: true
|
7081
|
-
etiquetaAsistioId?: true
|
7082
|
-
etiquetaConfirmoId?: true
|
7083
|
-
eventoPadreId?: true
|
7195
|
+
color?: true
|
7084
7196
|
created_at?: true
|
7085
7197
|
updated_at?: true
|
7086
7198
|
}
|
7087
7199
|
|
7088
|
-
export type
|
7200
|
+
export type EventosCarpetaMaxAggregateInputType = {
|
7089
7201
|
id?: true
|
7090
7202
|
nombre?: true
|
7091
|
-
|
7092
|
-
ubicacion?: true
|
7093
|
-
etiquetaAsistioId?: true
|
7094
|
-
etiquetaConfirmoId?: true
|
7095
|
-
eventoPadreId?: true
|
7203
|
+
color?: true
|
7096
7204
|
created_at?: true
|
7097
7205
|
updated_at?: true
|
7098
7206
|
}
|
7099
7207
|
|
7100
|
-
export type
|
7208
|
+
export type EventosCarpetaCountAggregateInputType = {
|
7101
7209
|
id?: true
|
7102
7210
|
nombre?: true
|
7103
|
-
|
7104
|
-
ubicacion?: true
|
7105
|
-
etiquetaAsistioId?: true
|
7106
|
-
etiquetaConfirmoId?: true
|
7107
|
-
eventoPadreId?: true
|
7211
|
+
color?: true
|
7108
7212
|
created_at?: true
|
7109
7213
|
updated_at?: true
|
7110
7214
|
_all?: true
|
7111
7215
|
}
|
7112
7216
|
|
7113
|
-
export type
|
7217
|
+
export type EventosCarpetaAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
7114
7218
|
/**
|
7115
|
-
* Filter which
|
7219
|
+
* Filter which EventosCarpeta to aggregate.
|
7116
7220
|
*/
|
7117
|
-
where?:
|
7221
|
+
where?: EventosCarpetaWhereInput
|
7118
7222
|
/**
|
7119
7223
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
7120
7224
|
*
|
7121
|
-
* Determine the order of
|
7225
|
+
* Determine the order of EventosCarpetas to fetch.
|
7122
7226
|
*/
|
7123
|
-
orderBy?:
|
7227
|
+
orderBy?: EventosCarpetaOrderByWithRelationInput | EventosCarpetaOrderByWithRelationInput[]
|
7124
7228
|
/**
|
7125
7229
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
7126
7230
|
*
|
7127
7231
|
* Sets the start position
|
7128
7232
|
*/
|
7129
|
-
cursor?:
|
7233
|
+
cursor?: EventosCarpetaWhereUniqueInput
|
7130
7234
|
/**
|
7131
7235
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
7132
7236
|
*
|
7133
|
-
* Take `±n`
|
7237
|
+
* Take `±n` EventosCarpetas from the position of the cursor.
|
7134
7238
|
*/
|
7135
7239
|
take?: number
|
7136
7240
|
/**
|
7137
7241
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
7138
7242
|
*
|
7139
|
-
* Skip the first `n`
|
7243
|
+
* Skip the first `n` EventosCarpetas.
|
7140
7244
|
*/
|
7141
7245
|
skip?: number
|
7142
7246
|
/**
|
7143
7247
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
7144
7248
|
*
|
7145
|
-
* Count returned
|
7249
|
+
* Count returned EventosCarpetas
|
7146
7250
|
**/
|
7147
|
-
_count?: true |
|
7251
|
+
_count?: true | EventosCarpetaCountAggregateInputType
|
7148
7252
|
/**
|
7149
7253
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
7150
7254
|
*
|
7151
7255
|
* Select which fields to find the minimum value
|
7152
7256
|
**/
|
7153
|
-
_min?:
|
7257
|
+
_min?: EventosCarpetaMinAggregateInputType
|
7154
7258
|
/**
|
7155
7259
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
7156
7260
|
*
|
7157
7261
|
* Select which fields to find the maximum value
|
7158
7262
|
**/
|
7159
|
-
_max?:
|
7263
|
+
_max?: EventosCarpetaMaxAggregateInputType
|
7160
7264
|
}
|
7161
7265
|
|
7162
|
-
export type
|
7163
|
-
[P in keyof T & keyof
|
7266
|
+
export type GetEventosCarpetaAggregateType<T extends EventosCarpetaAggregateArgs> = {
|
7267
|
+
[P in keyof T & keyof AggregateEventosCarpeta]: P extends '_count' | 'count'
|
7164
7268
|
? T[P] extends true
|
7165
7269
|
? number
|
7166
|
-
: GetScalarType<T[P],
|
7167
|
-
: GetScalarType<T[P],
|
7270
|
+
: GetScalarType<T[P], AggregateEventosCarpeta[P]>
|
7271
|
+
: GetScalarType<T[P], AggregateEventosCarpeta[P]>
|
7168
7272
|
}
|
7169
7273
|
|
7170
7274
|
|
7171
7275
|
|
7172
7276
|
|
7173
|
-
export type
|
7174
|
-
where?:
|
7175
|
-
orderBy?:
|
7176
|
-
by:
|
7177
|
-
having?:
|
7277
|
+
export type EventosCarpetaGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
7278
|
+
where?: EventosCarpetaWhereInput
|
7279
|
+
orderBy?: EventosCarpetaOrderByWithAggregationInput | EventosCarpetaOrderByWithAggregationInput[]
|
7280
|
+
by: EventosCarpetaScalarFieldEnum[] | EventosCarpetaScalarFieldEnum
|
7281
|
+
having?: EventosCarpetaScalarWhereWithAggregatesInput
|
7178
7282
|
take?: number
|
7179
7283
|
skip?: number
|
7180
|
-
_count?:
|
7181
|
-
_min?:
|
7182
|
-
_max?:
|
7284
|
+
_count?: EventosCarpetaCountAggregateInputType | true
|
7285
|
+
_min?: EventosCarpetaMinAggregateInputType
|
7286
|
+
_max?: EventosCarpetaMaxAggregateInputType
|
7183
7287
|
}
|
7184
7288
|
|
7185
|
-
export type
|
7289
|
+
export type EventosCarpetaGroupByOutputType = {
|
7186
7290
|
id: string
|
7187
7291
|
nombre: string
|
7188
|
-
|
7189
|
-
ubicacion: string
|
7190
|
-
etiquetaAsistioId: string
|
7191
|
-
etiquetaConfirmoId: string
|
7192
|
-
eventoPadreId: string | null
|
7292
|
+
color: string
|
7193
7293
|
created_at: Date
|
7194
7294
|
updated_at: Date
|
7195
|
-
_count:
|
7196
|
-
_min:
|
7197
|
-
_max:
|
7295
|
+
_count: EventosCarpetaCountAggregateOutputType | null
|
7296
|
+
_min: EventosCarpetaMinAggregateOutputType | null
|
7297
|
+
_max: EventosCarpetaMaxAggregateOutputType | null
|
7198
7298
|
}
|
7199
7299
|
|
7200
|
-
type
|
7300
|
+
type GetEventosCarpetaGroupByPayload<T extends EventosCarpetaGroupByArgs> = Prisma.PrismaPromise<
|
7201
7301
|
Array<
|
7202
|
-
PickEnumerable<
|
7302
|
+
PickEnumerable<EventosCarpetaGroupByOutputType, T['by']> &
|
7203
7303
|
{
|
7204
|
-
[P in ((keyof T) & (keyof
|
7304
|
+
[P in ((keyof T) & (keyof EventosCarpetaGroupByOutputType))]: P extends '_count'
|
7205
7305
|
? T[P] extends boolean
|
7206
7306
|
? number
|
7207
|
-
: GetScalarType<T[P],
|
7208
|
-
: GetScalarType<T[P],
|
7307
|
+
: GetScalarType<T[P], EventosCarpetaGroupByOutputType[P]>
|
7308
|
+
: GetScalarType<T[P], EventosCarpetaGroupByOutputType[P]>
|
7209
7309
|
}
|
7210
7310
|
>
|
7211
7311
|
>
|
7212
7312
|
|
7213
7313
|
|
7214
|
-
export type
|
7314
|
+
export type EventosCarpetaSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
7215
7315
|
id?: boolean
|
7216
7316
|
nombre?: boolean
|
7217
|
-
|
7218
|
-
ubicacion?: boolean
|
7219
|
-
etiquetaAsistioId?: boolean
|
7220
|
-
etiquetaConfirmoId?: boolean
|
7221
|
-
eventoPadreId?: boolean
|
7317
|
+
color?: boolean
|
7222
7318
|
created_at?: boolean
|
7223
7319
|
updated_at?: boolean
|
7224
|
-
|
7225
|
-
|
7226
|
-
|
7227
|
-
subEventos?: boolean | Evento$subEventosArgs<ExtArgs>
|
7228
|
-
_count?: boolean | EventoCountOutputTypeDefaultArgs<ExtArgs>
|
7229
|
-
}, ExtArgs["result"]["evento"]>
|
7320
|
+
eventos?: boolean | EventosCarpeta$eventosArgs<ExtArgs>
|
7321
|
+
_count?: boolean | EventosCarpetaCountOutputTypeDefaultArgs<ExtArgs>
|
7322
|
+
}, ExtArgs["result"]["eventosCarpeta"]>
|
7230
7323
|
|
7231
|
-
export type
|
7324
|
+
export type EventosCarpetaSelectScalar = {
|
7232
7325
|
id?: boolean
|
7233
7326
|
nombre?: boolean
|
7234
|
-
|
7235
|
-
ubicacion?: boolean
|
7236
|
-
etiquetaAsistioId?: boolean
|
7237
|
-
etiquetaConfirmoId?: boolean
|
7238
|
-
eventoPadreId?: boolean
|
7327
|
+
color?: boolean
|
7239
7328
|
created_at?: boolean
|
7240
7329
|
updated_at?: boolean
|
7241
7330
|
}
|
7242
7331
|
|
7243
7332
|
|
7244
|
-
export type
|
7245
|
-
|
7246
|
-
|
7247
|
-
eventoPadre?: boolean | Evento$eventoPadreArgs<ExtArgs>
|
7248
|
-
subEventos?: boolean | Evento$subEventosArgs<ExtArgs>
|
7249
|
-
_count?: boolean | EventoCountOutputTypeDefaultArgs<ExtArgs>
|
7333
|
+
export type EventosCarpetaInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
7334
|
+
eventos?: boolean | EventosCarpeta$eventosArgs<ExtArgs>
|
7335
|
+
_count?: boolean | EventosCarpetaCountOutputTypeDefaultArgs<ExtArgs>
|
7250
7336
|
}
|
7251
7337
|
|
7252
7338
|
|
7253
|
-
export type $
|
7254
|
-
name: "
|
7339
|
+
export type $EventosCarpetaPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
7340
|
+
name: "EventosCarpeta"
|
7255
7341
|
objects: {
|
7256
|
-
|
7257
|
-
etiquetaConfirmo: Prisma.$EtiquetaPayload<ExtArgs>
|
7258
|
-
eventoPadre: Prisma.$EventoPayload<ExtArgs> | null
|
7259
|
-
subEventos: Prisma.$EventoPayload<ExtArgs>[]
|
7342
|
+
eventos: Prisma.$EventoPayload<ExtArgs>[]
|
7260
7343
|
}
|
7261
7344
|
scalars: $Extensions.GetPayloadResult<{
|
7262
7345
|
id: string
|
7263
7346
|
nombre: string
|
7264
|
-
|
7265
|
-
ubicacion: string
|
7266
|
-
etiquetaAsistioId: string
|
7267
|
-
etiquetaConfirmoId: string
|
7268
|
-
eventoPadreId: string | null
|
7347
|
+
color: string
|
7269
7348
|
created_at: Date
|
7270
7349
|
updated_at: Date
|
7271
|
-
}, ExtArgs["result"]["
|
7350
|
+
}, ExtArgs["result"]["eventosCarpeta"]>
|
7272
7351
|
composites: {}
|
7273
7352
|
}
|
7274
7353
|
|
7275
7354
|
|
7276
|
-
type
|
7355
|
+
type EventosCarpetaGetPayload<S extends boolean | null | undefined | EventosCarpetaDefaultArgs> = $Result.GetResult<Prisma.$EventosCarpetaPayload, S>
|
7277
7356
|
|
7278
|
-
type
|
7279
|
-
Omit<
|
7280
|
-
select?:
|
7357
|
+
type EventosCarpetaCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
7358
|
+
Omit<EventosCarpetaFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
7359
|
+
select?: EventosCarpetaCountAggregateInputType | true
|
7281
7360
|
}
|
7282
7361
|
|
7283
|
-
export interface
|
7284
|
-
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['
|
7362
|
+
export interface EventosCarpetaDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
7363
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['EventosCarpeta'], meta: { name: 'EventosCarpeta' } }
|
7285
7364
|
/**
|
7286
|
-
* Find zero or one
|
7287
|
-
* @param {
|
7365
|
+
* Find zero or one EventosCarpeta that matches the filter.
|
7366
|
+
* @param {EventosCarpetaFindUniqueArgs} args - Arguments to find a EventosCarpeta
|
7288
7367
|
* @example
|
7289
|
-
* // Get one
|
7290
|
-
* const
|
7368
|
+
* // Get one EventosCarpeta
|
7369
|
+
* const eventosCarpeta = await prisma.eventosCarpeta.findUnique({
|
7291
7370
|
* where: {
|
7292
7371
|
* // ... provide filter here
|
7293
7372
|
* }
|
7294
7373
|
* })
|
7295
7374
|
**/
|
7296
|
-
findUnique<T extends
|
7297
|
-
args: SelectSubset<T,
|
7298
|
-
):
|
7375
|
+
findUnique<T extends EventosCarpetaFindUniqueArgs<ExtArgs>>(
|
7376
|
+
args: SelectSubset<T, EventosCarpetaFindUniqueArgs<ExtArgs>>
|
7377
|
+
): Prisma__EventosCarpetaClient<$Result.GetResult<Prisma.$EventosCarpetaPayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
|
7299
7378
|
|
7300
7379
|
/**
|
7301
|
-
* Find one
|
7380
|
+
* Find one EventosCarpeta that matches the filter or throw an error with `error.code='P2025'`
|
7302
7381
|
* if no matches were found.
|
7303
|
-
* @param {
|
7382
|
+
* @param {EventosCarpetaFindUniqueOrThrowArgs} args - Arguments to find a EventosCarpeta
|
7304
7383
|
* @example
|
7305
|
-
* // Get one
|
7306
|
-
* const
|
7384
|
+
* // Get one EventosCarpeta
|
7385
|
+
* const eventosCarpeta = await prisma.eventosCarpeta.findUniqueOrThrow({
|
7307
7386
|
* where: {
|
7308
7387
|
* // ... provide filter here
|
7309
7388
|
* }
|
7310
7389
|
* })
|
7311
7390
|
**/
|
7312
|
-
findUniqueOrThrow<T extends
|
7313
|
-
args?: SelectSubset<T,
|
7314
|
-
):
|
7391
|
+
findUniqueOrThrow<T extends EventosCarpetaFindUniqueOrThrowArgs<ExtArgs>>(
|
7392
|
+
args?: SelectSubset<T, EventosCarpetaFindUniqueOrThrowArgs<ExtArgs>>
|
7393
|
+
): Prisma__EventosCarpetaClient<$Result.GetResult<Prisma.$EventosCarpetaPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
|
7315
7394
|
|
7316
7395
|
/**
|
7317
|
-
* Find the first
|
7396
|
+
* Find the first EventosCarpeta that matches the filter.
|
7318
7397
|
* Note, that providing `undefined` is treated as the value not being there.
|
7319
7398
|
* Read more here: https://pris.ly/d/null-undefined
|
7320
|
-
* @param {
|
7399
|
+
* @param {EventosCarpetaFindFirstArgs} args - Arguments to find a EventosCarpeta
|
7321
7400
|
* @example
|
7322
|
-
* // Get one
|
7323
|
-
* const
|
7401
|
+
* // Get one EventosCarpeta
|
7402
|
+
* const eventosCarpeta = await prisma.eventosCarpeta.findFirst({
|
7324
7403
|
* where: {
|
7325
7404
|
* // ... provide filter here
|
7326
7405
|
* }
|
7327
7406
|
* })
|
7328
7407
|
**/
|
7329
|
-
findFirst<T extends
|
7330
|
-
args?: SelectSubset<T,
|
7331
|
-
):
|
7408
|
+
findFirst<T extends EventosCarpetaFindFirstArgs<ExtArgs>>(
|
7409
|
+
args?: SelectSubset<T, EventosCarpetaFindFirstArgs<ExtArgs>>
|
7410
|
+
): Prisma__EventosCarpetaClient<$Result.GetResult<Prisma.$EventosCarpetaPayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
|
7332
7411
|
|
7333
7412
|
/**
|
7334
|
-
* Find the first
|
7413
|
+
* Find the first EventosCarpeta that matches the filter or
|
7335
7414
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
7336
7415
|
* Note, that providing `undefined` is treated as the value not being there.
|
7337
7416
|
* Read more here: https://pris.ly/d/null-undefined
|
7338
|
-
* @param {
|
7417
|
+
* @param {EventosCarpetaFindFirstOrThrowArgs} args - Arguments to find a EventosCarpeta
|
7339
7418
|
* @example
|
7340
|
-
* // Get one
|
7341
|
-
* const
|
7419
|
+
* // Get one EventosCarpeta
|
7420
|
+
* const eventosCarpeta = await prisma.eventosCarpeta.findFirstOrThrow({
|
7342
7421
|
* where: {
|
7343
7422
|
* // ... provide filter here
|
7344
7423
|
* }
|
7345
7424
|
* })
|
7346
7425
|
**/
|
7347
|
-
findFirstOrThrow<T extends
|
7348
|
-
args?: SelectSubset<T,
|
7349
|
-
):
|
7426
|
+
findFirstOrThrow<T extends EventosCarpetaFindFirstOrThrowArgs<ExtArgs>>(
|
7427
|
+
args?: SelectSubset<T, EventosCarpetaFindFirstOrThrowArgs<ExtArgs>>
|
7428
|
+
): Prisma__EventosCarpetaClient<$Result.GetResult<Prisma.$EventosCarpetaPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
|
7350
7429
|
|
7351
7430
|
/**
|
7352
|
-
* Find zero or more
|
7431
|
+
* Find zero or more EventosCarpetas that matches the filter.
|
7353
7432
|
* Note, that providing `undefined` is treated as the value not being there.
|
7354
7433
|
* Read more here: https://pris.ly/d/null-undefined
|
7355
|
-
* @param {
|
7434
|
+
* @param {EventosCarpetaFindManyArgs} args - Arguments to filter and select certain fields only.
|
7356
7435
|
* @example
|
7357
|
-
* // Get all
|
7358
|
-
* const
|
7436
|
+
* // Get all EventosCarpetas
|
7437
|
+
* const eventosCarpetas = await prisma.eventosCarpeta.findMany()
|
7359
7438
|
*
|
7360
|
-
* // Get first 10
|
7361
|
-
* const
|
7439
|
+
* // Get first 10 EventosCarpetas
|
7440
|
+
* const eventosCarpetas = await prisma.eventosCarpeta.findMany({ take: 10 })
|
7362
7441
|
*
|
7363
7442
|
* // Only select the `id`
|
7364
|
-
* const
|
7443
|
+
* const eventosCarpetaWithIdOnly = await prisma.eventosCarpeta.findMany({ select: { id: true } })
|
7365
7444
|
*
|
7366
7445
|
**/
|
7367
|
-
findMany<T extends
|
7368
|
-
args?: SelectSubset<T,
|
7369
|
-
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$
|
7446
|
+
findMany<T extends EventosCarpetaFindManyArgs<ExtArgs>>(
|
7447
|
+
args?: SelectSubset<T, EventosCarpetaFindManyArgs<ExtArgs>>
|
7448
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventosCarpetaPayload<ExtArgs>, T, 'findMany'>>
|
7370
7449
|
|
7371
7450
|
/**
|
7372
|
-
* Create a
|
7373
|
-
* @param {
|
7451
|
+
* Create a EventosCarpeta.
|
7452
|
+
* @param {EventosCarpetaCreateArgs} args - Arguments to create a EventosCarpeta.
|
7374
7453
|
* @example
|
7375
|
-
* // Create one
|
7376
|
-
* const
|
7454
|
+
* // Create one EventosCarpeta
|
7455
|
+
* const EventosCarpeta = await prisma.eventosCarpeta.create({
|
7377
7456
|
* data: {
|
7378
|
-
* // ... data to create a
|
7457
|
+
* // ... data to create a EventosCarpeta
|
7379
7458
|
* }
|
7380
7459
|
* })
|
7381
7460
|
*
|
7382
7461
|
**/
|
7383
|
-
create<T extends
|
7384
|
-
args: SelectSubset<T,
|
7385
|
-
):
|
7462
|
+
create<T extends EventosCarpetaCreateArgs<ExtArgs>>(
|
7463
|
+
args: SelectSubset<T, EventosCarpetaCreateArgs<ExtArgs>>
|
7464
|
+
): Prisma__EventosCarpetaClient<$Result.GetResult<Prisma.$EventosCarpetaPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
|
7386
7465
|
|
7387
7466
|
/**
|
7388
|
-
* Create many
|
7389
|
-
* @param {
|
7467
|
+
* Create many EventosCarpetas.
|
7468
|
+
* @param {EventosCarpetaCreateManyArgs} args - Arguments to create many EventosCarpetas.
|
7390
7469
|
* @example
|
7391
|
-
* // Create many
|
7392
|
-
* const
|
7470
|
+
* // Create many EventosCarpetas
|
7471
|
+
* const eventosCarpeta = await prisma.eventosCarpeta.createMany({
|
7393
7472
|
* data: [
|
7394
7473
|
* // ... provide data here
|
7395
7474
|
* ]
|
7396
7475
|
* })
|
7397
7476
|
*
|
7398
7477
|
**/
|
7399
|
-
createMany<T extends
|
7400
|
-
args?: SelectSubset<T,
|
7478
|
+
createMany<T extends EventosCarpetaCreateManyArgs<ExtArgs>>(
|
7479
|
+
args?: SelectSubset<T, EventosCarpetaCreateManyArgs<ExtArgs>>
|
7401
7480
|
): Prisma.PrismaPromise<BatchPayload>
|
7402
7481
|
|
7403
7482
|
/**
|
7404
|
-
* Create many
|
7405
|
-
* @param {
|
7483
|
+
* Create many EventosCarpetas and returns the data saved in the database.
|
7484
|
+
* @param {EventosCarpetaCreateManyAndReturnArgs} args - Arguments to create many EventosCarpetas.
|
7406
7485
|
* @example
|
7407
|
-
* // Create many
|
7408
|
-
* const
|
7486
|
+
* // Create many EventosCarpetas
|
7487
|
+
* const eventosCarpeta = await prisma.eventosCarpeta.createManyAndReturn({
|
7409
7488
|
* data: [
|
7410
7489
|
* // ... provide data here
|
7411
7490
|
* ]
|
7412
7491
|
* })
|
7413
7492
|
*
|
7414
|
-
* // Create many
|
7415
|
-
* const
|
7493
|
+
* // Create many EventosCarpetas and only return the `id`
|
7494
|
+
* const eventosCarpetaWithIdOnly = await prisma.eventosCarpeta.createManyAndReturn({
|
7495
|
+
* select: { id: true },
|
7496
|
+
* data: [
|
7497
|
+
* // ... provide data here
|
7498
|
+
* ]
|
7499
|
+
* })
|
7500
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
7501
|
+
* Read more here: https://pris.ly/d/null-undefined
|
7502
|
+
*
|
7503
|
+
**/
|
7504
|
+
createManyAndReturn<T extends EventosCarpetaCreateManyAndReturnArgs<ExtArgs>>(
|
7505
|
+
args?: SelectSubset<T, EventosCarpetaCreateManyAndReturnArgs<ExtArgs>>
|
7506
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventosCarpetaPayload<ExtArgs>, T, 'createManyAndReturn'>>
|
7507
|
+
|
7508
|
+
/**
|
7509
|
+
* Delete a EventosCarpeta.
|
7510
|
+
* @param {EventosCarpetaDeleteArgs} args - Arguments to delete one EventosCarpeta.
|
7511
|
+
* @example
|
7512
|
+
* // Delete one EventosCarpeta
|
7513
|
+
* const EventosCarpeta = await prisma.eventosCarpeta.delete({
|
7514
|
+
* where: {
|
7515
|
+
* // ... filter to delete one EventosCarpeta
|
7516
|
+
* }
|
7517
|
+
* })
|
7518
|
+
*
|
7519
|
+
**/
|
7520
|
+
delete<T extends EventosCarpetaDeleteArgs<ExtArgs>>(
|
7521
|
+
args: SelectSubset<T, EventosCarpetaDeleteArgs<ExtArgs>>
|
7522
|
+
): Prisma__EventosCarpetaClient<$Result.GetResult<Prisma.$EventosCarpetaPayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
|
7523
|
+
|
7524
|
+
/**
|
7525
|
+
* Update one EventosCarpeta.
|
7526
|
+
* @param {EventosCarpetaUpdateArgs} args - Arguments to update one EventosCarpeta.
|
7527
|
+
* @example
|
7528
|
+
* // Update one EventosCarpeta
|
7529
|
+
* const eventosCarpeta = await prisma.eventosCarpeta.update({
|
7530
|
+
* where: {
|
7531
|
+
* // ... provide filter here
|
7532
|
+
* },
|
7533
|
+
* data: {
|
7534
|
+
* // ... provide data here
|
7535
|
+
* }
|
7536
|
+
* })
|
7537
|
+
*
|
7538
|
+
**/
|
7539
|
+
update<T extends EventosCarpetaUpdateArgs<ExtArgs>>(
|
7540
|
+
args: SelectSubset<T, EventosCarpetaUpdateArgs<ExtArgs>>
|
7541
|
+
): Prisma__EventosCarpetaClient<$Result.GetResult<Prisma.$EventosCarpetaPayload<ExtArgs>, T, 'update'>, never, ExtArgs>
|
7542
|
+
|
7543
|
+
/**
|
7544
|
+
* Delete zero or more EventosCarpetas.
|
7545
|
+
* @param {EventosCarpetaDeleteManyArgs} args - Arguments to filter EventosCarpetas to delete.
|
7546
|
+
* @example
|
7547
|
+
* // Delete a few EventosCarpetas
|
7548
|
+
* const { count } = await prisma.eventosCarpeta.deleteMany({
|
7549
|
+
* where: {
|
7550
|
+
* // ... provide filter here
|
7551
|
+
* }
|
7552
|
+
* })
|
7553
|
+
*
|
7554
|
+
**/
|
7555
|
+
deleteMany<T extends EventosCarpetaDeleteManyArgs<ExtArgs>>(
|
7556
|
+
args?: SelectSubset<T, EventosCarpetaDeleteManyArgs<ExtArgs>>
|
7557
|
+
): Prisma.PrismaPromise<BatchPayload>
|
7558
|
+
|
7559
|
+
/**
|
7560
|
+
* Update zero or more EventosCarpetas.
|
7561
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
7562
|
+
* Read more here: https://pris.ly/d/null-undefined
|
7563
|
+
* @param {EventosCarpetaUpdateManyArgs} args - Arguments to update one or more rows.
|
7564
|
+
* @example
|
7565
|
+
* // Update many EventosCarpetas
|
7566
|
+
* const eventosCarpeta = await prisma.eventosCarpeta.updateMany({
|
7567
|
+
* where: {
|
7568
|
+
* // ... provide filter here
|
7569
|
+
* },
|
7570
|
+
* data: {
|
7571
|
+
* // ... provide data here
|
7572
|
+
* }
|
7573
|
+
* })
|
7574
|
+
*
|
7575
|
+
**/
|
7576
|
+
updateMany<T extends EventosCarpetaUpdateManyArgs<ExtArgs>>(
|
7577
|
+
args: SelectSubset<T, EventosCarpetaUpdateManyArgs<ExtArgs>>
|
7578
|
+
): Prisma.PrismaPromise<BatchPayload>
|
7579
|
+
|
7580
|
+
/**
|
7581
|
+
* Create or update one EventosCarpeta.
|
7582
|
+
* @param {EventosCarpetaUpsertArgs} args - Arguments to update or create a EventosCarpeta.
|
7583
|
+
* @example
|
7584
|
+
* // Update or create a EventosCarpeta
|
7585
|
+
* const eventosCarpeta = await prisma.eventosCarpeta.upsert({
|
7586
|
+
* create: {
|
7587
|
+
* // ... data to create a EventosCarpeta
|
7588
|
+
* },
|
7589
|
+
* update: {
|
7590
|
+
* // ... in case it already exists, update
|
7591
|
+
* },
|
7592
|
+
* where: {
|
7593
|
+
* // ... the filter for the EventosCarpeta we want to update
|
7594
|
+
* }
|
7595
|
+
* })
|
7596
|
+
**/
|
7597
|
+
upsert<T extends EventosCarpetaUpsertArgs<ExtArgs>>(
|
7598
|
+
args: SelectSubset<T, EventosCarpetaUpsertArgs<ExtArgs>>
|
7599
|
+
): Prisma__EventosCarpetaClient<$Result.GetResult<Prisma.$EventosCarpetaPayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
|
7600
|
+
|
7601
|
+
/**
|
7602
|
+
* Count the number of EventosCarpetas.
|
7603
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
7604
|
+
* Read more here: https://pris.ly/d/null-undefined
|
7605
|
+
* @param {EventosCarpetaCountArgs} args - Arguments to filter EventosCarpetas to count.
|
7606
|
+
* @example
|
7607
|
+
* // Count the number of EventosCarpetas
|
7608
|
+
* const count = await prisma.eventosCarpeta.count({
|
7609
|
+
* where: {
|
7610
|
+
* // ... the filter for the EventosCarpetas we want to count
|
7611
|
+
* }
|
7612
|
+
* })
|
7613
|
+
**/
|
7614
|
+
count<T extends EventosCarpetaCountArgs>(
|
7615
|
+
args?: Subset<T, EventosCarpetaCountArgs>,
|
7616
|
+
): Prisma.PrismaPromise<
|
7617
|
+
T extends $Utils.Record<'select', any>
|
7618
|
+
? T['select'] extends true
|
7619
|
+
? number
|
7620
|
+
: GetScalarType<T['select'], EventosCarpetaCountAggregateOutputType>
|
7621
|
+
: number
|
7622
|
+
>
|
7623
|
+
|
7624
|
+
/**
|
7625
|
+
* Allows you to perform aggregations operations on a EventosCarpeta.
|
7626
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
7627
|
+
* Read more here: https://pris.ly/d/null-undefined
|
7628
|
+
* @param {EventosCarpetaAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
7629
|
+
* @example
|
7630
|
+
* // Ordered by age ascending
|
7631
|
+
* // Where email contains prisma.io
|
7632
|
+
* // Limited to the 10 users
|
7633
|
+
* const aggregations = await prisma.user.aggregate({
|
7634
|
+
* _avg: {
|
7635
|
+
* age: true,
|
7636
|
+
* },
|
7637
|
+
* where: {
|
7638
|
+
* email: {
|
7639
|
+
* contains: "prisma.io",
|
7640
|
+
* },
|
7641
|
+
* },
|
7642
|
+
* orderBy: {
|
7643
|
+
* age: "asc",
|
7644
|
+
* },
|
7645
|
+
* take: 10,
|
7646
|
+
* })
|
7647
|
+
**/
|
7648
|
+
aggregate<T extends EventosCarpetaAggregateArgs>(args: Subset<T, EventosCarpetaAggregateArgs>): Prisma.PrismaPromise<GetEventosCarpetaAggregateType<T>>
|
7649
|
+
|
7650
|
+
/**
|
7651
|
+
* Group by EventosCarpeta.
|
7652
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
7653
|
+
* Read more here: https://pris.ly/d/null-undefined
|
7654
|
+
* @param {EventosCarpetaGroupByArgs} args - Group by arguments.
|
7655
|
+
* @example
|
7656
|
+
* // Group by city, order by createdAt, get count
|
7657
|
+
* const result = await prisma.user.groupBy({
|
7658
|
+
* by: ['city', 'createdAt'],
|
7659
|
+
* orderBy: {
|
7660
|
+
* createdAt: true
|
7661
|
+
* },
|
7662
|
+
* _count: {
|
7663
|
+
* _all: true
|
7664
|
+
* },
|
7665
|
+
* })
|
7666
|
+
*
|
7667
|
+
**/
|
7668
|
+
groupBy<
|
7669
|
+
T extends EventosCarpetaGroupByArgs,
|
7670
|
+
HasSelectOrTake extends Or<
|
7671
|
+
Extends<'skip', Keys<T>>,
|
7672
|
+
Extends<'take', Keys<T>>
|
7673
|
+
>,
|
7674
|
+
OrderByArg extends True extends HasSelectOrTake
|
7675
|
+
? { orderBy: EventosCarpetaGroupByArgs['orderBy'] }
|
7676
|
+
: { orderBy?: EventosCarpetaGroupByArgs['orderBy'] },
|
7677
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
7678
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
7679
|
+
ByValid extends Has<ByFields, OrderFields>,
|
7680
|
+
HavingFields extends GetHavingFields<T['having']>,
|
7681
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
7682
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
7683
|
+
InputErrors extends ByEmpty extends True
|
7684
|
+
? `Error: "by" must not be empty.`
|
7685
|
+
: HavingValid extends False
|
7686
|
+
? {
|
7687
|
+
[P in HavingFields]: P extends ByFields
|
7688
|
+
? never
|
7689
|
+
: P extends string
|
7690
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
7691
|
+
: [
|
7692
|
+
Error,
|
7693
|
+
'Field ',
|
7694
|
+
P,
|
7695
|
+
` in "having" needs to be provided in "by"`,
|
7696
|
+
]
|
7697
|
+
}[HavingFields]
|
7698
|
+
: 'take' extends Keys<T>
|
7699
|
+
? 'orderBy' extends Keys<T>
|
7700
|
+
? ByValid extends True
|
7701
|
+
? {}
|
7702
|
+
: {
|
7703
|
+
[P in OrderFields]: P extends ByFields
|
7704
|
+
? never
|
7705
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
7706
|
+
}[OrderFields]
|
7707
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
7708
|
+
: 'skip' extends Keys<T>
|
7709
|
+
? 'orderBy' extends Keys<T>
|
7710
|
+
? ByValid extends True
|
7711
|
+
? {}
|
7712
|
+
: {
|
7713
|
+
[P in OrderFields]: P extends ByFields
|
7714
|
+
? never
|
7715
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
7716
|
+
}[OrderFields]
|
7717
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
7718
|
+
: ByValid extends True
|
7719
|
+
? {}
|
7720
|
+
: {
|
7721
|
+
[P in OrderFields]: P extends ByFields
|
7722
|
+
? never
|
7723
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
7724
|
+
}[OrderFields]
|
7725
|
+
>(args: SubsetIntersection<T, EventosCarpetaGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetEventosCarpetaGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
7726
|
+
/**
|
7727
|
+
* Fields of the EventosCarpeta model
|
7728
|
+
*/
|
7729
|
+
readonly fields: EventosCarpetaFieldRefs;
|
7730
|
+
}
|
7731
|
+
|
7732
|
+
/**
|
7733
|
+
* The delegate class that acts as a "Promise-like" for EventosCarpeta.
|
7734
|
+
* Why is this prefixed with `Prisma__`?
|
7735
|
+
* Because we want to prevent naming conflicts as mentioned in
|
7736
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
7737
|
+
*/
|
7738
|
+
export interface Prisma__EventosCarpetaClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
7739
|
+
readonly [Symbol.toStringTag]: 'PrismaPromise';
|
7740
|
+
|
7741
|
+
eventos<T extends EventosCarpeta$eventosArgs<ExtArgs> = {}>(args?: Subset<T, EventosCarpeta$eventosArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventoPayload<ExtArgs>, T, 'findMany'> | Null>;
|
7742
|
+
|
7743
|
+
/**
|
7744
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
7745
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
7746
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
7747
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
7748
|
+
*/
|
7749
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>;
|
7750
|
+
/**
|
7751
|
+
* Attaches a callback for only the rejection of the Promise.
|
7752
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
7753
|
+
* @returns A Promise for the completion of the callback.
|
7754
|
+
*/
|
7755
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>;
|
7756
|
+
/**
|
7757
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
7758
|
+
* resolved value cannot be modified from the callback.
|
7759
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
7760
|
+
* @returns A Promise for the completion of the callback.
|
7761
|
+
*/
|
7762
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>;
|
7763
|
+
}
|
7764
|
+
|
7765
|
+
|
7766
|
+
|
7767
|
+
/**
|
7768
|
+
* Fields of the EventosCarpeta model
|
7769
|
+
*/
|
7770
|
+
interface EventosCarpetaFieldRefs {
|
7771
|
+
readonly id: FieldRef<"EventosCarpeta", 'String'>
|
7772
|
+
readonly nombre: FieldRef<"EventosCarpeta", 'String'>
|
7773
|
+
readonly color: FieldRef<"EventosCarpeta", 'String'>
|
7774
|
+
readonly created_at: FieldRef<"EventosCarpeta", 'DateTime'>
|
7775
|
+
readonly updated_at: FieldRef<"EventosCarpeta", 'DateTime'>
|
7776
|
+
}
|
7777
|
+
|
7778
|
+
|
7779
|
+
// Custom InputTypes
|
7780
|
+
/**
|
7781
|
+
* EventosCarpeta findUnique
|
7782
|
+
*/
|
7783
|
+
export type EventosCarpetaFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
7784
|
+
/**
|
7785
|
+
* Select specific fields to fetch from the EventosCarpeta
|
7786
|
+
*/
|
7787
|
+
select?: EventosCarpetaSelect<ExtArgs> | null
|
7788
|
+
/**
|
7789
|
+
* Choose, which related nodes to fetch as well
|
7790
|
+
*/
|
7791
|
+
include?: EventosCarpetaInclude<ExtArgs> | null
|
7792
|
+
/**
|
7793
|
+
* Filter, which EventosCarpeta to fetch.
|
7794
|
+
*/
|
7795
|
+
where: EventosCarpetaWhereUniqueInput
|
7796
|
+
}
|
7797
|
+
|
7798
|
+
/**
|
7799
|
+
* EventosCarpeta findUniqueOrThrow
|
7800
|
+
*/
|
7801
|
+
export type EventosCarpetaFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
7802
|
+
/**
|
7803
|
+
* Select specific fields to fetch from the EventosCarpeta
|
7804
|
+
*/
|
7805
|
+
select?: EventosCarpetaSelect<ExtArgs> | null
|
7806
|
+
/**
|
7807
|
+
* Choose, which related nodes to fetch as well
|
7808
|
+
*/
|
7809
|
+
include?: EventosCarpetaInclude<ExtArgs> | null
|
7810
|
+
/**
|
7811
|
+
* Filter, which EventosCarpeta to fetch.
|
7812
|
+
*/
|
7813
|
+
where: EventosCarpetaWhereUniqueInput
|
7814
|
+
}
|
7815
|
+
|
7816
|
+
/**
|
7817
|
+
* EventosCarpeta findFirst
|
7818
|
+
*/
|
7819
|
+
export type EventosCarpetaFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
7820
|
+
/**
|
7821
|
+
* Select specific fields to fetch from the EventosCarpeta
|
7822
|
+
*/
|
7823
|
+
select?: EventosCarpetaSelect<ExtArgs> | null
|
7824
|
+
/**
|
7825
|
+
* Choose, which related nodes to fetch as well
|
7826
|
+
*/
|
7827
|
+
include?: EventosCarpetaInclude<ExtArgs> | null
|
7828
|
+
/**
|
7829
|
+
* Filter, which EventosCarpeta to fetch.
|
7830
|
+
*/
|
7831
|
+
where?: EventosCarpetaWhereInput
|
7832
|
+
/**
|
7833
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
7834
|
+
*
|
7835
|
+
* Determine the order of EventosCarpetas to fetch.
|
7836
|
+
*/
|
7837
|
+
orderBy?: EventosCarpetaOrderByWithRelationInput | EventosCarpetaOrderByWithRelationInput[]
|
7838
|
+
/**
|
7839
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
7840
|
+
*
|
7841
|
+
* Sets the position for searching for EventosCarpetas.
|
7842
|
+
*/
|
7843
|
+
cursor?: EventosCarpetaWhereUniqueInput
|
7844
|
+
/**
|
7845
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
7846
|
+
*
|
7847
|
+
* Take `±n` EventosCarpetas from the position of the cursor.
|
7848
|
+
*/
|
7849
|
+
take?: number
|
7850
|
+
/**
|
7851
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
7852
|
+
*
|
7853
|
+
* Skip the first `n` EventosCarpetas.
|
7854
|
+
*/
|
7855
|
+
skip?: number
|
7856
|
+
/**
|
7857
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
7858
|
+
*
|
7859
|
+
* Filter by unique combinations of EventosCarpetas.
|
7860
|
+
*/
|
7861
|
+
distinct?: EventosCarpetaScalarFieldEnum | EventosCarpetaScalarFieldEnum[]
|
7862
|
+
}
|
7863
|
+
|
7864
|
+
/**
|
7865
|
+
* EventosCarpeta findFirstOrThrow
|
7866
|
+
*/
|
7867
|
+
export type EventosCarpetaFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
7868
|
+
/**
|
7869
|
+
* Select specific fields to fetch from the EventosCarpeta
|
7870
|
+
*/
|
7871
|
+
select?: EventosCarpetaSelect<ExtArgs> | null
|
7872
|
+
/**
|
7873
|
+
* Choose, which related nodes to fetch as well
|
7874
|
+
*/
|
7875
|
+
include?: EventosCarpetaInclude<ExtArgs> | null
|
7876
|
+
/**
|
7877
|
+
* Filter, which EventosCarpeta to fetch.
|
7878
|
+
*/
|
7879
|
+
where?: EventosCarpetaWhereInput
|
7880
|
+
/**
|
7881
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
7882
|
+
*
|
7883
|
+
* Determine the order of EventosCarpetas to fetch.
|
7884
|
+
*/
|
7885
|
+
orderBy?: EventosCarpetaOrderByWithRelationInput | EventosCarpetaOrderByWithRelationInput[]
|
7886
|
+
/**
|
7887
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
7888
|
+
*
|
7889
|
+
* Sets the position for searching for EventosCarpetas.
|
7890
|
+
*/
|
7891
|
+
cursor?: EventosCarpetaWhereUniqueInput
|
7892
|
+
/**
|
7893
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
7894
|
+
*
|
7895
|
+
* Take `±n` EventosCarpetas from the position of the cursor.
|
7896
|
+
*/
|
7897
|
+
take?: number
|
7898
|
+
/**
|
7899
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
7900
|
+
*
|
7901
|
+
* Skip the first `n` EventosCarpetas.
|
7902
|
+
*/
|
7903
|
+
skip?: number
|
7904
|
+
/**
|
7905
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
7906
|
+
*
|
7907
|
+
* Filter by unique combinations of EventosCarpetas.
|
7908
|
+
*/
|
7909
|
+
distinct?: EventosCarpetaScalarFieldEnum | EventosCarpetaScalarFieldEnum[]
|
7910
|
+
}
|
7911
|
+
|
7912
|
+
/**
|
7913
|
+
* EventosCarpeta findMany
|
7914
|
+
*/
|
7915
|
+
export type EventosCarpetaFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
7916
|
+
/**
|
7917
|
+
* Select specific fields to fetch from the EventosCarpeta
|
7918
|
+
*/
|
7919
|
+
select?: EventosCarpetaSelect<ExtArgs> | null
|
7920
|
+
/**
|
7921
|
+
* Choose, which related nodes to fetch as well
|
7922
|
+
*/
|
7923
|
+
include?: EventosCarpetaInclude<ExtArgs> | null
|
7924
|
+
/**
|
7925
|
+
* Filter, which EventosCarpetas to fetch.
|
7926
|
+
*/
|
7927
|
+
where?: EventosCarpetaWhereInput
|
7928
|
+
/**
|
7929
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
7930
|
+
*
|
7931
|
+
* Determine the order of EventosCarpetas to fetch.
|
7932
|
+
*/
|
7933
|
+
orderBy?: EventosCarpetaOrderByWithRelationInput | EventosCarpetaOrderByWithRelationInput[]
|
7934
|
+
/**
|
7935
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
7936
|
+
*
|
7937
|
+
* Sets the position for listing EventosCarpetas.
|
7938
|
+
*/
|
7939
|
+
cursor?: EventosCarpetaWhereUniqueInput
|
7940
|
+
/**
|
7941
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
7942
|
+
*
|
7943
|
+
* Take `±n` EventosCarpetas from the position of the cursor.
|
7944
|
+
*/
|
7945
|
+
take?: number
|
7946
|
+
/**
|
7947
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
7948
|
+
*
|
7949
|
+
* Skip the first `n` EventosCarpetas.
|
7950
|
+
*/
|
7951
|
+
skip?: number
|
7952
|
+
distinct?: EventosCarpetaScalarFieldEnum | EventosCarpetaScalarFieldEnum[]
|
7953
|
+
}
|
7954
|
+
|
7955
|
+
/**
|
7956
|
+
* EventosCarpeta create
|
7957
|
+
*/
|
7958
|
+
export type EventosCarpetaCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
7959
|
+
/**
|
7960
|
+
* Select specific fields to fetch from the EventosCarpeta
|
7961
|
+
*/
|
7962
|
+
select?: EventosCarpetaSelect<ExtArgs> | null
|
7963
|
+
/**
|
7964
|
+
* Choose, which related nodes to fetch as well
|
7965
|
+
*/
|
7966
|
+
include?: EventosCarpetaInclude<ExtArgs> | null
|
7967
|
+
/**
|
7968
|
+
* The data needed to create a EventosCarpeta.
|
7969
|
+
*/
|
7970
|
+
data: XOR<EventosCarpetaCreateInput, EventosCarpetaUncheckedCreateInput>
|
7971
|
+
}
|
7972
|
+
|
7973
|
+
/**
|
7974
|
+
* EventosCarpeta createMany
|
7975
|
+
*/
|
7976
|
+
export type EventosCarpetaCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
7977
|
+
/**
|
7978
|
+
* The data used to create many EventosCarpetas.
|
7979
|
+
*/
|
7980
|
+
data: EventosCarpetaCreateManyInput | EventosCarpetaCreateManyInput[]
|
7981
|
+
skipDuplicates?: boolean
|
7982
|
+
}
|
7983
|
+
|
7984
|
+
/**
|
7985
|
+
* EventosCarpeta createManyAndReturn
|
7986
|
+
*/
|
7987
|
+
export type EventosCarpetaCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
7988
|
+
/**
|
7989
|
+
* Select specific fields to fetch from the EventosCarpeta
|
7990
|
+
*/
|
7991
|
+
select?: EventosCarpetaSelect<ExtArgs> | null
|
7992
|
+
/**
|
7993
|
+
* Choose, which related nodes to fetch as well
|
7994
|
+
*/
|
7995
|
+
include?: EventosCarpetaInclude<ExtArgs> | null
|
7996
|
+
/**
|
7997
|
+
* The data used to create many EventosCarpetas.
|
7998
|
+
*/
|
7999
|
+
data: EventosCarpetaCreateManyInput | EventosCarpetaCreateManyInput[]
|
8000
|
+
skipDuplicates?: boolean
|
8001
|
+
}
|
8002
|
+
|
8003
|
+
/**
|
8004
|
+
* EventosCarpeta update
|
8005
|
+
*/
|
8006
|
+
export type EventosCarpetaUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
8007
|
+
/**
|
8008
|
+
* Select specific fields to fetch from the EventosCarpeta
|
8009
|
+
*/
|
8010
|
+
select?: EventosCarpetaSelect<ExtArgs> | null
|
8011
|
+
/**
|
8012
|
+
* Choose, which related nodes to fetch as well
|
8013
|
+
*/
|
8014
|
+
include?: EventosCarpetaInclude<ExtArgs> | null
|
8015
|
+
/**
|
8016
|
+
* The data needed to update a EventosCarpeta.
|
8017
|
+
*/
|
8018
|
+
data: XOR<EventosCarpetaUpdateInput, EventosCarpetaUncheckedUpdateInput>
|
8019
|
+
/**
|
8020
|
+
* Choose, which EventosCarpeta to update.
|
8021
|
+
*/
|
8022
|
+
where: EventosCarpetaWhereUniqueInput
|
8023
|
+
}
|
8024
|
+
|
8025
|
+
/**
|
8026
|
+
* EventosCarpeta updateMany
|
8027
|
+
*/
|
8028
|
+
export type EventosCarpetaUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
8029
|
+
/**
|
8030
|
+
* The data used to update EventosCarpetas.
|
8031
|
+
*/
|
8032
|
+
data: XOR<EventosCarpetaUpdateManyMutationInput, EventosCarpetaUncheckedUpdateManyInput>
|
8033
|
+
/**
|
8034
|
+
* Filter which EventosCarpetas to update
|
8035
|
+
*/
|
8036
|
+
where?: EventosCarpetaWhereInput
|
8037
|
+
}
|
8038
|
+
|
8039
|
+
/**
|
8040
|
+
* EventosCarpeta upsert
|
8041
|
+
*/
|
8042
|
+
export type EventosCarpetaUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
8043
|
+
/**
|
8044
|
+
* Select specific fields to fetch from the EventosCarpeta
|
8045
|
+
*/
|
8046
|
+
select?: EventosCarpetaSelect<ExtArgs> | null
|
8047
|
+
/**
|
8048
|
+
* Choose, which related nodes to fetch as well
|
8049
|
+
*/
|
8050
|
+
include?: EventosCarpetaInclude<ExtArgs> | null
|
8051
|
+
/**
|
8052
|
+
* The filter to search for the EventosCarpeta to update in case it exists.
|
8053
|
+
*/
|
8054
|
+
where: EventosCarpetaWhereUniqueInput
|
8055
|
+
/**
|
8056
|
+
* In case the EventosCarpeta found by the `where` argument doesn't exist, create a new EventosCarpeta with this data.
|
8057
|
+
*/
|
8058
|
+
create: XOR<EventosCarpetaCreateInput, EventosCarpetaUncheckedCreateInput>
|
8059
|
+
/**
|
8060
|
+
* In case the EventosCarpeta was found with the provided `where` argument, update it with this data.
|
8061
|
+
*/
|
8062
|
+
update: XOR<EventosCarpetaUpdateInput, EventosCarpetaUncheckedUpdateInput>
|
8063
|
+
}
|
8064
|
+
|
8065
|
+
/**
|
8066
|
+
* EventosCarpeta delete
|
8067
|
+
*/
|
8068
|
+
export type EventosCarpetaDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
8069
|
+
/**
|
8070
|
+
* Select specific fields to fetch from the EventosCarpeta
|
8071
|
+
*/
|
8072
|
+
select?: EventosCarpetaSelect<ExtArgs> | null
|
8073
|
+
/**
|
8074
|
+
* Choose, which related nodes to fetch as well
|
8075
|
+
*/
|
8076
|
+
include?: EventosCarpetaInclude<ExtArgs> | null
|
8077
|
+
/**
|
8078
|
+
* Filter which EventosCarpeta to delete.
|
8079
|
+
*/
|
8080
|
+
where: EventosCarpetaWhereUniqueInput
|
8081
|
+
}
|
8082
|
+
|
8083
|
+
/**
|
8084
|
+
* EventosCarpeta deleteMany
|
8085
|
+
*/
|
8086
|
+
export type EventosCarpetaDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
8087
|
+
/**
|
8088
|
+
* Filter which EventosCarpetas to delete
|
8089
|
+
*/
|
8090
|
+
where?: EventosCarpetaWhereInput
|
8091
|
+
}
|
8092
|
+
|
8093
|
+
/**
|
8094
|
+
* EventosCarpeta.eventos
|
8095
|
+
*/
|
8096
|
+
export type EventosCarpeta$eventosArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
8097
|
+
/**
|
8098
|
+
* Select specific fields to fetch from the Evento
|
8099
|
+
*/
|
8100
|
+
select?: EventoSelect<ExtArgs> | null
|
8101
|
+
/**
|
8102
|
+
* Choose, which related nodes to fetch as well
|
8103
|
+
*/
|
8104
|
+
include?: EventoInclude<ExtArgs> | null
|
8105
|
+
where?: EventoWhereInput
|
8106
|
+
orderBy?: EventoOrderByWithRelationInput | EventoOrderByWithRelationInput[]
|
8107
|
+
cursor?: EventoWhereUniqueInput
|
8108
|
+
take?: number
|
8109
|
+
skip?: number
|
8110
|
+
distinct?: EventoScalarFieldEnum | EventoScalarFieldEnum[]
|
8111
|
+
}
|
8112
|
+
|
8113
|
+
/**
|
8114
|
+
* EventosCarpeta without action
|
8115
|
+
*/
|
8116
|
+
export type EventosCarpetaDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
8117
|
+
/**
|
8118
|
+
* Select specific fields to fetch from the EventosCarpeta
|
8119
|
+
*/
|
8120
|
+
select?: EventosCarpetaSelect<ExtArgs> | null
|
8121
|
+
/**
|
8122
|
+
* Choose, which related nodes to fetch as well
|
8123
|
+
*/
|
8124
|
+
include?: EventosCarpetaInclude<ExtArgs> | null
|
8125
|
+
}
|
8126
|
+
|
8127
|
+
|
8128
|
+
/**
|
8129
|
+
* Model Evento
|
8130
|
+
*/
|
8131
|
+
|
8132
|
+
export type AggregateEvento = {
|
8133
|
+
_count: EventoCountAggregateOutputType | null
|
8134
|
+
_min: EventoMinAggregateOutputType | null
|
8135
|
+
_max: EventoMaxAggregateOutputType | null
|
8136
|
+
}
|
8137
|
+
|
8138
|
+
export type EventoMinAggregateOutputType = {
|
8139
|
+
id: string | null
|
8140
|
+
nombre: string | null
|
8141
|
+
fecha: Date | null
|
8142
|
+
ubicacion: string | null
|
8143
|
+
carpetaId: string | null
|
8144
|
+
etiquetaAsistioId: string | null
|
8145
|
+
etiquetaConfirmoId: string | null
|
8146
|
+
eventoPadreId: string | null
|
8147
|
+
created_at: Date | null
|
8148
|
+
updated_at: Date | null
|
8149
|
+
}
|
8150
|
+
|
8151
|
+
export type EventoMaxAggregateOutputType = {
|
8152
|
+
id: string | null
|
8153
|
+
nombre: string | null
|
8154
|
+
fecha: Date | null
|
8155
|
+
ubicacion: string | null
|
8156
|
+
carpetaId: string | null
|
8157
|
+
etiquetaAsistioId: string | null
|
8158
|
+
etiquetaConfirmoId: string | null
|
8159
|
+
eventoPadreId: string | null
|
8160
|
+
created_at: Date | null
|
8161
|
+
updated_at: Date | null
|
8162
|
+
}
|
8163
|
+
|
8164
|
+
export type EventoCountAggregateOutputType = {
|
8165
|
+
id: number
|
8166
|
+
nombre: number
|
8167
|
+
fecha: number
|
8168
|
+
ubicacion: number
|
8169
|
+
carpetaId: number
|
8170
|
+
etiquetaAsistioId: number
|
8171
|
+
etiquetaConfirmoId: number
|
8172
|
+
eventoPadreId: number
|
8173
|
+
created_at: number
|
8174
|
+
updated_at: number
|
8175
|
+
_all: number
|
8176
|
+
}
|
8177
|
+
|
8178
|
+
|
8179
|
+
export type EventoMinAggregateInputType = {
|
8180
|
+
id?: true
|
8181
|
+
nombre?: true
|
8182
|
+
fecha?: true
|
8183
|
+
ubicacion?: true
|
8184
|
+
carpetaId?: true
|
8185
|
+
etiquetaAsistioId?: true
|
8186
|
+
etiquetaConfirmoId?: true
|
8187
|
+
eventoPadreId?: true
|
8188
|
+
created_at?: true
|
8189
|
+
updated_at?: true
|
8190
|
+
}
|
8191
|
+
|
8192
|
+
export type EventoMaxAggregateInputType = {
|
8193
|
+
id?: true
|
8194
|
+
nombre?: true
|
8195
|
+
fecha?: true
|
8196
|
+
ubicacion?: true
|
8197
|
+
carpetaId?: true
|
8198
|
+
etiquetaAsistioId?: true
|
8199
|
+
etiquetaConfirmoId?: true
|
8200
|
+
eventoPadreId?: true
|
8201
|
+
created_at?: true
|
8202
|
+
updated_at?: true
|
8203
|
+
}
|
8204
|
+
|
8205
|
+
export type EventoCountAggregateInputType = {
|
8206
|
+
id?: true
|
8207
|
+
nombre?: true
|
8208
|
+
fecha?: true
|
8209
|
+
ubicacion?: true
|
8210
|
+
carpetaId?: true
|
8211
|
+
etiquetaAsistioId?: true
|
8212
|
+
etiquetaConfirmoId?: true
|
8213
|
+
eventoPadreId?: true
|
8214
|
+
created_at?: true
|
8215
|
+
updated_at?: true
|
8216
|
+
_all?: true
|
8217
|
+
}
|
8218
|
+
|
8219
|
+
export type EventoAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
8220
|
+
/**
|
8221
|
+
* Filter which Evento to aggregate.
|
8222
|
+
*/
|
8223
|
+
where?: EventoWhereInput
|
8224
|
+
/**
|
8225
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
8226
|
+
*
|
8227
|
+
* Determine the order of Eventos to fetch.
|
8228
|
+
*/
|
8229
|
+
orderBy?: EventoOrderByWithRelationInput | EventoOrderByWithRelationInput[]
|
8230
|
+
/**
|
8231
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
8232
|
+
*
|
8233
|
+
* Sets the start position
|
8234
|
+
*/
|
8235
|
+
cursor?: EventoWhereUniqueInput
|
8236
|
+
/**
|
8237
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
8238
|
+
*
|
8239
|
+
* Take `±n` Eventos from the position of the cursor.
|
8240
|
+
*/
|
8241
|
+
take?: number
|
8242
|
+
/**
|
8243
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
8244
|
+
*
|
8245
|
+
* Skip the first `n` Eventos.
|
8246
|
+
*/
|
8247
|
+
skip?: number
|
8248
|
+
/**
|
8249
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
8250
|
+
*
|
8251
|
+
* Count returned Eventos
|
8252
|
+
**/
|
8253
|
+
_count?: true | EventoCountAggregateInputType
|
8254
|
+
/**
|
8255
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
8256
|
+
*
|
8257
|
+
* Select which fields to find the minimum value
|
8258
|
+
**/
|
8259
|
+
_min?: EventoMinAggregateInputType
|
8260
|
+
/**
|
8261
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
8262
|
+
*
|
8263
|
+
* Select which fields to find the maximum value
|
8264
|
+
**/
|
8265
|
+
_max?: EventoMaxAggregateInputType
|
8266
|
+
}
|
8267
|
+
|
8268
|
+
export type GetEventoAggregateType<T extends EventoAggregateArgs> = {
|
8269
|
+
[P in keyof T & keyof AggregateEvento]: P extends '_count' | 'count'
|
8270
|
+
? T[P] extends true
|
8271
|
+
? number
|
8272
|
+
: GetScalarType<T[P], AggregateEvento[P]>
|
8273
|
+
: GetScalarType<T[P], AggregateEvento[P]>
|
8274
|
+
}
|
8275
|
+
|
8276
|
+
|
8277
|
+
|
8278
|
+
|
8279
|
+
export type EventoGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
8280
|
+
where?: EventoWhereInput
|
8281
|
+
orderBy?: EventoOrderByWithAggregationInput | EventoOrderByWithAggregationInput[]
|
8282
|
+
by: EventoScalarFieldEnum[] | EventoScalarFieldEnum
|
8283
|
+
having?: EventoScalarWhereWithAggregatesInput
|
8284
|
+
take?: number
|
8285
|
+
skip?: number
|
8286
|
+
_count?: EventoCountAggregateInputType | true
|
8287
|
+
_min?: EventoMinAggregateInputType
|
8288
|
+
_max?: EventoMaxAggregateInputType
|
8289
|
+
}
|
8290
|
+
|
8291
|
+
export type EventoGroupByOutputType = {
|
8292
|
+
id: string
|
8293
|
+
nombre: string
|
8294
|
+
fecha: Date
|
8295
|
+
ubicacion: string
|
8296
|
+
carpetaId: string | null
|
8297
|
+
etiquetaAsistioId: string
|
8298
|
+
etiquetaConfirmoId: string
|
8299
|
+
eventoPadreId: string | null
|
8300
|
+
created_at: Date
|
8301
|
+
updated_at: Date
|
8302
|
+
_count: EventoCountAggregateOutputType | null
|
8303
|
+
_min: EventoMinAggregateOutputType | null
|
8304
|
+
_max: EventoMaxAggregateOutputType | null
|
8305
|
+
}
|
8306
|
+
|
8307
|
+
type GetEventoGroupByPayload<T extends EventoGroupByArgs> = Prisma.PrismaPromise<
|
8308
|
+
Array<
|
8309
|
+
PickEnumerable<EventoGroupByOutputType, T['by']> &
|
8310
|
+
{
|
8311
|
+
[P in ((keyof T) & (keyof EventoGroupByOutputType))]: P extends '_count'
|
8312
|
+
? T[P] extends boolean
|
8313
|
+
? number
|
8314
|
+
: GetScalarType<T[P], EventoGroupByOutputType[P]>
|
8315
|
+
: GetScalarType<T[P], EventoGroupByOutputType[P]>
|
8316
|
+
}
|
8317
|
+
>
|
8318
|
+
>
|
8319
|
+
|
8320
|
+
|
8321
|
+
export type EventoSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
8322
|
+
id?: boolean
|
8323
|
+
nombre?: boolean
|
8324
|
+
fecha?: boolean
|
8325
|
+
ubicacion?: boolean
|
8326
|
+
carpetaId?: boolean
|
8327
|
+
etiquetaAsistioId?: boolean
|
8328
|
+
etiquetaConfirmoId?: boolean
|
8329
|
+
eventoPadreId?: boolean
|
8330
|
+
created_at?: boolean
|
8331
|
+
updated_at?: boolean
|
8332
|
+
carpeta?: boolean | Evento$carpetaArgs<ExtArgs>
|
8333
|
+
etiquetaAsistio?: boolean | EtiquetaDefaultArgs<ExtArgs>
|
8334
|
+
etiquetaConfirmo?: boolean | EtiquetaDefaultArgs<ExtArgs>
|
8335
|
+
eventoPadre?: boolean | Evento$eventoPadreArgs<ExtArgs>
|
8336
|
+
subEventos?: boolean | Evento$subEventosArgs<ExtArgs>
|
8337
|
+
_count?: boolean | EventoCountOutputTypeDefaultArgs<ExtArgs>
|
8338
|
+
}, ExtArgs["result"]["evento"]>
|
8339
|
+
|
8340
|
+
export type EventoSelectScalar = {
|
8341
|
+
id?: boolean
|
8342
|
+
nombre?: boolean
|
8343
|
+
fecha?: boolean
|
8344
|
+
ubicacion?: boolean
|
8345
|
+
carpetaId?: boolean
|
8346
|
+
etiquetaAsistioId?: boolean
|
8347
|
+
etiquetaConfirmoId?: boolean
|
8348
|
+
eventoPadreId?: boolean
|
8349
|
+
created_at?: boolean
|
8350
|
+
updated_at?: boolean
|
8351
|
+
}
|
8352
|
+
|
8353
|
+
|
8354
|
+
export type EventoInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
8355
|
+
carpeta?: boolean | Evento$carpetaArgs<ExtArgs>
|
8356
|
+
etiquetaAsistio?: boolean | EtiquetaDefaultArgs<ExtArgs>
|
8357
|
+
etiquetaConfirmo?: boolean | EtiquetaDefaultArgs<ExtArgs>
|
8358
|
+
eventoPadre?: boolean | Evento$eventoPadreArgs<ExtArgs>
|
8359
|
+
subEventos?: boolean | Evento$subEventosArgs<ExtArgs>
|
8360
|
+
_count?: boolean | EventoCountOutputTypeDefaultArgs<ExtArgs>
|
8361
|
+
}
|
8362
|
+
|
8363
|
+
|
8364
|
+
export type $EventoPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
8365
|
+
name: "Evento"
|
8366
|
+
objects: {
|
8367
|
+
carpeta: Prisma.$EventosCarpetaPayload<ExtArgs> | null
|
8368
|
+
etiquetaAsistio: Prisma.$EtiquetaPayload<ExtArgs>
|
8369
|
+
etiquetaConfirmo: Prisma.$EtiquetaPayload<ExtArgs>
|
8370
|
+
eventoPadre: Prisma.$EventoPayload<ExtArgs> | null
|
8371
|
+
subEventos: Prisma.$EventoPayload<ExtArgs>[]
|
8372
|
+
}
|
8373
|
+
scalars: $Extensions.GetPayloadResult<{
|
8374
|
+
id: string
|
8375
|
+
nombre: string
|
8376
|
+
fecha: Date
|
8377
|
+
ubicacion: string
|
8378
|
+
carpetaId: string | null
|
8379
|
+
etiquetaAsistioId: string
|
8380
|
+
etiquetaConfirmoId: string
|
8381
|
+
eventoPadreId: string | null
|
8382
|
+
created_at: Date
|
8383
|
+
updated_at: Date
|
8384
|
+
}, ExtArgs["result"]["evento"]>
|
8385
|
+
composites: {}
|
8386
|
+
}
|
8387
|
+
|
8388
|
+
|
8389
|
+
type EventoGetPayload<S extends boolean | null | undefined | EventoDefaultArgs> = $Result.GetResult<Prisma.$EventoPayload, S>
|
8390
|
+
|
8391
|
+
type EventoCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
8392
|
+
Omit<EventoFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
8393
|
+
select?: EventoCountAggregateInputType | true
|
8394
|
+
}
|
8395
|
+
|
8396
|
+
export interface EventoDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
8397
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['Evento'], meta: { name: 'Evento' } }
|
8398
|
+
/**
|
8399
|
+
* Find zero or one Evento that matches the filter.
|
8400
|
+
* @param {EventoFindUniqueArgs} args - Arguments to find a Evento
|
8401
|
+
* @example
|
8402
|
+
* // Get one Evento
|
8403
|
+
* const evento = await prisma.evento.findUnique({
|
8404
|
+
* where: {
|
8405
|
+
* // ... provide filter here
|
8406
|
+
* }
|
8407
|
+
* })
|
8408
|
+
**/
|
8409
|
+
findUnique<T extends EventoFindUniqueArgs<ExtArgs>>(
|
8410
|
+
args: SelectSubset<T, EventoFindUniqueArgs<ExtArgs>>
|
8411
|
+
): Prisma__EventoClient<$Result.GetResult<Prisma.$EventoPayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
|
8412
|
+
|
8413
|
+
/**
|
8414
|
+
* Find one Evento that matches the filter or throw an error with `error.code='P2025'`
|
8415
|
+
* if no matches were found.
|
8416
|
+
* @param {EventoFindUniqueOrThrowArgs} args - Arguments to find a Evento
|
8417
|
+
* @example
|
8418
|
+
* // Get one Evento
|
8419
|
+
* const evento = await prisma.evento.findUniqueOrThrow({
|
8420
|
+
* where: {
|
8421
|
+
* // ... provide filter here
|
8422
|
+
* }
|
8423
|
+
* })
|
8424
|
+
**/
|
8425
|
+
findUniqueOrThrow<T extends EventoFindUniqueOrThrowArgs<ExtArgs>>(
|
8426
|
+
args?: SelectSubset<T, EventoFindUniqueOrThrowArgs<ExtArgs>>
|
8427
|
+
): Prisma__EventoClient<$Result.GetResult<Prisma.$EventoPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
|
8428
|
+
|
8429
|
+
/**
|
8430
|
+
* Find the first Evento that matches the filter.
|
8431
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
8432
|
+
* Read more here: https://pris.ly/d/null-undefined
|
8433
|
+
* @param {EventoFindFirstArgs} args - Arguments to find a Evento
|
8434
|
+
* @example
|
8435
|
+
* // Get one Evento
|
8436
|
+
* const evento = await prisma.evento.findFirst({
|
8437
|
+
* where: {
|
8438
|
+
* // ... provide filter here
|
8439
|
+
* }
|
8440
|
+
* })
|
8441
|
+
**/
|
8442
|
+
findFirst<T extends EventoFindFirstArgs<ExtArgs>>(
|
8443
|
+
args?: SelectSubset<T, EventoFindFirstArgs<ExtArgs>>
|
8444
|
+
): Prisma__EventoClient<$Result.GetResult<Prisma.$EventoPayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
|
8445
|
+
|
8446
|
+
/**
|
8447
|
+
* Find the first Evento that matches the filter or
|
8448
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
8449
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
8450
|
+
* Read more here: https://pris.ly/d/null-undefined
|
8451
|
+
* @param {EventoFindFirstOrThrowArgs} args - Arguments to find a Evento
|
8452
|
+
* @example
|
8453
|
+
* // Get one Evento
|
8454
|
+
* const evento = await prisma.evento.findFirstOrThrow({
|
8455
|
+
* where: {
|
8456
|
+
* // ... provide filter here
|
8457
|
+
* }
|
8458
|
+
* })
|
8459
|
+
**/
|
8460
|
+
findFirstOrThrow<T extends EventoFindFirstOrThrowArgs<ExtArgs>>(
|
8461
|
+
args?: SelectSubset<T, EventoFindFirstOrThrowArgs<ExtArgs>>
|
8462
|
+
): Prisma__EventoClient<$Result.GetResult<Prisma.$EventoPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
|
8463
|
+
|
8464
|
+
/**
|
8465
|
+
* Find zero or more Eventos that matches the filter.
|
8466
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
8467
|
+
* Read more here: https://pris.ly/d/null-undefined
|
8468
|
+
* @param {EventoFindManyArgs} args - Arguments to filter and select certain fields only.
|
8469
|
+
* @example
|
8470
|
+
* // Get all Eventos
|
8471
|
+
* const eventos = await prisma.evento.findMany()
|
8472
|
+
*
|
8473
|
+
* // Get first 10 Eventos
|
8474
|
+
* const eventos = await prisma.evento.findMany({ take: 10 })
|
8475
|
+
*
|
8476
|
+
* // Only select the `id`
|
8477
|
+
* const eventoWithIdOnly = await prisma.evento.findMany({ select: { id: true } })
|
8478
|
+
*
|
8479
|
+
**/
|
8480
|
+
findMany<T extends EventoFindManyArgs<ExtArgs>>(
|
8481
|
+
args?: SelectSubset<T, EventoFindManyArgs<ExtArgs>>
|
8482
|
+
): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventoPayload<ExtArgs>, T, 'findMany'>>
|
8483
|
+
|
8484
|
+
/**
|
8485
|
+
* Create a Evento.
|
8486
|
+
* @param {EventoCreateArgs} args - Arguments to create a Evento.
|
8487
|
+
* @example
|
8488
|
+
* // Create one Evento
|
8489
|
+
* const Evento = await prisma.evento.create({
|
8490
|
+
* data: {
|
8491
|
+
* // ... data to create a Evento
|
8492
|
+
* }
|
8493
|
+
* })
|
8494
|
+
*
|
8495
|
+
**/
|
8496
|
+
create<T extends EventoCreateArgs<ExtArgs>>(
|
8497
|
+
args: SelectSubset<T, EventoCreateArgs<ExtArgs>>
|
8498
|
+
): Prisma__EventoClient<$Result.GetResult<Prisma.$EventoPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
|
8499
|
+
|
8500
|
+
/**
|
8501
|
+
* Create many Eventos.
|
8502
|
+
* @param {EventoCreateManyArgs} args - Arguments to create many Eventos.
|
8503
|
+
* @example
|
8504
|
+
* // Create many Eventos
|
8505
|
+
* const evento = await prisma.evento.createMany({
|
8506
|
+
* data: [
|
8507
|
+
* // ... provide data here
|
8508
|
+
* ]
|
8509
|
+
* })
|
8510
|
+
*
|
8511
|
+
**/
|
8512
|
+
createMany<T extends EventoCreateManyArgs<ExtArgs>>(
|
8513
|
+
args?: SelectSubset<T, EventoCreateManyArgs<ExtArgs>>
|
8514
|
+
): Prisma.PrismaPromise<BatchPayload>
|
8515
|
+
|
8516
|
+
/**
|
8517
|
+
* Create many Eventos and returns the data saved in the database.
|
8518
|
+
* @param {EventoCreateManyAndReturnArgs} args - Arguments to create many Eventos.
|
8519
|
+
* @example
|
8520
|
+
* // Create many Eventos
|
8521
|
+
* const evento = await prisma.evento.createManyAndReturn({
|
8522
|
+
* data: [
|
8523
|
+
* // ... provide data here
|
8524
|
+
* ]
|
8525
|
+
* })
|
8526
|
+
*
|
8527
|
+
* // Create many Eventos and only return the `id`
|
8528
|
+
* const eventoWithIdOnly = await prisma.evento.createManyAndReturn({
|
7416
8529
|
* select: { id: true },
|
7417
8530
|
* data: [
|
7418
8531
|
* // ... provide data here
|
@@ -7659,6 +8772,8 @@ export namespace Prisma {
|
|
7659
8772
|
export interface Prisma__EventoClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
7660
8773
|
readonly [Symbol.toStringTag]: 'PrismaPromise';
|
7661
8774
|
|
8775
|
+
carpeta<T extends Evento$carpetaArgs<ExtArgs> = {}>(args?: Subset<T, Evento$carpetaArgs<ExtArgs>>): Prisma__EventosCarpetaClient<$Result.GetResult<Prisma.$EventosCarpetaPayload<ExtArgs>, T, 'findUniqueOrThrow'> | null, null, ExtArgs>;
|
8776
|
+
|
7662
8777
|
etiquetaAsistio<T extends EtiquetaDefaultArgs<ExtArgs> = {}>(args?: Subset<T, EtiquetaDefaultArgs<ExtArgs>>): Prisma__EtiquetaClient<$Result.GetResult<Prisma.$EtiquetaPayload<ExtArgs>, T, 'findUniqueOrThrow'> | Null, Null, ExtArgs>;
|
7663
8778
|
|
7664
8779
|
etiquetaConfirmo<T extends EtiquetaDefaultArgs<ExtArgs> = {}>(args?: Subset<T, EtiquetaDefaultArgs<ExtArgs>>): Prisma__EtiquetaClient<$Result.GetResult<Prisma.$EtiquetaPayload<ExtArgs>, T, 'findUniqueOrThrow'> | Null, Null, ExtArgs>;
|
@@ -7699,6 +8814,7 @@ export namespace Prisma {
|
|
7699
8814
|
readonly nombre: FieldRef<"Evento", 'String'>
|
7700
8815
|
readonly fecha: FieldRef<"Evento", 'DateTime'>
|
7701
8816
|
readonly ubicacion: FieldRef<"Evento", 'String'>
|
8817
|
+
readonly carpetaId: FieldRef<"Evento", 'String'>
|
7702
8818
|
readonly etiquetaAsistioId: FieldRef<"Evento", 'String'>
|
7703
8819
|
readonly etiquetaConfirmoId: FieldRef<"Evento", 'String'>
|
7704
8820
|
readonly eventoPadreId: FieldRef<"Evento", 'String'>
|
@@ -8012,13 +9128,28 @@ export namespace Prisma {
|
|
8012
9128
|
}
|
8013
9129
|
|
8014
9130
|
/**
|
8015
|
-
* Evento deleteMany
|
9131
|
+
* Evento deleteMany
|
9132
|
+
*/
|
9133
|
+
export type EventoDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
9134
|
+
/**
|
9135
|
+
* Filter which Eventos to delete
|
9136
|
+
*/
|
9137
|
+
where?: EventoWhereInput
|
9138
|
+
}
|
9139
|
+
|
9140
|
+
/**
|
9141
|
+
* Evento.carpeta
|
8016
9142
|
*/
|
8017
|
-
export type
|
9143
|
+
export type Evento$carpetaArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
8018
9144
|
/**
|
8019
|
-
*
|
9145
|
+
* Select specific fields to fetch from the EventosCarpeta
|
8020
9146
|
*/
|
8021
|
-
|
9147
|
+
select?: EventosCarpetaSelect<ExtArgs> | null
|
9148
|
+
/**
|
9149
|
+
* Choose, which related nodes to fetch as well
|
9150
|
+
*/
|
9151
|
+
include?: EventosCarpetaInclude<ExtArgs> | null
|
9152
|
+
where?: EventosCarpetaWhereInput
|
8022
9153
|
}
|
8023
9154
|
|
8024
9155
|
/**
|
@@ -9969,6 +11100,7 @@ export namespace Prisma {
|
|
9969
11100
|
id: 'id',
|
9970
11101
|
idLegible: 'idLegible',
|
9971
11102
|
telefono: 'telefono',
|
11103
|
+
telefonoSecundario: 'telefonoSecundario',
|
9972
11104
|
nombreCompleto: 'nombreCompleto',
|
9973
11105
|
nombrePila: 'nombrePila',
|
9974
11106
|
genero: 'genero',
|
@@ -10023,11 +11155,23 @@ export namespace Prisma {
|
|
10023
11155
|
export type EtiquetaGrupoScalarFieldEnum = (typeof EtiquetaGrupoScalarFieldEnum)[keyof typeof EtiquetaGrupoScalarFieldEnum]
|
10024
11156
|
|
10025
11157
|
|
11158
|
+
export const EventosCarpetaScalarFieldEnum: {
|
11159
|
+
id: 'id',
|
11160
|
+
nombre: 'nombre',
|
11161
|
+
color: 'color',
|
11162
|
+
created_at: 'created_at',
|
11163
|
+
updated_at: 'updated_at'
|
11164
|
+
};
|
11165
|
+
|
11166
|
+
export type EventosCarpetaScalarFieldEnum = (typeof EventosCarpetaScalarFieldEnum)[keyof typeof EventosCarpetaScalarFieldEnum]
|
11167
|
+
|
11168
|
+
|
10026
11169
|
export const EventoScalarFieldEnum: {
|
10027
11170
|
id: 'id',
|
10028
11171
|
nombre: 'nombre',
|
10029
11172
|
fecha: 'fecha',
|
10030
11173
|
ubicacion: 'ubicacion',
|
11174
|
+
carpetaId: 'carpetaId',
|
10031
11175
|
etiquetaAsistioId: 'etiquetaAsistioId',
|
10032
11176
|
etiquetaConfirmoId: 'etiquetaConfirmoId',
|
10033
11177
|
eventoPadreId: 'eventoPadreId',
|
@@ -10319,6 +11463,7 @@ export namespace Prisma {
|
|
10319
11463
|
id?: StringFilter<"Perfil"> | string
|
10320
11464
|
idLegible?: IntFilter<"Perfil"> | number
|
10321
11465
|
telefono?: StringFilter<"Perfil"> | string
|
11466
|
+
telefonoSecundario?: StringNullableFilter<"Perfil"> | string | null
|
10322
11467
|
nombreCompleto?: StringFilter<"Perfil"> | string
|
10323
11468
|
nombrePila?: StringNullableFilter<"Perfil"> | string | null
|
10324
11469
|
genero?: StringNullableFilter<"Perfil"> | string | null
|
@@ -10341,6 +11486,7 @@ export namespace Prisma {
|
|
10341
11486
|
id?: SortOrder
|
10342
11487
|
idLegible?: SortOrder
|
10343
11488
|
telefono?: SortOrder
|
11489
|
+
telefonoSecundario?: SortOrderInput | SortOrder
|
10344
11490
|
nombreCompleto?: SortOrder
|
10345
11491
|
nombrePila?: SortOrderInput | SortOrder
|
10346
11492
|
genero?: SortOrderInput | SortOrder
|
@@ -10362,6 +11508,7 @@ export namespace Prisma {
|
|
10362
11508
|
export type PerfilWhereUniqueInput = Prisma.AtLeast<{
|
10363
11509
|
id?: string
|
10364
11510
|
telefono?: string
|
11511
|
+
telefonoSecundario?: string
|
10365
11512
|
AND?: PerfilWhereInput | PerfilWhereInput[]
|
10366
11513
|
OR?: PerfilWhereInput[]
|
10367
11514
|
NOT?: PerfilWhereInput | PerfilWhereInput[]
|
@@ -10382,12 +11529,13 @@ export namespace Prisma {
|
|
10382
11529
|
comentarios?: ComentarioListRelationFilter
|
10383
11530
|
mensajes?: MensajeListRelationFilter
|
10384
11531
|
etiquetas?: EtiquetaListRelationFilter
|
10385
|
-
}, "id" | "telefono">
|
11532
|
+
}, "id" | "telefono" | "telefonoSecundario">
|
10386
11533
|
|
10387
11534
|
export type PerfilOrderByWithAggregationInput = {
|
10388
11535
|
id?: SortOrder
|
10389
11536
|
idLegible?: SortOrder
|
10390
11537
|
telefono?: SortOrder
|
11538
|
+
telefonoSecundario?: SortOrderInput | SortOrder
|
10391
11539
|
nombreCompleto?: SortOrder
|
10392
11540
|
nombrePila?: SortOrderInput | SortOrder
|
10393
11541
|
genero?: SortOrderInput | SortOrder
|
@@ -10415,6 +11563,7 @@ export namespace Prisma {
|
|
10415
11563
|
id?: StringWithAggregatesFilter<"Perfil"> | string
|
10416
11564
|
idLegible?: IntWithAggregatesFilter<"Perfil"> | number
|
10417
11565
|
telefono?: StringWithAggregatesFilter<"Perfil"> | string
|
11566
|
+
telefonoSecundario?: StringNullableWithAggregatesFilter<"Perfil"> | string | null
|
10418
11567
|
nombreCompleto?: StringWithAggregatesFilter<"Perfil"> | string
|
10419
11568
|
nombrePila?: StringNullableWithAggregatesFilter<"Perfil"> | string | null
|
10420
11569
|
genero?: StringNullableWithAggregatesFilter<"Perfil"> | string | null
|
@@ -10628,6 +11777,61 @@ export namespace Prisma {
|
|
10628
11777
|
updated_at?: DateTimeWithAggregatesFilter<"EtiquetaGrupo"> | Date | string
|
10629
11778
|
}
|
10630
11779
|
|
11780
|
+
export type EventosCarpetaWhereInput = {
|
11781
|
+
AND?: EventosCarpetaWhereInput | EventosCarpetaWhereInput[]
|
11782
|
+
OR?: EventosCarpetaWhereInput[]
|
11783
|
+
NOT?: EventosCarpetaWhereInput | EventosCarpetaWhereInput[]
|
11784
|
+
id?: StringFilter<"EventosCarpeta"> | string
|
11785
|
+
nombre?: StringFilter<"EventosCarpeta"> | string
|
11786
|
+
color?: StringFilter<"EventosCarpeta"> | string
|
11787
|
+
created_at?: DateTimeFilter<"EventosCarpeta"> | Date | string
|
11788
|
+
updated_at?: DateTimeFilter<"EventosCarpeta"> | Date | string
|
11789
|
+
eventos?: EventoListRelationFilter
|
11790
|
+
}
|
11791
|
+
|
11792
|
+
export type EventosCarpetaOrderByWithRelationInput = {
|
11793
|
+
id?: SortOrder
|
11794
|
+
nombre?: SortOrder
|
11795
|
+
color?: SortOrder
|
11796
|
+
created_at?: SortOrder
|
11797
|
+
updated_at?: SortOrder
|
11798
|
+
eventos?: EventoOrderByRelationAggregateInput
|
11799
|
+
}
|
11800
|
+
|
11801
|
+
export type EventosCarpetaWhereUniqueInput = Prisma.AtLeast<{
|
11802
|
+
id?: string
|
11803
|
+
AND?: EventosCarpetaWhereInput | EventosCarpetaWhereInput[]
|
11804
|
+
OR?: EventosCarpetaWhereInput[]
|
11805
|
+
NOT?: EventosCarpetaWhereInput | EventosCarpetaWhereInput[]
|
11806
|
+
nombre?: StringFilter<"EventosCarpeta"> | string
|
11807
|
+
color?: StringFilter<"EventosCarpeta"> | string
|
11808
|
+
created_at?: DateTimeFilter<"EventosCarpeta"> | Date | string
|
11809
|
+
updated_at?: DateTimeFilter<"EventosCarpeta"> | Date | string
|
11810
|
+
eventos?: EventoListRelationFilter
|
11811
|
+
}, "id">
|
11812
|
+
|
11813
|
+
export type EventosCarpetaOrderByWithAggregationInput = {
|
11814
|
+
id?: SortOrder
|
11815
|
+
nombre?: SortOrder
|
11816
|
+
color?: SortOrder
|
11817
|
+
created_at?: SortOrder
|
11818
|
+
updated_at?: SortOrder
|
11819
|
+
_count?: EventosCarpetaCountOrderByAggregateInput
|
11820
|
+
_max?: EventosCarpetaMaxOrderByAggregateInput
|
11821
|
+
_min?: EventosCarpetaMinOrderByAggregateInput
|
11822
|
+
}
|
11823
|
+
|
11824
|
+
export type EventosCarpetaScalarWhereWithAggregatesInput = {
|
11825
|
+
AND?: EventosCarpetaScalarWhereWithAggregatesInput | EventosCarpetaScalarWhereWithAggregatesInput[]
|
11826
|
+
OR?: EventosCarpetaScalarWhereWithAggregatesInput[]
|
11827
|
+
NOT?: EventosCarpetaScalarWhereWithAggregatesInput | EventosCarpetaScalarWhereWithAggregatesInput[]
|
11828
|
+
id?: StringWithAggregatesFilter<"EventosCarpeta"> | string
|
11829
|
+
nombre?: StringWithAggregatesFilter<"EventosCarpeta"> | string
|
11830
|
+
color?: StringWithAggregatesFilter<"EventosCarpeta"> | string
|
11831
|
+
created_at?: DateTimeWithAggregatesFilter<"EventosCarpeta"> | Date | string
|
11832
|
+
updated_at?: DateTimeWithAggregatesFilter<"EventosCarpeta"> | Date | string
|
11833
|
+
}
|
11834
|
+
|
10631
11835
|
export type EventoWhereInput = {
|
10632
11836
|
AND?: EventoWhereInput | EventoWhereInput[]
|
10633
11837
|
OR?: EventoWhereInput[]
|
@@ -10636,11 +11840,13 @@ export namespace Prisma {
|
|
10636
11840
|
nombre?: StringFilter<"Evento"> | string
|
10637
11841
|
fecha?: DateTimeFilter<"Evento"> | Date | string
|
10638
11842
|
ubicacion?: StringFilter<"Evento"> | string
|
11843
|
+
carpetaId?: StringNullableFilter<"Evento"> | string | null
|
10639
11844
|
etiquetaAsistioId?: StringFilter<"Evento"> | string
|
10640
11845
|
etiquetaConfirmoId?: StringFilter<"Evento"> | string
|
10641
11846
|
eventoPadreId?: StringNullableFilter<"Evento"> | string | null
|
10642
11847
|
created_at?: DateTimeFilter<"Evento"> | Date | string
|
10643
11848
|
updated_at?: DateTimeFilter<"Evento"> | Date | string
|
11849
|
+
carpeta?: XOR<EventosCarpetaNullableRelationFilter, EventosCarpetaWhereInput> | null
|
10644
11850
|
etiquetaAsistio?: XOR<EtiquetaRelationFilter, EtiquetaWhereInput>
|
10645
11851
|
etiquetaConfirmo?: XOR<EtiquetaRelationFilter, EtiquetaWhereInput>
|
10646
11852
|
eventoPadre?: XOR<EventoNullableRelationFilter, EventoWhereInput> | null
|
@@ -10652,11 +11858,13 @@ export namespace Prisma {
|
|
10652
11858
|
nombre?: SortOrder
|
10653
11859
|
fecha?: SortOrder
|
10654
11860
|
ubicacion?: SortOrder
|
11861
|
+
carpetaId?: SortOrderInput | SortOrder
|
10655
11862
|
etiquetaAsistioId?: SortOrder
|
10656
11863
|
etiquetaConfirmoId?: SortOrder
|
10657
11864
|
eventoPadreId?: SortOrderInput | SortOrder
|
10658
11865
|
created_at?: SortOrder
|
10659
11866
|
updated_at?: SortOrder
|
11867
|
+
carpeta?: EventosCarpetaOrderByWithRelationInput
|
10660
11868
|
etiquetaAsistio?: EtiquetaOrderByWithRelationInput
|
10661
11869
|
etiquetaConfirmo?: EtiquetaOrderByWithRelationInput
|
10662
11870
|
eventoPadre?: EventoOrderByWithRelationInput
|
@@ -10671,11 +11879,13 @@ export namespace Prisma {
|
|
10671
11879
|
nombre?: StringFilter<"Evento"> | string
|
10672
11880
|
fecha?: DateTimeFilter<"Evento"> | Date | string
|
10673
11881
|
ubicacion?: StringFilter<"Evento"> | string
|
11882
|
+
carpetaId?: StringNullableFilter<"Evento"> | string | null
|
10674
11883
|
etiquetaAsistioId?: StringFilter<"Evento"> | string
|
10675
11884
|
etiquetaConfirmoId?: StringFilter<"Evento"> | string
|
10676
11885
|
eventoPadreId?: StringNullableFilter<"Evento"> | string | null
|
10677
11886
|
created_at?: DateTimeFilter<"Evento"> | Date | string
|
10678
11887
|
updated_at?: DateTimeFilter<"Evento"> | Date | string
|
11888
|
+
carpeta?: XOR<EventosCarpetaNullableRelationFilter, EventosCarpetaWhereInput> | null
|
10679
11889
|
etiquetaAsistio?: XOR<EtiquetaRelationFilter, EtiquetaWhereInput>
|
10680
11890
|
etiquetaConfirmo?: XOR<EtiquetaRelationFilter, EtiquetaWhereInput>
|
10681
11891
|
eventoPadre?: XOR<EventoNullableRelationFilter, EventoWhereInput> | null
|
@@ -10687,6 +11897,7 @@ export namespace Prisma {
|
|
10687
11897
|
nombre?: SortOrder
|
10688
11898
|
fecha?: SortOrder
|
10689
11899
|
ubicacion?: SortOrder
|
11900
|
+
carpetaId?: SortOrderInput | SortOrder
|
10690
11901
|
etiquetaAsistioId?: SortOrder
|
10691
11902
|
etiquetaConfirmoId?: SortOrder
|
10692
11903
|
eventoPadreId?: SortOrderInput | SortOrder
|
@@ -10705,6 +11916,7 @@ export namespace Prisma {
|
|
10705
11916
|
nombre?: StringWithAggregatesFilter<"Evento"> | string
|
10706
11917
|
fecha?: DateTimeWithAggregatesFilter<"Evento"> | Date | string
|
10707
11918
|
ubicacion?: StringWithAggregatesFilter<"Evento"> | string
|
11919
|
+
carpetaId?: StringNullableWithAggregatesFilter<"Evento"> | string | null
|
10708
11920
|
etiquetaAsistioId?: StringWithAggregatesFilter<"Evento"> | string
|
10709
11921
|
etiquetaConfirmoId?: StringWithAggregatesFilter<"Evento"> | string
|
10710
11922
|
eventoPadreId?: StringNullableWithAggregatesFilter<"Evento"> | string | null
|
@@ -10922,6 +12134,7 @@ export namespace Prisma {
|
|
10922
12134
|
id?: string
|
10923
12135
|
idLegible: number
|
10924
12136
|
telefono: string
|
12137
|
+
telefonoSecundario?: string | null
|
10925
12138
|
nombreCompleto: string
|
10926
12139
|
nombrePila?: string | null
|
10927
12140
|
genero?: string | null
|
@@ -10944,6 +12157,7 @@ export namespace Prisma {
|
|
10944
12157
|
id?: string
|
10945
12158
|
idLegible: number
|
10946
12159
|
telefono: string
|
12160
|
+
telefonoSecundario?: string | null
|
10947
12161
|
nombreCompleto: string
|
10948
12162
|
nombrePila?: string | null
|
10949
12163
|
genero?: string | null
|
@@ -10966,6 +12180,7 @@ export namespace Prisma {
|
|
10966
12180
|
id?: StringFieldUpdateOperationsInput | string
|
10967
12181
|
idLegible?: IntFieldUpdateOperationsInput | number
|
10968
12182
|
telefono?: StringFieldUpdateOperationsInput | string
|
12183
|
+
telefonoSecundario?: NullableStringFieldUpdateOperationsInput | string | null
|
10969
12184
|
nombreCompleto?: StringFieldUpdateOperationsInput | string
|
10970
12185
|
nombrePila?: NullableStringFieldUpdateOperationsInput | string | null
|
10971
12186
|
genero?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -10988,6 +12203,7 @@ export namespace Prisma {
|
|
10988
12203
|
id?: StringFieldUpdateOperationsInput | string
|
10989
12204
|
idLegible?: IntFieldUpdateOperationsInput | number
|
10990
12205
|
telefono?: StringFieldUpdateOperationsInput | string
|
12206
|
+
telefonoSecundario?: NullableStringFieldUpdateOperationsInput | string | null
|
10991
12207
|
nombreCompleto?: StringFieldUpdateOperationsInput | string
|
10992
12208
|
nombrePila?: NullableStringFieldUpdateOperationsInput | string | null
|
10993
12209
|
genero?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -11010,6 +12226,7 @@ export namespace Prisma {
|
|
11010
12226
|
id?: string
|
11011
12227
|
idLegible: number
|
11012
12228
|
telefono: string
|
12229
|
+
telefonoSecundario?: string | null
|
11013
12230
|
nombreCompleto: string
|
11014
12231
|
nombrePila?: string | null
|
11015
12232
|
genero?: string | null
|
@@ -11029,6 +12246,7 @@ export namespace Prisma {
|
|
11029
12246
|
id?: StringFieldUpdateOperationsInput | string
|
11030
12247
|
idLegible?: IntFieldUpdateOperationsInput | number
|
11031
12248
|
telefono?: StringFieldUpdateOperationsInput | string
|
12249
|
+
telefonoSecundario?: NullableStringFieldUpdateOperationsInput | string | null
|
11032
12250
|
nombreCompleto?: StringFieldUpdateOperationsInput | string
|
11033
12251
|
nombrePila?: NullableStringFieldUpdateOperationsInput | string | null
|
11034
12252
|
genero?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -11048,6 +12266,7 @@ export namespace Prisma {
|
|
11048
12266
|
id?: StringFieldUpdateOperationsInput | string
|
11049
12267
|
idLegible?: IntFieldUpdateOperationsInput | number
|
11050
12268
|
telefono?: StringFieldUpdateOperationsInput | string
|
12269
|
+
telefonoSecundario?: NullableStringFieldUpdateOperationsInput | string | null
|
11051
12270
|
nombreCompleto?: StringFieldUpdateOperationsInput | string
|
11052
12271
|
nombrePila?: NullableStringFieldUpdateOperationsInput | string | null
|
11053
12272
|
genero?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -11273,6 +12492,66 @@ export namespace Prisma {
|
|
11273
12492
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
11274
12493
|
}
|
11275
12494
|
|
12495
|
+
export type EventosCarpetaCreateInput = {
|
12496
|
+
id?: string
|
12497
|
+
nombre: string
|
12498
|
+
color: string
|
12499
|
+
created_at?: Date | string
|
12500
|
+
updated_at?: Date | string
|
12501
|
+
eventos?: EventoCreateNestedManyWithoutCarpetaInput
|
12502
|
+
}
|
12503
|
+
|
12504
|
+
export type EventosCarpetaUncheckedCreateInput = {
|
12505
|
+
id?: string
|
12506
|
+
nombre: string
|
12507
|
+
color: string
|
12508
|
+
created_at?: Date | string
|
12509
|
+
updated_at?: Date | string
|
12510
|
+
eventos?: EventoUncheckedCreateNestedManyWithoutCarpetaInput
|
12511
|
+
}
|
12512
|
+
|
12513
|
+
export type EventosCarpetaUpdateInput = {
|
12514
|
+
id?: StringFieldUpdateOperationsInput | string
|
12515
|
+
nombre?: StringFieldUpdateOperationsInput | string
|
12516
|
+
color?: StringFieldUpdateOperationsInput | string
|
12517
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
12518
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
12519
|
+
eventos?: EventoUpdateManyWithoutCarpetaNestedInput
|
12520
|
+
}
|
12521
|
+
|
12522
|
+
export type EventosCarpetaUncheckedUpdateInput = {
|
12523
|
+
id?: StringFieldUpdateOperationsInput | string
|
12524
|
+
nombre?: StringFieldUpdateOperationsInput | string
|
12525
|
+
color?: StringFieldUpdateOperationsInput | string
|
12526
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
12527
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
12528
|
+
eventos?: EventoUncheckedUpdateManyWithoutCarpetaNestedInput
|
12529
|
+
}
|
12530
|
+
|
12531
|
+
export type EventosCarpetaCreateManyInput = {
|
12532
|
+
id?: string
|
12533
|
+
nombre: string
|
12534
|
+
color: string
|
12535
|
+
created_at?: Date | string
|
12536
|
+
updated_at?: Date | string
|
12537
|
+
}
|
12538
|
+
|
12539
|
+
export type EventosCarpetaUpdateManyMutationInput = {
|
12540
|
+
id?: StringFieldUpdateOperationsInput | string
|
12541
|
+
nombre?: StringFieldUpdateOperationsInput | string
|
12542
|
+
color?: StringFieldUpdateOperationsInput | string
|
12543
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
12544
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
12545
|
+
}
|
12546
|
+
|
12547
|
+
export type EventosCarpetaUncheckedUpdateManyInput = {
|
12548
|
+
id?: StringFieldUpdateOperationsInput | string
|
12549
|
+
nombre?: StringFieldUpdateOperationsInput | string
|
12550
|
+
color?: StringFieldUpdateOperationsInput | string
|
12551
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
12552
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
12553
|
+
}
|
12554
|
+
|
11276
12555
|
export type EventoCreateInput = {
|
11277
12556
|
id?: string
|
11278
12557
|
nombre: string
|
@@ -11280,6 +12559,7 @@ export namespace Prisma {
|
|
11280
12559
|
ubicacion: string
|
11281
12560
|
created_at?: Date | string
|
11282
12561
|
updated_at?: Date | string
|
12562
|
+
carpeta?: EventosCarpetaCreateNestedOneWithoutEventosInput
|
11283
12563
|
etiquetaAsistio: EtiquetaCreateNestedOneWithoutEventosAsistidosInput
|
11284
12564
|
etiquetaConfirmo: EtiquetaCreateNestedOneWithoutEventosConfirmadosInput
|
11285
12565
|
eventoPadre?: EventoCreateNestedOneWithoutSubEventosInput
|
@@ -11291,6 +12571,7 @@ export namespace Prisma {
|
|
11291
12571
|
nombre: string
|
11292
12572
|
fecha: Date | string
|
11293
12573
|
ubicacion: string
|
12574
|
+
carpetaId?: string | null
|
11294
12575
|
etiquetaAsistioId: string
|
11295
12576
|
etiquetaConfirmoId: string
|
11296
12577
|
eventoPadreId?: string | null
|
@@ -11306,6 +12587,7 @@ export namespace Prisma {
|
|
11306
12587
|
ubicacion?: StringFieldUpdateOperationsInput | string
|
11307
12588
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
11308
12589
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
12590
|
+
carpeta?: EventosCarpetaUpdateOneWithoutEventosNestedInput
|
11309
12591
|
etiquetaAsistio?: EtiquetaUpdateOneRequiredWithoutEventosAsistidosNestedInput
|
11310
12592
|
etiquetaConfirmo?: EtiquetaUpdateOneRequiredWithoutEventosConfirmadosNestedInput
|
11311
12593
|
eventoPadre?: EventoUpdateOneWithoutSubEventosNestedInput
|
@@ -11317,6 +12599,7 @@ export namespace Prisma {
|
|
11317
12599
|
nombre?: StringFieldUpdateOperationsInput | string
|
11318
12600
|
fecha?: DateTimeFieldUpdateOperationsInput | Date | string
|
11319
12601
|
ubicacion?: StringFieldUpdateOperationsInput | string
|
12602
|
+
carpetaId?: NullableStringFieldUpdateOperationsInput | string | null
|
11320
12603
|
etiquetaAsistioId?: StringFieldUpdateOperationsInput | string
|
11321
12604
|
etiquetaConfirmoId?: StringFieldUpdateOperationsInput | string
|
11322
12605
|
eventoPadreId?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -11330,6 +12613,7 @@ export namespace Prisma {
|
|
11330
12613
|
nombre: string
|
11331
12614
|
fecha: Date | string
|
11332
12615
|
ubicacion: string
|
12616
|
+
carpetaId?: string | null
|
11333
12617
|
etiquetaAsistioId: string
|
11334
12618
|
etiquetaConfirmoId: string
|
11335
12619
|
eventoPadreId?: string | null
|
@@ -11351,6 +12635,7 @@ export namespace Prisma {
|
|
11351
12635
|
nombre?: StringFieldUpdateOperationsInput | string
|
11352
12636
|
fecha?: DateTimeFieldUpdateOperationsInput | Date | string
|
11353
12637
|
ubicacion?: StringFieldUpdateOperationsInput | string
|
12638
|
+
carpetaId?: NullableStringFieldUpdateOperationsInput | string | null
|
11354
12639
|
etiquetaAsistioId?: StringFieldUpdateOperationsInput | string
|
11355
12640
|
etiquetaConfirmoId?: StringFieldUpdateOperationsInput | string
|
11356
12641
|
eventoPadreId?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -11669,6 +12954,7 @@ export namespace Prisma {
|
|
11669
12954
|
id?: SortOrder
|
11670
12955
|
idLegible?: SortOrder
|
11671
12956
|
telefono?: SortOrder
|
12957
|
+
telefonoSecundario?: SortOrder
|
11672
12958
|
nombreCompleto?: SortOrder
|
11673
12959
|
nombrePila?: SortOrder
|
11674
12960
|
genero?: SortOrder
|
@@ -11692,6 +12978,7 @@ export namespace Prisma {
|
|
11692
12978
|
id?: SortOrder
|
11693
12979
|
idLegible?: SortOrder
|
11694
12980
|
telefono?: SortOrder
|
12981
|
+
telefonoSecundario?: SortOrder
|
11695
12982
|
nombreCompleto?: SortOrder
|
11696
12983
|
nombrePila?: SortOrder
|
11697
12984
|
genero?: SortOrder
|
@@ -11710,6 +12997,7 @@ export namespace Prisma {
|
|
11710
12997
|
id?: SortOrder
|
11711
12998
|
idLegible?: SortOrder
|
11712
12999
|
telefono?: SortOrder
|
13000
|
+
telefonoSecundario?: SortOrder
|
11713
13001
|
nombreCompleto?: SortOrder
|
11714
13002
|
nombrePila?: SortOrder
|
11715
13003
|
genero?: SortOrder
|
@@ -11919,6 +13207,35 @@ export namespace Prisma {
|
|
11919
13207
|
updated_at?: SortOrder
|
11920
13208
|
}
|
11921
13209
|
|
13210
|
+
export type EventosCarpetaCountOrderByAggregateInput = {
|
13211
|
+
id?: SortOrder
|
13212
|
+
nombre?: SortOrder
|
13213
|
+
color?: SortOrder
|
13214
|
+
created_at?: SortOrder
|
13215
|
+
updated_at?: SortOrder
|
13216
|
+
}
|
13217
|
+
|
13218
|
+
export type EventosCarpetaMaxOrderByAggregateInput = {
|
13219
|
+
id?: SortOrder
|
13220
|
+
nombre?: SortOrder
|
13221
|
+
color?: SortOrder
|
13222
|
+
created_at?: SortOrder
|
13223
|
+
updated_at?: SortOrder
|
13224
|
+
}
|
13225
|
+
|
13226
|
+
export type EventosCarpetaMinOrderByAggregateInput = {
|
13227
|
+
id?: SortOrder
|
13228
|
+
nombre?: SortOrder
|
13229
|
+
color?: SortOrder
|
13230
|
+
created_at?: SortOrder
|
13231
|
+
updated_at?: SortOrder
|
13232
|
+
}
|
13233
|
+
|
13234
|
+
export type EventosCarpetaNullableRelationFilter = {
|
13235
|
+
is?: EventosCarpetaWhereInput | null
|
13236
|
+
isNot?: EventosCarpetaWhereInput | null
|
13237
|
+
}
|
13238
|
+
|
11922
13239
|
export type EtiquetaRelationFilter = {
|
11923
13240
|
is?: EtiquetaWhereInput
|
11924
13241
|
isNot?: EtiquetaWhereInput
|
@@ -11934,6 +13251,7 @@ export namespace Prisma {
|
|
11934
13251
|
nombre?: SortOrder
|
11935
13252
|
fecha?: SortOrder
|
11936
13253
|
ubicacion?: SortOrder
|
13254
|
+
carpetaId?: SortOrder
|
11937
13255
|
etiquetaAsistioId?: SortOrder
|
11938
13256
|
etiquetaConfirmoId?: SortOrder
|
11939
13257
|
eventoPadreId?: SortOrder
|
@@ -11946,6 +13264,7 @@ export namespace Prisma {
|
|
11946
13264
|
nombre?: SortOrder
|
11947
13265
|
fecha?: SortOrder
|
11948
13266
|
ubicacion?: SortOrder
|
13267
|
+
carpetaId?: SortOrder
|
11949
13268
|
etiquetaAsistioId?: SortOrder
|
11950
13269
|
etiquetaConfirmoId?: SortOrder
|
11951
13270
|
eventoPadreId?: SortOrder
|
@@ -11958,6 +13277,7 @@ export namespace Prisma {
|
|
11958
13277
|
nombre?: SortOrder
|
11959
13278
|
fecha?: SortOrder
|
11960
13279
|
ubicacion?: SortOrder
|
13280
|
+
carpetaId?: SortOrder
|
11961
13281
|
etiquetaAsistioId?: SortOrder
|
11962
13282
|
etiquetaConfirmoId?: SortOrder
|
11963
13283
|
eventoPadreId?: SortOrder
|
@@ -12687,6 +14007,54 @@ export namespace Prisma {
|
|
12687
14007
|
deleteMany?: EtiquetaScalarWhereInput | EtiquetaScalarWhereInput[]
|
12688
14008
|
}
|
12689
14009
|
|
14010
|
+
export type EventoCreateNestedManyWithoutCarpetaInput = {
|
14011
|
+
create?: XOR<EventoCreateWithoutCarpetaInput, EventoUncheckedCreateWithoutCarpetaInput> | EventoCreateWithoutCarpetaInput[] | EventoUncheckedCreateWithoutCarpetaInput[]
|
14012
|
+
connectOrCreate?: EventoCreateOrConnectWithoutCarpetaInput | EventoCreateOrConnectWithoutCarpetaInput[]
|
14013
|
+
createMany?: EventoCreateManyCarpetaInputEnvelope
|
14014
|
+
connect?: EventoWhereUniqueInput | EventoWhereUniqueInput[]
|
14015
|
+
}
|
14016
|
+
|
14017
|
+
export type EventoUncheckedCreateNestedManyWithoutCarpetaInput = {
|
14018
|
+
create?: XOR<EventoCreateWithoutCarpetaInput, EventoUncheckedCreateWithoutCarpetaInput> | EventoCreateWithoutCarpetaInput[] | EventoUncheckedCreateWithoutCarpetaInput[]
|
14019
|
+
connectOrCreate?: EventoCreateOrConnectWithoutCarpetaInput | EventoCreateOrConnectWithoutCarpetaInput[]
|
14020
|
+
createMany?: EventoCreateManyCarpetaInputEnvelope
|
14021
|
+
connect?: EventoWhereUniqueInput | EventoWhereUniqueInput[]
|
14022
|
+
}
|
14023
|
+
|
14024
|
+
export type EventoUpdateManyWithoutCarpetaNestedInput = {
|
14025
|
+
create?: XOR<EventoCreateWithoutCarpetaInput, EventoUncheckedCreateWithoutCarpetaInput> | EventoCreateWithoutCarpetaInput[] | EventoUncheckedCreateWithoutCarpetaInput[]
|
14026
|
+
connectOrCreate?: EventoCreateOrConnectWithoutCarpetaInput | EventoCreateOrConnectWithoutCarpetaInput[]
|
14027
|
+
upsert?: EventoUpsertWithWhereUniqueWithoutCarpetaInput | EventoUpsertWithWhereUniqueWithoutCarpetaInput[]
|
14028
|
+
createMany?: EventoCreateManyCarpetaInputEnvelope
|
14029
|
+
set?: EventoWhereUniqueInput | EventoWhereUniqueInput[]
|
14030
|
+
disconnect?: EventoWhereUniqueInput | EventoWhereUniqueInput[]
|
14031
|
+
delete?: EventoWhereUniqueInput | EventoWhereUniqueInput[]
|
14032
|
+
connect?: EventoWhereUniqueInput | EventoWhereUniqueInput[]
|
14033
|
+
update?: EventoUpdateWithWhereUniqueWithoutCarpetaInput | EventoUpdateWithWhereUniqueWithoutCarpetaInput[]
|
14034
|
+
updateMany?: EventoUpdateManyWithWhereWithoutCarpetaInput | EventoUpdateManyWithWhereWithoutCarpetaInput[]
|
14035
|
+
deleteMany?: EventoScalarWhereInput | EventoScalarWhereInput[]
|
14036
|
+
}
|
14037
|
+
|
14038
|
+
export type EventoUncheckedUpdateManyWithoutCarpetaNestedInput = {
|
14039
|
+
create?: XOR<EventoCreateWithoutCarpetaInput, EventoUncheckedCreateWithoutCarpetaInput> | EventoCreateWithoutCarpetaInput[] | EventoUncheckedCreateWithoutCarpetaInput[]
|
14040
|
+
connectOrCreate?: EventoCreateOrConnectWithoutCarpetaInput | EventoCreateOrConnectWithoutCarpetaInput[]
|
14041
|
+
upsert?: EventoUpsertWithWhereUniqueWithoutCarpetaInput | EventoUpsertWithWhereUniqueWithoutCarpetaInput[]
|
14042
|
+
createMany?: EventoCreateManyCarpetaInputEnvelope
|
14043
|
+
set?: EventoWhereUniqueInput | EventoWhereUniqueInput[]
|
14044
|
+
disconnect?: EventoWhereUniqueInput | EventoWhereUniqueInput[]
|
14045
|
+
delete?: EventoWhereUniqueInput | EventoWhereUniqueInput[]
|
14046
|
+
connect?: EventoWhereUniqueInput | EventoWhereUniqueInput[]
|
14047
|
+
update?: EventoUpdateWithWhereUniqueWithoutCarpetaInput | EventoUpdateWithWhereUniqueWithoutCarpetaInput[]
|
14048
|
+
updateMany?: EventoUpdateManyWithWhereWithoutCarpetaInput | EventoUpdateManyWithWhereWithoutCarpetaInput[]
|
14049
|
+
deleteMany?: EventoScalarWhereInput | EventoScalarWhereInput[]
|
14050
|
+
}
|
14051
|
+
|
14052
|
+
export type EventosCarpetaCreateNestedOneWithoutEventosInput = {
|
14053
|
+
create?: XOR<EventosCarpetaCreateWithoutEventosInput, EventosCarpetaUncheckedCreateWithoutEventosInput>
|
14054
|
+
connectOrCreate?: EventosCarpetaCreateOrConnectWithoutEventosInput
|
14055
|
+
connect?: EventosCarpetaWhereUniqueInput
|
14056
|
+
}
|
14057
|
+
|
12690
14058
|
export type EtiquetaCreateNestedOneWithoutEventosAsistidosInput = {
|
12691
14059
|
create?: XOR<EtiquetaCreateWithoutEventosAsistidosInput, EtiquetaUncheckedCreateWithoutEventosAsistidosInput>
|
12692
14060
|
connectOrCreate?: EtiquetaCreateOrConnectWithoutEventosAsistidosInput
|
@@ -12719,6 +14087,16 @@ export namespace Prisma {
|
|
12719
14087
|
connect?: EventoWhereUniqueInput | EventoWhereUniqueInput[]
|
12720
14088
|
}
|
12721
14089
|
|
14090
|
+
export type EventosCarpetaUpdateOneWithoutEventosNestedInput = {
|
14091
|
+
create?: XOR<EventosCarpetaCreateWithoutEventosInput, EventosCarpetaUncheckedCreateWithoutEventosInput>
|
14092
|
+
connectOrCreate?: EventosCarpetaCreateOrConnectWithoutEventosInput
|
14093
|
+
upsert?: EventosCarpetaUpsertWithoutEventosInput
|
14094
|
+
disconnect?: EventosCarpetaWhereInput | boolean
|
14095
|
+
delete?: EventosCarpetaWhereInput | boolean
|
14096
|
+
connect?: EventosCarpetaWhereUniqueInput
|
14097
|
+
update?: XOR<XOR<EventosCarpetaUpdateToOneWithWhereWithoutEventosInput, EventosCarpetaUpdateWithoutEventosInput>, EventosCarpetaUncheckedUpdateWithoutEventosInput>
|
14098
|
+
}
|
14099
|
+
|
12722
14100
|
export type EtiquetaUpdateOneRequiredWithoutEventosAsistidosNestedInput = {
|
12723
14101
|
create?: XOR<EtiquetaCreateWithoutEventosAsistidosInput, EtiquetaUncheckedCreateWithoutEventosAsistidosInput>
|
12724
14102
|
connectOrCreate?: EtiquetaCreateOrConnectWithoutEventosAsistidosInput
|
@@ -13410,6 +14788,7 @@ export namespace Prisma {
|
|
13410
14788
|
id?: string
|
13411
14789
|
idLegible: number
|
13412
14790
|
telefono: string
|
14791
|
+
telefonoSecundario?: string | null
|
13413
14792
|
nombreCompleto: string
|
13414
14793
|
nombrePila?: string | null
|
13415
14794
|
genero?: string | null
|
@@ -13431,6 +14810,7 @@ export namespace Prisma {
|
|
13431
14810
|
id?: string
|
13432
14811
|
idLegible: number
|
13433
14812
|
telefono: string
|
14813
|
+
telefonoSecundario?: string | null
|
13434
14814
|
nombreCompleto: string
|
13435
14815
|
nombrePila?: string | null
|
13436
14816
|
genero?: string | null
|
@@ -13505,6 +14885,7 @@ export namespace Prisma {
|
|
13505
14885
|
id?: StringFieldUpdateOperationsInput | string
|
13506
14886
|
idLegible?: IntFieldUpdateOperationsInput | number
|
13507
14887
|
telefono?: StringFieldUpdateOperationsInput | string
|
14888
|
+
telefonoSecundario?: NullableStringFieldUpdateOperationsInput | string | null
|
13508
14889
|
nombreCompleto?: StringFieldUpdateOperationsInput | string
|
13509
14890
|
nombrePila?: NullableStringFieldUpdateOperationsInput | string | null
|
13510
14891
|
genero?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -13526,6 +14907,7 @@ export namespace Prisma {
|
|
13526
14907
|
id?: StringFieldUpdateOperationsInput | string
|
13527
14908
|
idLegible?: IntFieldUpdateOperationsInput | number
|
13528
14909
|
telefono?: StringFieldUpdateOperationsInput | string
|
14910
|
+
telefonoSecundario?: NullableStringFieldUpdateOperationsInput | string | null
|
13529
14911
|
nombreCompleto?: StringFieldUpdateOperationsInput | string
|
13530
14912
|
nombrePila?: NullableStringFieldUpdateOperationsInput | string | null
|
13531
14913
|
genero?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -13573,6 +14955,7 @@ export namespace Prisma {
|
|
13573
14955
|
ubicacion: string
|
13574
14956
|
created_at?: Date | string
|
13575
14957
|
updated_at?: Date | string
|
14958
|
+
carpeta?: EventosCarpetaCreateNestedOneWithoutEventosInput
|
13576
14959
|
etiquetaConfirmo: EtiquetaCreateNestedOneWithoutEventosConfirmadosInput
|
13577
14960
|
eventoPadre?: EventoCreateNestedOneWithoutSubEventosInput
|
13578
14961
|
subEventos?: EventoCreateNestedManyWithoutEventoPadreInput
|
@@ -13583,6 +14966,7 @@ export namespace Prisma {
|
|
13583
14966
|
nombre: string
|
13584
14967
|
fecha: Date | string
|
13585
14968
|
ubicacion: string
|
14969
|
+
carpetaId?: string | null
|
13586
14970
|
etiquetaConfirmoId: string
|
13587
14971
|
eventoPadreId?: string | null
|
13588
14972
|
created_at?: Date | string
|
@@ -13607,6 +14991,7 @@ export namespace Prisma {
|
|
13607
14991
|
ubicacion: string
|
13608
14992
|
created_at?: Date | string
|
13609
14993
|
updated_at?: Date | string
|
14994
|
+
carpeta?: EventosCarpetaCreateNestedOneWithoutEventosInput
|
13610
14995
|
etiquetaAsistio: EtiquetaCreateNestedOneWithoutEventosAsistidosInput
|
13611
14996
|
eventoPadre?: EventoCreateNestedOneWithoutSubEventosInput
|
13612
14997
|
subEventos?: EventoCreateNestedManyWithoutEventoPadreInput
|
@@ -13617,6 +15002,7 @@ export namespace Prisma {
|
|
13617
15002
|
nombre: string
|
13618
15003
|
fecha: Date | string
|
13619
15004
|
ubicacion: string
|
15005
|
+
carpetaId?: string | null
|
13620
15006
|
etiquetaAsistioId: string
|
13621
15007
|
eventoPadreId?: string | null
|
13622
15008
|
created_at?: Date | string
|
@@ -13669,6 +15055,7 @@ export namespace Prisma {
|
|
13669
15055
|
id?: string
|
13670
15056
|
idLegible: number
|
13671
15057
|
telefono: string
|
15058
|
+
telefonoSecundario?: string | null
|
13672
15059
|
nombreCompleto: string
|
13673
15060
|
nombrePila?: string | null
|
13674
15061
|
genero?: string | null
|
@@ -13690,6 +15077,7 @@ export namespace Prisma {
|
|
13690
15077
|
id?: string
|
13691
15078
|
idLegible: number
|
13692
15079
|
telefono: string
|
15080
|
+
telefonoSecundario?: string | null
|
13693
15081
|
nombreCompleto: string
|
13694
15082
|
nombrePila?: string | null
|
13695
15083
|
genero?: string | null
|
@@ -13796,6 +15184,7 @@ export namespace Prisma {
|
|
13796
15184
|
nombre?: StringFilter<"Evento"> | string
|
13797
15185
|
fecha?: DateTimeFilter<"Evento"> | Date | string
|
13798
15186
|
ubicacion?: StringFilter<"Evento"> | string
|
15187
|
+
carpetaId?: StringNullableFilter<"Evento"> | string | null
|
13799
15188
|
etiquetaAsistioId?: StringFilter<"Evento"> | string
|
13800
15189
|
etiquetaConfirmoId?: StringFilter<"Evento"> | string
|
13801
15190
|
eventoPadreId?: StringNullableFilter<"Evento"> | string | null
|
@@ -13872,6 +15261,7 @@ export namespace Prisma {
|
|
13872
15261
|
id?: StringFilter<"Perfil"> | string
|
13873
15262
|
idLegible?: IntFilter<"Perfil"> | number
|
13874
15263
|
telefono?: StringFilter<"Perfil"> | string
|
15264
|
+
telefonoSecundario?: StringNullableFilter<"Perfil"> | string | null
|
13875
15265
|
nombreCompleto?: StringFilter<"Perfil"> | string
|
13876
15266
|
nombrePila?: StringNullableFilter<"Perfil"> | string | null
|
13877
15267
|
genero?: StringNullableFilter<"Perfil"> | string | null
|
@@ -13955,6 +15345,79 @@ export namespace Prisma {
|
|
13955
15345
|
data: XOR<EtiquetaUpdateManyMutationInput, EtiquetaUncheckedUpdateManyWithoutGrupoInput>
|
13956
15346
|
}
|
13957
15347
|
|
15348
|
+
export type EventoCreateWithoutCarpetaInput = {
|
15349
|
+
id?: string
|
15350
|
+
nombre: string
|
15351
|
+
fecha: Date | string
|
15352
|
+
ubicacion: string
|
15353
|
+
created_at?: Date | string
|
15354
|
+
updated_at?: Date | string
|
15355
|
+
etiquetaAsistio: EtiquetaCreateNestedOneWithoutEventosAsistidosInput
|
15356
|
+
etiquetaConfirmo: EtiquetaCreateNestedOneWithoutEventosConfirmadosInput
|
15357
|
+
eventoPadre?: EventoCreateNestedOneWithoutSubEventosInput
|
15358
|
+
subEventos?: EventoCreateNestedManyWithoutEventoPadreInput
|
15359
|
+
}
|
15360
|
+
|
15361
|
+
export type EventoUncheckedCreateWithoutCarpetaInput = {
|
15362
|
+
id?: string
|
15363
|
+
nombre: string
|
15364
|
+
fecha: Date | string
|
15365
|
+
ubicacion: string
|
15366
|
+
etiquetaAsistioId: string
|
15367
|
+
etiquetaConfirmoId: string
|
15368
|
+
eventoPadreId?: string | null
|
15369
|
+
created_at?: Date | string
|
15370
|
+
updated_at?: Date | string
|
15371
|
+
subEventos?: EventoUncheckedCreateNestedManyWithoutEventoPadreInput
|
15372
|
+
}
|
15373
|
+
|
15374
|
+
export type EventoCreateOrConnectWithoutCarpetaInput = {
|
15375
|
+
where: EventoWhereUniqueInput
|
15376
|
+
create: XOR<EventoCreateWithoutCarpetaInput, EventoUncheckedCreateWithoutCarpetaInput>
|
15377
|
+
}
|
15378
|
+
|
15379
|
+
export type EventoCreateManyCarpetaInputEnvelope = {
|
15380
|
+
data: EventoCreateManyCarpetaInput | EventoCreateManyCarpetaInput[]
|
15381
|
+
skipDuplicates?: boolean
|
15382
|
+
}
|
15383
|
+
|
15384
|
+
export type EventoUpsertWithWhereUniqueWithoutCarpetaInput = {
|
15385
|
+
where: EventoWhereUniqueInput
|
15386
|
+
update: XOR<EventoUpdateWithoutCarpetaInput, EventoUncheckedUpdateWithoutCarpetaInput>
|
15387
|
+
create: XOR<EventoCreateWithoutCarpetaInput, EventoUncheckedCreateWithoutCarpetaInput>
|
15388
|
+
}
|
15389
|
+
|
15390
|
+
export type EventoUpdateWithWhereUniqueWithoutCarpetaInput = {
|
15391
|
+
where: EventoWhereUniqueInput
|
15392
|
+
data: XOR<EventoUpdateWithoutCarpetaInput, EventoUncheckedUpdateWithoutCarpetaInput>
|
15393
|
+
}
|
15394
|
+
|
15395
|
+
export type EventoUpdateManyWithWhereWithoutCarpetaInput = {
|
15396
|
+
where: EventoScalarWhereInput
|
15397
|
+
data: XOR<EventoUpdateManyMutationInput, EventoUncheckedUpdateManyWithoutCarpetaInput>
|
15398
|
+
}
|
15399
|
+
|
15400
|
+
export type EventosCarpetaCreateWithoutEventosInput = {
|
15401
|
+
id?: string
|
15402
|
+
nombre: string
|
15403
|
+
color: string
|
15404
|
+
created_at?: Date | string
|
15405
|
+
updated_at?: Date | string
|
15406
|
+
}
|
15407
|
+
|
15408
|
+
export type EventosCarpetaUncheckedCreateWithoutEventosInput = {
|
15409
|
+
id?: string
|
15410
|
+
nombre: string
|
15411
|
+
color: string
|
15412
|
+
created_at?: Date | string
|
15413
|
+
updated_at?: Date | string
|
15414
|
+
}
|
15415
|
+
|
15416
|
+
export type EventosCarpetaCreateOrConnectWithoutEventosInput = {
|
15417
|
+
where: EventosCarpetaWhereUniqueInput
|
15418
|
+
create: XOR<EventosCarpetaCreateWithoutEventosInput, EventosCarpetaUncheckedCreateWithoutEventosInput>
|
15419
|
+
}
|
15420
|
+
|
13958
15421
|
export type EtiquetaCreateWithoutEventosAsistidosInput = {
|
13959
15422
|
id?: string
|
13960
15423
|
nombre: string
|
@@ -14024,6 +15487,7 @@ export namespace Prisma {
|
|
14024
15487
|
ubicacion: string
|
14025
15488
|
created_at?: Date | string
|
14026
15489
|
updated_at?: Date | string
|
15490
|
+
carpeta?: EventosCarpetaCreateNestedOneWithoutEventosInput
|
14027
15491
|
etiquetaAsistio: EtiquetaCreateNestedOneWithoutEventosAsistidosInput
|
14028
15492
|
etiquetaConfirmo: EtiquetaCreateNestedOneWithoutEventosConfirmadosInput
|
14029
15493
|
eventoPadre?: EventoCreateNestedOneWithoutSubEventosInput
|
@@ -14034,6 +15498,7 @@ export namespace Prisma {
|
|
14034
15498
|
nombre: string
|
14035
15499
|
fecha: Date | string
|
14036
15500
|
ubicacion: string
|
15501
|
+
carpetaId?: string | null
|
14037
15502
|
etiquetaAsistioId: string
|
14038
15503
|
etiquetaConfirmoId: string
|
14039
15504
|
eventoPadreId?: string | null
|
@@ -14053,6 +15518,7 @@ export namespace Prisma {
|
|
14053
15518
|
ubicacion: string
|
14054
15519
|
created_at?: Date | string
|
14055
15520
|
updated_at?: Date | string
|
15521
|
+
carpeta?: EventosCarpetaCreateNestedOneWithoutEventosInput
|
14056
15522
|
etiquetaAsistio: EtiquetaCreateNestedOneWithoutEventosAsistidosInput
|
14057
15523
|
etiquetaConfirmo: EtiquetaCreateNestedOneWithoutEventosConfirmadosInput
|
14058
15524
|
subEventos?: EventoCreateNestedManyWithoutEventoPadreInput
|
@@ -14063,6 +15529,7 @@ export namespace Prisma {
|
|
14063
15529
|
nombre: string
|
14064
15530
|
fecha: Date | string
|
14065
15531
|
ubicacion: string
|
15532
|
+
carpetaId?: string | null
|
14066
15533
|
etiquetaAsistioId: string
|
14067
15534
|
etiquetaConfirmoId: string
|
14068
15535
|
created_at?: Date | string
|
@@ -14080,6 +15547,33 @@ export namespace Prisma {
|
|
14080
15547
|
skipDuplicates?: boolean
|
14081
15548
|
}
|
14082
15549
|
|
15550
|
+
export type EventosCarpetaUpsertWithoutEventosInput = {
|
15551
|
+
update: XOR<EventosCarpetaUpdateWithoutEventosInput, EventosCarpetaUncheckedUpdateWithoutEventosInput>
|
15552
|
+
create: XOR<EventosCarpetaCreateWithoutEventosInput, EventosCarpetaUncheckedCreateWithoutEventosInput>
|
15553
|
+
where?: EventosCarpetaWhereInput
|
15554
|
+
}
|
15555
|
+
|
15556
|
+
export type EventosCarpetaUpdateToOneWithWhereWithoutEventosInput = {
|
15557
|
+
where?: EventosCarpetaWhereInput
|
15558
|
+
data: XOR<EventosCarpetaUpdateWithoutEventosInput, EventosCarpetaUncheckedUpdateWithoutEventosInput>
|
15559
|
+
}
|
15560
|
+
|
15561
|
+
export type EventosCarpetaUpdateWithoutEventosInput = {
|
15562
|
+
id?: StringFieldUpdateOperationsInput | string
|
15563
|
+
nombre?: StringFieldUpdateOperationsInput | string
|
15564
|
+
color?: StringFieldUpdateOperationsInput | string
|
15565
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
15566
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
15567
|
+
}
|
15568
|
+
|
15569
|
+
export type EventosCarpetaUncheckedUpdateWithoutEventosInput = {
|
15570
|
+
id?: StringFieldUpdateOperationsInput | string
|
15571
|
+
nombre?: StringFieldUpdateOperationsInput | string
|
15572
|
+
color?: StringFieldUpdateOperationsInput | string
|
15573
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
15574
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
15575
|
+
}
|
15576
|
+
|
14083
15577
|
export type EtiquetaUpsertWithoutEventosAsistidosInput = {
|
14084
15578
|
update: XOR<EtiquetaUpdateWithoutEventosAsistidosInput, EtiquetaUncheckedUpdateWithoutEventosAsistidosInput>
|
14085
15579
|
create: XOR<EtiquetaCreateWithoutEventosAsistidosInput, EtiquetaUncheckedCreateWithoutEventosAsistidosInput>
|
@@ -14172,6 +15666,7 @@ export namespace Prisma {
|
|
14172
15666
|
ubicacion?: StringFieldUpdateOperationsInput | string
|
14173
15667
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
14174
15668
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
15669
|
+
carpeta?: EventosCarpetaUpdateOneWithoutEventosNestedInput
|
14175
15670
|
etiquetaAsistio?: EtiquetaUpdateOneRequiredWithoutEventosAsistidosNestedInput
|
14176
15671
|
etiquetaConfirmo?: EtiquetaUpdateOneRequiredWithoutEventosConfirmadosNestedInput
|
14177
15672
|
eventoPadre?: EventoUpdateOneWithoutSubEventosNestedInput
|
@@ -14182,6 +15677,7 @@ export namespace Prisma {
|
|
14182
15677
|
nombre?: StringFieldUpdateOperationsInput | string
|
14183
15678
|
fecha?: DateTimeFieldUpdateOperationsInput | Date | string
|
14184
15679
|
ubicacion?: StringFieldUpdateOperationsInput | string
|
15680
|
+
carpetaId?: NullableStringFieldUpdateOperationsInput | string | null
|
14185
15681
|
etiquetaAsistioId?: StringFieldUpdateOperationsInput | string
|
14186
15682
|
etiquetaConfirmoId?: StringFieldUpdateOperationsInput | string
|
14187
15683
|
eventoPadreId?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -14209,6 +15705,7 @@ export namespace Prisma {
|
|
14209
15705
|
id?: string
|
14210
15706
|
idLegible: number
|
14211
15707
|
telefono: string
|
15708
|
+
telefonoSecundario?: string | null
|
14212
15709
|
nombreCompleto: string
|
14213
15710
|
nombrePila?: string | null
|
14214
15711
|
genero?: string | null
|
@@ -14230,6 +15727,7 @@ export namespace Prisma {
|
|
14230
15727
|
id?: string
|
14231
15728
|
idLegible: number
|
14232
15729
|
telefono: string
|
15730
|
+
telefonoSecundario?: string | null
|
14233
15731
|
nombreCompleto: string
|
14234
15732
|
nombrePila?: string | null
|
14235
15733
|
genero?: string | null
|
@@ -14267,6 +15765,7 @@ export namespace Prisma {
|
|
14267
15765
|
id?: StringFieldUpdateOperationsInput | string
|
14268
15766
|
idLegible?: IntFieldUpdateOperationsInput | number
|
14269
15767
|
telefono?: StringFieldUpdateOperationsInput | string
|
15768
|
+
telefonoSecundario?: NullableStringFieldUpdateOperationsInput | string | null
|
14270
15769
|
nombreCompleto?: StringFieldUpdateOperationsInput | string
|
14271
15770
|
nombrePila?: NullableStringFieldUpdateOperationsInput | string | null
|
14272
15771
|
genero?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -14288,6 +15787,7 @@ export namespace Prisma {
|
|
14288
15787
|
id?: StringFieldUpdateOperationsInput | string
|
14289
15788
|
idLegible?: IntFieldUpdateOperationsInput | number
|
14290
15789
|
telefono?: StringFieldUpdateOperationsInput | string
|
15790
|
+
telefonoSecundario?: NullableStringFieldUpdateOperationsInput | string | null
|
14291
15791
|
nombreCompleto?: StringFieldUpdateOperationsInput | string
|
14292
15792
|
nombrePila?: NullableStringFieldUpdateOperationsInput | string | null
|
14293
15793
|
genero?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -14523,6 +16023,7 @@ export namespace Prisma {
|
|
14523
16023
|
nombre: string
|
14524
16024
|
fecha: Date | string
|
14525
16025
|
ubicacion: string
|
16026
|
+
carpetaId?: string | null
|
14526
16027
|
etiquetaConfirmoId: string
|
14527
16028
|
eventoPadreId?: string | null
|
14528
16029
|
created_at?: Date | string
|
@@ -14534,6 +16035,7 @@ export namespace Prisma {
|
|
14534
16035
|
nombre: string
|
14535
16036
|
fecha: Date | string
|
14536
16037
|
ubicacion: string
|
16038
|
+
carpetaId?: string | null
|
14537
16039
|
etiquetaAsistioId: string
|
14538
16040
|
eventoPadreId?: string | null
|
14539
16041
|
created_at?: Date | string
|
@@ -14547,6 +16049,7 @@ export namespace Prisma {
|
|
14547
16049
|
ubicacion?: StringFieldUpdateOperationsInput | string
|
14548
16050
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
14549
16051
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
16052
|
+
carpeta?: EventosCarpetaUpdateOneWithoutEventosNestedInput
|
14550
16053
|
etiquetaConfirmo?: EtiquetaUpdateOneRequiredWithoutEventosConfirmadosNestedInput
|
14551
16054
|
eventoPadre?: EventoUpdateOneWithoutSubEventosNestedInput
|
14552
16055
|
subEventos?: EventoUpdateManyWithoutEventoPadreNestedInput
|
@@ -14557,6 +16060,7 @@ export namespace Prisma {
|
|
14557
16060
|
nombre?: StringFieldUpdateOperationsInput | string
|
14558
16061
|
fecha?: DateTimeFieldUpdateOperationsInput | Date | string
|
14559
16062
|
ubicacion?: StringFieldUpdateOperationsInput | string
|
16063
|
+
carpetaId?: NullableStringFieldUpdateOperationsInput | string | null
|
14560
16064
|
etiquetaConfirmoId?: StringFieldUpdateOperationsInput | string
|
14561
16065
|
eventoPadreId?: NullableStringFieldUpdateOperationsInput | string | null
|
14562
16066
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -14569,6 +16073,7 @@ export namespace Prisma {
|
|
14569
16073
|
nombre?: StringFieldUpdateOperationsInput | string
|
14570
16074
|
fecha?: DateTimeFieldUpdateOperationsInput | Date | string
|
14571
16075
|
ubicacion?: StringFieldUpdateOperationsInput | string
|
16076
|
+
carpetaId?: NullableStringFieldUpdateOperationsInput | string | null
|
14572
16077
|
etiquetaConfirmoId?: StringFieldUpdateOperationsInput | string
|
14573
16078
|
eventoPadreId?: NullableStringFieldUpdateOperationsInput | string | null
|
14574
16079
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -14582,6 +16087,7 @@ export namespace Prisma {
|
|
14582
16087
|
ubicacion?: StringFieldUpdateOperationsInput | string
|
14583
16088
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
14584
16089
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
16090
|
+
carpeta?: EventosCarpetaUpdateOneWithoutEventosNestedInput
|
14585
16091
|
etiquetaAsistio?: EtiquetaUpdateOneRequiredWithoutEventosAsistidosNestedInput
|
14586
16092
|
eventoPadre?: EventoUpdateOneWithoutSubEventosNestedInput
|
14587
16093
|
subEventos?: EventoUpdateManyWithoutEventoPadreNestedInput
|
@@ -14592,6 +16098,7 @@ export namespace Prisma {
|
|
14592
16098
|
nombre?: StringFieldUpdateOperationsInput | string
|
14593
16099
|
fecha?: DateTimeFieldUpdateOperationsInput | Date | string
|
14594
16100
|
ubicacion?: StringFieldUpdateOperationsInput | string
|
16101
|
+
carpetaId?: NullableStringFieldUpdateOperationsInput | string | null
|
14595
16102
|
etiquetaAsistioId?: StringFieldUpdateOperationsInput | string
|
14596
16103
|
eventoPadreId?: NullableStringFieldUpdateOperationsInput | string | null
|
14597
16104
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -14604,6 +16111,7 @@ export namespace Prisma {
|
|
14604
16111
|
nombre?: StringFieldUpdateOperationsInput | string
|
14605
16112
|
fecha?: DateTimeFieldUpdateOperationsInput | Date | string
|
14606
16113
|
ubicacion?: StringFieldUpdateOperationsInput | string
|
16114
|
+
carpetaId?: NullableStringFieldUpdateOperationsInput | string | null
|
14607
16115
|
etiquetaAsistioId?: StringFieldUpdateOperationsInput | string
|
14608
16116
|
eventoPadreId?: NullableStringFieldUpdateOperationsInput | string | null
|
14609
16117
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -14651,6 +16159,7 @@ export namespace Prisma {
|
|
14651
16159
|
id?: StringFieldUpdateOperationsInput | string
|
14652
16160
|
idLegible?: IntFieldUpdateOperationsInput | number
|
14653
16161
|
telefono?: StringFieldUpdateOperationsInput | string
|
16162
|
+
telefonoSecundario?: NullableStringFieldUpdateOperationsInput | string | null
|
14654
16163
|
nombreCompleto?: StringFieldUpdateOperationsInput | string
|
14655
16164
|
nombrePila?: NullableStringFieldUpdateOperationsInput | string | null
|
14656
16165
|
genero?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -14672,6 +16181,7 @@ export namespace Prisma {
|
|
14672
16181
|
id?: StringFieldUpdateOperationsInput | string
|
14673
16182
|
idLegible?: IntFieldUpdateOperationsInput | number
|
14674
16183
|
telefono?: StringFieldUpdateOperationsInput | string
|
16184
|
+
telefonoSecundario?: NullableStringFieldUpdateOperationsInput | string | null
|
14675
16185
|
nombreCompleto?: StringFieldUpdateOperationsInput | string
|
14676
16186
|
nombrePila?: NullableStringFieldUpdateOperationsInput | string | null
|
14677
16187
|
genero?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -14693,6 +16203,7 @@ export namespace Prisma {
|
|
14693
16203
|
id?: StringFieldUpdateOperationsInput | string
|
14694
16204
|
idLegible?: IntFieldUpdateOperationsInput | number
|
14695
16205
|
telefono?: StringFieldUpdateOperationsInput | string
|
16206
|
+
telefonoSecundario?: NullableStringFieldUpdateOperationsInput | string | null
|
14696
16207
|
nombreCompleto?: StringFieldUpdateOperationsInput | string
|
14697
16208
|
nombrePila?: NullableStringFieldUpdateOperationsInput | string | null
|
14698
16209
|
genero?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -14787,11 +16298,62 @@ export namespace Prisma {
|
|
14787
16298
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
14788
16299
|
}
|
14789
16300
|
|
16301
|
+
export type EventoCreateManyCarpetaInput = {
|
16302
|
+
id?: string
|
16303
|
+
nombre: string
|
16304
|
+
fecha: Date | string
|
16305
|
+
ubicacion: string
|
16306
|
+
etiquetaAsistioId: string
|
16307
|
+
etiquetaConfirmoId: string
|
16308
|
+
eventoPadreId?: string | null
|
16309
|
+
created_at?: Date | string
|
16310
|
+
updated_at?: Date | string
|
16311
|
+
}
|
16312
|
+
|
16313
|
+
export type EventoUpdateWithoutCarpetaInput = {
|
16314
|
+
id?: StringFieldUpdateOperationsInput | string
|
16315
|
+
nombre?: StringFieldUpdateOperationsInput | string
|
16316
|
+
fecha?: DateTimeFieldUpdateOperationsInput | Date | string
|
16317
|
+
ubicacion?: StringFieldUpdateOperationsInput | string
|
16318
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
16319
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
16320
|
+
etiquetaAsistio?: EtiquetaUpdateOneRequiredWithoutEventosAsistidosNestedInput
|
16321
|
+
etiquetaConfirmo?: EtiquetaUpdateOneRequiredWithoutEventosConfirmadosNestedInput
|
16322
|
+
eventoPadre?: EventoUpdateOneWithoutSubEventosNestedInput
|
16323
|
+
subEventos?: EventoUpdateManyWithoutEventoPadreNestedInput
|
16324
|
+
}
|
16325
|
+
|
16326
|
+
export type EventoUncheckedUpdateWithoutCarpetaInput = {
|
16327
|
+
id?: StringFieldUpdateOperationsInput | string
|
16328
|
+
nombre?: StringFieldUpdateOperationsInput | string
|
16329
|
+
fecha?: DateTimeFieldUpdateOperationsInput | Date | string
|
16330
|
+
ubicacion?: StringFieldUpdateOperationsInput | string
|
16331
|
+
etiquetaAsistioId?: StringFieldUpdateOperationsInput | string
|
16332
|
+
etiquetaConfirmoId?: StringFieldUpdateOperationsInput | string
|
16333
|
+
eventoPadreId?: NullableStringFieldUpdateOperationsInput | string | null
|
16334
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
16335
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
16336
|
+
subEventos?: EventoUncheckedUpdateManyWithoutEventoPadreNestedInput
|
16337
|
+
}
|
16338
|
+
|
16339
|
+
export type EventoUncheckedUpdateManyWithoutCarpetaInput = {
|
16340
|
+
id?: StringFieldUpdateOperationsInput | string
|
16341
|
+
nombre?: StringFieldUpdateOperationsInput | string
|
16342
|
+
fecha?: DateTimeFieldUpdateOperationsInput | Date | string
|
16343
|
+
ubicacion?: StringFieldUpdateOperationsInput | string
|
16344
|
+
etiquetaAsistioId?: StringFieldUpdateOperationsInput | string
|
16345
|
+
etiquetaConfirmoId?: StringFieldUpdateOperationsInput | string
|
16346
|
+
eventoPadreId?: NullableStringFieldUpdateOperationsInput | string | null
|
16347
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
16348
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
16349
|
+
}
|
16350
|
+
|
14790
16351
|
export type EventoCreateManyEventoPadreInput = {
|
14791
16352
|
id?: string
|
14792
16353
|
nombre: string
|
14793
16354
|
fecha: Date | string
|
14794
16355
|
ubicacion: string
|
16356
|
+
carpetaId?: string | null
|
14795
16357
|
etiquetaAsistioId: string
|
14796
16358
|
etiquetaConfirmoId: string
|
14797
16359
|
created_at?: Date | string
|
@@ -14805,6 +16367,7 @@ export namespace Prisma {
|
|
14805
16367
|
ubicacion?: StringFieldUpdateOperationsInput | string
|
14806
16368
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
14807
16369
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
16370
|
+
carpeta?: EventosCarpetaUpdateOneWithoutEventosNestedInput
|
14808
16371
|
etiquetaAsistio?: EtiquetaUpdateOneRequiredWithoutEventosAsistidosNestedInput
|
14809
16372
|
etiquetaConfirmo?: EtiquetaUpdateOneRequiredWithoutEventosConfirmadosNestedInput
|
14810
16373
|
subEventos?: EventoUpdateManyWithoutEventoPadreNestedInput
|
@@ -14815,6 +16378,7 @@ export namespace Prisma {
|
|
14815
16378
|
nombre?: StringFieldUpdateOperationsInput | string
|
14816
16379
|
fecha?: DateTimeFieldUpdateOperationsInput | Date | string
|
14817
16380
|
ubicacion?: StringFieldUpdateOperationsInput | string
|
16381
|
+
carpetaId?: NullableStringFieldUpdateOperationsInput | string | null
|
14818
16382
|
etiquetaAsistioId?: StringFieldUpdateOperationsInput | string
|
14819
16383
|
etiquetaConfirmoId?: StringFieldUpdateOperationsInput | string
|
14820
16384
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -14827,6 +16391,7 @@ export namespace Prisma {
|
|
14827
16391
|
nombre?: StringFieldUpdateOperationsInput | string
|
14828
16392
|
fecha?: DateTimeFieldUpdateOperationsInput | Date | string
|
14829
16393
|
ubicacion?: StringFieldUpdateOperationsInput | string
|
16394
|
+
carpetaId?: NullableStringFieldUpdateOperationsInput | string | null
|
14830
16395
|
etiquetaAsistioId?: StringFieldUpdateOperationsInput | string
|
14831
16396
|
etiquetaConfirmoId?: StringFieldUpdateOperationsInput | string
|
14832
16397
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -14854,6 +16419,10 @@ export namespace Prisma {
|
|
14854
16419
|
* @deprecated Use EtiquetaGrupoCountOutputTypeDefaultArgs instead
|
14855
16420
|
*/
|
14856
16421
|
export type EtiquetaGrupoCountOutputTypeArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = EtiquetaGrupoCountOutputTypeDefaultArgs<ExtArgs>
|
16422
|
+
/**
|
16423
|
+
* @deprecated Use EventosCarpetaCountOutputTypeDefaultArgs instead
|
16424
|
+
*/
|
16425
|
+
export type EventosCarpetaCountOutputTypeArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = EventosCarpetaCountOutputTypeDefaultArgs<ExtArgs>
|
14857
16426
|
/**
|
14858
16427
|
* @deprecated Use EventoCountOutputTypeDefaultArgs instead
|
14859
16428
|
*/
|
@@ -14878,6 +16447,10 @@ export namespace Prisma {
|
|
14878
16447
|
* @deprecated Use EtiquetaGrupoDefaultArgs instead
|
14879
16448
|
*/
|
14880
16449
|
export type EtiquetaGrupoArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = EtiquetaGrupoDefaultArgs<ExtArgs>
|
16450
|
+
/**
|
16451
|
+
* @deprecated Use EventosCarpetaDefaultArgs instead
|
16452
|
+
*/
|
16453
|
+
export type EventosCarpetaArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = EventosCarpetaDefaultArgs<ExtArgs>
|
14881
16454
|
/**
|
14882
16455
|
* @deprecated Use EventoDefaultArgs instead
|
14883
16456
|
*/
|