@vertikalx/vtx-backend-client 3.5.5-dev-ven.1 → 3.5.5-dev-ven.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/package.json +1 -1
- package/dist/src/client/schema.d.ts +15 -0
- package/dist/src/client/schema.js.map +1 -1
- package/dist/src/client/types.d.ts +10 -0
- package/dist/src/client/types.js +30 -0
- package/dist/src/client/types.js.map +1 -1
- package/dist/src/generated/graphql.d.ts +111 -0
- package/dist/src/generated/graphql.js +47 -0
- package/dist/src/generated/graphql.js.map +1 -1
- package/package.json +1 -1
|
@@ -506,11 +506,16 @@ export type AthleteCompetition = {
|
|
|
506
506
|
dismissedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
507
507
|
dismissedBy?: Maybe<Scalars['String']['output']>;
|
|
508
508
|
event: SportsEvent;
|
|
509
|
+
evidenceBike?: Maybe<Awss3File>;
|
|
510
|
+
evidenceRun?: Maybe<Awss3File>;
|
|
511
|
+
evidenceSwim?: Maybe<Awss3File>;
|
|
509
512
|
expectedAirTempC?: Maybe<Scalars['Float']['output']>;
|
|
510
513
|
expectedWaterTempC?: Maybe<Scalars['Float']['output']>;
|
|
511
514
|
expectedWindConditions?: Maybe<Scalars['String']['output']>;
|
|
512
515
|
fundRaisingCampaignIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
516
|
+
goal?: Maybe<Scalars['String']['output']>;
|
|
513
517
|
participationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
518
|
+
raceNotes?: Maybe<Scalars['String']['output']>;
|
|
514
519
|
result?: Maybe<AthleteCompetitionResult>;
|
|
515
520
|
};
|
|
516
521
|
export type AthleteCompetitionResult = {
|
|
@@ -1622,10 +1627,15 @@ export type EditAthleteCompetitionDto = {
|
|
|
1622
1627
|
competitionId: Scalars['String']['input'];
|
|
1623
1628
|
competitionNumber?: InputMaybe<Scalars['String']['input']>;
|
|
1624
1629
|
eventWebsite?: InputMaybe<Scalars['String']['input']>;
|
|
1630
|
+
evidenceBikeFileId?: InputMaybe<Scalars['String']['input']>;
|
|
1631
|
+
evidenceRunFileId?: InputMaybe<Scalars['String']['input']>;
|
|
1632
|
+
evidenceSwimFileId?: InputMaybe<Scalars['String']['input']>;
|
|
1625
1633
|
expectedAirTempC?: InputMaybe<Scalars['Float']['input']>;
|
|
1626
1634
|
expectedWaterTempC?: InputMaybe<Scalars['Float']['input']>;
|
|
1627
1635
|
expectedWindConditions?: InputMaybe<Scalars['String']['input']>;
|
|
1636
|
+
goal?: InputMaybe<Scalars['String']['input']>;
|
|
1628
1637
|
participationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1638
|
+
raceNotes?: InputMaybe<Scalars['String']['input']>;
|
|
1629
1639
|
};
|
|
1630
1640
|
export type EditCampaignBudgetDto = {
|
|
1631
1641
|
budget?: InputMaybe<BudgetDto>;
|
|
@@ -9081,6 +9091,8 @@ export type AddAthleteCompetitionMutation = {
|
|
|
9081
9091
|
actualAirTempC?: number | null;
|
|
9082
9092
|
actualWaterTempC?: number | null;
|
|
9083
9093
|
actualWindConditions?: string | null;
|
|
9094
|
+
goal?: string | null;
|
|
9095
|
+
raceNotes?: string | null;
|
|
9084
9096
|
event: {
|
|
9085
9097
|
_id: string;
|
|
9086
9098
|
name: string;
|
|
@@ -9139,6 +9151,33 @@ export type AddAthleteCompetitionMutation = {
|
|
|
9139
9151
|
resultWebLink?: string | null;
|
|
9140
9152
|
verificationTier?: CompetitionVerificationTier | null;
|
|
9141
9153
|
} | null;
|
|
9154
|
+
evidenceSwim?: {
|
|
9155
|
+
_id: string;
|
|
9156
|
+
name?: string | null;
|
|
9157
|
+
contentType?: string | null;
|
|
9158
|
+
size?: number | null;
|
|
9159
|
+
useType?: string | null;
|
|
9160
|
+
url: string;
|
|
9161
|
+
key: string;
|
|
9162
|
+
} | null;
|
|
9163
|
+
evidenceBike?: {
|
|
9164
|
+
_id: string;
|
|
9165
|
+
name?: string | null;
|
|
9166
|
+
contentType?: string | null;
|
|
9167
|
+
size?: number | null;
|
|
9168
|
+
useType?: string | null;
|
|
9169
|
+
url: string;
|
|
9170
|
+
key: string;
|
|
9171
|
+
} | null;
|
|
9172
|
+
evidenceRun?: {
|
|
9173
|
+
_id: string;
|
|
9174
|
+
name?: string | null;
|
|
9175
|
+
contentType?: string | null;
|
|
9176
|
+
size?: number | null;
|
|
9177
|
+
useType?: string | null;
|
|
9178
|
+
url: string;
|
|
9179
|
+
key: string;
|
|
9180
|
+
} | null;
|
|
9142
9181
|
};
|
|
9143
9182
|
};
|
|
9144
9183
|
export type EditAthleteCompetitionMutationVariables = Exact<{
|
|
@@ -9156,6 +9195,8 @@ export type EditAthleteCompetitionMutation = {
|
|
|
9156
9195
|
actualAirTempC?: number | null;
|
|
9157
9196
|
actualWaterTempC?: number | null;
|
|
9158
9197
|
actualWindConditions?: string | null;
|
|
9198
|
+
goal?: string | null;
|
|
9199
|
+
raceNotes?: string | null;
|
|
9159
9200
|
event: {
|
|
9160
9201
|
_id: string;
|
|
9161
9202
|
name: string;
|
|
@@ -9222,6 +9263,33 @@ export type EditAthleteCompetitionMutation = {
|
|
|
9222
9263
|
categoryName?: string | null;
|
|
9223
9264
|
verificationTier?: CompetitionVerificationTier | null;
|
|
9224
9265
|
} | null;
|
|
9266
|
+
evidenceSwim?: {
|
|
9267
|
+
_id: string;
|
|
9268
|
+
name?: string | null;
|
|
9269
|
+
contentType?: string | null;
|
|
9270
|
+
size?: number | null;
|
|
9271
|
+
useType?: string | null;
|
|
9272
|
+
url: string;
|
|
9273
|
+
key: string;
|
|
9274
|
+
} | null;
|
|
9275
|
+
evidenceBike?: {
|
|
9276
|
+
_id: string;
|
|
9277
|
+
name?: string | null;
|
|
9278
|
+
contentType?: string | null;
|
|
9279
|
+
size?: number | null;
|
|
9280
|
+
useType?: string | null;
|
|
9281
|
+
url: string;
|
|
9282
|
+
key: string;
|
|
9283
|
+
} | null;
|
|
9284
|
+
evidenceRun?: {
|
|
9285
|
+
_id: string;
|
|
9286
|
+
name?: string | null;
|
|
9287
|
+
contentType?: string | null;
|
|
9288
|
+
size?: number | null;
|
|
9289
|
+
useType?: string | null;
|
|
9290
|
+
url: string;
|
|
9291
|
+
key: string;
|
|
9292
|
+
} | null;
|
|
9225
9293
|
};
|
|
9226
9294
|
};
|
|
9227
9295
|
export type GetAthleteCompetitionsQueryVariables = Exact<{
|
|
@@ -9239,6 +9307,8 @@ export type GetAthleteCompetitionsQuery = {
|
|
|
9239
9307
|
actualAirTempC?: number | null;
|
|
9240
9308
|
actualWaterTempC?: number | null;
|
|
9241
9309
|
actualWindConditions?: string | null;
|
|
9310
|
+
goal?: string | null;
|
|
9311
|
+
raceNotes?: string | null;
|
|
9242
9312
|
event: {
|
|
9243
9313
|
_id: string;
|
|
9244
9314
|
name: string;
|
|
@@ -9311,6 +9381,33 @@ export type GetAthleteCompetitionsQuery = {
|
|
|
9311
9381
|
resultDataSource?: string | null;
|
|
9312
9382
|
discrepancyStatus?: DiscrepancyStatus | null;
|
|
9313
9383
|
} | null;
|
|
9384
|
+
evidenceSwim?: {
|
|
9385
|
+
_id: string;
|
|
9386
|
+
name?: string | null;
|
|
9387
|
+
contentType?: string | null;
|
|
9388
|
+
size?: number | null;
|
|
9389
|
+
useType?: string | null;
|
|
9390
|
+
url: string;
|
|
9391
|
+
key: string;
|
|
9392
|
+
} | null;
|
|
9393
|
+
evidenceBike?: {
|
|
9394
|
+
_id: string;
|
|
9395
|
+
name?: string | null;
|
|
9396
|
+
contentType?: string | null;
|
|
9397
|
+
size?: number | null;
|
|
9398
|
+
useType?: string | null;
|
|
9399
|
+
url: string;
|
|
9400
|
+
key: string;
|
|
9401
|
+
} | null;
|
|
9402
|
+
evidenceRun?: {
|
|
9403
|
+
_id: string;
|
|
9404
|
+
name?: string | null;
|
|
9405
|
+
contentType?: string | null;
|
|
9406
|
+
size?: number | null;
|
|
9407
|
+
useType?: string | null;
|
|
9408
|
+
url: string;
|
|
9409
|
+
key: string;
|
|
9410
|
+
} | null;
|
|
9314
9411
|
budget?: {
|
|
9315
9412
|
_id: string;
|
|
9316
9413
|
totalRequired: number;
|
|
@@ -14727,6 +14824,8 @@ export type IngestCompetitionResultMutation = {
|
|
|
14727
14824
|
actualAirTempC?: number | null;
|
|
14728
14825
|
actualWaterTempC?: number | null;
|
|
14729
14826
|
actualWindConditions?: string | null;
|
|
14827
|
+
goal?: string | null;
|
|
14828
|
+
raceNotes?: string | null;
|
|
14730
14829
|
event: {
|
|
14731
14830
|
_id: string;
|
|
14732
14831
|
name: string;
|
|
@@ -14740,6 +14839,18 @@ export type IngestCompetitionResultMutation = {
|
|
|
14740
14839
|
albums?: Array<{
|
|
14741
14840
|
_id: string;
|
|
14742
14841
|
}> | null;
|
|
14842
|
+
evidenceSwim?: {
|
|
14843
|
+
_id: string;
|
|
14844
|
+
name?: string | null;
|
|
14845
|
+
} | null;
|
|
14846
|
+
evidenceBike?: {
|
|
14847
|
+
_id: string;
|
|
14848
|
+
name?: string | null;
|
|
14849
|
+
} | null;
|
|
14850
|
+
evidenceRun?: {
|
|
14851
|
+
_id: string;
|
|
14852
|
+
name?: string | null;
|
|
14853
|
+
} | null;
|
|
14743
14854
|
};
|
|
14744
14855
|
};
|
|
14745
14856
|
export type DeleteAthleteMembershipAffilationMutationVariables = Exact<{
|
|
@@ -2248,6 +2248,17 @@ exports.AddAthleteCompetitionDocument = (0, graphql_tag_1.default) `
|
|
|
2248
2248
|
actualAirTempC
|
|
2249
2249
|
actualWaterTempC
|
|
2250
2250
|
actualWindConditions
|
|
2251
|
+
goal
|
|
2252
|
+
raceNotes
|
|
2253
|
+
evidenceSwim {
|
|
2254
|
+
...FileFields
|
|
2255
|
+
}
|
|
2256
|
+
evidenceBike {
|
|
2257
|
+
...FileFields
|
|
2258
|
+
}
|
|
2259
|
+
evidenceRun {
|
|
2260
|
+
...FileFields
|
|
2261
|
+
}
|
|
2251
2262
|
}
|
|
2252
2263
|
}
|
|
2253
2264
|
${exports.FileFieldsFragmentDoc}
|
|
@@ -2302,6 +2313,17 @@ exports.EditAthleteCompetitionDocument = (0, graphql_tag_1.default) `
|
|
|
2302
2313
|
actualAirTempC
|
|
2303
2314
|
actualWaterTempC
|
|
2304
2315
|
actualWindConditions
|
|
2316
|
+
goal
|
|
2317
|
+
raceNotes
|
|
2318
|
+
evidenceSwim {
|
|
2319
|
+
...FileFields
|
|
2320
|
+
}
|
|
2321
|
+
evidenceBike {
|
|
2322
|
+
...FileFields
|
|
2323
|
+
}
|
|
2324
|
+
evidenceRun {
|
|
2325
|
+
...FileFields
|
|
2326
|
+
}
|
|
2305
2327
|
}
|
|
2306
2328
|
}
|
|
2307
2329
|
${exports.FileFieldsFragmentDoc}
|
|
@@ -2362,6 +2384,17 @@ exports.GetAthleteCompetitionsDocument = (0, graphql_tag_1.default) `
|
|
|
2362
2384
|
actualAirTempC
|
|
2363
2385
|
actualWaterTempC
|
|
2364
2386
|
actualWindConditions
|
|
2387
|
+
goal
|
|
2388
|
+
raceNotes
|
|
2389
|
+
evidenceSwim {
|
|
2390
|
+
...FileFields
|
|
2391
|
+
}
|
|
2392
|
+
evidenceBike {
|
|
2393
|
+
...FileFields
|
|
2394
|
+
}
|
|
2395
|
+
evidenceRun {
|
|
2396
|
+
...FileFields
|
|
2397
|
+
}
|
|
2365
2398
|
budget {
|
|
2366
2399
|
_id
|
|
2367
2400
|
totalRequired
|
|
@@ -5472,6 +5505,20 @@ exports.IngestCompetitionResultDocument = (0, graphql_tag_1.default) `
|
|
|
5472
5505
|
actualAirTempC
|
|
5473
5506
|
actualWaterTempC
|
|
5474
5507
|
actualWindConditions
|
|
5508
|
+
goal
|
|
5509
|
+
raceNotes
|
|
5510
|
+
evidenceSwim {
|
|
5511
|
+
_id
|
|
5512
|
+
name
|
|
5513
|
+
}
|
|
5514
|
+
evidenceBike {
|
|
5515
|
+
_id
|
|
5516
|
+
name
|
|
5517
|
+
}
|
|
5518
|
+
evidenceRun {
|
|
5519
|
+
_id
|
|
5520
|
+
name
|
|
5521
|
+
}
|
|
5475
5522
|
}
|
|
5476
5523
|
}
|
|
5477
5524
|
`;
|