@vertikalx/vtx-backend-client 1.0.0 → 1.0.1-dev-max.0

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 (168) hide show
  1. package/LICENSE.md +11 -11
  2. package/libs/vtx-backend-client/package.json +16 -0
  3. package/libs/vtx-backend-client/src/api/api-call-headers.d.ts +12 -0
  4. package/libs/vtx-backend-client/src/api/api-call-headers.js +16 -0
  5. package/libs/vtx-backend-client/src/api/api-call-headers.js.map +1 -0
  6. package/libs/vtx-backend-client/src/api/backend-response.d.ts +10 -0
  7. package/libs/vtx-backend-client/src/api/backend-response.js +3 -0
  8. package/libs/vtx-backend-client/src/api/backend-response.js.map +1 -0
  9. package/libs/vtx-backend-client/src/api/domains.d.ts +3 -0
  10. package/libs/vtx-backend-client/src/api/domains.js +7 -0
  11. package/libs/vtx-backend-client/src/api/domains.js.map +1 -0
  12. package/libs/vtx-backend-client/src/api/response-builder.d.ts +4 -0
  13. package/libs/vtx-backend-client/src/api/response-builder.js +123 -0
  14. package/libs/vtx-backend-client/src/api/response-builder.js.map +1 -0
  15. package/libs/vtx-backend-client/src/api/types.d.ts +2 -0
  16. package/libs/vtx-backend-client/src/api/types.js +3 -0
  17. package/libs/vtx-backend-client/src/api/types.js.map +1 -0
  18. package/libs/vtx-backend-client/src/api/vtx-apikey-api.d.ts +6 -0
  19. package/libs/vtx-backend-client/src/api/vtx-apikey-api.js +19 -0
  20. package/libs/vtx-backend-client/src/api/vtx-apikey-api.js.map +1 -0
  21. package/libs/vtx-backend-client/src/api/vtx-base-api.d.ts +108 -0
  22. package/libs/vtx-backend-client/src/api/vtx-base-api.js +6887 -0
  23. package/libs/vtx-backend-client/src/api/vtx-base-api.js.map +1 -0
  24. package/libs/vtx-backend-client/src/api/vtx-mobile-api.d.ts +6 -0
  25. package/libs/vtx-backend-client/src/api/vtx-mobile-api.js +27 -0
  26. package/libs/vtx-backend-client/src/api/vtx-mobile-api.js.map +1 -0
  27. package/libs/vtx-backend-client/src/api/vtx-web-browser-api.d.ts +7 -0
  28. package/libs/vtx-backend-client/src/api/vtx-web-browser-api.js +36 -0
  29. package/libs/vtx-backend-client/src/api/vtx-web-browser-api.js.map +1 -0
  30. package/libs/vtx-backend-client/src/api/vtx-web-server-api.d.ts +7 -0
  31. package/libs/vtx-backend-client/src/api/vtx-web-server-api.js +33 -0
  32. package/libs/vtx-backend-client/src/api/vtx-web-server-api.js.map +1 -0
  33. package/libs/vtx-backend-client/src/client/index.d.ts +25 -0
  34. package/libs/vtx-backend-client/src/client/index.js +44 -0
  35. package/libs/vtx-backend-client/src/client/index.js.map +1 -0
  36. package/libs/vtx-backend-client/src/client/runtime/batcher.d.ts +36 -0
  37. package/libs/vtx-backend-client/src/client/runtime/batcher.js +123 -0
  38. package/libs/vtx-backend-client/src/client/runtime/batcher.js.map +1 -0
  39. package/libs/vtx-backend-client/src/client/runtime/createClient.d.ts +17 -0
  40. package/libs/vtx-backend-client/src/client/runtime/createClient.js +28 -0
  41. package/libs/vtx-backend-client/src/client/runtime/createClient.js.map +1 -0
  42. package/libs/vtx-backend-client/src/client/runtime/error.d.ts +15 -0
  43. package/libs/vtx-backend-client/src/client/runtime/error.js +19 -0
  44. package/libs/vtx-backend-client/src/client/runtime/error.js.map +1 -0
  45. package/libs/vtx-backend-client/src/client/runtime/fetcher.d.ts +10 -0
  46. package/libs/vtx-backend-client/src/client/runtime/fetcher.js +68 -0
  47. package/libs/vtx-backend-client/src/client/runtime/fetcher.js.map +1 -0
  48. package/libs/vtx-backend-client/src/client/runtime/generateGraphqlOperation.d.ts +30 -0
  49. package/libs/vtx-backend-client/src/client/runtime/generateGraphqlOperation.js +134 -0
  50. package/libs/vtx-backend-client/src/client/runtime/generateGraphqlOperation.js.map +1 -0
  51. package/libs/vtx-backend-client/src/client/runtime/index.d.ts +11 -0
  52. package/libs/vtx-backend-client/src/client/runtime/index.js +17 -0
  53. package/libs/vtx-backend-client/src/client/runtime/index.js.map +1 -0
  54. package/libs/vtx-backend-client/src/client/runtime/linkTypeMap.d.ts +9 -0
  55. package/libs/vtx-backend-client/src/client/runtime/linkTypeMap.js +95 -0
  56. package/libs/vtx-backend-client/src/client/runtime/linkTypeMap.js.map +1 -0
  57. package/libs/vtx-backend-client/src/client/runtime/typeSelection.d.ts +28 -0
  58. package/libs/vtx-backend-client/src/client/runtime/typeSelection.js +3 -0
  59. package/libs/vtx-backend-client/src/client/runtime/typeSelection.js.map +1 -0
  60. package/libs/vtx-backend-client/src/client/runtime/types.d.ts +55 -0
  61. package/libs/vtx-backend-client/src/client/runtime/types.js +3 -0
  62. package/libs/vtx-backend-client/src/client/runtime/types.js.map +1 -0
  63. package/libs/vtx-backend-client/src/client/schema.d.ts +4305 -0
  64. package/libs/vtx-backend-client/src/client/schema.js +927 -0
  65. package/libs/vtx-backend-client/src/client/schema.js.map +1 -0
  66. package/libs/vtx-backend-client/src/client/types.d.ts +2294 -0
  67. package/libs/vtx-backend-client/src/client/types.js +5981 -0
  68. package/libs/vtx-backend-client/src/client/types.js.map +1 -0
  69. package/{src/index.ts → libs/vtx-backend-client/src/index.d.ts} +11 -12
  70. package/libs/vtx-backend-client/src/index.js +28 -0
  71. package/libs/vtx-backend-client/src/index.js.map +1 -0
  72. package/package.json +16 -16
  73. package/src/api/api-call-headers.d.ts +12 -0
  74. package/src/api/api-call-headers.js +16 -0
  75. package/src/api/api-call-headers.js.map +1 -0
  76. package/src/api/backend-response.d.ts +10 -0
  77. package/src/api/backend-response.js +3 -0
  78. package/src/api/backend-response.js.map +1 -0
  79. package/src/api/domains.d.ts +3 -0
  80. package/src/api/domains.js +7 -0
  81. package/src/api/domains.js.map +1 -0
  82. package/src/api/dto/get-athlete-campaigns.dto.d.ts +3 -0
  83. package/src/api/dto/get-athlete-campaigns.dto.js +26 -0
  84. package/src/api/dto/get-athlete-campaigns.dto.js.map +1 -0
  85. package/src/api/response-builder.d.ts +4 -0
  86. package/src/api/response-builder.js +124 -0
  87. package/src/api/response-builder.js.map +1 -0
  88. package/src/api/types.d.ts +2 -0
  89. package/src/api/types.js +3 -0
  90. package/src/api/types.js.map +1 -0
  91. package/src/api/vtx-apikey-api.d.ts +6 -0
  92. package/src/api/vtx-apikey-api.js +19 -0
  93. package/src/api/vtx-apikey-api.js.map +1 -0
  94. package/src/api/vtx-base-api.d.ts +107 -0
  95. package/src/api/vtx-base-api.js +6846 -0
  96. package/src/api/vtx-base-api.js.map +1 -0
  97. package/src/api/vtx-mobile-api.d.ts +6 -0
  98. package/src/api/vtx-mobile-api.js +27 -0
  99. package/src/api/vtx-mobile-api.js.map +1 -0
  100. package/src/api/vtx-web-browser-api.d.ts +7 -0
  101. package/src/api/vtx-web-browser-api.js +36 -0
  102. package/src/api/vtx-web-browser-api.js.map +1 -0
  103. package/src/api/vtx-web-server-api.d.ts +7 -0
  104. package/src/api/vtx-web-server-api.js +33 -0
  105. package/src/api/vtx-web-server-api.js.map +1 -0
  106. package/src/client/index.d.ts +25 -0
  107. package/src/client/index.js +44 -0
  108. package/src/client/index.js.map +1 -0
  109. package/src/client/runtime/batcher.d.ts +36 -0
  110. package/src/client/runtime/batcher.js +123 -0
  111. package/src/client/runtime/batcher.js.map +1 -0
  112. package/src/client/runtime/createClient.d.ts +17 -0
  113. package/src/client/runtime/createClient.js +28 -0
  114. package/src/client/runtime/createClient.js.map +1 -0
  115. package/src/client/runtime/error.d.ts +15 -0
  116. package/src/client/runtime/error.js +19 -0
  117. package/src/client/runtime/error.js.map +1 -0
  118. package/src/client/runtime/fetcher.d.ts +10 -0
  119. package/src/client/runtime/fetcher.js +68 -0
  120. package/src/client/runtime/fetcher.js.map +1 -0
  121. package/src/client/runtime/generateGraphqlOperation.d.ts +30 -0
  122. package/src/client/runtime/generateGraphqlOperation.js +134 -0
  123. package/src/client/runtime/generateGraphqlOperation.js.map +1 -0
  124. package/src/client/runtime/index.d.ts +11 -0
  125. package/src/client/runtime/index.js +17 -0
  126. package/src/client/runtime/index.js.map +1 -0
  127. package/src/client/runtime/linkTypeMap.d.ts +9 -0
  128. package/src/client/runtime/linkTypeMap.js +95 -0
  129. package/src/client/runtime/linkTypeMap.js.map +1 -0
  130. package/src/client/runtime/typeSelection.d.ts +28 -0
  131. package/src/client/runtime/typeSelection.js +3 -0
  132. package/src/client/runtime/typeSelection.js.map +1 -0
  133. package/src/client/runtime/types.d.ts +55 -0
  134. package/src/client/runtime/types.js +3 -0
  135. package/src/client/runtime/types.js.map +1 -0
  136. package/src/client/schema.d.ts +4299 -0
  137. package/src/client/schema.js +927 -0
  138. package/src/client/schema.js.map +1 -0
  139. package/src/client/types.d.ts +2291 -0
  140. package/src/client/{types.ts → types.js} +257 -214
  141. package/src/client/types.js.map +1 -0
  142. package/src/index.d.ts +11 -0
  143. package/src/index.js +28 -0
  144. package/src/index.js.map +1 -0
  145. package/tsconfig.lib.tsbuildinfo +1 -0
  146. package/src/api/api-call-headers.ts +0 -35
  147. package/src/api/backend-response.ts +0 -14
  148. package/src/api/domains.ts +0 -5
  149. package/src/api/response-builder.ts +0 -165
  150. package/src/api/types.ts +0 -9
  151. package/src/api/vtx-apikey-api.ts +0 -23
  152. package/src/api/vtx-base-api.ts +0 -8908
  153. package/src/api/vtx-mobile-api.ts +0 -31
  154. package/src/api/vtx-web-browser-api.ts +0 -45
  155. package/src/api/vtx-web-server-api.ts +0 -42
  156. package/src/client/index.ts +0 -65
  157. package/src/client/runtime/batcher.ts +0 -275
  158. package/src/client/runtime/createClient.ts +0 -68
  159. package/src/client/runtime/error.ts +0 -29
  160. package/src/client/runtime/fetcher.ts +0 -97
  161. package/src/client/runtime/generateGraphqlOperation.ts +0 -225
  162. package/src/client/runtime/index.ts +0 -13
  163. package/src/client/runtime/linkTypeMap.ts +0 -156
  164. package/src/client/runtime/typeSelection.ts +0 -95
  165. package/src/client/runtime/types.ts +0 -69
  166. package/src/client/schema.graphql +0 -2074
  167. package/src/client/schema.ts +0 -4363
  168. package/tsconfig.lib.json +0 -10
@@ -1,4363 +0,0 @@
1
- // @ts-nocheck
2
- /* istanbul ignore file */
3
- /* tslint:disable */
4
- /* eslint-disable */
5
-
6
- export type Scalars = {
7
- String: string,
8
- Boolean: boolean,
9
- DateTime: any,
10
- Float: number,
11
- ID: string,
12
- JSONObject: any,
13
- }
14
-
15
- export interface User {
16
- _id: Scalars['String']
17
- loginEmail: Scalars['String']
18
- suspended: Scalars['Boolean']
19
- domains: (DomainCredential[] | null)
20
- loginMethods: (Scalars['String'][] | null)
21
- __typename: 'User'
22
- }
23
-
24
- export interface UserWithToken {
25
- _id: Scalars['String']
26
- loginEmail: Scalars['String']
27
- suspended: Scalars['Boolean']
28
- domains: (DomainCredential[] | null)
29
- loginMethods: (Scalars['String'][] | null)
30
- token: UserToken
31
- __typename: 'UserWithToken'
32
- }
33
-
34
- export interface BaseTenant {
35
- _id: Scalars['String']
36
- name: Scalars['String']
37
- tenant_uri: Scalars['String']
38
- domain: Domain
39
- __typename: 'BaseTenant'
40
- }
41
-
42
- export interface Tenant {
43
- _id: Scalars['String']
44
- name: Scalars['String']
45
- tenant_uri: Scalars['String']
46
- domain: Domain
47
- email: Scalars['String']
48
- owner: (User | null)
49
- __typename: 'Tenant'
50
- }
51
-
52
- export interface Domain {
53
- _id: Scalars['String']
54
- name: Scalars['String']
55
- description: (Scalars['String'] | null)
56
- __typename: 'Domain'
57
- }
58
-
59
- export interface DomainCredential {
60
- _id: Scalars['String']
61
- name: Scalars['String']
62
- description: (Scalars['String'] | null)
63
- tenant: (BaseTenant | null)
64
- __typename: 'DomainCredential'
65
- }
66
-
67
- export interface UserToken {
68
- actualToken: Scalars['String']
69
- refreshToken: Scalars['String']
70
- __typename: 'UserToken'
71
- }
72
-
73
- export interface DecodedToken {
74
- tokenId: Scalars['String']
75
- systemId: Scalars['String']
76
- userId: Scalars['String']
77
- email: Scalars['String']
78
- refreshTokenId: Scalars['String']
79
- domains: DomainCredential[]
80
- __typename: 'DecodedToken'
81
- }
82
-
83
- export interface DecodedRefreshToken {
84
- userId: Scalars['String']
85
- email: Scalars['String']
86
- originalTokenId: Scalars['String']
87
- __typename: 'DecodedRefreshToken'
88
- }
89
-
90
- export interface TenantWithUserLogin {
91
- _id: Scalars['String']
92
- name: Scalars['String']
93
- tenant_uri: Scalars['String']
94
- domain: Domain
95
- email: Scalars['String']
96
- owner: (User | null)
97
- user: UserWithToken
98
- __typename: 'TenantWithUserLogin'
99
- }
100
-
101
- export interface UriAvailableType {
102
- available: Scalars['Boolean']
103
- valid: Scalars['Boolean']
104
- __typename: 'UriAvailableType'
105
- }
106
-
107
- export interface Agreement {
108
- _id: Scalars['String']
109
- kind: Scalars['String']
110
- domain: Scalars['String']
111
- isActiveAgreement: Scalars['Boolean']
112
- encoding: Scalars['String']
113
- version: Scalars['String']
114
- publishedDate: (Scalars['DateTime'] | null)
115
- unPublishedDate: (Scalars['DateTime'] | null)
116
- locked: Scalars['Boolean']
117
- name: Scalars['String']
118
- description: (Scalars['String'] | null)
119
- content: (Scalars['String'] | null)
120
- httpContentType: (Scalars['String'] | null)
121
- createdDate: Scalars['DateTime']
122
- updatedDate: Scalars['DateTime']
123
- __typename: 'Agreement'
124
- }
125
-
126
- export interface SignedAgreement {
127
- _id: Scalars['String']
128
- agreement: Agreement
129
- createdDate: Scalars['DateTime']
130
- signerReference: (Scalars['String'] | null)
131
- json: (Scalars['String'] | null)
132
- signedDate: Scalars['DateTime']
133
- ipAddress: (Scalars['String'] | null)
134
- userAgent: (Scalars['String'] | null)
135
- signedFromLocation: (Scalars['String'] | null)
136
- comments: (Scalars['String'] | null)
137
- updatedDate: Scalars['DateTime']
138
- __typename: 'SignedAgreement'
139
- }
140
-
141
- export interface BillEntity {
142
- name: Scalars['String']
143
- taxId: (Scalars['String'] | null)
144
- line1: (Scalars['String'] | null)
145
- line2: (Scalars['String'] | null)
146
- line3: (Scalars['String'] | null)
147
- city: (Scalars['String'] | null)
148
- state: (Scalars['String'] | null)
149
- country: (Scalars['String'] | null)
150
- zip: (Scalars['String'] | null)
151
- __typename: 'BillEntity'
152
- }
153
-
154
- export interface InvoiceItem {
155
- _id: Scalars['String']
156
- unitPrice: Scalars['Float']
157
- unitTax: Scalars['Float']
158
- quantity: Scalars['Float']
159
- unit: Scalars['String']
160
- itemPrice: Scalars['Float']
161
- itemTotal: Scalars['Float']
162
- __typename: 'InvoiceItem'
163
- }
164
-
165
- export interface Payment {
166
- _id: Scalars['String']
167
- amount: Scalars['Float']
168
- currency: Scalars['String']
169
- datePaid: Scalars['DateTime']
170
- paymentComment: (Scalars['String'] | null)
171
- transactionId: (Scalars['String'] | null)
172
- processorType: (Scalars['String'] | null)
173
- processorReference: (Scalars['String'] | null)
174
- paidItemReference: (Scalars['String'] | null)
175
- payeeReference: (Scalars['String'] | null)
176
- payorReference: (Scalars['String'] | null)
177
- paymentMethodType: (Scalars['String'] | null)
178
- paymentMethodReference: (Scalars['String'] | null)
179
- __typename: 'Payment'
180
- }
181
-
182
- export interface PlaFeature {
183
- _id: Scalars['String']
184
- title: Scalars['String']
185
- description: (Scalars['String'] | null)
186
- quantity: (Scalars['Float'] | null)
187
- quantityUnit: (Scalars['String'] | null)
188
- __typename: 'PlaFeature'
189
- }
190
-
191
- export interface Plan {
192
- _id: Scalars['String']
193
- name: (Scalars['String'] | null)
194
- description: (Scalars['String'] | null)
195
- prices: PlanPrice[]
196
- features: PlaFeature[]
197
- isPublic: Scalars['Boolean']
198
- active: Scalars['Boolean']
199
- startOfferingDate: (Scalars['DateTime'] | null)
200
- endOfferingDate: (Scalars['DateTime'] | null)
201
- termsAndConditions: (Scalars['String'] | null)
202
- __typename: 'Plan'
203
- }
204
-
205
- export interface PlanPrice {
206
- _id: Scalars['String']
207
- currency: Scalars['String']
208
- price: Scalars['Float']
209
- taxMode: Scalars['String']
210
- period: Scalars['String']
211
- customDays: (Scalars['Float'] | null)
212
- plan: (Plan | null)
213
- __typename: 'PlanPrice'
214
- }
215
-
216
- export interface Invoice {
217
- _id: Scalars['String']
218
- invoiceDate: Scalars['DateTime']
219
- billedEntity: BillEntity
220
- dueDate: Scalars['DateTime']
221
- billAmount: Scalars['Float']
222
- tax: Scalars['Float']
223
- total: Scalars['Float']
224
- currency: Scalars['String']
225
- items: (InvoiceItem[] | null)
226
- payments: (Payment[] | null)
227
- __typename: 'Invoice'
228
- }
229
-
230
- export interface SubscriptionInvoice {
231
- _id: Scalars['String']
232
- invoice: Invoice
233
- billedPlan: PlanPrice
234
- subscriber: PlanSubscription
235
- __typename: 'SubscriptionInvoice'
236
- }
237
-
238
- export interface PlanSubscription {
239
- _id: Scalars['String']
240
- currentPlan: PlanPrice
241
- billPrice: Scalars['Float']
242
- billCurrency: Scalars['String']
243
- billPriceComment: (Scalars['String'] | null)
244
- lastBillDate: Scalars['DateTime']
245
- endAccessDate: Scalars['DateTime']
246
- autoRenew: Scalars['Boolean']
247
- autoRenewPlan: (PlanPrice | null)
248
- autoRenewDate: Scalars['DateTime']
249
- payments: SubscriptionPayment[]
250
- invoices: SubscriptionInvoice[]
251
- __typename: 'PlanSubscription'
252
- }
253
-
254
- export interface SubscriptionPayment {
255
- _id: Scalars['String']
256
- payment: Payment
257
- subscriber: PlanSubscription
258
- __typename: 'SubscriptionPayment'
259
- }
260
-
261
- export interface AWSS3File {
262
- _id: Scalars['String']
263
- name: (Scalars['String'] | null)
264
- contentType: (Scalars['String'] | null)
265
- size: (Scalars['Float'] | null)
266
- useType: (Scalars['String'] | null)
267
- url: Scalars['String']
268
- key: Scalars['String']
269
- pendingDelete: Scalars['Boolean']
270
- __typename: 'AWSS3File'
271
- }
272
-
273
- export interface MagicLink {
274
- _id: Scalars['String']
275
- code: Scalars['String']
276
- type: Scalars['String']
277
- url: Scalars['String']
278
- expires: (Scalars['DateTime'] | null)
279
- data: (Scalars['String'] | null)
280
- isExpired: Scalars['Boolean']
281
- __typename: 'MagicLink'
282
- }
283
-
284
- export interface VerificationCode {
285
- _id: Scalars['String']
286
- type: (Scalars['String'] | null)
287
- recipient: (Scalars['String'] | null)
288
- expires: (Scalars['DateTime'] | null)
289
- data: (Scalars['String'] | null)
290
- isExpired: Scalars['Boolean']
291
- createdDate: Scalars['DateTime']
292
- __typename: 'VerificationCode'
293
- }
294
-
295
- export interface ErrorInfo {
296
- errorCode: Scalars['Float']
297
- errorMessage: Scalars['String']
298
- __typename: 'ErrorInfo'
299
- }
300
-
301
- export interface HttpRequestField {
302
- key: Scalars['String']
303
- value: Scalars['String']
304
- __typename: 'HttpRequestField'
305
- }
306
-
307
- export interface AWSS3UploadUrl {
308
- uploadUrl: Scalars['String']
309
- fields: HttpRequestField[]
310
- downloadUrl: Scalars['String']
311
- bucket: Scalars['String']
312
- key: Scalars['String']
313
- __typename: 'AWSS3UploadUrl'
314
- }
315
-
316
- export interface AWSS3CallResult {
317
- httpStatus: Scalars['Float']
318
- result: Scalars['String']
319
- message: Scalars['String']
320
- errors: (Scalars['String'][] | null)
321
- __typename: 'AWSS3CallResult'
322
- }
323
-
324
- export interface DatabaseFile {
325
- _id: Scalars['String']
326
- identifier: Scalars['String']
327
- version: Scalars['String']
328
- contentType: Scalars['String']
329
- updated: Scalars['DateTime']
330
- created: Scalars['DateTime']
331
- __typename: 'DatabaseFile'
332
- }
333
-
334
- export interface TextDatabaseFile {
335
- _id: Scalars['String']
336
- identifier: Scalars['String']
337
- version: Scalars['String']
338
- contentType: Scalars['String']
339
- updated: Scalars['DateTime']
340
- created: Scalars['DateTime']
341
- content: Scalars['String']
342
- __typename: 'TextDatabaseFile'
343
- }
344
-
345
- export interface CodeVerificationResponse {
346
- result: Scalars['String']
347
- code: (VerificationCode | null)
348
- error: (ErrorInfo | null)
349
- __typename: 'CodeVerificationResponse'
350
- }
351
-
352
- export interface BrandStats {
353
- campaigns: (Scalars['Float'] | null)
354
- sponsorships: (Scalars['Float'] | null)
355
- sports: (Scalars['Float'] | null)
356
- athletes: (Scalars['Float'] | null)
357
- __typename: 'BrandStats'
358
- }
359
-
360
- export interface BrandTranslation {
361
- _id: Scalars['String']
362
- brandId: Scalars['String']
363
- language: Scalars['String']
364
- name: (Scalars['String'] | null)
365
- slogan: (Scalars['String'] | null)
366
- description: (Scalars['String'] | null)
367
- logo: (AWSS3File | null)
368
- banner: (AWSS3File | null)
369
- __typename: 'BrandTranslation'
370
- }
371
-
372
- export interface Brand {
373
- _id: Scalars['String']
374
- name: Scalars['String']
375
- slogan: (Scalars['String'] | null)
376
- website: (Scalars['String'] | null)
377
- description: (Scalars['String'] | null)
378
- approved: Scalars['Boolean']
379
- published: Scalars['Boolean']
380
- logo: (AWSS3File | null)
381
- banner: (AWSS3File | null)
382
- stats: (BrandStats | null)
383
- operatorIds: (Scalars['String'][] | null)
384
- translations: (BrandTranslation[] | null)
385
- __typename: 'Brand'
386
- }
387
-
388
- export interface StravaTpiRideDto {
389
- distanceKm: Scalars['Float']
390
- distanceKmLast: Scalars['Float']
391
- elapsedTimeMin: Scalars['Float']
392
- elapsedTimeMinLast: Scalars['Float']
393
- averageSpeedKmh: Scalars['Float']
394
- averageSpeedKmhLast: Scalars['Float']
395
- maxSpeedKmh: Scalars['Float']
396
- maxSpeedKmhLast: Scalars['Float']
397
- averageHeartRateBpm: Scalars['Float']
398
- averageHeartRateBpmLast: Scalars['Float']
399
- maxHeartRateBpm: Scalars['Float']
400
- maxHeartRateBpmLast: Scalars['Float']
401
- averageCadenceStm: Scalars['Float']
402
- averageCadenceStmLast: Scalars['Float']
403
- lastDate: (Scalars['DateTime'] | null)
404
- country: (Scalars['String'] | null)
405
- state: (Scalars['String'] | null)
406
- city: (Scalars['String'] | null)
407
- tpi: Scalars['Float']
408
- __typename: 'StravaTpiRideDto'
409
- }
410
-
411
- export interface StravaTpiRunDto {
412
- distanceKm: Scalars['Float']
413
- distanceKmLast: Scalars['Float']
414
- elapsedTimeMin: Scalars['Float']
415
- elapsedTimeMinLast: Scalars['Float']
416
- averageSpeedKmh: Scalars['Float']
417
- averageSpeedKmhLast: Scalars['Float']
418
- maxSpeedKmh: Scalars['Float']
419
- maxSpeedKmhLast: Scalars['Float']
420
- averageHeartRateBpm: Scalars['Float']
421
- averageHeartRateBpmLast: Scalars['Float']
422
- maxHeartRateBpm: Scalars['Float']
423
- maxHeartRateBpmLast: Scalars['Float']
424
- averageCadenceStm: Scalars['Float']
425
- averageCadenceStmLast: Scalars['Float']
426
- elevHigh: Scalars['Float']
427
- elevHighLast: Scalars['Float']
428
- elevLow: Scalars['Float']
429
- elevLowLast: Scalars['Float']
430
- lastDate: (Scalars['DateTime'] | null)
431
- country: (Scalars['String'] | null)
432
- state: (Scalars['String'] | null)
433
- city: (Scalars['String'] | null)
434
- tpi: Scalars['Float']
435
- __typename: 'StravaTpiRunDto'
436
- }
437
-
438
- export interface StravaTpiSwimDto {
439
- distanceKm: Scalars['Float']
440
- distanceKmLast: Scalars['Float']
441
- elapsedTimeMin: Scalars['Float']
442
- elapsedTimeMinLast: Scalars['Float']
443
- averageSpeedKmh: Scalars['Float']
444
- averageSpeedKmhLast: Scalars['Float']
445
- maxSpeedKmh: Scalars['Float']
446
- maxSpeedKmhLast: Scalars['Float']
447
- averageHeartRateBpm: Scalars['Float']
448
- averageHeartRateBpmLast: Scalars['Float']
449
- maxHeartRateBpm: Scalars['Float']
450
- maxHeartRateBpmLast: Scalars['Float']
451
- averageCadenceStm: Scalars['Float']
452
- averageCadenceStmLast: Scalars['Float']
453
- lastDate: (Scalars['DateTime'] | null)
454
- country: (Scalars['String'] | null)
455
- state: (Scalars['String'] | null)
456
- city: (Scalars['String'] | null)
457
- tpi: Scalars['Float']
458
- __typename: 'StravaTpiSwimDto'
459
- }
460
-
461
- export interface City {
462
- _id: Scalars['String']
463
- name: Scalars['String']
464
- localizedName: Scalars['String']
465
- state: (State | null)
466
- latitude: (Scalars['Float'] | null)
467
- longitude: (Scalars['Float'] | null)
468
- timezone: (Scalars['String'] | null)
469
- __typename: 'City'
470
- }
471
-
472
- export interface State {
473
- _id: Scalars['String']
474
- name: Scalars['String']
475
- country: (Country | null)
476
- cities: (City[] | null)
477
- __typename: 'State'
478
- }
479
-
480
- export interface Country {
481
- _id: Scalars['String']
482
- name: Scalars['String']
483
- states: (State[] | null)
484
- __typename: 'Country'
485
- }
486
-
487
- export interface AgeQualification {
488
- type: Scalars['String']
489
- value: Scalars['Float']
490
- operator: Scalars['String']
491
- __typename: 'AgeQualification'
492
- }
493
-
494
- export interface GenderQualification {
495
- type: Scalars['String']
496
- operator: Scalars['String']
497
- values: Scalars['String'][]
498
- __typename: 'GenderQualification'
499
- }
500
-
501
- export interface ScoreQualification {
502
- type: Scalars['String']
503
- scoreType: Scalars['String']
504
- operator: Scalars['String']
505
- value: Scalars['Float']
506
- __typename: 'ScoreQualification'
507
- }
508
-
509
- export interface LocationQualification {
510
- type: Scalars['String']
511
- operator: Scalars['String']
512
- countries: Country[]
513
- states: State[]
514
- cities: City[]
515
- __typename: 'LocationQualification'
516
- }
517
-
518
- export interface NationalityQualification {
519
- type: Scalars['String']
520
- operator: Scalars['String']
521
- countries: Country[]
522
- __typename: 'NationalityQualification'
523
- }
524
-
525
- export interface DistanceQualification {
526
- type: Scalars['String']
527
- maxDistance: Scalars['Float']
528
- latitude: (Scalars['Float'] | null)
529
- longitude: (Scalars['Float'] | null)
530
- cityId: (Scalars['String'] | null)
531
- __typename: 'DistanceQualification'
532
- }
533
-
534
- export interface SportsQualification {
535
- type: Scalars['String']
536
- sports: Scalars['String'][]
537
- operator: Scalars['String']
538
- __typename: 'SportsQualification'
539
- }
540
-
541
- export interface SportsLevelQualification {
542
- type: Scalars['String']
543
- operator: Scalars['String']
544
- level: Scalars['String']
545
- __typename: 'SportsLevelQualification'
546
- }
547
-
548
- export interface AthleteCriteria {
549
- _id: Scalars['String']
550
- label: (Scalars['String'] | null)
551
- qualifications: (QualificationTypeUnion[] | null)
552
- __typename: 'AthleteCriteria'
553
- }
554
-
555
- export type QualificationTypeUnion = (AgeQualification | GenderQualification | ScoreQualification | LocationQualification | NationalityQualification | DistanceQualification | SportsQualification | SportsLevelQualification) & { __isUnion?: true }
556
-
557
- export interface Industry {
558
- _id: Scalars['String']
559
- name: Scalars['String']
560
- __typename: 'Industry'
561
- }
562
-
563
- export interface SponsorStats {
564
- sponsoredAthletes: Scalars['Float']
565
- totalBrands: Scalars['Float']
566
- activeCampaigns: Scalars['Float']
567
- activeSponsorships: Scalars['Float']
568
- __typename: 'SponsorStats'
569
- }
570
-
571
- export interface SponsorBrand {
572
- _id: Scalars['String']
573
- name: Scalars['String']
574
- slogan: (Scalars['String'] | null)
575
- website: (Scalars['String'] | null)
576
- description: (Scalars['String'] | null)
577
- approved: Scalars['Boolean']
578
- published: Scalars['Boolean']
579
- logo: (AWSS3File | null)
580
- banner: (AWSS3File | null)
581
- stats: (BrandStats | null)
582
- operatorIds: (Scalars['String'][] | null)
583
- translations: (BrandTranslation[] | null)
584
- sponsorBrandId: Scalars['String']
585
- authorizedUse: Scalars['Boolean']
586
- isAuthorizer: Scalars['Boolean']
587
- __typename: 'SponsorBrand'
588
- }
589
-
590
- export interface Sponsor {
591
- _id: Scalars['String']
592
- name: Scalars['String']
593
- description: Scalars['String']
594
- tenant: Tenant
595
- industry: (Industry | null)
596
- stats: (SponsorStats | null)
597
- brands: (SponsorBrand[] | null)
598
- sponsorships: (Sponsorship[] | null)
599
- approved: Scalars['Boolean']
600
- __typename: 'Sponsor'
601
- }
602
-
603
- export interface SponsorshipItem {
604
- _id: Scalars['String']
605
- quantity: Scalars['Float']
606
- title: Scalars['String']
607
- value: Scalars['Float']
608
- type: Scalars['String']
609
- __typename: 'SponsorshipItem'
610
- }
611
-
612
- export interface SponsorshipCommitment {
613
- _id: Scalars['String']
614
- title: Scalars['String']
615
- details: (Scalars['String'] | null)
616
- hashTags: Scalars['String']
617
- media: Scalars['String']
618
- actionType: Scalars['String']
619
- frequency: (Scalars['Float'] | null)
620
- periodicity: Scalars['String']
621
- autoMeasurable: Scalars['Boolean']
622
- __typename: 'SponsorshipCommitment'
623
- }
624
-
625
- export interface Duration {
626
- length: Scalars['Float']
627
- unit: Scalars['String']
628
- __typename: 'Duration'
629
- }
630
-
631
- export interface SponsorshipStats {
632
- totalSponsorships: (Scalars['Float'] | null)
633
- totalApplications: (Scalars['Float'] | null)
634
- newApplications: (Scalars['Float'] | null)
635
- discardedApplications: (Scalars['Float'] | null)
636
- selectedApplications: (Scalars['Float'] | null)
637
- approvedApplications: (Scalars['Float'] | null)
638
- grantedSponsorships: (Scalars['Float'] | null)
639
- remainingSponsorships: (Scalars['Float'] | null)
640
- __typename: 'SponsorshipStats'
641
- }
642
-
643
- export interface SponsorshipTranslation {
644
- _id: Scalars['String']
645
- sponsorshipId: Scalars['String']
646
- language: Scalars['String']
647
- title: (Scalars['String'] | null)
648
- description: (Scalars['String'] | null)
649
- terms: (Scalars['String'] | null)
650
- banner: (AWSS3File | null)
651
- __typename: 'SponsorshipTranslation'
652
- }
653
-
654
- export interface Sponsorship {
655
- _id: Scalars['String']
656
- title: Scalars['String']
657
- description: (Scalars['String'] | null)
658
- cashValue: Scalars['Float']
659
- otherValue: Scalars['Float']
660
- brand: (Brand | null)
661
- banner: (AWSS3File | null)
662
- criteria: (AthleteCriteria | null)
663
- deadline: (Scalars['DateTime'] | null)
664
- startDate: (Scalars['DateTime'] | null)
665
- duration: Duration
666
- sponsor: (Sponsor | null)
667
- sponsorshipItems: (SponsorshipItem[] | null)
668
- commitments: (SponsorshipCommitment[] | null)
669
- terms: (Scalars['String'] | null)
670
- stats: (SponsorshipStats | null)
671
- isPrivate: Scalars['Boolean']
672
- approved: Scalars['Boolean']
673
- published: Scalars['Boolean']
674
- translations: (SponsorshipTranslation[] | null)
675
- __typename: 'Sponsorship'
676
- }
677
-
678
- export interface FollowStats {
679
- followers: Scalars['Float']
680
- followed: Scalars['Float']
681
- raves: Scalars['Float']
682
- favorites: Scalars['Float']
683
- __typename: 'FollowStats'
684
- }
685
-
686
- export interface Sport {
687
- _id: Scalars['String']
688
- name: Scalars['String']
689
- resultType: Scalars['String']
690
- __typename: 'Sport'
691
- }
692
-
693
- export interface VtxScores {
694
- vtxScore: Scalars['Float']
695
- socialScore: Scalars['Float']
696
- trainingScore: Scalars['Float']
697
- competitionScore: Scalars['Float']
698
- __typename: 'VtxScores'
699
- }
700
-
701
- export interface SportLevelTranslation {
702
- _id: Scalars['String']
703
- language: Scalars['String']
704
- label: Scalars['String']
705
- __typename: 'SportLevelTranslation'
706
- }
707
-
708
- export interface SportLevel {
709
- _id: Scalars['String']
710
- label: Scalars['String']
711
- index: Scalars['Float']
712
- translations: (SportLevelTranslation[] | null)
713
- __typename: 'SportLevel'
714
- }
715
-
716
- export interface Ranking {
717
- scope: Scalars['String']
718
- scopeId: Scalars['String']
719
- scopeName: Scalars['String']
720
- position: Scalars['Float']
721
- total: Scalars['Float']
722
- __typename: 'Ranking'
723
- }
724
-
725
- export interface AthleteRankings {
726
- worldRanking: (Ranking | null)
727
- countryRanking: (Ranking | null)
728
- stateRanking: (Ranking | null)
729
- cityRanking: (Ranking | null)
730
- __typename: 'AthleteRankings'
731
- }
732
-
733
- export interface Team {
734
- _id: Scalars['String']
735
- name: Scalars['String']
736
- description: (Scalars['String'] | null)
737
- sports: (Sport[] | null)
738
- approved: (Scalars['Boolean'] | null)
739
- logo: (AWSS3File | null)
740
- banner: (AWSS3File | null)
741
- __typename: 'Team'
742
- }
743
-
744
- export interface WorldLocation {
745
- _id: Scalars['String']
746
- userProvidedLatitude: (Scalars['Float'] | null)
747
- userProvidedLongitude: (Scalars['Float'] | null)
748
- cityNameGeocode: (Scalars['String'] | null)
749
- stateNameGeocode: (Scalars['String'] | null)
750
- countryIso2CodeGeocode: (Scalars['String'] | null)
751
- timeZoneGeocode: (Scalars['String'] | null)
752
- latitudeGeocode: (Scalars['Float'] | null)
753
- longitudeGeocode: (Scalars['Float'] | null)
754
- city: (City | null)
755
- __typename: 'WorldLocation'
756
- }
757
-
758
- export interface SportsEvent {
759
- _id: Scalars['String']
760
- name: Scalars['String']
761
- mainSport: (Sport | null)
762
- eventWebSite: (Scalars['String'] | null)
763
- startDate: Scalars['DateTime']
764
- endDate: (Scalars['DateTime'] | null)
765
- verified: Scalars['Boolean']
766
- banner: (AWSS3File | null)
767
- location: (WorldLocation | null)
768
- eventLevel: (Scalars['String'] | null)
769
- __typename: 'SportsEvent'
770
- }
771
-
772
- export interface AthleteCompetitionResult {
773
- _id: Scalars['String']
774
- resultType: Scalars['String']
775
- position: (Scalars['Float'] | null)
776
- totalParticipants: (Scalars['Float'] | null)
777
- score: (Scalars['String'] | null)
778
- finishTimeMS: (Scalars['Float'] | null)
779
- resultWebLink: (Scalars['String'] | null)
780
- outcome: (Scalars['String'] | null)
781
- adversary: (Scalars['String'] | null)
782
- genderPosition: (Scalars['Float'] | null)
783
- genderParticipants: (Scalars['Float'] | null)
784
- categoryPosition: (Scalars['Float'] | null)
785
- categoryParticipants: (Scalars['Float'] | null)
786
- categoryName: (Scalars['String'] | null)
787
- __typename: 'AthleteCompetitionResult'
788
- }
789
-
790
- export interface BudgetItem {
791
- _id: Scalars['String']
792
- quantity: Scalars['Float']
793
- concept: Scalars['String']
794
- itemCost: Scalars['Float']
795
- __typename: 'BudgetItem'
796
- }
797
-
798
- export interface Budget {
799
- _id: Scalars['String']
800
- initialFunds: Scalars['Float']
801
- totalRequired: Scalars['Float']
802
- items: (BudgetItem[] | null)
803
- __typename: 'Budget'
804
- }
805
-
806
- export interface AthleteCompetition {
807
- _id: Scalars['String']
808
- event: SportsEvent
809
- participationDate: (Scalars['DateTime'] | null)
810
- competitionNumber: (Scalars['String'] | null)
811
- result: (AthleteCompetitionResult | null)
812
- fundRaisingCampaignIds: (Scalars['String'][] | null)
813
- budget: (Budget | null)
814
- __typename: 'AthleteCompetition'
815
- }
816
-
817
- export interface MembershipOrganizationReference {
818
- _id: Scalars['String']
819
- shortName: (Scalars['String'] | null)
820
- acronym: (Scalars['String'] | null)
821
- fullName: Scalars['String']
822
- website: (Scalars['String'] | null)
823
- verified: Scalars['Boolean']
824
- logo: (AWSS3File | null)
825
- country: (Country | null)
826
- sport: (Sport | null)
827
- __typename: 'MembershipOrganizationReference'
828
- }
829
-
830
- export interface MembershipOrganization {
831
- _id: Scalars['String']
832
- shortName: (Scalars['String'] | null)
833
- acronym: (Scalars['String'] | null)
834
- fullName: Scalars['String']
835
- website: (Scalars['String'] | null)
836
- verified: Scalars['Boolean']
837
- logo: (AWSS3File | null)
838
- country: (Country | null)
839
- sport: (Sport | null)
840
- memberships: (AthleteMembership[] | null)
841
- __typename: 'MembershipOrganization'
842
- }
843
-
844
- export interface AthleteMembership {
845
- _id: Scalars['String']
846
- organization: MembershipOrganizationReference
847
- athlete: AthleteReference
848
- membershipNumber: (Scalars['String'] | null)
849
- membershipType: (Scalars['String'] | null)
850
- issueDate: (Scalars['DateTime'] | null)
851
- expirationDate: (Scalars['DateTime'] | null)
852
- __typename: 'AthleteMembership'
853
- }
854
-
855
- export interface NewsLink {
856
- _id: Scalars['String']
857
- title: Scalars['String']
858
- url: Scalars['String']
859
- abstract: (Scalars['String'] | null)
860
- __typename: 'NewsLink'
861
- }
862
-
863
- export interface Channel {
864
- _id: Scalars['String']
865
- type: Scalars['String']
866
- handle: (Scalars['String'] | null)
867
- url: Scalars['String']
868
- linked: Scalars['Boolean']
869
- __typename: 'Channel'
870
- }
871
-
872
- export interface PhotoAlbum {
873
- _id: Scalars['String']
874
- photo: (AWSS3File | null)
875
- __typename: 'PhotoAlbum'
876
- }
877
-
878
- export interface Album {
879
- _id: Scalars['String']
880
- label: Scalars['String']
881
- description: (Scalars['String'] | null)
882
- photos: (PhotoAlbum[] | null)
883
- __typename: 'Album'
884
- }
885
-
886
- export interface AthletePreferences {
887
- _id: Scalars['String']
888
- showProfileHelper: Scalars['Boolean']
889
- defaultAlbum: (Album | null)
890
- __typename: 'AthletePreferences'
891
- }
892
-
893
- export interface FundRaisingCampaign {
894
- _id: Scalars['String']
895
- athlete: AthleteReference
896
- budgetMode: Scalars['String']
897
- status: Scalars['String']
898
- title: Scalars['String']
899
- motivation: (Scalars['String'] | null)
900
- website: (Scalars['String'] | null)
901
- fundsRequired: Scalars['Float']
902
- initialFundsObtained: Scalars['Float']
903
- fundsObtained: Scalars['Float']
904
- location: (WorldLocation | null)
905
- endingDate: Scalars['DateTime']
906
- budget: (Budget | null)
907
- competitions: (AthleteCompetition[] | null)
908
- vtxComissionPct: Scalars['Float']
909
- __typename: 'FundRaisingCampaign'
910
- }
911
-
912
- export interface StripeCapabilityType {
913
- acss_debit_payments: (Scalars['String'] | null)
914
- affirm_payments: (Scalars['String'] | null)
915
- afterpay_clearpay_payments: (Scalars['String'] | null)
916
- alma_payments: (Scalars['String'] | null)
917
- amazon_pay_payments: (Scalars['String'] | null)
918
- au_becs_debit_payments: (Scalars['String'] | null)
919
- bacs_debit_payments: (Scalars['String'] | null)
920
- bancontact_payments: (Scalars['String'] | null)
921
- bank_transfer_payments: (Scalars['String'] | null)
922
- blik_payments: (Scalars['String'] | null)
923
- boleto_payments: (Scalars['String'] | null)
924
- card_issuing: (Scalars['String'] | null)
925
- card_payments: (Scalars['String'] | null)
926
- cartes_bancaires_payments: (Scalars['String'] | null)
927
- cashapp_payments: (Scalars['String'] | null)
928
- eps_payments: (Scalars['String'] | null)
929
- fpx_payments: (Scalars['String'] | null)
930
- gb_bank_transfer_payments: (Scalars['String'] | null)
931
- giropay_payments: (Scalars['String'] | null)
932
- grabpay_payments: (Scalars['String'] | null)
933
- ideal_payments: (Scalars['String'] | null)
934
- india_international_payments: (Scalars['String'] | null)
935
- jcb_payments: (Scalars['String'] | null)
936
- jp_bank_transfer_payments: (Scalars['String'] | null)
937
- kakao_pay_payments: (Scalars['String'] | null)
938
- klarna_payments: (Scalars['String'] | null)
939
- konbini_payments: (Scalars['String'] | null)
940
- kr_card_payments: (Scalars['String'] | null)
941
- legacy_payments: (Scalars['String'] | null)
942
- link_payments: (Scalars['String'] | null)
943
- mobilepay_payments: (Scalars['String'] | null)
944
- multibanco_payments: (Scalars['String'] | null)
945
- mx_bank_transfer_payments: (Scalars['String'] | null)
946
- naver_pay_payments: (Scalars['String'] | null)
947
- oxxo_payments: (Scalars['String'] | null)
948
- p24_payments: (Scalars['String'] | null)
949
- pay_by_bank_payments: (Scalars['String'] | null)
950
- payco_payments: (Scalars['String'] | null)
951
- paynow_payments: (Scalars['String'] | null)
952
- promptpay_payments: (Scalars['String'] | null)
953
- revolut_pay_payments: (Scalars['String'] | null)
954
- samsung_pay_payments: (Scalars['String'] | null)
955
- sepa_bank_transfer_payments: (Scalars['String'] | null)
956
- sepa_debit_payments: (Scalars['String'] | null)
957
- sofort_payments: (Scalars['String'] | null)
958
- swish_payments: (Scalars['String'] | null)
959
- tax_reporting_us_1099_k: (Scalars['String'] | null)
960
- tax_reporting_us_1099_misc: (Scalars['String'] | null)
961
- transfers: (Scalars['String'] | null)
962
- treasury: (Scalars['String'] | null)
963
- twint_payments: (Scalars['String'] | null)
964
- us_bank_account_ach_payments: (Scalars['String'] | null)
965
- us_bank_transfer_payments: (Scalars['String'] | null)
966
- zip_payments: (Scalars['String'] | null)
967
- __typename: 'StripeCapabilityType'
968
- }
969
-
970
- export interface StripeRequirementAlternativeType {
971
- alternative_fields_due: Scalars['String'][]
972
- original_fields_due: Scalars['String'][]
973
- __typename: 'StripeRequirementAlternativeType'
974
- }
975
-
976
- export interface StripeFutureRequirementAlternativeType {
977
- alternative_fields_due: Scalars['String'][]
978
- original_fields_due: Scalars['String'][]
979
- __typename: 'StripeFutureRequirementAlternativeType'
980
- }
981
-
982
- export interface StripeErrorType {
983
- code: Scalars['String']
984
- reason: Scalars['String']
985
- requirement: Scalars['String']
986
- __typename: 'StripeErrorType'
987
- }
988
-
989
- export interface StripeRequirementType {
990
- alternatives: (StripeRequirementAlternativeType[] | null)
991
- current_deadline: (Scalars['DateTime'] | null)
992
- currently_due: (Scalars['String'][] | null)
993
- disabled_reason: (Scalars['String'] | null)
994
- errors: (StripeErrorType[] | null)
995
- eventually_due: (Scalars['String'][] | null)
996
- past_due: (Scalars['String'][] | null)
997
- pending_verification: (Scalars['String'][] | null)
998
- __typename: 'StripeRequirementType'
999
- }
1000
-
1001
- export interface StripeFutureRequirementType {
1002
- alternatives: (StripeFutureRequirementAlternativeType[] | null)
1003
- current_deadline: (Scalars['DateTime'] | null)
1004
- currently_due: (Scalars['String'][] | null)
1005
- disabled_reason: (Scalars['String'] | null)
1006
- errors: (StripeErrorType[] | null)
1007
- eventually_due: (Scalars['String'][] | null)
1008
- past_due: (Scalars['String'][] | null)
1009
- pending_verification: (Scalars['String'][] | null)
1010
- __typename: 'StripeFutureRequirementType'
1011
- }
1012
-
1013
- export interface StripeAccount {
1014
- id: Scalars['String']
1015
- object: Scalars['String']
1016
- business_type: (Scalars['String'] | null)
1017
- country: Scalars['String']
1018
- email: (Scalars['String'] | null)
1019
- capabilities: (StripeCapabilityType | null)
1020
- requirements: (StripeRequirementType | null)
1021
- future_requirements: (StripeFutureRequirementType | null)
1022
- type: Scalars['String']
1023
- charges_enabled: Scalars['Boolean']
1024
- payouts_enabled: Scalars['Boolean']
1025
- created: (Scalars['DateTime'] | null)
1026
- default_currency: (Scalars['String'] | null)
1027
- __typename: 'StripeAccount'
1028
- }
1029
-
1030
- export interface StripeAccountReference {
1031
- _id: Scalars['String']
1032
- stripeAccountId: Scalars['String']
1033
- account: (StripeAccount | null)
1034
- __typename: 'StripeAccountReference'
1035
- }
1036
-
1037
- export interface HistoricalScoreType {
1038
- _id: Scalars['String']
1039
- scoreType: Scalars['String']
1040
- score: Scalars['Float']
1041
- date: Scalars['DateTime']
1042
- athleteId: Scalars['String']
1043
- __typename: 'HistoricalScoreType'
1044
- }
1045
-
1046
- export interface AthleteReference {
1047
- _id: Scalars['String']
1048
- firstName: Scalars['String']
1049
- lastName: Scalars['String']
1050
- screenName: (Scalars['String'] | null)
1051
- dob: (Scalars['DateTime'] | null)
1052
- lgbt: (Scalars['Boolean'] | null)
1053
- competitionGender: (Scalars['String'] | null)
1054
- country: (Country | null)
1055
- location: (WorldLocation | null)
1056
- trainer: (Scalars['String'] | null)
1057
- trainerUrl: (Scalars['String'] | null)
1058
- followStats: (FollowStats | null)
1059
- mainSport: Sport
1060
- mainSportLevel: SportLevel
1061
- scores: VtxScores
1062
- rankings: (AthleteRankings | null)
1063
- totalUpcomingCompetitions: (Scalars['Float'] | null)
1064
- totalPastCompetitions: (Scalars['Float'] | null)
1065
- profilePicture: (AWSS3File | null)
1066
- cardPicture: (AWSS3File | null)
1067
- bannerPicture: (AWSS3File | null)
1068
- aboutMe: (Scalars['String'] | null)
1069
- preferences: AthletePreferences
1070
- __typename: 'AthleteReference'
1071
- }
1072
-
1073
- export interface Athlete {
1074
- _id: Scalars['String']
1075
- firstName: Scalars['String']
1076
- lastName: Scalars['String']
1077
- screenName: (Scalars['String'] | null)
1078
- dob: (Scalars['DateTime'] | null)
1079
- lgbt: (Scalars['Boolean'] | null)
1080
- competitionGender: (Scalars['String'] | null)
1081
- country: (Country | null)
1082
- location: (WorldLocation | null)
1083
- trainer: (Scalars['String'] | null)
1084
- trainerUrl: (Scalars['String'] | null)
1085
- followStats: (FollowStats | null)
1086
- mainSport: Sport
1087
- mainSportLevel: SportLevel
1088
- scores: VtxScores
1089
- rankings: (AthleteRankings | null)
1090
- totalUpcomingCompetitions: (Scalars['Float'] | null)
1091
- totalPastCompetitions: (Scalars['Float'] | null)
1092
- profilePicture: (AWSS3File | null)
1093
- cardPicture: (AWSS3File | null)
1094
- bannerPicture: (AWSS3File | null)
1095
- aboutMe: (Scalars['String'] | null)
1096
- preferences: AthletePreferences
1097
- allSports: (Sport[] | null)
1098
- teams: (Team[] | null)
1099
- sponsorBrands: (Brand[] | null)
1100
- competitions: (AthleteCompetition[] | null)
1101
- affiliations: (AthleteMembership[] | null)
1102
- newsLinks: (NewsLink[] | null)
1103
- channels: (Channel[] | null)
1104
- currentCampaign: (FundRaisingCampaign | null)
1105
- fundingCampaigns: (FundRaisingCampaign[] | null)
1106
- stripeAccountReference: (StripeAccountReference | null)
1107
- albums: (Album[] | null)
1108
- historicalScores: (HistoricalScoreType[] | null)
1109
- signedAgreements: (SignedAgreement[] | null)
1110
- __typename: 'Athlete'
1111
- }
1112
-
1113
- export interface CheckoutSession {
1114
- _id: Scalars['ID']
1115
- type: (Scalars['String'] | null)
1116
- estimatedStripeComission: (Scalars['Float'] | null)
1117
- stripeSessionId: Scalars['String']
1118
- stripeAccountId: Scalars['String']
1119
- donationAmount: Scalars['Float']
1120
- fromEmail: (Scalars['String'] | null)
1121
- confirmed: Scalars['Boolean']
1122
- completed: Scalars['Boolean']
1123
- completedDate: (Scalars['DateTime'] | null)
1124
- createdDate: Scalars['DateTime']
1125
- __typename: 'CheckoutSession'
1126
- }
1127
-
1128
- export interface FundingCheckoutSessionData {
1129
- _id: Scalars['ID']
1130
- session: (CheckoutSession | null)
1131
- fromName: (Scalars['String'] | null)
1132
- paidToAthlete: (Scalars['Float'] | null)
1133
- paidToVtx: (Scalars['Float'] | null)
1134
- fundingCampaign: (FundRaisingCampaign | null)
1135
- mode: DonationMode
1136
- athleteId: Scalars['String']
1137
- athleteName: Scalars['String']
1138
- fromPhone: (Scalars['String'] | null)
1139
- message: (Scalars['String'] | null)
1140
- __typename: 'FundingCheckoutSessionData'
1141
- }
1142
-
1143
- export interface SponsorAthleteInvitation {
1144
- _id: Scalars['String']
1145
- name: (Scalars['String'] | null)
1146
- email: Scalars['String']
1147
- dateSent: Scalars['DateTime']
1148
- sponsor: Sponsor
1149
- magicLink: MagicLink
1150
- brand: (Brand | null)
1151
- status: Scalars['String']
1152
- __typename: 'SponsorAthleteInvitation'
1153
- }
1154
-
1155
- export interface StravaToken {
1156
- token_type: Scalars['String']
1157
- expires_at: Scalars['String']
1158
- refresh_token: Scalars['String']
1159
- access_token: Scalars['String']
1160
- __typename: 'StravaToken'
1161
- }
1162
-
1163
- export interface StripeSession {
1164
- account: Scalars['String']
1165
- client_secret: Scalars['String']
1166
- expires_at: Scalars['Float']
1167
- livemode: Scalars['Boolean']
1168
- __typename: 'StripeSession'
1169
- }
1170
-
1171
- export interface StripeCheckoutSession {
1172
- client_secret: Scalars['String']
1173
- expires_at: Scalars['Float']
1174
- livemode: Scalars['Boolean']
1175
- __typename: 'StripeCheckoutSession'
1176
- }
1177
-
1178
- export interface StravaAthleteData {
1179
- id: Scalars['Float']
1180
- username: (Scalars['String'] | null)
1181
- firstname: Scalars['String']
1182
- lastname: Scalars['String']
1183
- bio: (Scalars['String'] | null)
1184
- city: (Scalars['String'] | null)
1185
- state: (Scalars['String'] | null)
1186
- country: (Scalars['String'] | null)
1187
- sex: (Scalars['String'] | null)
1188
- premium: Scalars['Boolean']
1189
- profile: (Scalars['String'] | null)
1190
- created_at: (Scalars['String'] | null)
1191
- updated_at: (Scalars['String'] | null)
1192
- weight: (Scalars['Float'] | null)
1193
- __typename: 'StravaAthleteData'
1194
- }
1195
-
1196
- export interface InstagramCursors {
1197
- before: (Scalars['String'] | null)
1198
- after: (Scalars['String'] | null)
1199
- __typename: 'InstagramCursors'
1200
- }
1201
-
1202
- export interface InstagramPaging {
1203
- cursors: (InstagramCursors | null)
1204
- next: (Scalars['String'] | null)
1205
- __typename: 'InstagramPaging'
1206
- }
1207
-
1208
- export interface InstagramMetric {
1209
- name: Scalars['String']
1210
- period: Scalars['String']
1211
- values: Scalars['String']
1212
- __typename: 'InstagramMetric'
1213
- }
1214
-
1215
- export interface InstagramInsights {
1216
- data: (InstagramMetric[] | null)
1217
- __typename: 'InstagramInsights'
1218
- }
1219
-
1220
- export interface InstagramMediaItem {
1221
- id: Scalars['String']
1222
- caption: (Scalars['String'] | null)
1223
- media_type: Scalars['String']
1224
- media_url: (Scalars['String'] | null)
1225
- permalink: Scalars['String']
1226
- thumbnail_url: (Scalars['String'] | null)
1227
- timestamp: Scalars['String']
1228
- username: Scalars['String']
1229
- like_count: (Scalars['Float'] | null)
1230
- comments_count: (Scalars['Float'] | null)
1231
- insights: (InstagramInsights | null)
1232
- __typename: 'InstagramMediaItem'
1233
- }
1234
-
1235
- export interface InstagramMediaData {
1236
- data: (InstagramMediaItem[] | null)
1237
- paging: (InstagramPaging | null)
1238
- __typename: 'InstagramMediaData'
1239
- }
1240
-
1241
- export interface InstagramUserData {
1242
- user_id: Scalars['String']
1243
- username: Scalars['String']
1244
- name: (Scalars['String'] | null)
1245
- account_type: (Scalars['String'] | null)
1246
- followers_count: (Scalars['String'] | null)
1247
- media_count: (Scalars['Float'] | null)
1248
- __typename: 'InstagramUserData'
1249
- }
1250
-
1251
- export interface AthleteIntegrationReference {
1252
- _id: Scalars['String']
1253
- athlete: AthleteReference
1254
- hasStravaIntegration: (Scalars['Boolean'] | null)
1255
- stravaTokenExpires: (Scalars['DateTime'] | null)
1256
- stravaAthleteData: (StravaAthleteData | null)
1257
- hasInstagramIntegration: (Scalars['Boolean'] | null)
1258
- instagramTokenExpires: (Scalars['DateTime'] | null)
1259
- instagramUserData: (InstagramUserData | null)
1260
- instagramMediaData: (InstagramMediaData | null)
1261
- __typename: 'AthleteIntegrationReference'
1262
- }
1263
-
1264
- export interface Receipt {
1265
- receiptId: Scalars['String']
1266
- campaignName: Scalars['String']
1267
- athleteName: (Scalars['String'] | null)
1268
- donorName: Scalars['String']
1269
- amount: Scalars['Float']
1270
- currency: Scalars['String']
1271
- dateIssued: Scalars['DateTime']
1272
- confirmed: Scalars['Boolean']
1273
- message: (Scalars['String'] | null)
1274
- __typename: 'Receipt'
1275
- }
1276
-
1277
- export interface ReceiptUrl {
1278
- receiptId: Scalars['String']
1279
- __typename: 'ReceiptUrl'
1280
- }
1281
-
1282
- export interface EditValueResponse {
1283
- field: Scalars['String']
1284
- oldValue: (Scalars['String'] | null)
1285
- newValue: (Scalars['String'] | null)
1286
- changed: Scalars['Boolean']
1287
- __typename: 'EditValueResponse'
1288
- }
1289
-
1290
- export interface ErrorType {
1291
- code: Scalars['Float']
1292
- message: Scalars['String']
1293
- __typename: 'ErrorType'
1294
- }
1295
-
1296
- export interface DeleteValuesResponse {
1297
- deleted: Scalars['String'][]
1298
- failedToDelete: Scalars['String'][]
1299
- failureReason: ErrorType[]
1300
- result: Scalars['String']
1301
- __typename: 'DeleteValuesResponse'
1302
- }
1303
-
1304
- export interface DeleteSingleValueResponse {
1305
- idToDelete: Scalars['String']
1306
- deleted: Scalars['Boolean']
1307
- failureReason: (ErrorType | null)
1308
- __typename: 'DeleteSingleValueResponse'
1309
- }
1310
-
1311
- export interface SortOrder {
1312
- sortField: Scalars['String']
1313
- order: Scalars['String']
1314
- __typename: 'SortOrder'
1315
- }
1316
-
1317
- export interface CursorPaginationResponse {
1318
- sort: (SortOrder | null)
1319
- initialCursorId: (Scalars['String'] | null)
1320
- nextCursorId: (Scalars['String'] | null)
1321
- initialCursorValue: (Scalars['String'] | null)
1322
- nextCursorValue: (Scalars['String'] | null)
1323
- limit: Scalars['Float']
1324
- retrieved: Scalars['Float']
1325
- isLastPage: Scalars['Boolean']
1326
- __typename: 'CursorPaginationResponse'
1327
- }
1328
-
1329
- export interface AthleteQueryResponse {
1330
- athletes: Athlete[]
1331
- cursor: CursorPaginationResponse
1332
- __typename: 'AthleteQueryResponse'
1333
- }
1334
-
1335
- export interface EditPictureResponse {
1336
- field: Scalars['String']
1337
- oldValue: (AWSS3File | null)
1338
- newValue: (AWSS3File | null)
1339
- changed: Scalars['Boolean']
1340
- __typename: 'EditPictureResponse'
1341
- }
1342
-
1343
- export interface AddValuesResponse {
1344
- added: Scalars['String'][]
1345
- failedToAdd: (Scalars['String'][] | null)
1346
- failureReason: (ErrorType[] | null)
1347
- result: Scalars['String']
1348
- __typename: 'AddValuesResponse'
1349
- }
1350
-
1351
- export interface ExistValueResponse {
1352
- exist: Scalars['Boolean']
1353
- __typename: 'ExistValueResponse'
1354
- }
1355
-
1356
- export interface StripeObject {
1357
- type: Scalars['String']
1358
- json: Scalars['JSONObject']
1359
- __typename: 'StripeObject'
1360
- }
1361
-
1362
- export interface UserImages {
1363
- profilePictureUrl: (Scalars['String'] | null)
1364
- cardPictureUrl: (Scalars['String'] | null)
1365
- bannerPictureUrl: (Scalars['String'] | null)
1366
- __typename: 'UserImages'
1367
- }
1368
-
1369
- export interface StripeTransfer {
1370
- _id: Scalars['ID']
1371
- stripeId: (Scalars['String'] | null)
1372
- amount: Scalars['Float']
1373
- amount_reversed: Scalars['Float']
1374
- currency: Scalars['String']
1375
- destination: (Scalars['String'] | null)
1376
- description: (Scalars['String'] | null)
1377
- reversed: Scalars['Boolean']
1378
- livemode: Scalars['Boolean']
1379
- transfer_group: (Scalars['String'] | null)
1380
- status: StripeTransferStatus
1381
- lastError: (Scalars['String'] | null)
1382
- json: Scalars['String']
1383
- __typename: 'StripeTransfer'
1384
- }
1385
-
1386
-
1387
- /** Status of the Stripe transfer */
1388
- export type StripeTransferStatus = 'not_applicable' | 'pending' | 'failed' | 'completed'
1389
-
1390
-
1391
- /** Mode of donation for the funding checkout session */
1392
- export type DonationMode = 'PUBLIC' | 'PRIVATE' | 'ANONYMOUS'
1393
-
1394
- export interface Query {
1395
- findTenantById: Tenant
1396
- findTenantByEmail: Tenant
1397
- getTenants: Tenant[]
1398
- isTenantUriAvailable: UriAvailableType
1399
- findUserById: User
1400
- findUserByEmail: User
1401
- validateUserCredentials: User
1402
- getUploadUrl: AWSS3UploadUrl
1403
- industries: Industry[]
1404
- findIndustryById: Industry
1405
- brands: Brand[]
1406
- getBrandByName: Brand
1407
- getBrandTranslation: BrandTranslation
1408
- existsValidSponsorForEmail: Sponsor
1409
- sponsors: Sponsor[]
1410
- findSponsorAthleteInvitation: SponsorAthleteInvitation
1411
- getAthletes: Athlete[]
1412
- queryAthleteFundingCampaigns: AthleteQueryResponse
1413
- searchAthletes: Athlete[]
1414
- findAthleteById: Athlete
1415
- findAthleteForUser: Athlete
1416
- getRecommendedAthletes: Athlete[]
1417
- getSponsorAthletesForTenant: Athlete[]
1418
- getAthleteCompetitions: AthleteCompetition[]
1419
- getAthleteMemberships: AthleteMembership[]
1420
- findAthletebyIdpublic: Athlete
1421
- getAthleteAlbums: Album[]
1422
- getAndSetAlbumById: Album
1423
- getAthleteAlbumId: Album
1424
- queryAthleteWithFilter: AthleteQueryResponse
1425
- getPublicAthleteAlbums: Album[]
1426
- screenNameAvailability: ExistValueResponse
1427
- getAthleteHistoricalScores: HistoricalScoreType[]
1428
- getMyHistoricalScores: HistoricalScoreType[]
1429
- getSports: Sport[]
1430
- findSportById: Sport
1431
- getSportLevels: SportLevel[]
1432
- getPublicSponsorships: Sponsorship[]
1433
- getTenantSponsorships: Sponsorship[]
1434
- getCountries: Country[]
1435
- getCountryStates: State[]
1436
- getStates: State[]
1437
- getStateCities: City[]
1438
- findCitiesStartingWith: City[]
1439
- findCityById: City
1440
- findVtxUser: User
1441
- validateUserCredentialsVtx: User
1442
- getUserImagesFromEmail: UserImages
1443
- getResetVerificationCode: VerificationCode
1444
- verifyCode: CodeVerificationResponse
1445
- getStravaLoginUrl: Scalars['String']
1446
- getSportsEvents: SportsEvent[]
1447
- getMembershipOrganizations: MembershipOrganizationReference[]
1448
- getAthleteStravaIntegration: AthleteIntegrationReference
1449
- getAthleteInstagramIntegration: AthleteIntegrationReference
1450
- getAthleteIntegrations: AthleteIntegrationReference
1451
- stripeQuery: StripeObject
1452
- getDatabaseTextFile: TextDatabaseFile
1453
- getReceipt: Receipt
1454
- getReceiptUrl: ReceiptUrl
1455
- __typename: 'Query'
1456
- }
1457
-
1458
- export interface Mutation {
1459
- registerNewDomainTenant: Tenant
1460
- registerNewDomainTenantWithLogin: TenantWithUserLogin
1461
- createUserAndLogin: UserWithToken
1462
- loginUserFromEmail: UserToken
1463
- loginUserFromCredentials: UserWithToken
1464
- registerUserToDomainFromEmail: User
1465
- refreshToken: UserToken
1466
- deleteUploadedUseTypeFile: AWSS3CallResult
1467
- deleteUploadedBucketFile: AWSS3CallResult
1468
- deleteUploadedTypeKeyFile: AWSS3CallResult
1469
- registerS3UploadedFile: AWSS3File
1470
- createIndustry: Industry
1471
- createBrand: Brand
1472
- registerSponsor: Sponsor
1473
- createSponsor: Sponsor
1474
- sendAthleteInvitations: SponsorAthleteInvitation[]
1475
- registerAthlete: Athlete
1476
- editProfileValue: EditValueResponse
1477
- editPicture: EditPictureResponse
1478
- AddAlbumPictures: AddValuesResponse
1479
- addAthleteCompetition: AthleteCompetition
1480
- deleteAthleteCompetition: DeleteSingleValueResponse
1481
- createAthleteAlbum: Album
1482
- editAlbum: Album
1483
- deleteAthleteAlbum: DeleteSingleValueResponse
1484
- deleteAthletePhotos: DeleteValuesResponse
1485
- saveAthleteCompetitionResult: AthleteCompetitionResult
1486
- updateAthleteScores: Athlete
1487
- createSport: Sport
1488
- updateSport: Sport
1489
- createSportLevel: SportLevel
1490
- createSponsorship: Sponsorship
1491
- createCountry: Country
1492
- createState: State
1493
- createCity: City
1494
- preRegisterAthleteUser: VerificationCode
1495
- confirmAthleteUserRegistrationAndLogin: UserWithToken
1496
- confirmAthleteUserRegistration: User
1497
- registerAthleteUser: User
1498
- registerSponsorUser: User
1499
- loginUserFromCredentialsVtx: UserWithToken
1500
- createResetPasswordCode: EditValueResponse
1501
- resetUserPassword: EditValueResponse
1502
- handleStravaCallback: StravaToken
1503
- refreshStravaToken: StravaToken
1504
- createSportsEvent: SportsEvent
1505
- setFundingStatus: FundRaisingCampaign
1506
- createFundingCampaign: FundRaisingCampaign
1507
- createMembershipOrganization: MembershipOrganizationReference
1508
- createAthleteMembershipAffilation: AthleteMembership
1509
- deleteAthleteMembershipAffilation: DeleteSingleValueResponse
1510
- updateAthleteIntegration: Scalars['Boolean']
1511
- createStripeAccount: StripeAccountReference
1512
- createAthleteStripeSession: StripeSession
1513
- createStripeCheckoutSession: StripeCheckoutSession
1514
- __typename: 'Mutation'
1515
- }
1516
-
1517
- export interface UserGenqlSelection{
1518
- _id?: boolean | number
1519
- loginEmail?: boolean | number
1520
- suspended?: boolean | number
1521
- domains?: DomainCredentialGenqlSelection
1522
- loginMethods?: boolean | number
1523
- __typename?: boolean | number
1524
- __scalar?: boolean | number
1525
- }
1526
-
1527
- export interface UserWithTokenGenqlSelection{
1528
- _id?: boolean | number
1529
- loginEmail?: boolean | number
1530
- suspended?: boolean | number
1531
- domains?: DomainCredentialGenqlSelection
1532
- loginMethods?: boolean | number
1533
- token?: UserTokenGenqlSelection
1534
- __typename?: boolean | number
1535
- __scalar?: boolean | number
1536
- }
1537
-
1538
- export interface BaseTenantGenqlSelection{
1539
- _id?: boolean | number
1540
- name?: boolean | number
1541
- tenant_uri?: boolean | number
1542
- domain?: DomainGenqlSelection
1543
- __typename?: boolean | number
1544
- __scalar?: boolean | number
1545
- }
1546
-
1547
- export interface TenantGenqlSelection{
1548
- _id?: boolean | number
1549
- name?: boolean | number
1550
- tenant_uri?: boolean | number
1551
- domain?: DomainGenqlSelection
1552
- email?: boolean | number
1553
- owner?: UserGenqlSelection
1554
- __typename?: boolean | number
1555
- __scalar?: boolean | number
1556
- }
1557
-
1558
- export interface DomainGenqlSelection{
1559
- _id?: boolean | number
1560
- name?: boolean | number
1561
- description?: boolean | number
1562
- __typename?: boolean | number
1563
- __scalar?: boolean | number
1564
- }
1565
-
1566
- export interface DomainCredentialGenqlSelection{
1567
- _id?: boolean | number
1568
- name?: boolean | number
1569
- description?: boolean | number
1570
- tenant?: BaseTenantGenqlSelection
1571
- __typename?: boolean | number
1572
- __scalar?: boolean | number
1573
- }
1574
-
1575
- export interface UserTokenGenqlSelection{
1576
- actualToken?: boolean | number
1577
- refreshToken?: boolean | number
1578
- __typename?: boolean | number
1579
- __scalar?: boolean | number
1580
- }
1581
-
1582
- export interface DecodedTokenGenqlSelection{
1583
- tokenId?: boolean | number
1584
- systemId?: boolean | number
1585
- userId?: boolean | number
1586
- email?: boolean | number
1587
- refreshTokenId?: boolean | number
1588
- domains?: DomainCredentialGenqlSelection
1589
- __typename?: boolean | number
1590
- __scalar?: boolean | number
1591
- }
1592
-
1593
- export interface DecodedRefreshTokenGenqlSelection{
1594
- userId?: boolean | number
1595
- email?: boolean | number
1596
- originalTokenId?: boolean | number
1597
- __typename?: boolean | number
1598
- __scalar?: boolean | number
1599
- }
1600
-
1601
- export interface TenantWithUserLoginGenqlSelection{
1602
- _id?: boolean | number
1603
- name?: boolean | number
1604
- tenant_uri?: boolean | number
1605
- domain?: DomainGenqlSelection
1606
- email?: boolean | number
1607
- owner?: UserGenqlSelection
1608
- user?: UserWithTokenGenqlSelection
1609
- __typename?: boolean | number
1610
- __scalar?: boolean | number
1611
- }
1612
-
1613
- export interface UriAvailableTypeGenqlSelection{
1614
- available?: boolean | number
1615
- valid?: boolean | number
1616
- __typename?: boolean | number
1617
- __scalar?: boolean | number
1618
- }
1619
-
1620
- export interface AgreementGenqlSelection{
1621
- _id?: boolean | number
1622
- kind?: boolean | number
1623
- domain?: boolean | number
1624
- isActiveAgreement?: boolean | number
1625
- encoding?: boolean | number
1626
- version?: boolean | number
1627
- publishedDate?: boolean | number
1628
- unPublishedDate?: boolean | number
1629
- locked?: boolean | number
1630
- name?: boolean | number
1631
- description?: boolean | number
1632
- content?: boolean | number
1633
- httpContentType?: boolean | number
1634
- createdDate?: boolean | number
1635
- updatedDate?: boolean | number
1636
- __typename?: boolean | number
1637
- __scalar?: boolean | number
1638
- }
1639
-
1640
- export interface SignedAgreementGenqlSelection{
1641
- _id?: boolean | number
1642
- agreement?: AgreementGenqlSelection
1643
- createdDate?: boolean | number
1644
- signerReference?: boolean | number
1645
- json?: boolean | number
1646
- signedDate?: boolean | number
1647
- ipAddress?: boolean | number
1648
- userAgent?: boolean | number
1649
- signedFromLocation?: boolean | number
1650
- comments?: boolean | number
1651
- updatedDate?: boolean | number
1652
- __typename?: boolean | number
1653
- __scalar?: boolean | number
1654
- }
1655
-
1656
- export interface BillEntityGenqlSelection{
1657
- name?: boolean | number
1658
- taxId?: boolean | number
1659
- line1?: boolean | number
1660
- line2?: boolean | number
1661
- line3?: boolean | number
1662
- city?: boolean | number
1663
- state?: boolean | number
1664
- country?: boolean | number
1665
- zip?: boolean | number
1666
- __typename?: boolean | number
1667
- __scalar?: boolean | number
1668
- }
1669
-
1670
- export interface InvoiceItemGenqlSelection{
1671
- _id?: boolean | number
1672
- unitPrice?: boolean | number
1673
- unitTax?: boolean | number
1674
- quantity?: boolean | number
1675
- unit?: boolean | number
1676
- itemPrice?: boolean | number
1677
- itemTotal?: boolean | number
1678
- __typename?: boolean | number
1679
- __scalar?: boolean | number
1680
- }
1681
-
1682
- export interface PaymentGenqlSelection{
1683
- _id?: boolean | number
1684
- amount?: boolean | number
1685
- currency?: boolean | number
1686
- datePaid?: boolean | number
1687
- paymentComment?: boolean | number
1688
- transactionId?: boolean | number
1689
- processorType?: boolean | number
1690
- processorReference?: boolean | number
1691
- paidItemReference?: boolean | number
1692
- payeeReference?: boolean | number
1693
- payorReference?: boolean | number
1694
- paymentMethodType?: boolean | number
1695
- paymentMethodReference?: boolean | number
1696
- __typename?: boolean | number
1697
- __scalar?: boolean | number
1698
- }
1699
-
1700
- export interface PlaFeatureGenqlSelection{
1701
- _id?: boolean | number
1702
- title?: boolean | number
1703
- description?: boolean | number
1704
- quantity?: boolean | number
1705
- quantityUnit?: boolean | number
1706
- __typename?: boolean | number
1707
- __scalar?: boolean | number
1708
- }
1709
-
1710
- export interface PlanGenqlSelection{
1711
- _id?: boolean | number
1712
- name?: boolean | number
1713
- description?: boolean | number
1714
- prices?: PlanPriceGenqlSelection
1715
- features?: PlaFeatureGenqlSelection
1716
- isPublic?: boolean | number
1717
- active?: boolean | number
1718
- startOfferingDate?: boolean | number
1719
- endOfferingDate?: boolean | number
1720
- termsAndConditions?: boolean | number
1721
- __typename?: boolean | number
1722
- __scalar?: boolean | number
1723
- }
1724
-
1725
- export interface PlanPriceGenqlSelection{
1726
- _id?: boolean | number
1727
- currency?: boolean | number
1728
- price?: boolean | number
1729
- taxMode?: boolean | number
1730
- period?: boolean | number
1731
- customDays?: boolean | number
1732
- plan?: PlanGenqlSelection
1733
- __typename?: boolean | number
1734
- __scalar?: boolean | number
1735
- }
1736
-
1737
- export interface InvoiceGenqlSelection{
1738
- _id?: boolean | number
1739
- invoiceDate?: boolean | number
1740
- billedEntity?: BillEntityGenqlSelection
1741
- dueDate?: boolean | number
1742
- billAmount?: boolean | number
1743
- tax?: boolean | number
1744
- total?: boolean | number
1745
- currency?: boolean | number
1746
- items?: InvoiceItemGenqlSelection
1747
- payments?: PaymentGenqlSelection
1748
- __typename?: boolean | number
1749
- __scalar?: boolean | number
1750
- }
1751
-
1752
- export interface SubscriptionInvoiceGenqlSelection{
1753
- _id?: boolean | number
1754
- invoice?: InvoiceGenqlSelection
1755
- billedPlan?: PlanPriceGenqlSelection
1756
- subscriber?: PlanSubscriptionGenqlSelection
1757
- __typename?: boolean | number
1758
- __scalar?: boolean | number
1759
- }
1760
-
1761
- export interface PlanSubscriptionGenqlSelection{
1762
- _id?: boolean | number
1763
- currentPlan?: PlanPriceGenqlSelection
1764
- billPrice?: boolean | number
1765
- billCurrency?: boolean | number
1766
- billPriceComment?: boolean | number
1767
- lastBillDate?: boolean | number
1768
- endAccessDate?: boolean | number
1769
- autoRenew?: boolean | number
1770
- autoRenewPlan?: PlanPriceGenqlSelection
1771
- autoRenewDate?: boolean | number
1772
- payments?: SubscriptionPaymentGenqlSelection
1773
- invoices?: SubscriptionInvoiceGenqlSelection
1774
- __typename?: boolean | number
1775
- __scalar?: boolean | number
1776
- }
1777
-
1778
- export interface SubscriptionPaymentGenqlSelection{
1779
- _id?: boolean | number
1780
- payment?: PaymentGenqlSelection
1781
- subscriber?: PlanSubscriptionGenqlSelection
1782
- __typename?: boolean | number
1783
- __scalar?: boolean | number
1784
- }
1785
-
1786
- export interface AWSS3FileGenqlSelection{
1787
- _id?: boolean | number
1788
- name?: boolean | number
1789
- contentType?: boolean | number
1790
- size?: boolean | number
1791
- useType?: boolean | number
1792
- url?: boolean | number
1793
- key?: boolean | number
1794
- pendingDelete?: boolean | number
1795
- __typename?: boolean | number
1796
- __scalar?: boolean | number
1797
- }
1798
-
1799
- export interface MagicLinkGenqlSelection{
1800
- _id?: boolean | number
1801
- code?: boolean | number
1802
- type?: boolean | number
1803
- url?: boolean | number
1804
- expires?: boolean | number
1805
- data?: boolean | number
1806
- isExpired?: boolean | number
1807
- __typename?: boolean | number
1808
- __scalar?: boolean | number
1809
- }
1810
-
1811
- export interface VerificationCodeGenqlSelection{
1812
- _id?: boolean | number
1813
- type?: boolean | number
1814
- recipient?: boolean | number
1815
- expires?: boolean | number
1816
- data?: boolean | number
1817
- isExpired?: boolean | number
1818
- createdDate?: boolean | number
1819
- __typename?: boolean | number
1820
- __scalar?: boolean | number
1821
- }
1822
-
1823
- export interface ErrorInfoGenqlSelection{
1824
- errorCode?: boolean | number
1825
- errorMessage?: boolean | number
1826
- __typename?: boolean | number
1827
- __scalar?: boolean | number
1828
- }
1829
-
1830
- export interface HttpRequestFieldGenqlSelection{
1831
- key?: boolean | number
1832
- value?: boolean | number
1833
- __typename?: boolean | number
1834
- __scalar?: boolean | number
1835
- }
1836
-
1837
- export interface AWSS3UploadUrlGenqlSelection{
1838
- uploadUrl?: boolean | number
1839
- fields?: HttpRequestFieldGenqlSelection
1840
- downloadUrl?: boolean | number
1841
- bucket?: boolean | number
1842
- key?: boolean | number
1843
- __typename?: boolean | number
1844
- __scalar?: boolean | number
1845
- }
1846
-
1847
- export interface AWSS3CallResultGenqlSelection{
1848
- httpStatus?: boolean | number
1849
- result?: boolean | number
1850
- message?: boolean | number
1851
- errors?: boolean | number
1852
- __typename?: boolean | number
1853
- __scalar?: boolean | number
1854
- }
1855
-
1856
- export interface DatabaseFileGenqlSelection{
1857
- _id?: boolean | number
1858
- identifier?: boolean | number
1859
- version?: boolean | number
1860
- contentType?: boolean | number
1861
- updated?: boolean | number
1862
- created?: boolean | number
1863
- __typename?: boolean | number
1864
- __scalar?: boolean | number
1865
- }
1866
-
1867
- export interface TextDatabaseFileGenqlSelection{
1868
- _id?: boolean | number
1869
- identifier?: boolean | number
1870
- version?: boolean | number
1871
- contentType?: boolean | number
1872
- updated?: boolean | number
1873
- created?: boolean | number
1874
- content?: boolean | number
1875
- __typename?: boolean | number
1876
- __scalar?: boolean | number
1877
- }
1878
-
1879
- export interface CodeVerificationResponseGenqlSelection{
1880
- result?: boolean | number
1881
- code?: VerificationCodeGenqlSelection
1882
- error?: ErrorInfoGenqlSelection
1883
- __typename?: boolean | number
1884
- __scalar?: boolean | number
1885
- }
1886
-
1887
- export interface BrandStatsGenqlSelection{
1888
- campaigns?: boolean | number
1889
- sponsorships?: boolean | number
1890
- sports?: boolean | number
1891
- athletes?: boolean | number
1892
- __typename?: boolean | number
1893
- __scalar?: boolean | number
1894
- }
1895
-
1896
- export interface BrandTranslationGenqlSelection{
1897
- _id?: boolean | number
1898
- brandId?: boolean | number
1899
- language?: boolean | number
1900
- name?: boolean | number
1901
- slogan?: boolean | number
1902
- description?: boolean | number
1903
- logo?: AWSS3FileGenqlSelection
1904
- banner?: AWSS3FileGenqlSelection
1905
- __typename?: boolean | number
1906
- __scalar?: boolean | number
1907
- }
1908
-
1909
- export interface BrandGenqlSelection{
1910
- _id?: boolean | number
1911
- name?: boolean | number
1912
- slogan?: boolean | number
1913
- website?: boolean | number
1914
- description?: boolean | number
1915
- approved?: boolean | number
1916
- published?: boolean | number
1917
- logo?: AWSS3FileGenqlSelection
1918
- banner?: AWSS3FileGenqlSelection
1919
- stats?: BrandStatsGenqlSelection
1920
- operatorIds?: boolean | number
1921
- translations?: BrandTranslationGenqlSelection
1922
- __typename?: boolean | number
1923
- __scalar?: boolean | number
1924
- }
1925
-
1926
- export interface StravaTpiRideDtoGenqlSelection{
1927
- distanceKm?: boolean | number
1928
- distanceKmLast?: boolean | number
1929
- elapsedTimeMin?: boolean | number
1930
- elapsedTimeMinLast?: boolean | number
1931
- averageSpeedKmh?: boolean | number
1932
- averageSpeedKmhLast?: boolean | number
1933
- maxSpeedKmh?: boolean | number
1934
- maxSpeedKmhLast?: boolean | number
1935
- averageHeartRateBpm?: boolean | number
1936
- averageHeartRateBpmLast?: boolean | number
1937
- maxHeartRateBpm?: boolean | number
1938
- maxHeartRateBpmLast?: boolean | number
1939
- averageCadenceStm?: boolean | number
1940
- averageCadenceStmLast?: boolean | number
1941
- lastDate?: boolean | number
1942
- country?: boolean | number
1943
- state?: boolean | number
1944
- city?: boolean | number
1945
- tpi?: boolean | number
1946
- __typename?: boolean | number
1947
- __scalar?: boolean | number
1948
- }
1949
-
1950
- export interface StravaTpiRunDtoGenqlSelection{
1951
- distanceKm?: boolean | number
1952
- distanceKmLast?: boolean | number
1953
- elapsedTimeMin?: boolean | number
1954
- elapsedTimeMinLast?: boolean | number
1955
- averageSpeedKmh?: boolean | number
1956
- averageSpeedKmhLast?: boolean | number
1957
- maxSpeedKmh?: boolean | number
1958
- maxSpeedKmhLast?: boolean | number
1959
- averageHeartRateBpm?: boolean | number
1960
- averageHeartRateBpmLast?: boolean | number
1961
- maxHeartRateBpm?: boolean | number
1962
- maxHeartRateBpmLast?: boolean | number
1963
- averageCadenceStm?: boolean | number
1964
- averageCadenceStmLast?: boolean | number
1965
- elevHigh?: boolean | number
1966
- elevHighLast?: boolean | number
1967
- elevLow?: boolean | number
1968
- elevLowLast?: boolean | number
1969
- lastDate?: boolean | number
1970
- country?: boolean | number
1971
- state?: boolean | number
1972
- city?: boolean | number
1973
- tpi?: boolean | number
1974
- __typename?: boolean | number
1975
- __scalar?: boolean | number
1976
- }
1977
-
1978
- export interface StravaTpiSwimDtoGenqlSelection{
1979
- distanceKm?: boolean | number
1980
- distanceKmLast?: boolean | number
1981
- elapsedTimeMin?: boolean | number
1982
- elapsedTimeMinLast?: boolean | number
1983
- averageSpeedKmh?: boolean | number
1984
- averageSpeedKmhLast?: boolean | number
1985
- maxSpeedKmh?: boolean | number
1986
- maxSpeedKmhLast?: boolean | number
1987
- averageHeartRateBpm?: boolean | number
1988
- averageHeartRateBpmLast?: boolean | number
1989
- maxHeartRateBpm?: boolean | number
1990
- maxHeartRateBpmLast?: boolean | number
1991
- averageCadenceStm?: boolean | number
1992
- averageCadenceStmLast?: boolean | number
1993
- lastDate?: boolean | number
1994
- country?: boolean | number
1995
- state?: boolean | number
1996
- city?: boolean | number
1997
- tpi?: boolean | number
1998
- __typename?: boolean | number
1999
- __scalar?: boolean | number
2000
- }
2001
-
2002
- export interface CityGenqlSelection{
2003
- _id?: boolean | number
2004
- name?: boolean | number
2005
- localizedName?: boolean | number
2006
- state?: StateGenqlSelection
2007
- latitude?: boolean | number
2008
- longitude?: boolean | number
2009
- timezone?: boolean | number
2010
- __typename?: boolean | number
2011
- __scalar?: boolean | number
2012
- }
2013
-
2014
- export interface StateGenqlSelection{
2015
- _id?: boolean | number
2016
- name?: boolean | number
2017
- country?: CountryGenqlSelection
2018
- cities?: CityGenqlSelection
2019
- __typename?: boolean | number
2020
- __scalar?: boolean | number
2021
- }
2022
-
2023
- export interface CountryGenqlSelection{
2024
- _id?: boolean | number
2025
- name?: boolean | number
2026
- states?: StateGenqlSelection
2027
- __typename?: boolean | number
2028
- __scalar?: boolean | number
2029
- }
2030
-
2031
- export interface AgeQualificationGenqlSelection{
2032
- type?: boolean | number
2033
- value?: boolean | number
2034
- operator?: boolean | number
2035
- __typename?: boolean | number
2036
- __scalar?: boolean | number
2037
- }
2038
-
2039
- export interface GenderQualificationGenqlSelection{
2040
- type?: boolean | number
2041
- operator?: boolean | number
2042
- values?: boolean | number
2043
- __typename?: boolean | number
2044
- __scalar?: boolean | number
2045
- }
2046
-
2047
- export interface ScoreQualificationGenqlSelection{
2048
- type?: boolean | number
2049
- scoreType?: boolean | number
2050
- operator?: boolean | number
2051
- value?: boolean | number
2052
- __typename?: boolean | number
2053
- __scalar?: boolean | number
2054
- }
2055
-
2056
- export interface LocationQualificationGenqlSelection{
2057
- type?: boolean | number
2058
- operator?: boolean | number
2059
- countries?: CountryGenqlSelection
2060
- states?: StateGenqlSelection
2061
- cities?: CityGenqlSelection
2062
- __typename?: boolean | number
2063
- __scalar?: boolean | number
2064
- }
2065
-
2066
- export interface NationalityQualificationGenqlSelection{
2067
- type?: boolean | number
2068
- operator?: boolean | number
2069
- countries?: CountryGenqlSelection
2070
- __typename?: boolean | number
2071
- __scalar?: boolean | number
2072
- }
2073
-
2074
- export interface DistanceQualificationGenqlSelection{
2075
- type?: boolean | number
2076
- maxDistance?: boolean | number
2077
- latitude?: boolean | number
2078
- longitude?: boolean | number
2079
- cityId?: boolean | number
2080
- __typename?: boolean | number
2081
- __scalar?: boolean | number
2082
- }
2083
-
2084
- export interface SportsQualificationGenqlSelection{
2085
- type?: boolean | number
2086
- sports?: boolean | number
2087
- operator?: boolean | number
2088
- __typename?: boolean | number
2089
- __scalar?: boolean | number
2090
- }
2091
-
2092
- export interface SportsLevelQualificationGenqlSelection{
2093
- type?: boolean | number
2094
- operator?: boolean | number
2095
- level?: boolean | number
2096
- __typename?: boolean | number
2097
- __scalar?: boolean | number
2098
- }
2099
-
2100
- export interface AthleteCriteriaGenqlSelection{
2101
- _id?: boolean | number
2102
- label?: boolean | number
2103
- qualifications?: QualificationTypeUnionGenqlSelection
2104
- __typename?: boolean | number
2105
- __scalar?: boolean | number
2106
- }
2107
-
2108
- export interface QualificationTypeUnionGenqlSelection{
2109
- on_AgeQualification?:AgeQualificationGenqlSelection,
2110
- on_GenderQualification?:GenderQualificationGenqlSelection,
2111
- on_ScoreQualification?:ScoreQualificationGenqlSelection,
2112
- on_LocationQualification?:LocationQualificationGenqlSelection,
2113
- on_NationalityQualification?:NationalityQualificationGenqlSelection,
2114
- on_DistanceQualification?:DistanceQualificationGenqlSelection,
2115
- on_SportsQualification?:SportsQualificationGenqlSelection,
2116
- on_SportsLevelQualification?:SportsLevelQualificationGenqlSelection,
2117
- __typename?: boolean | number
2118
- }
2119
-
2120
- export interface IndustryGenqlSelection{
2121
- _id?: boolean | number
2122
- name?: boolean | number
2123
- __typename?: boolean | number
2124
- __scalar?: boolean | number
2125
- }
2126
-
2127
- export interface SponsorStatsGenqlSelection{
2128
- sponsoredAthletes?: boolean | number
2129
- totalBrands?: boolean | number
2130
- activeCampaigns?: boolean | number
2131
- activeSponsorships?: boolean | number
2132
- __typename?: boolean | number
2133
- __scalar?: boolean | number
2134
- }
2135
-
2136
- export interface SponsorBrandGenqlSelection{
2137
- _id?: boolean | number
2138
- name?: boolean | number
2139
- slogan?: boolean | number
2140
- website?: boolean | number
2141
- description?: boolean | number
2142
- approved?: boolean | number
2143
- published?: boolean | number
2144
- logo?: AWSS3FileGenqlSelection
2145
- banner?: AWSS3FileGenqlSelection
2146
- stats?: BrandStatsGenqlSelection
2147
- operatorIds?: boolean | number
2148
- translations?: BrandTranslationGenqlSelection
2149
- sponsorBrandId?: boolean | number
2150
- authorizedUse?: boolean | number
2151
- isAuthorizer?: boolean | number
2152
- __typename?: boolean | number
2153
- __scalar?: boolean | number
2154
- }
2155
-
2156
- export interface SponsorGenqlSelection{
2157
- _id?: boolean | number
2158
- name?: boolean | number
2159
- description?: boolean | number
2160
- tenant?: TenantGenqlSelection
2161
- industry?: IndustryGenqlSelection
2162
- stats?: SponsorStatsGenqlSelection
2163
- brands?: SponsorBrandGenqlSelection
2164
- sponsorships?: SponsorshipGenqlSelection
2165
- approved?: boolean | number
2166
- __typename?: boolean | number
2167
- __scalar?: boolean | number
2168
- }
2169
-
2170
- export interface SponsorshipItemGenqlSelection{
2171
- _id?: boolean | number
2172
- quantity?: boolean | number
2173
- title?: boolean | number
2174
- value?: boolean | number
2175
- type?: boolean | number
2176
- __typename?: boolean | number
2177
- __scalar?: boolean | number
2178
- }
2179
-
2180
- export interface SponsorshipCommitmentGenqlSelection{
2181
- _id?: boolean | number
2182
- title?: boolean | number
2183
- details?: boolean | number
2184
- hashTags?: boolean | number
2185
- media?: boolean | number
2186
- actionType?: boolean | number
2187
- frequency?: boolean | number
2188
- periodicity?: boolean | number
2189
- autoMeasurable?: boolean | number
2190
- __typename?: boolean | number
2191
- __scalar?: boolean | number
2192
- }
2193
-
2194
- export interface DurationGenqlSelection{
2195
- length?: boolean | number
2196
- unit?: boolean | number
2197
- __typename?: boolean | number
2198
- __scalar?: boolean | number
2199
- }
2200
-
2201
- export interface SponsorshipStatsGenqlSelection{
2202
- totalSponsorships?: boolean | number
2203
- totalApplications?: boolean | number
2204
- newApplications?: boolean | number
2205
- discardedApplications?: boolean | number
2206
- selectedApplications?: boolean | number
2207
- approvedApplications?: boolean | number
2208
- grantedSponsorships?: boolean | number
2209
- remainingSponsorships?: boolean | number
2210
- __typename?: boolean | number
2211
- __scalar?: boolean | number
2212
- }
2213
-
2214
- export interface SponsorshipTranslationGenqlSelection{
2215
- _id?: boolean | number
2216
- sponsorshipId?: boolean | number
2217
- language?: boolean | number
2218
- title?: boolean | number
2219
- description?: boolean | number
2220
- terms?: boolean | number
2221
- banner?: AWSS3FileGenqlSelection
2222
- __typename?: boolean | number
2223
- __scalar?: boolean | number
2224
- }
2225
-
2226
- export interface SponsorshipGenqlSelection{
2227
- _id?: boolean | number
2228
- title?: boolean | number
2229
- description?: boolean | number
2230
- cashValue?: boolean | number
2231
- otherValue?: boolean | number
2232
- brand?: BrandGenqlSelection
2233
- banner?: AWSS3FileGenqlSelection
2234
- criteria?: AthleteCriteriaGenqlSelection
2235
- deadline?: boolean | number
2236
- startDate?: boolean | number
2237
- duration?: DurationGenqlSelection
2238
- sponsor?: SponsorGenqlSelection
2239
- sponsorshipItems?: SponsorshipItemGenqlSelection
2240
- commitments?: SponsorshipCommitmentGenqlSelection
2241
- terms?: boolean | number
2242
- stats?: SponsorshipStatsGenqlSelection
2243
- isPrivate?: boolean | number
2244
- approved?: boolean | number
2245
- published?: boolean | number
2246
- translations?: SponsorshipTranslationGenqlSelection
2247
- __typename?: boolean | number
2248
- __scalar?: boolean | number
2249
- }
2250
-
2251
- export interface FollowStatsGenqlSelection{
2252
- followers?: boolean | number
2253
- followed?: boolean | number
2254
- raves?: boolean | number
2255
- favorites?: boolean | number
2256
- __typename?: boolean | number
2257
- __scalar?: boolean | number
2258
- }
2259
-
2260
- export interface SportGenqlSelection{
2261
- _id?: boolean | number
2262
- name?: boolean | number
2263
- resultType?: boolean | number
2264
- __typename?: boolean | number
2265
- __scalar?: boolean | number
2266
- }
2267
-
2268
- export interface VtxScoresGenqlSelection{
2269
- vtxScore?: boolean | number
2270
- socialScore?: boolean | number
2271
- trainingScore?: boolean | number
2272
- competitionScore?: boolean | number
2273
- __typename?: boolean | number
2274
- __scalar?: boolean | number
2275
- }
2276
-
2277
- export interface SportLevelTranslationGenqlSelection{
2278
- _id?: boolean | number
2279
- language?: boolean | number
2280
- label?: boolean | number
2281
- __typename?: boolean | number
2282
- __scalar?: boolean | number
2283
- }
2284
-
2285
- export interface SportLevelGenqlSelection{
2286
- _id?: boolean | number
2287
- label?: boolean | number
2288
- index?: boolean | number
2289
- translations?: SportLevelTranslationGenqlSelection
2290
- __typename?: boolean | number
2291
- __scalar?: boolean | number
2292
- }
2293
-
2294
- export interface RankingGenqlSelection{
2295
- scope?: boolean | number
2296
- scopeId?: boolean | number
2297
- scopeName?: boolean | number
2298
- position?: boolean | number
2299
- total?: boolean | number
2300
- __typename?: boolean | number
2301
- __scalar?: boolean | number
2302
- }
2303
-
2304
- export interface AthleteRankingsGenqlSelection{
2305
- worldRanking?: RankingGenqlSelection
2306
- countryRanking?: RankingGenqlSelection
2307
- stateRanking?: RankingGenqlSelection
2308
- cityRanking?: RankingGenqlSelection
2309
- __typename?: boolean | number
2310
- __scalar?: boolean | number
2311
- }
2312
-
2313
- export interface TeamGenqlSelection{
2314
- _id?: boolean | number
2315
- name?: boolean | number
2316
- description?: boolean | number
2317
- sports?: SportGenqlSelection
2318
- approved?: boolean | number
2319
- logo?: AWSS3FileGenqlSelection
2320
- banner?: AWSS3FileGenqlSelection
2321
- __typename?: boolean | number
2322
- __scalar?: boolean | number
2323
- }
2324
-
2325
- export interface WorldLocationGenqlSelection{
2326
- _id?: boolean | number
2327
- userProvidedLatitude?: boolean | number
2328
- userProvidedLongitude?: boolean | number
2329
- cityNameGeocode?: boolean | number
2330
- stateNameGeocode?: boolean | number
2331
- countryIso2CodeGeocode?: boolean | number
2332
- timeZoneGeocode?: boolean | number
2333
- latitudeGeocode?: boolean | number
2334
- longitudeGeocode?: boolean | number
2335
- city?: CityGenqlSelection
2336
- __typename?: boolean | number
2337
- __scalar?: boolean | number
2338
- }
2339
-
2340
- export interface SportsEventGenqlSelection{
2341
- _id?: boolean | number
2342
- name?: boolean | number
2343
- mainSport?: SportGenqlSelection
2344
- eventWebSite?: boolean | number
2345
- startDate?: boolean | number
2346
- endDate?: boolean | number
2347
- verified?: boolean | number
2348
- banner?: AWSS3FileGenqlSelection
2349
- location?: WorldLocationGenqlSelection
2350
- eventLevel?: boolean | number
2351
- __typename?: boolean | number
2352
- __scalar?: boolean | number
2353
- }
2354
-
2355
- export interface AthleteCompetitionResultGenqlSelection{
2356
- _id?: boolean | number
2357
- resultType?: boolean | number
2358
- position?: boolean | number
2359
- totalParticipants?: boolean | number
2360
- score?: boolean | number
2361
- finishTimeMS?: boolean | number
2362
- resultWebLink?: boolean | number
2363
- outcome?: boolean | number
2364
- adversary?: boolean | number
2365
- genderPosition?: boolean | number
2366
- genderParticipants?: boolean | number
2367
- categoryPosition?: boolean | number
2368
- categoryParticipants?: boolean | number
2369
- categoryName?: boolean | number
2370
- __typename?: boolean | number
2371
- __scalar?: boolean | number
2372
- }
2373
-
2374
- export interface BudgetItemGenqlSelection{
2375
- _id?: boolean | number
2376
- quantity?: boolean | number
2377
- concept?: boolean | number
2378
- itemCost?: boolean | number
2379
- __typename?: boolean | number
2380
- __scalar?: boolean | number
2381
- }
2382
-
2383
- export interface BudgetGenqlSelection{
2384
- _id?: boolean | number
2385
- initialFunds?: boolean | number
2386
- totalRequired?: boolean | number
2387
- items?: BudgetItemGenqlSelection
2388
- __typename?: boolean | number
2389
- __scalar?: boolean | number
2390
- }
2391
-
2392
- export interface AthleteCompetitionGenqlSelection{
2393
- _id?: boolean | number
2394
- event?: SportsEventGenqlSelection
2395
- participationDate?: boolean | number
2396
- competitionNumber?: boolean | number
2397
- result?: AthleteCompetitionResultGenqlSelection
2398
- fundRaisingCampaignIds?: boolean | number
2399
- budget?: BudgetGenqlSelection
2400
- __typename?: boolean | number
2401
- __scalar?: boolean | number
2402
- }
2403
-
2404
- export interface MembershipOrganizationReferenceGenqlSelection{
2405
- _id?: boolean | number
2406
- shortName?: boolean | number
2407
- acronym?: boolean | number
2408
- fullName?: boolean | number
2409
- website?: boolean | number
2410
- verified?: boolean | number
2411
- logo?: AWSS3FileGenqlSelection
2412
- country?: CountryGenqlSelection
2413
- sport?: SportGenqlSelection
2414
- __typename?: boolean | number
2415
- __scalar?: boolean | number
2416
- }
2417
-
2418
- export interface MembershipOrganizationGenqlSelection{
2419
- _id?: boolean | number
2420
- shortName?: boolean | number
2421
- acronym?: boolean | number
2422
- fullName?: boolean | number
2423
- website?: boolean | number
2424
- verified?: boolean | number
2425
- logo?: AWSS3FileGenqlSelection
2426
- country?: CountryGenqlSelection
2427
- sport?: SportGenqlSelection
2428
- memberships?: AthleteMembershipGenqlSelection
2429
- __typename?: boolean | number
2430
- __scalar?: boolean | number
2431
- }
2432
-
2433
- export interface AthleteMembershipGenqlSelection{
2434
- _id?: boolean | number
2435
- organization?: MembershipOrganizationReferenceGenqlSelection
2436
- athlete?: AthleteReferenceGenqlSelection
2437
- membershipNumber?: boolean | number
2438
- membershipType?: boolean | number
2439
- issueDate?: boolean | number
2440
- expirationDate?: boolean | number
2441
- __typename?: boolean | number
2442
- __scalar?: boolean | number
2443
- }
2444
-
2445
- export interface NewsLinkGenqlSelection{
2446
- _id?: boolean | number
2447
- title?: boolean | number
2448
- url?: boolean | number
2449
- abstract?: boolean | number
2450
- __typename?: boolean | number
2451
- __scalar?: boolean | number
2452
- }
2453
-
2454
- export interface ChannelGenqlSelection{
2455
- _id?: boolean | number
2456
- type?: boolean | number
2457
- handle?: boolean | number
2458
- url?: boolean | number
2459
- linked?: boolean | number
2460
- __typename?: boolean | number
2461
- __scalar?: boolean | number
2462
- }
2463
-
2464
- export interface PhotoAlbumGenqlSelection{
2465
- _id?: boolean | number
2466
- photo?: AWSS3FileGenqlSelection
2467
- __typename?: boolean | number
2468
- __scalar?: boolean | number
2469
- }
2470
-
2471
- export interface AlbumGenqlSelection{
2472
- _id?: boolean | number
2473
- label?: boolean | number
2474
- description?: boolean | number
2475
- photos?: PhotoAlbumGenqlSelection
2476
- __typename?: boolean | number
2477
- __scalar?: boolean | number
2478
- }
2479
-
2480
- export interface AthletePreferencesGenqlSelection{
2481
- _id?: boolean | number
2482
- showProfileHelper?: boolean | number
2483
- defaultAlbum?: AlbumGenqlSelection
2484
- __typename?: boolean | number
2485
- __scalar?: boolean | number
2486
- }
2487
-
2488
- export interface FundRaisingCampaignGenqlSelection{
2489
- _id?: boolean | number
2490
- athlete?: AthleteReferenceGenqlSelection
2491
- budgetMode?: boolean | number
2492
- status?: boolean | number
2493
- title?: boolean | number
2494
- motivation?: boolean | number
2495
- website?: boolean | number
2496
- fundsRequired?: boolean | number
2497
- initialFundsObtained?: boolean | number
2498
- fundsObtained?: boolean | number
2499
- location?: WorldLocationGenqlSelection
2500
- endingDate?: boolean | number
2501
- budget?: BudgetGenqlSelection
2502
- competitions?: AthleteCompetitionGenqlSelection
2503
- vtxComissionPct?: boolean | number
2504
- __typename?: boolean | number
2505
- __scalar?: boolean | number
2506
- }
2507
-
2508
- export interface StripeCapabilityTypeGenqlSelection{
2509
- acss_debit_payments?: boolean | number
2510
- affirm_payments?: boolean | number
2511
- afterpay_clearpay_payments?: boolean | number
2512
- alma_payments?: boolean | number
2513
- amazon_pay_payments?: boolean | number
2514
- au_becs_debit_payments?: boolean | number
2515
- bacs_debit_payments?: boolean | number
2516
- bancontact_payments?: boolean | number
2517
- bank_transfer_payments?: boolean | number
2518
- blik_payments?: boolean | number
2519
- boleto_payments?: boolean | number
2520
- card_issuing?: boolean | number
2521
- card_payments?: boolean | number
2522
- cartes_bancaires_payments?: boolean | number
2523
- cashapp_payments?: boolean | number
2524
- eps_payments?: boolean | number
2525
- fpx_payments?: boolean | number
2526
- gb_bank_transfer_payments?: boolean | number
2527
- giropay_payments?: boolean | number
2528
- grabpay_payments?: boolean | number
2529
- ideal_payments?: boolean | number
2530
- india_international_payments?: boolean | number
2531
- jcb_payments?: boolean | number
2532
- jp_bank_transfer_payments?: boolean | number
2533
- kakao_pay_payments?: boolean | number
2534
- klarna_payments?: boolean | number
2535
- konbini_payments?: boolean | number
2536
- kr_card_payments?: boolean | number
2537
- legacy_payments?: boolean | number
2538
- link_payments?: boolean | number
2539
- mobilepay_payments?: boolean | number
2540
- multibanco_payments?: boolean | number
2541
- mx_bank_transfer_payments?: boolean | number
2542
- naver_pay_payments?: boolean | number
2543
- oxxo_payments?: boolean | number
2544
- p24_payments?: boolean | number
2545
- pay_by_bank_payments?: boolean | number
2546
- payco_payments?: boolean | number
2547
- paynow_payments?: boolean | number
2548
- promptpay_payments?: boolean | number
2549
- revolut_pay_payments?: boolean | number
2550
- samsung_pay_payments?: boolean | number
2551
- sepa_bank_transfer_payments?: boolean | number
2552
- sepa_debit_payments?: boolean | number
2553
- sofort_payments?: boolean | number
2554
- swish_payments?: boolean | number
2555
- tax_reporting_us_1099_k?: boolean | number
2556
- tax_reporting_us_1099_misc?: boolean | number
2557
- transfers?: boolean | number
2558
- treasury?: boolean | number
2559
- twint_payments?: boolean | number
2560
- us_bank_account_ach_payments?: boolean | number
2561
- us_bank_transfer_payments?: boolean | number
2562
- zip_payments?: boolean | number
2563
- __typename?: boolean | number
2564
- __scalar?: boolean | number
2565
- }
2566
-
2567
- export interface StripeRequirementAlternativeTypeGenqlSelection{
2568
- alternative_fields_due?: boolean | number
2569
- original_fields_due?: boolean | number
2570
- __typename?: boolean | number
2571
- __scalar?: boolean | number
2572
- }
2573
-
2574
- export interface StripeFutureRequirementAlternativeTypeGenqlSelection{
2575
- alternative_fields_due?: boolean | number
2576
- original_fields_due?: boolean | number
2577
- __typename?: boolean | number
2578
- __scalar?: boolean | number
2579
- }
2580
-
2581
- export interface StripeErrorTypeGenqlSelection{
2582
- code?: boolean | number
2583
- reason?: boolean | number
2584
- requirement?: boolean | number
2585
- __typename?: boolean | number
2586
- __scalar?: boolean | number
2587
- }
2588
-
2589
- export interface StripeRequirementTypeGenqlSelection{
2590
- alternatives?: StripeRequirementAlternativeTypeGenqlSelection
2591
- current_deadline?: boolean | number
2592
- currently_due?: boolean | number
2593
- disabled_reason?: boolean | number
2594
- errors?: StripeErrorTypeGenqlSelection
2595
- eventually_due?: boolean | number
2596
- past_due?: boolean | number
2597
- pending_verification?: boolean | number
2598
- __typename?: boolean | number
2599
- __scalar?: boolean | number
2600
- }
2601
-
2602
- export interface StripeFutureRequirementTypeGenqlSelection{
2603
- alternatives?: StripeFutureRequirementAlternativeTypeGenqlSelection
2604
- current_deadline?: boolean | number
2605
- currently_due?: boolean | number
2606
- disabled_reason?: boolean | number
2607
- errors?: StripeErrorTypeGenqlSelection
2608
- eventually_due?: boolean | number
2609
- past_due?: boolean | number
2610
- pending_verification?: boolean | number
2611
- __typename?: boolean | number
2612
- __scalar?: boolean | number
2613
- }
2614
-
2615
- export interface StripeAccountGenqlSelection{
2616
- id?: boolean | number
2617
- object?: boolean | number
2618
- business_type?: boolean | number
2619
- country?: boolean | number
2620
- email?: boolean | number
2621
- capabilities?: StripeCapabilityTypeGenqlSelection
2622
- requirements?: StripeRequirementTypeGenqlSelection
2623
- future_requirements?: StripeFutureRequirementTypeGenqlSelection
2624
- type?: boolean | number
2625
- charges_enabled?: boolean | number
2626
- payouts_enabled?: boolean | number
2627
- created?: boolean | number
2628
- default_currency?: boolean | number
2629
- __typename?: boolean | number
2630
- __scalar?: boolean | number
2631
- }
2632
-
2633
- export interface StripeAccountReferenceGenqlSelection{
2634
- _id?: boolean | number
2635
- stripeAccountId?: boolean | number
2636
- account?: StripeAccountGenqlSelection
2637
- __typename?: boolean | number
2638
- __scalar?: boolean | number
2639
- }
2640
-
2641
- export interface HistoricalScoreTypeGenqlSelection{
2642
- _id?: boolean | number
2643
- scoreType?: boolean | number
2644
- score?: boolean | number
2645
- date?: boolean | number
2646
- athleteId?: boolean | number
2647
- __typename?: boolean | number
2648
- __scalar?: boolean | number
2649
- }
2650
-
2651
- export interface AthleteReferenceGenqlSelection{
2652
- _id?: boolean | number
2653
- firstName?: boolean | number
2654
- lastName?: boolean | number
2655
- screenName?: boolean | number
2656
- dob?: boolean | number
2657
- lgbt?: boolean | number
2658
- competitionGender?: boolean | number
2659
- country?: CountryGenqlSelection
2660
- location?: WorldLocationGenqlSelection
2661
- trainer?: boolean | number
2662
- trainerUrl?: boolean | number
2663
- followStats?: FollowStatsGenqlSelection
2664
- mainSport?: SportGenqlSelection
2665
- mainSportLevel?: SportLevelGenqlSelection
2666
- scores?: VtxScoresGenqlSelection
2667
- rankings?: AthleteRankingsGenqlSelection
2668
- totalUpcomingCompetitions?: boolean | number
2669
- totalPastCompetitions?: boolean | number
2670
- profilePicture?: AWSS3FileGenqlSelection
2671
- cardPicture?: AWSS3FileGenqlSelection
2672
- bannerPicture?: AWSS3FileGenqlSelection
2673
- aboutMe?: boolean | number
2674
- preferences?: AthletePreferencesGenqlSelection
2675
- __typename?: boolean | number
2676
- __scalar?: boolean | number
2677
- }
2678
-
2679
- export interface AthleteGenqlSelection{
2680
- _id?: boolean | number
2681
- firstName?: boolean | number
2682
- lastName?: boolean | number
2683
- screenName?: boolean | number
2684
- dob?: boolean | number
2685
- lgbt?: boolean | number
2686
- competitionGender?: boolean | number
2687
- country?: CountryGenqlSelection
2688
- location?: WorldLocationGenqlSelection
2689
- trainer?: boolean | number
2690
- trainerUrl?: boolean | number
2691
- followStats?: FollowStatsGenqlSelection
2692
- mainSport?: SportGenqlSelection
2693
- mainSportLevel?: SportLevelGenqlSelection
2694
- scores?: VtxScoresGenqlSelection
2695
- rankings?: AthleteRankingsGenqlSelection
2696
- totalUpcomingCompetitions?: boolean | number
2697
- totalPastCompetitions?: boolean | number
2698
- profilePicture?: AWSS3FileGenqlSelection
2699
- cardPicture?: AWSS3FileGenqlSelection
2700
- bannerPicture?: AWSS3FileGenqlSelection
2701
- aboutMe?: boolean | number
2702
- preferences?: AthletePreferencesGenqlSelection
2703
- allSports?: SportGenqlSelection
2704
- teams?: TeamGenqlSelection
2705
- sponsorBrands?: BrandGenqlSelection
2706
- competitions?: AthleteCompetitionGenqlSelection
2707
- affiliations?: AthleteMembershipGenqlSelection
2708
- newsLinks?: NewsLinkGenqlSelection
2709
- channels?: ChannelGenqlSelection
2710
- currentCampaign?: FundRaisingCampaignGenqlSelection
2711
- fundingCampaigns?: FundRaisingCampaignGenqlSelection
2712
- stripeAccountReference?: StripeAccountReferenceGenqlSelection
2713
- albums?: AlbumGenqlSelection
2714
- historicalScores?: HistoricalScoreTypeGenqlSelection
2715
- signedAgreements?: SignedAgreementGenqlSelection
2716
- __typename?: boolean | number
2717
- __scalar?: boolean | number
2718
- }
2719
-
2720
- export interface CheckoutSessionGenqlSelection{
2721
- _id?: boolean | number
2722
- type?: boolean | number
2723
- estimatedStripeComission?: boolean | number
2724
- stripeSessionId?: boolean | number
2725
- stripeAccountId?: boolean | number
2726
- donationAmount?: boolean | number
2727
- fromEmail?: boolean | number
2728
- confirmed?: boolean | number
2729
- completed?: boolean | number
2730
- completedDate?: boolean | number
2731
- createdDate?: boolean | number
2732
- __typename?: boolean | number
2733
- __scalar?: boolean | number
2734
- }
2735
-
2736
- export interface FundingCheckoutSessionDataGenqlSelection{
2737
- _id?: boolean | number
2738
- session?: CheckoutSessionGenqlSelection
2739
- fromName?: boolean | number
2740
- paidToAthlete?: boolean | number
2741
- paidToVtx?: boolean | number
2742
- fundingCampaign?: FundRaisingCampaignGenqlSelection
2743
- mode?: boolean | number
2744
- athleteId?: boolean | number
2745
- athleteName?: boolean | number
2746
- fromPhone?: boolean | number
2747
- message?: boolean | number
2748
- __typename?: boolean | number
2749
- __scalar?: boolean | number
2750
- }
2751
-
2752
- export interface SponsorAthleteInvitationGenqlSelection{
2753
- _id?: boolean | number
2754
- name?: boolean | number
2755
- email?: boolean | number
2756
- dateSent?: boolean | number
2757
- sponsor?: SponsorGenqlSelection
2758
- magicLink?: MagicLinkGenqlSelection
2759
- brand?: BrandGenqlSelection
2760
- status?: boolean | number
2761
- __typename?: boolean | number
2762
- __scalar?: boolean | number
2763
- }
2764
-
2765
- export interface StravaTokenGenqlSelection{
2766
- token_type?: boolean | number
2767
- expires_at?: boolean | number
2768
- refresh_token?: boolean | number
2769
- access_token?: boolean | number
2770
- __typename?: boolean | number
2771
- __scalar?: boolean | number
2772
- }
2773
-
2774
- export interface StripeSessionGenqlSelection{
2775
- account?: boolean | number
2776
- client_secret?: boolean | number
2777
- expires_at?: boolean | number
2778
- livemode?: boolean | number
2779
- __typename?: boolean | number
2780
- __scalar?: boolean | number
2781
- }
2782
-
2783
- export interface StripeCheckoutSessionGenqlSelection{
2784
- client_secret?: boolean | number
2785
- expires_at?: boolean | number
2786
- livemode?: boolean | number
2787
- __typename?: boolean | number
2788
- __scalar?: boolean | number
2789
- }
2790
-
2791
- export interface StravaAthleteDataGenqlSelection{
2792
- id?: boolean | number
2793
- username?: boolean | number
2794
- firstname?: boolean | number
2795
- lastname?: boolean | number
2796
- bio?: boolean | number
2797
- city?: boolean | number
2798
- state?: boolean | number
2799
- country?: boolean | number
2800
- sex?: boolean | number
2801
- premium?: boolean | number
2802
- profile?: boolean | number
2803
- created_at?: boolean | number
2804
- updated_at?: boolean | number
2805
- weight?: boolean | number
2806
- __typename?: boolean | number
2807
- __scalar?: boolean | number
2808
- }
2809
-
2810
- export interface InstagramCursorsGenqlSelection{
2811
- before?: boolean | number
2812
- after?: boolean | number
2813
- __typename?: boolean | number
2814
- __scalar?: boolean | number
2815
- }
2816
-
2817
- export interface InstagramPagingGenqlSelection{
2818
- cursors?: InstagramCursorsGenqlSelection
2819
- next?: boolean | number
2820
- __typename?: boolean | number
2821
- __scalar?: boolean | number
2822
- }
2823
-
2824
- export interface InstagramMetricGenqlSelection{
2825
- name?: boolean | number
2826
- period?: boolean | number
2827
- values?: boolean | number
2828
- __typename?: boolean | number
2829
- __scalar?: boolean | number
2830
- }
2831
-
2832
- export interface InstagramInsightsGenqlSelection{
2833
- data?: InstagramMetricGenqlSelection
2834
- __typename?: boolean | number
2835
- __scalar?: boolean | number
2836
- }
2837
-
2838
- export interface InstagramMediaItemGenqlSelection{
2839
- id?: boolean | number
2840
- caption?: boolean | number
2841
- media_type?: boolean | number
2842
- media_url?: boolean | number
2843
- permalink?: boolean | number
2844
- thumbnail_url?: boolean | number
2845
- timestamp?: boolean | number
2846
- username?: boolean | number
2847
- like_count?: boolean | number
2848
- comments_count?: boolean | number
2849
- insights?: InstagramInsightsGenqlSelection
2850
- __typename?: boolean | number
2851
- __scalar?: boolean | number
2852
- }
2853
-
2854
- export interface InstagramMediaDataGenqlSelection{
2855
- data?: InstagramMediaItemGenqlSelection
2856
- paging?: InstagramPagingGenqlSelection
2857
- __typename?: boolean | number
2858
- __scalar?: boolean | number
2859
- }
2860
-
2861
- export interface InstagramUserDataGenqlSelection{
2862
- user_id?: boolean | number
2863
- username?: boolean | number
2864
- name?: boolean | number
2865
- account_type?: boolean | number
2866
- followers_count?: boolean | number
2867
- media_count?: boolean | number
2868
- __typename?: boolean | number
2869
- __scalar?: boolean | number
2870
- }
2871
-
2872
- export interface AthleteIntegrationReferenceGenqlSelection{
2873
- _id?: boolean | number
2874
- athlete?: AthleteReferenceGenqlSelection
2875
- hasStravaIntegration?: boolean | number
2876
- stravaTokenExpires?: boolean | number
2877
- stravaAthleteData?: StravaAthleteDataGenqlSelection
2878
- hasInstagramIntegration?: boolean | number
2879
- instagramTokenExpires?: boolean | number
2880
- instagramUserData?: InstagramUserDataGenqlSelection
2881
- instagramMediaData?: InstagramMediaDataGenqlSelection
2882
- __typename?: boolean | number
2883
- __scalar?: boolean | number
2884
- }
2885
-
2886
- export interface ReceiptGenqlSelection{
2887
- receiptId?: boolean | number
2888
- campaignName?: boolean | number
2889
- athleteName?: boolean | number
2890
- donorName?: boolean | number
2891
- amount?: boolean | number
2892
- currency?: boolean | number
2893
- dateIssued?: boolean | number
2894
- confirmed?: boolean | number
2895
- message?: boolean | number
2896
- __typename?: boolean | number
2897
- __scalar?: boolean | number
2898
- }
2899
-
2900
- export interface ReceiptUrlGenqlSelection{
2901
- receiptId?: boolean | number
2902
- __typename?: boolean | number
2903
- __scalar?: boolean | number
2904
- }
2905
-
2906
- export interface EditValueResponseGenqlSelection{
2907
- field?: boolean | number
2908
- oldValue?: boolean | number
2909
- newValue?: boolean | number
2910
- changed?: boolean | number
2911
- __typename?: boolean | number
2912
- __scalar?: boolean | number
2913
- }
2914
-
2915
- export interface ErrorTypeGenqlSelection{
2916
- code?: boolean | number
2917
- message?: boolean | number
2918
- __typename?: boolean | number
2919
- __scalar?: boolean | number
2920
- }
2921
-
2922
- export interface DeleteValuesResponseGenqlSelection{
2923
- deleted?: boolean | number
2924
- failedToDelete?: boolean | number
2925
- failureReason?: ErrorTypeGenqlSelection
2926
- result?: boolean | number
2927
- __typename?: boolean | number
2928
- __scalar?: boolean | number
2929
- }
2930
-
2931
- export interface DeleteSingleValueResponseGenqlSelection{
2932
- idToDelete?: boolean | number
2933
- deleted?: boolean | number
2934
- failureReason?: ErrorTypeGenqlSelection
2935
- __typename?: boolean | number
2936
- __scalar?: boolean | number
2937
- }
2938
-
2939
- export interface SortOrderGenqlSelection{
2940
- sortField?: boolean | number
2941
- order?: boolean | number
2942
- __typename?: boolean | number
2943
- __scalar?: boolean | number
2944
- }
2945
-
2946
- export interface CursorPaginationResponseGenqlSelection{
2947
- sort?: SortOrderGenqlSelection
2948
- initialCursorId?: boolean | number
2949
- nextCursorId?: boolean | number
2950
- initialCursorValue?: boolean | number
2951
- nextCursorValue?: boolean | number
2952
- limit?: boolean | number
2953
- retrieved?: boolean | number
2954
- isLastPage?: boolean | number
2955
- __typename?: boolean | number
2956
- __scalar?: boolean | number
2957
- }
2958
-
2959
- export interface AthleteQueryResponseGenqlSelection{
2960
- athletes?: AthleteGenqlSelection
2961
- cursor?: CursorPaginationResponseGenqlSelection
2962
- __typename?: boolean | number
2963
- __scalar?: boolean | number
2964
- }
2965
-
2966
- export interface EditPictureResponseGenqlSelection{
2967
- field?: boolean | number
2968
- oldValue?: AWSS3FileGenqlSelection
2969
- newValue?: AWSS3FileGenqlSelection
2970
- changed?: boolean | number
2971
- __typename?: boolean | number
2972
- __scalar?: boolean | number
2973
- }
2974
-
2975
- export interface AddValuesResponseGenqlSelection{
2976
- added?: boolean | number
2977
- failedToAdd?: boolean | number
2978
- failureReason?: ErrorTypeGenqlSelection
2979
- result?: boolean | number
2980
- __typename?: boolean | number
2981
- __scalar?: boolean | number
2982
- }
2983
-
2984
- export interface ExistValueResponseGenqlSelection{
2985
- exist?: boolean | number
2986
- __typename?: boolean | number
2987
- __scalar?: boolean | number
2988
- }
2989
-
2990
- export interface StripeObjectGenqlSelection{
2991
- type?: boolean | number
2992
- json?: boolean | number
2993
- __typename?: boolean | number
2994
- __scalar?: boolean | number
2995
- }
2996
-
2997
- export interface UserImagesGenqlSelection{
2998
- profilePictureUrl?: boolean | number
2999
- cardPictureUrl?: boolean | number
3000
- bannerPictureUrl?: boolean | number
3001
- __typename?: boolean | number
3002
- __scalar?: boolean | number
3003
- }
3004
-
3005
- export interface StripeTransferGenqlSelection{
3006
- _id?: boolean | number
3007
- stripeId?: boolean | number
3008
- amount?: boolean | number
3009
- amount_reversed?: boolean | number
3010
- currency?: boolean | number
3011
- destination?: boolean | number
3012
- description?: boolean | number
3013
- reversed?: boolean | number
3014
- livemode?: boolean | number
3015
- transfer_group?: boolean | number
3016
- status?: boolean | number
3017
- lastError?: boolean | number
3018
- json?: boolean | number
3019
- __typename?: boolean | number
3020
- __scalar?: boolean | number
3021
- }
3022
-
3023
- export interface CreateDatabaseFileDto {identifier: Scalars['String'],version?: Scalars['String'],contentType: Scalars['String']}
3024
-
3025
- export interface CreateTextDatabaseFileDto {identifier: Scalars['String'],version?: Scalars['String'],contentType: Scalars['String'],content?: Scalars['String']}
3026
-
3027
- export interface UpdateDatabaseFileDto {_id: Scalars['String'],identifier?: (Scalars['String'] | null),version?: (Scalars['String'] | null),contentType?: (Scalars['String'] | null)}
3028
-
3029
- export interface UpdateTextDatabaseFileDto {_id: Scalars['String'],identifier?: (Scalars['String'] | null),version?: (Scalars['String'] | null),contentType?: (Scalars['String'] | null),content?: (Scalars['String'] | null)}
3030
-
3031
- export interface CloneDatabaseFileDto {_id: Scalars['String'],version?: (Scalars['String'] | null)}
3032
-
3033
- export interface FindDatabaseFilesDto {_id?: (Scalars['String'] | null),identifier?: (Scalars['String'] | null),version?: (Scalars['String'] | null)}
3034
-
3035
- export interface GetDatabaseFileDto {identifier: Scalars['String'],version: Scalars['String']}
3036
-
3037
- export interface CreateVerificationCodeDto {type?: (Scalars['String'] | null),recipient?: (Scalars['String'] | null),expiresTime?: (Scalars['Float'] | null),expiresUnit?: (Scalars['String'] | null),data?: (Scalars['String'] | null)}
3038
-
3039
- export interface VerifyCodeDto {codeId: Scalars['String'],enteredCodeValue: Scalars['String'],type?: (Scalars['String'] | null)}
3040
-
3041
- export interface AthleteInvitationDto {email: Scalars['String'],name?: (Scalars['String'] | null),sender?: (Scalars['String'] | null),brandId?: (Scalars['String'] | null)}
3042
-
3043
- export interface InviteAthletesDto {language?: (Scalars['String'] | null),invitations: AthleteInvitationDto[]}
3044
-
3045
- export interface CompetitionResultDto {resultType: Scalars['String'],position?: (Scalars['Float'] | null),score?: (Scalars['String'] | null),finishTimeMS?: (Scalars['Float'] | null),resultWebLink?: (Scalars['String'] | null),totalParticipants?: (Scalars['Float'] | null),outcome: Scalars['String'],adversary?: (Scalars['String'] | null),genderPosition?: (Scalars['Float'] | null),genderParticipants?: (Scalars['Float'] | null),categoryPosition?: (Scalars['Float'] | null),categoryParticipants?: (Scalars['Float'] | null),categoryName?: (Scalars['String'] | null)}
3046
-
3047
- export interface SetCompetitionResultDto {resultType: Scalars['String'],position?: (Scalars['Float'] | null),score?: (Scalars['String'] | null),finishTimeMS?: (Scalars['Float'] | null),resultWebLink?: (Scalars['String'] | null),totalParticipants?: (Scalars['Float'] | null),outcome: Scalars['String'],adversary?: (Scalars['String'] | null),genderPosition?: (Scalars['Float'] | null),genderParticipants?: (Scalars['Float'] | null),categoryPosition?: (Scalars['Float'] | null),categoryParticipants?: (Scalars['Float'] | null),categoryName?: (Scalars['String'] | null),competitionId: Scalars['String']}
3048
-
3049
- export interface CreateAthleteCompetitionDto {event: Scalars['String'],date: Scalars['DateTime'],eventWebsite?: (Scalars['String'] | null),competitionNumber?: (Scalars['String'] | null),result?: (CompetitionResultDto | null),cityId?: (Scalars['String'] | null)}
3050
-
3051
- export interface CreateAthleteCompetitionForDto {event: Scalars['String'],date: Scalars['DateTime'],eventWebsite?: (Scalars['String'] | null),competitionNumber?: (Scalars['String'] | null),result?: (CompetitionResultDto | null),cityId?: (Scalars['String'] | null),loginEmail: Scalars['String']}
3052
-
3053
- export interface CursorPositionDto {cursorId: Scalars['String'],cursorFieldValue: Scalars['String']}
3054
-
3055
- export interface SortCriteriaDto {sortField: Scalars['String'],order?: Scalars['String']}
3056
-
3057
- export interface CursorPaginationDto {sortCriteria?: (SortCriteriaDto | null),limit?: (Scalars['Float'] | null),cursorPosition?: (CursorPositionDto | null)}
3058
-
3059
- export interface DeleteSingleValueDto {idToDelete: Scalars['String']}
3060
-
3061
- export interface FundCampaignFilterDto {campaignTitle?: (Scalars['String'] | null),status?: (Scalars['String'] | null),minCompletion?: (Scalars['Float'] | null),maxCompletion?: (Scalars['Float'] | null),minFundsRequired?: (Scalars['Float'] | null),maxFundsRequired?: (Scalars['Float'] | null),minEndingDate?: (Scalars['DateTime'] | null),maxEndingDate?: (Scalars['DateTime'] | null),competitions?: (Scalars['String'][] | null),cities?: (Scalars['String'][] | null),states?: (Scalars['String'][] | null),countries?: (Scalars['String'][] | null)}
3062
-
3063
- export interface AthleteFilterDto {name?: (Scalars['String'] | null),cities?: (Scalars['String'][] | null),states?: (Scalars['String'][] | null),countries?: (Scalars['String'][] | null),nacionalities?: (Scalars['String'][] | null),teams?: (Scalars['String'][] | null),currentCampaign?: (FundCampaignFilterDto | null),sports?: (Scalars['String'][] | null),sportLevels?: (Scalars['String'][] | null),mainSportOnly?: (Scalars['Boolean'] | null),gender?: (Scalars['String'] | null),minAge?: (Scalars['Float'] | null),maxAge?: (Scalars['Float'] | null),minDob?: (Scalars['DateTime'] | null),maxDob?: (Scalars['DateTime'] | null),minVTXScore?: (Scalars['Float'] | null),maxVTXScore?: (Scalars['Float'] | null),minSocialScore?: (Scalars['Float'] | null),maxSocialScore?: (Scalars['Float'] | null),minTrainingScore?: (Scalars['Float'] | null),maxTrainingScore?: (Scalars['Float'] | null),minPerformanceScore?: (Scalars['Float'] | null),maxPerformanceScore?: (Scalars['Float'] | null)}
3064
-
3065
- export interface AthleteQueryDto {cursor?: (CursorPaginationDto | null),filters?: (AthleteFilterDto | null)}
3066
-
3067
- export interface EditPictureDto {field: Scalars['String'],newPicture?: (AWSS3UploadedFileDto | null)}
3068
-
3069
- export interface AWSS3UploadedFileDto {key: Scalars['String'],useType: Scalars['String'],contentType: Scalars['String'],originalFileName?: (Scalars['String'] | null),fileSize?: (Scalars['Float'] | null)}
3070
-
3071
- export interface UploadAlbumsPicturesDto {label: Scalars['String'],description?: (Scalars['String'] | null),pictures?: (AWSS3UploadedFileDto[] | null),albumId?: (Scalars['String'] | null)}
3072
-
3073
- export interface DeleteValuesDto {idsToDelete: Scalars['String'][],allOrNone?: (Scalars['Boolean'] | null)}
3074
-
3075
- export interface existValueDto {Value: Scalars['String']}
3076
-
3077
- export interface GetMyHistoricalScoresDto {minTimestampInclusive: Scalars['DateTime'],maxTimestampExclusive: Scalars['DateTime'],scoreTypes: Scalars['String'][]}
3078
-
3079
- export interface GetHistoricalScoresDto {minTimestampInclusive: Scalars['DateTime'],maxTimestampExclusive: Scalars['DateTime'],scoreTypes: Scalars['String'][],athleteIdOrEmail: Scalars['String']}
3080
-
3081
- export interface QualificationDto {type: Scalars['String']}
3082
-
3083
- export interface AgeQualificationDto {type: Scalars['String'],value: Scalars['Float'],operator: Scalars['String']}
3084
-
3085
- export interface GenderQualificationDto {type: Scalars['String'],operator: Scalars['String'],values: Scalars['String'][]}
3086
-
3087
- export interface NationalityQualificationDto {type: Scalars['String'],operator: Scalars['String'],countries: Scalars['String'][]}
3088
-
3089
- export interface ScoreQualificationDto {type: Scalars['String'],scoreType: Scalars['String'],operator: Scalars['String'],value: Scalars['Float']}
3090
-
3091
- export interface LocationQualificationDto {type: Scalars['String'],operator: Scalars['String'],countries: Scalars['String'][],states: Scalars['String'][],cities: Scalars['String'][]}
3092
-
3093
- export interface DistanceQualificationDto {type: Scalars['String'],maxDistance: Scalars['Float'],latitude?: (Scalars['Float'] | null),longitude?: (Scalars['Float'] | null),cityId?: (Scalars['String'] | null)}
3094
-
3095
- export interface SportsQualificationDto {type: Scalars['String'],sports: Scalars['String'][],operator: Scalars['String']}
3096
-
3097
- export interface SportsLevelQualificationDto {type: Scalars['String'],operator: Scalars['String'],level: Scalars['String']}
3098
-
3099
- export interface RegisterUserDto {email: Scalars['String'],password: Scalars['String'],inviteCode?: (Scalars['String'] | null)}
3100
-
3101
- export interface resetPasswordDto {code: VerifyCodeDto,newPassword?: (Scalars['String'] | null)}
3102
-
3103
- export interface GetReceiptDto {_id: Scalars['String']}
3104
-
3105
- export interface BudgetItemDto {quantity: Scalars['Float'],concept: Scalars['String'],itemCost: Scalars['Float']}
3106
-
3107
- export interface CreateBudgetItemDto {quantity: Scalars['Float'],concept: Scalars['String'],itemCost: Scalars['Float'],budgetId: Scalars['String']}
3108
-
3109
- export interface CreateBudgetDto {initialFunds?: (Scalars['Float'] | null),items?: (BudgetItemDto[] | null)}
3110
-
3111
- export interface CreateCompetitionBudgetDto {initialFunds?: (Scalars['Float'] | null),items?: (BudgetItemDto[] | null),athleteCompetitionId: Scalars['String']}
3112
-
3113
- export interface CreateFundingCampaignDto {budgetMode: Scalars['String'],title: Scalars['String'],motivation: Scalars['String'],website?: (Scalars['String'] | null),fundsRequired: Scalars['Float'],initialFundsObtained?: Scalars['Float'],cityId?: (Scalars['String'] | null),endingDate: Scalars['DateTime'],budget?: (CreateBudgetDto | null),competitionBudgets?: (CreateCompetitionBudgetDto[] | null),competitionIds?: (Scalars['String'][] | null)}
3114
-
3115
- export interface CreateFundingCampaignForDto {budgetMode: Scalars['String'],title: Scalars['String'],motivation: Scalars['String'],website?: (Scalars['String'] | null),fundsRequired: Scalars['Float'],initialFundsObtained?: Scalars['Float'],cityId?: (Scalars['String'] | null),endingDate: Scalars['DateTime'],budget?: (CreateBudgetDto | null),competitionBudgets?: (CreateCompetitionBudgetDto[] | null),competitionIds?: (Scalars['String'][] | null),loginEmail: Scalars['String']}
3116
-
3117
- export interface SetFundingStatusDto {fundingCampaignId: Scalars['String'],newStatus: Scalars['String']}
3118
-
3119
- export interface CreateMembershipOrganizationDto {shortName: Scalars['String'],acronym?: (Scalars['String'] | null),fullName: Scalars['String'],website?: (Scalars['String'] | null),logo?: (AWSS3UploadedFileDto | null),countryId?: (Scalars['String'] | null),sportId?: (Scalars['String'] | null)}
3120
-
3121
- export interface CreateAthleteMembershipDto {organizationId: Scalars['String'],membershipNumber?: (Scalars['String'] | null),membershipType?: (Scalars['String'] | null),issueDate?: (Scalars['DateTime'] | null),expirationDate?: (Scalars['DateTime'] | null)}
3122
-
3123
- export interface DonationCheckoutDto {fundingCampaignId: Scalars['String'],donationAmount: Scalars['Float'],mode?: Scalars['String'],fromName?: (Scalars['String'] | null),fromEmail?: (Scalars['String'] | null),fromPhone?: (Scalars['String'] | null),message?: (Scalars['String'] | null)}
3124
-
3125
- export interface StripeQueryDto {operation: Scalars['String'],id: Scalars['String'],params?: (Scalars['String'] | null)}
3126
-
3127
- export interface CreateAthleteIntegrationDto {athleteId: Scalars['String'],accessToken: Scalars['String'],refreshToken: Scalars['String'],expiresIn: Scalars['Float'],refreshExpiresIn?: (Scalars['Float'] | null)}
3128
-
3129
- export interface GetFundingCheckoutSessionDataDto {_id: Scalars['String']}
3130
-
3131
- export interface QueryGenqlSelection{
3132
- findTenantById?: (TenantGenqlSelection & { __args: {_id: Scalars['String']} })
3133
- findTenantByEmail?: (TenantGenqlSelection & { __args: {email: Scalars['String'], domainId: Scalars['String']} })
3134
- getTenants?: TenantGenqlSelection
3135
- isTenantUriAvailable?: (UriAvailableTypeGenqlSelection & { __args: {tenant_uri: Scalars['String']} })
3136
- findUserById?: (UserGenqlSelection & { __args: {_id: Scalars['String']} })
3137
- findUserByEmail?: (UserGenqlSelection & { __args: {email: Scalars['String']} })
3138
- validateUserCredentials?: (UserGenqlSelection & { __args: {username: Scalars['String'], password: Scalars['String']} })
3139
- getUploadUrl?: (AWSS3UploadUrlGenqlSelection & { __args: {input: AWSS3GetUploadDto} })
3140
- industries?: IndustryGenqlSelection
3141
- findIndustryById?: (IndustryGenqlSelection & { __args: {industryId: Scalars['String']} })
3142
- brands?: BrandGenqlSelection
3143
- getBrandByName?: (BrandGenqlSelection & { __args: {name: Scalars['String'], translations: Scalars['Boolean']} })
3144
- getBrandTranslation?: (BrandTranslationGenqlSelection & { __args: {brandId: Scalars['String'], language: Scalars['String']} })
3145
- existsValidSponsorForEmail?: (SponsorGenqlSelection & { __args: {loginEmail: Scalars['String']} })
3146
- sponsors?: SponsorGenqlSelection
3147
- findSponsorAthleteInvitation?: (SponsorAthleteInvitationGenqlSelection & { __args: {input: FindSponsorAthleteInvitationDto} })
3148
- getAthletes?: AthleteGenqlSelection
3149
- queryAthleteFundingCampaigns?: (AthleteQueryResponseGenqlSelection & { __args: {input: AthleteQueryDto} })
3150
- searchAthletes?: (AthleteGenqlSelection & { __args: {searchString: Scalars['String']} })
3151
- findAthleteById?: (AthleteGenqlSelection & { __args: {athleteId: Scalars['String']} })
3152
- findAthleteForUser?: (AthleteGenqlSelection & { __args: {loginEmail: Scalars['String']} })
3153
- getRecommendedAthletes?: (AthleteGenqlSelection & { __args: {loginEmail: Scalars['String']} })
3154
- getSponsorAthletesForTenant?: AthleteGenqlSelection
3155
- getAthleteCompetitions?: (AthleteCompetitionGenqlSelection & { __args: {input: GetAthleteCompetitionsDto} })
3156
- getAthleteMemberships?: (AthleteMembershipGenqlSelection & { __args: {athleteId: Scalars['String']} })
3157
- findAthletebyIdpublic?: (AthleteGenqlSelection & { __args: {athleteId: Scalars['String']} })
3158
- getAthleteAlbums?: AlbumGenqlSelection
3159
- getAndSetAlbumById?: (AlbumGenqlSelection & { __args: {input: Scalars['String']} })
3160
- getAthleteAlbumId?: (AlbumGenqlSelection & { __args: {input: Scalars['String']} })
3161
- queryAthleteWithFilter?: (AthleteQueryResponseGenqlSelection & { __args: {input: AthleteQueryDto} })
3162
- getPublicAthleteAlbums?: (AlbumGenqlSelection & { __args: {athleteId: Scalars['String']} })
3163
- screenNameAvailability?: (ExistValueResponseGenqlSelection & { __args: {input: existValueDto} })
3164
- getAthleteHistoricalScores?: (HistoricalScoreTypeGenqlSelection & { __args: {input: GetHistoricalScoresDto} })
3165
- getMyHistoricalScores?: (HistoricalScoreTypeGenqlSelection & { __args: {input: GetMyHistoricalScoresDto} })
3166
- getSports?: SportGenqlSelection
3167
- findSportById?: (SportGenqlSelection & { __args: {sportId: Scalars['String']} })
3168
- getSportLevels?: SportLevelGenqlSelection
3169
- getPublicSponsorships?: SponsorshipGenqlSelection
3170
- getTenantSponsorships?: SponsorshipGenqlSelection
3171
- getCountries?: CountryGenqlSelection
3172
- getCountryStates?: (StateGenqlSelection & { __args: {countryId: Scalars['String']} })
3173
- getStates?: StateGenqlSelection
3174
- getStateCities?: (CityGenqlSelection & { __args: {stateId: Scalars['String']} })
3175
- findCitiesStartingWith?: (CityGenqlSelection & { __args: {text: Scalars['String']} })
3176
- findCityById?: (CityGenqlSelection & { __args: {cityId: Scalars['String']} })
3177
- findVtxUser?: (UserGenqlSelection & { __args: {input: FindVtxUserDto} })
3178
- validateUserCredentialsVtx?: (UserGenqlSelection & { __args: {username: Scalars['String'], password: Scalars['String']} })
3179
- getUserImagesFromEmail?: (UserImagesGenqlSelection & { __args: {loginEmail: Scalars['String']} })
3180
- getResetVerificationCode?: (VerificationCodeGenqlSelection & { __args: {input: Scalars['String']} })
3181
- verifyCode?: (CodeVerificationResponseGenqlSelection & { __args: {input: VerifyCodeDto} })
3182
- getStravaLoginUrl?: boolean | number
3183
- getSportsEvents?: (SportsEventGenqlSelection & { __args: {input: GetSportEventsDto} })
3184
- getMembershipOrganizations?: MembershipOrganizationReferenceGenqlSelection
3185
- getAthleteStravaIntegration?: AthleteIntegrationReferenceGenqlSelection
3186
- getAthleteInstagramIntegration?: AthleteIntegrationReferenceGenqlSelection
3187
- getAthleteIntegrations?: AthleteIntegrationReferenceGenqlSelection
3188
- stripeQuery?: (StripeObjectGenqlSelection & { __args: {input: StripeQueryDto} })
3189
- getDatabaseTextFile?: (TextDatabaseFileGenqlSelection & { __args: {input: GetDatabaseFileDto} })
3190
- getReceipt?: (ReceiptGenqlSelection & { __args: {input: GetReceiptDto} })
3191
- getReceiptUrl?: (ReceiptUrlGenqlSelection & { __args: {input: GetReceiptDto} })
3192
- __typename?: boolean | number
3193
- __scalar?: boolean | number
3194
- }
3195
-
3196
- export interface AWSS3GetUploadDto {useType: Scalars['String'],name?: (Scalars['String'] | null)}
3197
-
3198
- export interface FindSponsorAthleteInvitationDto {code: Scalars['String'],type?: (Scalars['String'] | null)}
3199
-
3200
- export interface GetAthleteCompetitionsDto {athleteId: Scalars['String'],fromInclusive?: (Scalars['DateTime'] | null),toExclusive?: (Scalars['DateTime'] | null)}
3201
-
3202
- export interface FindVtxUserDto {loginEmail: Scalars['String']}
3203
-
3204
- export interface GetSportEventsDto {matchString?: (Scalars['String'] | null)}
3205
-
3206
- export interface MutationGenqlSelection{
3207
- registerNewDomainTenant?: (TenantGenqlSelection & { __args: {tenant: CreateTenantInput} })
3208
- registerNewDomainTenantWithLogin?: (TenantWithUserLoginGenqlSelection & { __args: {tenant: CreateTenantInput} })
3209
- createUserAndLogin?: (UserWithTokenGenqlSelection & { __args: {user: CreateActiveUserInput} })
3210
- loginUserFromEmail?: (UserTokenGenqlSelection & { __args: {email: Scalars['String'], loginMethod: Scalars['String']} })
3211
- loginUserFromCredentials?: (UserWithTokenGenqlSelection & { __args: {username: Scalars['String'], password: Scalars['String']} })
3212
- registerUserToDomainFromEmail?: (UserGenqlSelection & { __args: {input: RegisterUserToDomainFromEmailInput} })
3213
- refreshToken?: (UserTokenGenqlSelection & { __args: {dto: RefreshTokenInput} })
3214
- deleteUploadedUseTypeFile?: (AWSS3CallResultGenqlSelection & { __args: {input: AWSS3DeleteUseTypeFileDto} })
3215
- deleteUploadedBucketFile?: (AWSS3CallResultGenqlSelection & { __args: {input: AWSS3DeleteBucketFileDto} })
3216
- deleteUploadedTypeKeyFile?: (AWSS3CallResultGenqlSelection & { __args: {input: AWSS3DeleteUseTypeKeyDto} })
3217
- registerS3UploadedFile?: (AWSS3FileGenqlSelection & { __args: {input: AWSS3UploadedFileDto} })
3218
- createIndustry?: (IndustryGenqlSelection & { __args: {input: CreateIndustryDto} })
3219
- createBrand?: (BrandGenqlSelection & { __args: {input: CreateBrandDto} })
3220
- registerSponsor?: (SponsorGenqlSelection & { __args: {input: RegisterSponsorInput} })
3221
- createSponsor?: (SponsorGenqlSelection & { __args: {input: CreateSponsorDto} })
3222
- sendAthleteInvitations?: (SponsorAthleteInvitationGenqlSelection & { __args: {input: InviteAthletesDto} })
3223
- registerAthlete?: (AthleteGenqlSelection & { __args: {input: RegisterAthleteDto} })
3224
- editProfileValue?: (EditValueResponseGenqlSelection & { __args: {input: EditValueDto} })
3225
- editPicture?: (EditPictureResponseGenqlSelection & { __args: {input: EditPictureDto} })
3226
- AddAlbumPictures?: (AddValuesResponseGenqlSelection & { __args: {input: UploadAlbumsPicturesDto} })
3227
- addAthleteCompetition?: (AthleteCompetitionGenqlSelection & { __args: {input: CreateAthleteCompetitionDto} })
3228
- deleteAthleteCompetition?: (DeleteSingleValueResponseGenqlSelection & { __args: {input: DeleteSingleValueDto} })
3229
- createAthleteAlbum?: (AlbumGenqlSelection & { __args: {input: UploadAlbumsPicturesDto} })
3230
- editAlbum?: (AlbumGenqlSelection & { __args: {input: UploadAlbumsPicturesDto} })
3231
- deleteAthleteAlbum?: (DeleteSingleValueResponseGenqlSelection & { __args: {input: DeleteSingleValueDto} })
3232
- deleteAthletePhotos?: (DeleteValuesResponseGenqlSelection & { __args: {input: DeleteValuesDto} })
3233
- saveAthleteCompetitionResult?: (AthleteCompetitionResultGenqlSelection & { __args: {input: SetCompetitionResultDto} })
3234
- updateAthleteScores?: AthleteGenqlSelection
3235
- createSport?: (SportGenqlSelection & { __args: {input: CreateSportDto} })
3236
- updateSport?: (SportGenqlSelection & { __args: {input: UpdateSportDto} })
3237
- createSportLevel?: (SportLevelGenqlSelection & { __args: {input: CreateSportLevelDto} })
3238
- createSponsorship?: (SponsorshipGenqlSelection & { __args: {input: CreateSponsorshipDto} })
3239
- createCountry?: (CountryGenqlSelection & { __args: {input: CreateCountryDto} })
3240
- createState?: (StateGenqlSelection & { __args: {input: CreateStateDto} })
3241
- createCity?: (CityGenqlSelection & { __args: {input: CreateCityDto} })
3242
- preRegisterAthleteUser?: (VerificationCodeGenqlSelection & { __args: {input: RegisterUserDto} })
3243
- confirmAthleteUserRegistrationAndLogin?: (UserWithTokenGenqlSelection & { __args: {input: VerifyCodeDto} })
3244
- confirmAthleteUserRegistration?: (UserGenqlSelection & { __args: {input: VerifyCodeDto} })
3245
- registerAthleteUser?: (UserGenqlSelection & { __args: {input: RegisterUserDto} })
3246
- registerSponsorUser?: (UserGenqlSelection & { __args: {input: RegisterUserDto} })
3247
- loginUserFromCredentialsVtx?: (UserWithTokenGenqlSelection & { __args: {username: Scalars['String'], password: Scalars['String']} })
3248
- createResetPasswordCode?: (EditValueResponseGenqlSelection & { __args: {input: Scalars['String']} })
3249
- resetUserPassword?: (EditValueResponseGenqlSelection & { __args: {input: resetPasswordDto} })
3250
- handleStravaCallback?: (StravaTokenGenqlSelection & { __args: {data: RegisterStravaDto} })
3251
- refreshStravaToken?: (StravaTokenGenqlSelection & { __args: {input: Scalars['String']} })
3252
- createSportsEvent?: (SportsEventGenqlSelection & { __args: {input: CreateSportEventDto} })
3253
- setFundingStatus?: (FundRaisingCampaignGenqlSelection & { __args: {input: SetFundingStatusDto} })
3254
- createFundingCampaign?: (FundRaisingCampaignGenqlSelection & { __args: {input: CreateFundingCampaignDto} })
3255
- createMembershipOrganization?: (MembershipOrganizationReferenceGenqlSelection & { __args: {input: CreateMembershipOrganizationDto} })
3256
- createAthleteMembershipAffilation?: (AthleteMembershipGenqlSelection & { __args: {input: CreateAthleteMembershipDto} })
3257
- deleteAthleteMembershipAffilation?: (DeleteSingleValueResponseGenqlSelection & { __args: {input: DeleteSingleValueDto} })
3258
- updateAthleteIntegration?: { __args: {type: Scalars['String']} }
3259
- createStripeAccount?: (StripeAccountReferenceGenqlSelection & { __args: {input: CreateStripeAccountDto} })
3260
- createAthleteStripeSession?: StripeSessionGenqlSelection
3261
- createStripeCheckoutSession?: (StripeCheckoutSessionGenqlSelection & { __args: {input: DonationCheckoutDto} })
3262
- __typename?: boolean | number
3263
- __scalar?: boolean | number
3264
- }
3265
-
3266
- export interface CreateTenantInput {name: Scalars['String'],email: Scalars['String'],tenant_uri: Scalars['String'],domain: Scalars['String']}
3267
-
3268
- export interface CreateActiveUserInput {loginEmail: Scalars['String'],password?: (Scalars['String'] | null),loginMethod?: (Scalars['String'] | null)}
3269
-
3270
- export interface RegisterUserToDomainFromEmailInput {email: Scalars['String'],domainId: Scalars['String'],tenantId?: (Scalars['String'] | null),createUserIfNotExist?: (Scalars['Boolean'] | null)}
3271
-
3272
- export interface RefreshTokenInput {refreshToken: Scalars['String']}
3273
-
3274
- export interface AWSS3DeleteUseTypeFileDto {name: Scalars['String'],useType: Scalars['String']}
3275
-
3276
- export interface AWSS3DeleteBucketFileDto {key: Scalars['String'],bucket: Scalars['String'],credentialsId?: (Scalars['String'] | null)}
3277
-
3278
- export interface AWSS3DeleteUseTypeKeyDto {key: Scalars['String'],useType: Scalars['String']}
3279
-
3280
- export interface CreateIndustryDto {name: Scalars['String']}
3281
-
3282
- export interface CreateBrandDto {name: Scalars['String'],description?: (Scalars['String'] | null),slogan?: (Scalars['String'] | null),website?: (Scalars['String'] | null),logo?: (AWSS3UploadedFileDto | null),banner?: (AWSS3UploadedFileDto | null),translations?: (BrandTranslationDto[] | null)}
3283
-
3284
- export interface BrandTranslationDto {brandId: Scalars['String'],language: Scalars['String'],name?: (Scalars['String'] | null),description?: (Scalars['String'] | null),slogan?: (Scalars['String'] | null),logo?: (AWSS3UploadedFileDto | null),banner?: (AWSS3UploadedFileDto | null)}
3285
-
3286
- export interface RegisterSponsorInput {name: Scalars['String'],phone?: (Scalars['String'] | null),hasWhatsapp?: Scalars['Boolean'],companyName?: (Scalars['String'] | null),companyEmail: Scalars['String'],industryId: Scalars['String'],companySize: Scalars['String'],operatorType: Scalars['String'],numberOfAthletes: Scalars['String'],brands: Scalars['String'][]}
3287
-
3288
- export interface CreateSponsorDto {name: Scalars['String'],description?: (Scalars['String'] | null)}
3289
-
3290
- export interface RegisterAthleteDto {email: Scalars['String'],firstName: Scalars['String'],lastName: Scalars['String'],screenName?: (Scalars['String'] | null),nationality: Scalars['String'],cityId: Scalars['String'],locLatitude?: (Scalars['Float'] | null),locLongitude?: (Scalars['Float'] | null),dateOfBirth: Scalars['DateTime'],lgbt?: (Scalars['Boolean'] | null),trainer?: (Scalars['String'] | null),trainerUrl?: (Scalars['String'] | null),aboutMe?: (Scalars['String'] | null),team?: (Scalars['String'] | null),gender: Scalars['String'],mainSport: Scalars['String'],mainSportLevel: Scalars['String'],profilePicture?: (AWSS3UploadedFileDto | null),cardPicture?: (AWSS3UploadedFileDto | null)}
3291
-
3292
- export interface EditValueDto {field: Scalars['String'],newValue?: (Scalars['String'] | null)}
3293
-
3294
- export interface CreateSportDto {_id: Scalars['String'],name: Scalars['String'],priority?: (Scalars['Float'] | null),resultType?: (Scalars['String'] | null)}
3295
-
3296
- export interface UpdateSportDto {_id: Scalars['String'],name: Scalars['String']}
3297
-
3298
- export interface CreateSportLevelDto {_id: Scalars['String'],label: Scalars['String'],index: Scalars['Float'],translations?: (CreateSportLevelTranslationDto[] | null)}
3299
-
3300
- export interface CreateSportLevelTranslationDto {language: Scalars['String'],label: Scalars['String']}
3301
-
3302
- export interface CreateSponsorshipDto {title: Scalars['String'],brandId: Scalars['String'],description?: (Scalars['String'] | null),cashValue?: (Scalars['Float'] | null),otherValue?: (Scalars['Float'] | null),banner?: (AWSS3UploadedFileDto | null),criteria?: (AthleteCriteriaDto | null),deadline?: (Scalars['DateTime'] | null),startDate?: (Scalars['DateTime'] | null),duration: DurationDto,sponsorshipItems?: (SponsorshipItemDto[] | null),commitments?: (SponsorshipCommitmentDto[] | null),terms?: (Scalars['String'] | null),published?: (Scalars['Boolean'] | null),isPrivate?: (Scalars['Boolean'] | null),translations?: (SponsorshipTranslationDto[] | null)}
3303
-
3304
- export interface AthleteCriteriaDto {_id: Scalars['String'],label?: (Scalars['String'] | null),qualificationsBag?: (QualificationsBagDto | null)}
3305
-
3306
- export interface QualificationsBagDto {ageQualifications?: (AgeQualificationDto[] | null),genderQualifications?: (GenderQualificationDto[] | null),scoreQualifications?: (ScoreQualificationDto[] | null),locationQualifications?: (LocationQualificationDto[] | null),nationalityQualifications?: (NationalityQualificationDto[] | null),distanceQualifications?: (DistanceQualificationDto[] | null),sportsQualifications?: (SportsQualificationDto[] | null),levelQualifications?: (SportsLevelQualificationDto[] | null)}
3307
-
3308
- export interface DurationDto {length?: Scalars['Float'],unit?: Scalars['String']}
3309
-
3310
- export interface SponsorshipItemDto {_id: Scalars['String'],quantity?: Scalars['Float'],title: Scalars['String'],value?: Scalars['Float']}
3311
-
3312
- export interface SponsorshipCommitmentDto {_id: Scalars['String'],title: Scalars['String'],details?: (Scalars['String'] | null),hashTags?: (Scalars['String'][] | null),media: Scalars['String'],actionType: Scalars['String'],frequency?: (Scalars['Float'] | null),periodicity: Scalars['String']}
3313
-
3314
- export interface SponsorshipTranslationDto {sponsorshipId: Scalars['String'],language: Scalars['String'],title?: (Scalars['String'] | null),description?: (Scalars['String'] | null),banner?: (AWSS3UploadedFileDto | null),terms?: (Scalars['String'] | null)}
3315
-
3316
- export interface CreateCountryDto {_id: Scalars['String'],name: Scalars['String']}
3317
-
3318
- export interface CreateStateDto {_id: Scalars['String'],name: Scalars['String'],countryId: Scalars['String']}
3319
-
3320
- export interface CreateCityDto {_id: Scalars['String'],cityName: Scalars['String'],cityNameLocalized: Scalars['String'],lat: Scalars['Float'],lng: Scalars['Float'],stateId: Scalars['String'],timezone: Scalars['String'],city_alt?: (Scalars['String'] | null),iso3?: (Scalars['String'] | null),admin_type?: (Scalars['String'] | null),capital?: (Scalars['String'] | null),density?: (Scalars['Float'] | null),population?: (Scalars['Float'] | null),population_proper?: (Scalars['Float'] | null),ranking?: (Scalars['Float'] | null),same_name?: (Scalars['String'] | null)}
3321
-
3322
- export interface RegisterStravaDto {idAthlete: Scalars['String'],code: Scalars['String']}
3323
-
3324
- export interface CreateSportEventDto {name: Scalars['String'],cityId?: (Scalars['String'] | null),sportId?: (Scalars['String'] | null),startDate: Scalars['DateTime'],endDate?: (Scalars['DateTime'] | null),website?: (Scalars['String'] | null),banner?: (AWSS3UploadedFileDto | null),eventLevel?: (Scalars['String'] | null)}
3325
-
3326
- export interface CreateStripeAccountDto {countryId: Scalars['String'],acceptedTermsId: Scalars['String'],acceptedPrivacyId: Scalars['String']}
3327
-
3328
-
3329
- const User_possibleTypes: string[] = ['User']
3330
- export const isUser = (obj?: { __typename?: any } | null): obj is User => {
3331
- if (!obj?.__typename) throw new Error('__typename is missing in "isUser"')
3332
- return User_possibleTypes.includes(obj.__typename)
3333
- }
3334
-
3335
-
3336
-
3337
- const UserWithToken_possibleTypes: string[] = ['UserWithToken']
3338
- export const isUserWithToken = (obj?: { __typename?: any } | null): obj is UserWithToken => {
3339
- if (!obj?.__typename) throw new Error('__typename is missing in "isUserWithToken"')
3340
- return UserWithToken_possibleTypes.includes(obj.__typename)
3341
- }
3342
-
3343
-
3344
-
3345
- const BaseTenant_possibleTypes: string[] = ['BaseTenant']
3346
- export const isBaseTenant = (obj?: { __typename?: any } | null): obj is BaseTenant => {
3347
- if (!obj?.__typename) throw new Error('__typename is missing in "isBaseTenant"')
3348
- return BaseTenant_possibleTypes.includes(obj.__typename)
3349
- }
3350
-
3351
-
3352
-
3353
- const Tenant_possibleTypes: string[] = ['Tenant']
3354
- export const isTenant = (obj?: { __typename?: any } | null): obj is Tenant => {
3355
- if (!obj?.__typename) throw new Error('__typename is missing in "isTenant"')
3356
- return Tenant_possibleTypes.includes(obj.__typename)
3357
- }
3358
-
3359
-
3360
-
3361
- const Domain_possibleTypes: string[] = ['Domain']
3362
- export const isDomain = (obj?: { __typename?: any } | null): obj is Domain => {
3363
- if (!obj?.__typename) throw new Error('__typename is missing in "isDomain"')
3364
- return Domain_possibleTypes.includes(obj.__typename)
3365
- }
3366
-
3367
-
3368
-
3369
- const DomainCredential_possibleTypes: string[] = ['DomainCredential']
3370
- export const isDomainCredential = (obj?: { __typename?: any } | null): obj is DomainCredential => {
3371
- if (!obj?.__typename) throw new Error('__typename is missing in "isDomainCredential"')
3372
- return DomainCredential_possibleTypes.includes(obj.__typename)
3373
- }
3374
-
3375
-
3376
-
3377
- const UserToken_possibleTypes: string[] = ['UserToken']
3378
- export const isUserToken = (obj?: { __typename?: any } | null): obj is UserToken => {
3379
- if (!obj?.__typename) throw new Error('__typename is missing in "isUserToken"')
3380
- return UserToken_possibleTypes.includes(obj.__typename)
3381
- }
3382
-
3383
-
3384
-
3385
- const DecodedToken_possibleTypes: string[] = ['DecodedToken']
3386
- export const isDecodedToken = (obj?: { __typename?: any } | null): obj is DecodedToken => {
3387
- if (!obj?.__typename) throw new Error('__typename is missing in "isDecodedToken"')
3388
- return DecodedToken_possibleTypes.includes(obj.__typename)
3389
- }
3390
-
3391
-
3392
-
3393
- const DecodedRefreshToken_possibleTypes: string[] = ['DecodedRefreshToken']
3394
- export const isDecodedRefreshToken = (obj?: { __typename?: any } | null): obj is DecodedRefreshToken => {
3395
- if (!obj?.__typename) throw new Error('__typename is missing in "isDecodedRefreshToken"')
3396
- return DecodedRefreshToken_possibleTypes.includes(obj.__typename)
3397
- }
3398
-
3399
-
3400
-
3401
- const TenantWithUserLogin_possibleTypes: string[] = ['TenantWithUserLogin']
3402
- export const isTenantWithUserLogin = (obj?: { __typename?: any } | null): obj is TenantWithUserLogin => {
3403
- if (!obj?.__typename) throw new Error('__typename is missing in "isTenantWithUserLogin"')
3404
- return TenantWithUserLogin_possibleTypes.includes(obj.__typename)
3405
- }
3406
-
3407
-
3408
-
3409
- const UriAvailableType_possibleTypes: string[] = ['UriAvailableType']
3410
- export const isUriAvailableType = (obj?: { __typename?: any } | null): obj is UriAvailableType => {
3411
- if (!obj?.__typename) throw new Error('__typename is missing in "isUriAvailableType"')
3412
- return UriAvailableType_possibleTypes.includes(obj.__typename)
3413
- }
3414
-
3415
-
3416
-
3417
- const Agreement_possibleTypes: string[] = ['Agreement']
3418
- export const isAgreement = (obj?: { __typename?: any } | null): obj is Agreement => {
3419
- if (!obj?.__typename) throw new Error('__typename is missing in "isAgreement"')
3420
- return Agreement_possibleTypes.includes(obj.__typename)
3421
- }
3422
-
3423
-
3424
-
3425
- const SignedAgreement_possibleTypes: string[] = ['SignedAgreement']
3426
- export const isSignedAgreement = (obj?: { __typename?: any } | null): obj is SignedAgreement => {
3427
- if (!obj?.__typename) throw new Error('__typename is missing in "isSignedAgreement"')
3428
- return SignedAgreement_possibleTypes.includes(obj.__typename)
3429
- }
3430
-
3431
-
3432
-
3433
- const BillEntity_possibleTypes: string[] = ['BillEntity']
3434
- export const isBillEntity = (obj?: { __typename?: any } | null): obj is BillEntity => {
3435
- if (!obj?.__typename) throw new Error('__typename is missing in "isBillEntity"')
3436
- return BillEntity_possibleTypes.includes(obj.__typename)
3437
- }
3438
-
3439
-
3440
-
3441
- const InvoiceItem_possibleTypes: string[] = ['InvoiceItem']
3442
- export const isInvoiceItem = (obj?: { __typename?: any } | null): obj is InvoiceItem => {
3443
- if (!obj?.__typename) throw new Error('__typename is missing in "isInvoiceItem"')
3444
- return InvoiceItem_possibleTypes.includes(obj.__typename)
3445
- }
3446
-
3447
-
3448
-
3449
- const Payment_possibleTypes: string[] = ['Payment']
3450
- export const isPayment = (obj?: { __typename?: any } | null): obj is Payment => {
3451
- if (!obj?.__typename) throw new Error('__typename is missing in "isPayment"')
3452
- return Payment_possibleTypes.includes(obj.__typename)
3453
- }
3454
-
3455
-
3456
-
3457
- const PlaFeature_possibleTypes: string[] = ['PlaFeature']
3458
- export const isPlaFeature = (obj?: { __typename?: any } | null): obj is PlaFeature => {
3459
- if (!obj?.__typename) throw new Error('__typename is missing in "isPlaFeature"')
3460
- return PlaFeature_possibleTypes.includes(obj.__typename)
3461
- }
3462
-
3463
-
3464
-
3465
- const Plan_possibleTypes: string[] = ['Plan']
3466
- export const isPlan = (obj?: { __typename?: any } | null): obj is Plan => {
3467
- if (!obj?.__typename) throw new Error('__typename is missing in "isPlan"')
3468
- return Plan_possibleTypes.includes(obj.__typename)
3469
- }
3470
-
3471
-
3472
-
3473
- const PlanPrice_possibleTypes: string[] = ['PlanPrice']
3474
- export const isPlanPrice = (obj?: { __typename?: any } | null): obj is PlanPrice => {
3475
- if (!obj?.__typename) throw new Error('__typename is missing in "isPlanPrice"')
3476
- return PlanPrice_possibleTypes.includes(obj.__typename)
3477
- }
3478
-
3479
-
3480
-
3481
- const Invoice_possibleTypes: string[] = ['Invoice']
3482
- export const isInvoice = (obj?: { __typename?: any } | null): obj is Invoice => {
3483
- if (!obj?.__typename) throw new Error('__typename is missing in "isInvoice"')
3484
- return Invoice_possibleTypes.includes(obj.__typename)
3485
- }
3486
-
3487
-
3488
-
3489
- const SubscriptionInvoice_possibleTypes: string[] = ['SubscriptionInvoice']
3490
- export const isSubscriptionInvoice = (obj?: { __typename?: any } | null): obj is SubscriptionInvoice => {
3491
- if (!obj?.__typename) throw new Error('__typename is missing in "isSubscriptionInvoice"')
3492
- return SubscriptionInvoice_possibleTypes.includes(obj.__typename)
3493
- }
3494
-
3495
-
3496
-
3497
- const PlanSubscription_possibleTypes: string[] = ['PlanSubscription']
3498
- export const isPlanSubscription = (obj?: { __typename?: any } | null): obj is PlanSubscription => {
3499
- if (!obj?.__typename) throw new Error('__typename is missing in "isPlanSubscription"')
3500
- return PlanSubscription_possibleTypes.includes(obj.__typename)
3501
- }
3502
-
3503
-
3504
-
3505
- const SubscriptionPayment_possibleTypes: string[] = ['SubscriptionPayment']
3506
- export const isSubscriptionPayment = (obj?: { __typename?: any } | null): obj is SubscriptionPayment => {
3507
- if (!obj?.__typename) throw new Error('__typename is missing in "isSubscriptionPayment"')
3508
- return SubscriptionPayment_possibleTypes.includes(obj.__typename)
3509
- }
3510
-
3511
-
3512
-
3513
- const AWSS3File_possibleTypes: string[] = ['AWSS3File']
3514
- export const isAWSS3File = (obj?: { __typename?: any } | null): obj is AWSS3File => {
3515
- if (!obj?.__typename) throw new Error('__typename is missing in "isAWSS3File"')
3516
- return AWSS3File_possibleTypes.includes(obj.__typename)
3517
- }
3518
-
3519
-
3520
-
3521
- const MagicLink_possibleTypes: string[] = ['MagicLink']
3522
- export const isMagicLink = (obj?: { __typename?: any } | null): obj is MagicLink => {
3523
- if (!obj?.__typename) throw new Error('__typename is missing in "isMagicLink"')
3524
- return MagicLink_possibleTypes.includes(obj.__typename)
3525
- }
3526
-
3527
-
3528
-
3529
- const VerificationCode_possibleTypes: string[] = ['VerificationCode']
3530
- export const isVerificationCode = (obj?: { __typename?: any } | null): obj is VerificationCode => {
3531
- if (!obj?.__typename) throw new Error('__typename is missing in "isVerificationCode"')
3532
- return VerificationCode_possibleTypes.includes(obj.__typename)
3533
- }
3534
-
3535
-
3536
-
3537
- const ErrorInfo_possibleTypes: string[] = ['ErrorInfo']
3538
- export const isErrorInfo = (obj?: { __typename?: any } | null): obj is ErrorInfo => {
3539
- if (!obj?.__typename) throw new Error('__typename is missing in "isErrorInfo"')
3540
- return ErrorInfo_possibleTypes.includes(obj.__typename)
3541
- }
3542
-
3543
-
3544
-
3545
- const HttpRequestField_possibleTypes: string[] = ['HttpRequestField']
3546
- export const isHttpRequestField = (obj?: { __typename?: any } | null): obj is HttpRequestField => {
3547
- if (!obj?.__typename) throw new Error('__typename is missing in "isHttpRequestField"')
3548
- return HttpRequestField_possibleTypes.includes(obj.__typename)
3549
- }
3550
-
3551
-
3552
-
3553
- const AWSS3UploadUrl_possibleTypes: string[] = ['AWSS3UploadUrl']
3554
- export const isAWSS3UploadUrl = (obj?: { __typename?: any } | null): obj is AWSS3UploadUrl => {
3555
- if (!obj?.__typename) throw new Error('__typename is missing in "isAWSS3UploadUrl"')
3556
- return AWSS3UploadUrl_possibleTypes.includes(obj.__typename)
3557
- }
3558
-
3559
-
3560
-
3561
- const AWSS3CallResult_possibleTypes: string[] = ['AWSS3CallResult']
3562
- export const isAWSS3CallResult = (obj?: { __typename?: any } | null): obj is AWSS3CallResult => {
3563
- if (!obj?.__typename) throw new Error('__typename is missing in "isAWSS3CallResult"')
3564
- return AWSS3CallResult_possibleTypes.includes(obj.__typename)
3565
- }
3566
-
3567
-
3568
-
3569
- const DatabaseFile_possibleTypes: string[] = ['DatabaseFile']
3570
- export const isDatabaseFile = (obj?: { __typename?: any } | null): obj is DatabaseFile => {
3571
- if (!obj?.__typename) throw new Error('__typename is missing in "isDatabaseFile"')
3572
- return DatabaseFile_possibleTypes.includes(obj.__typename)
3573
- }
3574
-
3575
-
3576
-
3577
- const TextDatabaseFile_possibleTypes: string[] = ['TextDatabaseFile']
3578
- export const isTextDatabaseFile = (obj?: { __typename?: any } | null): obj is TextDatabaseFile => {
3579
- if (!obj?.__typename) throw new Error('__typename is missing in "isTextDatabaseFile"')
3580
- return TextDatabaseFile_possibleTypes.includes(obj.__typename)
3581
- }
3582
-
3583
-
3584
-
3585
- const CodeVerificationResponse_possibleTypes: string[] = ['CodeVerificationResponse']
3586
- export const isCodeVerificationResponse = (obj?: { __typename?: any } | null): obj is CodeVerificationResponse => {
3587
- if (!obj?.__typename) throw new Error('__typename is missing in "isCodeVerificationResponse"')
3588
- return CodeVerificationResponse_possibleTypes.includes(obj.__typename)
3589
- }
3590
-
3591
-
3592
-
3593
- const BrandStats_possibleTypes: string[] = ['BrandStats']
3594
- export const isBrandStats = (obj?: { __typename?: any } | null): obj is BrandStats => {
3595
- if (!obj?.__typename) throw new Error('__typename is missing in "isBrandStats"')
3596
- return BrandStats_possibleTypes.includes(obj.__typename)
3597
- }
3598
-
3599
-
3600
-
3601
- const BrandTranslation_possibleTypes: string[] = ['BrandTranslation']
3602
- export const isBrandTranslation = (obj?: { __typename?: any } | null): obj is BrandTranslation => {
3603
- if (!obj?.__typename) throw new Error('__typename is missing in "isBrandTranslation"')
3604
- return BrandTranslation_possibleTypes.includes(obj.__typename)
3605
- }
3606
-
3607
-
3608
-
3609
- const Brand_possibleTypes: string[] = ['Brand']
3610
- export const isBrand = (obj?: { __typename?: any } | null): obj is Brand => {
3611
- if (!obj?.__typename) throw new Error('__typename is missing in "isBrand"')
3612
- return Brand_possibleTypes.includes(obj.__typename)
3613
- }
3614
-
3615
-
3616
-
3617
- const StravaTpiRideDto_possibleTypes: string[] = ['StravaTpiRideDto']
3618
- export const isStravaTpiRideDto = (obj?: { __typename?: any } | null): obj is StravaTpiRideDto => {
3619
- if (!obj?.__typename) throw new Error('__typename is missing in "isStravaTpiRideDto"')
3620
- return StravaTpiRideDto_possibleTypes.includes(obj.__typename)
3621
- }
3622
-
3623
-
3624
-
3625
- const StravaTpiRunDto_possibleTypes: string[] = ['StravaTpiRunDto']
3626
- export const isStravaTpiRunDto = (obj?: { __typename?: any } | null): obj is StravaTpiRunDto => {
3627
- if (!obj?.__typename) throw new Error('__typename is missing in "isStravaTpiRunDto"')
3628
- return StravaTpiRunDto_possibleTypes.includes(obj.__typename)
3629
- }
3630
-
3631
-
3632
-
3633
- const StravaTpiSwimDto_possibleTypes: string[] = ['StravaTpiSwimDto']
3634
- export const isStravaTpiSwimDto = (obj?: { __typename?: any } | null): obj is StravaTpiSwimDto => {
3635
- if (!obj?.__typename) throw new Error('__typename is missing in "isStravaTpiSwimDto"')
3636
- return StravaTpiSwimDto_possibleTypes.includes(obj.__typename)
3637
- }
3638
-
3639
-
3640
-
3641
- const City_possibleTypes: string[] = ['City']
3642
- export const isCity = (obj?: { __typename?: any } | null): obj is City => {
3643
- if (!obj?.__typename) throw new Error('__typename is missing in "isCity"')
3644
- return City_possibleTypes.includes(obj.__typename)
3645
- }
3646
-
3647
-
3648
-
3649
- const State_possibleTypes: string[] = ['State']
3650
- export const isState = (obj?: { __typename?: any } | null): obj is State => {
3651
- if (!obj?.__typename) throw new Error('__typename is missing in "isState"')
3652
- return State_possibleTypes.includes(obj.__typename)
3653
- }
3654
-
3655
-
3656
-
3657
- const Country_possibleTypes: string[] = ['Country']
3658
- export const isCountry = (obj?: { __typename?: any } | null): obj is Country => {
3659
- if (!obj?.__typename) throw new Error('__typename is missing in "isCountry"')
3660
- return Country_possibleTypes.includes(obj.__typename)
3661
- }
3662
-
3663
-
3664
-
3665
- const AgeQualification_possibleTypes: string[] = ['AgeQualification']
3666
- export const isAgeQualification = (obj?: { __typename?: any } | null): obj is AgeQualification => {
3667
- if (!obj?.__typename) throw new Error('__typename is missing in "isAgeQualification"')
3668
- return AgeQualification_possibleTypes.includes(obj.__typename)
3669
- }
3670
-
3671
-
3672
-
3673
- const GenderQualification_possibleTypes: string[] = ['GenderQualification']
3674
- export const isGenderQualification = (obj?: { __typename?: any } | null): obj is GenderQualification => {
3675
- if (!obj?.__typename) throw new Error('__typename is missing in "isGenderQualification"')
3676
- return GenderQualification_possibleTypes.includes(obj.__typename)
3677
- }
3678
-
3679
-
3680
-
3681
- const ScoreQualification_possibleTypes: string[] = ['ScoreQualification']
3682
- export const isScoreQualification = (obj?: { __typename?: any } | null): obj is ScoreQualification => {
3683
- if (!obj?.__typename) throw new Error('__typename is missing in "isScoreQualification"')
3684
- return ScoreQualification_possibleTypes.includes(obj.__typename)
3685
- }
3686
-
3687
-
3688
-
3689
- const LocationQualification_possibleTypes: string[] = ['LocationQualification']
3690
- export const isLocationQualification = (obj?: { __typename?: any } | null): obj is LocationQualification => {
3691
- if (!obj?.__typename) throw new Error('__typename is missing in "isLocationQualification"')
3692
- return LocationQualification_possibleTypes.includes(obj.__typename)
3693
- }
3694
-
3695
-
3696
-
3697
- const NationalityQualification_possibleTypes: string[] = ['NationalityQualification']
3698
- export const isNationalityQualification = (obj?: { __typename?: any } | null): obj is NationalityQualification => {
3699
- if (!obj?.__typename) throw new Error('__typename is missing in "isNationalityQualification"')
3700
- return NationalityQualification_possibleTypes.includes(obj.__typename)
3701
- }
3702
-
3703
-
3704
-
3705
- const DistanceQualification_possibleTypes: string[] = ['DistanceQualification']
3706
- export const isDistanceQualification = (obj?: { __typename?: any } | null): obj is DistanceQualification => {
3707
- if (!obj?.__typename) throw new Error('__typename is missing in "isDistanceQualification"')
3708
- return DistanceQualification_possibleTypes.includes(obj.__typename)
3709
- }
3710
-
3711
-
3712
-
3713
- const SportsQualification_possibleTypes: string[] = ['SportsQualification']
3714
- export const isSportsQualification = (obj?: { __typename?: any } | null): obj is SportsQualification => {
3715
- if (!obj?.__typename) throw new Error('__typename is missing in "isSportsQualification"')
3716
- return SportsQualification_possibleTypes.includes(obj.__typename)
3717
- }
3718
-
3719
-
3720
-
3721
- const SportsLevelQualification_possibleTypes: string[] = ['SportsLevelQualification']
3722
- export const isSportsLevelQualification = (obj?: { __typename?: any } | null): obj is SportsLevelQualification => {
3723
- if (!obj?.__typename) throw new Error('__typename is missing in "isSportsLevelQualification"')
3724
- return SportsLevelQualification_possibleTypes.includes(obj.__typename)
3725
- }
3726
-
3727
-
3728
-
3729
- const AthleteCriteria_possibleTypes: string[] = ['AthleteCriteria']
3730
- export const isAthleteCriteria = (obj?: { __typename?: any } | null): obj is AthleteCriteria => {
3731
- if (!obj?.__typename) throw new Error('__typename is missing in "isAthleteCriteria"')
3732
- return AthleteCriteria_possibleTypes.includes(obj.__typename)
3733
- }
3734
-
3735
-
3736
-
3737
- const QualificationTypeUnion_possibleTypes: string[] = ['AgeQualification','GenderQualification','ScoreQualification','LocationQualification','NationalityQualification','DistanceQualification','SportsQualification','SportsLevelQualification']
3738
- export const isQualificationTypeUnion = (obj?: { __typename?: any } | null): obj is QualificationTypeUnion => {
3739
- if (!obj?.__typename) throw new Error('__typename is missing in "isQualificationTypeUnion"')
3740
- return QualificationTypeUnion_possibleTypes.includes(obj.__typename)
3741
- }
3742
-
3743
-
3744
-
3745
- const Industry_possibleTypes: string[] = ['Industry']
3746
- export const isIndustry = (obj?: { __typename?: any } | null): obj is Industry => {
3747
- if (!obj?.__typename) throw new Error('__typename is missing in "isIndustry"')
3748
- return Industry_possibleTypes.includes(obj.__typename)
3749
- }
3750
-
3751
-
3752
-
3753
- const SponsorStats_possibleTypes: string[] = ['SponsorStats']
3754
- export const isSponsorStats = (obj?: { __typename?: any } | null): obj is SponsorStats => {
3755
- if (!obj?.__typename) throw new Error('__typename is missing in "isSponsorStats"')
3756
- return SponsorStats_possibleTypes.includes(obj.__typename)
3757
- }
3758
-
3759
-
3760
-
3761
- const SponsorBrand_possibleTypes: string[] = ['SponsorBrand']
3762
- export const isSponsorBrand = (obj?: { __typename?: any } | null): obj is SponsorBrand => {
3763
- if (!obj?.__typename) throw new Error('__typename is missing in "isSponsorBrand"')
3764
- return SponsorBrand_possibleTypes.includes(obj.__typename)
3765
- }
3766
-
3767
-
3768
-
3769
- const Sponsor_possibleTypes: string[] = ['Sponsor']
3770
- export const isSponsor = (obj?: { __typename?: any } | null): obj is Sponsor => {
3771
- if (!obj?.__typename) throw new Error('__typename is missing in "isSponsor"')
3772
- return Sponsor_possibleTypes.includes(obj.__typename)
3773
- }
3774
-
3775
-
3776
-
3777
- const SponsorshipItem_possibleTypes: string[] = ['SponsorshipItem']
3778
- export const isSponsorshipItem = (obj?: { __typename?: any } | null): obj is SponsorshipItem => {
3779
- if (!obj?.__typename) throw new Error('__typename is missing in "isSponsorshipItem"')
3780
- return SponsorshipItem_possibleTypes.includes(obj.__typename)
3781
- }
3782
-
3783
-
3784
-
3785
- const SponsorshipCommitment_possibleTypes: string[] = ['SponsorshipCommitment']
3786
- export const isSponsorshipCommitment = (obj?: { __typename?: any } | null): obj is SponsorshipCommitment => {
3787
- if (!obj?.__typename) throw new Error('__typename is missing in "isSponsorshipCommitment"')
3788
- return SponsorshipCommitment_possibleTypes.includes(obj.__typename)
3789
- }
3790
-
3791
-
3792
-
3793
- const Duration_possibleTypes: string[] = ['Duration']
3794
- export const isDuration = (obj?: { __typename?: any } | null): obj is Duration => {
3795
- if (!obj?.__typename) throw new Error('__typename is missing in "isDuration"')
3796
- return Duration_possibleTypes.includes(obj.__typename)
3797
- }
3798
-
3799
-
3800
-
3801
- const SponsorshipStats_possibleTypes: string[] = ['SponsorshipStats']
3802
- export const isSponsorshipStats = (obj?: { __typename?: any } | null): obj is SponsorshipStats => {
3803
- if (!obj?.__typename) throw new Error('__typename is missing in "isSponsorshipStats"')
3804
- return SponsorshipStats_possibleTypes.includes(obj.__typename)
3805
- }
3806
-
3807
-
3808
-
3809
- const SponsorshipTranslation_possibleTypes: string[] = ['SponsorshipTranslation']
3810
- export const isSponsorshipTranslation = (obj?: { __typename?: any } | null): obj is SponsorshipTranslation => {
3811
- if (!obj?.__typename) throw new Error('__typename is missing in "isSponsorshipTranslation"')
3812
- return SponsorshipTranslation_possibleTypes.includes(obj.__typename)
3813
- }
3814
-
3815
-
3816
-
3817
- const Sponsorship_possibleTypes: string[] = ['Sponsorship']
3818
- export const isSponsorship = (obj?: { __typename?: any } | null): obj is Sponsorship => {
3819
- if (!obj?.__typename) throw new Error('__typename is missing in "isSponsorship"')
3820
- return Sponsorship_possibleTypes.includes(obj.__typename)
3821
- }
3822
-
3823
-
3824
-
3825
- const FollowStats_possibleTypes: string[] = ['FollowStats']
3826
- export const isFollowStats = (obj?: { __typename?: any } | null): obj is FollowStats => {
3827
- if (!obj?.__typename) throw new Error('__typename is missing in "isFollowStats"')
3828
- return FollowStats_possibleTypes.includes(obj.__typename)
3829
- }
3830
-
3831
-
3832
-
3833
- const Sport_possibleTypes: string[] = ['Sport']
3834
- export const isSport = (obj?: { __typename?: any } | null): obj is Sport => {
3835
- if (!obj?.__typename) throw new Error('__typename is missing in "isSport"')
3836
- return Sport_possibleTypes.includes(obj.__typename)
3837
- }
3838
-
3839
-
3840
-
3841
- const VtxScores_possibleTypes: string[] = ['VtxScores']
3842
- export const isVtxScores = (obj?: { __typename?: any } | null): obj is VtxScores => {
3843
- if (!obj?.__typename) throw new Error('__typename is missing in "isVtxScores"')
3844
- return VtxScores_possibleTypes.includes(obj.__typename)
3845
- }
3846
-
3847
-
3848
-
3849
- const SportLevelTranslation_possibleTypes: string[] = ['SportLevelTranslation']
3850
- export const isSportLevelTranslation = (obj?: { __typename?: any } | null): obj is SportLevelTranslation => {
3851
- if (!obj?.__typename) throw new Error('__typename is missing in "isSportLevelTranslation"')
3852
- return SportLevelTranslation_possibleTypes.includes(obj.__typename)
3853
- }
3854
-
3855
-
3856
-
3857
- const SportLevel_possibleTypes: string[] = ['SportLevel']
3858
- export const isSportLevel = (obj?: { __typename?: any } | null): obj is SportLevel => {
3859
- if (!obj?.__typename) throw new Error('__typename is missing in "isSportLevel"')
3860
- return SportLevel_possibleTypes.includes(obj.__typename)
3861
- }
3862
-
3863
-
3864
-
3865
- const Ranking_possibleTypes: string[] = ['Ranking']
3866
- export const isRanking = (obj?: { __typename?: any } | null): obj is Ranking => {
3867
- if (!obj?.__typename) throw new Error('__typename is missing in "isRanking"')
3868
- return Ranking_possibleTypes.includes(obj.__typename)
3869
- }
3870
-
3871
-
3872
-
3873
- const AthleteRankings_possibleTypes: string[] = ['AthleteRankings']
3874
- export const isAthleteRankings = (obj?: { __typename?: any } | null): obj is AthleteRankings => {
3875
- if (!obj?.__typename) throw new Error('__typename is missing in "isAthleteRankings"')
3876
- return AthleteRankings_possibleTypes.includes(obj.__typename)
3877
- }
3878
-
3879
-
3880
-
3881
- const Team_possibleTypes: string[] = ['Team']
3882
- export const isTeam = (obj?: { __typename?: any } | null): obj is Team => {
3883
- if (!obj?.__typename) throw new Error('__typename is missing in "isTeam"')
3884
- return Team_possibleTypes.includes(obj.__typename)
3885
- }
3886
-
3887
-
3888
-
3889
- const WorldLocation_possibleTypes: string[] = ['WorldLocation']
3890
- export const isWorldLocation = (obj?: { __typename?: any } | null): obj is WorldLocation => {
3891
- if (!obj?.__typename) throw new Error('__typename is missing in "isWorldLocation"')
3892
- return WorldLocation_possibleTypes.includes(obj.__typename)
3893
- }
3894
-
3895
-
3896
-
3897
- const SportsEvent_possibleTypes: string[] = ['SportsEvent']
3898
- export const isSportsEvent = (obj?: { __typename?: any } | null): obj is SportsEvent => {
3899
- if (!obj?.__typename) throw new Error('__typename is missing in "isSportsEvent"')
3900
- return SportsEvent_possibleTypes.includes(obj.__typename)
3901
- }
3902
-
3903
-
3904
-
3905
- const AthleteCompetitionResult_possibleTypes: string[] = ['AthleteCompetitionResult']
3906
- export const isAthleteCompetitionResult = (obj?: { __typename?: any } | null): obj is AthleteCompetitionResult => {
3907
- if (!obj?.__typename) throw new Error('__typename is missing in "isAthleteCompetitionResult"')
3908
- return AthleteCompetitionResult_possibleTypes.includes(obj.__typename)
3909
- }
3910
-
3911
-
3912
-
3913
- const BudgetItem_possibleTypes: string[] = ['BudgetItem']
3914
- export const isBudgetItem = (obj?: { __typename?: any } | null): obj is BudgetItem => {
3915
- if (!obj?.__typename) throw new Error('__typename is missing in "isBudgetItem"')
3916
- return BudgetItem_possibleTypes.includes(obj.__typename)
3917
- }
3918
-
3919
-
3920
-
3921
- const Budget_possibleTypes: string[] = ['Budget']
3922
- export const isBudget = (obj?: { __typename?: any } | null): obj is Budget => {
3923
- if (!obj?.__typename) throw new Error('__typename is missing in "isBudget"')
3924
- return Budget_possibleTypes.includes(obj.__typename)
3925
- }
3926
-
3927
-
3928
-
3929
- const AthleteCompetition_possibleTypes: string[] = ['AthleteCompetition']
3930
- export const isAthleteCompetition = (obj?: { __typename?: any } | null): obj is AthleteCompetition => {
3931
- if (!obj?.__typename) throw new Error('__typename is missing in "isAthleteCompetition"')
3932
- return AthleteCompetition_possibleTypes.includes(obj.__typename)
3933
- }
3934
-
3935
-
3936
-
3937
- const MembershipOrganizationReference_possibleTypes: string[] = ['MembershipOrganizationReference']
3938
- export const isMembershipOrganizationReference = (obj?: { __typename?: any } | null): obj is MembershipOrganizationReference => {
3939
- if (!obj?.__typename) throw new Error('__typename is missing in "isMembershipOrganizationReference"')
3940
- return MembershipOrganizationReference_possibleTypes.includes(obj.__typename)
3941
- }
3942
-
3943
-
3944
-
3945
- const MembershipOrganization_possibleTypes: string[] = ['MembershipOrganization']
3946
- export const isMembershipOrganization = (obj?: { __typename?: any } | null): obj is MembershipOrganization => {
3947
- if (!obj?.__typename) throw new Error('__typename is missing in "isMembershipOrganization"')
3948
- return MembershipOrganization_possibleTypes.includes(obj.__typename)
3949
- }
3950
-
3951
-
3952
-
3953
- const AthleteMembership_possibleTypes: string[] = ['AthleteMembership']
3954
- export const isAthleteMembership = (obj?: { __typename?: any } | null): obj is AthleteMembership => {
3955
- if (!obj?.__typename) throw new Error('__typename is missing in "isAthleteMembership"')
3956
- return AthleteMembership_possibleTypes.includes(obj.__typename)
3957
- }
3958
-
3959
-
3960
-
3961
- const NewsLink_possibleTypes: string[] = ['NewsLink']
3962
- export const isNewsLink = (obj?: { __typename?: any } | null): obj is NewsLink => {
3963
- if (!obj?.__typename) throw new Error('__typename is missing in "isNewsLink"')
3964
- return NewsLink_possibleTypes.includes(obj.__typename)
3965
- }
3966
-
3967
-
3968
-
3969
- const Channel_possibleTypes: string[] = ['Channel']
3970
- export const isChannel = (obj?: { __typename?: any } | null): obj is Channel => {
3971
- if (!obj?.__typename) throw new Error('__typename is missing in "isChannel"')
3972
- return Channel_possibleTypes.includes(obj.__typename)
3973
- }
3974
-
3975
-
3976
-
3977
- const PhotoAlbum_possibleTypes: string[] = ['PhotoAlbum']
3978
- export const isPhotoAlbum = (obj?: { __typename?: any } | null): obj is PhotoAlbum => {
3979
- if (!obj?.__typename) throw new Error('__typename is missing in "isPhotoAlbum"')
3980
- return PhotoAlbum_possibleTypes.includes(obj.__typename)
3981
- }
3982
-
3983
-
3984
-
3985
- const Album_possibleTypes: string[] = ['Album']
3986
- export const isAlbum = (obj?: { __typename?: any } | null): obj is Album => {
3987
- if (!obj?.__typename) throw new Error('__typename is missing in "isAlbum"')
3988
- return Album_possibleTypes.includes(obj.__typename)
3989
- }
3990
-
3991
-
3992
-
3993
- const AthletePreferences_possibleTypes: string[] = ['AthletePreferences']
3994
- export const isAthletePreferences = (obj?: { __typename?: any } | null): obj is AthletePreferences => {
3995
- if (!obj?.__typename) throw new Error('__typename is missing in "isAthletePreferences"')
3996
- return AthletePreferences_possibleTypes.includes(obj.__typename)
3997
- }
3998
-
3999
-
4000
-
4001
- const FundRaisingCampaign_possibleTypes: string[] = ['FundRaisingCampaign']
4002
- export const isFundRaisingCampaign = (obj?: { __typename?: any } | null): obj is FundRaisingCampaign => {
4003
- if (!obj?.__typename) throw new Error('__typename is missing in "isFundRaisingCampaign"')
4004
- return FundRaisingCampaign_possibleTypes.includes(obj.__typename)
4005
- }
4006
-
4007
-
4008
-
4009
- const StripeCapabilityType_possibleTypes: string[] = ['StripeCapabilityType']
4010
- export const isStripeCapabilityType = (obj?: { __typename?: any } | null): obj is StripeCapabilityType => {
4011
- if (!obj?.__typename) throw new Error('__typename is missing in "isStripeCapabilityType"')
4012
- return StripeCapabilityType_possibleTypes.includes(obj.__typename)
4013
- }
4014
-
4015
-
4016
-
4017
- const StripeRequirementAlternativeType_possibleTypes: string[] = ['StripeRequirementAlternativeType']
4018
- export const isStripeRequirementAlternativeType = (obj?: { __typename?: any } | null): obj is StripeRequirementAlternativeType => {
4019
- if (!obj?.__typename) throw new Error('__typename is missing in "isStripeRequirementAlternativeType"')
4020
- return StripeRequirementAlternativeType_possibleTypes.includes(obj.__typename)
4021
- }
4022
-
4023
-
4024
-
4025
- const StripeFutureRequirementAlternativeType_possibleTypes: string[] = ['StripeFutureRequirementAlternativeType']
4026
- export const isStripeFutureRequirementAlternativeType = (obj?: { __typename?: any } | null): obj is StripeFutureRequirementAlternativeType => {
4027
- if (!obj?.__typename) throw new Error('__typename is missing in "isStripeFutureRequirementAlternativeType"')
4028
- return StripeFutureRequirementAlternativeType_possibleTypes.includes(obj.__typename)
4029
- }
4030
-
4031
-
4032
-
4033
- const StripeErrorType_possibleTypes: string[] = ['StripeErrorType']
4034
- export const isStripeErrorType = (obj?: { __typename?: any } | null): obj is StripeErrorType => {
4035
- if (!obj?.__typename) throw new Error('__typename is missing in "isStripeErrorType"')
4036
- return StripeErrorType_possibleTypes.includes(obj.__typename)
4037
- }
4038
-
4039
-
4040
-
4041
- const StripeRequirementType_possibleTypes: string[] = ['StripeRequirementType']
4042
- export const isStripeRequirementType = (obj?: { __typename?: any } | null): obj is StripeRequirementType => {
4043
- if (!obj?.__typename) throw new Error('__typename is missing in "isStripeRequirementType"')
4044
- return StripeRequirementType_possibleTypes.includes(obj.__typename)
4045
- }
4046
-
4047
-
4048
-
4049
- const StripeFutureRequirementType_possibleTypes: string[] = ['StripeFutureRequirementType']
4050
- export const isStripeFutureRequirementType = (obj?: { __typename?: any } | null): obj is StripeFutureRequirementType => {
4051
- if (!obj?.__typename) throw new Error('__typename is missing in "isStripeFutureRequirementType"')
4052
- return StripeFutureRequirementType_possibleTypes.includes(obj.__typename)
4053
- }
4054
-
4055
-
4056
-
4057
- const StripeAccount_possibleTypes: string[] = ['StripeAccount']
4058
- export const isStripeAccount = (obj?: { __typename?: any } | null): obj is StripeAccount => {
4059
- if (!obj?.__typename) throw new Error('__typename is missing in "isStripeAccount"')
4060
- return StripeAccount_possibleTypes.includes(obj.__typename)
4061
- }
4062
-
4063
-
4064
-
4065
- const StripeAccountReference_possibleTypes: string[] = ['StripeAccountReference']
4066
- export const isStripeAccountReference = (obj?: { __typename?: any } | null): obj is StripeAccountReference => {
4067
- if (!obj?.__typename) throw new Error('__typename is missing in "isStripeAccountReference"')
4068
- return StripeAccountReference_possibleTypes.includes(obj.__typename)
4069
- }
4070
-
4071
-
4072
-
4073
- const HistoricalScoreType_possibleTypes: string[] = ['HistoricalScoreType']
4074
- export const isHistoricalScoreType = (obj?: { __typename?: any } | null): obj is HistoricalScoreType => {
4075
- if (!obj?.__typename) throw new Error('__typename is missing in "isHistoricalScoreType"')
4076
- return HistoricalScoreType_possibleTypes.includes(obj.__typename)
4077
- }
4078
-
4079
-
4080
-
4081
- const AthleteReference_possibleTypes: string[] = ['AthleteReference']
4082
- export const isAthleteReference = (obj?: { __typename?: any } | null): obj is AthleteReference => {
4083
- if (!obj?.__typename) throw new Error('__typename is missing in "isAthleteReference"')
4084
- return AthleteReference_possibleTypes.includes(obj.__typename)
4085
- }
4086
-
4087
-
4088
-
4089
- const Athlete_possibleTypes: string[] = ['Athlete']
4090
- export const isAthlete = (obj?: { __typename?: any } | null): obj is Athlete => {
4091
- if (!obj?.__typename) throw new Error('__typename is missing in "isAthlete"')
4092
- return Athlete_possibleTypes.includes(obj.__typename)
4093
- }
4094
-
4095
-
4096
-
4097
- const CheckoutSession_possibleTypes: string[] = ['CheckoutSession']
4098
- export const isCheckoutSession = (obj?: { __typename?: any } | null): obj is CheckoutSession => {
4099
- if (!obj?.__typename) throw new Error('__typename is missing in "isCheckoutSession"')
4100
- return CheckoutSession_possibleTypes.includes(obj.__typename)
4101
- }
4102
-
4103
-
4104
-
4105
- const FundingCheckoutSessionData_possibleTypes: string[] = ['FundingCheckoutSessionData']
4106
- export const isFundingCheckoutSessionData = (obj?: { __typename?: any } | null): obj is FundingCheckoutSessionData => {
4107
- if (!obj?.__typename) throw new Error('__typename is missing in "isFundingCheckoutSessionData"')
4108
- return FundingCheckoutSessionData_possibleTypes.includes(obj.__typename)
4109
- }
4110
-
4111
-
4112
-
4113
- const SponsorAthleteInvitation_possibleTypes: string[] = ['SponsorAthleteInvitation']
4114
- export const isSponsorAthleteInvitation = (obj?: { __typename?: any } | null): obj is SponsorAthleteInvitation => {
4115
- if (!obj?.__typename) throw new Error('__typename is missing in "isSponsorAthleteInvitation"')
4116
- return SponsorAthleteInvitation_possibleTypes.includes(obj.__typename)
4117
- }
4118
-
4119
-
4120
-
4121
- const StravaToken_possibleTypes: string[] = ['StravaToken']
4122
- export const isStravaToken = (obj?: { __typename?: any } | null): obj is StravaToken => {
4123
- if (!obj?.__typename) throw new Error('__typename is missing in "isStravaToken"')
4124
- return StravaToken_possibleTypes.includes(obj.__typename)
4125
- }
4126
-
4127
-
4128
-
4129
- const StripeSession_possibleTypes: string[] = ['StripeSession']
4130
- export const isStripeSession = (obj?: { __typename?: any } | null): obj is StripeSession => {
4131
- if (!obj?.__typename) throw new Error('__typename is missing in "isStripeSession"')
4132
- return StripeSession_possibleTypes.includes(obj.__typename)
4133
- }
4134
-
4135
-
4136
-
4137
- const StripeCheckoutSession_possibleTypes: string[] = ['StripeCheckoutSession']
4138
- export const isStripeCheckoutSession = (obj?: { __typename?: any } | null): obj is StripeCheckoutSession => {
4139
- if (!obj?.__typename) throw new Error('__typename is missing in "isStripeCheckoutSession"')
4140
- return StripeCheckoutSession_possibleTypes.includes(obj.__typename)
4141
- }
4142
-
4143
-
4144
-
4145
- const StravaAthleteData_possibleTypes: string[] = ['StravaAthleteData']
4146
- export const isStravaAthleteData = (obj?: { __typename?: any } | null): obj is StravaAthleteData => {
4147
- if (!obj?.__typename) throw new Error('__typename is missing in "isStravaAthleteData"')
4148
- return StravaAthleteData_possibleTypes.includes(obj.__typename)
4149
- }
4150
-
4151
-
4152
-
4153
- const InstagramCursors_possibleTypes: string[] = ['InstagramCursors']
4154
- export const isInstagramCursors = (obj?: { __typename?: any } | null): obj is InstagramCursors => {
4155
- if (!obj?.__typename) throw new Error('__typename is missing in "isInstagramCursors"')
4156
- return InstagramCursors_possibleTypes.includes(obj.__typename)
4157
- }
4158
-
4159
-
4160
-
4161
- const InstagramPaging_possibleTypes: string[] = ['InstagramPaging']
4162
- export const isInstagramPaging = (obj?: { __typename?: any } | null): obj is InstagramPaging => {
4163
- if (!obj?.__typename) throw new Error('__typename is missing in "isInstagramPaging"')
4164
- return InstagramPaging_possibleTypes.includes(obj.__typename)
4165
- }
4166
-
4167
-
4168
-
4169
- const InstagramMetric_possibleTypes: string[] = ['InstagramMetric']
4170
- export const isInstagramMetric = (obj?: { __typename?: any } | null): obj is InstagramMetric => {
4171
- if (!obj?.__typename) throw new Error('__typename is missing in "isInstagramMetric"')
4172
- return InstagramMetric_possibleTypes.includes(obj.__typename)
4173
- }
4174
-
4175
-
4176
-
4177
- const InstagramInsights_possibleTypes: string[] = ['InstagramInsights']
4178
- export const isInstagramInsights = (obj?: { __typename?: any } | null): obj is InstagramInsights => {
4179
- if (!obj?.__typename) throw new Error('__typename is missing in "isInstagramInsights"')
4180
- return InstagramInsights_possibleTypes.includes(obj.__typename)
4181
- }
4182
-
4183
-
4184
-
4185
- const InstagramMediaItem_possibleTypes: string[] = ['InstagramMediaItem']
4186
- export const isInstagramMediaItem = (obj?: { __typename?: any } | null): obj is InstagramMediaItem => {
4187
- if (!obj?.__typename) throw new Error('__typename is missing in "isInstagramMediaItem"')
4188
- return InstagramMediaItem_possibleTypes.includes(obj.__typename)
4189
- }
4190
-
4191
-
4192
-
4193
- const InstagramMediaData_possibleTypes: string[] = ['InstagramMediaData']
4194
- export const isInstagramMediaData = (obj?: { __typename?: any } | null): obj is InstagramMediaData => {
4195
- if (!obj?.__typename) throw new Error('__typename is missing in "isInstagramMediaData"')
4196
- return InstagramMediaData_possibleTypes.includes(obj.__typename)
4197
- }
4198
-
4199
-
4200
-
4201
- const InstagramUserData_possibleTypes: string[] = ['InstagramUserData']
4202
- export const isInstagramUserData = (obj?: { __typename?: any } | null): obj is InstagramUserData => {
4203
- if (!obj?.__typename) throw new Error('__typename is missing in "isInstagramUserData"')
4204
- return InstagramUserData_possibleTypes.includes(obj.__typename)
4205
- }
4206
-
4207
-
4208
-
4209
- const AthleteIntegrationReference_possibleTypes: string[] = ['AthleteIntegrationReference']
4210
- export const isAthleteIntegrationReference = (obj?: { __typename?: any } | null): obj is AthleteIntegrationReference => {
4211
- if (!obj?.__typename) throw new Error('__typename is missing in "isAthleteIntegrationReference"')
4212
- return AthleteIntegrationReference_possibleTypes.includes(obj.__typename)
4213
- }
4214
-
4215
-
4216
-
4217
- const Receipt_possibleTypes: string[] = ['Receipt']
4218
- export const isReceipt = (obj?: { __typename?: any } | null): obj is Receipt => {
4219
- if (!obj?.__typename) throw new Error('__typename is missing in "isReceipt"')
4220
- return Receipt_possibleTypes.includes(obj.__typename)
4221
- }
4222
-
4223
-
4224
-
4225
- const ReceiptUrl_possibleTypes: string[] = ['ReceiptUrl']
4226
- export const isReceiptUrl = (obj?: { __typename?: any } | null): obj is ReceiptUrl => {
4227
- if (!obj?.__typename) throw new Error('__typename is missing in "isReceiptUrl"')
4228
- return ReceiptUrl_possibleTypes.includes(obj.__typename)
4229
- }
4230
-
4231
-
4232
-
4233
- const EditValueResponse_possibleTypes: string[] = ['EditValueResponse']
4234
- export const isEditValueResponse = (obj?: { __typename?: any } | null): obj is EditValueResponse => {
4235
- if (!obj?.__typename) throw new Error('__typename is missing in "isEditValueResponse"')
4236
- return EditValueResponse_possibleTypes.includes(obj.__typename)
4237
- }
4238
-
4239
-
4240
-
4241
- const ErrorType_possibleTypes: string[] = ['ErrorType']
4242
- export const isErrorType = (obj?: { __typename?: any } | null): obj is ErrorType => {
4243
- if (!obj?.__typename) throw new Error('__typename is missing in "isErrorType"')
4244
- return ErrorType_possibleTypes.includes(obj.__typename)
4245
- }
4246
-
4247
-
4248
-
4249
- const DeleteValuesResponse_possibleTypes: string[] = ['DeleteValuesResponse']
4250
- export const isDeleteValuesResponse = (obj?: { __typename?: any } | null): obj is DeleteValuesResponse => {
4251
- if (!obj?.__typename) throw new Error('__typename is missing in "isDeleteValuesResponse"')
4252
- return DeleteValuesResponse_possibleTypes.includes(obj.__typename)
4253
- }
4254
-
4255
-
4256
-
4257
- const DeleteSingleValueResponse_possibleTypes: string[] = ['DeleteSingleValueResponse']
4258
- export const isDeleteSingleValueResponse = (obj?: { __typename?: any } | null): obj is DeleteSingleValueResponse => {
4259
- if (!obj?.__typename) throw new Error('__typename is missing in "isDeleteSingleValueResponse"')
4260
- return DeleteSingleValueResponse_possibleTypes.includes(obj.__typename)
4261
- }
4262
-
4263
-
4264
-
4265
- const SortOrder_possibleTypes: string[] = ['SortOrder']
4266
- export const isSortOrder = (obj?: { __typename?: any } | null): obj is SortOrder => {
4267
- if (!obj?.__typename) throw new Error('__typename is missing in "isSortOrder"')
4268
- return SortOrder_possibleTypes.includes(obj.__typename)
4269
- }
4270
-
4271
-
4272
-
4273
- const CursorPaginationResponse_possibleTypes: string[] = ['CursorPaginationResponse']
4274
- export const isCursorPaginationResponse = (obj?: { __typename?: any } | null): obj is CursorPaginationResponse => {
4275
- if (!obj?.__typename) throw new Error('__typename is missing in "isCursorPaginationResponse"')
4276
- return CursorPaginationResponse_possibleTypes.includes(obj.__typename)
4277
- }
4278
-
4279
-
4280
-
4281
- const AthleteQueryResponse_possibleTypes: string[] = ['AthleteQueryResponse']
4282
- export const isAthleteQueryResponse = (obj?: { __typename?: any } | null): obj is AthleteQueryResponse => {
4283
- if (!obj?.__typename) throw new Error('__typename is missing in "isAthleteQueryResponse"')
4284
- return AthleteQueryResponse_possibleTypes.includes(obj.__typename)
4285
- }
4286
-
4287
-
4288
-
4289
- const EditPictureResponse_possibleTypes: string[] = ['EditPictureResponse']
4290
- export const isEditPictureResponse = (obj?: { __typename?: any } | null): obj is EditPictureResponse => {
4291
- if (!obj?.__typename) throw new Error('__typename is missing in "isEditPictureResponse"')
4292
- return EditPictureResponse_possibleTypes.includes(obj.__typename)
4293
- }
4294
-
4295
-
4296
-
4297
- const AddValuesResponse_possibleTypes: string[] = ['AddValuesResponse']
4298
- export const isAddValuesResponse = (obj?: { __typename?: any } | null): obj is AddValuesResponse => {
4299
- if (!obj?.__typename) throw new Error('__typename is missing in "isAddValuesResponse"')
4300
- return AddValuesResponse_possibleTypes.includes(obj.__typename)
4301
- }
4302
-
4303
-
4304
-
4305
- const ExistValueResponse_possibleTypes: string[] = ['ExistValueResponse']
4306
- export const isExistValueResponse = (obj?: { __typename?: any } | null): obj is ExistValueResponse => {
4307
- if (!obj?.__typename) throw new Error('__typename is missing in "isExistValueResponse"')
4308
- return ExistValueResponse_possibleTypes.includes(obj.__typename)
4309
- }
4310
-
4311
-
4312
-
4313
- const StripeObject_possibleTypes: string[] = ['StripeObject']
4314
- export const isStripeObject = (obj?: { __typename?: any } | null): obj is StripeObject => {
4315
- if (!obj?.__typename) throw new Error('__typename is missing in "isStripeObject"')
4316
- return StripeObject_possibleTypes.includes(obj.__typename)
4317
- }
4318
-
4319
-
4320
-
4321
- const UserImages_possibleTypes: string[] = ['UserImages']
4322
- export const isUserImages = (obj?: { __typename?: any } | null): obj is UserImages => {
4323
- if (!obj?.__typename) throw new Error('__typename is missing in "isUserImages"')
4324
- return UserImages_possibleTypes.includes(obj.__typename)
4325
- }
4326
-
4327
-
4328
-
4329
- const StripeTransfer_possibleTypes: string[] = ['StripeTransfer']
4330
- export const isStripeTransfer = (obj?: { __typename?: any } | null): obj is StripeTransfer => {
4331
- if (!obj?.__typename) throw new Error('__typename is missing in "isStripeTransfer"')
4332
- return StripeTransfer_possibleTypes.includes(obj.__typename)
4333
- }
4334
-
4335
-
4336
-
4337
- const Query_possibleTypes: string[] = ['Query']
4338
- export const isQuery = (obj?: { __typename?: any } | null): obj is Query => {
4339
- if (!obj?.__typename) throw new Error('__typename is missing in "isQuery"')
4340
- return Query_possibleTypes.includes(obj.__typename)
4341
- }
4342
-
4343
-
4344
-
4345
- const Mutation_possibleTypes: string[] = ['Mutation']
4346
- export const isMutation = (obj?: { __typename?: any } | null): obj is Mutation => {
4347
- if (!obj?.__typename) throw new Error('__typename is missing in "isMutation"')
4348
- return Mutation_possibleTypes.includes(obj.__typename)
4349
- }
4350
-
4351
-
4352
- export const enumStripeTransferStatus = {
4353
- not_applicable: 'not_applicable' as const,
4354
- pending: 'pending' as const,
4355
- failed: 'failed' as const,
4356
- completed: 'completed' as const
4357
- }
4358
-
4359
- export const enumDonationMode = {
4360
- PUBLIC: 'PUBLIC' as const,
4361
- PRIVATE: 'PRIVATE' as const,
4362
- ANONYMOUS: 'ANONYMOUS' as const
4363
- }