@vertikalx/vtx-backend-client 2.0.0-dev-daniel.6 → 2.0.0-dev-alejo.21
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.js +2 -32
- package/src/api/vtx-base-api.js.map +1 -1
- package/src/client/schema.d.ts +0 -28
- package/src/client/schema.js +2 -9
- package/src/client/schema.js.map +1 -1
- package/src/client/types.d.ts +0 -17
- package/src/client/types.js +216 -259
- package/src/client/types.js.map +1 -1
- package/tsconfig.lib.tsbuildinfo +1 -1
package/package.json
CHANGED
package/src/api/vtx-base-api.js
CHANGED
|
@@ -3783,7 +3783,8 @@ class VTXBaseAPI {
|
|
|
3783
3783
|
eventWebSite: true,
|
|
3784
3784
|
mainSport: {
|
|
3785
3785
|
_id: true,
|
|
3786
|
-
name: true
|
|
3786
|
+
name: true,
|
|
3787
|
+
resultType: true
|
|
3787
3788
|
},
|
|
3788
3789
|
startDate: true,
|
|
3789
3790
|
endDate: true,
|
|
@@ -4273,12 +4274,6 @@ class VTXBaseAPI {
|
|
|
4273
4274
|
initialFundsObtained: true,
|
|
4274
4275
|
fundsObtained: true,
|
|
4275
4276
|
vtxComissionPct: true,
|
|
4276
|
-
video: {
|
|
4277
|
-
_id: true,
|
|
4278
|
-
source: true,
|
|
4279
|
-
url: true,
|
|
4280
|
-
sourceData: true
|
|
4281
|
-
},
|
|
4282
4277
|
location: {
|
|
4283
4278
|
userProvidedLatitude: true,
|
|
4284
4279
|
userProvidedLongitude: true,
|
|
@@ -4985,12 +4980,6 @@ class VTXBaseAPI {
|
|
|
4985
4980
|
initialFundsObtained: true,
|
|
4986
4981
|
fundsObtained: true,
|
|
4987
4982
|
vtxComissionPct: true,
|
|
4988
|
-
video: {
|
|
4989
|
-
_id: true,
|
|
4990
|
-
source: true,
|
|
4991
|
-
url: true,
|
|
4992
|
-
sourceData: true
|
|
4993
|
-
},
|
|
4994
4983
|
location: {
|
|
4995
4984
|
userProvidedLatitude: true,
|
|
4996
4985
|
userProvidedLongitude: true,
|
|
@@ -5858,12 +5847,6 @@ class VTXBaseAPI {
|
|
|
5858
5847
|
initialFundsObtained: true,
|
|
5859
5848
|
fundsObtained: true,
|
|
5860
5849
|
vtxComissionPct: true,
|
|
5861
|
-
video: {
|
|
5862
|
-
_id: true,
|
|
5863
|
-
source: true,
|
|
5864
|
-
url: true,
|
|
5865
|
-
sourceData: true
|
|
5866
|
-
},
|
|
5867
5850
|
location: {
|
|
5868
5851
|
userProvidedLatitude: true,
|
|
5869
5852
|
userProvidedLongitude: true,
|
|
@@ -6007,12 +5990,6 @@ class VTXBaseAPI {
|
|
|
6007
5990
|
initialFundsObtained: true,
|
|
6008
5991
|
fundsObtained: true,
|
|
6009
5992
|
vtxComissionPct: true,
|
|
6010
|
-
video: {
|
|
6011
|
-
_id: true,
|
|
6012
|
-
source: true,
|
|
6013
|
-
url: true,
|
|
6014
|
-
sourceData: true
|
|
6015
|
-
},
|
|
6016
5993
|
location: {
|
|
6017
5994
|
userProvidedLatitude: true,
|
|
6018
5995
|
userProvidedLongitude: true,
|
|
@@ -6803,12 +6780,6 @@ class VTXBaseAPI {
|
|
|
6803
6780
|
initialFundsObtained: true,
|
|
6804
6781
|
fundsObtained: true,
|
|
6805
6782
|
vtxComissionPct: true,
|
|
6806
|
-
video: {
|
|
6807
|
-
_id: true,
|
|
6808
|
-
source: true,
|
|
6809
|
-
url: true,
|
|
6810
|
-
sourceData: true
|
|
6811
|
-
},
|
|
6812
6783
|
location: {
|
|
6813
6784
|
userProvidedLatitude: true,
|
|
6814
6785
|
userProvidedLongitude: true,
|
|
@@ -7033,7 +7004,6 @@ class VTXBaseAPI {
|
|
|
7033
7004
|
},
|
|
7034
7005
|
});
|
|
7035
7006
|
VTXBaseAPI.Logger.debug('saveAthleteCompetitionResult Response:');
|
|
7036
|
-
VTXBaseAPI.Logger.debug(JSON.stringify(response, null, 2));
|
|
7037
7007
|
retValue = (0, response_builder_1.buildResponse)(response, 'saveAthleteCompetitionResult', (r) => {
|
|
7038
7008
|
const isResponseOk = true && response?.saveAthleteCompetitionResult?._id;
|
|
7039
7009
|
return isResponseOk;
|