@vertikalx/vtx-backend-client 1.0.0-dev-daniel.51 → 1.0.0-dev-daniel.53
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/client/schema.d.ts +578 -18
- package/src/client/schema.graphql +289 -5
- package/src/client/schema.js +178 -16
- package/src/client/schema.js.map +1 -1
- package/src/client/types.d.ts +292 -4
- package/src/client/types.js +758 -42
- 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 {
|
|
403
|
+
_id: String!
|
|
404
|
+
name: String!
|
|
405
|
+
description: String
|
|
406
|
+
sports: [Sport!]
|
|
407
|
+
approved: Boolean
|
|
408
|
+
logo: AWSS3File
|
|
409
|
+
banner: AWSS3File
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
type SportsEvent {
|
|
267
413
|
_id: String!
|
|
268
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,14 +441,86 @@ 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 {
|
|
280
462
|
_id: String!
|
|
281
463
|
name: String!
|
|
282
464
|
}
|
|
283
465
|
|
|
466
|
+
type Sponsor {
|
|
467
|
+
_id: String!
|
|
468
|
+
name: String!
|
|
469
|
+
description: String!
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
input ScoreQualificationDto {
|
|
473
|
+
type: String!
|
|
474
|
+
scoreType: String!
|
|
475
|
+
operator: String!
|
|
476
|
+
value: Float!
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
input LocationQualificationDto {
|
|
480
|
+
type: String!
|
|
481
|
+
operator: String!
|
|
482
|
+
countries: [CountryReferenceDto!]!
|
|
483
|
+
states: [StateReferenceDto!]!
|
|
484
|
+
cities: [CityReferenceDto!]!
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
input CountryReferenceDto {
|
|
488
|
+
_id: String!
|
|
489
|
+
name: String!
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
input StateReferenceDto {
|
|
493
|
+
_id: String!
|
|
494
|
+
name: String!
|
|
495
|
+
country: CountryReferenceDto
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
input CityReferenceDto {
|
|
499
|
+
_id: String!
|
|
500
|
+
name: String!
|
|
501
|
+
state: StateReferenceDto
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
input DistanceQualificationDto {
|
|
505
|
+
type: String!
|
|
506
|
+
maxDistance: Float!
|
|
507
|
+
latitude: Float
|
|
508
|
+
longitude: Float
|
|
509
|
+
cityId: String
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
input SportsQualificationDto {
|
|
513
|
+
type: String!
|
|
514
|
+
sports: [String!]!
|
|
515
|
+
operator: String!
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
input SportsLevelQualificationDto {
|
|
519
|
+
type: String!
|
|
520
|
+
operator: String!
|
|
521
|
+
level: String!
|
|
522
|
+
}
|
|
523
|
+
|
|
284
524
|
type Query {
|
|
285
525
|
findTenantById(_id: String!): Tenant!
|
|
286
526
|
findTenantByEmail(email: String!, domainId: String!): Tenant!
|
|
@@ -300,6 +540,7 @@ type Query {
|
|
|
300
540
|
findAthleteById(athleteId: String!): Athlete!
|
|
301
541
|
sports: [Sport!]!
|
|
302
542
|
findSportById(sportId: String!): Sport!
|
|
543
|
+
getSponsorships(sponsorId: String!): [Sponsorship!]!
|
|
303
544
|
}
|
|
304
545
|
|
|
305
546
|
input AWSS3GetUploadDto {
|
|
@@ -324,6 +565,7 @@ type Mutation {
|
|
|
324
565
|
registerAthlete(input: RegisterAthleteDto!): Athlete!
|
|
325
566
|
createSport(input: CreateSportDto!): Sport!
|
|
326
567
|
updateSport(sportId: String!, input: UpdateSportDto!): Sport!
|
|
568
|
+
createSponsorwhip(input: CreateSponsorshipDto!): Sponsorship!
|
|
327
569
|
}
|
|
328
570
|
|
|
329
571
|
input CreateTenantInput {
|
|
@@ -430,4 +672,46 @@ input CreateSportDto {
|
|
|
430
672
|
|
|
431
673
|
input UpdateSportDto {
|
|
432
674
|
name: String!
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
input CreateSponsorshipDto {
|
|
678
|
+
title: String!
|
|
679
|
+
brandId: String!
|
|
680
|
+
description: String
|
|
681
|
+
cashValue: Float = 0
|
|
682
|
+
otherValue: Float = 0
|
|
683
|
+
banner: AWSS3UploadedFileDto
|
|
684
|
+
criteria: AthleteCriteriaDto
|
|
685
|
+
sponsorshipItems: [SponsorshipItemDto!]
|
|
686
|
+
commitments: [SponsorshipCommitmentDto!]
|
|
687
|
+
terms: String
|
|
688
|
+
published: Boolean = true
|
|
689
|
+
translations: [SponsorshipTranslationDto!]
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
input AthleteCriteriaDto {
|
|
693
|
+
_id: String!
|
|
694
|
+
label: String
|
|
695
|
+
qualifications: [QualificationDto!]
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
input QualificationDto {
|
|
699
|
+
type: String!
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
input SponsorshipItemDto {
|
|
703
|
+
_id: String!
|
|
704
|
+
name: String!
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
input SponsorshipCommitmentDto {
|
|
708
|
+
_id: String!
|
|
709
|
+
name: String!
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
input SponsorshipTranslationDto {
|
|
713
|
+
title: String
|
|
714
|
+
description: String
|
|
715
|
+
banner: AWSS3UploadedFileDto
|
|
716
|
+
terms: String
|
|
433
717
|
}
|
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.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,90 @@ 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;
|
|
221
383
|
const Query_possibleTypes = ['Query'];
|
|
222
384
|
const isQuery = (obj) => {
|
|
223
385
|
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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"}
|