@vertikalx/vtx-backend-client 1.0.0-dev.21 → 1.0.0-dev.23
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 +2 -1
- package/src/api/vtx-base-api.js.map +1 -1
- package/src/client/schema.d.ts +699 -18
- package/src/client/schema.graphql +340 -5
- package/src/client/schema.js +199 -16
- package/src/client/schema.js.map +1 -1
- package/src/client/types.d.ts +353 -4
- package/src/client/types.js +923 -44
- package/src/client/types.js.map +1 -1
- package/tsconfig.lib.tsbuildinfo +1 -1
|
@@ -257,15 +257,183 @@ type Brand {
|
|
|
257
257
|
translations: [BrandTranslation!]
|
|
258
258
|
}
|
|
259
259
|
|
|
260
|
-
type
|
|
260
|
+
type CountryReference {
|
|
261
261
|
_id: String!
|
|
262
262
|
name: String!
|
|
263
|
-
description: String!
|
|
264
263
|
}
|
|
265
264
|
|
|
266
|
-
type
|
|
265
|
+
type StateReference {
|
|
266
|
+
_id: String!
|
|
267
|
+
name: String!
|
|
268
|
+
country: CountryReference
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
type CityReference {
|
|
272
|
+
_id: String!
|
|
273
|
+
name: String!
|
|
274
|
+
state: StateReference
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
type Qualification {
|
|
278
|
+
type: String!
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
type ScoreQualification {
|
|
282
|
+
type: String!
|
|
283
|
+
scoreType: String!
|
|
284
|
+
operator: String!
|
|
285
|
+
value: Float!
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
type LocationQualification {
|
|
289
|
+
type: String!
|
|
290
|
+
operator: String!
|
|
291
|
+
countries: [CountryReference!]!
|
|
292
|
+
states: [StateReference!]!
|
|
293
|
+
cities: [CityReference!]!
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
type DistanceQualification {
|
|
297
|
+
type: String!
|
|
298
|
+
maxDistance: Float!
|
|
299
|
+
latitude: Float
|
|
300
|
+
longitude: Float
|
|
301
|
+
cityId: String
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
type SportsQualification {
|
|
305
|
+
type: String!
|
|
306
|
+
sports: [String!]!
|
|
307
|
+
operator: String!
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
type SportsLevelQualification {
|
|
311
|
+
type: String!
|
|
312
|
+
operator: String!
|
|
313
|
+
level: String!
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
type AthleteCriteria {
|
|
317
|
+
_id: String!
|
|
318
|
+
label: String
|
|
319
|
+
qualifications: [Qualification!]
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
type SponsorshipStats {
|
|
323
|
+
totalApplications: Float
|
|
324
|
+
newApplications: Float
|
|
325
|
+
discardedApplications: Float
|
|
326
|
+
selectedApplications: Float
|
|
327
|
+
approvedApplications: Float
|
|
328
|
+
grantedSponsorships: Float
|
|
329
|
+
remainingSponsorships: Float
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
type SponsorshipTranslation {
|
|
333
|
+
_id: String!
|
|
334
|
+
sponsorshipId: String!
|
|
335
|
+
language: String!
|
|
336
|
+
title: String
|
|
337
|
+
description: String
|
|
338
|
+
terms: String
|
|
339
|
+
banner: AWSS3File
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
type Sponsorship {
|
|
343
|
+
_id: String!
|
|
344
|
+
title: String!
|
|
345
|
+
description: String
|
|
346
|
+
terms: String
|
|
347
|
+
banner: AWSS3File
|
|
348
|
+
stats: SponsorshipStats
|
|
349
|
+
translations: [SponsorshipTranslation!]
|
|
350
|
+
approved: Boolean!
|
|
351
|
+
published: Boolean!
|
|
352
|
+
criteria: AthleteCriteria
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
type FollowStats {
|
|
356
|
+
followers: Float!
|
|
357
|
+
followed: Float!
|
|
358
|
+
raves: Float!
|
|
359
|
+
favorites: Float!
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
type Sport {
|
|
363
|
+
_id: String!
|
|
364
|
+
name: String!
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
type VtxScores {
|
|
368
|
+
vtxScore: Float!
|
|
369
|
+
socialScore: Float!
|
|
370
|
+
trainingScore: Float!
|
|
371
|
+
competitionScore: Float!
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
type SportLevelTranslation {
|
|
375
|
+
_id: String!
|
|
376
|
+
language: String!
|
|
377
|
+
label: String!
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
type SportLevel {
|
|
381
|
+
_id: String!
|
|
382
|
+
label: String!
|
|
383
|
+
index: Float!
|
|
384
|
+
translations: [SportLevelTranslation!]
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
type Ranking {
|
|
388
|
+
scope: String!
|
|
389
|
+
scopeId: String!
|
|
390
|
+
scopeName: String!
|
|
391
|
+
position: Float!
|
|
392
|
+
total: Float!
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
type AthleteRankings {
|
|
396
|
+
worldRanking: Ranking
|
|
397
|
+
countryRanking: Ranking
|
|
398
|
+
stateRanking: Ranking
|
|
399
|
+
cityRanking: Ranking
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
type Team {
|
|
267
403
|
_id: String!
|
|
268
404
|
name: String!
|
|
405
|
+
description: String
|
|
406
|
+
sports: [Sport!]
|
|
407
|
+
approved: Boolean
|
|
408
|
+
logo: AWSS3File
|
|
409
|
+
banner: AWSS3File
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
type SportsEvent {
|
|
413
|
+
_id: String!
|
|
414
|
+
name: String!
|
|
415
|
+
eventWebSite: String
|
|
416
|
+
startDate: DateTime!
|
|
417
|
+
endDate: DateTime
|
|
418
|
+
verified: Boolean!
|
|
419
|
+
banner: AWSS3File
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
type AthleteCompetitionResult {
|
|
423
|
+
_id: String!
|
|
424
|
+
type: String!
|
|
425
|
+
position: Float
|
|
426
|
+
score: String
|
|
427
|
+
timems: Float
|
|
428
|
+
resultWebLink: String
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
type AthleteCompetition {
|
|
432
|
+
_id: String!
|
|
433
|
+
event: SportsEvent!
|
|
434
|
+
eventName: String!
|
|
435
|
+
date: DateTime!
|
|
436
|
+
result: AthleteCompetitionResult
|
|
269
437
|
}
|
|
270
438
|
|
|
271
439
|
type Athlete {
|
|
@@ -273,12 +441,118 @@ type Athlete {
|
|
|
273
441
|
firstName: String!
|
|
274
442
|
lastName: String!
|
|
275
443
|
screenName: String
|
|
276
|
-
|
|
444
|
+
countryId: String
|
|
445
|
+
countryName: String
|
|
446
|
+
trainer: String
|
|
447
|
+
trainerUrl: String
|
|
448
|
+
followStats: FollowStats
|
|
449
|
+
mainSport: Sport!
|
|
450
|
+
mainSportLevel: SportLevel!
|
|
451
|
+
scores: VtxScores!
|
|
452
|
+
rankings: AthleteRankings
|
|
453
|
+
allSports: [Sport!]
|
|
454
|
+
teams: [Team!]
|
|
455
|
+
sponsorBrands: [Brand!]
|
|
456
|
+
competitions: [AthleteCompetition!]
|
|
457
|
+
totalUpcomingCompetitions: Float
|
|
458
|
+
totalPastCompetitions: Float
|
|
277
459
|
}
|
|
278
460
|
|
|
279
|
-
type
|
|
461
|
+
type Industry {
|
|
462
|
+
_id: String!
|
|
463
|
+
name: String!
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
type Sponsor {
|
|
467
|
+
_id: String!
|
|
468
|
+
name: String!
|
|
469
|
+
description: String!
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
type WorldCity {
|
|
473
|
+
id: String!
|
|
474
|
+
city: String!
|
|
475
|
+
city_ascii: String!
|
|
476
|
+
city_alt: String!
|
|
477
|
+
lat: Float!
|
|
478
|
+
lng: Float!
|
|
479
|
+
country: String!
|
|
480
|
+
iso2: String!
|
|
481
|
+
iso3: String!
|
|
482
|
+
admin_name: String!
|
|
483
|
+
admin_name_ascii: String!
|
|
484
|
+
admin_code: String!
|
|
485
|
+
admin_type: String!
|
|
486
|
+
capital: String!
|
|
487
|
+
density: Float!
|
|
488
|
+
population: Float!
|
|
489
|
+
population_proper: Float!
|
|
490
|
+
ranking: Float!
|
|
491
|
+
timezone: String!
|
|
492
|
+
same_name: String!
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
type Country {
|
|
496
|
+
_id: String!
|
|
497
|
+
name: String!
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
type State {
|
|
501
|
+
_id: String!
|
|
502
|
+
name: String!
|
|
503
|
+
countryId: String!
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
input ScoreQualificationDto {
|
|
507
|
+
type: String!
|
|
508
|
+
scoreType: String!
|
|
509
|
+
operator: String!
|
|
510
|
+
value: Float!
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
input LocationQualificationDto {
|
|
514
|
+
type: String!
|
|
515
|
+
operator: String!
|
|
516
|
+
countries: [CountryReferenceDto!]!
|
|
517
|
+
states: [StateReferenceDto!]!
|
|
518
|
+
cities: [CityReferenceDto!]!
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
input CountryReferenceDto {
|
|
522
|
+
_id: String!
|
|
523
|
+
name: String!
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
input StateReferenceDto {
|
|
527
|
+
_id: String!
|
|
528
|
+
name: String!
|
|
529
|
+
country: CountryReferenceDto
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
input CityReferenceDto {
|
|
280
533
|
_id: String!
|
|
281
534
|
name: String!
|
|
535
|
+
state: StateReferenceDto
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
input DistanceQualificationDto {
|
|
539
|
+
type: String!
|
|
540
|
+
maxDistance: Float!
|
|
541
|
+
latitude: Float
|
|
542
|
+
longitude: Float
|
|
543
|
+
cityId: String
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
input SportsQualificationDto {
|
|
547
|
+
type: String!
|
|
548
|
+
sports: [String!]!
|
|
549
|
+
operator: String!
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
input SportsLevelQualificationDto {
|
|
553
|
+
type: String!
|
|
554
|
+
operator: String!
|
|
555
|
+
level: String!
|
|
282
556
|
}
|
|
283
557
|
|
|
284
558
|
type Query {
|
|
@@ -300,6 +574,11 @@ type Query {
|
|
|
300
574
|
findAthleteById(athleteId: String!): Athlete!
|
|
301
575
|
sports: [Sport!]!
|
|
302
576
|
findSportById(sportId: String!): Sport!
|
|
577
|
+
getSponsorships(sponsorId: String!): [Sponsorship!]!
|
|
578
|
+
getCountries: [Country!]!
|
|
579
|
+
getCountryStates(countryId: String!): [State!]!
|
|
580
|
+
getStateCities(stateId: String!): [WorldCity!]!
|
|
581
|
+
findCitiesStartingWth(text: String!): [WorldCity!]!
|
|
303
582
|
}
|
|
304
583
|
|
|
305
584
|
input AWSS3GetUploadDto {
|
|
@@ -324,6 +603,9 @@ type Mutation {
|
|
|
324
603
|
registerAthlete(input: RegisterAthleteDto!): Athlete!
|
|
325
604
|
createSport(input: CreateSportDto!): Sport!
|
|
326
605
|
updateSport(sportId: String!, input: UpdateSportDto!): Sport!
|
|
606
|
+
createSponsorwhip(input: CreateSponsorshipDto!): Sponsorship!
|
|
607
|
+
createCountry(input: CreateCountryDto!): Country!
|
|
608
|
+
createState(input: CreateStateDto!): State!
|
|
327
609
|
}
|
|
328
610
|
|
|
329
611
|
input CreateTenantInput {
|
|
@@ -430,4 +712,57 @@ input CreateSportDto {
|
|
|
430
712
|
|
|
431
713
|
input UpdateSportDto {
|
|
432
714
|
name: String!
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
input CreateSponsorshipDto {
|
|
718
|
+
title: String!
|
|
719
|
+
brandId: String!
|
|
720
|
+
description: String
|
|
721
|
+
cashValue: Float = 0
|
|
722
|
+
otherValue: Float = 0
|
|
723
|
+
banner: AWSS3UploadedFileDto
|
|
724
|
+
criteria: AthleteCriteriaDto
|
|
725
|
+
sponsorshipItems: [SponsorshipItemDto!]
|
|
726
|
+
commitments: [SponsorshipCommitmentDto!]
|
|
727
|
+
terms: String
|
|
728
|
+
published: Boolean = true
|
|
729
|
+
translations: [SponsorshipTranslationDto!]
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
input AthleteCriteriaDto {
|
|
733
|
+
_id: String!
|
|
734
|
+
label: String
|
|
735
|
+
qualifications: [QualificationDto!]
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
input QualificationDto {
|
|
739
|
+
type: String!
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
input SponsorshipItemDto {
|
|
743
|
+
_id: String!
|
|
744
|
+
name: String!
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
input SponsorshipCommitmentDto {
|
|
748
|
+
_id: String!
|
|
749
|
+
name: String!
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
input SponsorshipTranslationDto {
|
|
753
|
+
title: String
|
|
754
|
+
description: String
|
|
755
|
+
banner: AWSS3UploadedFileDto
|
|
756
|
+
terms: String
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
input CreateCountryDto {
|
|
760
|
+
id: String!
|
|
761
|
+
name: String!
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
input CreateStateDto {
|
|
765
|
+
id: String!
|
|
766
|
+
name: String!
|
|
767
|
+
idCountry: String!
|
|
433
768
|
}
|
package/src/client/schema.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.isAthleteCompetitionResult = exports.isSportsEvent = exports.isTeam = exports.isAthleteRankings = exports.isRanking = exports.isSportLevel = exports.isSportLevelTranslation = exports.isVtxScores = exports.isSport = exports.isFollowStats = exports.isSponsorship = exports.isSponsorshipTranslation = exports.isSponsorshipStats = exports.isAthleteCriteria = exports.isSportsLevelQualification = exports.isSportsQualification = exports.isDistanceQualification = exports.isLocationQualification = exports.isScoreQualification = exports.isQualification = exports.isCityReference = exports.isStateReference = exports.isCountryReference = exports.isBrand = exports.isBrandTranslation = exports.isBrandStats = exports.isAWSS3CallResult = exports.isAWSS3UploadUrl = exports.isHttpRequestField = exports.isAWSS3File = exports.isSubscriptionPayment = exports.isPlanSubscription = exports.isSubscriptionInvoice = exports.isInvoice = exports.isPlanPrice = exports.isPlan = exports.isPlaFeature = exports.isPayment = exports.isInvoiceItem = exports.isBillEntity = exports.isAgreement = exports.isUriAvailableType = exports.isTenantWithUserLogin = exports.isUserToken = exports.isDomainCredential = exports.isDomain = exports.isTenant = exports.isBaseTenant = exports.isUserWithToken = exports.isUser = void 0;
|
|
4
|
+
exports.isMutation = exports.isQuery = exports.isState = exports.isCountry = exports.isWorldCity = exports.isSponsor = exports.isIndustry = exports.isAthlete = exports.isAthleteCompetition = void 0;
|
|
4
5
|
const User_possibleTypes = ['User'];
|
|
5
6
|
const isUser = (obj) => {
|
|
6
7
|
if (!obj?.__typename)
|
|
@@ -190,27 +191,104 @@ const isBrand = (obj) => {
|
|
|
190
191
|
return Brand_possibleTypes.includes(obj.__typename);
|
|
191
192
|
};
|
|
192
193
|
exports.isBrand = isBrand;
|
|
193
|
-
const
|
|
194
|
-
const
|
|
194
|
+
const CountryReference_possibleTypes = ['CountryReference'];
|
|
195
|
+
const isCountryReference = (obj) => {
|
|
195
196
|
if (!obj?.__typename)
|
|
196
|
-
throw new Error('__typename is missing in "
|
|
197
|
-
return
|
|
197
|
+
throw new Error('__typename is missing in "isCountryReference"');
|
|
198
|
+
return CountryReference_possibleTypes.includes(obj.__typename);
|
|
198
199
|
};
|
|
199
|
-
exports.
|
|
200
|
-
const
|
|
201
|
-
const
|
|
200
|
+
exports.isCountryReference = isCountryReference;
|
|
201
|
+
const StateReference_possibleTypes = ['StateReference'];
|
|
202
|
+
const isStateReference = (obj) => {
|
|
202
203
|
if (!obj?.__typename)
|
|
203
|
-
throw new Error('__typename is missing in "
|
|
204
|
-
return
|
|
204
|
+
throw new Error('__typename is missing in "isStateReference"');
|
|
205
|
+
return StateReference_possibleTypes.includes(obj.__typename);
|
|
205
206
|
};
|
|
206
|
-
exports.
|
|
207
|
-
const
|
|
208
|
-
const
|
|
207
|
+
exports.isStateReference = isStateReference;
|
|
208
|
+
const CityReference_possibleTypes = ['CityReference'];
|
|
209
|
+
const isCityReference = (obj) => {
|
|
209
210
|
if (!obj?.__typename)
|
|
210
|
-
throw new Error('__typename is missing in "
|
|
211
|
-
return
|
|
211
|
+
throw new Error('__typename is missing in "isCityReference"');
|
|
212
|
+
return CityReference_possibleTypes.includes(obj.__typename);
|
|
212
213
|
};
|
|
213
|
-
exports.
|
|
214
|
+
exports.isCityReference = isCityReference;
|
|
215
|
+
const Qualification_possibleTypes = ['Qualification'];
|
|
216
|
+
const isQualification = (obj) => {
|
|
217
|
+
if (!obj?.__typename)
|
|
218
|
+
throw new Error('__typename is missing in "isQualification"');
|
|
219
|
+
return Qualification_possibleTypes.includes(obj.__typename);
|
|
220
|
+
};
|
|
221
|
+
exports.isQualification = isQualification;
|
|
222
|
+
const ScoreQualification_possibleTypes = ['ScoreQualification'];
|
|
223
|
+
const isScoreQualification = (obj) => {
|
|
224
|
+
if (!obj?.__typename)
|
|
225
|
+
throw new Error('__typename is missing in "isScoreQualification"');
|
|
226
|
+
return ScoreQualification_possibleTypes.includes(obj.__typename);
|
|
227
|
+
};
|
|
228
|
+
exports.isScoreQualification = isScoreQualification;
|
|
229
|
+
const LocationQualification_possibleTypes = ['LocationQualification'];
|
|
230
|
+
const isLocationQualification = (obj) => {
|
|
231
|
+
if (!obj?.__typename)
|
|
232
|
+
throw new Error('__typename is missing in "isLocationQualification"');
|
|
233
|
+
return LocationQualification_possibleTypes.includes(obj.__typename);
|
|
234
|
+
};
|
|
235
|
+
exports.isLocationQualification = isLocationQualification;
|
|
236
|
+
const DistanceQualification_possibleTypes = ['DistanceQualification'];
|
|
237
|
+
const isDistanceQualification = (obj) => {
|
|
238
|
+
if (!obj?.__typename)
|
|
239
|
+
throw new Error('__typename is missing in "isDistanceQualification"');
|
|
240
|
+
return DistanceQualification_possibleTypes.includes(obj.__typename);
|
|
241
|
+
};
|
|
242
|
+
exports.isDistanceQualification = isDistanceQualification;
|
|
243
|
+
const SportsQualification_possibleTypes = ['SportsQualification'];
|
|
244
|
+
const isSportsQualification = (obj) => {
|
|
245
|
+
if (!obj?.__typename)
|
|
246
|
+
throw new Error('__typename is missing in "isSportsQualification"');
|
|
247
|
+
return SportsQualification_possibleTypes.includes(obj.__typename);
|
|
248
|
+
};
|
|
249
|
+
exports.isSportsQualification = isSportsQualification;
|
|
250
|
+
const SportsLevelQualification_possibleTypes = ['SportsLevelQualification'];
|
|
251
|
+
const isSportsLevelQualification = (obj) => {
|
|
252
|
+
if (!obj?.__typename)
|
|
253
|
+
throw new Error('__typename is missing in "isSportsLevelQualification"');
|
|
254
|
+
return SportsLevelQualification_possibleTypes.includes(obj.__typename);
|
|
255
|
+
};
|
|
256
|
+
exports.isSportsLevelQualification = isSportsLevelQualification;
|
|
257
|
+
const AthleteCriteria_possibleTypes = ['AthleteCriteria'];
|
|
258
|
+
const isAthleteCriteria = (obj) => {
|
|
259
|
+
if (!obj?.__typename)
|
|
260
|
+
throw new Error('__typename is missing in "isAthleteCriteria"');
|
|
261
|
+
return AthleteCriteria_possibleTypes.includes(obj.__typename);
|
|
262
|
+
};
|
|
263
|
+
exports.isAthleteCriteria = isAthleteCriteria;
|
|
264
|
+
const SponsorshipStats_possibleTypes = ['SponsorshipStats'];
|
|
265
|
+
const isSponsorshipStats = (obj) => {
|
|
266
|
+
if (!obj?.__typename)
|
|
267
|
+
throw new Error('__typename is missing in "isSponsorshipStats"');
|
|
268
|
+
return SponsorshipStats_possibleTypes.includes(obj.__typename);
|
|
269
|
+
};
|
|
270
|
+
exports.isSponsorshipStats = isSponsorshipStats;
|
|
271
|
+
const SponsorshipTranslation_possibleTypes = ['SponsorshipTranslation'];
|
|
272
|
+
const isSponsorshipTranslation = (obj) => {
|
|
273
|
+
if (!obj?.__typename)
|
|
274
|
+
throw new Error('__typename is missing in "isSponsorshipTranslation"');
|
|
275
|
+
return SponsorshipTranslation_possibleTypes.includes(obj.__typename);
|
|
276
|
+
};
|
|
277
|
+
exports.isSponsorshipTranslation = isSponsorshipTranslation;
|
|
278
|
+
const Sponsorship_possibleTypes = ['Sponsorship'];
|
|
279
|
+
const isSponsorship = (obj) => {
|
|
280
|
+
if (!obj?.__typename)
|
|
281
|
+
throw new Error('__typename is missing in "isSponsorship"');
|
|
282
|
+
return Sponsorship_possibleTypes.includes(obj.__typename);
|
|
283
|
+
};
|
|
284
|
+
exports.isSponsorship = isSponsorship;
|
|
285
|
+
const FollowStats_possibleTypes = ['FollowStats'];
|
|
286
|
+
const isFollowStats = (obj) => {
|
|
287
|
+
if (!obj?.__typename)
|
|
288
|
+
throw new Error('__typename is missing in "isFollowStats"');
|
|
289
|
+
return FollowStats_possibleTypes.includes(obj.__typename);
|
|
290
|
+
};
|
|
291
|
+
exports.isFollowStats = isFollowStats;
|
|
214
292
|
const Sport_possibleTypes = ['Sport'];
|
|
215
293
|
const isSport = (obj) => {
|
|
216
294
|
if (!obj?.__typename)
|
|
@@ -218,6 +296,111 @@ const isSport = (obj) => {
|
|
|
218
296
|
return Sport_possibleTypes.includes(obj.__typename);
|
|
219
297
|
};
|
|
220
298
|
exports.isSport = isSport;
|
|
299
|
+
const VtxScores_possibleTypes = ['VtxScores'];
|
|
300
|
+
const isVtxScores = (obj) => {
|
|
301
|
+
if (!obj?.__typename)
|
|
302
|
+
throw new Error('__typename is missing in "isVtxScores"');
|
|
303
|
+
return VtxScores_possibleTypes.includes(obj.__typename);
|
|
304
|
+
};
|
|
305
|
+
exports.isVtxScores = isVtxScores;
|
|
306
|
+
const SportLevelTranslation_possibleTypes = ['SportLevelTranslation'];
|
|
307
|
+
const isSportLevelTranslation = (obj) => {
|
|
308
|
+
if (!obj?.__typename)
|
|
309
|
+
throw new Error('__typename is missing in "isSportLevelTranslation"');
|
|
310
|
+
return SportLevelTranslation_possibleTypes.includes(obj.__typename);
|
|
311
|
+
};
|
|
312
|
+
exports.isSportLevelTranslation = isSportLevelTranslation;
|
|
313
|
+
const SportLevel_possibleTypes = ['SportLevel'];
|
|
314
|
+
const isSportLevel = (obj) => {
|
|
315
|
+
if (!obj?.__typename)
|
|
316
|
+
throw new Error('__typename is missing in "isSportLevel"');
|
|
317
|
+
return SportLevel_possibleTypes.includes(obj.__typename);
|
|
318
|
+
};
|
|
319
|
+
exports.isSportLevel = isSportLevel;
|
|
320
|
+
const Ranking_possibleTypes = ['Ranking'];
|
|
321
|
+
const isRanking = (obj) => {
|
|
322
|
+
if (!obj?.__typename)
|
|
323
|
+
throw new Error('__typename is missing in "isRanking"');
|
|
324
|
+
return Ranking_possibleTypes.includes(obj.__typename);
|
|
325
|
+
};
|
|
326
|
+
exports.isRanking = isRanking;
|
|
327
|
+
const AthleteRankings_possibleTypes = ['AthleteRankings'];
|
|
328
|
+
const isAthleteRankings = (obj) => {
|
|
329
|
+
if (!obj?.__typename)
|
|
330
|
+
throw new Error('__typename is missing in "isAthleteRankings"');
|
|
331
|
+
return AthleteRankings_possibleTypes.includes(obj.__typename);
|
|
332
|
+
};
|
|
333
|
+
exports.isAthleteRankings = isAthleteRankings;
|
|
334
|
+
const Team_possibleTypes = ['Team'];
|
|
335
|
+
const isTeam = (obj) => {
|
|
336
|
+
if (!obj?.__typename)
|
|
337
|
+
throw new Error('__typename is missing in "isTeam"');
|
|
338
|
+
return Team_possibleTypes.includes(obj.__typename);
|
|
339
|
+
};
|
|
340
|
+
exports.isTeam = isTeam;
|
|
341
|
+
const SportsEvent_possibleTypes = ['SportsEvent'];
|
|
342
|
+
const isSportsEvent = (obj) => {
|
|
343
|
+
if (!obj?.__typename)
|
|
344
|
+
throw new Error('__typename is missing in "isSportsEvent"');
|
|
345
|
+
return SportsEvent_possibleTypes.includes(obj.__typename);
|
|
346
|
+
};
|
|
347
|
+
exports.isSportsEvent = isSportsEvent;
|
|
348
|
+
const AthleteCompetitionResult_possibleTypes = ['AthleteCompetitionResult'];
|
|
349
|
+
const isAthleteCompetitionResult = (obj) => {
|
|
350
|
+
if (!obj?.__typename)
|
|
351
|
+
throw new Error('__typename is missing in "isAthleteCompetitionResult"');
|
|
352
|
+
return AthleteCompetitionResult_possibleTypes.includes(obj.__typename);
|
|
353
|
+
};
|
|
354
|
+
exports.isAthleteCompetitionResult = isAthleteCompetitionResult;
|
|
355
|
+
const AthleteCompetition_possibleTypes = ['AthleteCompetition'];
|
|
356
|
+
const isAthleteCompetition = (obj) => {
|
|
357
|
+
if (!obj?.__typename)
|
|
358
|
+
throw new Error('__typename is missing in "isAthleteCompetition"');
|
|
359
|
+
return AthleteCompetition_possibleTypes.includes(obj.__typename);
|
|
360
|
+
};
|
|
361
|
+
exports.isAthleteCompetition = isAthleteCompetition;
|
|
362
|
+
const Athlete_possibleTypes = ['Athlete'];
|
|
363
|
+
const isAthlete = (obj) => {
|
|
364
|
+
if (!obj?.__typename)
|
|
365
|
+
throw new Error('__typename is missing in "isAthlete"');
|
|
366
|
+
return Athlete_possibleTypes.includes(obj.__typename);
|
|
367
|
+
};
|
|
368
|
+
exports.isAthlete = isAthlete;
|
|
369
|
+
const Industry_possibleTypes = ['Industry'];
|
|
370
|
+
const isIndustry = (obj) => {
|
|
371
|
+
if (!obj?.__typename)
|
|
372
|
+
throw new Error('__typename is missing in "isIndustry"');
|
|
373
|
+
return Industry_possibleTypes.includes(obj.__typename);
|
|
374
|
+
};
|
|
375
|
+
exports.isIndustry = isIndustry;
|
|
376
|
+
const Sponsor_possibleTypes = ['Sponsor'];
|
|
377
|
+
const isSponsor = (obj) => {
|
|
378
|
+
if (!obj?.__typename)
|
|
379
|
+
throw new Error('__typename is missing in "isSponsor"');
|
|
380
|
+
return Sponsor_possibleTypes.includes(obj.__typename);
|
|
381
|
+
};
|
|
382
|
+
exports.isSponsor = isSponsor;
|
|
383
|
+
const WorldCity_possibleTypes = ['WorldCity'];
|
|
384
|
+
const isWorldCity = (obj) => {
|
|
385
|
+
if (!obj?.__typename)
|
|
386
|
+
throw new Error('__typename is missing in "isWorldCity"');
|
|
387
|
+
return WorldCity_possibleTypes.includes(obj.__typename);
|
|
388
|
+
};
|
|
389
|
+
exports.isWorldCity = isWorldCity;
|
|
390
|
+
const Country_possibleTypes = ['Country'];
|
|
391
|
+
const isCountry = (obj) => {
|
|
392
|
+
if (!obj?.__typename)
|
|
393
|
+
throw new Error('__typename is missing in "isCountry"');
|
|
394
|
+
return Country_possibleTypes.includes(obj.__typename);
|
|
395
|
+
};
|
|
396
|
+
exports.isCountry = isCountry;
|
|
397
|
+
const State_possibleTypes = ['State'];
|
|
398
|
+
const isState = (obj) => {
|
|
399
|
+
if (!obj?.__typename)
|
|
400
|
+
throw new Error('__typename is missing in "isState"');
|
|
401
|
+
return State_possibleTypes.includes(obj.__typename);
|
|
402
|
+
};
|
|
403
|
+
exports.isState = isState;
|
|
221
404
|
const Query_possibleTypes = ['Query'];
|
|
222
405
|
const isQuery = (obj) => {
|
|
223
406
|
if (!obj?.__typename)
|
package/src/client/schema.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../../../libs/vtx-backend-client/src/client/schema.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../../../libs/vtx-backend-client/src/client/schema.ts"],"names":[],"mappings":"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"}
|