@vertikalx/vtx-backend-client 1.0.0-dev.17 → 1.0.0-dev.19
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/package.json +1 -1
- package/src/api/response-builder.d.ts +4 -0
- package/src/api/response-builder.js +63 -0
- package/src/api/response-builder.js.map +1 -0
- package/src/api/vtx-base-api.d.ts +5 -1
- package/src/api/vtx-base-api.js +229 -2
- package/src/api/vtx-base-api.js.map +1 -1
- package/src/client/runtime/createClient.d.ts +4 -10
- package/src/client/runtime/generateGraphqlOperation.d.ts +1 -1
- package/src/client/schema.d.ts +154 -2
- package/src/client/schema.graphql +75 -1
- package/src/client/schema.js +22 -1
- package/src/client/schema.js.map +1 -1
- package/src/client/types.d.ts +92 -1
- package/src/client/types.js +271 -33
- package/src/client/types.js.map +1 -1
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/index.js.map +1 -1
- package/tsconfig.lib.tsbuildinfo +1 -1
package/src/client/schema.d.ts
CHANGED
|
@@ -201,16 +201,37 @@ export interface SubscriptionPayment {
|
|
|
201
201
|
subscriber: PlanSubscription;
|
|
202
202
|
__typename: 'SubscriptionPayment';
|
|
203
203
|
}
|
|
204
|
+
export interface AWSS3File {
|
|
205
|
+
_id: Scalars['String'];
|
|
206
|
+
name: (Scalars['String'] | null);
|
|
207
|
+
contentType: (Scalars['String'] | null);
|
|
208
|
+
size: (Scalars['Float'] | null);
|
|
209
|
+
useType: (Scalars['String'] | null);
|
|
210
|
+
url: Scalars['String'];
|
|
211
|
+
key: Scalars['String'];
|
|
212
|
+
pendingDelete: Scalars['Boolean'];
|
|
213
|
+
__typename: 'AWSS3File';
|
|
214
|
+
}
|
|
204
215
|
export interface HttpRequestField {
|
|
205
216
|
key: Scalars['String'];
|
|
206
217
|
value: Scalars['String'];
|
|
207
218
|
__typename: 'HttpRequestField';
|
|
208
219
|
}
|
|
209
220
|
export interface AWSS3UploadUrl {
|
|
210
|
-
|
|
221
|
+
uploadUrl: Scalars['String'];
|
|
211
222
|
fields: HttpRequestField[];
|
|
223
|
+
downloadUrl: Scalars['String'];
|
|
224
|
+
bucket: Scalars['String'];
|
|
225
|
+
key: Scalars['String'];
|
|
212
226
|
__typename: 'AWSS3UploadUrl';
|
|
213
227
|
}
|
|
228
|
+
export interface AWSS3CallResult {
|
|
229
|
+
httpStatus: Scalars['Float'];
|
|
230
|
+
result: Scalars['String'];
|
|
231
|
+
message: Scalars['String'];
|
|
232
|
+
errors: (Scalars['String'][] | null);
|
|
233
|
+
__typename: 'AWSS3CallResult';
|
|
234
|
+
}
|
|
214
235
|
export interface BrandStatsType {
|
|
215
236
|
campaigns: (Scalars['Float'] | null);
|
|
216
237
|
sponsorships: (Scalars['Float'] | null);
|
|
@@ -225,6 +246,8 @@ export interface BrandTranslation {
|
|
|
225
246
|
name: (Scalars['String'] | null);
|
|
226
247
|
slogan: (Scalars['String'] | null);
|
|
227
248
|
description: (Scalars['String'] | null);
|
|
249
|
+
logo: (AWSS3File | null);
|
|
250
|
+
banner: (AWSS3File | null);
|
|
228
251
|
__typename: 'BrandTranslation';
|
|
229
252
|
}
|
|
230
253
|
export interface Brand {
|
|
@@ -235,6 +258,8 @@ export interface Brand {
|
|
|
235
258
|
description: (Scalars['String'] | null);
|
|
236
259
|
approved: Scalars['Boolean'];
|
|
237
260
|
published: Scalars['Boolean'];
|
|
261
|
+
logo: (AWSS3File | null);
|
|
262
|
+
banner: (AWSS3File | null);
|
|
238
263
|
stats: (BrandStatsType | null);
|
|
239
264
|
operatorIds: (Scalars['String'][] | null);
|
|
240
265
|
translations: (BrandTranslation[] | null);
|
|
@@ -259,6 +284,11 @@ export interface Athlete {
|
|
|
259
284
|
nationalityIso2: (Scalars['String'] | null);
|
|
260
285
|
__typename: 'Athlete';
|
|
261
286
|
}
|
|
287
|
+
export interface Sport {
|
|
288
|
+
_id: Scalars['String'];
|
|
289
|
+
name: Scalars['String'];
|
|
290
|
+
__typename: 'Sport';
|
|
291
|
+
}
|
|
262
292
|
export interface Query {
|
|
263
293
|
tenant: Tenant;
|
|
264
294
|
tenantByEmail: Tenant;
|
|
@@ -277,6 +307,8 @@ export interface Query {
|
|
|
277
307
|
sponsors: Sponsor[];
|
|
278
308
|
athlete: Athlete[];
|
|
279
309
|
findAthleteById: Athlete;
|
|
310
|
+
sports: Sport[];
|
|
311
|
+
findSportById: Sport;
|
|
280
312
|
__typename: 'Query';
|
|
281
313
|
}
|
|
282
314
|
export interface Mutation {
|
|
@@ -286,13 +318,20 @@ export interface Mutation {
|
|
|
286
318
|
createTenantWithLogin: TenantWithUserLogin;
|
|
287
319
|
createTenantUserToken: TenantUserTokenWithInfo;
|
|
288
320
|
createTenantUserTokenFromEmailAndUri: TenantUserTokenWithInfo;
|
|
321
|
+
refreshTenantToken: UserToken;
|
|
289
322
|
createNonTenantedUserWithLogin: UserWithToken;
|
|
290
323
|
createNonTenantUserTokenFromEmail: UserToken;
|
|
324
|
+
refreshToken: UserToken;
|
|
325
|
+
deleteUploadedUseTypeFile: AWSS3CallResult;
|
|
326
|
+
deleteUploadedBucketFile: AWSS3CallResult;
|
|
327
|
+
registerS3UploadedFile: AWSS3File;
|
|
291
328
|
createIndustry: Industry;
|
|
292
329
|
createBrand: Brand;
|
|
293
330
|
registerSponsor: Sponsor;
|
|
294
331
|
createSponsor: Sponsor;
|
|
295
332
|
registerAthlete: Athlete;
|
|
333
|
+
createSport: Sport;
|
|
334
|
+
updateSport: Sport;
|
|
296
335
|
__typename: 'Mutation';
|
|
297
336
|
}
|
|
298
337
|
export interface ApiKeyGenqlSelection {
|
|
@@ -513,6 +552,18 @@ export interface SubscriptionPaymentGenqlSelection {
|
|
|
513
552
|
__typename?: boolean | number;
|
|
514
553
|
__scalar?: boolean | number;
|
|
515
554
|
}
|
|
555
|
+
export interface AWSS3FileGenqlSelection {
|
|
556
|
+
_id?: boolean | number;
|
|
557
|
+
name?: boolean | number;
|
|
558
|
+
contentType?: boolean | number;
|
|
559
|
+
size?: boolean | number;
|
|
560
|
+
useType?: boolean | number;
|
|
561
|
+
url?: boolean | number;
|
|
562
|
+
key?: boolean | number;
|
|
563
|
+
pendingDelete?: boolean | number;
|
|
564
|
+
__typename?: boolean | number;
|
|
565
|
+
__scalar?: boolean | number;
|
|
566
|
+
}
|
|
516
567
|
export interface HttpRequestFieldGenqlSelection {
|
|
517
568
|
key?: boolean | number;
|
|
518
569
|
value?: boolean | number;
|
|
@@ -520,8 +571,19 @@ export interface HttpRequestFieldGenqlSelection {
|
|
|
520
571
|
__scalar?: boolean | number;
|
|
521
572
|
}
|
|
522
573
|
export interface AWSS3UploadUrlGenqlSelection {
|
|
523
|
-
|
|
574
|
+
uploadUrl?: boolean | number;
|
|
524
575
|
fields?: HttpRequestFieldGenqlSelection;
|
|
576
|
+
downloadUrl?: boolean | number;
|
|
577
|
+
bucket?: boolean | number;
|
|
578
|
+
key?: boolean | number;
|
|
579
|
+
__typename?: boolean | number;
|
|
580
|
+
__scalar?: boolean | number;
|
|
581
|
+
}
|
|
582
|
+
export interface AWSS3CallResultGenqlSelection {
|
|
583
|
+
httpStatus?: boolean | number;
|
|
584
|
+
result?: boolean | number;
|
|
585
|
+
message?: boolean | number;
|
|
586
|
+
errors?: boolean | number;
|
|
525
587
|
__typename?: boolean | number;
|
|
526
588
|
__scalar?: boolean | number;
|
|
527
589
|
}
|
|
@@ -540,6 +602,8 @@ export interface BrandTranslationGenqlSelection {
|
|
|
540
602
|
name?: boolean | number;
|
|
541
603
|
slogan?: boolean | number;
|
|
542
604
|
description?: boolean | number;
|
|
605
|
+
logo?: AWSS3FileGenqlSelection;
|
|
606
|
+
banner?: AWSS3FileGenqlSelection;
|
|
543
607
|
__typename?: boolean | number;
|
|
544
608
|
__scalar?: boolean | number;
|
|
545
609
|
}
|
|
@@ -551,6 +615,8 @@ export interface BrandGenqlSelection {
|
|
|
551
615
|
description?: boolean | number;
|
|
552
616
|
approved?: boolean | number;
|
|
553
617
|
published?: boolean | number;
|
|
618
|
+
logo?: AWSS3FileGenqlSelection;
|
|
619
|
+
banner?: AWSS3FileGenqlSelection;
|
|
554
620
|
stats?: BrandStatsTypeGenqlSelection;
|
|
555
621
|
operatorIds?: boolean | number;
|
|
556
622
|
translations?: BrandTranslationGenqlSelection;
|
|
@@ -579,6 +645,12 @@ export interface AthleteGenqlSelection {
|
|
|
579
645
|
__typename?: boolean | number;
|
|
580
646
|
__scalar?: boolean | number;
|
|
581
647
|
}
|
|
648
|
+
export interface SportGenqlSelection {
|
|
649
|
+
_id?: boolean | number;
|
|
650
|
+
name?: boolean | number;
|
|
651
|
+
__typename?: boolean | number;
|
|
652
|
+
__scalar?: boolean | number;
|
|
653
|
+
}
|
|
582
654
|
export interface QueryGenqlSelection {
|
|
583
655
|
tenant?: (TenantGenqlSelection & {
|
|
584
656
|
__args: {
|
|
@@ -643,6 +715,12 @@ export interface QueryGenqlSelection {
|
|
|
643
715
|
athleteId: Scalars['String'];
|
|
644
716
|
};
|
|
645
717
|
});
|
|
718
|
+
sports?: SportGenqlSelection;
|
|
719
|
+
findSportById?: (SportGenqlSelection & {
|
|
720
|
+
__args: {
|
|
721
|
+
sportId: Scalars['String'];
|
|
722
|
+
};
|
|
723
|
+
});
|
|
646
724
|
__typename?: boolean | number;
|
|
647
725
|
__scalar?: boolean | number;
|
|
648
726
|
}
|
|
@@ -681,6 +759,11 @@ export interface MutationGenqlSelection {
|
|
|
681
759
|
requestTokenInfoDto: CreateTenantUserTokenFromEmailAndUriDto;
|
|
682
760
|
};
|
|
683
761
|
});
|
|
762
|
+
refreshTenantToken?: (UserTokenGenqlSelection & {
|
|
763
|
+
__args: {
|
|
764
|
+
dto: RefreshTokenInput;
|
|
765
|
+
};
|
|
766
|
+
});
|
|
684
767
|
createNonTenantedUserWithLogin?: (UserWithTokenGenqlSelection & {
|
|
685
768
|
__args: {
|
|
686
769
|
user: CreateActiveUserInput;
|
|
@@ -691,6 +774,26 @@ export interface MutationGenqlSelection {
|
|
|
691
774
|
email: Scalars['String'];
|
|
692
775
|
};
|
|
693
776
|
});
|
|
777
|
+
refreshToken?: (UserTokenGenqlSelection & {
|
|
778
|
+
__args: {
|
|
779
|
+
dto: RefreshTokenInput;
|
|
780
|
+
};
|
|
781
|
+
});
|
|
782
|
+
deleteUploadedUseTypeFile?: (AWSS3CallResultGenqlSelection & {
|
|
783
|
+
__args: {
|
|
784
|
+
input: AWSS3DeleteUseTypeFileDto;
|
|
785
|
+
};
|
|
786
|
+
});
|
|
787
|
+
deleteUploadedBucketFile?: (AWSS3CallResultGenqlSelection & {
|
|
788
|
+
__args: {
|
|
789
|
+
input: AWSS3DeleteBucketFileDto;
|
|
790
|
+
};
|
|
791
|
+
});
|
|
792
|
+
registerS3UploadedFile?: (AWSS3FileGenqlSelection & {
|
|
793
|
+
__args: {
|
|
794
|
+
input: AWSS3UploadedFileDto;
|
|
795
|
+
};
|
|
796
|
+
});
|
|
694
797
|
createIndustry?: (IndustryGenqlSelection & {
|
|
695
798
|
__args: {
|
|
696
799
|
input: CreateIndustryDto;
|
|
@@ -716,6 +819,17 @@ export interface MutationGenqlSelection {
|
|
|
716
819
|
input: RegisterAthleteDto;
|
|
717
820
|
};
|
|
718
821
|
});
|
|
822
|
+
createSport?: (SportGenqlSelection & {
|
|
823
|
+
__args: {
|
|
824
|
+
input: CreateSportDto;
|
|
825
|
+
};
|
|
826
|
+
});
|
|
827
|
+
updateSport?: (SportGenqlSelection & {
|
|
828
|
+
__args: {
|
|
829
|
+
sportId: Scalars['String'];
|
|
830
|
+
input: UpdateSportDto;
|
|
831
|
+
};
|
|
832
|
+
});
|
|
719
833
|
__typename?: boolean | number;
|
|
720
834
|
__scalar?: boolean | number;
|
|
721
835
|
}
|
|
@@ -737,10 +851,29 @@ export interface CreateTenantUserTokenFromEmailAndUriDto {
|
|
|
737
851
|
email: Scalars['String'];
|
|
738
852
|
tenant_uri: Scalars['String'];
|
|
739
853
|
}
|
|
854
|
+
export interface RefreshTokenInput {
|
|
855
|
+
refreshToken: Scalars['String'];
|
|
856
|
+
}
|
|
740
857
|
export interface CreateActiveUserInput {
|
|
741
858
|
loginEmail: Scalars['String'];
|
|
742
859
|
password?: (Scalars['String'] | null);
|
|
743
860
|
}
|
|
861
|
+
export interface AWSS3DeleteUseTypeFileDto {
|
|
862
|
+
name: Scalars['String'];
|
|
863
|
+
useType: Scalars['String'];
|
|
864
|
+
}
|
|
865
|
+
export interface AWSS3DeleteBucketFileDto {
|
|
866
|
+
key: Scalars['String'];
|
|
867
|
+
bucket: Scalars['String'];
|
|
868
|
+
credentialsId?: (Scalars['String'] | null);
|
|
869
|
+
}
|
|
870
|
+
export interface AWSS3UploadedFileDto {
|
|
871
|
+
key: Scalars['String'];
|
|
872
|
+
useType: Scalars['String'];
|
|
873
|
+
contentType: Scalars['String'];
|
|
874
|
+
originalFileName?: (Scalars['String'] | null);
|
|
875
|
+
fileSize?: (Scalars['Float'] | null);
|
|
876
|
+
}
|
|
744
877
|
export interface CreateIndustryDto {
|
|
745
878
|
name: Scalars['String'];
|
|
746
879
|
}
|
|
@@ -749,6 +882,8 @@ export interface CreateBrandDto {
|
|
|
749
882
|
description?: (Scalars['String'] | null);
|
|
750
883
|
slogan?: (Scalars['String'] | null);
|
|
751
884
|
website?: (Scalars['String'] | null);
|
|
885
|
+
logo?: (AWSS3UploadedFileDto | null);
|
|
886
|
+
banner?: (AWSS3UploadedFileDto | null);
|
|
752
887
|
translations?: (BrandTranslationDto[] | null);
|
|
753
888
|
}
|
|
754
889
|
export interface BrandTranslationDto {
|
|
@@ -757,6 +892,8 @@ export interface BrandTranslationDto {
|
|
|
757
892
|
name?: (Scalars['String'] | null);
|
|
758
893
|
description?: (Scalars['String'] | null);
|
|
759
894
|
slogan?: (Scalars['String'] | null);
|
|
895
|
+
logo?: (AWSS3UploadedFileDto | null);
|
|
896
|
+
banner?: (AWSS3UploadedFileDto | null);
|
|
760
897
|
}
|
|
761
898
|
export interface RegisterSponsorInput {
|
|
762
899
|
name: Scalars['String'];
|
|
@@ -787,6 +924,12 @@ export interface RegisterAthleteDto {
|
|
|
787
924
|
gender: Scalars['String'];
|
|
788
925
|
mainSport: Scalars['String'];
|
|
789
926
|
}
|
|
927
|
+
export interface CreateSportDto {
|
|
928
|
+
name: Scalars['String'];
|
|
929
|
+
}
|
|
930
|
+
export interface UpdateSportDto {
|
|
931
|
+
name: Scalars['String'];
|
|
932
|
+
}
|
|
790
933
|
export declare const isApiKey: (obj?: {
|
|
791
934
|
__typename?: any;
|
|
792
935
|
} | null) => obj is ApiKey;
|
|
@@ -850,12 +993,18 @@ export declare const isPlanSubscription: (obj?: {
|
|
|
850
993
|
export declare const isSubscriptionPayment: (obj?: {
|
|
851
994
|
__typename?: any;
|
|
852
995
|
} | null) => obj is SubscriptionPayment;
|
|
996
|
+
export declare const isAWSS3File: (obj?: {
|
|
997
|
+
__typename?: any;
|
|
998
|
+
} | null) => obj is AWSS3File;
|
|
853
999
|
export declare const isHttpRequestField: (obj?: {
|
|
854
1000
|
__typename?: any;
|
|
855
1001
|
} | null) => obj is HttpRequestField;
|
|
856
1002
|
export declare const isAWSS3UploadUrl: (obj?: {
|
|
857
1003
|
__typename?: any;
|
|
858
1004
|
} | null) => obj is AWSS3UploadUrl;
|
|
1005
|
+
export declare const isAWSS3CallResult: (obj?: {
|
|
1006
|
+
__typename?: any;
|
|
1007
|
+
} | null) => obj is AWSS3CallResult;
|
|
859
1008
|
export declare const isBrandStatsType: (obj?: {
|
|
860
1009
|
__typename?: any;
|
|
861
1010
|
} | null) => obj is BrandStatsType;
|
|
@@ -874,6 +1023,9 @@ export declare const isIndustry: (obj?: {
|
|
|
874
1023
|
export declare const isAthlete: (obj?: {
|
|
875
1024
|
__typename?: any;
|
|
876
1025
|
} | null) => obj is Athlete;
|
|
1026
|
+
export declare const isSport: (obj?: {
|
|
1027
|
+
__typename?: any;
|
|
1028
|
+
} | null) => obj is Sport;
|
|
877
1029
|
export declare const isQuery: (obj?: {
|
|
878
1030
|
__typename?: any;
|
|
879
1031
|
} | null) => obj is Query;
|
|
@@ -200,14 +200,35 @@ type SubscriptionPayment {
|
|
|
200
200
|
subscriber: PlanSubscription!
|
|
201
201
|
}
|
|
202
202
|
|
|
203
|
+
type AWSS3File {
|
|
204
|
+
_id: String!
|
|
205
|
+
name: String
|
|
206
|
+
contentType: String
|
|
207
|
+
size: Float
|
|
208
|
+
useType: String
|
|
209
|
+
url: String!
|
|
210
|
+
key: String!
|
|
211
|
+
pendingDelete: Boolean!
|
|
212
|
+
}
|
|
213
|
+
|
|
203
214
|
type HttpRequestField {
|
|
204
215
|
key: String!
|
|
205
216
|
value: String!
|
|
206
217
|
}
|
|
207
218
|
|
|
208
219
|
type AWSS3UploadUrl {
|
|
209
|
-
|
|
220
|
+
uploadUrl: String!
|
|
210
221
|
fields: [HttpRequestField!]!
|
|
222
|
+
downloadUrl: String!
|
|
223
|
+
bucket: String!
|
|
224
|
+
key: String!
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
type AWSS3CallResult {
|
|
228
|
+
httpStatus: Float!
|
|
229
|
+
result: String!
|
|
230
|
+
message: String!
|
|
231
|
+
errors: [String!]
|
|
211
232
|
}
|
|
212
233
|
|
|
213
234
|
type BrandStatsType {
|
|
@@ -224,6 +245,8 @@ type BrandTranslation {
|
|
|
224
245
|
name: String
|
|
225
246
|
slogan: String
|
|
226
247
|
description: String
|
|
248
|
+
logo: AWSS3File
|
|
249
|
+
banner: AWSS3File
|
|
227
250
|
}
|
|
228
251
|
|
|
229
252
|
type Brand {
|
|
@@ -234,6 +257,8 @@ type Brand {
|
|
|
234
257
|
description: String
|
|
235
258
|
approved: Boolean!
|
|
236
259
|
published: Boolean!
|
|
260
|
+
logo: AWSS3File
|
|
261
|
+
banner: AWSS3File
|
|
237
262
|
stats: BrandStatsType
|
|
238
263
|
operatorIds: [String!]
|
|
239
264
|
translations: [BrandTranslation!]
|
|
@@ -258,6 +283,11 @@ type Athlete {
|
|
|
258
283
|
nationalityIso2: String
|
|
259
284
|
}
|
|
260
285
|
|
|
286
|
+
type Sport {
|
|
287
|
+
_id: String!
|
|
288
|
+
name: String!
|
|
289
|
+
}
|
|
290
|
+
|
|
261
291
|
type Query {
|
|
262
292
|
tenant(_id: String!): Tenant!
|
|
263
293
|
tenantByEmail(email: String!): Tenant!
|
|
@@ -276,6 +306,8 @@ type Query {
|
|
|
276
306
|
sponsors: [Sponsor!]!
|
|
277
307
|
athlete: [Athlete!]!
|
|
278
308
|
findAthleteById(athleteId: String!): Athlete!
|
|
309
|
+
sports: [Sport!]!
|
|
310
|
+
findSportById(sportId: String!): Sport!
|
|
279
311
|
}
|
|
280
312
|
|
|
281
313
|
input AWSS3GetUploadDto {
|
|
@@ -290,13 +322,20 @@ type Mutation {
|
|
|
290
322
|
createTenantWithLogin(tenant: CreateTenantInput!): TenantWithUserLogin!
|
|
291
323
|
createTenantUserToken(requestTokenDto: CreateTenantUserTokenDto!): TenantUserTokenWithInfo!
|
|
292
324
|
createTenantUserTokenFromEmailAndUri(requestTokenInfoDto: CreateTenantUserTokenFromEmailAndUriDto!): TenantUserTokenWithInfo!
|
|
325
|
+
refreshTenantToken(dto: RefreshTokenInput!): UserToken!
|
|
293
326
|
createNonTenantedUserWithLogin(user: CreateActiveUserInput!): UserWithToken!
|
|
294
327
|
createNonTenantUserTokenFromEmail(email: String!): UserToken!
|
|
328
|
+
refreshToken(dto: RefreshTokenInput!): UserToken!
|
|
329
|
+
deleteUploadedUseTypeFile(input: AWSS3DeleteUseTypeFileDto!): AWSS3CallResult!
|
|
330
|
+
deleteUploadedBucketFile(input: AWSS3DeleteBucketFileDto!): AWSS3CallResult!
|
|
331
|
+
registerS3UploadedFile(input: AWSS3UploadedFileDto!): AWSS3File!
|
|
295
332
|
createIndustry(input: CreateIndustryDto!): Industry!
|
|
296
333
|
createBrand(input: CreateBrandDto!): Brand!
|
|
297
334
|
registerSponsor(input: RegisterSponsorInput!): Sponsor!
|
|
298
335
|
createSponsor(input: CreateSponsorDto!): Sponsor!
|
|
299
336
|
registerAthlete(input: RegisterAthleteDto!): Athlete!
|
|
337
|
+
createSport(input: CreateSportDto!): Sport!
|
|
338
|
+
updateSport(sportId: String!, input: UpdateSportDto!): Sport!
|
|
300
339
|
}
|
|
301
340
|
|
|
302
341
|
input CreateTenantInput {
|
|
@@ -321,11 +360,34 @@ input CreateTenantUserTokenFromEmailAndUriDto {
|
|
|
321
360
|
tenant_uri: String!
|
|
322
361
|
}
|
|
323
362
|
|
|
363
|
+
input RefreshTokenInput {
|
|
364
|
+
refreshToken: String!
|
|
365
|
+
}
|
|
366
|
+
|
|
324
367
|
input CreateActiveUserInput {
|
|
325
368
|
loginEmail: String!
|
|
326
369
|
password: String
|
|
327
370
|
}
|
|
328
371
|
|
|
372
|
+
input AWSS3DeleteUseTypeFileDto {
|
|
373
|
+
name: String!
|
|
374
|
+
useType: String!
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
input AWSS3DeleteBucketFileDto {
|
|
378
|
+
key: String!
|
|
379
|
+
bucket: String!
|
|
380
|
+
credentialsId: String
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
input AWSS3UploadedFileDto {
|
|
384
|
+
key: String!
|
|
385
|
+
useType: String!
|
|
386
|
+
contentType: String!
|
|
387
|
+
originalFileName: String
|
|
388
|
+
fileSize: Float
|
|
389
|
+
}
|
|
390
|
+
|
|
329
391
|
input CreateIndustryDto {
|
|
330
392
|
name: String!
|
|
331
393
|
}
|
|
@@ -335,6 +397,8 @@ input CreateBrandDto {
|
|
|
335
397
|
description: String
|
|
336
398
|
slogan: String
|
|
337
399
|
website: String
|
|
400
|
+
logo: AWSS3UploadedFileDto
|
|
401
|
+
banner: AWSS3UploadedFileDto
|
|
338
402
|
translations: [BrandTranslationDto!]
|
|
339
403
|
}
|
|
340
404
|
|
|
@@ -344,6 +408,8 @@ input BrandTranslationDto {
|
|
|
344
408
|
name: String
|
|
345
409
|
description: String
|
|
346
410
|
slogan: String
|
|
411
|
+
logo: AWSS3UploadedFileDto
|
|
412
|
+
banner: AWSS3UploadedFileDto
|
|
347
413
|
}
|
|
348
414
|
|
|
349
415
|
input RegisterSponsorInput {
|
|
@@ -376,4 +442,12 @@ input RegisterAthleteDto {
|
|
|
376
442
|
team: String
|
|
377
443
|
gender: String!
|
|
378
444
|
mainSport: String!
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
input CreateSportDto {
|
|
448
|
+
name: String!
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
input UpdateSportDto {
|
|
452
|
+
name: String!
|
|
379
453
|
}
|
package/src/client/schema.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.isMutation = exports.isQuery = exports.isAthlete = exports.isIndustry = exports.isSponsor = exports.isBrand = exports.isBrandTranslation = exports.isBrandStatsType = exports.isAWSS3UploadUrl = exports.isHttpRequestField = exports.isSubscriptionPayment = exports.isPlanSubscription = exports.isSubscriptionInvoice = exports.isInvoice = exports.isPlanPrice = exports.isPlan = exports.isPlaFeature = exports.isPayment = exports.isInvoiceItem = exports.isBillEntity = exports.isAgreement = exports.isTenantUserTokenWithInfo = exports.isTenantWithUserLogin = exports.isUriAvailableType = exports.isTenant = exports.isUserWithToken = exports.isUser = exports.isDomain = exports.isUserToken = exports.isApiKeyWithValue = exports.isApiKey = void 0;
|
|
3
|
+
exports.isMutation = exports.isQuery = exports.isSport = exports.isAthlete = exports.isIndustry = exports.isSponsor = exports.isBrand = exports.isBrandTranslation = exports.isBrandStatsType = exports.isAWSS3CallResult = exports.isAWSS3UploadUrl = exports.isHttpRequestField = exports.isAWSS3File = exports.isSubscriptionPayment = exports.isPlanSubscription = exports.isSubscriptionInvoice = exports.isInvoice = exports.isPlanPrice = exports.isPlan = exports.isPlaFeature = exports.isPayment = exports.isInvoiceItem = exports.isBillEntity = exports.isAgreement = exports.isTenantUserTokenWithInfo = exports.isTenantWithUserLogin = exports.isUriAvailableType = exports.isTenant = exports.isUserWithToken = exports.isUser = exports.isDomain = exports.isUserToken = exports.isApiKeyWithValue = exports.isApiKey = void 0;
|
|
4
4
|
const ApiKey_possibleTypes = ['ApiKey'];
|
|
5
5
|
const isApiKey = (obj) => {
|
|
6
6
|
if (!obj?.__typename)
|
|
@@ -148,6 +148,13 @@ const isSubscriptionPayment = (obj) => {
|
|
|
148
148
|
return SubscriptionPayment_possibleTypes.includes(obj.__typename);
|
|
149
149
|
};
|
|
150
150
|
exports.isSubscriptionPayment = isSubscriptionPayment;
|
|
151
|
+
const AWSS3File_possibleTypes = ['AWSS3File'];
|
|
152
|
+
const isAWSS3File = (obj) => {
|
|
153
|
+
if (!obj?.__typename)
|
|
154
|
+
throw new Error('__typename is missing in "isAWSS3File"');
|
|
155
|
+
return AWSS3File_possibleTypes.includes(obj.__typename);
|
|
156
|
+
};
|
|
157
|
+
exports.isAWSS3File = isAWSS3File;
|
|
151
158
|
const HttpRequestField_possibleTypes = ['HttpRequestField'];
|
|
152
159
|
const isHttpRequestField = (obj) => {
|
|
153
160
|
if (!obj?.__typename)
|
|
@@ -162,6 +169,13 @@ const isAWSS3UploadUrl = (obj) => {
|
|
|
162
169
|
return AWSS3UploadUrl_possibleTypes.includes(obj.__typename);
|
|
163
170
|
};
|
|
164
171
|
exports.isAWSS3UploadUrl = isAWSS3UploadUrl;
|
|
172
|
+
const AWSS3CallResult_possibleTypes = ['AWSS3CallResult'];
|
|
173
|
+
const isAWSS3CallResult = (obj) => {
|
|
174
|
+
if (!obj?.__typename)
|
|
175
|
+
throw new Error('__typename is missing in "isAWSS3CallResult"');
|
|
176
|
+
return AWSS3CallResult_possibleTypes.includes(obj.__typename);
|
|
177
|
+
};
|
|
178
|
+
exports.isAWSS3CallResult = isAWSS3CallResult;
|
|
165
179
|
const BrandStatsType_possibleTypes = ['BrandStatsType'];
|
|
166
180
|
const isBrandStatsType = (obj) => {
|
|
167
181
|
if (!obj?.__typename)
|
|
@@ -204,6 +218,13 @@ const isAthlete = (obj) => {
|
|
|
204
218
|
return Athlete_possibleTypes.includes(obj.__typename);
|
|
205
219
|
};
|
|
206
220
|
exports.isAthlete = isAthlete;
|
|
221
|
+
const Sport_possibleTypes = ['Sport'];
|
|
222
|
+
const isSport = (obj) => {
|
|
223
|
+
if (!obj?.__typename)
|
|
224
|
+
throw new Error('__typename is missing in "isSport"');
|
|
225
|
+
return Sport_possibleTypes.includes(obj.__typename);
|
|
226
|
+
};
|
|
227
|
+
exports.isSport = isSport;
|
|
207
228
|
const Query_possibleTypes = ['Query'];
|
|
208
229
|
const isQuery = (obj) => {
|
|
209
230
|
if (!obj?.__typename)
|
package/src/client/schema.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../../../libs/vtx-backend-client/src/client/schema.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../../../libs/vtx-backend-client/src/client/schema.ts"],"names":[],"mappings":"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"}
|