@escapenavigator/services 1.10.142 → 1.10.144
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/dist/api/certificatesales-api/create.d.ts +9 -0
- package/dist/api/certificatesales-api/create.js +12 -0
- package/dist/api/certificatesales-api/index.d.ts +2 -0
- package/dist/api/certificatesales-api/index.js +2 -0
- package/dist/api/dynamic-resources-api/create-dynamic-resource.d.ts +9 -0
- package/dist/api/dynamic-resources-api/create-dynamic-resource.js +12 -0
- package/dist/api/dynamic-resources-api/get-calendar-dynamic-resources.d.ts +7 -0
- package/dist/api/dynamic-resources-api/get-calendar-dynamic-resources.js +9 -0
- package/dist/api/dynamic-resources-api/get-dynamic-resource.d.ts +6 -0
- package/dist/api/dynamic-resources-api/get-dynamic-resource.js +8 -0
- package/dist/api/dynamic-resources-api/index.d.ts +14 -0
- package/dist/api/dynamic-resources-api/index.js +15 -0
- package/dist/api/dynamic-resources-api/remove-dynamic-resource.d.ts +6 -0
- package/dist/api/dynamic-resources-api/remove-dynamic-resource.js +8 -0
- package/dist/api/dynamic-resources-api/update-dynamic-resource.d.ts +10 -0
- package/dist/api/dynamic-resources-api/update-dynamic-resource.js +12 -0
- package/dist/api/init-client-api.d.ts +2 -0
- package/dist/api/init-client-api.js +2 -0
- package/dist/api/subway-stations-api/index.d.ts +4 -0
- package/dist/api/subway-stations-api/index.js +4 -0
- package/dist/api/subway-stations-api/list-import-cities.d.ts +3 -0
- package/dist/api/subway-stations-api/list-import-cities.js +8 -0
- package/dist/api/subway-stations-api/sync-city.d.ts +7 -0
- package/dist/api/subway-stations-api/sync-city.js +11 -0
- package/dist/api/uploads-api/index.d.ts +2 -0
- package/dist/api/uploads-api/index.js +2 -0
- package/dist/api/uploads-api/upload-profile-logo.d.ts +9 -0
- package/dist/api/uploads-api/upload-profile-logo.js +16 -0
- package/package.json +4 -4
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { CertificateSaleRO } from '@escapenavigator/types/dist/certificate-sale/certificate-sale.ro';
|
|
2
|
+
import { CreateCertificatesaleDto } from '@escapenavigator/types/dist/certificate-sale/create-certificatesale.dto';
|
|
3
|
+
import { ApiMethodDeclaration } from '..';
|
|
4
|
+
type ParamsData = {
|
|
5
|
+
data: CreateCertificatesaleDto;
|
|
6
|
+
};
|
|
7
|
+
type ResponseData = CertificateSaleRO;
|
|
8
|
+
export declare const create: ApiMethodDeclaration<ParamsData, ResponseData>;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.create = void 0;
|
|
4
|
+
var create = function (_a) {
|
|
5
|
+
var data = _a.data;
|
|
6
|
+
return ({
|
|
7
|
+
url: '/certificatesales',
|
|
8
|
+
method: 'POST',
|
|
9
|
+
data: data,
|
|
10
|
+
});
|
|
11
|
+
};
|
|
12
|
+
exports.create = create;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { annul } from './annul';
|
|
2
2
|
import { count } from './count';
|
|
3
|
+
import { create } from './create';
|
|
3
4
|
import { exportCertificates } from './export';
|
|
4
5
|
import { getOne } from './get-one';
|
|
5
6
|
import { createPromocode } from './promocodes/create-promocode';
|
|
@@ -17,6 +18,7 @@ import { updateTrackingInfo } from './update-tracking-info';
|
|
|
17
18
|
import { updateTrackingInfoAdmin } from './update-tracking-info-admin';
|
|
18
19
|
export type { CertificateSaleRO } from '@escapenavigator/types/dist/certificate-sale/certificate-sale.ro';
|
|
19
20
|
type ApiDeclaration = {
|
|
21
|
+
create: typeof create;
|
|
20
22
|
updateexternalCode: typeof updateexternalCode;
|
|
21
23
|
annul: typeof annul;
|
|
22
24
|
exportCertificates: typeof exportCertificates;
|
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.certificateSalesApiDeclaration = void 0;
|
|
4
4
|
var annul_1 = require("./annul");
|
|
5
5
|
var count_1 = require("./count");
|
|
6
|
+
var create_1 = require("./create");
|
|
6
7
|
var export_1 = require("./export");
|
|
7
8
|
var get_one_1 = require("./get-one");
|
|
8
9
|
var create_promocode_1 = require("./promocodes/create-promocode");
|
|
@@ -19,6 +20,7 @@ var update_external_code_1 = require("./update-external-code");
|
|
|
19
20
|
var update_tracking_info_1 = require("./update-tracking-info");
|
|
20
21
|
var update_tracking_info_admin_1 = require("./update-tracking-info-admin");
|
|
21
22
|
exports.certificateSalesApiDeclaration = {
|
|
23
|
+
create: create_1.create,
|
|
22
24
|
deleteTransaction: delete_transaction_1.deleteTransaction,
|
|
23
25
|
updateexternalCode: update_external_code_1.updateexternalCode,
|
|
24
26
|
queryInside: query_inside_1.queryInside,
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { CreateDynamicResourceDto } from '@escapenavigator/types/dist/dynamic-resource/create-dynamic-resource.dto';
|
|
2
|
+
import { DynamicResourceRO } from '@escapenavigator/types/dist/dynamic-resource/dynamic-resource.ro';
|
|
3
|
+
import { ApiMethodDeclaration } from '..';
|
|
4
|
+
type ParamsData = {
|
|
5
|
+
data: CreateDynamicResourceDto;
|
|
6
|
+
};
|
|
7
|
+
type ResponseData = DynamicResourceRO;
|
|
8
|
+
export declare const createDynamicResource: ApiMethodDeclaration<ParamsData, ResponseData>;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.createDynamicResource = void 0;
|
|
4
|
+
var createDynamicResource = function (_a) {
|
|
5
|
+
var data = _a.data;
|
|
6
|
+
return ({
|
|
7
|
+
url: '/dynamic-resources',
|
|
8
|
+
method: 'POST',
|
|
9
|
+
data: data,
|
|
10
|
+
});
|
|
11
|
+
};
|
|
12
|
+
exports.createDynamicResource = createDynamicResource;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { CalendarDynamicResourcesDto } from '@escapenavigator/types/dist/dynamic-resource/calendar-dynamic-resources.dto';
|
|
2
|
+
import { DynamicResourceRO } from '@escapenavigator/types/dist/dynamic-resource/dynamic-resource.ro';
|
|
3
|
+
import { ApiMethodDeclaration } from '..';
|
|
4
|
+
type ParamsData = CalendarDynamicResourcesDto;
|
|
5
|
+
type ResponseData = DynamicResourceRO[];
|
|
6
|
+
export declare const getCalendarDynamicResources: ApiMethodDeclaration<ParamsData, ResponseData>;
|
|
7
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getCalendarDynamicResources = void 0;
|
|
4
|
+
var getCalendarDynamicResources = function (params) { return ({
|
|
5
|
+
url: '/dynamic-resources/calendar',
|
|
6
|
+
method: 'GET',
|
|
7
|
+
params: params,
|
|
8
|
+
}); };
|
|
9
|
+
exports.getCalendarDynamicResources = getCalendarDynamicResources;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { DynamicResourceRO } from '@escapenavigator/types/dist/dynamic-resource/dynamic-resource.ro';
|
|
2
|
+
import { ApiMethodDeclaration } from '..';
|
|
3
|
+
type ParamsData = number;
|
|
4
|
+
type ResponseData = DynamicResourceRO;
|
|
5
|
+
export declare const getDynamicResource: ApiMethodDeclaration<ParamsData, ResponseData>;
|
|
6
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getDynamicResource = void 0;
|
|
4
|
+
var getDynamicResource = function (id) { return ({
|
|
5
|
+
url: "/dynamic-resources/".concat(id),
|
|
6
|
+
method: 'GET',
|
|
7
|
+
}); };
|
|
8
|
+
exports.getDynamicResource = getDynamicResource;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { createDynamicResource } from './create-dynamic-resource';
|
|
2
|
+
import { getCalendarDynamicResources } from './get-calendar-dynamic-resources';
|
|
3
|
+
import { getDynamicResource } from './get-dynamic-resource';
|
|
4
|
+
import { removeDynamicResource } from './remove-dynamic-resource';
|
|
5
|
+
import { updateDynamicResource } from './update-dynamic-resource';
|
|
6
|
+
type ApiDeclaration = {
|
|
7
|
+
createDynamicResource: typeof createDynamicResource;
|
|
8
|
+
updateDynamicResource: typeof updateDynamicResource;
|
|
9
|
+
removeDynamicResource: typeof removeDynamicResource;
|
|
10
|
+
getCalendarDynamicResources: typeof getCalendarDynamicResources;
|
|
11
|
+
getDynamicResource: typeof getDynamicResource;
|
|
12
|
+
};
|
|
13
|
+
export declare const dynamicResourcesApiDeclaration: ApiDeclaration;
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.dynamicResourcesApiDeclaration = void 0;
|
|
4
|
+
var create_dynamic_resource_1 = require("./create-dynamic-resource");
|
|
5
|
+
var get_calendar_dynamic_resources_1 = require("./get-calendar-dynamic-resources");
|
|
6
|
+
var get_dynamic_resource_1 = require("./get-dynamic-resource");
|
|
7
|
+
var remove_dynamic_resource_1 = require("./remove-dynamic-resource");
|
|
8
|
+
var update_dynamic_resource_1 = require("./update-dynamic-resource");
|
|
9
|
+
exports.dynamicResourcesApiDeclaration = {
|
|
10
|
+
createDynamicResource: create_dynamic_resource_1.createDynamicResource,
|
|
11
|
+
updateDynamicResource: update_dynamic_resource_1.updateDynamicResource,
|
|
12
|
+
removeDynamicResource: remove_dynamic_resource_1.removeDynamicResource,
|
|
13
|
+
getCalendarDynamicResources: get_calendar_dynamic_resources_1.getCalendarDynamicResources,
|
|
14
|
+
getDynamicResource: get_dynamic_resource_1.getDynamicResource,
|
|
15
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { DynamicResourceRO } from '@escapenavigator/types/dist/dynamic-resource/dynamic-resource.ro';
|
|
2
|
+
import { ApiMethodDeclaration } from '..';
|
|
3
|
+
type ParamsData = number;
|
|
4
|
+
type ResponseData = DynamicResourceRO;
|
|
5
|
+
export declare const removeDynamicResource: ApiMethodDeclaration<ParamsData, ResponseData>;
|
|
6
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.removeDynamicResource = void 0;
|
|
4
|
+
var removeDynamicResource = function (id) { return ({
|
|
5
|
+
url: "/dynamic-resources/".concat(id),
|
|
6
|
+
method: 'DELETE',
|
|
7
|
+
}); };
|
|
8
|
+
exports.removeDynamicResource = removeDynamicResource;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DynamicResourceRO } from '@escapenavigator/types/dist/dynamic-resource/dynamic-resource.ro';
|
|
2
|
+
import { UpdateDynamicResourceDto } from '@escapenavigator/types/dist/dynamic-resource/update-dynamic-resource.dto';
|
|
3
|
+
import { ApiMethodDeclaration } from '..';
|
|
4
|
+
type ParamsData = {
|
|
5
|
+
id: number;
|
|
6
|
+
data: UpdateDynamicResourceDto;
|
|
7
|
+
};
|
|
8
|
+
type ResponseData = DynamicResourceRO;
|
|
9
|
+
export declare const updateDynamicResource: ApiMethodDeclaration<ParamsData, ResponseData>;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.updateDynamicResource = void 0;
|
|
4
|
+
var updateDynamicResource = function (_a) {
|
|
5
|
+
var id = _a.id, data = _a.data;
|
|
6
|
+
return ({
|
|
7
|
+
url: "/dynamic-resources/".concat(id),
|
|
8
|
+
method: 'PATCH',
|
|
9
|
+
data: data,
|
|
10
|
+
});
|
|
11
|
+
};
|
|
12
|
+
exports.updateDynamicResource = updateDynamicResource;
|
|
@@ -19,6 +19,7 @@ import { cronParserApiDeclaration } from './cron-parser-api';
|
|
|
19
19
|
import { crossSalesApiDeclaration } from './cross-sale-api';
|
|
20
20
|
import { customFieldsApiDeclaration } from './custom-fields-api';
|
|
21
21
|
import { dashboardApiDeclaration } from './dashboard-api';
|
|
22
|
+
import { dynamicResourcesApiDeclaration } from './dynamic-resources-api';
|
|
22
23
|
import { emailsApiDeclaration } from './emails-api';
|
|
23
24
|
import { financeItemsApiDeclaration } from './financeitems-api';
|
|
24
25
|
import { googleCalendarsApiDeclaration } from './google-calendars-api';
|
|
@@ -129,6 +130,7 @@ export type InitApiDeclaration = {
|
|
|
129
130
|
upsellings: Api<typeof upsellingsApiDeclaration>;
|
|
130
131
|
partners: Api<typeof partnersApiDeclaration>;
|
|
131
132
|
questrooms: Api<typeof questroomsApiDeclaration>;
|
|
133
|
+
dynamicResources: Api<typeof dynamicResourcesApiDeclaration>;
|
|
132
134
|
widgets: Api<typeof widgetsApiDeclaration>;
|
|
133
135
|
widgetSessions: Api<typeof widgetSessionsApiDeclaration>;
|
|
134
136
|
profiles: Api<typeof profilesApiDeclaration>;
|
|
@@ -22,6 +22,7 @@ var cron_parser_api_1 = require("./cron-parser-api");
|
|
|
22
22
|
var cross_sale_api_1 = require("./cross-sale-api");
|
|
23
23
|
var custom_fields_api_1 = require("./custom-fields-api");
|
|
24
24
|
var dashboard_api_1 = require("./dashboard-api");
|
|
25
|
+
var dynamic_resources_api_1 = require("./dynamic-resources-api");
|
|
25
26
|
var emails_api_1 = require("./emails-api");
|
|
26
27
|
var financeitems_api_1 = require("./financeitems-api");
|
|
27
28
|
var google_calendars_api_1 = require("./google-calendars-api");
|
|
@@ -133,6 +134,7 @@ var initClientApi = function (url, clientOptions) { return ({
|
|
|
133
134
|
upsellings: (0, _1.initApi)(upsellings_api_1.upsellingsApiDeclaration, url, clientOptions),
|
|
134
135
|
partners: (0, _1.initApi)(partners_api_1.partnersApiDeclaration, url, clientOptions),
|
|
135
136
|
questrooms: (0, _1.initApi)(questrooms_api_1.questroomsApiDeclaration, url, clientOptions),
|
|
137
|
+
dynamicResources: (0, _1.initApi)(dynamic_resources_api_1.dynamicResourcesApiDeclaration, url, clientOptions),
|
|
136
138
|
widgets: (0, _1.initApi)(widgets_api_1.widgetsApiDeclaration, url, clientOptions),
|
|
137
139
|
widgetSessions: (0, _1.initApi)(widget_sessions_api_1.widgetSessionsApiDeclaration, url, clientOptions),
|
|
138
140
|
profiles: (0, _1.initApi)(profiles_api_1.profilesApiDeclaration, url, clientOptions),
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
import { list } from './list';
|
|
2
2
|
import { listCities } from './list-cities';
|
|
3
|
+
import { listImportCities } from './list-import-cities';
|
|
3
4
|
import { sync } from './sync';
|
|
5
|
+
import { syncCity } from './sync-city';
|
|
4
6
|
type ApiDeclaration = {
|
|
5
7
|
list: typeof list;
|
|
6
8
|
listCities: typeof listCities;
|
|
9
|
+
listImportCities: typeof listImportCities;
|
|
7
10
|
sync: typeof sync;
|
|
11
|
+
syncCity: typeof syncCity;
|
|
8
12
|
};
|
|
9
13
|
export declare const subwayStationsApiDeclaration: ApiDeclaration;
|
|
10
14
|
export {};
|
|
@@ -3,9 +3,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.subwayStationsApiDeclaration = void 0;
|
|
4
4
|
var list_1 = require("./list");
|
|
5
5
|
var list_cities_1 = require("./list-cities");
|
|
6
|
+
var list_import_cities_1 = require("./list-import-cities");
|
|
6
7
|
var sync_1 = require("./sync");
|
|
8
|
+
var sync_city_1 = require("./sync-city");
|
|
7
9
|
exports.subwayStationsApiDeclaration = {
|
|
8
10
|
list: list_1.list,
|
|
9
11
|
listCities: list_cities_1.listCities,
|
|
12
|
+
listImportCities: list_import_cities_1.listImportCities,
|
|
10
13
|
sync: sync_1.sync,
|
|
14
|
+
syncCity: sync_city_1.syncCity,
|
|
11
15
|
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.listImportCities = void 0;
|
|
4
|
+
var listImportCities = function () { return ({
|
|
5
|
+
url: '/parsed-exporter/admin/subway-import-cities',
|
|
6
|
+
method: 'GET',
|
|
7
|
+
}); };
|
|
8
|
+
exports.listImportCities = listImportCities;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SyncSubwayCityResponseRO } from '@escapenavigator/types/dist/subway-station/subway-station.ro';
|
|
2
|
+
import { ApiMethodDeclaration } from '..';
|
|
3
|
+
type ParamsData = {
|
|
4
|
+
cityId: number;
|
|
5
|
+
};
|
|
6
|
+
export declare const syncCity: ApiMethodDeclaration<ParamsData, SyncSubwayCityResponseRO>;
|
|
7
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.syncCity = void 0;
|
|
4
|
+
var syncCity = function (_a) {
|
|
5
|
+
var cityId = _a.cityId;
|
|
6
|
+
return ({
|
|
7
|
+
url: "/parsed-exporter/admin/sync-subway/".concat(cityId),
|
|
8
|
+
method: 'POST',
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
exports.syncCity = syncCity;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { uploadImage } from './upload-image';
|
|
2
|
+
import { uploadProfileLogo } from './upload-profile-logo';
|
|
2
3
|
type ApiDeclaration = {
|
|
3
4
|
uploadImage: typeof uploadImage;
|
|
5
|
+
uploadProfileLogo: typeof uploadProfileLogo;
|
|
4
6
|
};
|
|
5
7
|
export declare const uploadsApiDeclaration: ApiDeclaration;
|
|
6
8
|
export {};
|
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.uploadsApiDeclaration = void 0;
|
|
4
4
|
var upload_image_1 = require("./upload-image");
|
|
5
|
+
var upload_profile_logo_1 = require("./upload-profile-logo");
|
|
5
6
|
exports.uploadsApiDeclaration = {
|
|
6
7
|
uploadImage: upload_image_1.uploadImage,
|
|
8
|
+
uploadProfileLogo: upload_profile_logo_1.uploadProfileLogo,
|
|
7
9
|
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { UploadImageResponseObject } from '@escapenavigator/types/dist/upload/upload-image.ro';
|
|
2
|
+
import { ApiMethodDeclaration } from '..';
|
|
3
|
+
type ParamsData = {
|
|
4
|
+
data: FormData;
|
|
5
|
+
onUploadProgress: (progressEvent: ProgressEvent) => void;
|
|
6
|
+
};
|
|
7
|
+
type ResponseData = UploadImageResponseObject;
|
|
8
|
+
export declare const uploadProfileLogo: ApiMethodDeclaration<ParamsData, ResponseData>;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.uploadProfileLogo = void 0;
|
|
4
|
+
var uploadProfileLogo = function (_a) {
|
|
5
|
+
var data = _a.data, onUploadProgress = _a.onUploadProgress;
|
|
6
|
+
return ({
|
|
7
|
+
url: '/uploads/profile-logo',
|
|
8
|
+
headers: {
|
|
9
|
+
'Content-Type': 'multipart/form-data',
|
|
10
|
+
},
|
|
11
|
+
onUploadProgress: onUploadProgress,
|
|
12
|
+
method: 'POST',
|
|
13
|
+
data: data,
|
|
14
|
+
});
|
|
15
|
+
};
|
|
16
|
+
exports.uploadProfileLogo = uploadProfileLogo;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@escapenavigator/services",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.144",
|
|
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": "
|
|
15
|
+
"gitHead": "fb70cba9a803a188add7ec1bcac7d78b915a092c",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@escapenavigator/types": "^1.10.
|
|
18
|
-
"@escapenavigator/utils": "^1.10.
|
|
17
|
+
"@escapenavigator/types": "^1.10.135",
|
|
18
|
+
"@escapenavigator/utils": "^1.10.139",
|
|
19
19
|
"axios": "^0.21.4",
|
|
20
20
|
"class-transformer": "^0.5.1",
|
|
21
21
|
"class-validator": "^0.13.2",
|