@escapenavigator/services 2.0.3 → 2.0.5

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.
Files changed (47) hide show
  1. package/dist/api/admins-api/get-outreach-stats.d.ts +15 -0
  2. package/dist/api/admins-api/get-outreach-stats.js +12 -0
  3. package/dist/api/admins-api/index.d.ts +2 -0
  4. package/dist/api/admins-api/index.js +2 -0
  5. package/dist/api/aggregator-companies-api/index.d.ts +70 -0
  6. package/dist/api/aggregator-companies-api/index.js +35 -0
  7. package/dist/api/cron-parser-api/index.d.ts +2 -0
  8. package/dist/api/cron-parser-api/index.js +2 -0
  9. package/dist/api/cron-parser-api/parse-country.d.ts +10 -0
  10. package/dist/api/cron-parser-api/parse-country.js +11 -0
  11. package/dist/api/districts-api/index.d.ts +23 -0
  12. package/dist/api/districts-api/index.js +50 -0
  13. package/dist/api/emails-api/bulk-remove.d.ts +10 -0
  14. package/dist/api/emails-api/bulk-remove.js +9 -0
  15. package/dist/api/emails-api/index.d.ts +6 -0
  16. package/dist/api/emails-api/index.js +6 -0
  17. package/dist/api/emails-api/link-to-profile.d.ts +8 -0
  18. package/dist/api/emails-api/link-to-profile.js +12 -0
  19. package/dist/api/emails-api/set-category.d.ts +10 -0
  20. package/dist/api/emails-api/set-category.js +12 -0
  21. package/dist/api/google-places-api/create-company.d.ts +12 -0
  22. package/dist/api/google-places-api/create-company.js +12 -0
  23. package/dist/api/google-places-api/create-location.d.ts +12 -0
  24. package/dist/api/google-places-api/create-location.js +12 -0
  25. package/dist/api/google-places-api/index.d.ts +8 -0
  26. package/dist/api/google-places-api/index.js +8 -0
  27. package/dist/api/google-places-api/relink.d.ts +10 -0
  28. package/dist/api/google-places-api/relink.js +11 -0
  29. package/dist/api/google-places-api/siblings.d.ts +8 -0
  30. package/dist/api/google-places-api/siblings.js +11 -0
  31. package/dist/api/init-client-api.d.ts +6 -0
  32. package/dist/api/init-client-api.js +6 -0
  33. package/dist/api/openapi-widget-api/index.d.ts +4 -4
  34. package/dist/api/openapi-widget-api/index.js +4 -4
  35. package/dist/api/openapi-widget-api/orders/cancel-order-group.d.ts +2 -2
  36. package/dist/api/openapi-widget-api/orders/cancel-order.d.ts +2 -2
  37. package/dist/api/parse-results-api/index.d.ts +49 -0
  38. package/dist/api/parse-results-api/index.js +67 -0
  39. package/dist/api/profiles-api/get-profiles-without-next-action.d.ts +6 -0
  40. package/dist/api/profiles-api/get-profiles-without-next-action.js +8 -0
  41. package/dist/api/profiles-api/index.d.ts +2 -0
  42. package/dist/api/profiles-api/index.js +2 -0
  43. package/dist/api/users-api/current/current-delete-account.d.ts +6 -0
  44. package/dist/api/users-api/current/current-delete-account.js +8 -0
  45. package/dist/api/users-api/index.d.ts +2 -0
  46. package/dist/api/users-api/index.js +2 -0
  47. package/package.json +4 -4
@@ -0,0 +1,15 @@
1
+ import { ApiMethodDeclaration } from '..';
2
+ type ParamsData = {
3
+ startDate: string;
4
+ endDate: string;
5
+ };
6
+ export type OutreachDayStat = {
7
+ date: string;
8
+ callsConnected: number;
9
+ callsMissed: number;
10
+ callsTotalDurationSec: number;
11
+ emailsSent: number;
12
+ };
13
+ type ResponseData = OutreachDayStat[];
14
+ export declare const getOutreachStats: ApiMethodDeclaration<ParamsData, ResponseData>;
15
+ export {};
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getOutreachStats = void 0;
4
+ var getOutreachStats = function (params) { return ({
5
+ url: '/admins/outreach-stats',
6
+ method: 'GET',
7
+ params: {
8
+ startDate: params.startDate,
9
+ endDate: params.endDate,
10
+ },
11
+ }); };
12
+ exports.getOutreachStats = getOutreachStats;
@@ -10,6 +10,7 @@ import { getAggregatorStatisticsConstants } from './get-aggregator-statistics-co
10
10
  import { getAllAdminsActivityByDate } from './get-all-admins-activity-by-date';
11
11
  import { getAllAdminsActivityRequests } from './get-all-admins-activity-requests';
12
12
  import { getAllAdminsActivityStats } from './get-all-admins-activity-stats';
13
+ import { getOutreachStats } from './get-outreach-stats';
13
14
  import { getProfileToken } from './get-profile-token';
14
15
  import { getWidgetFunnelCompany } from './get-widget-funnel-company';
15
16
  import { getWidgetFunnelCompare } from './get-widget-funnel-compare';
@@ -57,6 +58,7 @@ type ApiDeclaration = {
57
58
  getAllAdminsActivityStats: typeof getAllAdminsActivityStats;
58
59
  getAllAdminsActivityByDate: typeof getAllAdminsActivityByDate;
59
60
  getAllAdminsActivityRequests: typeof getAllAdminsActivityRequests;
61
+ getOutreachStats: typeof getOutreachStats;
60
62
  getAggregatorStatisticsConstants: typeof getAggregatorStatisticsConstants;
61
63
  queryAggregatorQuestroomStatistics: typeof queryAggregatorQuestroomStatistics;
62
64
  getAggregatorQuestroomDailyStatistics: typeof getAggregatorQuestroomDailyStatistics;
@@ -13,6 +13,7 @@ var get_aggregator_statistics_constants_1 = require("./get-aggregator-statistics
13
13
  var get_all_admins_activity_by_date_1 = require("./get-all-admins-activity-by-date");
14
14
  var get_all_admins_activity_requests_1 = require("./get-all-admins-activity-requests");
15
15
  var get_all_admins_activity_stats_1 = require("./get-all-admins-activity-stats");
16
+ var get_outreach_stats_1 = require("./get-outreach-stats");
16
17
  var get_profile_token_1 = require("./get-profile-token");
17
18
  var get_widget_funnel_company_1 = require("./get-widget-funnel-company");
18
19
  var get_widget_funnel_compare_1 = require("./get-widget-funnel-compare");
@@ -60,6 +61,7 @@ exports.adminsApiDeclaration = {
60
61
  getAllAdminsActivityStats: get_all_admins_activity_stats_1.getAllAdminsActivityStats,
61
62
  getAllAdminsActivityByDate: get_all_admins_activity_by_date_1.getAllAdminsActivityByDate,
62
63
  getAllAdminsActivityRequests: get_all_admins_activity_requests_1.getAllAdminsActivityRequests,
64
+ getOutreachStats: get_outreach_stats_1.getOutreachStats,
63
65
  getAggregatorStatisticsConstants: get_aggregator_statistics_constants_1.getAggregatorStatisticsConstants,
64
66
  queryAggregatorQuestroomStatistics: query_aggregator_questroom_statistics_1.queryAggregatorQuestroomStatistics,
65
67
  getAggregatorQuestroomDailyStatistics: get_aggregator_questroom_daily_statistics_1.getAggregatorQuestroomDailyStatistics,
@@ -0,0 +1,70 @@
1
+ import { QueryDto } from '@escapenavigator/types/dist/shared/query.dto';
2
+ import { QueryRO } from '@escapenavigator/types/dist/shared/query.ro';
3
+ import { ApiMethodDeclaration } from '..';
4
+ export type AggregatorCompanyItem = {
5
+ id: number;
6
+ source: string;
7
+ externalId: string;
8
+ name: string;
9
+ companyName?: string;
10
+ website?: string;
11
+ address?: string;
12
+ phone?: string;
13
+ lat?: number;
14
+ lng?: number;
15
+ googlePlaceId?: string;
16
+ country?: string;
17
+ rooms: Array<{
18
+ externalId: string;
19
+ title: string;
20
+ url?: string;
21
+ playersMin?: number;
22
+ playersMax?: number;
23
+ time?: number;
24
+ photos?: string[];
25
+ closed?: boolean;
26
+ matchedQuestroomId?: number;
27
+ matchConfidence?: string;
28
+ }>;
29
+ status: string;
30
+ profileId?: number;
31
+ profile?: {
32
+ id: number;
33
+ title: string;
34
+ };
35
+ locationId?: number;
36
+ firstSeenAt?: string;
37
+ lastSeenAt?: string;
38
+ createdAt: string;
39
+ updatedAt: string;
40
+ };
41
+ declare const query: ApiMethodDeclaration<QueryDto, QueryRO<AggregatorCompanyItem>>;
42
+ declare const count: ApiMethodDeclaration<QueryDto, number>;
43
+ type SyncStats = {
44
+ processed: number;
45
+ failed: number;
46
+ created: number;
47
+ updated: number;
48
+ autoLinked: number;
49
+ questsLinked: number;
50
+ disappeared: number;
51
+ };
52
+ declare const syncMorty: ApiMethodDeclaration<{
53
+ limit?: number;
54
+ }, SyncStats>;
55
+ declare const update: ApiMethodDeclaration<{
56
+ id: number;
57
+ data: {
58
+ profileId?: number | null;
59
+ locationId?: number | null;
60
+ status?: string;
61
+ };
62
+ }, AggregatorCompanyItem>;
63
+ type ApiDeclaration = {
64
+ query: typeof query;
65
+ count: typeof count;
66
+ syncMorty: typeof syncMorty;
67
+ update: typeof update;
68
+ };
69
+ export declare const aggregatorCompaniesApiDeclaration: ApiDeclaration;
70
+ export {};
@@ -0,0 +1,35 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.aggregatorCompaniesApiDeclaration = void 0;
4
+ var query = function (params) { return ({
5
+ url: '/aggregator-companies',
6
+ method: 'GET',
7
+ params: params,
8
+ }); };
9
+ var count = function (params) { return ({
10
+ url: '/aggregator-companies/count',
11
+ method: 'GET',
12
+ params: params,
13
+ }); };
14
+ var syncMorty = function (_a) {
15
+ var _b = _a === void 0 ? {} : _a, limit = _b.limit;
16
+ return ({
17
+ url: '/aggregator-companies/sync/morty',
18
+ method: 'POST',
19
+ params: limit ? { limit: limit } : undefined,
20
+ });
21
+ };
22
+ var update = function (_a) {
23
+ var id = _a.id, data = _a.data;
24
+ return ({
25
+ url: "/aggregator-companies/".concat(id),
26
+ method: 'PATCH',
27
+ data: data,
28
+ });
29
+ };
30
+ exports.aggregatorCompaniesApiDeclaration = {
31
+ query: query,
32
+ count: count,
33
+ syncMorty: syncMorty,
34
+ update: update,
35
+ };
@@ -1,6 +1,8 @@
1
1
  import { parseAllCountries } from './parse-all';
2
+ import { parseCountry } from './parse-country';
2
3
  type ApiDeclaration = {
3
4
  parseAll: typeof parseAllCountries;
5
+ parseCountry: typeof parseCountry;
4
6
  };
5
7
  export declare const cronParserApiDeclaration: ApiDeclaration;
6
8
  export {};
@@ -2,6 +2,8 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.cronParserApiDeclaration = void 0;
4
4
  var parse_all_1 = require("./parse-all");
5
+ var parse_country_1 = require("./parse-country");
5
6
  exports.cronParserApiDeclaration = {
6
7
  parseAll: parse_all_1.parseAllCountries,
8
+ parseCountry: parse_country_1.parseCountry,
7
9
  };
@@ -0,0 +1,10 @@
1
+ import { CountriesEnum } from '@escapenavigator/types/dist/shared/enum/countries.enum';
2
+ import { ApiMethodDeclaration } from '..';
3
+ type ParamsData = {
4
+ country: CountriesEnum;
5
+ };
6
+ type ResponseData = {
7
+ message: string;
8
+ };
9
+ export declare const parseCountry: ApiMethodDeclaration<ParamsData, ResponseData>;
10
+ export {};
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.parseCountry = void 0;
4
+ var parseCountry = function (_a) {
5
+ var country = _a.country;
6
+ return ({
7
+ url: "/cron/parser/country/".concat(country),
8
+ method: 'POST',
9
+ });
10
+ };
11
+ exports.parseCountry = parseCountry;
@@ -0,0 +1,23 @@
1
+ import { DistrictRO } from '@escapenavigator/types/dist/district/district.ro';
2
+ import { DistrictSeoRO } from '@escapenavigator/types/dist/district/district-seo.ro';
3
+ import { UpdateDistrictDto } from '@escapenavigator/types/dist/district/update-district.dto';
4
+ import { QueryDto } from '@escapenavigator/types/dist/shared/query.dto';
5
+ import { QueryRO } from '@escapenavigator/types/dist/shared/query.ro';
6
+ import { ApiMethodDeclaration } from '..';
7
+ export declare const districtsApiDeclaration: {
8
+ query: ApiMethodDeclaration<QueryDto, QueryRO<DistrictRO>>;
9
+ getOne: ApiMethodDeclaration<number, DistrictRO>;
10
+ update: ApiMethodDeclaration<{
11
+ id: number;
12
+ data: UpdateDistrictDto;
13
+ }, DistrictRO>;
14
+ getSeo: ApiMethodDeclaration<number, DistrictSeoRO>;
15
+ updateSeo: ApiMethodDeclaration<{
16
+ id: number;
17
+ data: DistrictSeoRO;
18
+ }, DistrictSeoRO>;
19
+ recount: ApiMethodDeclaration<undefined, {
20
+ assignedLocations: number;
21
+ districts: number;
22
+ }>;
23
+ };
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.districtsApiDeclaration = void 0;
4
+ /**
5
+ * Админское управление районами городов (Aggregators → Districts).
6
+ * Создание/удаление районов — через OSM-импорт, поэтому CRUD без
7
+ * create/remove: список, правка (title/slug/hidden), SEO-тексты,
8
+ * глобальный пересчёт привязки локаций.
9
+ */
10
+ var query = function (params) { return ({
11
+ url: '/districts',
12
+ method: 'GET',
13
+ params: params,
14
+ }); };
15
+ var getOne = function (id) { return ({
16
+ url: "/districts/".concat(id),
17
+ method: 'GET',
18
+ }); };
19
+ var update = function (_a) {
20
+ var id = _a.id, data = _a.data;
21
+ return ({
22
+ url: "/districts/".concat(id),
23
+ method: 'PATCH',
24
+ data: data,
25
+ });
26
+ };
27
+ var getSeo = function (id) { return ({
28
+ url: "/districts/seo/".concat(id),
29
+ method: 'GET',
30
+ }); };
31
+ var updateSeo = function (_a) {
32
+ var id = _a.id, data = _a.data;
33
+ return ({
34
+ url: "/districts/seo/".concat(id),
35
+ method: 'PATCH',
36
+ data: data,
37
+ });
38
+ };
39
+ var recount = function () { return ({
40
+ url: '/districts/recount',
41
+ method: 'PATCH',
42
+ }); };
43
+ exports.districtsApiDeclaration = {
44
+ query: query,
45
+ getOne: getOne,
46
+ update: update,
47
+ getSeo: getSeo,
48
+ updateSeo: updateSeo,
49
+ recount: recount,
50
+ };
@@ -0,0 +1,10 @@
1
+ import { SuccessRO } from '@escapenavigator/types/dist/shared/success.ro';
2
+ import { ApiMethodDeclaration } from '..';
3
+ type ParamsData = {
4
+ identificators: string[];
5
+ };
6
+ type ResponseData = SuccessRO & {
7
+ affected: number;
8
+ };
9
+ export declare const bulkRemove: ApiMethodDeclaration<ParamsData, ResponseData>;
10
+ export {};
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.bulkRemove = void 0;
4
+ var bulkRemove = function (data) { return ({
5
+ url: '/emails/bulk-delete',
6
+ method: 'POST',
7
+ data: data,
8
+ }); };
9
+ exports.bulkRemove = bulkRemove;
@@ -1,17 +1,23 @@
1
+ import { bulkRemove } from './bulk-remove';
1
2
  import { create } from './create';
2
3
  import { getById } from './get-by-id';
3
4
  import { getProfileEmails } from './get-profile-emails';
5
+ import { linkToProfile } from './link-to-profile';
4
6
  import { query } from './query';
5
7
  import { remove } from './remove';
6
8
  import { resend } from './resend';
7
9
  import { resync } from './resync';
10
+ import { setCategory } from './set-category';
8
11
  type ApiDeclaration = {
9
12
  resync: typeof resync;
13
+ linkToProfile: typeof linkToProfile;
10
14
  getProfileEmails: typeof getProfileEmails;
11
15
  getById: typeof getById;
12
16
  query: typeof query;
13
17
  create: typeof create;
14
18
  remove: typeof remove;
19
+ bulkRemove: typeof bulkRemove;
20
+ setCategory: typeof setCategory;
15
21
  resend: typeof resend;
16
22
  };
17
23
  export declare const emailsApiDeclaration: ApiDeclaration;
@@ -1,19 +1,25 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.emailsApiDeclaration = void 0;
4
+ var bulk_remove_1 = require("./bulk-remove");
4
5
  var create_1 = require("./create");
5
6
  var get_by_id_1 = require("./get-by-id");
6
7
  var get_profile_emails_1 = require("./get-profile-emails");
8
+ var link_to_profile_1 = require("./link-to-profile");
7
9
  var query_1 = require("./query");
8
10
  var remove_1 = require("./remove");
9
11
  var resend_1 = require("./resend");
10
12
  var resync_1 = require("./resync");
13
+ var set_category_1 = require("./set-category");
11
14
  exports.emailsApiDeclaration = {
12
15
  resync: resync_1.resync,
16
+ linkToProfile: link_to_profile_1.linkToProfile,
13
17
  getProfileEmails: get_profile_emails_1.getProfileEmails,
14
18
  getById: get_by_id_1.getById,
15
19
  query: query_1.query,
16
20
  create: create_1.create,
17
21
  resend: resend_1.resend,
18
22
  remove: remove_1.remove,
23
+ bulkRemove: bulk_remove_1.bulkRemove,
24
+ setCategory: set_category_1.setCategory,
19
25
  };
@@ -0,0 +1,8 @@
1
+ import { ApiMethodDeclaration } from '..';
2
+ type ParamsData = {
3
+ identificator: string;
4
+ profileId: number;
5
+ };
6
+ type ResponseData = void;
7
+ export declare const linkToProfile: ApiMethodDeclaration<ParamsData, ResponseData>;
8
+ export {};
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.linkToProfile = void 0;
4
+ var linkToProfile = function (_a) {
5
+ var identificator = _a.identificator, profileId = _a.profileId;
6
+ return ({
7
+ url: "/emails/link/".concat(identificator),
8
+ method: 'POST',
9
+ data: { profileId: profileId },
10
+ });
11
+ };
12
+ exports.linkToProfile = linkToProfile;
@@ -0,0 +1,10 @@
1
+ import { EmailCategoryEnum } from '@escapenavigator/types/dist/emails/enum/email.category-enum';
2
+ import { SuccessRO } from '@escapenavigator/types/dist/shared/success.ro';
3
+ import { ApiMethodDeclaration } from '..';
4
+ type ParamsData = {
5
+ identificator: string;
6
+ category: EmailCategoryEnum;
7
+ };
8
+ type ResponseData = SuccessRO;
9
+ export declare const setCategory: ApiMethodDeclaration<ParamsData, ResponseData>;
10
+ export {};
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.setCategory = void 0;
4
+ var setCategory = function (_a) {
5
+ var identificator = _a.identificator, category = _a.category;
6
+ return ({
7
+ url: "/emails/category/".concat(identificator),
8
+ method: 'POST',
9
+ data: { category: category },
10
+ });
11
+ };
12
+ exports.setCategory = setCategory;
@@ -0,0 +1,12 @@
1
+ import { CreateCompanyFromPlaceDto } from '@escapenavigator/types/dist/google-places/create-company-from-place.dto';
2
+ import { ApiMethodDeclaration } from '..';
3
+ type ParamsData = {
4
+ id: number;
5
+ data: CreateCompanyFromPlaceDto;
6
+ };
7
+ type ResponseData = {
8
+ profileId: number;
9
+ locationsCreated: number;
10
+ };
11
+ export declare const createCompanyFromPlace: ApiMethodDeclaration<ParamsData, ResponseData>;
12
+ export {};
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.createCompanyFromPlace = void 0;
4
+ var createCompanyFromPlace = function (_a) {
5
+ var id = _a.id, data = _a.data;
6
+ return ({
7
+ url: "/google-places/".concat(id, "/create-company"),
8
+ method: 'POST',
9
+ data: data,
10
+ });
11
+ };
12
+ exports.createCompanyFromPlace = createCompanyFromPlace;
@@ -0,0 +1,12 @@
1
+ import { ApiMethodDeclaration } from '..';
2
+ type ParamsData = {
3
+ id: number;
4
+ data: {
5
+ profileId?: number;
6
+ };
7
+ };
8
+ type ResponseData = {
9
+ locationId: number;
10
+ };
11
+ export declare const createLocationFromPlace: ApiMethodDeclaration<ParamsData, ResponseData>;
12
+ export {};
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.createLocationFromPlace = void 0;
4
+ var createLocationFromPlace = function (_a) {
5
+ var id = _a.id, data = _a.data;
6
+ return ({
7
+ url: "/google-places/".concat(id, "/create-location"),
8
+ method: 'POST',
9
+ data: data,
10
+ });
11
+ };
12
+ exports.createLocationFromPlace = createLocationFromPlace;
@@ -1,7 +1,11 @@
1
1
  import { countGooglePlaces } from './count';
2
+ import { createCompanyFromPlace } from './create-company';
3
+ import { createLocationFromPlace } from './create-location';
2
4
  import { exportGooglePlaces } from './export';
3
5
  import { getGooglePlace } from './get-one';
4
6
  import { queryGooglePlaces } from './query';
7
+ import { relinkGooglePlace } from './relink';
8
+ import { getGooglePlaceSiblings } from './siblings';
5
9
  import { updateGooglePlace } from './update';
6
10
  type ApiDeclaration = {
7
11
  query: typeof queryGooglePlaces;
@@ -9,6 +13,10 @@ type ApiDeclaration = {
9
13
  update: typeof updateGooglePlace;
10
14
  exportGooglePlaces: typeof exportGooglePlaces;
11
15
  count: typeof countGooglePlaces;
16
+ siblings: typeof getGooglePlaceSiblings;
17
+ createCompany: typeof createCompanyFromPlace;
18
+ createLocation: typeof createLocationFromPlace;
19
+ relink: typeof relinkGooglePlace;
12
20
  };
13
21
  export declare const googlePlacesApiDeclaration: ApiDeclaration;
14
22
  export {};
@@ -2,9 +2,13 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.googlePlacesApiDeclaration = void 0;
4
4
  var count_1 = require("./count");
5
+ var create_company_1 = require("./create-company");
6
+ var create_location_1 = require("./create-location");
5
7
  var export_1 = require("./export");
6
8
  var get_one_1 = require("./get-one");
7
9
  var query_1 = require("./query");
10
+ var relink_1 = require("./relink");
11
+ var siblings_1 = require("./siblings");
8
12
  var update_1 = require("./update");
9
13
  exports.googlePlacesApiDeclaration = {
10
14
  query: query_1.queryGooglePlaces,
@@ -12,4 +16,8 @@ exports.googlePlacesApiDeclaration = {
12
16
  update: update_1.updateGooglePlace,
13
17
  exportGooglePlaces: export_1.exportGooglePlaces,
14
18
  count: count_1.countGooglePlaces,
19
+ siblings: siblings_1.getGooglePlaceSiblings,
20
+ createCompany: create_company_1.createCompanyFromPlace,
21
+ createLocation: create_location_1.createLocationFromPlace,
22
+ relink: relink_1.relinkGooglePlace,
15
23
  };
@@ -0,0 +1,10 @@
1
+ import { ApiMethodDeclaration } from '..';
2
+ type ParamsData = {
3
+ id: number;
4
+ };
5
+ type ResponseData = {
6
+ linked: boolean;
7
+ profileId?: number;
8
+ };
9
+ export declare const relinkGooglePlace: ApiMethodDeclaration<ParamsData, ResponseData>;
10
+ export {};
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.relinkGooglePlace = void 0;
4
+ var relinkGooglePlace = function (_a) {
5
+ var id = _a.id;
6
+ return ({
7
+ url: "/google-places/".concat(id, "/relink"),
8
+ method: 'POST',
9
+ });
10
+ };
11
+ exports.relinkGooglePlace = relinkGooglePlace;
@@ -0,0 +1,8 @@
1
+ import { GooglePlacesRO } from '@escapenavigator/types/dist/google-places/google-places.ro';
2
+ import { ApiMethodDeclaration } from '..';
3
+ type ParamsData = {
4
+ id: number;
5
+ };
6
+ type ResponseData = GooglePlacesRO[];
7
+ export declare const getGooglePlaceSiblings: ApiMethodDeclaration<ParamsData, ResponseData>;
8
+ export {};
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getGooglePlaceSiblings = void 0;
4
+ var getGooglePlaceSiblings = function (_a) {
5
+ var id = _a.id;
6
+ return ({
7
+ url: "/google-places/".concat(id, "/siblings"),
8
+ method: 'GET',
9
+ });
10
+ };
11
+ exports.getGooglePlaceSiblings = getGooglePlaceSiblings;
@@ -3,6 +3,7 @@ import { academyApiDeclaration } from './academy-api';
3
3
  import { adminAnnouncementsApiDeclaration } from './admin-announcements-api';
4
4
  import { adminsApiDeclaration } from './admins-api';
5
5
  import { agbApiDeclaration } from './agb-api';
6
+ import { aggregatorCompaniesApiDeclaration } from './aggregator-companies-api';
6
7
  import { agregatorApiDeclaration } from './agregator-api';
7
8
  import { analyticsChatApiDeclaration } from './analytics-chat-api';
8
9
  import { articlesApiDeclaration } from './articles-api';
@@ -22,6 +23,7 @@ import { cronParserApiDeclaration } from './cron-parser-api';
22
23
  import { customFieldsApiDeclaration } from './custom-fields-api';
23
24
  import { dashboardApiDeclaration } from './dashboard-api';
24
25
  import { dashboardCalendarApiDeclaration } from './dashboard-calendar-api';
26
+ import { districtsApiDeclaration } from './districts-api';
25
27
  import { dynamicResourcesApiDeclaration } from './dynamic-resources-api';
26
28
  import { emailsApiDeclaration } from './emails-api';
27
29
  import { financeItemsApiDeclaration } from './financeitems-api';
@@ -51,6 +53,7 @@ import { orderTransactionsApiDeclaration } from './order-transactions-api';
51
53
  import { orderUpsellngsApiDeclaration } from './order-upsellings-api';
52
54
  import { ordersApiDeclaration } from './orders-api';
53
55
  import { packagesApiDeclaration } from './packages-api';
56
+ import { parseResultsApiDeclaration } from './parse-results-api';
54
57
  import { partnersApiDeclaration } from './partners-api';
55
58
  import { playersApiDeclaration } from './players-api';
56
59
  import { productsApiDeclaration } from './products-api';
@@ -93,6 +96,8 @@ export type InitApiDeclaration = {
93
96
  playersApi: Api<typeof playersApiDeclaration>;
94
97
  googleCalendarsApi: Api<typeof googleCalendarsApiDeclaration>;
95
98
  googlePlacesApi: Api<typeof googlePlacesApiDeclaration>;
99
+ parseResultsApi: Api<typeof parseResultsApiDeclaration>;
100
+ aggregatorCompaniesApi: Api<typeof aggregatorCompaniesApiDeclaration>;
96
101
  cronParserApi: Api<typeof cronParserApiDeclaration>;
97
102
  slotRulesApi: Api<typeof slotRulesApi>;
98
103
  translationsApi: Api<typeof translationsApiDeclaration>;
@@ -119,6 +124,7 @@ export type InitApiDeclaration = {
119
124
  orderCertificates: Api<typeof orderCertificatesApiDeclaration>;
120
125
  orderGroups: Api<typeof orderGroupsApiDeclaration>;
121
126
  cities: Api<typeof citiesApiDeclaration>;
127
+ districts: Api<typeof districtsApiDeclaration>;
122
128
  subwayStations: Api<typeof subwayStationsApiDeclaration>;
123
129
  nowEscape: Api<typeof nowEscapeApiDeclaration>;
124
130
  logs: Api<typeof logsApiDeclaration>;
@@ -6,6 +6,7 @@ var academy_api_1 = require("./academy-api");
6
6
  var admin_announcements_api_1 = require("./admin-announcements-api");
7
7
  var admins_api_1 = require("./admins-api");
8
8
  var agb_api_1 = require("./agb-api");
9
+ var aggregator_companies_api_1 = require("./aggregator-companies-api");
9
10
  var agregator_api_1 = require("./agregator-api");
10
11
  var analytics_chat_api_1 = require("./analytics-chat-api");
11
12
  var articles_api_1 = require("./articles-api");
@@ -25,6 +26,7 @@ var cron_parser_api_1 = require("./cron-parser-api");
25
26
  var custom_fields_api_1 = require("./custom-fields-api");
26
27
  var dashboard_api_1 = require("./dashboard-api");
27
28
  var dashboard_calendar_api_1 = require("./dashboard-calendar-api");
29
+ var districts_api_1 = require("./districts-api");
28
30
  var dynamic_resources_api_1 = require("./dynamic-resources-api");
29
31
  var emails_api_1 = require("./emails-api");
30
32
  var financeitems_api_1 = require("./financeitems-api");
@@ -54,6 +56,7 @@ var order_transactions_api_1 = require("./order-transactions-api");
54
56
  var order_upsellings_api_1 = require("./order-upsellings-api");
55
57
  var orders_api_1 = require("./orders-api");
56
58
  var packages_api_1 = require("./packages-api");
59
+ var parse_results_api_1 = require("./parse-results-api");
57
60
  var partners_api_1 = require("./partners-api");
58
61
  var players_api_1 = require("./players-api");
59
62
  var products_api_1 = require("./products-api");
@@ -99,6 +102,8 @@ var initClientApi = function (url, clientOptions) { return ({
99
102
  nowEscape: (0, _1.initApi)(now_escape_api_1.nowEscapeApiDeclaration, url, clientOptions),
100
103
  googleCalendarsApi: (0, _1.initApi)(google_calendars_api_1.googleCalendarsApiDeclaration, url, clientOptions),
101
104
  googlePlacesApi: (0, _1.initApi)(google_places_api_1.googlePlacesApiDeclaration, url, clientOptions),
105
+ parseResultsApi: (0, _1.initApi)(parse_results_api_1.parseResultsApiDeclaration, url, clientOptions),
106
+ aggregatorCompaniesApi: (0, _1.initApi)(aggregator_companies_api_1.aggregatorCompaniesApiDeclaration, url, clientOptions),
102
107
  cronParserApi: (0, _1.initApi)(cron_parser_api_1.cronParserApiDeclaration, url, clientOptions),
103
108
  slotRulesApi: (0, _1.initApi)(slot_rules_api_1.slotRulesApi, url, clientOptions),
104
109
  openapiWidget: (0, _1.initApi)(openapi_widget_api_1.openapiWidgetApiDeclaration, url, clientOptions),
@@ -117,6 +122,7 @@ var initClientApi = function (url, clientOptions) { return ({
117
122
  products: (0, _1.initApi)(products_api_1.productsApiDeclaration, url, clientOptions),
118
123
  stockArrivals: (0, _1.initApi)(stock_arrivals_api_1.stockArrivalsApiDeclaration, url, clientOptions),
119
124
  cities: (0, _1.initApi)(cities_api_1.citiesApiDeclaration, url, clientOptions),
125
+ districts: (0, _1.initApi)(districts_api_1.districtsApiDeclaration, url, clientOptions),
120
126
  subwayStations: (0, _1.initApi)(subway_stations_api_1.subwayStationsApiDeclaration, url, clientOptions),
121
127
  orderCertificates: (0, _1.initApi)(order_certificates_api_1.orderCertificatesApiDeclaration, url, clientOptions),
122
128
  orderGroups: (0, _1.initApi)(order_groups_api_1.orderGroupsApiDeclaration, url, clientOptions),
@@ -27,10 +27,6 @@ import { orderGroupPaypalPayment } from './order-groups/order-group-payment-payp
27
27
  import { orderGroupSquarePayment } from './order-groups/order-group-payment-square';
28
28
  import { orderGroupStripePayment } from './order-groups/order-group-payment-stripe';
29
29
  import { removeOrderGroupPreorders } from './order-groups/remove-order-group-preorders';
30
- import { bookPackage } from './packages/book-package';
31
- import { listPackages } from './packages/list-packages';
32
- import { packageAvailability } from './packages/package-availability';
33
- import { packagesByQuestroom } from './packages/packages-by-questroom';
34
30
  import { addPromocodeToOrder } from './orders/add-promocode-to-order';
35
31
  import { addUpsellingToOrder } from './orders/add-upselling-to-order';
36
32
  import { cancelOrder } from './orders/cancel-order';
@@ -55,6 +51,10 @@ import { updateOrder } from './orders/update-order';
55
51
  import { updateOrderLanguageAndMode } from './orders/update-order-language-and-mode';
56
52
  import { updateOrderPlayers } from './orders/update-order-players';
57
53
  import { updateOrderSlot } from './orders/update-order-slot';
54
+ import { bookPackage } from './packages/book-package';
55
+ import { listPackages } from './packages/list-packages';
56
+ import { packageAvailability } from './packages/package-availability';
57
+ import { packagesByQuestroom } from './packages/packages-by-questroom';
58
58
  import { createHold } from './slots/create-hold';
59
59
  import { removeHold } from './slots/remove-hold';
60
60
  import { slotDetails } from './slots/slot-details';
@@ -30,10 +30,6 @@ var order_group_payment_paypal_1 = require("./order-groups/order-group-payment-p
30
30
  var order_group_payment_square_1 = require("./order-groups/order-group-payment-square");
31
31
  var order_group_payment_stripe_1 = require("./order-groups/order-group-payment-stripe");
32
32
  var remove_order_group_preorders_1 = require("./order-groups/remove-order-group-preorders");
33
- var book_package_1 = require("./packages/book-package");
34
- var list_packages_1 = require("./packages/list-packages");
35
- var package_availability_1 = require("./packages/package-availability");
36
- var packages_by_questroom_1 = require("./packages/packages-by-questroom");
37
33
  var add_promocode_to_order_1 = require("./orders/add-promocode-to-order");
38
34
  var add_upselling_to_order_1 = require("./orders/add-upselling-to-order");
39
35
  var cancel_order_1 = require("./orders/cancel-order");
@@ -58,6 +54,10 @@ var update_order_1 = require("./orders/update-order");
58
54
  var update_order_language_and_mode_1 = require("./orders/update-order-language-and-mode");
59
55
  var update_order_players_1 = require("./orders/update-order-players");
60
56
  var update_order_slot_1 = require("./orders/update-order-slot");
57
+ var book_package_1 = require("./packages/book-package");
58
+ var list_packages_1 = require("./packages/list-packages");
59
+ var package_availability_1 = require("./packages/package-availability");
60
+ var packages_by_questroom_1 = require("./packages/packages-by-questroom");
61
61
  var create_hold_1 = require("./slots/create-hold");
62
62
  var remove_hold_1 = require("./slots/remove-hold");
63
63
  var slot_details_1 = require("./slots/slot-details");
@@ -1,7 +1,7 @@
1
- import { OpenapiGetOrderDTO } from '@escapenavigator/types/dist/openapi/orders/openapi-get-order.dto';
1
+ import { OpenapiCancelOrderDTO } from '@escapenavigator/types/dist/openapi/orders/openapi-cancel-order.dto';
2
2
  import { OpenapiOrderRO } from '@escapenavigator/types/dist/openapi/orders/openapi-order.ro';
3
3
  import { ApiMethodDeclaration } from '../..';
4
- type ParamsData = OpenapiGetOrderDTO;
4
+ type ParamsData = OpenapiCancelOrderDTO;
5
5
  type ResponseData = OpenapiOrderRO;
6
6
  export declare const cancelOrderGroup: ApiMethodDeclaration<ParamsData, ResponseData>;
7
7
  export {};
@@ -1,7 +1,7 @@
1
- import { OpenapiGetOrderDTO } from '@escapenavigator/types/dist/openapi/orders/openapi-get-order.dto';
1
+ import { OpenapiCancelOrderDTO } from '@escapenavigator/types/dist/openapi/orders/openapi-cancel-order.dto';
2
2
  import { OpenapiOrderRO } from '@escapenavigator/types/dist/openapi/orders/openapi-order.ro';
3
3
  import { ApiMethodDeclaration } from '../..';
4
- type ParamsData = OpenapiGetOrderDTO;
4
+ type ParamsData = OpenapiCancelOrderDTO;
5
5
  type ResponseData = OpenapiOrderRO;
6
6
  export declare const cancelOrder: ApiMethodDeclaration<ParamsData, ResponseData>;
7
7
  export {};
@@ -0,0 +1,49 @@
1
+ import { ParseResultRO } from '@escapenavigator/types/dist/parse-results/parse-result.ro';
2
+ import { UpdateParseResultDto } from '@escapenavigator/types/dist/parse-results/update-parse-result.dto';
3
+ import { QueryDto } from '@escapenavigator/types/dist/shared/query.dto';
4
+ import { QueryRO } from '@escapenavigator/types/dist/shared/query.ro';
5
+ import { ApiMethodDeclaration } from '..';
6
+ declare const query: ApiMethodDeclaration<QueryDto, QueryRO<ParseResultRO>>;
7
+ declare const count: ApiMethodDeclaration<QueryDto, number>;
8
+ declare const getOne: ApiMethodDeclaration<{
9
+ id: number;
10
+ }, ParseResultRO>;
11
+ /** Кнопка «Спарсить сайт» в карточке компании. */
12
+ declare const enqueue: ApiMethodDeclaration<{
13
+ profileId: number;
14
+ }, ParseResultRO>;
15
+ declare const update: ApiMethodDeclaration<{
16
+ id: number;
17
+ data: UpdateParseResultDto;
18
+ }, ParseResultRO>;
19
+ type ApplyResponse = {
20
+ locationsCreated: number;
21
+ questsCreated: number;
22
+ questsClosed: number;
23
+ errors: string[];
24
+ };
25
+ declare const apply: ApiMethodDeclaration<{
26
+ id: number;
27
+ }, ApplyResponse>;
28
+ declare const reject: ApiMethodDeclaration<{
29
+ id: number;
30
+ }, {
31
+ ok: boolean;
32
+ }>;
33
+ declare const retry: ApiMethodDeclaration<{
34
+ id: number;
35
+ }, {
36
+ ok: boolean;
37
+ }>;
38
+ type ApiDeclaration = {
39
+ query: typeof query;
40
+ count: typeof count;
41
+ getOne: typeof getOne;
42
+ enqueue: typeof enqueue;
43
+ update: typeof update;
44
+ apply: typeof apply;
45
+ reject: typeof reject;
46
+ retry: typeof retry;
47
+ };
48
+ export declare const parseResultsApiDeclaration: ApiDeclaration;
49
+ export {};
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.parseResultsApiDeclaration = void 0;
4
+ var query = function (params) { return ({
5
+ url: '/parse-results',
6
+ method: 'GET',
7
+ params: params,
8
+ }); };
9
+ var count = function (params) { return ({
10
+ url: '/parse-results/count',
11
+ method: 'GET',
12
+ params: params,
13
+ }); };
14
+ var getOne = function (_a) {
15
+ var id = _a.id;
16
+ return ({
17
+ url: "/parse-results/".concat(id),
18
+ method: 'GET',
19
+ });
20
+ };
21
+ /** Кнопка «Спарсить сайт» в карточке компании. */
22
+ var enqueue = function (_a) {
23
+ var profileId = _a.profileId;
24
+ return ({
25
+ url: "/parse-results/profile/".concat(profileId),
26
+ method: 'POST',
27
+ });
28
+ };
29
+ var update = function (_a) {
30
+ var id = _a.id, data = _a.data;
31
+ return ({
32
+ url: "/parse-results/".concat(id),
33
+ method: 'PATCH',
34
+ data: data,
35
+ });
36
+ };
37
+ var apply = function (_a) {
38
+ var id = _a.id;
39
+ return ({
40
+ url: "/parse-results/".concat(id, "/apply"),
41
+ method: 'POST',
42
+ });
43
+ };
44
+ var reject = function (_a) {
45
+ var id = _a.id;
46
+ return ({
47
+ url: "/parse-results/".concat(id, "/reject"),
48
+ method: 'POST',
49
+ });
50
+ };
51
+ var retry = function (_a) {
52
+ var id = _a.id;
53
+ return ({
54
+ url: "/parse-results/".concat(id, "/retry"),
55
+ method: 'POST',
56
+ });
57
+ };
58
+ exports.parseResultsApiDeclaration = {
59
+ query: query,
60
+ count: count,
61
+ getOne: getOne,
62
+ enqueue: enqueue,
63
+ update: update,
64
+ apply: apply,
65
+ reject: reject,
66
+ retry: retry,
67
+ };
@@ -0,0 +1,6 @@
1
+ import { AdminProfileRO } from '@escapenavigator/types/dist/profile/admin-profile.ro';
2
+ import { ApiMethodDeclaration } from '..';
3
+ type ParamsData = undefined;
4
+ type ResponseData = Partial<AdminProfileRO>[];
5
+ export declare const getProfilesWithoutNextAction: ApiMethodDeclaration<ParamsData, ResponseData>;
6
+ export {};
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getProfilesWithoutNextAction = void 0;
4
+ var getProfilesWithoutNextAction = function () { return ({
5
+ url: '/profiles/sales/no-next-action',
6
+ method: 'GET',
7
+ }); };
8
+ exports.getProfilesWithoutNextAction = getProfilesWithoutNextAction;
@@ -54,6 +54,7 @@ import { getBySlugForVerify } from './get-by-slug-for-verify';
54
54
  import { getInactiveCompaniesShort } from './get-inactive-companies-short';
55
55
  import { getOnboardingSteps } from './get-onboarding-steps';
56
56
  import { getOne } from './get-one';
57
+ import { getProfilesWithoutNextAction } from './get-profiles-without-next-action';
57
58
  import { cancelMarketingEmailCampaign } from './marketing-email-campaign/cancel-marketing-email-campaign';
58
59
  import { createMarketingEmailCampaign } from './marketing-email-campaign/create-marketing-email-campaign';
59
60
  import { getMarketingEmailCampaign } from './marketing-email-campaign/get-marketing-email-campaign';
@@ -205,6 +206,7 @@ type ApiDeclaration = {
205
206
  updateStep: typeof updateStep;
206
207
  updatePartnerProgram: typeof updatePartnerProgram;
207
208
  getInactiveCompaniesShort: typeof getInactiveCompaniesShort;
209
+ getProfilesWithoutNextAction: typeof getProfilesWithoutNextAction;
208
210
  finalizeCurrent: typeof finalizeCurrent;
209
211
  updateCurrent: typeof updateCurrent;
210
212
  updateBookingFields: typeof updateBookingFields;
@@ -57,6 +57,7 @@ var get_by_slug_for_verify_1 = require("./get-by-slug-for-verify");
57
57
  var get_inactive_companies_short_1 = require("./get-inactive-companies-short");
58
58
  var get_onboarding_steps_1 = require("./get-onboarding-steps");
59
59
  var get_one_1 = require("./get-one");
60
+ var get_profiles_without_next_action_1 = require("./get-profiles-without-next-action");
60
61
  var cancel_marketing_email_campaign_1 = require("./marketing-email-campaign/cancel-marketing-email-campaign");
61
62
  var create_marketing_email_campaign_1 = require("./marketing-email-campaign/create-marketing-email-campaign");
62
63
  var get_marketing_email_campaign_1 = require("./marketing-email-campaign/get-marketing-email-campaign");
@@ -126,6 +127,7 @@ var get_1 = require("./widget-customization/get");
126
127
  var update_3 = require("./widget-customization/update");
127
128
  exports.profilesApiDeclaration = {
128
129
  getInactiveCompaniesShort: get_inactive_companies_short_1.getInactiveCompaniesShort,
130
+ getProfilesWithoutNextAction: get_profiles_without_next_action_1.getProfilesWithoutNextAction,
129
131
  updateNotificationChanel: update_1.updateNotificationChanel,
130
132
  deleteAction: delete_action_1.deleteAction,
131
133
  queryCalls: query_1.queryCalls,
@@ -0,0 +1,6 @@
1
+ import { SuccessRO } from '@escapenavigator/types/dist/shared/success.ro';
2
+ import { ApiMethodDeclaration } from '../..';
3
+ type ParamsData = undefined;
4
+ type ResponseData = SuccessRO;
5
+ export declare const currentDeleteAccount: ApiMethodDeclaration<ParamsData, ResponseData>;
6
+ export {};
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.currentDeleteAccount = void 0;
4
+ var currentDeleteAccount = function () { return ({
5
+ url: '/current-user/account',
6
+ method: 'DELETE',
7
+ }); };
8
+ exports.currentDeleteAccount = currentDeleteAccount;
@@ -1,6 +1,7 @@
1
1
  import { checkToken } from './check-token';
2
2
  import { compliteSetup } from './complite-setup';
3
3
  import { create } from './create';
4
+ import { currentDeleteAccount } from './current/current-delete-account';
4
5
  import { currentUpdate } from './current/current-update';
5
6
  import { currentUpdateAvatar } from './current/current-update-avatar';
6
7
  import { currentUpdateDashboard } from './current/current-update-dashboard';
@@ -89,6 +90,7 @@ type ApiDeclaration = {
89
90
  me: typeof me;
90
91
  currentUpdate: typeof currentUpdate;
91
92
  currentUpdatePassword: typeof currentUpdatePassword;
93
+ currentDeleteAccount: typeof currentDeleteAccount;
92
94
  getSessionByUserAndDate: typeof getSessionByUserAndDate;
93
95
  getCalendarSessions: typeof getCalendarSessions;
94
96
  querySessions: typeof querySessions;
@@ -4,6 +4,7 @@ exports.usersApiDeclaration = void 0;
4
4
  var check_token_1 = require("./check-token");
5
5
  var complite_setup_1 = require("./complite-setup");
6
6
  var create_1 = require("./create");
7
+ var current_delete_account_1 = require("./current/current-delete-account");
7
8
  var current_update_1 = require("./current/current-update");
8
9
  var current_update_avatar_1 = require("./current/current-update-avatar");
9
10
  var current_update_dashboard_1 = require("./current/current-update-dashboard");
@@ -103,6 +104,7 @@ exports.usersApiDeclaration = {
103
104
  compliteSetup: complite_setup_1.compliteSetup,
104
105
  currentUpdate: current_update_1.currentUpdate,
105
106
  currentUpdatePassword: current_update_password_1.currentUpdatePassword,
107
+ currentDeleteAccount: current_delete_account_1.currentDeleteAccount,
106
108
  getOne: get_one_1.getOne,
107
109
  remove: remove_1.remove,
108
110
  update: update_1.update,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@escapenavigator/services",
3
- "version": "2.0.3",
3
+ "version": "2.0.5",
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": "13a7f625f7f30f2ae4fb84b7344ef2c51112e8b5",
15
+ "gitHead": "353de6475e72710d92abfa449624c818719d7239",
16
16
  "dependencies": {
17
- "@escapenavigator/types": "^2.0.3",
18
- "@escapenavigator/utils": "^2.0.3",
17
+ "@escapenavigator/types": "^2.0.5",
18
+ "@escapenavigator/utils": "^2.0.5",
19
19
  "axios": "^0.21.4",
20
20
  "class-transformer": "^0.5.1",
21
21
  "class-validator": "^0.13.2",