@vertikalx/vtx-backend-client 1.0.1-dev-max.4 → 1.0.1-dev-max.6
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 +23 -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 +22 -0
- package/src/api/vtx-base-api.js.map +1 -1
- package/tsconfig.lib.tsbuildinfo +1 -1
|
@@ -2318,6 +2318,17 @@ class VTXBaseAPI {
|
|
|
2318
2318
|
}
|
|
2319
2319
|
},
|
|
2320
2320
|
},
|
|
2321
|
+
budget: {
|
|
2322
|
+
_id: true,
|
|
2323
|
+
initialFunds: true,
|
|
2324
|
+
totalRequired: true,
|
|
2325
|
+
items: {
|
|
2326
|
+
_id: true,
|
|
2327
|
+
quantity: true,
|
|
2328
|
+
concept: true,
|
|
2329
|
+
itemCost: true
|
|
2330
|
+
}
|
|
2331
|
+
},
|
|
2321
2332
|
participationDate: true,
|
|
2322
2333
|
result: {
|
|
2323
2334
|
_id: true,
|
|
@@ -5494,7 +5505,18 @@ class VTXBaseAPI {
|
|
|
5494
5505
|
finishTimeMS: true,
|
|
5495
5506
|
resultWebLink: true,
|
|
5496
5507
|
totalParticipants: true,
|
|
5497
|
-
}
|
|
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
|
+
},
|
|
5498
5520
|
}
|
|
5499
5521
|
},
|
|
5500
5522
|
};
|