@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
|
@@ -266,6 +266,25 @@ type AWSS3CallResult {
|
|
|
266
266
|
errors: [String!]
|
|
267
267
|
}
|
|
268
268
|
|
|
269
|
+
type DatabaseFile {
|
|
270
|
+
_id: String!
|
|
271
|
+
identifier: String!
|
|
272
|
+
version: String!
|
|
273
|
+
contentType: String!
|
|
274
|
+
updated: DateTime!
|
|
275
|
+
created: DateTime!
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
type TextDatabaseFile {
|
|
279
|
+
_id: String!
|
|
280
|
+
identifier: String!
|
|
281
|
+
version: String!
|
|
282
|
+
contentType: String!
|
|
283
|
+
updated: DateTime!
|
|
284
|
+
created: DateTime!
|
|
285
|
+
content: String!
|
|
286
|
+
}
|
|
287
|
+
|
|
269
288
|
type CodeVerificationResponse {
|
|
270
289
|
result: String!
|
|
271
290
|
code: VerificationCode
|
|
@@ -687,6 +706,123 @@ type FundRaisingCampaign {
|
|
|
687
706
|
competitions: [AthleteCompetition!]
|
|
688
707
|
}
|
|
689
708
|
|
|
709
|
+
type StripeCapabilityType {
|
|
710
|
+
acss_debit_payments: String
|
|
711
|
+
affirm_payments: String
|
|
712
|
+
afterpay_clearpay_payments: String
|
|
713
|
+
alma_payments: String
|
|
714
|
+
amazon_pay_payments: String
|
|
715
|
+
au_becs_debit_payments: String
|
|
716
|
+
bacs_debit_payments: String
|
|
717
|
+
bancontact_payments: String
|
|
718
|
+
bank_transfer_payments: String
|
|
719
|
+
blik_payments: String
|
|
720
|
+
boleto_payments: String
|
|
721
|
+
card_issuing: String
|
|
722
|
+
card_payments: String
|
|
723
|
+
cartes_bancaires_payments: String
|
|
724
|
+
cashapp_payments: String
|
|
725
|
+
eps_payments: String
|
|
726
|
+
fpx_payments: String
|
|
727
|
+
gb_bank_transfer_payments: String
|
|
728
|
+
giropay_payments: String
|
|
729
|
+
grabpay_payments: String
|
|
730
|
+
ideal_payments: String
|
|
731
|
+
india_international_payments: String
|
|
732
|
+
jcb_payments: String
|
|
733
|
+
jp_bank_transfer_payments: String
|
|
734
|
+
kakao_pay_payments: String
|
|
735
|
+
klarna_payments: String
|
|
736
|
+
konbini_payments: String
|
|
737
|
+
kr_card_payments: String
|
|
738
|
+
legacy_payments: String
|
|
739
|
+
link_payments: String
|
|
740
|
+
mobilepay_payments: String
|
|
741
|
+
multibanco_payments: String
|
|
742
|
+
mx_bank_transfer_payments: String
|
|
743
|
+
naver_pay_payments: String
|
|
744
|
+
oxxo_payments: String
|
|
745
|
+
p24_payments: String
|
|
746
|
+
pay_by_bank_payments: String
|
|
747
|
+
payco_payments: String
|
|
748
|
+
paynow_payments: String
|
|
749
|
+
promptpay_payments: String
|
|
750
|
+
revolut_pay_payments: String
|
|
751
|
+
samsung_pay_payments: String
|
|
752
|
+
sepa_bank_transfer_payments: String
|
|
753
|
+
sepa_debit_payments: String
|
|
754
|
+
sofort_payments: String
|
|
755
|
+
swish_payments: String
|
|
756
|
+
tax_reporting_us_1099_k: String
|
|
757
|
+
tax_reporting_us_1099_misc: String
|
|
758
|
+
transfers: String
|
|
759
|
+
treasury: String
|
|
760
|
+
twint_payments: String
|
|
761
|
+
us_bank_account_ach_payments: String
|
|
762
|
+
us_bank_transfer_payments: String
|
|
763
|
+
zip_payments: String
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
type StripeRequirementAlternativeType {
|
|
767
|
+
alternative_fields_due: [String!]!
|
|
768
|
+
original_fields_due: [String!]!
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
type StripeFutureRequirementAlternativeType {
|
|
772
|
+
alternative_fields_due: [String!]!
|
|
773
|
+
original_fields_due: [String!]!
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
type StripeErrorType {
|
|
777
|
+
code: String!
|
|
778
|
+
reason: String!
|
|
779
|
+
requirement: String!
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
type StripeRequirementType {
|
|
783
|
+
alternatives: [StripeRequirementAlternativeType!]
|
|
784
|
+
current_deadline: DateTime
|
|
785
|
+
currently_due: [String!]
|
|
786
|
+
disabled_reason: String
|
|
787
|
+
errors: [StripeErrorType!]
|
|
788
|
+
eventually_due: [String!]
|
|
789
|
+
past_due: [String!]
|
|
790
|
+
pending_verification: [String!]
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
type StripeFutureRequirementType {
|
|
794
|
+
alternatives: [StripeFutureRequirementAlternativeType!]
|
|
795
|
+
current_deadline: DateTime
|
|
796
|
+
currently_due: [String!]
|
|
797
|
+
disabled_reason: String
|
|
798
|
+
errors: [StripeErrorType!]
|
|
799
|
+
eventually_due: [String!]
|
|
800
|
+
past_due: [String!]
|
|
801
|
+
pending_verification: [String!]
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
type StripeAccount {
|
|
805
|
+
id: String!
|
|
806
|
+
object: String!
|
|
807
|
+
business_type: String
|
|
808
|
+
country: String!
|
|
809
|
+
email: String
|
|
810
|
+
capabilities: StripeCapabilityType
|
|
811
|
+
requirements: StripeRequirementType
|
|
812
|
+
future_requirements: StripeFutureRequirementType
|
|
813
|
+
type: String!
|
|
814
|
+
charges_enabled: Boolean!
|
|
815
|
+
payouts_enabled: Boolean!
|
|
816
|
+
created: DateTime
|
|
817
|
+
default_currency: String
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
type StripeAccountReference {
|
|
821
|
+
_id: String!
|
|
822
|
+
stripeAccountId: String!
|
|
823
|
+
account: StripeAccount
|
|
824
|
+
}
|
|
825
|
+
|
|
690
826
|
type AthleteReference {
|
|
691
827
|
_id: String!
|
|
692
828
|
firstName: String!
|
|
@@ -744,6 +880,7 @@ type Athlete {
|
|
|
744
880
|
channels: [Channel!]
|
|
745
881
|
currentCampaign: FundRaisingCampaign
|
|
746
882
|
fundingCampaigns: [FundRaisingCampaign!]
|
|
883
|
+
stripeAccountReference: StripeAccountReference
|
|
747
884
|
}
|
|
748
885
|
|
|
749
886
|
type SponsorAthleteInvitation {
|
|
@@ -764,6 +901,19 @@ type StravaToken {
|
|
|
764
901
|
access_token: String!
|
|
765
902
|
}
|
|
766
903
|
|
|
904
|
+
type StripeSession {
|
|
905
|
+
account: String!
|
|
906
|
+
client_secret: String!
|
|
907
|
+
expires_at: Float!
|
|
908
|
+
livemode: Boolean!
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
type StripeCheckoutSession {
|
|
912
|
+
client_secret: String!
|
|
913
|
+
expires_at: Float!
|
|
914
|
+
livemode: Boolean!
|
|
915
|
+
}
|
|
916
|
+
|
|
767
917
|
type EditValueResponse {
|
|
768
918
|
field: String!
|
|
769
919
|
oldValue: String
|
|
@@ -803,6 +953,30 @@ type AthleteQueryResponse {
|
|
|
803
953
|
cursor: CursorPaginationResponse!
|
|
804
954
|
}
|
|
805
955
|
|
|
956
|
+
type EditPictureResponse {
|
|
957
|
+
field: String!
|
|
958
|
+
oldValue: AWSS3File
|
|
959
|
+
newValue: AWSS3File
|
|
960
|
+
changed: Boolean!
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
type AddValuesResponse {
|
|
964
|
+
added: [String!]!
|
|
965
|
+
failedToAdd: [String!]
|
|
966
|
+
failureReason: [ErrorType!]
|
|
967
|
+
result: String!
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
type StripeObject {
|
|
971
|
+
type: String!
|
|
972
|
+
json: JSONObject!
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
"""
|
|
976
|
+
The `JSONObject` scalar type represents JSON objects as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).
|
|
977
|
+
"""
|
|
978
|
+
scalar JSONObject
|
|
979
|
+
|
|
806
980
|
type UserImages {
|
|
807
981
|
profilePictureUrl: String
|
|
808
982
|
cardPictureUrl: String
|
|
@@ -816,6 +990,50 @@ type DeleteValuesResponse {
|
|
|
816
990
|
result: String!
|
|
817
991
|
}
|
|
818
992
|
|
|
993
|
+
input CreateDatabaseFileDto {
|
|
994
|
+
identifier: String!
|
|
995
|
+
version: String! = "1.0.0"
|
|
996
|
+
contentType: String!
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
input CreateTextDatabaseFileDto {
|
|
1000
|
+
identifier: String!
|
|
1001
|
+
version: String! = "1.0.0"
|
|
1002
|
+
contentType: String!
|
|
1003
|
+
content: String! = ""
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
input UpdateDatabaseFileDto {
|
|
1007
|
+
_id: String!
|
|
1008
|
+
identifier: String
|
|
1009
|
+
version: String
|
|
1010
|
+
contentType: String
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
input UpdateTextDatabaseFileDto {
|
|
1014
|
+
_id: String!
|
|
1015
|
+
identifier: String
|
|
1016
|
+
version: String
|
|
1017
|
+
contentType: String
|
|
1018
|
+
content: String
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
input CloneDatabaseFileDto {
|
|
1022
|
+
_id: String!
|
|
1023
|
+
version: String
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
input FindDatabaseFilesDto {
|
|
1027
|
+
_id: String
|
|
1028
|
+
identifier: String
|
|
1029
|
+
version: String
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
input GetDatabaseFileDto {
|
|
1033
|
+
identifier: String!
|
|
1034
|
+
version: String!
|
|
1035
|
+
}
|
|
1036
|
+
|
|
819
1037
|
input CreateVerificationCodeDto {
|
|
820
1038
|
type: String
|
|
821
1039
|
recipient: String
|
|
@@ -942,6 +1160,20 @@ input AthleteQueryDto {
|
|
|
942
1160
|
filters: AthleteFilterDto
|
|
943
1161
|
}
|
|
944
1162
|
|
|
1163
|
+
input UploadAlbumsPicturesDto {
|
|
1164
|
+
label: String!
|
|
1165
|
+
description: String
|
|
1166
|
+
pictures: [AWSS3UploadedFileDto!]
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
input AWSS3UploadedFileDto {
|
|
1170
|
+
key: String!
|
|
1171
|
+
useType: String!
|
|
1172
|
+
contentType: String!
|
|
1173
|
+
originalFileName: String
|
|
1174
|
+
fileSize: Float
|
|
1175
|
+
}
|
|
1176
|
+
|
|
945
1177
|
input QualificationDto {
|
|
946
1178
|
type: String!
|
|
947
1179
|
}
|
|
@@ -1063,6 +1295,11 @@ input CreateFundingCampaignForDto {
|
|
|
1063
1295
|
loginEmail: String!
|
|
1064
1296
|
}
|
|
1065
1297
|
|
|
1298
|
+
input SetFundingStatusDto {
|
|
1299
|
+
fundingCampaignId: String!
|
|
1300
|
+
newStatus: String!
|
|
1301
|
+
}
|
|
1302
|
+
|
|
1066
1303
|
input CreateMembershipOrganizationDto {
|
|
1067
1304
|
shortName: String!
|
|
1068
1305
|
acronym: String
|
|
@@ -1073,23 +1310,30 @@ input CreateMembershipOrganizationDto {
|
|
|
1073
1310
|
sportId: String
|
|
1074
1311
|
}
|
|
1075
1312
|
|
|
1076
|
-
input AWSS3UploadedFileDto {
|
|
1077
|
-
key: String!
|
|
1078
|
-
useType: String!
|
|
1079
|
-
contentType: String!
|
|
1080
|
-
originalFileName: String
|
|
1081
|
-
fileSize: Float
|
|
1082
|
-
}
|
|
1083
|
-
|
|
1084
1313
|
input CreateAthleteMembershipDto {
|
|
1085
1314
|
organizationId: String!
|
|
1086
|
-
athleteId: String!
|
|
1087
1315
|
membershipNumber: String
|
|
1088
1316
|
membershipType: String
|
|
1089
1317
|
issueDate: DateTime
|
|
1090
1318
|
expirationDate: DateTime
|
|
1091
1319
|
}
|
|
1092
1320
|
|
|
1321
|
+
input DonationCheckoutDto {
|
|
1322
|
+
fundingCampaignId: String!
|
|
1323
|
+
donationAmount: Float!
|
|
1324
|
+
mode: String! = "private"
|
|
1325
|
+
fromName: String
|
|
1326
|
+
fromEmail: String
|
|
1327
|
+
fromPhone: String
|
|
1328
|
+
message: String
|
|
1329
|
+
}
|
|
1330
|
+
|
|
1331
|
+
input StripeQueryDto {
|
|
1332
|
+
operation: String!
|
|
1333
|
+
id: String!
|
|
1334
|
+
params: String
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1093
1337
|
type Query {
|
|
1094
1338
|
findTenantById(_id: String!): Tenant!
|
|
1095
1339
|
findTenantByEmail(email: String!, domainId: String!): Tenant!
|
|
@@ -1116,6 +1360,7 @@ type Query {
|
|
|
1116
1360
|
getSponsorAthletesForTenant: [Athlete!]!
|
|
1117
1361
|
getAthleteCompetitions(input: GetAthleteCompetitionsDto!): [AthleteCompetition!]!
|
|
1118
1362
|
getAthleteMemberships(athleteId: String!): [AthleteMembership!]!
|
|
1363
|
+
findAthletebyIdpublic(athleteId: String!): Athlete!
|
|
1119
1364
|
getSports: [Sport!]!
|
|
1120
1365
|
findSportById(sportId: String!): Sport!
|
|
1121
1366
|
getSportLevels: [SportLevel!]!
|
|
@@ -1132,6 +1377,8 @@ type Query {
|
|
|
1132
1377
|
getStravaLoginUrl: String!
|
|
1133
1378
|
getSportsEvents(input: GetSportEventsDto!): [SportsEvent!]!
|
|
1134
1379
|
getMembershipOrganizations: [MembershipOrganizationReference!]!
|
|
1380
|
+
stripeQuery(input: StripeQueryDto!): StripeObject!
|
|
1381
|
+
getDatabaseTextFile(input: GetDatabaseFileDto!): TextDatabaseFile!
|
|
1135
1382
|
}
|
|
1136
1383
|
|
|
1137
1384
|
input AWSS3GetUploadDto {
|
|
@@ -1176,6 +1423,9 @@ type Mutation {
|
|
|
1176
1423
|
sendAthleteInvitations(input: InviteAthletesDto!): [SponsorAthleteInvitation!]!
|
|
1177
1424
|
registerAthlete(input: RegisterAthleteDto!): Athlete!
|
|
1178
1425
|
editProfileValue(input: EditValueDto!): EditValueResponse!
|
|
1426
|
+
editPicture(input: EditPictureDto!): EditPictureResponse!
|
|
1427
|
+
AddAlbumPictures(input: UploadAlbumsPicturesDto!): AddValuesResponse!
|
|
1428
|
+
DeletePictureBuket(input: AWSS3DeleteUseTypeFileDto!): DeleteSingleValueResponse!
|
|
1179
1429
|
addAthleteCompetition(input: CreateAthleteCompetitionDto!): AthleteCompetition!
|
|
1180
1430
|
deleteAthleteCompetition(input: DeleteSingleValueDto!): DeleteSingleValueResponse!
|
|
1181
1431
|
createSport(input: CreateSportDto!): Sport!
|
|
@@ -1194,10 +1444,14 @@ type Mutation {
|
|
|
1194
1444
|
handleStravaCallback(data: RegisterStravaDto!): StravaToken!
|
|
1195
1445
|
refreshStravaToken(input: String!): StravaToken!
|
|
1196
1446
|
createSportsEvent(input: CreateSportEventDto!): SportsEvent!
|
|
1447
|
+
setFundingStatus(input: SetFundingStatusDto!): FundRaisingCampaign!
|
|
1197
1448
|
createFundingCampaign(input: CreateFundingCampaignDto!): FundRaisingCampaign!
|
|
1198
1449
|
createMembershipOrganization(input: CreateMembershipOrganizationDto!): MembershipOrganizationReference!
|
|
1199
1450
|
createAthleteMembershipAffilation(input: CreateAthleteMembershipDto!): AthleteMembership!
|
|
1200
1451
|
deleteAthleteMembershipAffilation(input: DeleteSingleValueDto!): DeleteSingleValueResponse!
|
|
1452
|
+
createStripeAccount(input: CreateStripeAccountDto!): StripeAccountReference!
|
|
1453
|
+
createAthleteStripeSession: StripeSession!
|
|
1454
|
+
createStripeCheckoutSession(input: DonationCheckoutDto!): StripeCheckoutSession!
|
|
1201
1455
|
}
|
|
1202
1456
|
|
|
1203
1457
|
input CreateTenantInput {
|
|
@@ -1304,6 +1558,11 @@ input EditValueDto {
|
|
|
1304
1558
|
newValue: String
|
|
1305
1559
|
}
|
|
1306
1560
|
|
|
1561
|
+
input EditPictureDto {
|
|
1562
|
+
field: String!
|
|
1563
|
+
newPicture: AWSS3UploadedFileDto
|
|
1564
|
+
}
|
|
1565
|
+
|
|
1307
1566
|
input CreateSportDto {
|
|
1308
1567
|
name: String!
|
|
1309
1568
|
resultType: String = "POSITION"
|
|
@@ -1437,4 +1696,10 @@ input CreateSportEventDto {
|
|
|
1437
1696
|
endDate: DateTime
|
|
1438
1697
|
website: String
|
|
1439
1698
|
banner: AWSS3UploadedFileDto
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1701
|
+
input CreateStripeAccountDto {
|
|
1702
|
+
countryId: String!
|
|
1703
|
+
acceptedTermsId: String!
|
|
1704
|
+
acceptedPrivacyId: String!
|
|
1440
1705
|
}
|