@vertikalx/vtx-backend-client 3.0.0-dev-max.64 → 3.0.0-dev-max.66
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 +14 -0
- package/src/api/vtx-base-api.js.map +1 -1
- package/src/client/schema.d.ts +5 -0
- package/src/client/schema.js.map +1 -1
- package/src/client/types.d.ts +3 -0
- package/src/client/types.js +9 -0
- 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
|
@@ -9731,6 +9731,10 @@ class VTXBaseAPI {
|
|
|
9731
9731
|
dateStart: true,
|
|
9732
9732
|
dateEnd: true,
|
|
9733
9733
|
dateCreated: true,
|
|
9734
|
+
totalCodes: true,
|
|
9735
|
+
availableCodes: true,
|
|
9736
|
+
disclaimer: true,
|
|
9737
|
+
genericCode: true,
|
|
9734
9738
|
offerImage: {
|
|
9735
9739
|
_id: true,
|
|
9736
9740
|
name: true,
|
|
@@ -9754,6 +9758,16 @@ class VTXBaseAPI {
|
|
|
9754
9758
|
_id: true,
|
|
9755
9759
|
name: true,
|
|
9756
9760
|
description: true
|
|
9761
|
+
},
|
|
9762
|
+
criteria: {
|
|
9763
|
+
_id: true,
|
|
9764
|
+
minAge: true,
|
|
9765
|
+
maxAge: true,
|
|
9766
|
+
allowedGenders: true
|
|
9767
|
+
},
|
|
9768
|
+
availableCountries: {
|
|
9769
|
+
_id: true,
|
|
9770
|
+
name: true
|
|
9757
9771
|
}
|
|
9758
9772
|
},
|
|
9759
9773
|
pagination: {
|