@vertikalx/vtx-backend-client 1.0.0-dev.4 → 1.0.0-dev.41

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.
Files changed (98) hide show
  1. package/package.json +3 -2
  2. package/src/api/api-call-headers.d.ts +16 -0
  3. package/src/api/api-call-headers.js +20 -0
  4. package/src/api/api-call-headers.js.map +1 -0
  5. package/src/api/backend-response.d.ts +4 -0
  6. package/src/api/backend-response.js +3 -0
  7. package/src/api/backend-response.js.map +1 -0
  8. package/src/api/domains.d.ts +3 -0
  9. package/src/api/domains.js +7 -0
  10. package/src/api/domains.js.map +1 -0
  11. package/src/api/response-builder.d.ts +4 -0
  12. package/src/api/response-builder.js +63 -0
  13. package/src/api/response-builder.js.map +1 -0
  14. package/src/api/vtx-apikey-api.d.ts +6 -0
  15. package/src/api/vtx-apikey-api.js +19 -0
  16. package/src/api/vtx-apikey-api.js.map +1 -0
  17. package/src/api/vtx-base-api.d.ts +26 -0
  18. package/src/api/vtx-base-api.js +897 -0
  19. package/src/api/vtx-base-api.js.map +1 -0
  20. package/src/api/vtx-mobile-api.d.ts +6 -0
  21. package/src/api/vtx-mobile-api.js +27 -0
  22. package/src/api/vtx-mobile-api.js.map +1 -0
  23. package/src/api/vtx-web-browser-api.d.ts +7 -0
  24. package/src/api/vtx-web-browser-api.js +36 -0
  25. package/src/api/vtx-web-browser-api.js.map +1 -0
  26. package/src/api/vtx-web-server-api.d.ts +7 -0
  27. package/src/api/vtx-web-server-api.js +33 -0
  28. package/src/api/vtx-web-server-api.js.map +1 -0
  29. package/src/client/index.js.map +1 -0
  30. package/src/client/runtime/batcher.js.map +1 -0
  31. package/{runtime → src/client/runtime}/createClient.d.ts +4 -10
  32. package/src/client/runtime/createClient.js.map +1 -0
  33. package/src/client/runtime/error.js.map +1 -0
  34. package/src/client/runtime/fetcher.js.map +1 -0
  35. package/{runtime → src/client/runtime}/generateGraphqlOperation.d.ts +1 -1
  36. package/src/client/runtime/generateGraphqlOperation.js.map +1 -0
  37. package/src/client/runtime/index.js.map +1 -0
  38. package/src/client/runtime/linkTypeMap.js.map +1 -0
  39. package/src/client/runtime/typeSelection.js.map +1 -0
  40. package/src/client/runtime/types.js.map +1 -0
  41. package/src/client/schema.d.ts +1884 -0
  42. package/src/client/schema.graphql +893 -0
  43. package/src/client/schema.js +453 -0
  44. package/src/client/schema.js.map +1 -0
  45. package/src/client/types.d.ts +974 -0
  46. package/src/client/types.js +2512 -0
  47. package/src/client/types.js.map +1 -0
  48. package/src/index.d.ts +10 -0
  49. package/src/index.js +27 -0
  50. package/src/index.js.map +1 -0
  51. package/tsconfig.lib.tsbuildinfo +1 -1
  52. package/index.js.map +0 -1
  53. package/index.ts +0 -65
  54. package/runtime/batcher.js.map +0 -1
  55. package/runtime/batcher.ts +0 -275
  56. package/runtime/createClient.js.map +0 -1
  57. package/runtime/createClient.ts +0 -68
  58. package/runtime/error.js.map +0 -1
  59. package/runtime/error.ts +0 -29
  60. package/runtime/fetcher.js.map +0 -1
  61. package/runtime/fetcher.ts +0 -97
  62. package/runtime/generateGraphqlOperation.js.map +0 -1
  63. package/runtime/generateGraphqlOperation.ts +0 -225
  64. package/runtime/index.js.map +0 -1
  65. package/runtime/index.ts +0 -13
  66. package/runtime/linkTypeMap.js.map +0 -1
  67. package/runtime/linkTypeMap.ts +0 -156
  68. package/runtime/typeSelection.js.map +0 -1
  69. package/runtime/typeSelection.ts +0 -95
  70. package/runtime/types.js.map +0 -1
  71. package/runtime/types.ts +0 -69
  72. package/schema.d.ts +0 -406
  73. package/schema.graphql +0 -162
  74. package/schema.js +0 -109
  75. package/schema.js.map +0 -1
  76. package/schema.ts +0 -420
  77. package/types.d.ts +0 -207
  78. package/types.js +0 -518
  79. package/types.js.map +0 -1
  80. package/types.ts +0 -515
  81. /package/{index.d.ts → src/client/index.d.ts} +0 -0
  82. /package/{index.js → src/client/index.js} +0 -0
  83. /package/{runtime → src/client/runtime}/batcher.d.ts +0 -0
  84. /package/{runtime → src/client/runtime}/batcher.js +0 -0
  85. /package/{runtime → src/client/runtime}/createClient.js +0 -0
  86. /package/{runtime → src/client/runtime}/error.d.ts +0 -0
  87. /package/{runtime → src/client/runtime}/error.js +0 -0
  88. /package/{runtime → src/client/runtime}/fetcher.d.ts +0 -0
  89. /package/{runtime → src/client/runtime}/fetcher.js +0 -0
  90. /package/{runtime → src/client/runtime}/generateGraphqlOperation.js +0 -0
  91. /package/{runtime → src/client/runtime}/index.d.ts +0 -0
  92. /package/{runtime → src/client/runtime}/index.js +0 -0
  93. /package/{runtime → src/client/runtime}/linkTypeMap.d.ts +0 -0
  94. /package/{runtime → src/client/runtime}/linkTypeMap.js +0 -0
  95. /package/{runtime → src/client/runtime}/typeSelection.d.ts +0 -0
  96. /package/{runtime → src/client/runtime}/typeSelection.js +0 -0
  97. /package/{runtime → src/client/runtime}/types.d.ts +0 -0
  98. /package/{runtime → src/client/runtime}/types.js +0 -0
@@ -0,0 +1,453 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.isFollowStats = exports.isSponsorship = exports.isSponsorshipTranslation = exports.isSponsorshipStats = exports.isDuration = exports.isSponsorshipCommitment = exports.isSponsorshipItem = exports.isSponsor = exports.isSponsorBrand = exports.isSponsorStats = exports.isIndustry = exports.isAthleteCriteria = exports.isSportsLevelQualification = exports.isSportsQualification = exports.isDistanceQualification = exports.isLocationQualification = exports.isScoreQualification = exports.isQualification = exports.isCountry = exports.isState = exports.isCity = 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.isDecodedRefreshToken = exports.isDecodedToken = exports.isUserToken = exports.isDomainCredential = exports.isDomain = exports.isTenant = exports.isBaseTenant = exports.isUserWithToken = exports.isUser = void 0;
4
+ exports.isMutation = exports.isQuery = exports.isAthlete = exports.isWorldLocation = exports.isAthleteCompetition = exports.isAthleteCompetitionResult = exports.isSportsEvent = exports.isTeam = exports.isAthleteRankings = exports.isRanking = exports.isSportLevel = exports.isSportLevelTranslation = exports.isVtxScores = exports.isSport = void 0;
5
+ const User_possibleTypes = ['User'];
6
+ const isUser = (obj) => {
7
+ if (!obj?.__typename)
8
+ throw new Error('__typename is missing in "isUser"');
9
+ return User_possibleTypes.includes(obj.__typename);
10
+ };
11
+ exports.isUser = isUser;
12
+ const UserWithToken_possibleTypes = ['UserWithToken'];
13
+ const isUserWithToken = (obj) => {
14
+ if (!obj?.__typename)
15
+ throw new Error('__typename is missing in "isUserWithToken"');
16
+ return UserWithToken_possibleTypes.includes(obj.__typename);
17
+ };
18
+ exports.isUserWithToken = isUserWithToken;
19
+ const BaseTenant_possibleTypes = ['BaseTenant'];
20
+ const isBaseTenant = (obj) => {
21
+ if (!obj?.__typename)
22
+ throw new Error('__typename is missing in "isBaseTenant"');
23
+ return BaseTenant_possibleTypes.includes(obj.__typename);
24
+ };
25
+ exports.isBaseTenant = isBaseTenant;
26
+ const Tenant_possibleTypes = ['Tenant'];
27
+ const isTenant = (obj) => {
28
+ if (!obj?.__typename)
29
+ throw new Error('__typename is missing in "isTenant"');
30
+ return Tenant_possibleTypes.includes(obj.__typename);
31
+ };
32
+ exports.isTenant = isTenant;
33
+ const Domain_possibleTypes = ['Domain'];
34
+ const isDomain = (obj) => {
35
+ if (!obj?.__typename)
36
+ throw new Error('__typename is missing in "isDomain"');
37
+ return Domain_possibleTypes.includes(obj.__typename);
38
+ };
39
+ exports.isDomain = isDomain;
40
+ const DomainCredential_possibleTypes = ['DomainCredential'];
41
+ const isDomainCredential = (obj) => {
42
+ if (!obj?.__typename)
43
+ throw new Error('__typename is missing in "isDomainCredential"');
44
+ return DomainCredential_possibleTypes.includes(obj.__typename);
45
+ };
46
+ exports.isDomainCredential = isDomainCredential;
47
+ const UserToken_possibleTypes = ['UserToken'];
48
+ const isUserToken = (obj) => {
49
+ if (!obj?.__typename)
50
+ throw new Error('__typename is missing in "isUserToken"');
51
+ return UserToken_possibleTypes.includes(obj.__typename);
52
+ };
53
+ exports.isUserToken = isUserToken;
54
+ const DecodedToken_possibleTypes = ['DecodedToken'];
55
+ const isDecodedToken = (obj) => {
56
+ if (!obj?.__typename)
57
+ throw new Error('__typename is missing in "isDecodedToken"');
58
+ return DecodedToken_possibleTypes.includes(obj.__typename);
59
+ };
60
+ exports.isDecodedToken = isDecodedToken;
61
+ const DecodedRefreshToken_possibleTypes = ['DecodedRefreshToken'];
62
+ const isDecodedRefreshToken = (obj) => {
63
+ if (!obj?.__typename)
64
+ throw new Error('__typename is missing in "isDecodedRefreshToken"');
65
+ return DecodedRefreshToken_possibleTypes.includes(obj.__typename);
66
+ };
67
+ exports.isDecodedRefreshToken = isDecodedRefreshToken;
68
+ const TenantWithUserLogin_possibleTypes = ['TenantWithUserLogin'];
69
+ const isTenantWithUserLogin = (obj) => {
70
+ if (!obj?.__typename)
71
+ throw new Error('__typename is missing in "isTenantWithUserLogin"');
72
+ return TenantWithUserLogin_possibleTypes.includes(obj.__typename);
73
+ };
74
+ exports.isTenantWithUserLogin = isTenantWithUserLogin;
75
+ const UriAvailableType_possibleTypes = ['UriAvailableType'];
76
+ const isUriAvailableType = (obj) => {
77
+ if (!obj?.__typename)
78
+ throw new Error('__typename is missing in "isUriAvailableType"');
79
+ return UriAvailableType_possibleTypes.includes(obj.__typename);
80
+ };
81
+ exports.isUriAvailableType = isUriAvailableType;
82
+ const Agreement_possibleTypes = ['Agreement'];
83
+ const isAgreement = (obj) => {
84
+ if (!obj?.__typename)
85
+ throw new Error('__typename is missing in "isAgreement"');
86
+ return Agreement_possibleTypes.includes(obj.__typename);
87
+ };
88
+ exports.isAgreement = isAgreement;
89
+ const BillEntity_possibleTypes = ['BillEntity'];
90
+ const isBillEntity = (obj) => {
91
+ if (!obj?.__typename)
92
+ throw new Error('__typename is missing in "isBillEntity"');
93
+ return BillEntity_possibleTypes.includes(obj.__typename);
94
+ };
95
+ exports.isBillEntity = isBillEntity;
96
+ const InvoiceItem_possibleTypes = ['InvoiceItem'];
97
+ const isInvoiceItem = (obj) => {
98
+ if (!obj?.__typename)
99
+ throw new Error('__typename is missing in "isInvoiceItem"');
100
+ return InvoiceItem_possibleTypes.includes(obj.__typename);
101
+ };
102
+ exports.isInvoiceItem = isInvoiceItem;
103
+ const Payment_possibleTypes = ['Payment'];
104
+ const isPayment = (obj) => {
105
+ if (!obj?.__typename)
106
+ throw new Error('__typename is missing in "isPayment"');
107
+ return Payment_possibleTypes.includes(obj.__typename);
108
+ };
109
+ exports.isPayment = isPayment;
110
+ const PlaFeature_possibleTypes = ['PlaFeature'];
111
+ const isPlaFeature = (obj) => {
112
+ if (!obj?.__typename)
113
+ throw new Error('__typename is missing in "isPlaFeature"');
114
+ return PlaFeature_possibleTypes.includes(obj.__typename);
115
+ };
116
+ exports.isPlaFeature = isPlaFeature;
117
+ const Plan_possibleTypes = ['Plan'];
118
+ const isPlan = (obj) => {
119
+ if (!obj?.__typename)
120
+ throw new Error('__typename is missing in "isPlan"');
121
+ return Plan_possibleTypes.includes(obj.__typename);
122
+ };
123
+ exports.isPlan = isPlan;
124
+ const PlanPrice_possibleTypes = ['PlanPrice'];
125
+ const isPlanPrice = (obj) => {
126
+ if (!obj?.__typename)
127
+ throw new Error('__typename is missing in "isPlanPrice"');
128
+ return PlanPrice_possibleTypes.includes(obj.__typename);
129
+ };
130
+ exports.isPlanPrice = isPlanPrice;
131
+ const Invoice_possibleTypes = ['Invoice'];
132
+ const isInvoice = (obj) => {
133
+ if (!obj?.__typename)
134
+ throw new Error('__typename is missing in "isInvoice"');
135
+ return Invoice_possibleTypes.includes(obj.__typename);
136
+ };
137
+ exports.isInvoice = isInvoice;
138
+ const SubscriptionInvoice_possibleTypes = ['SubscriptionInvoice'];
139
+ const isSubscriptionInvoice = (obj) => {
140
+ if (!obj?.__typename)
141
+ throw new Error('__typename is missing in "isSubscriptionInvoice"');
142
+ return SubscriptionInvoice_possibleTypes.includes(obj.__typename);
143
+ };
144
+ exports.isSubscriptionInvoice = isSubscriptionInvoice;
145
+ const PlanSubscription_possibleTypes = ['PlanSubscription'];
146
+ const isPlanSubscription = (obj) => {
147
+ if (!obj?.__typename)
148
+ throw new Error('__typename is missing in "isPlanSubscription"');
149
+ return PlanSubscription_possibleTypes.includes(obj.__typename);
150
+ };
151
+ exports.isPlanSubscription = isPlanSubscription;
152
+ const SubscriptionPayment_possibleTypes = ['SubscriptionPayment'];
153
+ const isSubscriptionPayment = (obj) => {
154
+ if (!obj?.__typename)
155
+ throw new Error('__typename is missing in "isSubscriptionPayment"');
156
+ return SubscriptionPayment_possibleTypes.includes(obj.__typename);
157
+ };
158
+ exports.isSubscriptionPayment = isSubscriptionPayment;
159
+ const AWSS3File_possibleTypes = ['AWSS3File'];
160
+ const isAWSS3File = (obj) => {
161
+ if (!obj?.__typename)
162
+ throw new Error('__typename is missing in "isAWSS3File"');
163
+ return AWSS3File_possibleTypes.includes(obj.__typename);
164
+ };
165
+ exports.isAWSS3File = isAWSS3File;
166
+ const HttpRequestField_possibleTypes = ['HttpRequestField'];
167
+ const isHttpRequestField = (obj) => {
168
+ if (!obj?.__typename)
169
+ throw new Error('__typename is missing in "isHttpRequestField"');
170
+ return HttpRequestField_possibleTypes.includes(obj.__typename);
171
+ };
172
+ exports.isHttpRequestField = isHttpRequestField;
173
+ const AWSS3UploadUrl_possibleTypes = ['AWSS3UploadUrl'];
174
+ const isAWSS3UploadUrl = (obj) => {
175
+ if (!obj?.__typename)
176
+ throw new Error('__typename is missing in "isAWSS3UploadUrl"');
177
+ return AWSS3UploadUrl_possibleTypes.includes(obj.__typename);
178
+ };
179
+ exports.isAWSS3UploadUrl = isAWSS3UploadUrl;
180
+ const AWSS3CallResult_possibleTypes = ['AWSS3CallResult'];
181
+ const isAWSS3CallResult = (obj) => {
182
+ if (!obj?.__typename)
183
+ throw new Error('__typename is missing in "isAWSS3CallResult"');
184
+ return AWSS3CallResult_possibleTypes.includes(obj.__typename);
185
+ };
186
+ exports.isAWSS3CallResult = isAWSS3CallResult;
187
+ const BrandStats_possibleTypes = ['BrandStats'];
188
+ const isBrandStats = (obj) => {
189
+ if (!obj?.__typename)
190
+ throw new Error('__typename is missing in "isBrandStats"');
191
+ return BrandStats_possibleTypes.includes(obj.__typename);
192
+ };
193
+ exports.isBrandStats = isBrandStats;
194
+ const BrandTranslation_possibleTypes = ['BrandTranslation'];
195
+ const isBrandTranslation = (obj) => {
196
+ if (!obj?.__typename)
197
+ throw new Error('__typename is missing in "isBrandTranslation"');
198
+ return BrandTranslation_possibleTypes.includes(obj.__typename);
199
+ };
200
+ exports.isBrandTranslation = isBrandTranslation;
201
+ const Brand_possibleTypes = ['Brand'];
202
+ const isBrand = (obj) => {
203
+ if (!obj?.__typename)
204
+ throw new Error('__typename is missing in "isBrand"');
205
+ return Brand_possibleTypes.includes(obj.__typename);
206
+ };
207
+ exports.isBrand = isBrand;
208
+ const City_possibleTypes = ['City'];
209
+ const isCity = (obj) => {
210
+ if (!obj?.__typename)
211
+ throw new Error('__typename is missing in "isCity"');
212
+ return City_possibleTypes.includes(obj.__typename);
213
+ };
214
+ exports.isCity = isCity;
215
+ const State_possibleTypes = ['State'];
216
+ const isState = (obj) => {
217
+ if (!obj?.__typename)
218
+ throw new Error('__typename is missing in "isState"');
219
+ return State_possibleTypes.includes(obj.__typename);
220
+ };
221
+ exports.isState = isState;
222
+ const Country_possibleTypes = ['Country'];
223
+ const isCountry = (obj) => {
224
+ if (!obj?.__typename)
225
+ throw new Error('__typename is missing in "isCountry"');
226
+ return Country_possibleTypes.includes(obj.__typename);
227
+ };
228
+ exports.isCountry = isCountry;
229
+ const Qualification_possibleTypes = ['Qualification'];
230
+ const isQualification = (obj) => {
231
+ if (!obj?.__typename)
232
+ throw new Error('__typename is missing in "isQualification"');
233
+ return Qualification_possibleTypes.includes(obj.__typename);
234
+ };
235
+ exports.isQualification = isQualification;
236
+ const ScoreQualification_possibleTypes = ['ScoreQualification'];
237
+ const isScoreQualification = (obj) => {
238
+ if (!obj?.__typename)
239
+ throw new Error('__typename is missing in "isScoreQualification"');
240
+ return ScoreQualification_possibleTypes.includes(obj.__typename);
241
+ };
242
+ exports.isScoreQualification = isScoreQualification;
243
+ const LocationQualification_possibleTypes = ['LocationQualification'];
244
+ const isLocationQualification = (obj) => {
245
+ if (!obj?.__typename)
246
+ throw new Error('__typename is missing in "isLocationQualification"');
247
+ return LocationQualification_possibleTypes.includes(obj.__typename);
248
+ };
249
+ exports.isLocationQualification = isLocationQualification;
250
+ const DistanceQualification_possibleTypes = ['DistanceQualification'];
251
+ const isDistanceQualification = (obj) => {
252
+ if (!obj?.__typename)
253
+ throw new Error('__typename is missing in "isDistanceQualification"');
254
+ return DistanceQualification_possibleTypes.includes(obj.__typename);
255
+ };
256
+ exports.isDistanceQualification = isDistanceQualification;
257
+ const SportsQualification_possibleTypes = ['SportsQualification'];
258
+ const isSportsQualification = (obj) => {
259
+ if (!obj?.__typename)
260
+ throw new Error('__typename is missing in "isSportsQualification"');
261
+ return SportsQualification_possibleTypes.includes(obj.__typename);
262
+ };
263
+ exports.isSportsQualification = isSportsQualification;
264
+ const SportsLevelQualification_possibleTypes = ['SportsLevelQualification'];
265
+ const isSportsLevelQualification = (obj) => {
266
+ if (!obj?.__typename)
267
+ throw new Error('__typename is missing in "isSportsLevelQualification"');
268
+ return SportsLevelQualification_possibleTypes.includes(obj.__typename);
269
+ };
270
+ exports.isSportsLevelQualification = isSportsLevelQualification;
271
+ const AthleteCriteria_possibleTypes = ['AthleteCriteria'];
272
+ const isAthleteCriteria = (obj) => {
273
+ if (!obj?.__typename)
274
+ throw new Error('__typename is missing in "isAthleteCriteria"');
275
+ return AthleteCriteria_possibleTypes.includes(obj.__typename);
276
+ };
277
+ exports.isAthleteCriteria = isAthleteCriteria;
278
+ const Industry_possibleTypes = ['Industry'];
279
+ const isIndustry = (obj) => {
280
+ if (!obj?.__typename)
281
+ throw new Error('__typename is missing in "isIndustry"');
282
+ return Industry_possibleTypes.includes(obj.__typename);
283
+ };
284
+ exports.isIndustry = isIndustry;
285
+ const SponsorStats_possibleTypes = ['SponsorStats'];
286
+ const isSponsorStats = (obj) => {
287
+ if (!obj?.__typename)
288
+ throw new Error('__typename is missing in "isSponsorStats"');
289
+ return SponsorStats_possibleTypes.includes(obj.__typename);
290
+ };
291
+ exports.isSponsorStats = isSponsorStats;
292
+ const SponsorBrand_possibleTypes = ['SponsorBrand'];
293
+ const isSponsorBrand = (obj) => {
294
+ if (!obj?.__typename)
295
+ throw new Error('__typename is missing in "isSponsorBrand"');
296
+ return SponsorBrand_possibleTypes.includes(obj.__typename);
297
+ };
298
+ exports.isSponsorBrand = isSponsorBrand;
299
+ const Sponsor_possibleTypes = ['Sponsor'];
300
+ const isSponsor = (obj) => {
301
+ if (!obj?.__typename)
302
+ throw new Error('__typename is missing in "isSponsor"');
303
+ return Sponsor_possibleTypes.includes(obj.__typename);
304
+ };
305
+ exports.isSponsor = isSponsor;
306
+ const SponsorshipItem_possibleTypes = ['SponsorshipItem'];
307
+ const isSponsorshipItem = (obj) => {
308
+ if (!obj?.__typename)
309
+ throw new Error('__typename is missing in "isSponsorshipItem"');
310
+ return SponsorshipItem_possibleTypes.includes(obj.__typename);
311
+ };
312
+ exports.isSponsorshipItem = isSponsorshipItem;
313
+ const SponsorshipCommitment_possibleTypes = ['SponsorshipCommitment'];
314
+ const isSponsorshipCommitment = (obj) => {
315
+ if (!obj?.__typename)
316
+ throw new Error('__typename is missing in "isSponsorshipCommitment"');
317
+ return SponsorshipCommitment_possibleTypes.includes(obj.__typename);
318
+ };
319
+ exports.isSponsorshipCommitment = isSponsorshipCommitment;
320
+ const Duration_possibleTypes = ['Duration'];
321
+ const isDuration = (obj) => {
322
+ if (!obj?.__typename)
323
+ throw new Error('__typename is missing in "isDuration"');
324
+ return Duration_possibleTypes.includes(obj.__typename);
325
+ };
326
+ exports.isDuration = isDuration;
327
+ const SponsorshipStats_possibleTypes = ['SponsorshipStats'];
328
+ const isSponsorshipStats = (obj) => {
329
+ if (!obj?.__typename)
330
+ throw new Error('__typename is missing in "isSponsorshipStats"');
331
+ return SponsorshipStats_possibleTypes.includes(obj.__typename);
332
+ };
333
+ exports.isSponsorshipStats = isSponsorshipStats;
334
+ const SponsorshipTranslation_possibleTypes = ['SponsorshipTranslation'];
335
+ const isSponsorshipTranslation = (obj) => {
336
+ if (!obj?.__typename)
337
+ throw new Error('__typename is missing in "isSponsorshipTranslation"');
338
+ return SponsorshipTranslation_possibleTypes.includes(obj.__typename);
339
+ };
340
+ exports.isSponsorshipTranslation = isSponsorshipTranslation;
341
+ const Sponsorship_possibleTypes = ['Sponsorship'];
342
+ const isSponsorship = (obj) => {
343
+ if (!obj?.__typename)
344
+ throw new Error('__typename is missing in "isSponsorship"');
345
+ return Sponsorship_possibleTypes.includes(obj.__typename);
346
+ };
347
+ exports.isSponsorship = isSponsorship;
348
+ const FollowStats_possibleTypes = ['FollowStats'];
349
+ const isFollowStats = (obj) => {
350
+ if (!obj?.__typename)
351
+ throw new Error('__typename is missing in "isFollowStats"');
352
+ return FollowStats_possibleTypes.includes(obj.__typename);
353
+ };
354
+ exports.isFollowStats = isFollowStats;
355
+ const Sport_possibleTypes = ['Sport'];
356
+ const isSport = (obj) => {
357
+ if (!obj?.__typename)
358
+ throw new Error('__typename is missing in "isSport"');
359
+ return Sport_possibleTypes.includes(obj.__typename);
360
+ };
361
+ exports.isSport = isSport;
362
+ const VtxScores_possibleTypes = ['VtxScores'];
363
+ const isVtxScores = (obj) => {
364
+ if (!obj?.__typename)
365
+ throw new Error('__typename is missing in "isVtxScores"');
366
+ return VtxScores_possibleTypes.includes(obj.__typename);
367
+ };
368
+ exports.isVtxScores = isVtxScores;
369
+ const SportLevelTranslation_possibleTypes = ['SportLevelTranslation'];
370
+ const isSportLevelTranslation = (obj) => {
371
+ if (!obj?.__typename)
372
+ throw new Error('__typename is missing in "isSportLevelTranslation"');
373
+ return SportLevelTranslation_possibleTypes.includes(obj.__typename);
374
+ };
375
+ exports.isSportLevelTranslation = isSportLevelTranslation;
376
+ const SportLevel_possibleTypes = ['SportLevel'];
377
+ const isSportLevel = (obj) => {
378
+ if (!obj?.__typename)
379
+ throw new Error('__typename is missing in "isSportLevel"');
380
+ return SportLevel_possibleTypes.includes(obj.__typename);
381
+ };
382
+ exports.isSportLevel = isSportLevel;
383
+ const Ranking_possibleTypes = ['Ranking'];
384
+ const isRanking = (obj) => {
385
+ if (!obj?.__typename)
386
+ throw new Error('__typename is missing in "isRanking"');
387
+ return Ranking_possibleTypes.includes(obj.__typename);
388
+ };
389
+ exports.isRanking = isRanking;
390
+ const AthleteRankings_possibleTypes = ['AthleteRankings'];
391
+ const isAthleteRankings = (obj) => {
392
+ if (!obj?.__typename)
393
+ throw new Error('__typename is missing in "isAthleteRankings"');
394
+ return AthleteRankings_possibleTypes.includes(obj.__typename);
395
+ };
396
+ exports.isAthleteRankings = isAthleteRankings;
397
+ const Team_possibleTypes = ['Team'];
398
+ const isTeam = (obj) => {
399
+ if (!obj?.__typename)
400
+ throw new Error('__typename is missing in "isTeam"');
401
+ return Team_possibleTypes.includes(obj.__typename);
402
+ };
403
+ exports.isTeam = isTeam;
404
+ const SportsEvent_possibleTypes = ['SportsEvent'];
405
+ const isSportsEvent = (obj) => {
406
+ if (!obj?.__typename)
407
+ throw new Error('__typename is missing in "isSportsEvent"');
408
+ return SportsEvent_possibleTypes.includes(obj.__typename);
409
+ };
410
+ exports.isSportsEvent = isSportsEvent;
411
+ const AthleteCompetitionResult_possibleTypes = ['AthleteCompetitionResult'];
412
+ const isAthleteCompetitionResult = (obj) => {
413
+ if (!obj?.__typename)
414
+ throw new Error('__typename is missing in "isAthleteCompetitionResult"');
415
+ return AthleteCompetitionResult_possibleTypes.includes(obj.__typename);
416
+ };
417
+ exports.isAthleteCompetitionResult = isAthleteCompetitionResult;
418
+ const AthleteCompetition_possibleTypes = ['AthleteCompetition'];
419
+ const isAthleteCompetition = (obj) => {
420
+ if (!obj?.__typename)
421
+ throw new Error('__typename is missing in "isAthleteCompetition"');
422
+ return AthleteCompetition_possibleTypes.includes(obj.__typename);
423
+ };
424
+ exports.isAthleteCompetition = isAthleteCompetition;
425
+ const WorldLocation_possibleTypes = ['WorldLocation'];
426
+ const isWorldLocation = (obj) => {
427
+ if (!obj?.__typename)
428
+ throw new Error('__typename is missing in "isWorldLocation"');
429
+ return WorldLocation_possibleTypes.includes(obj.__typename);
430
+ };
431
+ exports.isWorldLocation = isWorldLocation;
432
+ const Athlete_possibleTypes = ['Athlete'];
433
+ const isAthlete = (obj) => {
434
+ if (!obj?.__typename)
435
+ throw new Error('__typename is missing in "isAthlete"');
436
+ return Athlete_possibleTypes.includes(obj.__typename);
437
+ };
438
+ exports.isAthlete = isAthlete;
439
+ const Query_possibleTypes = ['Query'];
440
+ const isQuery = (obj) => {
441
+ if (!obj?.__typename)
442
+ throw new Error('__typename is missing in "isQuery"');
443
+ return Query_possibleTypes.includes(obj.__typename);
444
+ };
445
+ exports.isQuery = isQuery;
446
+ const Mutation_possibleTypes = ['Mutation'];
447
+ const isMutation = (obj) => {
448
+ if (!obj?.__typename)
449
+ throw new Error('__typename is missing in "isMutation"');
450
+ return Mutation_possibleTypes.includes(obj.__typename);
451
+ };
452
+ exports.isMutation = isMutation;
453
+ //# sourceMappingURL=schema.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../../../libs/vtx-backend-client/src/client/schema.ts"],"names":[],"mappings":"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"}