@movalib/movalib-commons 1.27.0 → 1.28.0

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.
@@ -9,6 +9,7 @@ var GarageService = /** @class */ (function () {
9
9
  return (0, ApiHelper_1.request)({
10
10
  url: "".concat(ApiHelper_1.API_BASE_URL, "/garage/").concat(garageId, "/subscription-mandate"),
11
11
  method: Enums_1.APIMethod.POST,
12
+ appType: Enums_1.MovaAppType.GARAGE
12
13
  });
13
14
  };
14
15
  GarageService.getGarageAllData = function (garageId) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@movalib/movalib-commons",
3
- "version": "1.27.0",
3
+ "version": "1.28.0",
4
4
  "description": "Bibliothèque d'objets communs à l'ensemble des projets React de Movalib",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,6 +11,7 @@ export default class GarageService {
11
11
  return request({
12
12
  url: `${API_BASE_URL}/garage/${garageId}/subscription-mandate`,
13
13
  method: APIMethod.POST,
14
+ appType: MovaAppType.GARAGE
14
15
  });
15
16
  }
16
17