@vertikalx/vtx-backend-client 1.0.0-dev-daniel.229 → 1.0.0-dev-carlos.7

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertikalx/vtx-backend-client",
3
- "version": "1.0.0-dev-daniel.229",
3
+ "version": "1.0.0-dev-carlos.7",
4
4
  "description": "GraphQL API generated client for VTX",
5
5
  "types": "src/index.d.ts",
6
6
  "main": "src/index.js",
@@ -1,4 +1,4 @@
1
- import { User, AddValuesResponse, UserToken, UserWithToken, Athlete, RegisterAthleteDto, Brand, CreateBrandDto, BrandGenqlSelection, AWSS3UploadUrl, AWSS3GetUploadDto, CreateTenantInput, Tenant, TenantWithUserLogin, RegisterUserToDomainFromEmailInput, DecodedToken, Sponsorship, SponsorshipGenqlSelection, CreateSponsorshipDto, SponsorAthleteInvitation, InviteAthletesDto, RegisterUserDto, VerificationCode, VerifyCodeDto, FindSponsorAthleteInvitationDto, FindVtxUserDto, City, SportLevel, Sport, UserImages, EditValueResponse, CreateAthleteCompetitionDto, AthleteCompetition, GetSportEventsDto, SportsEvent, CreateSportEventDto, GetAthleteCompetitionsDto, AthleteMembership, AthleteMembershipGenqlSelection, MembershipOrganizationReferenceGenqlSelection, MembershipOrganizationReference, CreateMembershipOrganizationDto, CreateAthleteMembershipDto, DeleteSingleValueDto, DeleteSingleValueResponse, FundRaisingCampaign, CreateFundingCampaignDto, FundRaisingCampaignGenqlSelection, AthleteQueryDto, AthleteQueryResponse, StripeSessionGenqlSelection, CreateStripeAccountDto, StripeSession, StripeAccountReferenceGenqlSelection, StripeAccountReference, StripeCheckoutSessionGenqlSelection, StripeCheckoutSession, DonationCheckoutDto, GetDatabaseFileDto, TextDatabaseFileGenqlSelection, TextDatabaseFile, StripeQueryDto, StripeObject, SetFundingStatusDto, EditPictureResponse, UploadAlbumsPicturesDto, AWSS3DeleteUseTypeFileDto, EditPictureDto, Album } from '../client';
1
+ import { User, AddValuesResponse, UserToken, UserWithToken, Athlete, RegisterAthleteDto, Brand, CreateBrandDto, BrandGenqlSelection, AWSS3UploadUrl, AWSS3GetUploadDto, CreateTenantInput, Tenant, TenantWithUserLogin, RegisterUserToDomainFromEmailInput, DecodedToken, Sponsorship, SponsorshipGenqlSelection, CreateSponsorshipDto, SponsorAthleteInvitation, InviteAthletesDto, RegisterUserDto, VerificationCode, VerifyCodeDto, FindSponsorAthleteInvitationDto, FindVtxUserDto, City, SportLevel, Sport, UserImages, EditValueResponse, CreateAthleteCompetitionDto, AthleteCompetition, GetSportEventsDto, SportsEvent, CreateSportEventDto, GetAthleteCompetitionsDto, AthleteMembership, AthleteMembershipGenqlSelection, MembershipOrganizationReferenceGenqlSelection, MembershipOrganizationReference, CreateMembershipOrganizationDto, CreateAthleteMembershipDto, DeleteSingleValueDto, DeleteSingleValueResponse, FundRaisingCampaign, CreateFundingCampaignDto, FundRaisingCampaignGenqlSelection, AthleteQueryDto, AthleteQueryResponse, StripeSessionGenqlSelection, CreateStripeAccountDto, StripeSession, StripeAccountReferenceGenqlSelection, StripeAccountReference, StripeCheckoutSessionGenqlSelection, StripeCheckoutSession, DonationCheckoutDto, GetDatabaseFileDto, TextDatabaseFileGenqlSelection, TextDatabaseFile, StripeQueryDto, StripeObject, SetFundingStatusDto, EditPictureResponse, UploadAlbumsPicturesDto, AWSS3DeleteUseTypeFileDto, EditPictureDto, Album, AthleteIntegrationReference } from '../client';
2
2
  import { ITypedBackendResponse } from './backend-response';
3
3
  import { APICallHeaders } from './api-call-headers';
4
4
  export declare class VTXBaseAPI {
@@ -81,4 +81,5 @@ export declare class VTXBaseAPI {
81
81
  getAthleteAlbums(): Promise<ITypedBackendResponse<Album[]>>;
82
82
  getAthleteAlbumsById(): Promise<ITypedBackendResponse<Album>>;
83
83
  queryAthletesWithFilters(dto: AthleteQueryDto): Promise<ITypedBackendResponse<AthleteQueryResponse>>;
84
+ getAthleteIntegrationsByAthlete(): Promise<ITypedBackendResponse<AthleteIntegrationReference>>;
84
85
  }
@@ -6190,6 +6190,52 @@ class VTXBaseAPI {
6190
6190
  }
6191
6191
  return retValue;
6192
6192
  }
6193
+ async getAthleteIntegrationsByAthlete() {
6194
+ const client = (0, client_1.createClient)({
6195
+ url: this.backendUrl + '/graphql',
6196
+ headers: this.headers,
6197
+ });
6198
+ let retValue = {};
6199
+ const fields = {
6200
+ _id: true,
6201
+ athlete: {
6202
+ _id: true,
6203
+ },
6204
+ hasStravaIntegration: true,
6205
+ stravaTokenExpires: true,
6206
+ stravaAthleteData: {
6207
+ id: true,
6208
+ username: true,
6209
+ firstname: true,
6210
+ lastname: true,
6211
+ bio: true,
6212
+ city: true,
6213
+ state: true,
6214
+ country: true,
6215
+ sex: true,
6216
+ premium: true,
6217
+ profile: true,
6218
+ created_at: true,
6219
+ updated_at: true,
6220
+ weight: true
6221
+ }
6222
+ };
6223
+ try {
6224
+ const response = await client.query({
6225
+ getAthleteIntegrationsByAthlete: {
6226
+ ...fields
6227
+ },
6228
+ });
6229
+ retValue = (0, response_builder_1.buildResponse)(response, 'getAthleteIntegrationsByAthlete', (r) => {
6230
+ const isResponseOk = !!response?.getAthleteIntegrationsByAthlete?._id;
6231
+ return isResponseOk;
6232
+ });
6233
+ }
6234
+ catch (err) {
6235
+ retValue = (0, response_builder_1.buildErrorResponse)(err);
6236
+ }
6237
+ return retValue;
6238
+ }
6193
6239
  }
6194
6240
  exports.VTXBaseAPI = VTXBaseAPI;
6195
6241
  VTXBaseAPI.Logger = {