@vertikalx/vtx-backend-client 1.0.0-dev.82 → 1.0.0-dev.83
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.js.map +1 -0
- package/libs/vtx-backend-client/src/api/backend-response.js.map +1 -0
- package/libs/vtx-backend-client/src/api/domains.js.map +1 -0
- package/libs/vtx-backend-client/src/api/response-builder.js.map +1 -0
- package/libs/vtx-backend-client/src/api/types.js.map +1 -0
- package/libs/vtx-backend-client/src/api/vtx-apikey-api.js.map +1 -0
- package/{src → libs/vtx-backend-client/src}/api/vtx-base-api.d.ts +15 -1
- package/{src → libs/vtx-backend-client/src}/api/vtx-base-api.js +1057 -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.js.map +1 -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.js.map +1 -0
- package/libs/vtx-backend-client/src/client/index.js.map +1 -0
- package/libs/vtx-backend-client/src/client/runtime/batcher.js.map +1 -0
- package/libs/vtx-backend-client/src/client/runtime/createClient.js.map +1 -0
- package/libs/vtx-backend-client/src/client/runtime/error.js.map +1 -0
- package/libs/vtx-backend-client/src/client/runtime/fetcher.js.map +1 -0
- package/libs/vtx-backend-client/src/client/runtime/generateGraphqlOperation.js.map +1 -0
- package/libs/vtx-backend-client/src/client/runtime/index.js.map +1 -0
- package/libs/vtx-backend-client/src/client/runtime/linkTypeMap.js.map +1 -0
- package/libs/vtx-backend-client/src/client/runtime/typeSelection.js.map +1 -0
- package/libs/vtx-backend-client/src/client/runtime/types.js.map +1 -0
- package/{src → libs/vtx-backend-client/src}/client/schema.d.ts +531 -8
- package/{src → libs/vtx-backend-client/src}/client/schema.js +108 -2
- package/libs/vtx-backend-client/src/client/schema.js.map +1 -0
- package/{src → libs/vtx-backend-client/src}/client/types.d.ts +288 -9
- package/{src → libs/vtx-backend-client/src}/client/types.js +1035 -311
- package/libs/vtx-backend-client/src/client/types.js.map +1 -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/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/client/schema.graphql +274 -9
- package/tsconfig.lib.tsbuildinfo +1 -1
- package/src/api/api-call-headers.js.map +0 -1
- package/src/api/backend-response.js.map +0 -1
- package/src/api/domains.js.map +0 -1
- package/src/api/response-builder.js.map +0 -1
- package/src/api/types.js.map +0 -1
- package/src/api/vtx-apikey-api.js.map +0 -1
- package/src/api/vtx-base-api.js.map +0 -1
- package/src/api/vtx-mobile-api.js.map +0 -1
- package/src/api/vtx-web-browser-api.js.map +0 -1
- package/src/api/vtx-web-server-api.js.map +0 -1
- package/src/client/index.js.map +0 -1
- package/src/client/runtime/batcher.js.map +0 -1
- package/src/client/runtime/createClient.js.map +0 -1
- package/src/client/runtime/error.js.map +0 -1
- package/src/client/runtime/fetcher.js.map +0 -1
- package/src/client/runtime/generateGraphqlOperation.js.map +0 -1
- package/src/client/runtime/index.js.map +0 -1
- package/src/client/runtime/linkTypeMap.js.map +0 -1
- package/src/client/runtime/typeSelection.js.map +0 -1
- package/src/client/runtime/types.js.map +0 -1
- package/src/client/schema.js.map +0 -1
- package/src/client/types.js.map +0 -1
- package/src/index.js.map +0 -1
- /package/{src → libs/vtx-backend-client/src}/api/api-call-headers.d.ts +0 -0
- /package/{src → libs/vtx-backend-client/src}/api/api-call-headers.js +0 -0
- /package/{src → libs/vtx-backend-client/src}/api/backend-response.d.ts +0 -0
- /package/{src → libs/vtx-backend-client/src}/api/backend-response.js +0 -0
- /package/{src → libs/vtx-backend-client/src}/api/domains.d.ts +0 -0
- /package/{src → libs/vtx-backend-client/src}/api/domains.js +0 -0
- /package/{src → libs/vtx-backend-client/src}/api/response-builder.d.ts +0 -0
- /package/{src → libs/vtx-backend-client/src}/api/response-builder.js +0 -0
- /package/{src → libs/vtx-backend-client/src}/api/types.d.ts +0 -0
- /package/{src → libs/vtx-backend-client/src}/api/types.js +0 -0
- /package/{src → libs/vtx-backend-client/src}/api/vtx-apikey-api.d.ts +0 -0
- /package/{src → libs/vtx-backend-client/src}/api/vtx-apikey-api.js +0 -0
- /package/{src → libs/vtx-backend-client/src}/api/vtx-mobile-api.d.ts +0 -0
- /package/{src → libs/vtx-backend-client/src}/api/vtx-mobile-api.js +0 -0
- /package/{src → libs/vtx-backend-client/src}/api/vtx-web-browser-api.d.ts +0 -0
- /package/{src → libs/vtx-backend-client/src}/api/vtx-web-browser-api.js +0 -0
- /package/{src → libs/vtx-backend-client/src}/api/vtx-web-server-api.d.ts +0 -0
- /package/{src → libs/vtx-backend-client/src}/api/vtx-web-server-api.js +0 -0
- /package/{src → libs/vtx-backend-client/src}/client/index.d.ts +0 -0
- /package/{src → libs/vtx-backend-client/src}/client/index.js +0 -0
- /package/{src → libs/vtx-backend-client/src}/client/runtime/batcher.d.ts +0 -0
- /package/{src → libs/vtx-backend-client/src}/client/runtime/batcher.js +0 -0
- /package/{src → libs/vtx-backend-client/src}/client/runtime/createClient.d.ts +0 -0
- /package/{src → libs/vtx-backend-client/src}/client/runtime/createClient.js +0 -0
- /package/{src → libs/vtx-backend-client/src}/client/runtime/error.d.ts +0 -0
- /package/{src → libs/vtx-backend-client/src}/client/runtime/error.js +0 -0
- /package/{src → libs/vtx-backend-client/src}/client/runtime/fetcher.d.ts +0 -0
- /package/{src → libs/vtx-backend-client/src}/client/runtime/fetcher.js +0 -0
- /package/{src → libs/vtx-backend-client/src}/client/runtime/generateGraphqlOperation.d.ts +0 -0
- /package/{src → libs/vtx-backend-client/src}/client/runtime/generateGraphqlOperation.js +0 -0
- /package/{src → libs/vtx-backend-client/src}/client/runtime/index.d.ts +0 -0
- /package/{src → libs/vtx-backend-client/src}/client/runtime/index.js +0 -0
- /package/{src → libs/vtx-backend-client/src}/client/runtime/linkTypeMap.d.ts +0 -0
- /package/{src → libs/vtx-backend-client/src}/client/runtime/linkTypeMap.js +0 -0
- /package/{src → libs/vtx-backend-client/src}/client/runtime/typeSelection.d.ts +0 -0
- /package/{src → libs/vtx-backend-client/src}/client/runtime/typeSelection.js +0 -0
- /package/{src → libs/vtx-backend-client/src}/client/runtime/types.d.ts +0 -0
- /package/{src → libs/vtx-backend-client/src}/client/runtime/types.js +0 -0
- /package/{src → libs/vtx-backend-client/src}/index.d.ts +0 -0
- /package/{src → libs/vtx-backend-client/src}/index.js +0 -0
|
@@ -3,6 +3,7 @@ export type Scalars = {
|
|
|
3
3
|
Boolean: boolean;
|
|
4
4
|
DateTime: any;
|
|
5
5
|
Float: number;
|
|
6
|
+
JSONObject: any;
|
|
6
7
|
};
|
|
7
8
|
export interface User {
|
|
8
9
|
_id: Scalars['String'];
|
|
@@ -267,6 +268,25 @@ export interface AWSS3CallResult {
|
|
|
267
268
|
errors: (Scalars['String'][] | null);
|
|
268
269
|
__typename: 'AWSS3CallResult';
|
|
269
270
|
}
|
|
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
|
+
}
|
|
270
290
|
export interface CodeVerificationResponse {
|
|
271
291
|
result: Scalars['String'];
|
|
272
292
|
code: (VerificationCode | null);
|
|
@@ -689,6 +709,123 @@ export interface FundRaisingCampaign {
|
|
|
689
709
|
competitions: (AthleteCompetition[] | null);
|
|
690
710
|
__typename: 'FundRaisingCampaign';
|
|
691
711
|
}
|
|
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
|
+
}
|
|
692
829
|
export interface AthleteReference {
|
|
693
830
|
_id: Scalars['String'];
|
|
694
831
|
firstName: Scalars['String'];
|
|
@@ -746,6 +883,7 @@ export interface Athlete {
|
|
|
746
883
|
channels: (Channel[] | null);
|
|
747
884
|
currentCampaign: (FundRaisingCampaign | null);
|
|
748
885
|
fundingCampaigns: (FundRaisingCampaign[] | null);
|
|
886
|
+
stripeAccountReference: (StripeAccountReference | null);
|
|
749
887
|
__typename: 'Athlete';
|
|
750
888
|
}
|
|
751
889
|
export interface SponsorAthleteInvitation {
|
|
@@ -766,6 +904,19 @@ export interface StravaToken {
|
|
|
766
904
|
access_token: Scalars['String'];
|
|
767
905
|
__typename: 'StravaToken';
|
|
768
906
|
}
|
|
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
|
+
}
|
|
769
920
|
export interface EditValueResponse {
|
|
770
921
|
field: Scalars['String'];
|
|
771
922
|
oldValue: (Scalars['String'] | null);
|
|
@@ -805,6 +956,25 @@ export interface AthleteQueryResponse {
|
|
|
805
956
|
cursor: CursorPaginationResponse;
|
|
806
957
|
__typename: 'AthleteQueryResponse';
|
|
807
958
|
}
|
|
959
|
+
export interface EditPictureResponse {
|
|
960
|
+
field: Scalars['String'];
|
|
961
|
+
oldValue: (AWSS3File | null);
|
|
962
|
+
newValue: (AWSS3File | null);
|
|
963
|
+
changed: Scalars['Boolean'];
|
|
964
|
+
__typename: 'EditPictureResponse';
|
|
965
|
+
}
|
|
966
|
+
export interface AddValuesResponse {
|
|
967
|
+
added: Scalars['String'][];
|
|
968
|
+
failedToAdd: (Scalars['String'][] | null);
|
|
969
|
+
failureReason: (ErrorType[] | null);
|
|
970
|
+
result: Scalars['String'];
|
|
971
|
+
__typename: 'AddValuesResponse';
|
|
972
|
+
}
|
|
973
|
+
export interface StripeObject {
|
|
974
|
+
type: Scalars['String'];
|
|
975
|
+
json: Scalars['JSONObject'];
|
|
976
|
+
__typename: 'StripeObject';
|
|
977
|
+
}
|
|
808
978
|
export interface UserImages {
|
|
809
979
|
profilePictureUrl: (Scalars['String'] | null);
|
|
810
980
|
cardPictureUrl: (Scalars['String'] | null);
|
|
@@ -844,6 +1014,7 @@ export interface Query {
|
|
|
844
1014
|
getSponsorAthletesForTenant: Athlete[];
|
|
845
1015
|
getAthleteCompetitions: AthleteCompetition[];
|
|
846
1016
|
getAthleteMemberships: AthleteMembership[];
|
|
1017
|
+
findAthletebyIdpublic: Athlete;
|
|
847
1018
|
getSports: Sport[];
|
|
848
1019
|
findSportById: Sport;
|
|
849
1020
|
getSportLevels: SportLevel[];
|
|
@@ -860,6 +1031,8 @@ export interface Query {
|
|
|
860
1031
|
getStravaLoginUrl: Scalars['String'];
|
|
861
1032
|
getSportsEvents: SportsEvent[];
|
|
862
1033
|
getMembershipOrganizations: MembershipOrganizationReference[];
|
|
1034
|
+
stripeQuery: StripeObject;
|
|
1035
|
+
getDatabaseTextFile: TextDatabaseFile;
|
|
863
1036
|
__typename: 'Query';
|
|
864
1037
|
}
|
|
865
1038
|
export interface Mutation {
|
|
@@ -880,6 +1053,9 @@ export interface Mutation {
|
|
|
880
1053
|
sendAthleteInvitations: SponsorAthleteInvitation[];
|
|
881
1054
|
registerAthlete: Athlete;
|
|
882
1055
|
editProfileValue: EditValueResponse;
|
|
1056
|
+
editPicture: EditPictureResponse;
|
|
1057
|
+
AddAlbumPictures: AddValuesResponse;
|
|
1058
|
+
DeletePictureBuket: DeleteSingleValueResponse;
|
|
883
1059
|
addAthleteCompetition: AthleteCompetition;
|
|
884
1060
|
deleteAthleteCompetition: DeleteSingleValueResponse;
|
|
885
1061
|
createSport: Sport;
|
|
@@ -898,10 +1074,14 @@ export interface Mutation {
|
|
|
898
1074
|
handleStravaCallback: StravaToken;
|
|
899
1075
|
refreshStravaToken: StravaToken;
|
|
900
1076
|
createSportsEvent: SportsEvent;
|
|
1077
|
+
setFundingStatus: FundRaisingCampaign;
|
|
901
1078
|
createFundingCampaign: FundRaisingCampaign;
|
|
902
1079
|
createMembershipOrganization: MembershipOrganizationReference;
|
|
903
1080
|
createAthleteMembershipAffilation: AthleteMembership;
|
|
904
1081
|
deleteAthleteMembershipAffilation: DeleteSingleValueResponse;
|
|
1082
|
+
createStripeAccount: StripeAccountReference;
|
|
1083
|
+
createAthleteStripeSession: StripeSession;
|
|
1084
|
+
createStripeCheckoutSession: StripeCheckoutSession;
|
|
905
1085
|
__typename: 'Mutation';
|
|
906
1086
|
}
|
|
907
1087
|
export interface UserGenqlSelection {
|
|
@@ -1196,6 +1376,27 @@ export interface AWSS3CallResultGenqlSelection {
|
|
|
1196
1376
|
__typename?: boolean | number;
|
|
1197
1377
|
__scalar?: boolean | number;
|
|
1198
1378
|
}
|
|
1379
|
+
export interface DatabaseFileGenqlSelection {
|
|
1380
|
+
_id?: boolean | number;
|
|
1381
|
+
identifier?: boolean | number;
|
|
1382
|
+
version?: boolean | number;
|
|
1383
|
+
contentType?: boolean | number;
|
|
1384
|
+
updated?: boolean | number;
|
|
1385
|
+
created?: boolean | number;
|
|
1386
|
+
__typename?: boolean | number;
|
|
1387
|
+
__scalar?: boolean | number;
|
|
1388
|
+
}
|
|
1389
|
+
export interface TextDatabaseFileGenqlSelection {
|
|
1390
|
+
_id?: boolean | number;
|
|
1391
|
+
identifier?: boolean | number;
|
|
1392
|
+
version?: boolean | number;
|
|
1393
|
+
contentType?: boolean | number;
|
|
1394
|
+
updated?: boolean | number;
|
|
1395
|
+
created?: boolean | number;
|
|
1396
|
+
content?: boolean | number;
|
|
1397
|
+
__typename?: boolean | number;
|
|
1398
|
+
__scalar?: boolean | number;
|
|
1399
|
+
}
|
|
1199
1400
|
export interface CodeVerificationResponseGenqlSelection {
|
|
1200
1401
|
result?: boolean | number;
|
|
1201
1402
|
code?: VerificationCodeGenqlSelection;
|
|
@@ -1673,6 +1874,131 @@ export interface FundRaisingCampaignGenqlSelection {
|
|
|
1673
1874
|
__typename?: boolean | number;
|
|
1674
1875
|
__scalar?: boolean | number;
|
|
1675
1876
|
}
|
|
1877
|
+
export interface StripeCapabilityTypeGenqlSelection {
|
|
1878
|
+
acss_debit_payments?: boolean | number;
|
|
1879
|
+
affirm_payments?: boolean | number;
|
|
1880
|
+
afterpay_clearpay_payments?: boolean | number;
|
|
1881
|
+
alma_payments?: boolean | number;
|
|
1882
|
+
amazon_pay_payments?: boolean | number;
|
|
1883
|
+
au_becs_debit_payments?: boolean | number;
|
|
1884
|
+
bacs_debit_payments?: boolean | number;
|
|
1885
|
+
bancontact_payments?: boolean | number;
|
|
1886
|
+
bank_transfer_payments?: boolean | number;
|
|
1887
|
+
blik_payments?: boolean | number;
|
|
1888
|
+
boleto_payments?: boolean | number;
|
|
1889
|
+
card_issuing?: boolean | number;
|
|
1890
|
+
card_payments?: boolean | number;
|
|
1891
|
+
cartes_bancaires_payments?: boolean | number;
|
|
1892
|
+
cashapp_payments?: boolean | number;
|
|
1893
|
+
eps_payments?: boolean | number;
|
|
1894
|
+
fpx_payments?: boolean | number;
|
|
1895
|
+
gb_bank_transfer_payments?: boolean | number;
|
|
1896
|
+
giropay_payments?: boolean | number;
|
|
1897
|
+
grabpay_payments?: boolean | number;
|
|
1898
|
+
ideal_payments?: boolean | number;
|
|
1899
|
+
india_international_payments?: boolean | number;
|
|
1900
|
+
jcb_payments?: boolean | number;
|
|
1901
|
+
jp_bank_transfer_payments?: boolean | number;
|
|
1902
|
+
kakao_pay_payments?: boolean | number;
|
|
1903
|
+
klarna_payments?: boolean | number;
|
|
1904
|
+
konbini_payments?: boolean | number;
|
|
1905
|
+
kr_card_payments?: boolean | number;
|
|
1906
|
+
legacy_payments?: boolean | number;
|
|
1907
|
+
link_payments?: boolean | number;
|
|
1908
|
+
mobilepay_payments?: boolean | number;
|
|
1909
|
+
multibanco_payments?: boolean | number;
|
|
1910
|
+
mx_bank_transfer_payments?: boolean | number;
|
|
1911
|
+
naver_pay_payments?: boolean | number;
|
|
1912
|
+
oxxo_payments?: boolean | number;
|
|
1913
|
+
p24_payments?: boolean | number;
|
|
1914
|
+
pay_by_bank_payments?: boolean | number;
|
|
1915
|
+
payco_payments?: boolean | number;
|
|
1916
|
+
paynow_payments?: boolean | number;
|
|
1917
|
+
promptpay_payments?: boolean | number;
|
|
1918
|
+
revolut_pay_payments?: boolean | number;
|
|
1919
|
+
samsung_pay_payments?: boolean | number;
|
|
1920
|
+
sepa_bank_transfer_payments?: boolean | number;
|
|
1921
|
+
sepa_debit_payments?: boolean | number;
|
|
1922
|
+
sofort_payments?: boolean | number;
|
|
1923
|
+
swish_payments?: boolean | number;
|
|
1924
|
+
tax_reporting_us_1099_k?: boolean | number;
|
|
1925
|
+
tax_reporting_us_1099_misc?: boolean | number;
|
|
1926
|
+
transfers?: boolean | number;
|
|
1927
|
+
treasury?: boolean | number;
|
|
1928
|
+
twint_payments?: boolean | number;
|
|
1929
|
+
us_bank_account_ach_payments?: boolean | number;
|
|
1930
|
+
us_bank_transfer_payments?: boolean | number;
|
|
1931
|
+
zip_payments?: boolean | number;
|
|
1932
|
+
__typename?: boolean | number;
|
|
1933
|
+
__scalar?: boolean | number;
|
|
1934
|
+
}
|
|
1935
|
+
export interface StripeRequirementAlternativeTypeGenqlSelection {
|
|
1936
|
+
alternative_fields_due?: boolean | number;
|
|
1937
|
+
original_fields_due?: boolean | number;
|
|
1938
|
+
__typename?: boolean | number;
|
|
1939
|
+
__scalar?: boolean | number;
|
|
1940
|
+
}
|
|
1941
|
+
export interface StripeFutureRequirementAlternativeTypeGenqlSelection {
|
|
1942
|
+
alternative_fields_due?: boolean | number;
|
|
1943
|
+
original_fields_due?: boolean | number;
|
|
1944
|
+
__typename?: boolean | number;
|
|
1945
|
+
__scalar?: boolean | number;
|
|
1946
|
+
}
|
|
1947
|
+
export interface StripeErrorTypeGenqlSelection {
|
|
1948
|
+
code?: boolean | number;
|
|
1949
|
+
reason?: boolean | number;
|
|
1950
|
+
requirement?: boolean | number;
|
|
1951
|
+
__typename?: boolean | number;
|
|
1952
|
+
__scalar?: boolean | number;
|
|
1953
|
+
}
|
|
1954
|
+
export interface StripeRequirementTypeGenqlSelection {
|
|
1955
|
+
alternatives?: StripeRequirementAlternativeTypeGenqlSelection;
|
|
1956
|
+
current_deadline?: boolean | number;
|
|
1957
|
+
currently_due?: boolean | number;
|
|
1958
|
+
disabled_reason?: boolean | number;
|
|
1959
|
+
errors?: StripeErrorTypeGenqlSelection;
|
|
1960
|
+
eventually_due?: boolean | number;
|
|
1961
|
+
past_due?: boolean | number;
|
|
1962
|
+
pending_verification?: boolean | number;
|
|
1963
|
+
__typename?: boolean | number;
|
|
1964
|
+
__scalar?: boolean | number;
|
|
1965
|
+
}
|
|
1966
|
+
export interface StripeFutureRequirementTypeGenqlSelection {
|
|
1967
|
+
alternatives?: StripeFutureRequirementAlternativeTypeGenqlSelection;
|
|
1968
|
+
current_deadline?: boolean | number;
|
|
1969
|
+
currently_due?: boolean | number;
|
|
1970
|
+
disabled_reason?: boolean | number;
|
|
1971
|
+
errors?: StripeErrorTypeGenqlSelection;
|
|
1972
|
+
eventually_due?: boolean | number;
|
|
1973
|
+
past_due?: boolean | number;
|
|
1974
|
+
pending_verification?: boolean | number;
|
|
1975
|
+
__typename?: boolean | number;
|
|
1976
|
+
__scalar?: boolean | number;
|
|
1977
|
+
}
|
|
1978
|
+
export interface StripeAccountGenqlSelection {
|
|
1979
|
+
id?: boolean | number;
|
|
1980
|
+
object?: boolean | number;
|
|
1981
|
+
business_type?: boolean | number;
|
|
1982
|
+
country?: boolean | number;
|
|
1983
|
+
email?: boolean | number;
|
|
1984
|
+
capabilities?: StripeCapabilityTypeGenqlSelection;
|
|
1985
|
+
requirements?: StripeRequirementTypeGenqlSelection;
|
|
1986
|
+
future_requirements?: StripeFutureRequirementTypeGenqlSelection;
|
|
1987
|
+
type?: boolean | number;
|
|
1988
|
+
charges_enabled?: boolean | number;
|
|
1989
|
+
payouts_enabled?: boolean | number;
|
|
1990
|
+
created?: boolean | number;
|
|
1991
|
+
default_currency?: boolean | number;
|
|
1992
|
+
__typename?: boolean | number;
|
|
1993
|
+
__scalar?: boolean | number;
|
|
1994
|
+
}
|
|
1995
|
+
export interface StripeAccountReferenceGenqlSelection {
|
|
1996
|
+
_id?: boolean | number;
|
|
1997
|
+
stripeAccountId?: boolean | number;
|
|
1998
|
+
account?: StripeAccountGenqlSelection;
|
|
1999
|
+
__typename?: boolean | number;
|
|
2000
|
+
__scalar?: boolean | number;
|
|
2001
|
+
}
|
|
1676
2002
|
export interface AthleteReferenceGenqlSelection {
|
|
1677
2003
|
_id?: boolean | number;
|
|
1678
2004
|
firstName?: boolean | number;
|
|
@@ -1731,6 +2057,7 @@ export interface AthleteGenqlSelection {
|
|
|
1731
2057
|
channels?: ChannelGenqlSelection;
|
|
1732
2058
|
currentCampaign?: FundRaisingCampaignGenqlSelection;
|
|
1733
2059
|
fundingCampaigns?: FundRaisingCampaignGenqlSelection;
|
|
2060
|
+
stripeAccountReference?: StripeAccountReferenceGenqlSelection;
|
|
1734
2061
|
__typename?: boolean | number;
|
|
1735
2062
|
__scalar?: boolean | number;
|
|
1736
2063
|
}
|
|
@@ -1754,6 +2081,21 @@ export interface StravaTokenGenqlSelection {
|
|
|
1754
2081
|
__typename?: boolean | number;
|
|
1755
2082
|
__scalar?: boolean | number;
|
|
1756
2083
|
}
|
|
2084
|
+
export interface StripeSessionGenqlSelection {
|
|
2085
|
+
account?: boolean | number;
|
|
2086
|
+
client_secret?: boolean | number;
|
|
2087
|
+
expires_at?: boolean | number;
|
|
2088
|
+
livemode?: boolean | number;
|
|
2089
|
+
__typename?: boolean | number;
|
|
2090
|
+
__scalar?: boolean | number;
|
|
2091
|
+
}
|
|
2092
|
+
export interface StripeCheckoutSessionGenqlSelection {
|
|
2093
|
+
client_secret?: boolean | number;
|
|
2094
|
+
expires_at?: boolean | number;
|
|
2095
|
+
livemode?: boolean | number;
|
|
2096
|
+
__typename?: boolean | number;
|
|
2097
|
+
__scalar?: boolean | number;
|
|
2098
|
+
}
|
|
1757
2099
|
export interface EditValueResponseGenqlSelection {
|
|
1758
2100
|
field?: boolean | number;
|
|
1759
2101
|
oldValue?: boolean | number;
|
|
@@ -1799,6 +2141,28 @@ export interface AthleteQueryResponseGenqlSelection {
|
|
|
1799
2141
|
__typename?: boolean | number;
|
|
1800
2142
|
__scalar?: boolean | number;
|
|
1801
2143
|
}
|
|
2144
|
+
export interface EditPictureResponseGenqlSelection {
|
|
2145
|
+
field?: boolean | number;
|
|
2146
|
+
oldValue?: AWSS3FileGenqlSelection;
|
|
2147
|
+
newValue?: AWSS3FileGenqlSelection;
|
|
2148
|
+
changed?: boolean | number;
|
|
2149
|
+
__typename?: boolean | number;
|
|
2150
|
+
__scalar?: boolean | number;
|
|
2151
|
+
}
|
|
2152
|
+
export interface AddValuesResponseGenqlSelection {
|
|
2153
|
+
added?: boolean | number;
|
|
2154
|
+
failedToAdd?: boolean | number;
|
|
2155
|
+
failureReason?: ErrorTypeGenqlSelection;
|
|
2156
|
+
result?: boolean | number;
|
|
2157
|
+
__typename?: boolean | number;
|
|
2158
|
+
__scalar?: boolean | number;
|
|
2159
|
+
}
|
|
2160
|
+
export interface StripeObjectGenqlSelection {
|
|
2161
|
+
type?: boolean | number;
|
|
2162
|
+
json?: boolean | number;
|
|
2163
|
+
__typename?: boolean | number;
|
|
2164
|
+
__scalar?: boolean | number;
|
|
2165
|
+
}
|
|
1802
2166
|
export interface UserImagesGenqlSelection {
|
|
1803
2167
|
profilePictureUrl?: boolean | number;
|
|
1804
2168
|
cardPictureUrl?: boolean | number;
|
|
@@ -1814,6 +2178,43 @@ export interface DeleteValuesResponseGenqlSelection {
|
|
|
1814
2178
|
__typename?: boolean | number;
|
|
1815
2179
|
__scalar?: boolean | number;
|
|
1816
2180
|
}
|
|
2181
|
+
export interface CreateDatabaseFileDto {
|
|
2182
|
+
identifier: Scalars['String'];
|
|
2183
|
+
version?: Scalars['String'];
|
|
2184
|
+
contentType: Scalars['String'];
|
|
2185
|
+
}
|
|
2186
|
+
export interface CreateTextDatabaseFileDto {
|
|
2187
|
+
identifier: Scalars['String'];
|
|
2188
|
+
version?: Scalars['String'];
|
|
2189
|
+
contentType: Scalars['String'];
|
|
2190
|
+
content?: Scalars['String'];
|
|
2191
|
+
}
|
|
2192
|
+
export interface UpdateDatabaseFileDto {
|
|
2193
|
+
_id: Scalars['String'];
|
|
2194
|
+
identifier?: (Scalars['String'] | null);
|
|
2195
|
+
version?: (Scalars['String'] | null);
|
|
2196
|
+
contentType?: (Scalars['String'] | null);
|
|
2197
|
+
}
|
|
2198
|
+
export interface UpdateTextDatabaseFileDto {
|
|
2199
|
+
_id: Scalars['String'];
|
|
2200
|
+
identifier?: (Scalars['String'] | null);
|
|
2201
|
+
version?: (Scalars['String'] | null);
|
|
2202
|
+
contentType?: (Scalars['String'] | null);
|
|
2203
|
+
content?: (Scalars['String'] | null);
|
|
2204
|
+
}
|
|
2205
|
+
export interface CloneDatabaseFileDto {
|
|
2206
|
+
_id: Scalars['String'];
|
|
2207
|
+
version?: (Scalars['String'] | null);
|
|
2208
|
+
}
|
|
2209
|
+
export interface FindDatabaseFilesDto {
|
|
2210
|
+
_id?: (Scalars['String'] | null);
|
|
2211
|
+
identifier?: (Scalars['String'] | null);
|
|
2212
|
+
version?: (Scalars['String'] | null);
|
|
2213
|
+
}
|
|
2214
|
+
export interface GetDatabaseFileDto {
|
|
2215
|
+
identifier: Scalars['String'];
|
|
2216
|
+
version: Scalars['String'];
|
|
2217
|
+
}
|
|
1817
2218
|
export interface CreateVerificationCodeDto {
|
|
1818
2219
|
type?: (Scalars['String'] | null);
|
|
1819
2220
|
recipient?: (Scalars['String'] | null);
|
|
@@ -1925,6 +2326,18 @@ export interface AthleteQueryDto {
|
|
|
1925
2326
|
cursor?: (CursorPaginationDto | null);
|
|
1926
2327
|
filters?: (AthleteFilterDto | null);
|
|
1927
2328
|
}
|
|
2329
|
+
export interface UploadAlbumsPicturesDto {
|
|
2330
|
+
label: Scalars['String'];
|
|
2331
|
+
description?: (Scalars['String'] | null);
|
|
2332
|
+
pictures?: (AWSS3UploadedFileDto[] | null);
|
|
2333
|
+
}
|
|
2334
|
+
export interface AWSS3UploadedFileDto {
|
|
2335
|
+
key: Scalars['String'];
|
|
2336
|
+
useType: Scalars['String'];
|
|
2337
|
+
contentType: Scalars['String'];
|
|
2338
|
+
originalFileName?: (Scalars['String'] | null);
|
|
2339
|
+
fileSize?: (Scalars['Float'] | null);
|
|
2340
|
+
}
|
|
1928
2341
|
export interface QualificationDto {
|
|
1929
2342
|
type: Scalars['String'];
|
|
1930
2343
|
}
|
|
@@ -2029,6 +2442,10 @@ export interface CreateFundingCampaignForDto {
|
|
|
2029
2442
|
competitionIds?: (Scalars['String'][] | null);
|
|
2030
2443
|
loginEmail: Scalars['String'];
|
|
2031
2444
|
}
|
|
2445
|
+
export interface SetFundingStatusDto {
|
|
2446
|
+
fundingCampaignId: Scalars['String'];
|
|
2447
|
+
newStatus: Scalars['String'];
|
|
2448
|
+
}
|
|
2032
2449
|
export interface CreateMembershipOrganizationDto {
|
|
2033
2450
|
shortName: Scalars['String'];
|
|
2034
2451
|
acronym?: (Scalars['String'] | null);
|
|
@@ -2038,21 +2455,27 @@ export interface CreateMembershipOrganizationDto {
|
|
|
2038
2455
|
countryId?: (Scalars['String'] | null);
|
|
2039
2456
|
sportId?: (Scalars['String'] | null);
|
|
2040
2457
|
}
|
|
2041
|
-
export interface AWSS3UploadedFileDto {
|
|
2042
|
-
key: Scalars['String'];
|
|
2043
|
-
useType: Scalars['String'];
|
|
2044
|
-
contentType: Scalars['String'];
|
|
2045
|
-
originalFileName?: (Scalars['String'] | null);
|
|
2046
|
-
fileSize?: (Scalars['Float'] | null);
|
|
2047
|
-
}
|
|
2048
2458
|
export interface CreateAthleteMembershipDto {
|
|
2049
2459
|
organizationId: Scalars['String'];
|
|
2050
|
-
athleteId: Scalars['String'];
|
|
2051
2460
|
membershipNumber?: (Scalars['String'] | null);
|
|
2052
2461
|
membershipType?: (Scalars['String'] | null);
|
|
2053
2462
|
issueDate?: (Scalars['DateTime'] | null);
|
|
2054
2463
|
expirationDate?: (Scalars['DateTime'] | null);
|
|
2055
2464
|
}
|
|
2465
|
+
export interface DonationCheckoutDto {
|
|
2466
|
+
fundingCampaignId: Scalars['String'];
|
|
2467
|
+
donationAmount: Scalars['Float'];
|
|
2468
|
+
mode?: Scalars['String'];
|
|
2469
|
+
fromName?: (Scalars['String'] | null);
|
|
2470
|
+
fromEmail?: (Scalars['String'] | null);
|
|
2471
|
+
fromPhone?: (Scalars['String'] | null);
|
|
2472
|
+
message?: (Scalars['String'] | null);
|
|
2473
|
+
}
|
|
2474
|
+
export interface StripeQueryDto {
|
|
2475
|
+
operation: Scalars['String'];
|
|
2476
|
+
id: Scalars['String'];
|
|
2477
|
+
params?: (Scalars['String'] | null);
|
|
2478
|
+
}
|
|
2056
2479
|
export interface QueryGenqlSelection {
|
|
2057
2480
|
findTenantById?: (TenantGenqlSelection & {
|
|
2058
2481
|
__args: {
|
|
@@ -2159,6 +2582,11 @@ export interface QueryGenqlSelection {
|
|
|
2159
2582
|
athleteId: Scalars['String'];
|
|
2160
2583
|
};
|
|
2161
2584
|
});
|
|
2585
|
+
findAthletebyIdpublic?: (AthleteGenqlSelection & {
|
|
2586
|
+
__args: {
|
|
2587
|
+
athleteId: Scalars['String'];
|
|
2588
|
+
};
|
|
2589
|
+
});
|
|
2162
2590
|
getSports?: SportGenqlSelection;
|
|
2163
2591
|
findSportById?: (SportGenqlSelection & {
|
|
2164
2592
|
__args: {
|
|
@@ -2212,6 +2640,16 @@ export interface QueryGenqlSelection {
|
|
|
2212
2640
|
};
|
|
2213
2641
|
});
|
|
2214
2642
|
getMembershipOrganizations?: MembershipOrganizationReferenceGenqlSelection;
|
|
2643
|
+
stripeQuery?: (StripeObjectGenqlSelection & {
|
|
2644
|
+
__args: {
|
|
2645
|
+
input: StripeQueryDto;
|
|
2646
|
+
};
|
|
2647
|
+
});
|
|
2648
|
+
getDatabaseTextFile?: (TextDatabaseFileGenqlSelection & {
|
|
2649
|
+
__args: {
|
|
2650
|
+
input: GetDatabaseFileDto;
|
|
2651
|
+
};
|
|
2652
|
+
});
|
|
2215
2653
|
__typename?: boolean | number;
|
|
2216
2654
|
__scalar?: boolean | number;
|
|
2217
2655
|
}
|
|
@@ -2322,6 +2760,21 @@ export interface MutationGenqlSelection {
|
|
|
2322
2760
|
input: EditValueDto;
|
|
2323
2761
|
};
|
|
2324
2762
|
});
|
|
2763
|
+
editPicture?: (EditPictureResponseGenqlSelection & {
|
|
2764
|
+
__args: {
|
|
2765
|
+
input: EditPictureDto;
|
|
2766
|
+
};
|
|
2767
|
+
});
|
|
2768
|
+
AddAlbumPictures?: (AddValuesResponseGenqlSelection & {
|
|
2769
|
+
__args: {
|
|
2770
|
+
input: UploadAlbumsPicturesDto;
|
|
2771
|
+
};
|
|
2772
|
+
});
|
|
2773
|
+
DeletePictureBuket?: (DeleteSingleValueResponseGenqlSelection & {
|
|
2774
|
+
__args: {
|
|
2775
|
+
input: AWSS3DeleteUseTypeFileDto;
|
|
2776
|
+
};
|
|
2777
|
+
});
|
|
2325
2778
|
addAthleteCompetition?: (AthleteCompetitionGenqlSelection & {
|
|
2326
2779
|
__args: {
|
|
2327
2780
|
input: CreateAthleteCompetitionDto;
|
|
@@ -2413,6 +2866,11 @@ export interface MutationGenqlSelection {
|
|
|
2413
2866
|
input: CreateSportEventDto;
|
|
2414
2867
|
};
|
|
2415
2868
|
});
|
|
2869
|
+
setFundingStatus?: (FundRaisingCampaignGenqlSelection & {
|
|
2870
|
+
__args: {
|
|
2871
|
+
input: SetFundingStatusDto;
|
|
2872
|
+
};
|
|
2873
|
+
});
|
|
2416
2874
|
createFundingCampaign?: (FundRaisingCampaignGenqlSelection & {
|
|
2417
2875
|
__args: {
|
|
2418
2876
|
input: CreateFundingCampaignDto;
|
|
@@ -2433,6 +2891,17 @@ export interface MutationGenqlSelection {
|
|
|
2433
2891
|
input: DeleteSingleValueDto;
|
|
2434
2892
|
};
|
|
2435
2893
|
});
|
|
2894
|
+
createStripeAccount?: (StripeAccountReferenceGenqlSelection & {
|
|
2895
|
+
__args: {
|
|
2896
|
+
input: CreateStripeAccountDto;
|
|
2897
|
+
};
|
|
2898
|
+
});
|
|
2899
|
+
createAthleteStripeSession?: StripeSessionGenqlSelection;
|
|
2900
|
+
createStripeCheckoutSession?: (StripeCheckoutSessionGenqlSelection & {
|
|
2901
|
+
__args: {
|
|
2902
|
+
input: DonationCheckoutDto;
|
|
2903
|
+
};
|
|
2904
|
+
});
|
|
2436
2905
|
__typename?: boolean | number;
|
|
2437
2906
|
__scalar?: boolean | number;
|
|
2438
2907
|
}
|
|
@@ -2527,6 +2996,10 @@ export interface EditValueDto {
|
|
|
2527
2996
|
field: Scalars['String'];
|
|
2528
2997
|
newValue?: (Scalars['String'] | null);
|
|
2529
2998
|
}
|
|
2999
|
+
export interface EditPictureDto {
|
|
3000
|
+
field: Scalars['String'];
|
|
3001
|
+
newPicture?: (AWSS3UploadedFileDto | null);
|
|
3002
|
+
}
|
|
2530
3003
|
export interface CreateSportDto {
|
|
2531
3004
|
name: Scalars['String'];
|
|
2532
3005
|
resultType?: (Scalars['String'] | null);
|
|
@@ -2646,6 +3119,11 @@ export interface CreateSportEventDto {
|
|
|
2646
3119
|
website?: (Scalars['String'] | null);
|
|
2647
3120
|
banner?: (AWSS3UploadedFileDto | null);
|
|
2648
3121
|
}
|
|
3122
|
+
export interface CreateStripeAccountDto {
|
|
3123
|
+
countryId: Scalars['String'];
|
|
3124
|
+
acceptedTermsId: Scalars['String'];
|
|
3125
|
+
acceptedPrivacyId: Scalars['String'];
|
|
3126
|
+
}
|
|
2649
3127
|
export declare const isUser: (obj?: {
|
|
2650
3128
|
__typename?: any;
|
|
2651
3129
|
} | null) => obj is User;
|
|
@@ -2733,6 +3211,12 @@ export declare const isAWSS3UploadUrl: (obj?: {
|
|
|
2733
3211
|
export declare const isAWSS3CallResult: (obj?: {
|
|
2734
3212
|
__typename?: any;
|
|
2735
3213
|
} | null) => obj is AWSS3CallResult;
|
|
3214
|
+
export declare const isDatabaseFile: (obj?: {
|
|
3215
|
+
__typename?: any;
|
|
3216
|
+
} | null) => obj is DatabaseFile;
|
|
3217
|
+
export declare const isTextDatabaseFile: (obj?: {
|
|
3218
|
+
__typename?: any;
|
|
3219
|
+
} | null) => obj is TextDatabaseFile;
|
|
2736
3220
|
export declare const isCodeVerificationResponse: (obj?: {
|
|
2737
3221
|
__typename?: any;
|
|
2738
3222
|
} | null) => obj is CodeVerificationResponse;
|
|
@@ -2877,6 +3361,30 @@ export declare const isAthletePreferences: (obj?: {
|
|
|
2877
3361
|
export declare const isFundRaisingCampaign: (obj?: {
|
|
2878
3362
|
__typename?: any;
|
|
2879
3363
|
} | null) => obj is FundRaisingCampaign;
|
|
3364
|
+
export declare const isStripeCapabilityType: (obj?: {
|
|
3365
|
+
__typename?: any;
|
|
3366
|
+
} | null) => obj is StripeCapabilityType;
|
|
3367
|
+
export declare const isStripeRequirementAlternativeType: (obj?: {
|
|
3368
|
+
__typename?: any;
|
|
3369
|
+
} | null) => obj is StripeRequirementAlternativeType;
|
|
3370
|
+
export declare const isStripeFutureRequirementAlternativeType: (obj?: {
|
|
3371
|
+
__typename?: any;
|
|
3372
|
+
} | null) => obj is StripeFutureRequirementAlternativeType;
|
|
3373
|
+
export declare const isStripeErrorType: (obj?: {
|
|
3374
|
+
__typename?: any;
|
|
3375
|
+
} | null) => obj is StripeErrorType;
|
|
3376
|
+
export declare const isStripeRequirementType: (obj?: {
|
|
3377
|
+
__typename?: any;
|
|
3378
|
+
} | null) => obj is StripeRequirementType;
|
|
3379
|
+
export declare const isStripeFutureRequirementType: (obj?: {
|
|
3380
|
+
__typename?: any;
|
|
3381
|
+
} | null) => obj is StripeFutureRequirementType;
|
|
3382
|
+
export declare const isStripeAccount: (obj?: {
|
|
3383
|
+
__typename?: any;
|
|
3384
|
+
} | null) => obj is StripeAccount;
|
|
3385
|
+
export declare const isStripeAccountReference: (obj?: {
|
|
3386
|
+
__typename?: any;
|
|
3387
|
+
} | null) => obj is StripeAccountReference;
|
|
2880
3388
|
export declare const isAthleteReference: (obj?: {
|
|
2881
3389
|
__typename?: any;
|
|
2882
3390
|
} | null) => obj is AthleteReference;
|
|
@@ -2889,6 +3397,12 @@ export declare const isSponsorAthleteInvitation: (obj?: {
|
|
|
2889
3397
|
export declare const isStravaToken: (obj?: {
|
|
2890
3398
|
__typename?: any;
|
|
2891
3399
|
} | null) => obj is StravaToken;
|
|
3400
|
+
export declare const isStripeSession: (obj?: {
|
|
3401
|
+
__typename?: any;
|
|
3402
|
+
} | null) => obj is StripeSession;
|
|
3403
|
+
export declare const isStripeCheckoutSession: (obj?: {
|
|
3404
|
+
__typename?: any;
|
|
3405
|
+
} | null) => obj is StripeCheckoutSession;
|
|
2892
3406
|
export declare const isEditValueResponse: (obj?: {
|
|
2893
3407
|
__typename?: any;
|
|
2894
3408
|
} | null) => obj is EditValueResponse;
|
|
@@ -2907,6 +3421,15 @@ export declare const isCursorPaginationResponse: (obj?: {
|
|
|
2907
3421
|
export declare const isAthleteQueryResponse: (obj?: {
|
|
2908
3422
|
__typename?: any;
|
|
2909
3423
|
} | null) => obj is AthleteQueryResponse;
|
|
3424
|
+
export declare const isEditPictureResponse: (obj?: {
|
|
3425
|
+
__typename?: any;
|
|
3426
|
+
} | null) => obj is EditPictureResponse;
|
|
3427
|
+
export declare const isAddValuesResponse: (obj?: {
|
|
3428
|
+
__typename?: any;
|
|
3429
|
+
} | null) => obj is AddValuesResponse;
|
|
3430
|
+
export declare const isStripeObject: (obj?: {
|
|
3431
|
+
__typename?: any;
|
|
3432
|
+
} | null) => obj is StripeObject;
|
|
2910
3433
|
export declare const isUserImages: (obj?: {
|
|
2911
3434
|
__typename?: any;
|
|
2912
3435
|
} | null) => obj is UserImages;
|