@vertikalx/vtx-backend-client 1.0.1-dev-max.5 → 1.0.1-dev-max.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/libs/vtx-backend-client/package.json +1 -1
- package/libs/vtx-backend-client/src/api/vtx-base-api.js +12 -1
- package/libs/vtx-backend-client/src/api/vtx-base-api.js.map +1 -1
- package/package.json +1 -1
- package/src/api/vtx-base-api.js +23 -1
- package/src/api/vtx-base-api.js.map +1 -1
- package/tsconfig.lib.tsbuildinfo +1 -1
|
@@ -5505,7 +5505,18 @@ class VTXBaseAPI {
|
|
|
5505
5505
|
finishTimeMS: true,
|
|
5506
5506
|
resultWebLink: true,
|
|
5507
5507
|
totalParticipants: true,
|
|
5508
|
-
}
|
|
5508
|
+
},
|
|
5509
|
+
budget: {
|
|
5510
|
+
_id: true,
|
|
5511
|
+
initialFunds: true,
|
|
5512
|
+
totalRequired: true,
|
|
5513
|
+
items: {
|
|
5514
|
+
_id: true,
|
|
5515
|
+
quantity: true,
|
|
5516
|
+
concept: true,
|
|
5517
|
+
itemCost: true
|
|
5518
|
+
}
|
|
5519
|
+
},
|
|
5509
5520
|
}
|
|
5510
5521
|
},
|
|
5511
5522
|
};
|