@vertikalx/vtx-backend-client 2.0.0-dev-carlos.21 → 2.0.0-dev-carlos.23
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
package/src/api/vtx-base-api.js
CHANGED
|
@@ -4623,6 +4623,7 @@ class VTXBaseAPI {
|
|
|
4623
4623
|
},
|
|
4624
4624
|
currentCampaign: {
|
|
4625
4625
|
_id: true,
|
|
4626
|
+
budgetMode: true,
|
|
4626
4627
|
status: true,
|
|
4627
4628
|
title: true,
|
|
4628
4629
|
motivation: true,
|
|
@@ -4695,7 +4696,19 @@ class VTXBaseAPI {
|
|
|
4695
4696
|
score: true,
|
|
4696
4697
|
finishTimeMS: true,
|
|
4697
4698
|
resultWebLink: true
|
|
4698
|
-
}
|
|
4699
|
+
},
|
|
4700
|
+
budget: {
|
|
4701
|
+
_id: true,
|
|
4702
|
+
initialFunds: true,
|
|
4703
|
+
totalRequired: true,
|
|
4704
|
+
items: {
|
|
4705
|
+
_id: true,
|
|
4706
|
+
quantity: true,
|
|
4707
|
+
concept: true,
|
|
4708
|
+
itemCost: true,
|
|
4709
|
+
unit: true
|
|
4710
|
+
}
|
|
4711
|
+
},
|
|
4699
4712
|
}
|
|
4700
4713
|
}
|
|
4701
4714
|
};
|
|
@@ -6653,7 +6666,19 @@ class VTXBaseAPI {
|
|
|
6653
6666
|
score: true,
|
|
6654
6667
|
finishTimeMS: true,
|
|
6655
6668
|
resultWebLink: true
|
|
6656
|
-
}
|
|
6669
|
+
},
|
|
6670
|
+
budget: {
|
|
6671
|
+
_id: true,
|
|
6672
|
+
initialFunds: true,
|
|
6673
|
+
totalRequired: true,
|
|
6674
|
+
items: {
|
|
6675
|
+
_id: true,
|
|
6676
|
+
quantity: true,
|
|
6677
|
+
concept: true,
|
|
6678
|
+
itemCost: true,
|
|
6679
|
+
unit: true
|
|
6680
|
+
}
|
|
6681
|
+
},
|
|
6657
6682
|
}
|
|
6658
6683
|
}
|
|
6659
6684
|
};
|