@vertikalx/vtx-backend-client 1.0.0-dev-daniel.184 → 1.0.0-dev-daniel.186
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/package.json +1 -1
- package/src/api/vtx-base-api.js +330 -6
- package/src/api/vtx-base-api.js.map +1 -1
- package/src/client/schema.d.ts +2 -0
- package/src/client/schema.graphql +1 -0
- package/src/client/schema.js.map +1 -1
- package/src/client/types.d.ts +1 -0
- package/src/client/types.js +3 -0
- package/src/client/types.js.map +1 -1
- package/tsconfig.lib.tsbuildinfo +1 -1
package/package.json
CHANGED
package/src/api/vtx-base-api.js
CHANGED
|
@@ -328,7 +328,34 @@ class VTXBaseAPI {
|
|
|
328
328
|
useType: true,
|
|
329
329
|
url: true,
|
|
330
330
|
key: true
|
|
331
|
-
}
|
|
331
|
+
},
|
|
332
|
+
location: {
|
|
333
|
+
_id: true,
|
|
334
|
+
userProvidedLatitude: true,
|
|
335
|
+
userProvidedLongitude: true,
|
|
336
|
+
cityNameGeocode: true,
|
|
337
|
+
stateNameGeocode: true,
|
|
338
|
+
countryIso2CodeGeocode: true,
|
|
339
|
+
timeZoneGeocode: true,
|
|
340
|
+
latitudeGeocode: true,
|
|
341
|
+
longitudeGeocode: true,
|
|
342
|
+
city: {
|
|
343
|
+
_id: true,
|
|
344
|
+
name: true,
|
|
345
|
+
localizedName: true,
|
|
346
|
+
state: {
|
|
347
|
+
_id: true,
|
|
348
|
+
name: true,
|
|
349
|
+
country: {
|
|
350
|
+
_id: true,
|
|
351
|
+
name: true
|
|
352
|
+
}
|
|
353
|
+
},
|
|
354
|
+
latitude: true,
|
|
355
|
+
longitude: true,
|
|
356
|
+
timezone: true,
|
|
357
|
+
}
|
|
358
|
+
},
|
|
332
359
|
},
|
|
333
360
|
participationDate: true,
|
|
334
361
|
result: {
|
|
@@ -2022,6 +2049,33 @@ class VTXBaseAPI {
|
|
|
2022
2049
|
startDate: true,
|
|
2023
2050
|
endDate: true,
|
|
2024
2051
|
verified: true,
|
|
2052
|
+
location: {
|
|
2053
|
+
_id: true,
|
|
2054
|
+
userProvidedLatitude: true,
|
|
2055
|
+
userProvidedLongitude: true,
|
|
2056
|
+
cityNameGeocode: true,
|
|
2057
|
+
stateNameGeocode: true,
|
|
2058
|
+
countryIso2CodeGeocode: true,
|
|
2059
|
+
timeZoneGeocode: true,
|
|
2060
|
+
latitudeGeocode: true,
|
|
2061
|
+
longitudeGeocode: true,
|
|
2062
|
+
city: {
|
|
2063
|
+
_id: true,
|
|
2064
|
+
name: true,
|
|
2065
|
+
localizedName: true,
|
|
2066
|
+
state: {
|
|
2067
|
+
_id: true,
|
|
2068
|
+
name: true,
|
|
2069
|
+
country: {
|
|
2070
|
+
_id: true,
|
|
2071
|
+
name: true
|
|
2072
|
+
}
|
|
2073
|
+
},
|
|
2074
|
+
latitude: true,
|
|
2075
|
+
longitude: true,
|
|
2076
|
+
timezone: true,
|
|
2077
|
+
}
|
|
2078
|
+
},
|
|
2025
2079
|
banner: {
|
|
2026
2080
|
_id: true,
|
|
2027
2081
|
name: true,
|
|
@@ -2132,7 +2186,34 @@ class VTXBaseAPI {
|
|
|
2132
2186
|
useType: true,
|
|
2133
2187
|
url: true,
|
|
2134
2188
|
key: true
|
|
2135
|
-
}
|
|
2189
|
+
},
|
|
2190
|
+
location: {
|
|
2191
|
+
_id: true,
|
|
2192
|
+
userProvidedLatitude: true,
|
|
2193
|
+
userProvidedLongitude: true,
|
|
2194
|
+
cityNameGeocode: true,
|
|
2195
|
+
stateNameGeocode: true,
|
|
2196
|
+
countryIso2CodeGeocode: true,
|
|
2197
|
+
timeZoneGeocode: true,
|
|
2198
|
+
latitudeGeocode: true,
|
|
2199
|
+
longitudeGeocode: true,
|
|
2200
|
+
city: {
|
|
2201
|
+
_id: true,
|
|
2202
|
+
name: true,
|
|
2203
|
+
localizedName: true,
|
|
2204
|
+
state: {
|
|
2205
|
+
_id: true,
|
|
2206
|
+
name: true,
|
|
2207
|
+
country: {
|
|
2208
|
+
_id: true,
|
|
2209
|
+
name: true
|
|
2210
|
+
}
|
|
2211
|
+
},
|
|
2212
|
+
latitude: true,
|
|
2213
|
+
longitude: true,
|
|
2214
|
+
timezone: true,
|
|
2215
|
+
}
|
|
2216
|
+
},
|
|
2136
2217
|
},
|
|
2137
2218
|
participationDate: true,
|
|
2138
2219
|
result: {
|
|
@@ -2399,7 +2480,34 @@ class VTXBaseAPI {
|
|
|
2399
2480
|
useType: true,
|
|
2400
2481
|
url: true,
|
|
2401
2482
|
key: true
|
|
2402
|
-
}
|
|
2483
|
+
},
|
|
2484
|
+
location: {
|
|
2485
|
+
_id: true,
|
|
2486
|
+
userProvidedLatitude: true,
|
|
2487
|
+
userProvidedLongitude: true,
|
|
2488
|
+
cityNameGeocode: true,
|
|
2489
|
+
stateNameGeocode: true,
|
|
2490
|
+
countryIso2CodeGeocode: true,
|
|
2491
|
+
timeZoneGeocode: true,
|
|
2492
|
+
latitudeGeocode: true,
|
|
2493
|
+
longitudeGeocode: true,
|
|
2494
|
+
city: {
|
|
2495
|
+
_id: true,
|
|
2496
|
+
name: true,
|
|
2497
|
+
localizedName: true,
|
|
2498
|
+
state: {
|
|
2499
|
+
_id: true,
|
|
2500
|
+
name: true,
|
|
2501
|
+
country: {
|
|
2502
|
+
_id: true,
|
|
2503
|
+
name: true
|
|
2504
|
+
}
|
|
2505
|
+
},
|
|
2506
|
+
latitude: true,
|
|
2507
|
+
longitude: true,
|
|
2508
|
+
timezone: true,
|
|
2509
|
+
}
|
|
2510
|
+
},
|
|
2403
2511
|
},
|
|
2404
2512
|
participationDate: true,
|
|
2405
2513
|
result: {
|
|
@@ -2626,7 +2734,34 @@ class VTXBaseAPI {
|
|
|
2626
2734
|
useType: true,
|
|
2627
2735
|
url: true,
|
|
2628
2736
|
key: true
|
|
2629
|
-
}
|
|
2737
|
+
},
|
|
2738
|
+
location: {
|
|
2739
|
+
_id: true,
|
|
2740
|
+
userProvidedLatitude: true,
|
|
2741
|
+
userProvidedLongitude: true,
|
|
2742
|
+
cityNameGeocode: true,
|
|
2743
|
+
stateNameGeocode: true,
|
|
2744
|
+
countryIso2CodeGeocode: true,
|
|
2745
|
+
timeZoneGeocode: true,
|
|
2746
|
+
latitudeGeocode: true,
|
|
2747
|
+
longitudeGeocode: true,
|
|
2748
|
+
city: {
|
|
2749
|
+
_id: true,
|
|
2750
|
+
name: true,
|
|
2751
|
+
localizedName: true,
|
|
2752
|
+
state: {
|
|
2753
|
+
_id: true,
|
|
2754
|
+
name: true,
|
|
2755
|
+
country: {
|
|
2756
|
+
_id: true,
|
|
2757
|
+
name: true
|
|
2758
|
+
}
|
|
2759
|
+
},
|
|
2760
|
+
latitude: true,
|
|
2761
|
+
longitude: true,
|
|
2762
|
+
timezone: true,
|
|
2763
|
+
}
|
|
2764
|
+
},
|
|
2630
2765
|
},
|
|
2631
2766
|
participationDate: true,
|
|
2632
2767
|
result: {
|
|
@@ -2855,7 +2990,34 @@ class VTXBaseAPI {
|
|
|
2855
2990
|
useType: true,
|
|
2856
2991
|
url: true,
|
|
2857
2992
|
key: true
|
|
2858
|
-
}
|
|
2993
|
+
},
|
|
2994
|
+
location: {
|
|
2995
|
+
_id: true,
|
|
2996
|
+
userProvidedLatitude: true,
|
|
2997
|
+
userProvidedLongitude: true,
|
|
2998
|
+
cityNameGeocode: true,
|
|
2999
|
+
stateNameGeocode: true,
|
|
3000
|
+
countryIso2CodeGeocode: true,
|
|
3001
|
+
timeZoneGeocode: true,
|
|
3002
|
+
latitudeGeocode: true,
|
|
3003
|
+
longitudeGeocode: true,
|
|
3004
|
+
city: {
|
|
3005
|
+
_id: true,
|
|
3006
|
+
name: true,
|
|
3007
|
+
localizedName: true,
|
|
3008
|
+
state: {
|
|
3009
|
+
_id: true,
|
|
3010
|
+
name: true,
|
|
3011
|
+
country: {
|
|
3012
|
+
_id: true,
|
|
3013
|
+
name: true
|
|
3014
|
+
}
|
|
3015
|
+
},
|
|
3016
|
+
latitude: true,
|
|
3017
|
+
longitude: true,
|
|
3018
|
+
timezone: true,
|
|
3019
|
+
}
|
|
3020
|
+
},
|
|
2859
3021
|
},
|
|
2860
3022
|
participationDate: true,
|
|
2861
3023
|
result: {
|
|
@@ -3084,7 +3246,34 @@ class VTXBaseAPI {
|
|
|
3084
3246
|
useType: true,
|
|
3085
3247
|
url: true,
|
|
3086
3248
|
key: true
|
|
3087
|
-
}
|
|
3249
|
+
},
|
|
3250
|
+
location: {
|
|
3251
|
+
_id: true,
|
|
3252
|
+
userProvidedLatitude: true,
|
|
3253
|
+
userProvidedLongitude: true,
|
|
3254
|
+
cityNameGeocode: true,
|
|
3255
|
+
stateNameGeocode: true,
|
|
3256
|
+
countryIso2CodeGeocode: true,
|
|
3257
|
+
timeZoneGeocode: true,
|
|
3258
|
+
latitudeGeocode: true,
|
|
3259
|
+
longitudeGeocode: true,
|
|
3260
|
+
city: {
|
|
3261
|
+
_id: true,
|
|
3262
|
+
name: true,
|
|
3263
|
+
localizedName: true,
|
|
3264
|
+
state: {
|
|
3265
|
+
_id: true,
|
|
3266
|
+
name: true,
|
|
3267
|
+
country: {
|
|
3268
|
+
_id: true,
|
|
3269
|
+
name: true
|
|
3270
|
+
}
|
|
3271
|
+
},
|
|
3272
|
+
latitude: true,
|
|
3273
|
+
longitude: true,
|
|
3274
|
+
timezone: true,
|
|
3275
|
+
}
|
|
3276
|
+
},
|
|
3088
3277
|
},
|
|
3089
3278
|
participationDate: true,
|
|
3090
3279
|
result: {
|
|
@@ -3285,6 +3474,33 @@ class VTXBaseAPI {
|
|
|
3285
3474
|
url: true,
|
|
3286
3475
|
key: true
|
|
3287
3476
|
},
|
|
3477
|
+
location: {
|
|
3478
|
+
_id: true,
|
|
3479
|
+
userProvidedLatitude: true,
|
|
3480
|
+
userProvidedLongitude: true,
|
|
3481
|
+
cityNameGeocode: true,
|
|
3482
|
+
stateNameGeocode: true,
|
|
3483
|
+
countryIso2CodeGeocode: true,
|
|
3484
|
+
timeZoneGeocode: true,
|
|
3485
|
+
latitudeGeocode: true,
|
|
3486
|
+
longitudeGeocode: true,
|
|
3487
|
+
city: {
|
|
3488
|
+
_id: true,
|
|
3489
|
+
name: true,
|
|
3490
|
+
localizedName: true,
|
|
3491
|
+
state: {
|
|
3492
|
+
_id: true,
|
|
3493
|
+
name: true,
|
|
3494
|
+
country: {
|
|
3495
|
+
_id: true,
|
|
3496
|
+
name: true
|
|
3497
|
+
}
|
|
3498
|
+
},
|
|
3499
|
+
latitude: true,
|
|
3500
|
+
longitude: true,
|
|
3501
|
+
timezone: true,
|
|
3502
|
+
}
|
|
3503
|
+
},
|
|
3288
3504
|
},
|
|
3289
3505
|
participationDate: true,
|
|
3290
3506
|
competitionNumber: true,
|
|
@@ -3340,6 +3556,33 @@ class VTXBaseAPI {
|
|
|
3340
3556
|
useType: true,
|
|
3341
3557
|
url: true,
|
|
3342
3558
|
key: true
|
|
3559
|
+
},
|
|
3560
|
+
location: {
|
|
3561
|
+
_id: true,
|
|
3562
|
+
userProvidedLatitude: true,
|
|
3563
|
+
userProvidedLongitude: true,
|
|
3564
|
+
cityNameGeocode: true,
|
|
3565
|
+
stateNameGeocode: true,
|
|
3566
|
+
countryIso2CodeGeocode: true,
|
|
3567
|
+
timeZoneGeocode: true,
|
|
3568
|
+
latitudeGeocode: true,
|
|
3569
|
+
longitudeGeocode: true,
|
|
3570
|
+
city: {
|
|
3571
|
+
_id: true,
|
|
3572
|
+
name: true,
|
|
3573
|
+
localizedName: true,
|
|
3574
|
+
state: {
|
|
3575
|
+
_id: true,
|
|
3576
|
+
name: true,
|
|
3577
|
+
country: {
|
|
3578
|
+
_id: true,
|
|
3579
|
+
name: true
|
|
3580
|
+
}
|
|
3581
|
+
},
|
|
3582
|
+
latitude: true,
|
|
3583
|
+
longitude: true,
|
|
3584
|
+
timezone: true,
|
|
3585
|
+
}
|
|
3343
3586
|
}
|
|
3344
3587
|
};
|
|
3345
3588
|
let retValue;
|
|
@@ -3391,6 +3634,33 @@ class VTXBaseAPI {
|
|
|
3391
3634
|
url: true,
|
|
3392
3635
|
key: true
|
|
3393
3636
|
},
|
|
3637
|
+
location: {
|
|
3638
|
+
_id: true,
|
|
3639
|
+
userProvidedLatitude: true,
|
|
3640
|
+
userProvidedLongitude: true,
|
|
3641
|
+
cityNameGeocode: true,
|
|
3642
|
+
stateNameGeocode: true,
|
|
3643
|
+
countryIso2CodeGeocode: true,
|
|
3644
|
+
timeZoneGeocode: true,
|
|
3645
|
+
latitudeGeocode: true,
|
|
3646
|
+
longitudeGeocode: true,
|
|
3647
|
+
city: {
|
|
3648
|
+
_id: true,
|
|
3649
|
+
name: true,
|
|
3650
|
+
localizedName: true,
|
|
3651
|
+
state: {
|
|
3652
|
+
_id: true,
|
|
3653
|
+
name: true,
|
|
3654
|
+
country: {
|
|
3655
|
+
_id: true,
|
|
3656
|
+
name: true
|
|
3657
|
+
}
|
|
3658
|
+
},
|
|
3659
|
+
latitude: true,
|
|
3660
|
+
longitude: true,
|
|
3661
|
+
timezone: true,
|
|
3662
|
+
}
|
|
3663
|
+
}
|
|
3394
3664
|
};
|
|
3395
3665
|
try {
|
|
3396
3666
|
const response = await client.mutation({
|
|
@@ -3438,6 +3708,33 @@ class VTXBaseAPI {
|
|
|
3438
3708
|
url: true,
|
|
3439
3709
|
key: true
|
|
3440
3710
|
},
|
|
3711
|
+
location: {
|
|
3712
|
+
_id: true,
|
|
3713
|
+
userProvidedLatitude: true,
|
|
3714
|
+
userProvidedLongitude: true,
|
|
3715
|
+
cityNameGeocode: true,
|
|
3716
|
+
stateNameGeocode: true,
|
|
3717
|
+
countryIso2CodeGeocode: true,
|
|
3718
|
+
timeZoneGeocode: true,
|
|
3719
|
+
latitudeGeocode: true,
|
|
3720
|
+
longitudeGeocode: true,
|
|
3721
|
+
city: {
|
|
3722
|
+
_id: true,
|
|
3723
|
+
name: true,
|
|
3724
|
+
localizedName: true,
|
|
3725
|
+
state: {
|
|
3726
|
+
_id: true,
|
|
3727
|
+
name: true,
|
|
3728
|
+
country: {
|
|
3729
|
+
_id: true,
|
|
3730
|
+
name: true
|
|
3731
|
+
}
|
|
3732
|
+
},
|
|
3733
|
+
latitude: true,
|
|
3734
|
+
longitude: true,
|
|
3735
|
+
timezone: true,
|
|
3736
|
+
}
|
|
3737
|
+
},
|
|
3441
3738
|
},
|
|
3442
3739
|
participationDate: true,
|
|
3443
3740
|
competitionNumber: true,
|
|
@@ -3767,6 +4064,33 @@ class VTXBaseAPI {
|
|
|
3767
4064
|
url: true,
|
|
3768
4065
|
key: true
|
|
3769
4066
|
},
|
|
4067
|
+
location: {
|
|
4068
|
+
_id: true,
|
|
4069
|
+
userProvidedLatitude: true,
|
|
4070
|
+
userProvidedLongitude: true,
|
|
4071
|
+
cityNameGeocode: true,
|
|
4072
|
+
stateNameGeocode: true,
|
|
4073
|
+
countryIso2CodeGeocode: true,
|
|
4074
|
+
timeZoneGeocode: true,
|
|
4075
|
+
latitudeGeocode: true,
|
|
4076
|
+
longitudeGeocode: true,
|
|
4077
|
+
city: {
|
|
4078
|
+
_id: true,
|
|
4079
|
+
name: true,
|
|
4080
|
+
localizedName: true,
|
|
4081
|
+
state: {
|
|
4082
|
+
_id: true,
|
|
4083
|
+
name: true,
|
|
4084
|
+
country: {
|
|
4085
|
+
_id: true,
|
|
4086
|
+
name: true
|
|
4087
|
+
}
|
|
4088
|
+
},
|
|
4089
|
+
latitude: true,
|
|
4090
|
+
longitude: true,
|
|
4091
|
+
timezone: true,
|
|
4092
|
+
}
|
|
4093
|
+
},
|
|
3770
4094
|
},
|
|
3771
4095
|
participationDate: true,
|
|
3772
4096
|
competitionNumber: true,
|