@vertikalx/vtx-backend-client 1.0.0-dev-carlos.7 → 1.0.0-dev-geo.47
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/vtx-base-api.d.ts +3 -2
- package/src/api/vtx-base-api.js +68 -46
- package/src/api/vtx-base-api.js.map +1 -1
- package/src/client/schema.d.ts +2 -67
- package/src/client/schema.graphql +1728 -0
- package/src/client/schema.js +2 -16
- package/src/client/schema.js.map +1 -1
- package/src/client/types.d.ts +1 -34
- package/src/client/types.js +115 -202
- package/src/client/types.js.map +1 -1
- package/tsconfig.lib.tsbuildinfo +1 -1
package/package.json
CHANGED
|
@@ -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,
|
|
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, State, Country } from '../client';
|
|
2
2
|
import { ITypedBackendResponse } from './backend-response';
|
|
3
3
|
import { APICallHeaders } from './api-call-headers';
|
|
4
4
|
export declare class VTXBaseAPI {
|
|
@@ -43,6 +43,8 @@ export declare class VTXBaseAPI {
|
|
|
43
43
|
findCityById(cityId: string): Promise<ITypedBackendResponse<City>>;
|
|
44
44
|
getSportLevels(): Promise<ITypedBackendResponse<SportLevel[]>>;
|
|
45
45
|
getSports(): Promise<ITypedBackendResponse<Sport[]>>;
|
|
46
|
+
getStates(): Promise<ITypedBackendResponse<State[]>>;
|
|
47
|
+
getCountries(): Promise<ITypedBackendResponse<Country[]>>;
|
|
46
48
|
loginUserFromCredentialsVtx(username: string, password: string): Promise<ITypedBackendResponse<UserWithToken>>;
|
|
47
49
|
validateUserCredentialsVtx(username: string, password: string): Promise<ITypedBackendResponse<User>>;
|
|
48
50
|
findAthleteForUser(loginEmail: string): Promise<ITypedBackendResponse<Athlete>>;
|
|
@@ -81,5 +83,4 @@ export declare class VTXBaseAPI {
|
|
|
81
83
|
getAthleteAlbums(): Promise<ITypedBackendResponse<Album[]>>;
|
|
82
84
|
getAthleteAlbumsById(): Promise<ITypedBackendResponse<Album>>;
|
|
83
85
|
queryAthletesWithFilters(dto: AthleteQueryDto): Promise<ITypedBackendResponse<AthleteQueryResponse>>;
|
|
84
|
-
getAthleteIntegrationsByAthlete(): Promise<ITypedBackendResponse<AthleteIntegrationReference>>;
|
|
85
86
|
}
|
package/src/api/vtx-base-api.js
CHANGED
|
@@ -1788,6 +1788,74 @@ class VTXBaseAPI {
|
|
|
1788
1788
|
}
|
|
1789
1789
|
return retValue;
|
|
1790
1790
|
}
|
|
1791
|
+
async getStates() {
|
|
1792
|
+
const client = (0, client_1.createClient)({
|
|
1793
|
+
url: this.backendUrl + "/graphql",
|
|
1794
|
+
headers: this.headers,
|
|
1795
|
+
});
|
|
1796
|
+
const fields = {
|
|
1797
|
+
_id: true,
|
|
1798
|
+
name: true,
|
|
1799
|
+
country: {
|
|
1800
|
+
_id: true,
|
|
1801
|
+
name: true
|
|
1802
|
+
}
|
|
1803
|
+
};
|
|
1804
|
+
let retValue;
|
|
1805
|
+
try {
|
|
1806
|
+
const response = await client.query({
|
|
1807
|
+
getStates: {
|
|
1808
|
+
__args: {},
|
|
1809
|
+
...fields
|
|
1810
|
+
}
|
|
1811
|
+
});
|
|
1812
|
+
VTXBaseAPI.Logger.debug('getStates Response:');
|
|
1813
|
+
VTXBaseAPI.Logger.debug(JSON.stringify(response, null, 2));
|
|
1814
|
+
retValue = (0, response_builder_1.buildResponse)(response, 'getStates', (r) => {
|
|
1815
|
+
VTXBaseAPI.Logger.debug(JSON.stringify(response, null, 2));
|
|
1816
|
+
const isResponseOk = true && Array.isArray(response?.getStates);
|
|
1817
|
+
return isResponseOk;
|
|
1818
|
+
});
|
|
1819
|
+
}
|
|
1820
|
+
catch (err1) {
|
|
1821
|
+
VTXBaseAPI.Logger.error('getStates err1:');
|
|
1822
|
+
VTXBaseAPI.Logger.error(err1);
|
|
1823
|
+
retValue = (0, response_builder_1.buildErrorResponse)(err1);
|
|
1824
|
+
}
|
|
1825
|
+
return retValue;
|
|
1826
|
+
}
|
|
1827
|
+
async getCountries() {
|
|
1828
|
+
const client = (0, client_1.createClient)({
|
|
1829
|
+
url: this.backendUrl + "/graphql",
|
|
1830
|
+
headers: this.headers,
|
|
1831
|
+
});
|
|
1832
|
+
const fields = {
|
|
1833
|
+
_id: true,
|
|
1834
|
+
name: true,
|
|
1835
|
+
};
|
|
1836
|
+
let retValue;
|
|
1837
|
+
try {
|
|
1838
|
+
const response = await client.query({
|
|
1839
|
+
getCountries: {
|
|
1840
|
+
__args: {},
|
|
1841
|
+
...fields
|
|
1842
|
+
}
|
|
1843
|
+
});
|
|
1844
|
+
VTXBaseAPI.Logger.debug('getCountries Response:');
|
|
1845
|
+
VTXBaseAPI.Logger.debug(JSON.stringify(response, null, 2));
|
|
1846
|
+
retValue = (0, response_builder_1.buildResponse)(response, 'getCountries', (r) => {
|
|
1847
|
+
VTXBaseAPI.Logger.debug(JSON.stringify(response, null, 2));
|
|
1848
|
+
const isResponseOk = true && Array.isArray(response?.getCountries);
|
|
1849
|
+
return isResponseOk;
|
|
1850
|
+
});
|
|
1851
|
+
}
|
|
1852
|
+
catch (err1) {
|
|
1853
|
+
VTXBaseAPI.Logger.error('getCountries err1:');
|
|
1854
|
+
VTXBaseAPI.Logger.error(err1);
|
|
1855
|
+
retValue = (0, response_builder_1.buildErrorResponse)(err1);
|
|
1856
|
+
}
|
|
1857
|
+
return retValue;
|
|
1858
|
+
}
|
|
1791
1859
|
async loginUserFromCredentialsVtx(username, password) {
|
|
1792
1860
|
const client = (0, client_1.createClient)({
|
|
1793
1861
|
url: this.backendUrl + '/graphql',
|
|
@@ -6190,52 +6258,6 @@ class VTXBaseAPI {
|
|
|
6190
6258
|
}
|
|
6191
6259
|
return retValue;
|
|
6192
6260
|
}
|
|
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
|
-
}
|
|
6239
6261
|
}
|
|
6240
6262
|
exports.VTXBaseAPI = VTXBaseAPI;
|
|
6241
6263
|
VTXBaseAPI.Logger = {
|