@escapenavigator/services 1.6.63 → 1.6.65

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.
@@ -1,6 +1,6 @@
1
1
  import { SuccessRO } from '@escapenavigator/types/dist/shared/success.ro';
2
2
  import { ApiMethodDeclaration } from '..';
3
- declare type ParamsData = undefined;
3
+ declare type ParamsData = number;
4
4
  declare type ResponseData = SuccessRO;
5
5
  export declare const addMissingLanguages: ApiMethodDeclaration<ParamsData, ResponseData>;
6
6
  export {};
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.addMissingLanguages = void 0;
4
- var addMissingLanguages = function () { return ({
5
- url: '/translations/missing-language/add',
4
+ var addMissingLanguages = function (id) { return ({
5
+ url: "/translations/missing-language/add/".concat(id),
6
6
  method: 'GET',
7
7
  }); };
8
8
  exports.addMissingLanguages = addMissingLanguages;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@escapenavigator/services",
3
- "version": "1.6.63",
3
+ "version": "1.6.65",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -12,10 +12,10 @@
12
12
  "scripts": {
13
13
  "build": "rm -rf dist && tsc --project tsconfig.json"
14
14
  },
15
- "gitHead": "5d85acba179f4134033bb160fb8e7b7b9f13b616",
15
+ "gitHead": "4a602dc8767f059cb5e43336e10b5d8f95762358",
16
16
  "dependencies": {
17
- "@escapenavigator/types": "^1.6.60",
18
- "@escapenavigator/utils": "^1.6.61",
17
+ "@escapenavigator/types": "^1.6.62",
18
+ "@escapenavigator/utils": "^1.6.63",
19
19
  "axios": "^0.21.4",
20
20
  "class-transformer": "^0.5.1",
21
21
  "class-validator": "^0.13.1",