@vertikalx/vtx-backend-client 1.0.0-dev-daniel.220 → 1.0.0-dev-geo.39
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/libs/vtx-backend-client/package.json +16 -0
- package/libs/vtx-backend-client/src/api/api-call-headers.d.ts +16 -0
- package/libs/vtx-backend-client/src/api/api-call-headers.js +20 -0
- package/libs/vtx-backend-client/src/api/api-call-headers.js.map +1 -0
- package/libs/vtx-backend-client/src/api/backend-response.d.ts +10 -0
- package/libs/vtx-backend-client/src/api/backend-response.js +3 -0
- package/libs/vtx-backend-client/src/api/backend-response.js.map +1 -0
- package/libs/vtx-backend-client/src/api/domains.d.ts +3 -0
- package/libs/vtx-backend-client/src/api/domains.js +7 -0
- package/libs/vtx-backend-client/src/api/domains.js.map +1 -0
- package/libs/vtx-backend-client/src/api/response-builder.d.ts +4 -0
- package/libs/vtx-backend-client/src/api/response-builder.js +123 -0
- package/libs/vtx-backend-client/src/api/response-builder.js.map +1 -0
- package/libs/vtx-backend-client/src/api/types.d.ts +2 -0
- package/libs/vtx-backend-client/src/api/types.js +3 -0
- package/libs/vtx-backend-client/src/api/types.js.map +1 -0
- package/libs/vtx-backend-client/src/api/vtx-apikey-api.d.ts +6 -0
- package/libs/vtx-backend-client/src/api/vtx-apikey-api.js +19 -0
- package/libs/vtx-backend-client/src/api/vtx-apikey-api.js.map +1 -0
- package/libs/vtx-backend-client/src/api/vtx-base-api.d.ts +75 -0
- package/libs/vtx-backend-client/src/api/vtx-base-api.js +5195 -0
- package/libs/vtx-backend-client/src/api/vtx-base-api.js.map +1 -0
- package/libs/vtx-backend-client/src/api/vtx-mobile-api.d.ts +6 -0
- package/libs/vtx-backend-client/src/api/vtx-mobile-api.js +27 -0
- package/libs/vtx-backend-client/src/api/vtx-mobile-api.js.map +1 -0
- package/libs/vtx-backend-client/src/api/vtx-web-browser-api.d.ts +7 -0
- package/libs/vtx-backend-client/src/api/vtx-web-browser-api.js +36 -0
- package/libs/vtx-backend-client/src/api/vtx-web-browser-api.js.map +1 -0
- package/libs/vtx-backend-client/src/api/vtx-web-server-api.d.ts +7 -0
- package/libs/vtx-backend-client/src/api/vtx-web-server-api.js +33 -0
- package/libs/vtx-backend-client/src/api/vtx-web-server-api.js.map +1 -0
- package/libs/vtx-backend-client/src/client/index.d.ts +25 -0
- package/libs/vtx-backend-client/src/client/index.js +44 -0
- package/libs/vtx-backend-client/src/client/index.js.map +1 -0
- package/libs/vtx-backend-client/src/client/runtime/batcher.d.ts +36 -0
- package/libs/vtx-backend-client/src/client/runtime/batcher.js +123 -0
- package/libs/vtx-backend-client/src/client/runtime/batcher.js.map +1 -0
- package/libs/vtx-backend-client/src/client/runtime/createClient.d.ts +17 -0
- package/libs/vtx-backend-client/src/client/runtime/createClient.js +28 -0
- package/libs/vtx-backend-client/src/client/runtime/createClient.js.map +1 -0
- package/libs/vtx-backend-client/src/client/runtime/error.d.ts +15 -0
- package/libs/vtx-backend-client/src/client/runtime/error.js +19 -0
- package/libs/vtx-backend-client/src/client/runtime/error.js.map +1 -0
- package/libs/vtx-backend-client/src/client/runtime/fetcher.d.ts +10 -0
- package/libs/vtx-backend-client/src/client/runtime/fetcher.js +68 -0
- package/libs/vtx-backend-client/src/client/runtime/fetcher.js.map +1 -0
- package/libs/vtx-backend-client/src/client/runtime/generateGraphqlOperation.d.ts +30 -0
- package/libs/vtx-backend-client/src/client/runtime/generateGraphqlOperation.js +134 -0
- package/libs/vtx-backend-client/src/client/runtime/generateGraphqlOperation.js.map +1 -0
- package/libs/vtx-backend-client/src/client/runtime/index.d.ts +11 -0
- package/libs/vtx-backend-client/src/client/runtime/index.js +17 -0
- package/libs/vtx-backend-client/src/client/runtime/index.js.map +1 -0
- package/libs/vtx-backend-client/src/client/runtime/linkTypeMap.d.ts +9 -0
- package/libs/vtx-backend-client/src/client/runtime/linkTypeMap.js +95 -0
- package/libs/vtx-backend-client/src/client/runtime/linkTypeMap.js.map +1 -0
- package/libs/vtx-backend-client/src/client/runtime/typeSelection.d.ts +28 -0
- package/libs/vtx-backend-client/src/client/runtime/typeSelection.js +3 -0
- package/libs/vtx-backend-client/src/client/runtime/typeSelection.js.map +1 -0
- package/libs/vtx-backend-client/src/client/runtime/types.d.ts +55 -0
- package/libs/vtx-backend-client/src/client/runtime/types.js +3 -0
- package/libs/vtx-backend-client/src/client/runtime/types.js.map +1 -0
- package/libs/vtx-backend-client/src/client/schema.d.ts +2988 -0
- package/libs/vtx-backend-client/src/client/schema.js +656 -0
- package/libs/vtx-backend-client/src/client/schema.js.map +1 -0
- package/libs/vtx-backend-client/src/client/types.d.ts +1632 -0
- package/libs/vtx-backend-client/src/client/types.js +4235 -0
- package/libs/vtx-backend-client/src/client/types.js.map +1 -0
- package/libs/vtx-backend-client/src/index.d.ts +11 -0
- package/libs/vtx-backend-client/src/index.js +28 -0
- package/libs/vtx-backend-client/src/index.js.map +1 -0
- package/package.json +1 -1
- package/src/api/dto/edit-picture.dto.d.ts +5 -0
- package/src/api/dto/edit-picture.dto.js +31 -0
- package/src/api/dto/edit-picture.dto.js.map +1 -0
- package/src/api/response-builder.js +3 -2
- package/src/api/response-builder.js.map +1 -1
- package/src/api/types/add-values-response.type.d.ts +7 -0
- package/src/api/types/add-values-response.type.js +42 -0
- package/src/api/types/add-values-response.type.js.map +1 -0
- package/src/api/types/delete-single-value-response.type.d.ts +6 -0
- package/src/api/types/delete-single-value-response.type.js +36 -0
- package/src/api/types/delete-single-value-response.type.js.map +1 -0
- package/src/api/types/edit-picture-response.type.d.ts +7 -0
- package/src/api/types/edit-picture-response.type.js +39 -0
- package/src/api/types/edit-picture-response.type.js.map +1 -0
- package/src/api/types/error.type.d.ts +4 -0
- package/src/api/types/error.type.js +28 -0
- package/src/api/types/error.type.js.map +1 -0
- package/src/api/vtx-base-api.d.ts +8 -7
- package/src/api/vtx-base-api.js +449 -309
- package/src/api/vtx-base-api.js.map +1 -1
- package/src/client/runtime/generateGraphqlOperation.d.ts +1 -1
- package/src/client/schema.d.ts +70 -448
- package/src/client/schema.graphql +33 -237
- package/src/client/schema.js +14 -92
- package/src/client/schema.js.map +1 -1
- package/src/client/types.d.ts +42 -242
- package/src/client/types.js +387 -910
- package/src/client/types.js.map +1 -1
- package/tsconfig.lib.tsbuildinfo +1 -1
package/src/client/schema.d.ts
CHANGED
|
@@ -3,7 +3,6 @@ export type Scalars = {
|
|
|
3
3
|
Boolean: boolean;
|
|
4
4
|
DateTime: any;
|
|
5
5
|
Float: number;
|
|
6
|
-
JSONObject: any;
|
|
7
6
|
};
|
|
8
7
|
export interface User {
|
|
9
8
|
_id: Scalars['String'];
|
|
@@ -268,25 +267,6 @@ export interface AWSS3CallResult {
|
|
|
268
267
|
errors: (Scalars['String'][] | null);
|
|
269
268
|
__typename: 'AWSS3CallResult';
|
|
270
269
|
}
|
|
271
|
-
export interface DatabaseFile {
|
|
272
|
-
_id: Scalars['String'];
|
|
273
|
-
identifier: Scalars['String'];
|
|
274
|
-
version: Scalars['String'];
|
|
275
|
-
contentType: Scalars['String'];
|
|
276
|
-
updated: Scalars['DateTime'];
|
|
277
|
-
created: Scalars['DateTime'];
|
|
278
|
-
__typename: 'DatabaseFile';
|
|
279
|
-
}
|
|
280
|
-
export interface TextDatabaseFile {
|
|
281
|
-
_id: Scalars['String'];
|
|
282
|
-
identifier: Scalars['String'];
|
|
283
|
-
version: Scalars['String'];
|
|
284
|
-
contentType: Scalars['String'];
|
|
285
|
-
updated: Scalars['DateTime'];
|
|
286
|
-
created: Scalars['DateTime'];
|
|
287
|
-
content: Scalars['String'];
|
|
288
|
-
__typename: 'TextDatabaseFile';
|
|
289
|
-
}
|
|
290
270
|
export interface CodeVerificationResponse {
|
|
291
271
|
result: Scalars['String'];
|
|
292
272
|
code: (VerificationCode | null);
|
|
@@ -709,123 +689,6 @@ export interface FundRaisingCampaign {
|
|
|
709
689
|
competitions: (AthleteCompetition[] | null);
|
|
710
690
|
__typename: 'FundRaisingCampaign';
|
|
711
691
|
}
|
|
712
|
-
export interface StripeCapabilityType {
|
|
713
|
-
acss_debit_payments: (Scalars['String'] | null);
|
|
714
|
-
affirm_payments: (Scalars['String'] | null);
|
|
715
|
-
afterpay_clearpay_payments: (Scalars['String'] | null);
|
|
716
|
-
alma_payments: (Scalars['String'] | null);
|
|
717
|
-
amazon_pay_payments: (Scalars['String'] | null);
|
|
718
|
-
au_becs_debit_payments: (Scalars['String'] | null);
|
|
719
|
-
bacs_debit_payments: (Scalars['String'] | null);
|
|
720
|
-
bancontact_payments: (Scalars['String'] | null);
|
|
721
|
-
bank_transfer_payments: (Scalars['String'] | null);
|
|
722
|
-
blik_payments: (Scalars['String'] | null);
|
|
723
|
-
boleto_payments: (Scalars['String'] | null);
|
|
724
|
-
card_issuing: (Scalars['String'] | null);
|
|
725
|
-
card_payments: (Scalars['String'] | null);
|
|
726
|
-
cartes_bancaires_payments: (Scalars['String'] | null);
|
|
727
|
-
cashapp_payments: (Scalars['String'] | null);
|
|
728
|
-
eps_payments: (Scalars['String'] | null);
|
|
729
|
-
fpx_payments: (Scalars['String'] | null);
|
|
730
|
-
gb_bank_transfer_payments: (Scalars['String'] | null);
|
|
731
|
-
giropay_payments: (Scalars['String'] | null);
|
|
732
|
-
grabpay_payments: (Scalars['String'] | null);
|
|
733
|
-
ideal_payments: (Scalars['String'] | null);
|
|
734
|
-
india_international_payments: (Scalars['String'] | null);
|
|
735
|
-
jcb_payments: (Scalars['String'] | null);
|
|
736
|
-
jp_bank_transfer_payments: (Scalars['String'] | null);
|
|
737
|
-
kakao_pay_payments: (Scalars['String'] | null);
|
|
738
|
-
klarna_payments: (Scalars['String'] | null);
|
|
739
|
-
konbini_payments: (Scalars['String'] | null);
|
|
740
|
-
kr_card_payments: (Scalars['String'] | null);
|
|
741
|
-
legacy_payments: (Scalars['String'] | null);
|
|
742
|
-
link_payments: (Scalars['String'] | null);
|
|
743
|
-
mobilepay_payments: (Scalars['String'] | null);
|
|
744
|
-
multibanco_payments: (Scalars['String'] | null);
|
|
745
|
-
mx_bank_transfer_payments: (Scalars['String'] | null);
|
|
746
|
-
naver_pay_payments: (Scalars['String'] | null);
|
|
747
|
-
oxxo_payments: (Scalars['String'] | null);
|
|
748
|
-
p24_payments: (Scalars['String'] | null);
|
|
749
|
-
pay_by_bank_payments: (Scalars['String'] | null);
|
|
750
|
-
payco_payments: (Scalars['String'] | null);
|
|
751
|
-
paynow_payments: (Scalars['String'] | null);
|
|
752
|
-
promptpay_payments: (Scalars['String'] | null);
|
|
753
|
-
revolut_pay_payments: (Scalars['String'] | null);
|
|
754
|
-
samsung_pay_payments: (Scalars['String'] | null);
|
|
755
|
-
sepa_bank_transfer_payments: (Scalars['String'] | null);
|
|
756
|
-
sepa_debit_payments: (Scalars['String'] | null);
|
|
757
|
-
sofort_payments: (Scalars['String'] | null);
|
|
758
|
-
swish_payments: (Scalars['String'] | null);
|
|
759
|
-
tax_reporting_us_1099_k: (Scalars['String'] | null);
|
|
760
|
-
tax_reporting_us_1099_misc: (Scalars['String'] | null);
|
|
761
|
-
transfers: (Scalars['String'] | null);
|
|
762
|
-
treasury: (Scalars['String'] | null);
|
|
763
|
-
twint_payments: (Scalars['String'] | null);
|
|
764
|
-
us_bank_account_ach_payments: (Scalars['String'] | null);
|
|
765
|
-
us_bank_transfer_payments: (Scalars['String'] | null);
|
|
766
|
-
zip_payments: (Scalars['String'] | null);
|
|
767
|
-
__typename: 'StripeCapabilityType';
|
|
768
|
-
}
|
|
769
|
-
export interface StripeRequirementAlternativeType {
|
|
770
|
-
alternative_fields_due: Scalars['String'][];
|
|
771
|
-
original_fields_due: Scalars['String'][];
|
|
772
|
-
__typename: 'StripeRequirementAlternativeType';
|
|
773
|
-
}
|
|
774
|
-
export interface StripeFutureRequirementAlternativeType {
|
|
775
|
-
alternative_fields_due: Scalars['String'][];
|
|
776
|
-
original_fields_due: Scalars['String'][];
|
|
777
|
-
__typename: 'StripeFutureRequirementAlternativeType';
|
|
778
|
-
}
|
|
779
|
-
export interface StripeErrorType {
|
|
780
|
-
code: Scalars['String'];
|
|
781
|
-
reason: Scalars['String'];
|
|
782
|
-
requirement: Scalars['String'];
|
|
783
|
-
__typename: 'StripeErrorType';
|
|
784
|
-
}
|
|
785
|
-
export interface StripeRequirementType {
|
|
786
|
-
alternatives: (StripeRequirementAlternativeType[] | null);
|
|
787
|
-
current_deadline: (Scalars['DateTime'] | null);
|
|
788
|
-
currently_due: (Scalars['String'][] | null);
|
|
789
|
-
disabled_reason: (Scalars['String'] | null);
|
|
790
|
-
errors: (StripeErrorType[] | null);
|
|
791
|
-
eventually_due: (Scalars['String'][] | null);
|
|
792
|
-
past_due: (Scalars['String'][] | null);
|
|
793
|
-
pending_verification: (Scalars['String'][] | null);
|
|
794
|
-
__typename: 'StripeRequirementType';
|
|
795
|
-
}
|
|
796
|
-
export interface StripeFutureRequirementType {
|
|
797
|
-
alternatives: (StripeFutureRequirementAlternativeType[] | null);
|
|
798
|
-
current_deadline: (Scalars['DateTime'] | null);
|
|
799
|
-
currently_due: (Scalars['String'][] | null);
|
|
800
|
-
disabled_reason: (Scalars['String'] | null);
|
|
801
|
-
errors: (StripeErrorType[] | null);
|
|
802
|
-
eventually_due: (Scalars['String'][] | null);
|
|
803
|
-
past_due: (Scalars['String'][] | null);
|
|
804
|
-
pending_verification: (Scalars['String'][] | null);
|
|
805
|
-
__typename: 'StripeFutureRequirementType';
|
|
806
|
-
}
|
|
807
|
-
export interface StripeAccount {
|
|
808
|
-
id: Scalars['String'];
|
|
809
|
-
object: Scalars['String'];
|
|
810
|
-
business_type: (Scalars['String'] | null);
|
|
811
|
-
country: Scalars['String'];
|
|
812
|
-
email: (Scalars['String'] | null);
|
|
813
|
-
capabilities: (StripeCapabilityType | null);
|
|
814
|
-
requirements: (StripeRequirementType | null);
|
|
815
|
-
future_requirements: (StripeFutureRequirementType | null);
|
|
816
|
-
type: Scalars['String'];
|
|
817
|
-
charges_enabled: Scalars['Boolean'];
|
|
818
|
-
payouts_enabled: Scalars['Boolean'];
|
|
819
|
-
created: (Scalars['DateTime'] | null);
|
|
820
|
-
default_currency: (Scalars['String'] | null);
|
|
821
|
-
__typename: 'StripeAccount';
|
|
822
|
-
}
|
|
823
|
-
export interface StripeAccountReference {
|
|
824
|
-
_id: Scalars['String'];
|
|
825
|
-
stripeAccountId: Scalars['String'];
|
|
826
|
-
account: (StripeAccount | null);
|
|
827
|
-
__typename: 'StripeAccountReference';
|
|
828
|
-
}
|
|
829
692
|
export interface AthleteReference {
|
|
830
693
|
_id: Scalars['String'];
|
|
831
694
|
firstName: Scalars['String'];
|
|
@@ -883,7 +746,6 @@ export interface Athlete {
|
|
|
883
746
|
channels: (Channel[] | null);
|
|
884
747
|
currentCampaign: (FundRaisingCampaign | null);
|
|
885
748
|
fundingCampaigns: (FundRaisingCampaign[] | null);
|
|
886
|
-
stripeAccountReference: (StripeAccountReference | null);
|
|
887
749
|
__typename: 'Athlete';
|
|
888
750
|
}
|
|
889
751
|
export interface SponsorAthleteInvitation {
|
|
@@ -904,19 +766,6 @@ export interface StravaToken {
|
|
|
904
766
|
access_token: Scalars['String'];
|
|
905
767
|
__typename: 'StravaToken';
|
|
906
768
|
}
|
|
907
|
-
export interface StripeSession {
|
|
908
|
-
account: Scalars['String'];
|
|
909
|
-
client_secret: Scalars['String'];
|
|
910
|
-
expires_at: Scalars['Float'];
|
|
911
|
-
livemode: Scalars['Boolean'];
|
|
912
|
-
__typename: 'StripeSession';
|
|
913
|
-
}
|
|
914
|
-
export interface StripeCheckoutSession {
|
|
915
|
-
client_secret: Scalars['String'];
|
|
916
|
-
expires_at: Scalars['Float'];
|
|
917
|
-
livemode: Scalars['Boolean'];
|
|
918
|
-
__typename: 'StripeCheckoutSession';
|
|
919
|
-
}
|
|
920
769
|
export interface EditValueResponse {
|
|
921
770
|
field: Scalars['String'];
|
|
922
771
|
oldValue: (Scalars['String'] | null);
|
|
@@ -956,10 +805,19 @@ export interface AthleteQueryResponse {
|
|
|
956
805
|
cursor: CursorPaginationResponse;
|
|
957
806
|
__typename: 'AthleteQueryResponse';
|
|
958
807
|
}
|
|
959
|
-
export interface
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
808
|
+
export interface EditPictureResponse {
|
|
809
|
+
field: Scalars['String'];
|
|
810
|
+
oldValue: (AWSS3File | null);
|
|
811
|
+
newValue: (AWSS3File | null);
|
|
812
|
+
changed: Scalars['Boolean'];
|
|
813
|
+
__typename: 'EditPictureResponse';
|
|
814
|
+
}
|
|
815
|
+
export interface AddValuesResponse {
|
|
816
|
+
added: Scalars['String'][];
|
|
817
|
+
failedToAdd: (Scalars['String'][] | null);
|
|
818
|
+
failureReason: (ErrorType[] | null);
|
|
819
|
+
result: Scalars['String'];
|
|
820
|
+
__typename: 'AddValuesResponse';
|
|
963
821
|
}
|
|
964
822
|
export interface UserImages {
|
|
965
823
|
profilePictureUrl: (Scalars['String'] | null);
|
|
@@ -1000,6 +858,7 @@ export interface Query {
|
|
|
1000
858
|
getSponsorAthletesForTenant: Athlete[];
|
|
1001
859
|
getAthleteCompetitions: AthleteCompetition[];
|
|
1002
860
|
getAthleteMemberships: AthleteMembership[];
|
|
861
|
+
findAthletebyIdpublic: Athlete;
|
|
1003
862
|
getSports: Sport[];
|
|
1004
863
|
findSportById: Sport;
|
|
1005
864
|
getSportLevels: SportLevel[];
|
|
@@ -1016,8 +875,6 @@ export interface Query {
|
|
|
1016
875
|
getStravaLoginUrl: Scalars['String'];
|
|
1017
876
|
getSportsEvents: SportsEvent[];
|
|
1018
877
|
getMembershipOrganizations: MembershipOrganizationReference[];
|
|
1019
|
-
stripeQuery: StripeObject;
|
|
1020
|
-
getDatabaseTextFile: TextDatabaseFile;
|
|
1021
878
|
__typename: 'Query';
|
|
1022
879
|
}
|
|
1023
880
|
export interface Mutation {
|
|
@@ -1038,6 +895,9 @@ export interface Mutation {
|
|
|
1038
895
|
sendAthleteInvitations: SponsorAthleteInvitation[];
|
|
1039
896
|
registerAthlete: Athlete;
|
|
1040
897
|
editProfileValue: EditValueResponse;
|
|
898
|
+
editPicture: EditPictureResponse;
|
|
899
|
+
AddAlbumPictures: AddValuesResponse;
|
|
900
|
+
DeletePictureBuket: DeleteSingleValueResponse;
|
|
1041
901
|
addAthleteCompetition: AthleteCompetition;
|
|
1042
902
|
deleteAthleteCompetition: DeleteSingleValueResponse;
|
|
1043
903
|
createSport: Sport;
|
|
@@ -1060,9 +920,6 @@ export interface Mutation {
|
|
|
1060
920
|
createMembershipOrganization: MembershipOrganizationReference;
|
|
1061
921
|
createAthleteMembershipAffilation: AthleteMembership;
|
|
1062
922
|
deleteAthleteMembershipAffilation: DeleteSingleValueResponse;
|
|
1063
|
-
createStripeAccount: StripeAccountReference;
|
|
1064
|
-
createAthleteStripeSession: StripeSession;
|
|
1065
|
-
createStripeCheckoutSession: StripeCheckoutSession;
|
|
1066
923
|
__typename: 'Mutation';
|
|
1067
924
|
}
|
|
1068
925
|
export interface UserGenqlSelection {
|
|
@@ -1357,27 +1214,6 @@ export interface AWSS3CallResultGenqlSelection {
|
|
|
1357
1214
|
__typename?: boolean | number;
|
|
1358
1215
|
__scalar?: boolean | number;
|
|
1359
1216
|
}
|
|
1360
|
-
export interface DatabaseFileGenqlSelection {
|
|
1361
|
-
_id?: boolean | number;
|
|
1362
|
-
identifier?: boolean | number;
|
|
1363
|
-
version?: boolean | number;
|
|
1364
|
-
contentType?: boolean | number;
|
|
1365
|
-
updated?: boolean | number;
|
|
1366
|
-
created?: boolean | number;
|
|
1367
|
-
__typename?: boolean | number;
|
|
1368
|
-
__scalar?: boolean | number;
|
|
1369
|
-
}
|
|
1370
|
-
export interface TextDatabaseFileGenqlSelection {
|
|
1371
|
-
_id?: boolean | number;
|
|
1372
|
-
identifier?: boolean | number;
|
|
1373
|
-
version?: boolean | number;
|
|
1374
|
-
contentType?: boolean | number;
|
|
1375
|
-
updated?: boolean | number;
|
|
1376
|
-
created?: boolean | number;
|
|
1377
|
-
content?: boolean | number;
|
|
1378
|
-
__typename?: boolean | number;
|
|
1379
|
-
__scalar?: boolean | number;
|
|
1380
|
-
}
|
|
1381
1217
|
export interface CodeVerificationResponseGenqlSelection {
|
|
1382
1218
|
result?: boolean | number;
|
|
1383
1219
|
code?: VerificationCodeGenqlSelection;
|
|
@@ -1855,131 +1691,6 @@ export interface FundRaisingCampaignGenqlSelection {
|
|
|
1855
1691
|
__typename?: boolean | number;
|
|
1856
1692
|
__scalar?: boolean | number;
|
|
1857
1693
|
}
|
|
1858
|
-
export interface StripeCapabilityTypeGenqlSelection {
|
|
1859
|
-
acss_debit_payments?: boolean | number;
|
|
1860
|
-
affirm_payments?: boolean | number;
|
|
1861
|
-
afterpay_clearpay_payments?: boolean | number;
|
|
1862
|
-
alma_payments?: boolean | number;
|
|
1863
|
-
amazon_pay_payments?: boolean | number;
|
|
1864
|
-
au_becs_debit_payments?: boolean | number;
|
|
1865
|
-
bacs_debit_payments?: boolean | number;
|
|
1866
|
-
bancontact_payments?: boolean | number;
|
|
1867
|
-
bank_transfer_payments?: boolean | number;
|
|
1868
|
-
blik_payments?: boolean | number;
|
|
1869
|
-
boleto_payments?: boolean | number;
|
|
1870
|
-
card_issuing?: boolean | number;
|
|
1871
|
-
card_payments?: boolean | number;
|
|
1872
|
-
cartes_bancaires_payments?: boolean | number;
|
|
1873
|
-
cashapp_payments?: boolean | number;
|
|
1874
|
-
eps_payments?: boolean | number;
|
|
1875
|
-
fpx_payments?: boolean | number;
|
|
1876
|
-
gb_bank_transfer_payments?: boolean | number;
|
|
1877
|
-
giropay_payments?: boolean | number;
|
|
1878
|
-
grabpay_payments?: boolean | number;
|
|
1879
|
-
ideal_payments?: boolean | number;
|
|
1880
|
-
india_international_payments?: boolean | number;
|
|
1881
|
-
jcb_payments?: boolean | number;
|
|
1882
|
-
jp_bank_transfer_payments?: boolean | number;
|
|
1883
|
-
kakao_pay_payments?: boolean | number;
|
|
1884
|
-
klarna_payments?: boolean | number;
|
|
1885
|
-
konbini_payments?: boolean | number;
|
|
1886
|
-
kr_card_payments?: boolean | number;
|
|
1887
|
-
legacy_payments?: boolean | number;
|
|
1888
|
-
link_payments?: boolean | number;
|
|
1889
|
-
mobilepay_payments?: boolean | number;
|
|
1890
|
-
multibanco_payments?: boolean | number;
|
|
1891
|
-
mx_bank_transfer_payments?: boolean | number;
|
|
1892
|
-
naver_pay_payments?: boolean | number;
|
|
1893
|
-
oxxo_payments?: boolean | number;
|
|
1894
|
-
p24_payments?: boolean | number;
|
|
1895
|
-
pay_by_bank_payments?: boolean | number;
|
|
1896
|
-
payco_payments?: boolean | number;
|
|
1897
|
-
paynow_payments?: boolean | number;
|
|
1898
|
-
promptpay_payments?: boolean | number;
|
|
1899
|
-
revolut_pay_payments?: boolean | number;
|
|
1900
|
-
samsung_pay_payments?: boolean | number;
|
|
1901
|
-
sepa_bank_transfer_payments?: boolean | number;
|
|
1902
|
-
sepa_debit_payments?: boolean | number;
|
|
1903
|
-
sofort_payments?: boolean | number;
|
|
1904
|
-
swish_payments?: boolean | number;
|
|
1905
|
-
tax_reporting_us_1099_k?: boolean | number;
|
|
1906
|
-
tax_reporting_us_1099_misc?: boolean | number;
|
|
1907
|
-
transfers?: boolean | number;
|
|
1908
|
-
treasury?: boolean | number;
|
|
1909
|
-
twint_payments?: boolean | number;
|
|
1910
|
-
us_bank_account_ach_payments?: boolean | number;
|
|
1911
|
-
us_bank_transfer_payments?: boolean | number;
|
|
1912
|
-
zip_payments?: boolean | number;
|
|
1913
|
-
__typename?: boolean | number;
|
|
1914
|
-
__scalar?: boolean | number;
|
|
1915
|
-
}
|
|
1916
|
-
export interface StripeRequirementAlternativeTypeGenqlSelection {
|
|
1917
|
-
alternative_fields_due?: boolean | number;
|
|
1918
|
-
original_fields_due?: boolean | number;
|
|
1919
|
-
__typename?: boolean | number;
|
|
1920
|
-
__scalar?: boolean | number;
|
|
1921
|
-
}
|
|
1922
|
-
export interface StripeFutureRequirementAlternativeTypeGenqlSelection {
|
|
1923
|
-
alternative_fields_due?: boolean | number;
|
|
1924
|
-
original_fields_due?: boolean | number;
|
|
1925
|
-
__typename?: boolean | number;
|
|
1926
|
-
__scalar?: boolean | number;
|
|
1927
|
-
}
|
|
1928
|
-
export interface StripeErrorTypeGenqlSelection {
|
|
1929
|
-
code?: boolean | number;
|
|
1930
|
-
reason?: boolean | number;
|
|
1931
|
-
requirement?: boolean | number;
|
|
1932
|
-
__typename?: boolean | number;
|
|
1933
|
-
__scalar?: boolean | number;
|
|
1934
|
-
}
|
|
1935
|
-
export interface StripeRequirementTypeGenqlSelection {
|
|
1936
|
-
alternatives?: StripeRequirementAlternativeTypeGenqlSelection;
|
|
1937
|
-
current_deadline?: boolean | number;
|
|
1938
|
-
currently_due?: boolean | number;
|
|
1939
|
-
disabled_reason?: boolean | number;
|
|
1940
|
-
errors?: StripeErrorTypeGenqlSelection;
|
|
1941
|
-
eventually_due?: boolean | number;
|
|
1942
|
-
past_due?: boolean | number;
|
|
1943
|
-
pending_verification?: boolean | number;
|
|
1944
|
-
__typename?: boolean | number;
|
|
1945
|
-
__scalar?: boolean | number;
|
|
1946
|
-
}
|
|
1947
|
-
export interface StripeFutureRequirementTypeGenqlSelection {
|
|
1948
|
-
alternatives?: StripeFutureRequirementAlternativeTypeGenqlSelection;
|
|
1949
|
-
current_deadline?: boolean | number;
|
|
1950
|
-
currently_due?: boolean | number;
|
|
1951
|
-
disabled_reason?: boolean | number;
|
|
1952
|
-
errors?: StripeErrorTypeGenqlSelection;
|
|
1953
|
-
eventually_due?: boolean | number;
|
|
1954
|
-
past_due?: boolean | number;
|
|
1955
|
-
pending_verification?: boolean | number;
|
|
1956
|
-
__typename?: boolean | number;
|
|
1957
|
-
__scalar?: boolean | number;
|
|
1958
|
-
}
|
|
1959
|
-
export interface StripeAccountGenqlSelection {
|
|
1960
|
-
id?: boolean | number;
|
|
1961
|
-
object?: boolean | number;
|
|
1962
|
-
business_type?: boolean | number;
|
|
1963
|
-
country?: boolean | number;
|
|
1964
|
-
email?: boolean | number;
|
|
1965
|
-
capabilities?: StripeCapabilityTypeGenqlSelection;
|
|
1966
|
-
requirements?: StripeRequirementTypeGenqlSelection;
|
|
1967
|
-
future_requirements?: StripeFutureRequirementTypeGenqlSelection;
|
|
1968
|
-
type?: boolean | number;
|
|
1969
|
-
charges_enabled?: boolean | number;
|
|
1970
|
-
payouts_enabled?: boolean | number;
|
|
1971
|
-
created?: boolean | number;
|
|
1972
|
-
default_currency?: boolean | number;
|
|
1973
|
-
__typename?: boolean | number;
|
|
1974
|
-
__scalar?: boolean | number;
|
|
1975
|
-
}
|
|
1976
|
-
export interface StripeAccountReferenceGenqlSelection {
|
|
1977
|
-
_id?: boolean | number;
|
|
1978
|
-
stripeAccountId?: boolean | number;
|
|
1979
|
-
account?: StripeAccountGenqlSelection;
|
|
1980
|
-
__typename?: boolean | number;
|
|
1981
|
-
__scalar?: boolean | number;
|
|
1982
|
-
}
|
|
1983
1694
|
export interface AthleteReferenceGenqlSelection {
|
|
1984
1695
|
_id?: boolean | number;
|
|
1985
1696
|
firstName?: boolean | number;
|
|
@@ -2038,7 +1749,6 @@ export interface AthleteGenqlSelection {
|
|
|
2038
1749
|
channels?: ChannelGenqlSelection;
|
|
2039
1750
|
currentCampaign?: FundRaisingCampaignGenqlSelection;
|
|
2040
1751
|
fundingCampaigns?: FundRaisingCampaignGenqlSelection;
|
|
2041
|
-
stripeAccountReference?: StripeAccountReferenceGenqlSelection;
|
|
2042
1752
|
__typename?: boolean | number;
|
|
2043
1753
|
__scalar?: boolean | number;
|
|
2044
1754
|
}
|
|
@@ -2062,21 +1772,6 @@ export interface StravaTokenGenqlSelection {
|
|
|
2062
1772
|
__typename?: boolean | number;
|
|
2063
1773
|
__scalar?: boolean | number;
|
|
2064
1774
|
}
|
|
2065
|
-
export interface StripeSessionGenqlSelection {
|
|
2066
|
-
account?: boolean | number;
|
|
2067
|
-
client_secret?: boolean | number;
|
|
2068
|
-
expires_at?: boolean | number;
|
|
2069
|
-
livemode?: boolean | number;
|
|
2070
|
-
__typename?: boolean | number;
|
|
2071
|
-
__scalar?: boolean | number;
|
|
2072
|
-
}
|
|
2073
|
-
export interface StripeCheckoutSessionGenqlSelection {
|
|
2074
|
-
client_secret?: boolean | number;
|
|
2075
|
-
expires_at?: boolean | number;
|
|
2076
|
-
livemode?: boolean | number;
|
|
2077
|
-
__typename?: boolean | number;
|
|
2078
|
-
__scalar?: boolean | number;
|
|
2079
|
-
}
|
|
2080
1775
|
export interface EditValueResponseGenqlSelection {
|
|
2081
1776
|
field?: boolean | number;
|
|
2082
1777
|
oldValue?: boolean | number;
|
|
@@ -2122,9 +1817,19 @@ export interface AthleteQueryResponseGenqlSelection {
|
|
|
2122
1817
|
__typename?: boolean | number;
|
|
2123
1818
|
__scalar?: boolean | number;
|
|
2124
1819
|
}
|
|
2125
|
-
export interface
|
|
2126
|
-
|
|
2127
|
-
|
|
1820
|
+
export interface EditPictureResponseGenqlSelection {
|
|
1821
|
+
field?: boolean | number;
|
|
1822
|
+
oldValue?: AWSS3FileGenqlSelection;
|
|
1823
|
+
newValue?: AWSS3FileGenqlSelection;
|
|
1824
|
+
changed?: boolean | number;
|
|
1825
|
+
__typename?: boolean | number;
|
|
1826
|
+
__scalar?: boolean | number;
|
|
1827
|
+
}
|
|
1828
|
+
export interface AddValuesResponseGenqlSelection {
|
|
1829
|
+
added?: boolean | number;
|
|
1830
|
+
failedToAdd?: boolean | number;
|
|
1831
|
+
failureReason?: ErrorTypeGenqlSelection;
|
|
1832
|
+
result?: boolean | number;
|
|
2128
1833
|
__typename?: boolean | number;
|
|
2129
1834
|
__scalar?: boolean | number;
|
|
2130
1835
|
}
|
|
@@ -2143,43 +1848,6 @@ export interface DeleteValuesResponseGenqlSelection {
|
|
|
2143
1848
|
__typename?: boolean | number;
|
|
2144
1849
|
__scalar?: boolean | number;
|
|
2145
1850
|
}
|
|
2146
|
-
export interface CreateDatabaseFileDto {
|
|
2147
|
-
identifier: Scalars['String'];
|
|
2148
|
-
version?: Scalars['String'];
|
|
2149
|
-
contentType: Scalars['String'];
|
|
2150
|
-
}
|
|
2151
|
-
export interface CreateTextDatabaseFileDto {
|
|
2152
|
-
identifier: Scalars['String'];
|
|
2153
|
-
version?: Scalars['String'];
|
|
2154
|
-
contentType: Scalars['String'];
|
|
2155
|
-
content?: Scalars['String'];
|
|
2156
|
-
}
|
|
2157
|
-
export interface UpdateDatabaseFileDto {
|
|
2158
|
-
_id: Scalars['String'];
|
|
2159
|
-
identifier?: (Scalars['String'] | null);
|
|
2160
|
-
version?: (Scalars['String'] | null);
|
|
2161
|
-
contentType?: (Scalars['String'] | null);
|
|
2162
|
-
}
|
|
2163
|
-
export interface UpdateTextDatabaseFileDto {
|
|
2164
|
-
_id: Scalars['String'];
|
|
2165
|
-
identifier?: (Scalars['String'] | null);
|
|
2166
|
-
version?: (Scalars['String'] | null);
|
|
2167
|
-
contentType?: (Scalars['String'] | null);
|
|
2168
|
-
content?: (Scalars['String'] | null);
|
|
2169
|
-
}
|
|
2170
|
-
export interface CloneDatabaseFileDto {
|
|
2171
|
-
_id: Scalars['String'];
|
|
2172
|
-
version?: (Scalars['String'] | null);
|
|
2173
|
-
}
|
|
2174
|
-
export interface FindDatabaseFilesDto {
|
|
2175
|
-
_id?: (Scalars['String'] | null);
|
|
2176
|
-
identifier?: (Scalars['String'] | null);
|
|
2177
|
-
version?: (Scalars['String'] | null);
|
|
2178
|
-
}
|
|
2179
|
-
export interface GetDatabaseFileDto {
|
|
2180
|
-
identifier: Scalars['String'];
|
|
2181
|
-
version: Scalars['String'];
|
|
2182
|
-
}
|
|
2183
1851
|
export interface CreateVerificationCodeDto {
|
|
2184
1852
|
type?: (Scalars['String'] | null);
|
|
2185
1853
|
recipient?: (Scalars['String'] | null);
|
|
@@ -2291,6 +1959,17 @@ export interface AthleteQueryDto {
|
|
|
2291
1959
|
cursor?: (CursorPaginationDto | null);
|
|
2292
1960
|
filters?: (AthleteFilterDto | null);
|
|
2293
1961
|
}
|
|
1962
|
+
export interface UploadAlbumsPicturesDto {
|
|
1963
|
+
label: Scalars['String'];
|
|
1964
|
+
pictures?: (AWSS3UploadedFileDto[] | null);
|
|
1965
|
+
}
|
|
1966
|
+
export interface AWSS3UploadedFileDto {
|
|
1967
|
+
key: Scalars['String'];
|
|
1968
|
+
useType: Scalars['String'];
|
|
1969
|
+
contentType: Scalars['String'];
|
|
1970
|
+
originalFileName?: (Scalars['String'] | null);
|
|
1971
|
+
fileSize?: (Scalars['Float'] | null);
|
|
1972
|
+
}
|
|
2294
1973
|
export interface QualificationDto {
|
|
2295
1974
|
type: Scalars['String'];
|
|
2296
1975
|
}
|
|
@@ -2404,35 +2083,13 @@ export interface CreateMembershipOrganizationDto {
|
|
|
2404
2083
|
countryId?: (Scalars['String'] | null);
|
|
2405
2084
|
sportId?: (Scalars['String'] | null);
|
|
2406
2085
|
}
|
|
2407
|
-
export interface AWSS3UploadedFileDto {
|
|
2408
|
-
key: Scalars['String'];
|
|
2409
|
-
useType: Scalars['String'];
|
|
2410
|
-
contentType: Scalars['String'];
|
|
2411
|
-
originalFileName?: (Scalars['String'] | null);
|
|
2412
|
-
fileSize?: (Scalars['Float'] | null);
|
|
2413
|
-
}
|
|
2414
2086
|
export interface CreateAthleteMembershipDto {
|
|
2415
2087
|
organizationId: Scalars['String'];
|
|
2416
|
-
athleteId: Scalars['String'];
|
|
2417
2088
|
membershipNumber?: (Scalars['String'] | null);
|
|
2418
2089
|
membershipType?: (Scalars['String'] | null);
|
|
2419
2090
|
issueDate?: (Scalars['DateTime'] | null);
|
|
2420
2091
|
expirationDate?: (Scalars['DateTime'] | null);
|
|
2421
2092
|
}
|
|
2422
|
-
export interface DonationCheckoutDto {
|
|
2423
|
-
fundingCampaignId: Scalars['String'];
|
|
2424
|
-
donationAmount: Scalars['Float'];
|
|
2425
|
-
mode?: Scalars['String'];
|
|
2426
|
-
fromName?: (Scalars['String'] | null);
|
|
2427
|
-
fromEmail?: (Scalars['String'] | null);
|
|
2428
|
-
fromPhone?: (Scalars['String'] | null);
|
|
2429
|
-
message?: (Scalars['String'] | null);
|
|
2430
|
-
}
|
|
2431
|
-
export interface StripeQueryDto {
|
|
2432
|
-
operation: Scalars['String'];
|
|
2433
|
-
id: Scalars['String'];
|
|
2434
|
-
params?: (Scalars['String'] | null);
|
|
2435
|
-
}
|
|
2436
2093
|
export interface QueryGenqlSelection {
|
|
2437
2094
|
findTenantById?: (TenantGenqlSelection & {
|
|
2438
2095
|
__args: {
|
|
@@ -2539,6 +2196,11 @@ export interface QueryGenqlSelection {
|
|
|
2539
2196
|
athleteId: Scalars['String'];
|
|
2540
2197
|
};
|
|
2541
2198
|
});
|
|
2199
|
+
findAthletebyIdpublic?: (AthleteGenqlSelection & {
|
|
2200
|
+
__args: {
|
|
2201
|
+
athleteId: Scalars['String'];
|
|
2202
|
+
};
|
|
2203
|
+
});
|
|
2542
2204
|
getSports?: SportGenqlSelection;
|
|
2543
2205
|
findSportById?: (SportGenqlSelection & {
|
|
2544
2206
|
__args: {
|
|
@@ -2592,16 +2254,6 @@ export interface QueryGenqlSelection {
|
|
|
2592
2254
|
};
|
|
2593
2255
|
});
|
|
2594
2256
|
getMembershipOrganizations?: MembershipOrganizationReferenceGenqlSelection;
|
|
2595
|
-
stripeQuery?: (StripeObjectGenqlSelection & {
|
|
2596
|
-
__args: {
|
|
2597
|
-
input: StripeQueryDto;
|
|
2598
|
-
};
|
|
2599
|
-
});
|
|
2600
|
-
getDatabaseTextFile?: (TextDatabaseFileGenqlSelection & {
|
|
2601
|
-
__args: {
|
|
2602
|
-
input: GetDatabaseFileDto;
|
|
2603
|
-
};
|
|
2604
|
-
});
|
|
2605
2257
|
__typename?: boolean | number;
|
|
2606
2258
|
__scalar?: boolean | number;
|
|
2607
2259
|
}
|
|
@@ -2712,6 +2364,21 @@ export interface MutationGenqlSelection {
|
|
|
2712
2364
|
input: EditValueDto;
|
|
2713
2365
|
};
|
|
2714
2366
|
});
|
|
2367
|
+
editPicture?: (EditPictureResponseGenqlSelection & {
|
|
2368
|
+
__args: {
|
|
2369
|
+
input: EditPictureDto;
|
|
2370
|
+
};
|
|
2371
|
+
});
|
|
2372
|
+
AddAlbumPictures?: (AddValuesResponseGenqlSelection & {
|
|
2373
|
+
__args: {
|
|
2374
|
+
input: UploadAlbumsPicturesDto;
|
|
2375
|
+
};
|
|
2376
|
+
});
|
|
2377
|
+
DeletePictureBuket?: (DeleteSingleValueResponseGenqlSelection & {
|
|
2378
|
+
__args: {
|
|
2379
|
+
input: AWSS3DeleteUseTypeFileDto;
|
|
2380
|
+
};
|
|
2381
|
+
});
|
|
2715
2382
|
addAthleteCompetition?: (AthleteCompetitionGenqlSelection & {
|
|
2716
2383
|
__args: {
|
|
2717
2384
|
input: CreateAthleteCompetitionDto;
|
|
@@ -2823,17 +2490,6 @@ export interface MutationGenqlSelection {
|
|
|
2823
2490
|
input: DeleteSingleValueDto;
|
|
2824
2491
|
};
|
|
2825
2492
|
});
|
|
2826
|
-
createStripeAccount?: (StripeAccountReferenceGenqlSelection & {
|
|
2827
|
-
__args: {
|
|
2828
|
-
input: CreateStripeAccountDto;
|
|
2829
|
-
};
|
|
2830
|
-
});
|
|
2831
|
-
createAthleteStripeSession?: StripeSessionGenqlSelection;
|
|
2832
|
-
createStripeCheckoutSession?: (StripeCheckoutSessionGenqlSelection & {
|
|
2833
|
-
__args: {
|
|
2834
|
-
input: DonationCheckoutDto;
|
|
2835
|
-
};
|
|
2836
|
-
});
|
|
2837
2493
|
__typename?: boolean | number;
|
|
2838
2494
|
__scalar?: boolean | number;
|
|
2839
2495
|
}
|
|
@@ -2928,6 +2584,10 @@ export interface EditValueDto {
|
|
|
2928
2584
|
field: Scalars['String'];
|
|
2929
2585
|
newValue?: (Scalars['String'] | null);
|
|
2930
2586
|
}
|
|
2587
|
+
export interface EditPictureDto {
|
|
2588
|
+
field: Scalars['String'];
|
|
2589
|
+
newPicture?: (AWSS3UploadedFileDto | null);
|
|
2590
|
+
}
|
|
2931
2591
|
export interface CreateSportDto {
|
|
2932
2592
|
name: Scalars['String'];
|
|
2933
2593
|
resultType?: (Scalars['String'] | null);
|
|
@@ -3047,11 +2707,6 @@ export interface CreateSportEventDto {
|
|
|
3047
2707
|
website?: (Scalars['String'] | null);
|
|
3048
2708
|
banner?: (AWSS3UploadedFileDto | null);
|
|
3049
2709
|
}
|
|
3050
|
-
export interface CreateStripeAccountDto {
|
|
3051
|
-
countryId: Scalars['String'];
|
|
3052
|
-
acceptedTermsId: Scalars['String'];
|
|
3053
|
-
acceptedPrivacyId: Scalars['String'];
|
|
3054
|
-
}
|
|
3055
2710
|
export declare const isUser: (obj?: {
|
|
3056
2711
|
__typename?: any;
|
|
3057
2712
|
} | null) => obj is User;
|
|
@@ -3139,12 +2794,6 @@ export declare const isAWSS3UploadUrl: (obj?: {
|
|
|
3139
2794
|
export declare const isAWSS3CallResult: (obj?: {
|
|
3140
2795
|
__typename?: any;
|
|
3141
2796
|
} | null) => obj is AWSS3CallResult;
|
|
3142
|
-
export declare const isDatabaseFile: (obj?: {
|
|
3143
|
-
__typename?: any;
|
|
3144
|
-
} | null) => obj is DatabaseFile;
|
|
3145
|
-
export declare const isTextDatabaseFile: (obj?: {
|
|
3146
|
-
__typename?: any;
|
|
3147
|
-
} | null) => obj is TextDatabaseFile;
|
|
3148
2797
|
export declare const isCodeVerificationResponse: (obj?: {
|
|
3149
2798
|
__typename?: any;
|
|
3150
2799
|
} | null) => obj is CodeVerificationResponse;
|
|
@@ -3289,30 +2938,6 @@ export declare const isAthletePreferences: (obj?: {
|
|
|
3289
2938
|
export declare const isFundRaisingCampaign: (obj?: {
|
|
3290
2939
|
__typename?: any;
|
|
3291
2940
|
} | null) => obj is FundRaisingCampaign;
|
|
3292
|
-
export declare const isStripeCapabilityType: (obj?: {
|
|
3293
|
-
__typename?: any;
|
|
3294
|
-
} | null) => obj is StripeCapabilityType;
|
|
3295
|
-
export declare const isStripeRequirementAlternativeType: (obj?: {
|
|
3296
|
-
__typename?: any;
|
|
3297
|
-
} | null) => obj is StripeRequirementAlternativeType;
|
|
3298
|
-
export declare const isStripeFutureRequirementAlternativeType: (obj?: {
|
|
3299
|
-
__typename?: any;
|
|
3300
|
-
} | null) => obj is StripeFutureRequirementAlternativeType;
|
|
3301
|
-
export declare const isStripeErrorType: (obj?: {
|
|
3302
|
-
__typename?: any;
|
|
3303
|
-
} | null) => obj is StripeErrorType;
|
|
3304
|
-
export declare const isStripeRequirementType: (obj?: {
|
|
3305
|
-
__typename?: any;
|
|
3306
|
-
} | null) => obj is StripeRequirementType;
|
|
3307
|
-
export declare const isStripeFutureRequirementType: (obj?: {
|
|
3308
|
-
__typename?: any;
|
|
3309
|
-
} | null) => obj is StripeFutureRequirementType;
|
|
3310
|
-
export declare const isStripeAccount: (obj?: {
|
|
3311
|
-
__typename?: any;
|
|
3312
|
-
} | null) => obj is StripeAccount;
|
|
3313
|
-
export declare const isStripeAccountReference: (obj?: {
|
|
3314
|
-
__typename?: any;
|
|
3315
|
-
} | null) => obj is StripeAccountReference;
|
|
3316
2941
|
export declare const isAthleteReference: (obj?: {
|
|
3317
2942
|
__typename?: any;
|
|
3318
2943
|
} | null) => obj is AthleteReference;
|
|
@@ -3325,12 +2950,6 @@ export declare const isSponsorAthleteInvitation: (obj?: {
|
|
|
3325
2950
|
export declare const isStravaToken: (obj?: {
|
|
3326
2951
|
__typename?: any;
|
|
3327
2952
|
} | null) => obj is StravaToken;
|
|
3328
|
-
export declare const isStripeSession: (obj?: {
|
|
3329
|
-
__typename?: any;
|
|
3330
|
-
} | null) => obj is StripeSession;
|
|
3331
|
-
export declare const isStripeCheckoutSession: (obj?: {
|
|
3332
|
-
__typename?: any;
|
|
3333
|
-
} | null) => obj is StripeCheckoutSession;
|
|
3334
2953
|
export declare const isEditValueResponse: (obj?: {
|
|
3335
2954
|
__typename?: any;
|
|
3336
2955
|
} | null) => obj is EditValueResponse;
|
|
@@ -3349,9 +2968,12 @@ export declare const isCursorPaginationResponse: (obj?: {
|
|
|
3349
2968
|
export declare const isAthleteQueryResponse: (obj?: {
|
|
3350
2969
|
__typename?: any;
|
|
3351
2970
|
} | null) => obj is AthleteQueryResponse;
|
|
3352
|
-
export declare const
|
|
2971
|
+
export declare const isEditPictureResponse: (obj?: {
|
|
2972
|
+
__typename?: any;
|
|
2973
|
+
} | null) => obj is EditPictureResponse;
|
|
2974
|
+
export declare const isAddValuesResponse: (obj?: {
|
|
3353
2975
|
__typename?: any;
|
|
3354
|
-
} | null) => obj is
|
|
2976
|
+
} | null) => obj is AddValuesResponse;
|
|
3355
2977
|
export declare const isUserImages: (obj?: {
|
|
3356
2978
|
__typename?: any;
|
|
3357
2979
|
} | null) => obj is UserImages;
|