@vertikalx/vtx-backend-client 3.5.5-dev-ven.0 → 3.5.5-dev-ven.2
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>;
|
|
@@ -8872,6 +8882,8 @@ export type AddAthleteCompetitionMutation = {
|
|
|
8872
8882
|
actualAirTempC?: number | null;
|
|
8873
8883
|
actualWaterTempC?: number | null;
|
|
8874
8884
|
actualWindConditions?: string | null;
|
|
8885
|
+
goal?: string | null;
|
|
8886
|
+
raceNotes?: string | null;
|
|
8875
8887
|
event: {
|
|
8876
8888
|
_id: string;
|
|
8877
8889
|
name: string;
|
|
@@ -8930,6 +8942,33 @@ export type AddAthleteCompetitionMutation = {
|
|
|
8930
8942
|
resultWebLink?: string | null;
|
|
8931
8943
|
verificationTier?: CompetitionVerificationTier | null;
|
|
8932
8944
|
} | null;
|
|
8945
|
+
evidenceSwim?: {
|
|
8946
|
+
_id: string;
|
|
8947
|
+
name?: string | null;
|
|
8948
|
+
contentType?: string | null;
|
|
8949
|
+
size?: number | null;
|
|
8950
|
+
useType?: string | null;
|
|
8951
|
+
url: string;
|
|
8952
|
+
key: string;
|
|
8953
|
+
} | null;
|
|
8954
|
+
evidenceBike?: {
|
|
8955
|
+
_id: string;
|
|
8956
|
+
name?: string | null;
|
|
8957
|
+
contentType?: string | null;
|
|
8958
|
+
size?: number | null;
|
|
8959
|
+
useType?: string | null;
|
|
8960
|
+
url: string;
|
|
8961
|
+
key: string;
|
|
8962
|
+
} | null;
|
|
8963
|
+
evidenceRun?: {
|
|
8964
|
+
_id: string;
|
|
8965
|
+
name?: string | null;
|
|
8966
|
+
contentType?: string | null;
|
|
8967
|
+
size?: number | null;
|
|
8968
|
+
useType?: string | null;
|
|
8969
|
+
url: string;
|
|
8970
|
+
key: string;
|
|
8971
|
+
} | null;
|
|
8933
8972
|
};
|
|
8934
8973
|
};
|
|
8935
8974
|
export type EditAthleteCompetitionMutationVariables = Exact<{
|
|
@@ -8947,6 +8986,8 @@ export type EditAthleteCompetitionMutation = {
|
|
|
8947
8986
|
actualAirTempC?: number | null;
|
|
8948
8987
|
actualWaterTempC?: number | null;
|
|
8949
8988
|
actualWindConditions?: string | null;
|
|
8989
|
+
goal?: string | null;
|
|
8990
|
+
raceNotes?: string | null;
|
|
8950
8991
|
event: {
|
|
8951
8992
|
_id: string;
|
|
8952
8993
|
name: string;
|
|
@@ -9013,6 +9054,33 @@ export type EditAthleteCompetitionMutation = {
|
|
|
9013
9054
|
categoryName?: string | null;
|
|
9014
9055
|
verificationTier?: CompetitionVerificationTier | null;
|
|
9015
9056
|
} | null;
|
|
9057
|
+
evidenceSwim?: {
|
|
9058
|
+
_id: string;
|
|
9059
|
+
name?: string | null;
|
|
9060
|
+
contentType?: string | null;
|
|
9061
|
+
size?: number | null;
|
|
9062
|
+
useType?: string | null;
|
|
9063
|
+
url: string;
|
|
9064
|
+
key: string;
|
|
9065
|
+
} | null;
|
|
9066
|
+
evidenceBike?: {
|
|
9067
|
+
_id: string;
|
|
9068
|
+
name?: string | null;
|
|
9069
|
+
contentType?: string | null;
|
|
9070
|
+
size?: number | null;
|
|
9071
|
+
useType?: string | null;
|
|
9072
|
+
url: string;
|
|
9073
|
+
key: string;
|
|
9074
|
+
} | null;
|
|
9075
|
+
evidenceRun?: {
|
|
9076
|
+
_id: string;
|
|
9077
|
+
name?: string | null;
|
|
9078
|
+
contentType?: string | null;
|
|
9079
|
+
size?: number | null;
|
|
9080
|
+
useType?: string | null;
|
|
9081
|
+
url: string;
|
|
9082
|
+
key: string;
|
|
9083
|
+
} | null;
|
|
9016
9084
|
};
|
|
9017
9085
|
};
|
|
9018
9086
|
export type GetAthleteCompetitionsQueryVariables = Exact<{
|
|
@@ -9030,6 +9098,8 @@ export type GetAthleteCompetitionsQuery = {
|
|
|
9030
9098
|
actualAirTempC?: number | null;
|
|
9031
9099
|
actualWaterTempC?: number | null;
|
|
9032
9100
|
actualWindConditions?: string | null;
|
|
9101
|
+
goal?: string | null;
|
|
9102
|
+
raceNotes?: string | null;
|
|
9033
9103
|
event: {
|
|
9034
9104
|
_id: string;
|
|
9035
9105
|
name: string;
|
|
@@ -9102,6 +9172,33 @@ export type GetAthleteCompetitionsQuery = {
|
|
|
9102
9172
|
resultDataSource?: string | null;
|
|
9103
9173
|
discrepancyStatus?: DiscrepancyStatus | null;
|
|
9104
9174
|
} | null;
|
|
9175
|
+
evidenceSwim?: {
|
|
9176
|
+
_id: string;
|
|
9177
|
+
name?: string | null;
|
|
9178
|
+
contentType?: string | null;
|
|
9179
|
+
size?: number | null;
|
|
9180
|
+
useType?: string | null;
|
|
9181
|
+
url: string;
|
|
9182
|
+
key: string;
|
|
9183
|
+
} | null;
|
|
9184
|
+
evidenceBike?: {
|
|
9185
|
+
_id: string;
|
|
9186
|
+
name?: string | null;
|
|
9187
|
+
contentType?: string | null;
|
|
9188
|
+
size?: number | null;
|
|
9189
|
+
useType?: string | null;
|
|
9190
|
+
url: string;
|
|
9191
|
+
key: string;
|
|
9192
|
+
} | null;
|
|
9193
|
+
evidenceRun?: {
|
|
9194
|
+
_id: string;
|
|
9195
|
+
name?: string | null;
|
|
9196
|
+
contentType?: string | null;
|
|
9197
|
+
size?: number | null;
|
|
9198
|
+
useType?: string | null;
|
|
9199
|
+
url: string;
|
|
9200
|
+
key: string;
|
|
9201
|
+
} | null;
|
|
9105
9202
|
budget?: {
|
|
9106
9203
|
_id: string;
|
|
9107
9204
|
totalRequired: number;
|
|
@@ -14508,6 +14605,8 @@ export type IngestCompetitionResultMutation = {
|
|
|
14508
14605
|
actualAirTempC?: number | null;
|
|
14509
14606
|
actualWaterTempC?: number | null;
|
|
14510
14607
|
actualWindConditions?: string | null;
|
|
14608
|
+
goal?: string | null;
|
|
14609
|
+
raceNotes?: string | null;
|
|
14511
14610
|
event: {
|
|
14512
14611
|
_id: string;
|
|
14513
14612
|
name: string;
|
|
@@ -14521,6 +14620,18 @@ export type IngestCompetitionResultMutation = {
|
|
|
14521
14620
|
albums?: Array<{
|
|
14522
14621
|
_id: string;
|
|
14523
14622
|
}> | null;
|
|
14623
|
+
evidenceSwim?: {
|
|
14624
|
+
_id: string;
|
|
14625
|
+
name?: string | null;
|
|
14626
|
+
} | null;
|
|
14627
|
+
evidenceBike?: {
|
|
14628
|
+
_id: string;
|
|
14629
|
+
name?: string | null;
|
|
14630
|
+
} | null;
|
|
14631
|
+
evidenceRun?: {
|
|
14632
|
+
_id: string;
|
|
14633
|
+
name?: string | null;
|
|
14634
|
+
} | null;
|
|
14524
14635
|
};
|
|
14525
14636
|
};
|
|
14526
14637
|
export type DeleteAthleteMembershipAffilationMutationVariables = Exact<{
|
|
@@ -2240,6 +2240,17 @@ exports.AddAthleteCompetitionDocument = (0, graphql_tag_1.default) `
|
|
|
2240
2240
|
actualAirTempC
|
|
2241
2241
|
actualWaterTempC
|
|
2242
2242
|
actualWindConditions
|
|
2243
|
+
goal
|
|
2244
|
+
raceNotes
|
|
2245
|
+
evidenceSwim {
|
|
2246
|
+
...FileFields
|
|
2247
|
+
}
|
|
2248
|
+
evidenceBike {
|
|
2249
|
+
...FileFields
|
|
2250
|
+
}
|
|
2251
|
+
evidenceRun {
|
|
2252
|
+
...FileFields
|
|
2253
|
+
}
|
|
2243
2254
|
}
|
|
2244
2255
|
}
|
|
2245
2256
|
${exports.FileFieldsFragmentDoc}
|
|
@@ -2294,6 +2305,17 @@ exports.EditAthleteCompetitionDocument = (0, graphql_tag_1.default) `
|
|
|
2294
2305
|
actualAirTempC
|
|
2295
2306
|
actualWaterTempC
|
|
2296
2307
|
actualWindConditions
|
|
2308
|
+
goal
|
|
2309
|
+
raceNotes
|
|
2310
|
+
evidenceSwim {
|
|
2311
|
+
...FileFields
|
|
2312
|
+
}
|
|
2313
|
+
evidenceBike {
|
|
2314
|
+
...FileFields
|
|
2315
|
+
}
|
|
2316
|
+
evidenceRun {
|
|
2317
|
+
...FileFields
|
|
2318
|
+
}
|
|
2297
2319
|
}
|
|
2298
2320
|
}
|
|
2299
2321
|
${exports.FileFieldsFragmentDoc}
|
|
@@ -2354,6 +2376,17 @@ exports.GetAthleteCompetitionsDocument = (0, graphql_tag_1.default) `
|
|
|
2354
2376
|
actualAirTempC
|
|
2355
2377
|
actualWaterTempC
|
|
2356
2378
|
actualWindConditions
|
|
2379
|
+
goal
|
|
2380
|
+
raceNotes
|
|
2381
|
+
evidenceSwim {
|
|
2382
|
+
...FileFields
|
|
2383
|
+
}
|
|
2384
|
+
evidenceBike {
|
|
2385
|
+
...FileFields
|
|
2386
|
+
}
|
|
2387
|
+
evidenceRun {
|
|
2388
|
+
...FileFields
|
|
2389
|
+
}
|
|
2357
2390
|
budget {
|
|
2358
2391
|
_id
|
|
2359
2392
|
totalRequired
|
|
@@ -5455,6 +5488,20 @@ exports.IngestCompetitionResultDocument = (0, graphql_tag_1.default) `
|
|
|
5455
5488
|
actualAirTempC
|
|
5456
5489
|
actualWaterTempC
|
|
5457
5490
|
actualWindConditions
|
|
5491
|
+
goal
|
|
5492
|
+
raceNotes
|
|
5493
|
+
evidenceSwim {
|
|
5494
|
+
_id
|
|
5495
|
+
name
|
|
5496
|
+
}
|
|
5497
|
+
evidenceBike {
|
|
5498
|
+
_id
|
|
5499
|
+
name
|
|
5500
|
+
}
|
|
5501
|
+
evidenceRun {
|
|
5502
|
+
_id
|
|
5503
|
+
name
|
|
5504
|
+
}
|
|
5458
5505
|
}
|
|
5459
5506
|
}
|
|
5460
5507
|
`;
|