expo-backend-types 0.5.0 → 0.6.0-EXPO-286-EB-Location.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/exports.d.ts +1 -0
- package/dist/src/exports.js +1 -0
- package/dist/src/i18n/es.d.ts +31 -0
- package/dist/src/i18n/es.js +31 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/location/dto/arg-city.dto.d.ts +130 -0
- package/dist/src/location/dto/arg-city.dto.js +33 -0
- package/dist/src/location/dto/find-all-countries.dto.d.ts +48 -0
- package/dist/src/location/dto/find-all-countries.dto.js +18 -0
- package/dist/src/location/dto/find-all-location.dto.d.ts +182 -0
- package/dist/src/location/dto/find-all-location.dto.js +32 -0
- package/dist/src/location/dto/find-arg-states.dto.d.ts +18 -0
- package/dist/src/location/dto/find-arg-states.dto.js +15 -0
- package/dist/src/location/dto/find-cities-by-arg-state.dto.d.ts +141 -0
- package/dist/src/location/dto/find-cities-by-arg-state.dto.js +20 -0
- package/dist/src/location/dto/location.dto.d.ts +29 -0
- package/dist/src/location/dto/location.dto.js +35 -0
- package/dist/src/location/dto/states-by-country.dto.d.ts +88 -0
- package/dist/src/location/dto/states-by-country.dto.js +22 -0
- package/dist/src/location/exports.d.ts +7 -0
- package/dist/src/location/exports.js +24 -0
- package/dist/src/profile/dto/profile.dto.d.ts +6 -12
- package/dist/src/profile/dto/profile.dto.js +2 -4
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +20 -40
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +20 -40
- package/dist/types/prisma-schema/edge.js +7 -8
- package/dist/types/prisma-schema/index-browser.js +4 -5
- package/dist/types/prisma-schema/index.d.ts +148 -277
- package/dist/types/prisma-schema/index.js +7 -8
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +6 -8
- package/dist/types/prisma-schema/wasm.js +4 -5
- package/dist/types/schema.d.ts +246 -8
- package/package.json +2 -4
@@ -3186,18 +3186,10 @@ export namespace Prisma {
|
|
3186
3186
|
|
3187
3187
|
export type ProfileAvgAggregateOutputType = {
|
3188
3188
|
shortId: number | null
|
3189
|
-
birthLongitude: number | null
|
3190
|
-
birthLatitude: number | null
|
3191
|
-
residenceLongitude: number | null
|
3192
|
-
residenceLatitude: number | null
|
3193
3189
|
}
|
3194
3190
|
|
3195
3191
|
export type ProfileSumAggregateOutputType = {
|
3196
3192
|
shortId: number | null
|
3197
|
-
birthLongitude: number | null
|
3198
|
-
birthLatitude: number | null
|
3199
|
-
residenceLongitude: number | null
|
3200
|
-
residenceLatitude: number | null
|
3201
3193
|
}
|
3202
3194
|
|
3203
3195
|
export type ProfileMinAggregateOutputType = {
|
@@ -3213,10 +3205,8 @@ export namespace Prisma {
|
|
3213
3205
|
instagram: string | null
|
3214
3206
|
mail: string | null
|
3215
3207
|
dni: string | null
|
3216
|
-
|
3217
|
-
|
3218
|
-
residenceLongitude: number | null
|
3219
|
-
residenceLatitude: number | null
|
3208
|
+
birthLocationId: string | null
|
3209
|
+
residenceLocationId: string | null
|
3220
3210
|
isInTrash: boolean | null
|
3221
3211
|
movedToTrashDate: Date | null
|
3222
3212
|
created_at: Date | null
|
@@ -3236,10 +3226,8 @@ export namespace Prisma {
|
|
3236
3226
|
instagram: string | null
|
3237
3227
|
mail: string | null
|
3238
3228
|
dni: string | null
|
3239
|
-
|
3240
|
-
|
3241
|
-
residenceLongitude: number | null
|
3242
|
-
residenceLatitude: number | null
|
3229
|
+
birthLocationId: string | null
|
3230
|
+
residenceLocationId: string | null
|
3243
3231
|
isInTrash: boolean | null
|
3244
3232
|
movedToTrashDate: Date | null
|
3245
3233
|
created_at: Date | null
|
@@ -3260,10 +3248,8 @@ export namespace Prisma {
|
|
3260
3248
|
mail: number
|
3261
3249
|
dni: number
|
3262
3250
|
alternativeNames: number
|
3263
|
-
|
3264
|
-
|
3265
|
-
residenceLongitude: number
|
3266
|
-
residenceLatitude: number
|
3251
|
+
birthLocationId: number
|
3252
|
+
residenceLocationId: number
|
3267
3253
|
isInTrash: number
|
3268
3254
|
movedToTrashDate: number
|
3269
3255
|
created_at: number
|
@@ -3274,18 +3260,10 @@ export namespace Prisma {
|
|
3274
3260
|
|
3275
3261
|
export type ProfileAvgAggregateInputType = {
|
3276
3262
|
shortId?: true
|
3277
|
-
birthLongitude?: true
|
3278
|
-
birthLatitude?: true
|
3279
|
-
residenceLongitude?: true
|
3280
|
-
residenceLatitude?: true
|
3281
3263
|
}
|
3282
3264
|
|
3283
3265
|
export type ProfileSumAggregateInputType = {
|
3284
3266
|
shortId?: true
|
3285
|
-
birthLongitude?: true
|
3286
|
-
birthLatitude?: true
|
3287
|
-
residenceLongitude?: true
|
3288
|
-
residenceLatitude?: true
|
3289
3267
|
}
|
3290
3268
|
|
3291
3269
|
export type ProfileMinAggregateInputType = {
|
@@ -3301,10 +3279,8 @@ export namespace Prisma {
|
|
3301
3279
|
instagram?: true
|
3302
3280
|
mail?: true
|
3303
3281
|
dni?: true
|
3304
|
-
|
3305
|
-
|
3306
|
-
residenceLongitude?: true
|
3307
|
-
residenceLatitude?: true
|
3282
|
+
birthLocationId?: true
|
3283
|
+
residenceLocationId?: true
|
3308
3284
|
isInTrash?: true
|
3309
3285
|
movedToTrashDate?: true
|
3310
3286
|
created_at?: true
|
@@ -3324,10 +3300,8 @@ export namespace Prisma {
|
|
3324
3300
|
instagram?: true
|
3325
3301
|
mail?: true
|
3326
3302
|
dni?: true
|
3327
|
-
|
3328
|
-
|
3329
|
-
residenceLongitude?: true
|
3330
|
-
residenceLatitude?: true
|
3303
|
+
birthLocationId?: true
|
3304
|
+
residenceLocationId?: true
|
3331
3305
|
isInTrash?: true
|
3332
3306
|
movedToTrashDate?: true
|
3333
3307
|
created_at?: true
|
@@ -3348,10 +3322,8 @@ export namespace Prisma {
|
|
3348
3322
|
mail?: true
|
3349
3323
|
dni?: true
|
3350
3324
|
alternativeNames?: true
|
3351
|
-
|
3352
|
-
|
3353
|
-
residenceLongitude?: true
|
3354
|
-
residenceLatitude?: true
|
3325
|
+
birthLocationId?: true
|
3326
|
+
residenceLocationId?: true
|
3355
3327
|
isInTrash?: true
|
3356
3328
|
movedToTrashDate?: true
|
3357
3329
|
created_at?: true
|
@@ -3459,10 +3431,8 @@ export namespace Prisma {
|
|
3459
3431
|
mail: string | null
|
3460
3432
|
dni: string | null
|
3461
3433
|
alternativeNames: string[]
|
3462
|
-
|
3463
|
-
|
3464
|
-
residenceLongitude: number | null
|
3465
|
-
residenceLatitude: number | null
|
3434
|
+
birthLocationId: string | null
|
3435
|
+
residenceLocationId: string | null
|
3466
3436
|
isInTrash: boolean
|
3467
3437
|
movedToTrashDate: Date | null
|
3468
3438
|
created_at: Date
|
@@ -3502,10 +3472,8 @@ export namespace Prisma {
|
|
3502
3472
|
mail?: boolean
|
3503
3473
|
dni?: boolean
|
3504
3474
|
alternativeNames?: boolean
|
3505
|
-
|
3506
|
-
|
3507
|
-
residenceLongitude?: boolean
|
3508
|
-
residenceLatitude?: boolean
|
3475
|
+
birthLocationId?: boolean
|
3476
|
+
residenceLocationId?: boolean
|
3509
3477
|
isInTrash?: boolean
|
3510
3478
|
movedToTrashDate?: boolean
|
3511
3479
|
created_at?: boolean
|
@@ -3532,10 +3500,8 @@ export namespace Prisma {
|
|
3532
3500
|
mail?: boolean
|
3533
3501
|
dni?: boolean
|
3534
3502
|
alternativeNames?: boolean
|
3535
|
-
|
3536
|
-
|
3537
|
-
residenceLongitude?: boolean
|
3538
|
-
residenceLatitude?: boolean
|
3503
|
+
birthLocationId?: boolean
|
3504
|
+
residenceLocationId?: boolean
|
3539
3505
|
isInTrash?: boolean
|
3540
3506
|
movedToTrashDate?: boolean
|
3541
3507
|
created_at?: boolean
|
@@ -3576,10 +3542,8 @@ export namespace Prisma {
|
|
3576
3542
|
mail: string | null
|
3577
3543
|
dni: string | null
|
3578
3544
|
alternativeNames: string[]
|
3579
|
-
|
3580
|
-
|
3581
|
-
residenceLongitude: number | null
|
3582
|
-
residenceLatitude: number | null
|
3545
|
+
birthLocationId: string | null
|
3546
|
+
residenceLocationId: string | null
|
3583
3547
|
isInTrash: boolean
|
3584
3548
|
movedToTrashDate: Date | null
|
3585
3549
|
created_at: Date
|
@@ -4026,10 +3990,8 @@ export namespace Prisma {
|
|
4026
3990
|
readonly mail: FieldRef<"Profile", 'String'>
|
4027
3991
|
readonly dni: FieldRef<"Profile", 'String'>
|
4028
3992
|
readonly alternativeNames: FieldRef<"Profile", 'String[]'>
|
4029
|
-
readonly
|
4030
|
-
readonly
|
4031
|
-
readonly residenceLongitude: FieldRef<"Profile", 'Float'>
|
4032
|
-
readonly residenceLatitude: FieldRef<"Profile", 'Float'>
|
3993
|
+
readonly birthLocationId: FieldRef<"Profile", 'String'>
|
3994
|
+
readonly residenceLocationId: FieldRef<"Profile", 'String'>
|
4033
3995
|
readonly isInTrash: FieldRef<"Profile", 'Boolean'>
|
4034
3996
|
readonly movedToTrashDate: FieldRef<"Profile", 'DateTime'>
|
4035
3997
|
readonly created_at: FieldRef<"Profile", 'DateTime'>
|
@@ -4479,30 +4441,33 @@ export namespace Prisma {
|
|
4479
4441
|
}
|
4480
4442
|
|
4481
4443
|
export type LocationMinAggregateOutputType = {
|
4444
|
+
id: string | null
|
4482
4445
|
latitude: number | null
|
4483
4446
|
longitude: number | null
|
4484
4447
|
country: string | null
|
4485
|
-
|
4448
|
+
state: string | null
|
4486
4449
|
city: string | null
|
4487
4450
|
created_at: Date | null
|
4488
4451
|
updated_at: Date | null
|
4489
4452
|
}
|
4490
4453
|
|
4491
4454
|
export type LocationMaxAggregateOutputType = {
|
4455
|
+
id: string | null
|
4492
4456
|
latitude: number | null
|
4493
4457
|
longitude: number | null
|
4494
4458
|
country: string | null
|
4495
|
-
|
4459
|
+
state: string | null
|
4496
4460
|
city: string | null
|
4497
4461
|
created_at: Date | null
|
4498
4462
|
updated_at: Date | null
|
4499
4463
|
}
|
4500
4464
|
|
4501
4465
|
export type LocationCountAggregateOutputType = {
|
4466
|
+
id: number
|
4502
4467
|
latitude: number
|
4503
4468
|
longitude: number
|
4504
4469
|
country: number
|
4505
|
-
|
4470
|
+
state: number
|
4506
4471
|
city: number
|
4507
4472
|
created_at: number
|
4508
4473
|
updated_at: number
|
@@ -4521,30 +4486,33 @@ export namespace Prisma {
|
|
4521
4486
|
}
|
4522
4487
|
|
4523
4488
|
export type LocationMinAggregateInputType = {
|
4489
|
+
id?: true
|
4524
4490
|
latitude?: true
|
4525
4491
|
longitude?: true
|
4526
4492
|
country?: true
|
4527
|
-
|
4493
|
+
state?: true
|
4528
4494
|
city?: true
|
4529
4495
|
created_at?: true
|
4530
4496
|
updated_at?: true
|
4531
4497
|
}
|
4532
4498
|
|
4533
4499
|
export type LocationMaxAggregateInputType = {
|
4500
|
+
id?: true
|
4534
4501
|
latitude?: true
|
4535
4502
|
longitude?: true
|
4536
4503
|
country?: true
|
4537
|
-
|
4504
|
+
state?: true
|
4538
4505
|
city?: true
|
4539
4506
|
created_at?: true
|
4540
4507
|
updated_at?: true
|
4541
4508
|
}
|
4542
4509
|
|
4543
4510
|
export type LocationCountAggregateInputType = {
|
4511
|
+
id?: true
|
4544
4512
|
latitude?: true
|
4545
4513
|
longitude?: true
|
4546
4514
|
country?: true
|
4547
|
-
|
4515
|
+
state?: true
|
4548
4516
|
city?: true
|
4549
4517
|
created_at?: true
|
4550
4518
|
updated_at?: true
|
@@ -4638,10 +4606,11 @@ export namespace Prisma {
|
|
4638
4606
|
}
|
4639
4607
|
|
4640
4608
|
export type LocationGroupByOutputType = {
|
4609
|
+
id: string
|
4641
4610
|
latitude: number
|
4642
4611
|
longitude: number
|
4643
4612
|
country: string
|
4644
|
-
|
4613
|
+
state: string
|
4645
4614
|
city: string
|
4646
4615
|
created_at: Date
|
4647
4616
|
updated_at: Date
|
@@ -4667,10 +4636,11 @@ export namespace Prisma {
|
|
4667
4636
|
|
4668
4637
|
|
4669
4638
|
export type LocationSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
4639
|
+
id?: boolean
|
4670
4640
|
latitude?: boolean
|
4671
4641
|
longitude?: boolean
|
4672
4642
|
country?: boolean
|
4673
|
-
|
4643
|
+
state?: boolean
|
4674
4644
|
city?: boolean
|
4675
4645
|
created_at?: boolean
|
4676
4646
|
updated_at?: boolean
|
@@ -4680,10 +4650,11 @@ export namespace Prisma {
|
|
4680
4650
|
}, ExtArgs["result"]["location"]>
|
4681
4651
|
|
4682
4652
|
export type LocationSelectScalar = {
|
4653
|
+
id?: boolean
|
4683
4654
|
latitude?: boolean
|
4684
4655
|
longitude?: boolean
|
4685
4656
|
country?: boolean
|
4686
|
-
|
4657
|
+
state?: boolean
|
4687
4658
|
city?: boolean
|
4688
4659
|
created_at?: boolean
|
4689
4660
|
updated_at?: boolean
|
@@ -4704,10 +4675,11 @@ export namespace Prisma {
|
|
4704
4675
|
residenceProfiles: Prisma.$ProfilePayload<ExtArgs>[]
|
4705
4676
|
}
|
4706
4677
|
scalars: $Extensions.GetPayloadResult<{
|
4678
|
+
id: string
|
4707
4679
|
latitude: number
|
4708
4680
|
longitude: number
|
4709
4681
|
country: string
|
4710
|
-
|
4682
|
+
state: string
|
4711
4683
|
city: string
|
4712
4684
|
created_at: Date
|
4713
4685
|
updated_at: Date
|
@@ -4803,8 +4775,8 @@ export namespace Prisma {
|
|
4803
4775
|
* // Get first 10 Locations
|
4804
4776
|
* const locations = await prisma.location.findMany({ take: 10 })
|
4805
4777
|
*
|
4806
|
-
* // Only select the `
|
4807
|
-
* const
|
4778
|
+
* // Only select the `id`
|
4779
|
+
* const locationWithIdOnly = await prisma.location.findMany({ select: { id: true } })
|
4808
4780
|
*
|
4809
4781
|
**/
|
4810
4782
|
findMany<T extends LocationFindManyArgs<ExtArgs>>(
|
@@ -4854,9 +4826,9 @@ export namespace Prisma {
|
|
4854
4826
|
* ]
|
4855
4827
|
* })
|
4856
4828
|
*
|
4857
|
-
* // Create many Locations and only return the `
|
4858
|
-
* const
|
4859
|
-
* select: {
|
4829
|
+
* // Create many Locations and only return the `id`
|
4830
|
+
* const locationWithIdOnly = await prisma.location.createManyAndReturn({
|
4831
|
+
* select: { id: true },
|
4860
4832
|
* data: [
|
4861
4833
|
* // ... provide data here
|
4862
4834
|
* ]
|
@@ -5134,10 +5106,11 @@ export namespace Prisma {
|
|
5134
5106
|
* Fields of the Location model
|
5135
5107
|
*/
|
5136
5108
|
interface LocationFieldRefs {
|
5109
|
+
readonly id: FieldRef<"Location", 'String'>
|
5137
5110
|
readonly latitude: FieldRef<"Location", 'Float'>
|
5138
5111
|
readonly longitude: FieldRef<"Location", 'Float'>
|
5139
5112
|
readonly country: FieldRef<"Location", 'String'>
|
5140
|
-
readonly
|
5113
|
+
readonly state: FieldRef<"Location", 'String'>
|
5141
5114
|
readonly city: FieldRef<"Location", 'String'>
|
5142
5115
|
readonly created_at: FieldRef<"Location", 'DateTime'>
|
5143
5116
|
readonly updated_at: FieldRef<"Location", 'DateTime'>
|
@@ -13437,10 +13410,8 @@ export namespace Prisma {
|
|
13437
13410
|
mail: 'mail',
|
13438
13411
|
dni: 'dni',
|
13439
13412
|
alternativeNames: 'alternativeNames',
|
13440
|
-
|
13441
|
-
|
13442
|
-
residenceLongitude: 'residenceLongitude',
|
13443
|
-
residenceLatitude: 'residenceLatitude',
|
13413
|
+
birthLocationId: 'birthLocationId',
|
13414
|
+
residenceLocationId: 'residenceLocationId',
|
13444
13415
|
isInTrash: 'isInTrash',
|
13445
13416
|
movedToTrashDate: 'movedToTrashDate',
|
13446
13417
|
created_at: 'created_at',
|
@@ -13451,10 +13422,11 @@ export namespace Prisma {
|
|
13451
13422
|
|
13452
13423
|
|
13453
13424
|
export const LocationScalarFieldEnum: {
|
13425
|
+
id: 'id',
|
13454
13426
|
latitude: 'latitude',
|
13455
13427
|
longitude: 'longitude',
|
13456
13428
|
country: 'country',
|
13457
|
-
|
13429
|
+
state: 'state',
|
13458
13430
|
city: 'city',
|
13459
13431
|
created_at: 'created_at',
|
13460
13432
|
updated_at: 'updated_at'
|
@@ -13847,10 +13819,8 @@ export namespace Prisma {
|
|
13847
13819
|
mail?: StringNullableFilter<"Profile"> | string | null
|
13848
13820
|
dni?: StringNullableFilter<"Profile"> | string | null
|
13849
13821
|
alternativeNames?: StringNullableListFilter<"Profile">
|
13850
|
-
|
13851
|
-
|
13852
|
-
residenceLongitude?: FloatNullableFilter<"Profile"> | number | null
|
13853
|
-
residenceLatitude?: FloatNullableFilter<"Profile"> | number | null
|
13822
|
+
birthLocationId?: StringNullableFilter<"Profile"> | string | null
|
13823
|
+
residenceLocationId?: StringNullableFilter<"Profile"> | string | null
|
13854
13824
|
isInTrash?: BoolFilter<"Profile"> | boolean
|
13855
13825
|
movedToTrashDate?: DateTimeNullableFilter<"Profile"> | Date | string | null
|
13856
13826
|
created_at?: DateTimeFilter<"Profile"> | Date | string
|
@@ -13876,10 +13846,8 @@ export namespace Prisma {
|
|
13876
13846
|
mail?: SortOrderInput | SortOrder
|
13877
13847
|
dni?: SortOrderInput | SortOrder
|
13878
13848
|
alternativeNames?: SortOrder
|
13879
|
-
|
13880
|
-
|
13881
|
-
residenceLongitude?: SortOrderInput | SortOrder
|
13882
|
-
residenceLatitude?: SortOrderInput | SortOrder
|
13849
|
+
birthLocationId?: SortOrderInput | SortOrder
|
13850
|
+
residenceLocationId?: SortOrderInput | SortOrder
|
13883
13851
|
isInTrash?: SortOrder
|
13884
13852
|
movedToTrashDate?: SortOrderInput | SortOrder
|
13885
13853
|
created_at?: SortOrder
|
@@ -13908,10 +13876,8 @@ export namespace Prisma {
|
|
13908
13876
|
mail?: StringNullableFilter<"Profile"> | string | null
|
13909
13877
|
dni?: StringNullableFilter<"Profile"> | string | null
|
13910
13878
|
alternativeNames?: StringNullableListFilter<"Profile">
|
13911
|
-
|
13912
|
-
|
13913
|
-
residenceLongitude?: FloatNullableFilter<"Profile"> | number | null
|
13914
|
-
residenceLatitude?: FloatNullableFilter<"Profile"> | number | null
|
13879
|
+
birthLocationId?: StringNullableFilter<"Profile"> | string | null
|
13880
|
+
residenceLocationId?: StringNullableFilter<"Profile"> | string | null
|
13915
13881
|
isInTrash?: BoolFilter<"Profile"> | boolean
|
13916
13882
|
movedToTrashDate?: DateTimeNullableFilter<"Profile"> | Date | string | null
|
13917
13883
|
created_at?: DateTimeFilter<"Profile"> | Date | string
|
@@ -13937,10 +13903,8 @@ export namespace Prisma {
|
|
13937
13903
|
mail?: SortOrderInput | SortOrder
|
13938
13904
|
dni?: SortOrderInput | SortOrder
|
13939
13905
|
alternativeNames?: SortOrder
|
13940
|
-
|
13941
|
-
|
13942
|
-
residenceLongitude?: SortOrderInput | SortOrder
|
13943
|
-
residenceLatitude?: SortOrderInput | SortOrder
|
13906
|
+
birthLocationId?: SortOrderInput | SortOrder
|
13907
|
+
residenceLocationId?: SortOrderInput | SortOrder
|
13944
13908
|
isInTrash?: SortOrder
|
13945
13909
|
movedToTrashDate?: SortOrderInput | SortOrder
|
13946
13910
|
created_at?: SortOrder
|
@@ -13969,10 +13933,8 @@ export namespace Prisma {
|
|
13969
13933
|
mail?: StringNullableWithAggregatesFilter<"Profile"> | string | null
|
13970
13934
|
dni?: StringNullableWithAggregatesFilter<"Profile"> | string | null
|
13971
13935
|
alternativeNames?: StringNullableListFilter<"Profile">
|
13972
|
-
|
13973
|
-
|
13974
|
-
residenceLongitude?: FloatNullableWithAggregatesFilter<"Profile"> | number | null
|
13975
|
-
residenceLatitude?: FloatNullableWithAggregatesFilter<"Profile"> | number | null
|
13936
|
+
birthLocationId?: StringNullableWithAggregatesFilter<"Profile"> | string | null
|
13937
|
+
residenceLocationId?: StringNullableWithAggregatesFilter<"Profile"> | string | null
|
13976
13938
|
isInTrash?: BoolWithAggregatesFilter<"Profile"> | boolean
|
13977
13939
|
movedToTrashDate?: DateTimeNullableWithAggregatesFilter<"Profile"> | Date | string | null
|
13978
13940
|
created_at?: DateTimeWithAggregatesFilter<"Profile"> | Date | string
|
@@ -13983,10 +13945,11 @@ export namespace Prisma {
|
|
13983
13945
|
AND?: LocationWhereInput | LocationWhereInput[]
|
13984
13946
|
OR?: LocationWhereInput[]
|
13985
13947
|
NOT?: LocationWhereInput | LocationWhereInput[]
|
13948
|
+
id?: StringFilter<"Location"> | string
|
13986
13949
|
latitude?: FloatFilter<"Location"> | number
|
13987
13950
|
longitude?: FloatFilter<"Location"> | number
|
13988
13951
|
country?: StringFilter<"Location"> | string
|
13989
|
-
|
13952
|
+
state?: StringFilter<"Location"> | string
|
13990
13953
|
city?: StringFilter<"Location"> | string
|
13991
13954
|
created_at?: DateTimeFilter<"Location"> | Date | string
|
13992
13955
|
updated_at?: DateTimeFilter<"Location"> | Date | string
|
@@ -13995,10 +13958,11 @@ export namespace Prisma {
|
|
13995
13958
|
}
|
13996
13959
|
|
13997
13960
|
export type LocationOrderByWithRelationInput = {
|
13961
|
+
id?: SortOrder
|
13998
13962
|
latitude?: SortOrder
|
13999
13963
|
longitude?: SortOrder
|
14000
13964
|
country?: SortOrder
|
14001
|
-
|
13965
|
+
state?: SortOrder
|
14002
13966
|
city?: SortOrder
|
14003
13967
|
created_at?: SortOrder
|
14004
13968
|
updated_at?: SortOrder
|
@@ -14007,26 +13971,27 @@ export namespace Prisma {
|
|
14007
13971
|
}
|
14008
13972
|
|
14009
13973
|
export type LocationWhereUniqueInput = Prisma.AtLeast<{
|
14010
|
-
|
13974
|
+
id?: string
|
14011
13975
|
AND?: LocationWhereInput | LocationWhereInput[]
|
14012
13976
|
OR?: LocationWhereInput[]
|
14013
13977
|
NOT?: LocationWhereInput | LocationWhereInput[]
|
14014
13978
|
latitude?: FloatFilter<"Location"> | number
|
14015
13979
|
longitude?: FloatFilter<"Location"> | number
|
14016
13980
|
country?: StringFilter<"Location"> | string
|
14017
|
-
|
13981
|
+
state?: StringFilter<"Location"> | string
|
14018
13982
|
city?: StringFilter<"Location"> | string
|
14019
13983
|
created_at?: DateTimeFilter<"Location"> | Date | string
|
14020
13984
|
updated_at?: DateTimeFilter<"Location"> | Date | string
|
14021
13985
|
birthProfiles?: ProfileListRelationFilter
|
14022
13986
|
residenceProfiles?: ProfileListRelationFilter
|
14023
|
-
}, "
|
13987
|
+
}, "id">
|
14024
13988
|
|
14025
13989
|
export type LocationOrderByWithAggregationInput = {
|
13990
|
+
id?: SortOrder
|
14026
13991
|
latitude?: SortOrder
|
14027
13992
|
longitude?: SortOrder
|
14028
13993
|
country?: SortOrder
|
14029
|
-
|
13994
|
+
state?: SortOrder
|
14030
13995
|
city?: SortOrder
|
14031
13996
|
created_at?: SortOrder
|
14032
13997
|
updated_at?: SortOrder
|
@@ -14041,10 +14006,11 @@ export namespace Prisma {
|
|
14041
14006
|
AND?: LocationScalarWhereWithAggregatesInput | LocationScalarWhereWithAggregatesInput[]
|
14042
14007
|
OR?: LocationScalarWhereWithAggregatesInput[]
|
14043
14008
|
NOT?: LocationScalarWhereWithAggregatesInput | LocationScalarWhereWithAggregatesInput[]
|
14009
|
+
id?: StringWithAggregatesFilter<"Location"> | string
|
14044
14010
|
latitude?: FloatWithAggregatesFilter<"Location"> | number
|
14045
14011
|
longitude?: FloatWithAggregatesFilter<"Location"> | number
|
14046
14012
|
country?: StringWithAggregatesFilter<"Location"> | string
|
14047
|
-
|
14013
|
+
state?: StringWithAggregatesFilter<"Location"> | string
|
14048
14014
|
city?: StringWithAggregatesFilter<"Location"> | string
|
14049
14015
|
created_at?: DateTimeWithAggregatesFilter<"Location"> | Date | string
|
14050
14016
|
updated_at?: DateTimeWithAggregatesFilter<"Location"> | Date | string
|
@@ -14709,10 +14675,8 @@ export namespace Prisma {
|
|
14709
14675
|
mail?: string | null
|
14710
14676
|
dni?: string | null
|
14711
14677
|
alternativeNames?: ProfileCreatealternativeNamesInput | string[]
|
14712
|
-
|
14713
|
-
|
14714
|
-
residenceLongitude?: number | null
|
14715
|
-
residenceLatitude?: number | null
|
14678
|
+
birthLocationId?: string | null
|
14679
|
+
residenceLocationId?: string | null
|
14716
14680
|
isInTrash?: boolean
|
14717
14681
|
movedToTrashDate?: Date | string | null
|
14718
14682
|
created_at?: Date | string
|
@@ -14761,10 +14725,8 @@ export namespace Prisma {
|
|
14761
14725
|
mail?: NullableStringFieldUpdateOperationsInput | string | null
|
14762
14726
|
dni?: NullableStringFieldUpdateOperationsInput | string | null
|
14763
14727
|
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
14764
|
-
|
14765
|
-
|
14766
|
-
residenceLongitude?: NullableFloatFieldUpdateOperationsInput | number | null
|
14767
|
-
residenceLatitude?: NullableFloatFieldUpdateOperationsInput | number | null
|
14728
|
+
birthLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
14729
|
+
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
14768
14730
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
14769
14731
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
14770
14732
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -14788,10 +14750,8 @@ export namespace Prisma {
|
|
14788
14750
|
mail?: string | null
|
14789
14751
|
dni?: string | null
|
14790
14752
|
alternativeNames?: ProfileCreatealternativeNamesInput | string[]
|
14791
|
-
|
14792
|
-
|
14793
|
-
residenceLongitude?: number | null
|
14794
|
-
residenceLatitude?: number | null
|
14753
|
+
birthLocationId?: string | null
|
14754
|
+
residenceLocationId?: string | null
|
14795
14755
|
isInTrash?: boolean
|
14796
14756
|
movedToTrashDate?: Date | string | null
|
14797
14757
|
created_at?: Date | string
|
@@ -14832,10 +14792,8 @@ export namespace Prisma {
|
|
14832
14792
|
mail?: NullableStringFieldUpdateOperationsInput | string | null
|
14833
14793
|
dni?: NullableStringFieldUpdateOperationsInput | string | null
|
14834
14794
|
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
14835
|
-
|
14836
|
-
|
14837
|
-
residenceLongitude?: NullableFloatFieldUpdateOperationsInput | number | null
|
14838
|
-
residenceLatitude?: NullableFloatFieldUpdateOperationsInput | number | null
|
14795
|
+
birthLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
14796
|
+
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
14839
14797
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
14840
14798
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
14841
14799
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -14843,10 +14801,11 @@ export namespace Prisma {
|
|
14843
14801
|
}
|
14844
14802
|
|
14845
14803
|
export type LocationCreateInput = {
|
14804
|
+
id?: string
|
14846
14805
|
latitude: number
|
14847
14806
|
longitude: number
|
14848
14807
|
country: string
|
14849
|
-
|
14808
|
+
state: string
|
14850
14809
|
city: string
|
14851
14810
|
created_at?: Date | string
|
14852
14811
|
updated_at?: Date | string
|
@@ -14855,10 +14814,11 @@ export namespace Prisma {
|
|
14855
14814
|
}
|
14856
14815
|
|
14857
14816
|
export type LocationUncheckedCreateInput = {
|
14817
|
+
id?: string
|
14858
14818
|
latitude: number
|
14859
14819
|
longitude: number
|
14860
14820
|
country: string
|
14861
|
-
|
14821
|
+
state: string
|
14862
14822
|
city: string
|
14863
14823
|
created_at?: Date | string
|
14864
14824
|
updated_at?: Date | string
|
@@ -14867,10 +14827,11 @@ export namespace Prisma {
|
|
14867
14827
|
}
|
14868
14828
|
|
14869
14829
|
export type LocationUpdateInput = {
|
14830
|
+
id?: StringFieldUpdateOperationsInput | string
|
14870
14831
|
latitude?: FloatFieldUpdateOperationsInput | number
|
14871
14832
|
longitude?: FloatFieldUpdateOperationsInput | number
|
14872
14833
|
country?: StringFieldUpdateOperationsInput | string
|
14873
|
-
|
14834
|
+
state?: StringFieldUpdateOperationsInput | string
|
14874
14835
|
city?: StringFieldUpdateOperationsInput | string
|
14875
14836
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
14876
14837
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -14879,10 +14840,11 @@ export namespace Prisma {
|
|
14879
14840
|
}
|
14880
14841
|
|
14881
14842
|
export type LocationUncheckedUpdateInput = {
|
14843
|
+
id?: StringFieldUpdateOperationsInput | string
|
14882
14844
|
latitude?: FloatFieldUpdateOperationsInput | number
|
14883
14845
|
longitude?: FloatFieldUpdateOperationsInput | number
|
14884
14846
|
country?: StringFieldUpdateOperationsInput | string
|
14885
|
-
|
14847
|
+
state?: StringFieldUpdateOperationsInput | string
|
14886
14848
|
city?: StringFieldUpdateOperationsInput | string
|
14887
14849
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
14888
14850
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -14891,30 +14853,33 @@ export namespace Prisma {
|
|
14891
14853
|
}
|
14892
14854
|
|
14893
14855
|
export type LocationCreateManyInput = {
|
14856
|
+
id?: string
|
14894
14857
|
latitude: number
|
14895
14858
|
longitude: number
|
14896
14859
|
country: string
|
14897
|
-
|
14860
|
+
state: string
|
14898
14861
|
city: string
|
14899
14862
|
created_at?: Date | string
|
14900
14863
|
updated_at?: Date | string
|
14901
14864
|
}
|
14902
14865
|
|
14903
14866
|
export type LocationUpdateManyMutationInput = {
|
14867
|
+
id?: StringFieldUpdateOperationsInput | string
|
14904
14868
|
latitude?: FloatFieldUpdateOperationsInput | number
|
14905
14869
|
longitude?: FloatFieldUpdateOperationsInput | number
|
14906
14870
|
country?: StringFieldUpdateOperationsInput | string
|
14907
|
-
|
14871
|
+
state?: StringFieldUpdateOperationsInput | string
|
14908
14872
|
city?: StringFieldUpdateOperationsInput | string
|
14909
14873
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
14910
14874
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
14911
14875
|
}
|
14912
14876
|
|
14913
14877
|
export type LocationUncheckedUpdateManyInput = {
|
14878
|
+
id?: StringFieldUpdateOperationsInput | string
|
14914
14879
|
latitude?: FloatFieldUpdateOperationsInput | number
|
14915
14880
|
longitude?: FloatFieldUpdateOperationsInput | number
|
14916
14881
|
country?: StringFieldUpdateOperationsInput | string
|
14917
|
-
|
14882
|
+
state?: StringFieldUpdateOperationsInput | string
|
14918
14883
|
city?: StringFieldUpdateOperationsInput | string
|
14919
14884
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
14920
14885
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -15659,17 +15624,6 @@ export namespace Prisma {
|
|
15659
15624
|
not?: NestedDateTimeNullableFilter<$PrismaModel> | Date | string | null
|
15660
15625
|
}
|
15661
15626
|
|
15662
|
-
export type FloatNullableFilter<$PrismaModel = never> = {
|
15663
|
-
equals?: number | FloatFieldRefInput<$PrismaModel> | null
|
15664
|
-
in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
|
15665
|
-
notIn?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
|
15666
|
-
lt?: number | FloatFieldRefInput<$PrismaModel>
|
15667
|
-
lte?: number | FloatFieldRefInput<$PrismaModel>
|
15668
|
-
gt?: number | FloatFieldRefInput<$PrismaModel>
|
15669
|
-
gte?: number | FloatFieldRefInput<$PrismaModel>
|
15670
|
-
not?: NestedFloatNullableFilter<$PrismaModel> | number | null
|
15671
|
-
}
|
15672
|
-
|
15673
15627
|
export type MessageListRelationFilter = {
|
15674
15628
|
every?: MessageWhereInput
|
15675
15629
|
some?: MessageWhereInput
|
@@ -15704,10 +15658,8 @@ export namespace Prisma {
|
|
15704
15658
|
mail?: SortOrder
|
15705
15659
|
dni?: SortOrder
|
15706
15660
|
alternativeNames?: SortOrder
|
15707
|
-
|
15708
|
-
|
15709
|
-
residenceLongitude?: SortOrder
|
15710
|
-
residenceLatitude?: SortOrder
|
15661
|
+
birthLocationId?: SortOrder
|
15662
|
+
residenceLocationId?: SortOrder
|
15711
15663
|
isInTrash?: SortOrder
|
15712
15664
|
movedToTrashDate?: SortOrder
|
15713
15665
|
created_at?: SortOrder
|
@@ -15716,10 +15668,6 @@ export namespace Prisma {
|
|
15716
15668
|
|
15717
15669
|
export type ProfileAvgOrderByAggregateInput = {
|
15718
15670
|
shortId?: SortOrder
|
15719
|
-
birthLongitude?: SortOrder
|
15720
|
-
birthLatitude?: SortOrder
|
15721
|
-
residenceLongitude?: SortOrder
|
15722
|
-
residenceLatitude?: SortOrder
|
15723
15671
|
}
|
15724
15672
|
|
15725
15673
|
export type ProfileMaxOrderByAggregateInput = {
|
@@ -15735,10 +15683,8 @@ export namespace Prisma {
|
|
15735
15683
|
instagram?: SortOrder
|
15736
15684
|
mail?: SortOrder
|
15737
15685
|
dni?: SortOrder
|
15738
|
-
|
15739
|
-
|
15740
|
-
residenceLongitude?: SortOrder
|
15741
|
-
residenceLatitude?: SortOrder
|
15686
|
+
birthLocationId?: SortOrder
|
15687
|
+
residenceLocationId?: SortOrder
|
15742
15688
|
isInTrash?: SortOrder
|
15743
15689
|
movedToTrashDate?: SortOrder
|
15744
15690
|
created_at?: SortOrder
|
@@ -15758,10 +15704,8 @@ export namespace Prisma {
|
|
15758
15704
|
instagram?: SortOrder
|
15759
15705
|
mail?: SortOrder
|
15760
15706
|
dni?: SortOrder
|
15761
|
-
|
15762
|
-
|
15763
|
-
residenceLongitude?: SortOrder
|
15764
|
-
residenceLatitude?: SortOrder
|
15707
|
+
birthLocationId?: SortOrder
|
15708
|
+
residenceLocationId?: SortOrder
|
15765
15709
|
isInTrash?: SortOrder
|
15766
15710
|
movedToTrashDate?: SortOrder
|
15767
15711
|
created_at?: SortOrder
|
@@ -15770,10 +15714,6 @@ export namespace Prisma {
|
|
15770
15714
|
|
15771
15715
|
export type ProfileSumOrderByAggregateInput = {
|
15772
15716
|
shortId?: SortOrder
|
15773
|
-
birthLongitude?: SortOrder
|
15774
|
-
birthLatitude?: SortOrder
|
15775
|
-
residenceLongitude?: SortOrder
|
15776
|
-
residenceLatitude?: SortOrder
|
15777
15717
|
}
|
15778
15718
|
|
15779
15719
|
export type IntWithAggregatesFilter<$PrismaModel = never> = {
|
@@ -15824,22 +15764,6 @@ export namespace Prisma {
|
|
15824
15764
|
_max?: NestedDateTimeNullableFilter<$PrismaModel>
|
15825
15765
|
}
|
15826
15766
|
|
15827
|
-
export type FloatNullableWithAggregatesFilter<$PrismaModel = never> = {
|
15828
|
-
equals?: number | FloatFieldRefInput<$PrismaModel> | null
|
15829
|
-
in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
|
15830
|
-
notIn?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
|
15831
|
-
lt?: number | FloatFieldRefInput<$PrismaModel>
|
15832
|
-
lte?: number | FloatFieldRefInput<$PrismaModel>
|
15833
|
-
gt?: number | FloatFieldRefInput<$PrismaModel>
|
15834
|
-
gte?: number | FloatFieldRefInput<$PrismaModel>
|
15835
|
-
not?: NestedFloatNullableWithAggregatesFilter<$PrismaModel> | number | null
|
15836
|
-
_count?: NestedIntNullableFilter<$PrismaModel>
|
15837
|
-
_avg?: NestedFloatNullableFilter<$PrismaModel>
|
15838
|
-
_sum?: NestedFloatNullableFilter<$PrismaModel>
|
15839
|
-
_min?: NestedFloatNullableFilter<$PrismaModel>
|
15840
|
-
_max?: NestedFloatNullableFilter<$PrismaModel>
|
15841
|
-
}
|
15842
|
-
|
15843
15767
|
export type FloatFilter<$PrismaModel = never> = {
|
15844
15768
|
equals?: number | FloatFieldRefInput<$PrismaModel>
|
15845
15769
|
in?: number[] | ListFloatFieldRefInput<$PrismaModel>
|
@@ -15861,16 +15785,12 @@ export namespace Prisma {
|
|
15861
15785
|
_count?: SortOrder
|
15862
15786
|
}
|
15863
15787
|
|
15864
|
-
export type LocationLatitudeLongitudeCompoundUniqueInput = {
|
15865
|
-
latitude: number
|
15866
|
-
longitude: number
|
15867
|
-
}
|
15868
|
-
|
15869
15788
|
export type LocationCountOrderByAggregateInput = {
|
15789
|
+
id?: SortOrder
|
15870
15790
|
latitude?: SortOrder
|
15871
15791
|
longitude?: SortOrder
|
15872
15792
|
country?: SortOrder
|
15873
|
-
|
15793
|
+
state?: SortOrder
|
15874
15794
|
city?: SortOrder
|
15875
15795
|
created_at?: SortOrder
|
15876
15796
|
updated_at?: SortOrder
|
@@ -15882,20 +15802,22 @@ export namespace Prisma {
|
|
15882
15802
|
}
|
15883
15803
|
|
15884
15804
|
export type LocationMaxOrderByAggregateInput = {
|
15805
|
+
id?: SortOrder
|
15885
15806
|
latitude?: SortOrder
|
15886
15807
|
longitude?: SortOrder
|
15887
15808
|
country?: SortOrder
|
15888
|
-
|
15809
|
+
state?: SortOrder
|
15889
15810
|
city?: SortOrder
|
15890
15811
|
created_at?: SortOrder
|
15891
15812
|
updated_at?: SortOrder
|
15892
15813
|
}
|
15893
15814
|
|
15894
15815
|
export type LocationMinOrderByAggregateInput = {
|
15816
|
+
id?: SortOrder
|
15895
15817
|
latitude?: SortOrder
|
15896
15818
|
longitude?: SortOrder
|
15897
15819
|
country?: SortOrder
|
15898
|
-
|
15820
|
+
state?: SortOrder
|
15899
15821
|
city?: SortOrder
|
15900
15822
|
created_at?: SortOrder
|
15901
15823
|
updated_at?: SortOrder
|
@@ -16641,14 +16563,6 @@ export namespace Prisma {
|
|
16641
16563
|
update?: XOR<XOR<LocationUpdateToOneWithWhereWithoutResidenceProfilesInput, LocationUpdateWithoutResidenceProfilesInput>, LocationUncheckedUpdateWithoutResidenceProfilesInput>
|
16642
16564
|
}
|
16643
16565
|
|
16644
|
-
export type NullableFloatFieldUpdateOperationsInput = {
|
16645
|
-
set?: number | null
|
16646
|
-
increment?: number
|
16647
|
-
decrement?: number
|
16648
|
-
multiply?: number
|
16649
|
-
divide?: number
|
16650
|
-
}
|
16651
|
-
|
16652
16566
|
export type CommentUncheckedUpdateManyWithoutProfileNestedInput = {
|
16653
16567
|
create?: XOR<CommentCreateWithoutProfileInput, CommentUncheckedCreateWithoutProfileInput> | CommentCreateWithoutProfileInput[] | CommentUncheckedCreateWithoutProfileInput[]
|
16654
16568
|
connectOrCreate?: CommentCreateOrConnectWithoutProfileInput | CommentCreateOrConnectWithoutProfileInput[]
|
@@ -17356,17 +17270,6 @@ export namespace Prisma {
|
|
17356
17270
|
not?: NestedDateTimeNullableFilter<$PrismaModel> | Date | string | null
|
17357
17271
|
}
|
17358
17272
|
|
17359
|
-
export type NestedFloatNullableFilter<$PrismaModel = never> = {
|
17360
|
-
equals?: number | FloatFieldRefInput<$PrismaModel> | null
|
17361
|
-
in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
|
17362
|
-
notIn?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
|
17363
|
-
lt?: number | FloatFieldRefInput<$PrismaModel>
|
17364
|
-
lte?: number | FloatFieldRefInput<$PrismaModel>
|
17365
|
-
gt?: number | FloatFieldRefInput<$PrismaModel>
|
17366
|
-
gte?: number | FloatFieldRefInput<$PrismaModel>
|
17367
|
-
not?: NestedFloatNullableFilter<$PrismaModel> | number | null
|
17368
|
-
}
|
17369
|
-
|
17370
17273
|
export type NestedIntWithAggregatesFilter<$PrismaModel = never> = {
|
17371
17274
|
equals?: number | IntFieldRefInput<$PrismaModel>
|
17372
17275
|
in?: number[] | ListIntFieldRefInput<$PrismaModel>
|
@@ -17436,22 +17339,6 @@ export namespace Prisma {
|
|
17436
17339
|
_max?: NestedDateTimeNullableFilter<$PrismaModel>
|
17437
17340
|
}
|
17438
17341
|
|
17439
|
-
export type NestedFloatNullableWithAggregatesFilter<$PrismaModel = never> = {
|
17440
|
-
equals?: number | FloatFieldRefInput<$PrismaModel> | null
|
17441
|
-
in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
|
17442
|
-
notIn?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
|
17443
|
-
lt?: number | FloatFieldRefInput<$PrismaModel>
|
17444
|
-
lte?: number | FloatFieldRefInput<$PrismaModel>
|
17445
|
-
gt?: number | FloatFieldRefInput<$PrismaModel>
|
17446
|
-
gte?: number | FloatFieldRefInput<$PrismaModel>
|
17447
|
-
not?: NestedFloatNullableWithAggregatesFilter<$PrismaModel> | number | null
|
17448
|
-
_count?: NestedIntNullableFilter<$PrismaModel>
|
17449
|
-
_avg?: NestedFloatNullableFilter<$PrismaModel>
|
17450
|
-
_sum?: NestedFloatNullableFilter<$PrismaModel>
|
17451
|
-
_min?: NestedFloatNullableFilter<$PrismaModel>
|
17452
|
-
_max?: NestedFloatNullableFilter<$PrismaModel>
|
17453
|
-
}
|
17454
|
-
|
17455
17342
|
export type NestedFloatWithAggregatesFilter<$PrismaModel = never> = {
|
17456
17343
|
equals?: number | FloatFieldRefInput<$PrismaModel>
|
17457
17344
|
in?: number[] | ListFloatFieldRefInput<$PrismaModel>
|
@@ -17874,10 +17761,11 @@ export namespace Prisma {
|
|
17874
17761
|
}
|
17875
17762
|
|
17876
17763
|
export type LocationCreateWithoutBirthProfilesInput = {
|
17764
|
+
id?: string
|
17877
17765
|
latitude: number
|
17878
17766
|
longitude: number
|
17879
17767
|
country: string
|
17880
|
-
|
17768
|
+
state: string
|
17881
17769
|
city: string
|
17882
17770
|
created_at?: Date | string
|
17883
17771
|
updated_at?: Date | string
|
@@ -17885,10 +17773,11 @@ export namespace Prisma {
|
|
17885
17773
|
}
|
17886
17774
|
|
17887
17775
|
export type LocationUncheckedCreateWithoutBirthProfilesInput = {
|
17776
|
+
id?: string
|
17888
17777
|
latitude: number
|
17889
17778
|
longitude: number
|
17890
17779
|
country: string
|
17891
|
-
|
17780
|
+
state: string
|
17892
17781
|
city: string
|
17893
17782
|
created_at?: Date | string
|
17894
17783
|
updated_at?: Date | string
|
@@ -17901,10 +17790,11 @@ export namespace Prisma {
|
|
17901
17790
|
}
|
17902
17791
|
|
17903
17792
|
export type LocationCreateWithoutResidenceProfilesInput = {
|
17793
|
+
id?: string
|
17904
17794
|
latitude: number
|
17905
17795
|
longitude: number
|
17906
17796
|
country: string
|
17907
|
-
|
17797
|
+
state: string
|
17908
17798
|
city: string
|
17909
17799
|
created_at?: Date | string
|
17910
17800
|
updated_at?: Date | string
|
@@ -17912,10 +17802,11 @@ export namespace Prisma {
|
|
17912
17802
|
}
|
17913
17803
|
|
17914
17804
|
export type LocationUncheckedCreateWithoutResidenceProfilesInput = {
|
17805
|
+
id?: string
|
17915
17806
|
latitude: number
|
17916
17807
|
longitude: number
|
17917
17808
|
country: string
|
17918
|
-
|
17809
|
+
state: string
|
17919
17810
|
city: string
|
17920
17811
|
created_at?: Date | string
|
17921
17812
|
updated_at?: Date | string
|
@@ -18000,10 +17891,11 @@ export namespace Prisma {
|
|
18000
17891
|
}
|
18001
17892
|
|
18002
17893
|
export type LocationUpdateWithoutBirthProfilesInput = {
|
17894
|
+
id?: StringFieldUpdateOperationsInput | string
|
18003
17895
|
latitude?: FloatFieldUpdateOperationsInput | number
|
18004
17896
|
longitude?: FloatFieldUpdateOperationsInput | number
|
18005
17897
|
country?: StringFieldUpdateOperationsInput | string
|
18006
|
-
|
17898
|
+
state?: StringFieldUpdateOperationsInput | string
|
18007
17899
|
city?: StringFieldUpdateOperationsInput | string
|
18008
17900
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
18009
17901
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -18011,10 +17903,11 @@ export namespace Prisma {
|
|
18011
17903
|
}
|
18012
17904
|
|
18013
17905
|
export type LocationUncheckedUpdateWithoutBirthProfilesInput = {
|
17906
|
+
id?: StringFieldUpdateOperationsInput | string
|
18014
17907
|
latitude?: FloatFieldUpdateOperationsInput | number
|
18015
17908
|
longitude?: FloatFieldUpdateOperationsInput | number
|
18016
17909
|
country?: StringFieldUpdateOperationsInput | string
|
18017
|
-
|
17910
|
+
state?: StringFieldUpdateOperationsInput | string
|
18018
17911
|
city?: StringFieldUpdateOperationsInput | string
|
18019
17912
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
18020
17913
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -18033,10 +17926,11 @@ export namespace Prisma {
|
|
18033
17926
|
}
|
18034
17927
|
|
18035
17928
|
export type LocationUpdateWithoutResidenceProfilesInput = {
|
17929
|
+
id?: StringFieldUpdateOperationsInput | string
|
18036
17930
|
latitude?: FloatFieldUpdateOperationsInput | number
|
18037
17931
|
longitude?: FloatFieldUpdateOperationsInput | number
|
18038
17932
|
country?: StringFieldUpdateOperationsInput | string
|
18039
|
-
|
17933
|
+
state?: StringFieldUpdateOperationsInput | string
|
18040
17934
|
city?: StringFieldUpdateOperationsInput | string
|
18041
17935
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
18042
17936
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -18044,10 +17938,11 @@ export namespace Prisma {
|
|
18044
17938
|
}
|
18045
17939
|
|
18046
17940
|
export type LocationUncheckedUpdateWithoutResidenceProfilesInput = {
|
17941
|
+
id?: StringFieldUpdateOperationsInput | string
|
18047
17942
|
latitude?: FloatFieldUpdateOperationsInput | number
|
18048
17943
|
longitude?: FloatFieldUpdateOperationsInput | number
|
18049
17944
|
country?: StringFieldUpdateOperationsInput | string
|
18050
|
-
|
17945
|
+
state?: StringFieldUpdateOperationsInput | string
|
18051
17946
|
city?: StringFieldUpdateOperationsInput | string
|
18052
17947
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
18053
17948
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -18092,8 +17987,7 @@ export namespace Prisma {
|
|
18092
17987
|
mail?: string | null
|
18093
17988
|
dni?: string | null
|
18094
17989
|
alternativeNames?: ProfileCreatealternativeNamesInput | string[]
|
18095
|
-
|
18096
|
-
residenceLatitude?: number | null
|
17990
|
+
residenceLocationId?: string | null
|
18097
17991
|
isInTrash?: boolean
|
18098
17992
|
movedToTrashDate?: Date | string | null
|
18099
17993
|
created_at?: Date | string
|
@@ -18151,8 +18045,7 @@ export namespace Prisma {
|
|
18151
18045
|
mail?: string | null
|
18152
18046
|
dni?: string | null
|
18153
18047
|
alternativeNames?: ProfileCreatealternativeNamesInput | string[]
|
18154
|
-
|
18155
|
-
birthLatitude?: number | null
|
18048
|
+
birthLocationId?: string | null
|
18156
18049
|
isInTrash?: boolean
|
18157
18050
|
movedToTrashDate?: Date | string | null
|
18158
18051
|
created_at?: Date | string
|
@@ -18205,10 +18098,8 @@ export namespace Prisma {
|
|
18205
18098
|
mail?: StringNullableFilter<"Profile"> | string | null
|
18206
18099
|
dni?: StringNullableFilter<"Profile"> | string | null
|
18207
18100
|
alternativeNames?: StringNullableListFilter<"Profile">
|
18208
|
-
|
18209
|
-
|
18210
|
-
residenceLongitude?: FloatNullableFilter<"Profile"> | number | null
|
18211
|
-
residenceLatitude?: FloatNullableFilter<"Profile"> | number | null
|
18101
|
+
birthLocationId?: StringNullableFilter<"Profile"> | string | null
|
18102
|
+
residenceLocationId?: StringNullableFilter<"Profile"> | string | null
|
18212
18103
|
isInTrash?: BoolFilter<"Profile"> | boolean
|
18213
18104
|
movedToTrashDate?: DateTimeNullableFilter<"Profile"> | Date | string | null
|
18214
18105
|
created_at?: DateTimeFilter<"Profile"> | Date | string
|
@@ -18302,10 +18193,8 @@ export namespace Prisma {
|
|
18302
18193
|
mail?: string | null
|
18303
18194
|
dni?: string | null
|
18304
18195
|
alternativeNames?: ProfileCreatealternativeNamesInput | string[]
|
18305
|
-
|
18306
|
-
|
18307
|
-
residenceLongitude?: number | null
|
18308
|
-
residenceLatitude?: number | null
|
18196
|
+
birthLocationId?: string | null
|
18197
|
+
residenceLocationId?: string | null
|
18309
18198
|
isInTrash?: boolean
|
18310
18199
|
movedToTrashDate?: Date | string | null
|
18311
18200
|
created_at?: Date | string
|
@@ -18440,10 +18329,8 @@ export namespace Prisma {
|
|
18440
18329
|
mail?: NullableStringFieldUpdateOperationsInput | string | null
|
18441
18330
|
dni?: NullableStringFieldUpdateOperationsInput | string | null
|
18442
18331
|
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
18443
|
-
|
18444
|
-
|
18445
|
-
residenceLongitude?: NullableFloatFieldUpdateOperationsInput | number | null
|
18446
|
-
residenceLatitude?: NullableFloatFieldUpdateOperationsInput | number | null
|
18332
|
+
birthLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
18333
|
+
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
18447
18334
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
18448
18335
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
18449
18336
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -18647,10 +18534,8 @@ export namespace Prisma {
|
|
18647
18534
|
mail?: string | null
|
18648
18535
|
dni?: string | null
|
18649
18536
|
alternativeNames?: ProfileCreatealternativeNamesInput | string[]
|
18650
|
-
|
18651
|
-
|
18652
|
-
residenceLongitude?: number | null
|
18653
|
-
residenceLatitude?: number | null
|
18537
|
+
birthLocationId?: string | null
|
18538
|
+
residenceLocationId?: string | null
|
18654
18539
|
isInTrash?: boolean
|
18655
18540
|
movedToTrashDate?: Date | string | null
|
18656
18541
|
created_at?: Date | string
|
@@ -19324,10 +19209,8 @@ export namespace Prisma {
|
|
19324
19209
|
mail?: string | null
|
19325
19210
|
dni?: string | null
|
19326
19211
|
alternativeNames?: ProfileCreatealternativeNamesInput | string[]
|
19327
|
-
|
19328
|
-
|
19329
|
-
residenceLongitude?: number | null
|
19330
|
-
residenceLatitude?: number | null
|
19212
|
+
birthLocationId?: string | null
|
19213
|
+
residenceLocationId?: string | null
|
19331
19214
|
isInTrash?: boolean
|
19332
19215
|
movedToTrashDate?: Date | string | null
|
19333
19216
|
created_at?: Date | string
|
@@ -19390,10 +19273,8 @@ export namespace Prisma {
|
|
19390
19273
|
mail?: NullableStringFieldUpdateOperationsInput | string | null
|
19391
19274
|
dni?: NullableStringFieldUpdateOperationsInput | string | null
|
19392
19275
|
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
19393
|
-
|
19394
|
-
|
19395
|
-
residenceLongitude?: NullableFloatFieldUpdateOperationsInput | number | null
|
19396
|
-
residenceLatitude?: NullableFloatFieldUpdateOperationsInput | number | null
|
19276
|
+
birthLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
19277
|
+
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
19397
19278
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
19398
19279
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
19399
19280
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -19701,8 +19582,7 @@ export namespace Prisma {
|
|
19701
19582
|
mail?: string | null
|
19702
19583
|
dni?: string | null
|
19703
19584
|
alternativeNames?: ProfileCreatealternativeNamesInput | string[]
|
19704
|
-
|
19705
|
-
residenceLatitude?: number | null
|
19585
|
+
residenceLocationId?: string | null
|
19706
19586
|
isInTrash?: boolean
|
19707
19587
|
movedToTrashDate?: Date | string | null
|
19708
19588
|
created_at?: Date | string
|
@@ -19723,8 +19603,7 @@ export namespace Prisma {
|
|
19723
19603
|
mail?: string | null
|
19724
19604
|
dni?: string | null
|
19725
19605
|
alternativeNames?: ProfileCreatealternativeNamesInput | string[]
|
19726
|
-
|
19727
|
-
birthLatitude?: number | null
|
19606
|
+
birthLocationId?: string | null
|
19728
19607
|
isInTrash?: boolean
|
19729
19608
|
movedToTrashDate?: Date | string | null
|
19730
19609
|
created_at?: Date | string
|
@@ -19769,8 +19648,7 @@ export namespace Prisma {
|
|
19769
19648
|
mail?: NullableStringFieldUpdateOperationsInput | string | null
|
19770
19649
|
dni?: NullableStringFieldUpdateOperationsInput | string | null
|
19771
19650
|
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
19772
|
-
|
19773
|
-
residenceLatitude?: NullableFloatFieldUpdateOperationsInput | number | null
|
19651
|
+
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
19774
19652
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
19775
19653
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
19776
19654
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -19794,8 +19672,7 @@ export namespace Prisma {
|
|
19794
19672
|
mail?: NullableStringFieldUpdateOperationsInput | string | null
|
19795
19673
|
dni?: NullableStringFieldUpdateOperationsInput | string | null
|
19796
19674
|
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
19797
|
-
|
19798
|
-
residenceLatitude?: NullableFloatFieldUpdateOperationsInput | number | null
|
19675
|
+
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
19799
19676
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
19800
19677
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
19801
19678
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -19840,8 +19717,7 @@ export namespace Prisma {
|
|
19840
19717
|
mail?: NullableStringFieldUpdateOperationsInput | string | null
|
19841
19718
|
dni?: NullableStringFieldUpdateOperationsInput | string | null
|
19842
19719
|
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
19843
|
-
|
19844
|
-
birthLatitude?: NullableFloatFieldUpdateOperationsInput | number | null
|
19720
|
+
birthLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
19845
19721
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
19846
19722
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
19847
19723
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -19865,8 +19741,7 @@ export namespace Prisma {
|
|
19865
19741
|
mail?: NullableStringFieldUpdateOperationsInput | string | null
|
19866
19742
|
dni?: NullableStringFieldUpdateOperationsInput | string | null
|
19867
19743
|
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
19868
|
-
|
19869
|
-
birthLatitude?: NullableFloatFieldUpdateOperationsInput | number | null
|
19744
|
+
birthLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
19870
19745
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
19871
19746
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
19872
19747
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -19950,10 +19825,8 @@ export namespace Prisma {
|
|
19950
19825
|
mail?: NullableStringFieldUpdateOperationsInput | string | null
|
19951
19826
|
dni?: NullableStringFieldUpdateOperationsInput | string | null
|
19952
19827
|
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
19953
|
-
|
19954
|
-
|
19955
|
-
residenceLongitude?: NullableFloatFieldUpdateOperationsInput | number | null
|
19956
|
-
residenceLatitude?: NullableFloatFieldUpdateOperationsInput | number | null
|
19828
|
+
birthLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
19829
|
+
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
19957
19830
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
19958
19831
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
19959
19832
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -19976,10 +19849,8 @@ export namespace Prisma {
|
|
19976
19849
|
mail?: NullableStringFieldUpdateOperationsInput | string | null
|
19977
19850
|
dni?: NullableStringFieldUpdateOperationsInput | string | null
|
19978
19851
|
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
19979
|
-
|
19980
|
-
|
19981
|
-
residenceLongitude?: NullableFloatFieldUpdateOperationsInput | number | null
|
19982
|
-
residenceLatitude?: NullableFloatFieldUpdateOperationsInput | number | null
|
19852
|
+
birthLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
19853
|
+
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
19983
19854
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
19984
19855
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
19985
19856
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|