@escapenavigator/services 1.10.101 → 1.10.104
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/admins-api/aggregator-issue/find-latest-issues.d.ts +8 -0
- package/dist/api/admins-api/aggregator-issue/find-latest-issues.js +12 -0
- package/dist/api/admins-api/aggregator-issue/update-issue-status.d.ts +10 -0
- package/dist/api/admins-api/aggregator-issue/update-issue-status.js +12 -0
- package/dist/api/admins-api/index.d.ts +4 -0
- package/dist/api/admins-api/index.js +4 -0
- package/dist/api/certificatesales-api/index.d.ts +2 -0
- package/dist/api/certificatesales-api/index.js +2 -0
- package/dist/api/certificatesales-api/update-tracking-info-admin.d.ts +10 -0
- package/dist/api/certificatesales-api/update-tracking-info-admin.js +12 -0
- package/dist/api/openapi-widget-api/certificates/check-navigator-certificate-by-code.d.ts +12 -0
- package/dist/api/openapi-widget-api/certificates/check-navigator-certificate-by-code.js +9 -0
- package/dist/api/openapi-widget-api/certificates/create-navigator-certificate.d.ts +2 -2
- package/dist/api/openapi-widget-api/certificates/create-navigator-certificate.js +1 -1
- package/dist/api/openapi-widget-api/certificates/get-navigator-certificate-templates.d.ts +2 -2
- package/dist/api/openapi-widget-api/certificates/get-navigator-certificate-templates.js +1 -1
- package/dist/api/openapi-widget-api/index.d.ts +2 -2
- package/dist/api/openapi-widget-api/index.js +2 -2
- package/dist/api/profiles-api/get-inactive-companies-short.d.ts +6 -0
- package/dist/api/profiles-api/get-inactive-companies-short.js +8 -0
- package/dist/api/profiles-api/index.d.ts +2 -0
- package/dist/api/profiles-api/index.js +2 -0
- package/package.json +4 -4
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { AggregatorIssueRO } from '@escapenavigator/types/dist/admin/aggregator-issue/aggregator-issue.ro';
|
|
2
|
+
import { ApiMethodDeclaration } from '../..';
|
|
3
|
+
type ParamsData = {
|
|
4
|
+
limit?: number;
|
|
5
|
+
};
|
|
6
|
+
type ResponseData = AggregatorIssueRO[];
|
|
7
|
+
export declare const findLatestIssues: ApiMethodDeclaration<ParamsData, ResponseData>;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.findLatestIssues = void 0;
|
|
4
|
+
var findLatestIssues = function (_a) {
|
|
5
|
+
var limit = _a.limit;
|
|
6
|
+
return ({
|
|
7
|
+
url: '/aggregator-issue/latest',
|
|
8
|
+
method: 'GET',
|
|
9
|
+
params: { limit: limit },
|
|
10
|
+
});
|
|
11
|
+
};
|
|
12
|
+
exports.findLatestIssues = findLatestIssues;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { AggregatorIssueRO } from '@escapenavigator/types/dist/admin/aggregator-issue/aggregator-issue.ro';
|
|
2
|
+
import { AggregatorIssueStatusEnum } from '@escapenavigator/types/dist/admin/aggregator-issue/enum/aggregator-issue-status.enum';
|
|
3
|
+
import { ApiMethodDeclaration } from '../..';
|
|
4
|
+
type ParamsData = {
|
|
5
|
+
id: number;
|
|
6
|
+
status: AggregatorIssueStatusEnum;
|
|
7
|
+
};
|
|
8
|
+
type ResponseData = AggregatorIssueRO;
|
|
9
|
+
export declare const updateIssueStatus: ApiMethodDeclaration<ParamsData, ResponseData>;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.updateIssueStatus = void 0;
|
|
4
|
+
var updateIssueStatus = function (_a) {
|
|
5
|
+
var id = _a.id, status = _a.status;
|
|
6
|
+
return ({
|
|
7
|
+
url: "/aggregator-issue/".concat(id, "/status"),
|
|
8
|
+
method: 'PATCH',
|
|
9
|
+
data: { status: status },
|
|
10
|
+
});
|
|
11
|
+
};
|
|
12
|
+
exports.updateIssueStatus = updateIssueStatus;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { findAllIssues } from './aggregator-issue/find-all-issues';
|
|
2
|
+
import { findLatestIssues } from './aggregator-issue/find-latest-issues';
|
|
2
3
|
import { removeIssues } from './aggregator-issue/remove-issue';
|
|
4
|
+
import { updateIssueStatus } from './aggregator-issue/update-issue-status';
|
|
3
5
|
import { create } from './create';
|
|
4
6
|
import { getProfileToken } from './get-profile-token';
|
|
5
7
|
import { login } from './login';
|
|
@@ -24,6 +26,8 @@ import { getAggregatorQuestroomDailyStatistics } from './get-aggregator-questroo
|
|
|
24
26
|
type ApiDeclaration = {
|
|
25
27
|
removeIssues: typeof removeIssues;
|
|
26
28
|
findAllIssues: typeof findAllIssues;
|
|
29
|
+
findLatestIssues: typeof findLatestIssues;
|
|
30
|
+
updateIssueStatus: typeof updateIssueStatus;
|
|
27
31
|
queryAggregatorOrders: typeof queryAggregatorOrders;
|
|
28
32
|
updateAggregatorOrder: typeof updateAggregatorOrder;
|
|
29
33
|
retryAggregatorOrderBooking: typeof retryAggregatorOrderBooking;
|
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.adminsApiDeclaration = void 0;
|
|
4
4
|
var find_all_issues_1 = require("./aggregator-issue/find-all-issues");
|
|
5
|
+
var find_latest_issues_1 = require("./aggregator-issue/find-latest-issues");
|
|
5
6
|
var remove_issue_1 = require("./aggregator-issue/remove-issue");
|
|
7
|
+
var update_issue_status_1 = require("./aggregator-issue/update-issue-status");
|
|
6
8
|
var create_1 = require("./create");
|
|
7
9
|
var get_profile_token_1 = require("./get-profile-token");
|
|
8
10
|
var login_1 = require("./login");
|
|
@@ -27,6 +29,8 @@ var get_aggregator_questroom_daily_statistics_1 = require("./get-aggregator-ques
|
|
|
27
29
|
exports.adminsApiDeclaration = {
|
|
28
30
|
removeIssues: remove_issue_1.removeIssues,
|
|
29
31
|
findAllIssues: find_all_issues_1.findAllIssues,
|
|
32
|
+
findLatestIssues: find_latest_issues_1.findLatestIssues,
|
|
33
|
+
updateIssueStatus: update_issue_status_1.updateIssueStatus,
|
|
30
34
|
queryAggregatorOrders: query_aggregator_orders_1.queryAggregatorOrders,
|
|
31
35
|
updateAggregatorOrder: update_aggregator_order_1.updateAggregatorOrder,
|
|
32
36
|
retryAggregatorOrderBooking: retry_aggregator_order_booking_1.retryAggregatorOrderBooking,
|
|
@@ -13,6 +13,7 @@ import { queryInside } from './query-inside';
|
|
|
13
13
|
import { resend } from './resend';
|
|
14
14
|
import { ship } from './ship';
|
|
15
15
|
import { updateExpireDate } from './update-expire-date';
|
|
16
|
+
import { updateTrackingInfoAdmin } from './update-tracking-info-admin';
|
|
16
17
|
import { updateexternalCode } from './update-external-code';
|
|
17
18
|
import { updateTrackingInfo } from './update-tracking-info';
|
|
18
19
|
export type { CertificateSaleRO } from '@escapenavigator/types/dist/certificate-sale/certificate-sale.ro';
|
|
@@ -28,6 +29,7 @@ type ApiDeclaration = {
|
|
|
28
29
|
resend: typeof resend;
|
|
29
30
|
updateExpireDate: typeof updateExpireDate;
|
|
30
31
|
updateTrackingInfo: typeof updateTrackingInfo;
|
|
32
|
+
updateTrackingInfoAdmin: typeof updateTrackingInfoAdmin;
|
|
31
33
|
deleteTransaction: typeof deleteTransaction;
|
|
32
34
|
recoverTransaction: typeof recoverTransaction;
|
|
33
35
|
queryInside: typeof queryInside;
|
|
@@ -16,6 +16,7 @@ var query_inside_1 = require("./query-inside");
|
|
|
16
16
|
var resend_1 = require("./resend");
|
|
17
17
|
var ship_1 = require("./ship");
|
|
18
18
|
var update_expire_date_1 = require("./update-expire-date");
|
|
19
|
+
var update_tracking_info_admin_1 = require("./update-tracking-info-admin");
|
|
19
20
|
var update_external_code_1 = require("./update-external-code");
|
|
20
21
|
var update_tracking_info_1 = require("./update-tracking-info");
|
|
21
22
|
exports.certificateSalesApiDeclaration = {
|
|
@@ -33,6 +34,7 @@ exports.certificateSalesApiDeclaration = {
|
|
|
33
34
|
resend: resend_1.resend,
|
|
34
35
|
updateExpireDate: update_expire_date_1.updateExpireDate,
|
|
35
36
|
updateTrackingInfo: update_tracking_info_1.updateTrackingInfo,
|
|
37
|
+
updateTrackingInfoAdmin: update_tracking_info_admin_1.updateTrackingInfoAdmin,
|
|
36
38
|
queryPromocodes: query_promocodes_1.queryPromocodes,
|
|
37
39
|
removePromocode: remove_promocode_1.removePromocode,
|
|
38
40
|
createPromocode: create_promocode_1.createPromocode,
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CertificateSaleRO } from '@escapenavigator/types/dist/certificate-sale/certificate-sale.ro';
|
|
2
|
+
import { UpdateCertificatesaleTrackingInfoDto } from '@escapenavigator/types/dist/certificate-sale/update-certificatesale-tracking-info.dto';
|
|
3
|
+
import { ApiMethodDeclaration } from '..';
|
|
4
|
+
type ParamsData = {
|
|
5
|
+
id: number;
|
|
6
|
+
data: UpdateCertificatesaleTrackingInfoDto;
|
|
7
|
+
};
|
|
8
|
+
type ResponseData = CertificateSaleRO;
|
|
9
|
+
export declare const updateTrackingInfoAdmin: ApiMethodDeclaration<ParamsData, ResponseData>;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.updateTrackingInfoAdmin = void 0;
|
|
4
|
+
var updateTrackingInfoAdmin = function (_a) {
|
|
5
|
+
var id = _a.id, data = _a.data;
|
|
6
|
+
return ({
|
|
7
|
+
url: "/certificatesales/admin/tracking-info/".concat(id),
|
|
8
|
+
method: 'PATCH',
|
|
9
|
+
data: data,
|
|
10
|
+
});
|
|
11
|
+
};
|
|
12
|
+
exports.updateTrackingInfoAdmin = updateTrackingInfoAdmin;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ProfileCurrencyEnum } from '@escapenavigator/types/dist/profile/enum/profile-currency';
|
|
2
|
+
import { ApiMethodDeclaration } from '../..';
|
|
3
|
+
type ParamsData = {
|
|
4
|
+
code: string;
|
|
5
|
+
};
|
|
6
|
+
type ResponseData = {
|
|
7
|
+
found: boolean;
|
|
8
|
+
amount: number | null;
|
|
9
|
+
currency: ProfileCurrencyEnum | null;
|
|
10
|
+
};
|
|
11
|
+
export declare const checkNavigatorCertificateByCode: ApiMethodDeclaration<ParamsData, ResponseData>;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.checkNavigatorCertificateByCode = void 0;
|
|
4
|
+
var checkNavigatorCertificateByCode = function (params) { return ({
|
|
5
|
+
url: '/openapi/navigator-certificates/check/by-code',
|
|
6
|
+
method: 'GET',
|
|
7
|
+
params: params,
|
|
8
|
+
}); };
|
|
9
|
+
exports.checkNavigatorCertificateByCode = checkNavigatorCertificateByCode;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CreateNavigatorCertificateSaleDto } from '@escapenavigator/types/dist/navigator-certificate/create-navigator-certificate-sale.dto';
|
|
2
|
-
import {
|
|
2
|
+
import { OpenapiNavigatorCertificateSaleRO } from '@escapenavigator/types/dist/openapi/certificates/openapi-navigator-certificate-sale.ro';
|
|
3
3
|
import { ApiMethodDeclaration } from '../..';
|
|
4
4
|
type ParamsData = CreateNavigatorCertificateSaleDto;
|
|
5
|
-
type ResponseData =
|
|
5
|
+
type ResponseData = OpenapiNavigatorCertificateSaleRO;
|
|
6
6
|
export declare const createNavigatorCertificate: ApiMethodDeclaration<ParamsData, ResponseData>;
|
|
7
7
|
export {};
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.createNavigatorCertificate = void 0;
|
|
4
4
|
var createNavigatorCertificate = function (data) { return ({
|
|
5
|
-
url: '/navigator-
|
|
5
|
+
url: '/openapi/navigator-certificates',
|
|
6
6
|
method: 'POST',
|
|
7
7
|
data: data,
|
|
8
8
|
}); };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OpenapiNavigatorCertificateTemplatesRO } from '@escapenavigator/types/dist/navigator-certificate';
|
|
2
2
|
import { ApiMethodDeclaration } from '../..';
|
|
3
3
|
type ParamsData = {
|
|
4
4
|
country: string;
|
|
5
5
|
};
|
|
6
|
-
type ResponseData =
|
|
6
|
+
type ResponseData = OpenapiNavigatorCertificateTemplatesRO;
|
|
7
7
|
export declare const getNavigatorCertificateTemplates: ApiMethodDeclaration<ParamsData, ResponseData>;
|
|
8
8
|
export {};
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getNavigatorCertificateTemplates = void 0;
|
|
4
4
|
var getNavigatorCertificateTemplates = function (params) { return ({
|
|
5
|
-
url: '/openapi/certificates/
|
|
5
|
+
url: '/openapi/navigator-certificates/templates',
|
|
6
6
|
method: 'GET',
|
|
7
7
|
params: params,
|
|
8
8
|
}); };
|
|
@@ -4,6 +4,7 @@ import { capturePaypalNavigatorCertificate } from './certificates/capture-paypal
|
|
|
4
4
|
import { certificatePaypalPayment } from './certificates/certificate-paypal-payment';
|
|
5
5
|
import { certificateSquarePayment } from './certificates/certificate-square-payment';
|
|
6
6
|
import { certificateStripePayment } from './certificates/certificate-stripe-payment';
|
|
7
|
+
import { checkNavigatorCertificateByCode } from './certificates/check-navigator-certificate-by-code';
|
|
7
8
|
import { createCertificate } from './certificates/create-certificate';
|
|
8
9
|
import { createNavigatorCertificate } from './certificates/create-navigator-certificate';
|
|
9
10
|
import { findCertificate } from './certificates/find-certificate';
|
|
@@ -12,7 +13,6 @@ import { getNavigatorCertificateTemplates } from './certificates/get-navigator-c
|
|
|
12
13
|
import { getCertificatePaymentMethods } from './certificates/get-certificate-payment-methods';
|
|
13
14
|
import { getNavigatorCertificatePaymentMethods } from './certificates/get-navigator-certificate-payment-methods';
|
|
14
15
|
import { navigatorCertificatePaypalPayment } from './certificates/navigator-certificate-paypal-payment';
|
|
15
|
-
import { navigatorCertificateSquarePayment } from './certificates/navigator-certificate-square-payment';
|
|
16
16
|
import { navigatorCertificateStripePayment } from './certificates/navigator-certificate-stripe-payment';
|
|
17
17
|
import { removePromocodeFromCertificate } from './certificates/remove-certificate-from-order';
|
|
18
18
|
import { addPromocodeToOrder } from './orders/add-promocode-to-order';
|
|
@@ -58,6 +58,7 @@ type ApiDeclaration = {
|
|
|
58
58
|
orderStripePayment: typeof orderStripePayment;
|
|
59
59
|
certificatePaypalPayment: typeof certificatePaypalPayment;
|
|
60
60
|
certificateStripePayment: typeof certificateStripePayment;
|
|
61
|
+
checkNavigatorCertificateByCode: typeof checkNavigatorCertificateByCode;
|
|
61
62
|
createCertificate: typeof createCertificate;
|
|
62
63
|
createNavigatorCertificate: typeof createNavigatorCertificate;
|
|
63
64
|
findCertificate: typeof findCertificate;
|
|
@@ -65,7 +66,6 @@ type ApiDeclaration = {
|
|
|
65
66
|
getNavigatorCertificateTemplates: typeof getNavigatorCertificateTemplates;
|
|
66
67
|
getNavigatorCertificatePaymentMethods: typeof getNavigatorCertificatePaymentMethods;
|
|
67
68
|
navigatorCertificatePaypalPayment: typeof navigatorCertificatePaypalPayment;
|
|
68
|
-
navigatorCertificateSquarePayment: typeof navigatorCertificateSquarePayment;
|
|
69
69
|
navigatorCertificateStripePayment: typeof navigatorCertificateStripePayment;
|
|
70
70
|
capturePaypalNavigatorCertificate: typeof capturePaypalNavigatorCertificate;
|
|
71
71
|
addPromocodeToOrder: typeof addPromocodeToOrder;
|
|
@@ -7,6 +7,7 @@ var capture_paypal_navigator_certificate_1 = require("./certificates/capture-pay
|
|
|
7
7
|
var certificate_paypal_payment_1 = require("./certificates/certificate-paypal-payment");
|
|
8
8
|
var certificate_square_payment_1 = require("./certificates/certificate-square-payment");
|
|
9
9
|
var certificate_stripe_payment_1 = require("./certificates/certificate-stripe-payment");
|
|
10
|
+
var check_navigator_certificate_by_code_1 = require("./certificates/check-navigator-certificate-by-code");
|
|
10
11
|
var create_certificate_1 = require("./certificates/create-certificate");
|
|
11
12
|
var create_navigator_certificate_1 = require("./certificates/create-navigator-certificate");
|
|
12
13
|
var find_certificate_1 = require("./certificates/find-certificate");
|
|
@@ -15,7 +16,6 @@ var get_navigator_certificate_templates_1 = require("./certificates/get-navigato
|
|
|
15
16
|
var get_certificate_payment_methods_1 = require("./certificates/get-certificate-payment-methods");
|
|
16
17
|
var get_navigator_certificate_payment_methods_1 = require("./certificates/get-navigator-certificate-payment-methods");
|
|
17
18
|
var navigator_certificate_paypal_payment_1 = require("./certificates/navigator-certificate-paypal-payment");
|
|
18
|
-
var navigator_certificate_square_payment_1 = require("./certificates/navigator-certificate-square-payment");
|
|
19
19
|
var navigator_certificate_stripe_payment_1 = require("./certificates/navigator-certificate-stripe-payment");
|
|
20
20
|
var remove_certificate_from_order_1 = require("./certificates/remove-certificate-from-order");
|
|
21
21
|
var add_promocode_to_order_1 = require("./orders/add-promocode-to-order");
|
|
@@ -64,6 +64,7 @@ exports.openapiWidgetApiDeclaration = {
|
|
|
64
64
|
orderStripePayment: order_payment_stripe_1.orderStripePayment,
|
|
65
65
|
certificatePaypalPayment: certificate_paypal_payment_1.certificatePaypalPayment,
|
|
66
66
|
certificateStripePayment: certificate_stripe_payment_1.certificateStripePayment,
|
|
67
|
+
checkNavigatorCertificateByCode: check_navigator_certificate_by_code_1.checkNavigatorCertificateByCode,
|
|
67
68
|
createCertificate: create_certificate_1.createCertificate,
|
|
68
69
|
createNavigatorCertificate: create_navigator_certificate_1.createNavigatorCertificate,
|
|
69
70
|
findCertificate: find_certificate_1.findCertificate,
|
|
@@ -71,7 +72,6 @@ exports.openapiWidgetApiDeclaration = {
|
|
|
71
72
|
getNavigatorCertificateTemplates: get_navigator_certificate_templates_1.getNavigatorCertificateTemplates,
|
|
72
73
|
getNavigatorCertificatePaymentMethods: get_navigator_certificate_payment_methods_1.getNavigatorCertificatePaymentMethods,
|
|
73
74
|
navigatorCertificatePaypalPayment: navigator_certificate_paypal_payment_1.navigatorCertificatePaypalPayment,
|
|
74
|
-
navigatorCertificateSquarePayment: navigator_certificate_square_payment_1.navigatorCertificateSquarePayment,
|
|
75
75
|
navigatorCertificateStripePayment: navigator_certificate_stripe_payment_1.navigatorCertificateStripePayment,
|
|
76
76
|
capturePaypalNavigatorCertificate: capture_paypal_navigator_certificate_1.capturePaypalNavigatorCertificate,
|
|
77
77
|
addPromocodeToOrder: add_promocode_to_order_1.addPromocodeToOrder,
|
|
@@ -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 getInactiveCompaniesShort: ApiMethodDeclaration<ParamsData, ResponseData>;
|
|
6
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getInactiveCompaniesShort = void 0;
|
|
4
|
+
var getInactiveCompaniesShort = function () { return ({
|
|
5
|
+
url: '/profiles/inactive-companies-short',
|
|
6
|
+
method: 'GET',
|
|
7
|
+
}); };
|
|
8
|
+
exports.getInactiveCompaniesShort = getInactiveCompaniesShort;
|
|
@@ -19,6 +19,7 @@ import { getBookeoIntegrationLink } from './bookeo/get-bookeo-integration-link';
|
|
|
19
19
|
import { getBookeoOrders } from './bookeo/get-bookeo-orders';
|
|
20
20
|
import { resyncBookeo } from './bookeo/resync-bookeo';
|
|
21
21
|
import { queryCalls } from './calls/query';
|
|
22
|
+
import { getInactiveCompaniesShort } from './get-inactive-companies-short';
|
|
22
23
|
import { createContact } from './contacts/create-contact';
|
|
23
24
|
import { getContacts } from './contacts/get-contacts';
|
|
24
25
|
import { removeContact } from './contacts/remove-contact';
|
|
@@ -134,6 +135,7 @@ type ApiDeclaration = {
|
|
|
134
135
|
cancelSubscription: typeof cancelSubscription;
|
|
135
136
|
updateStep: typeof updateStep;
|
|
136
137
|
updatePartnerProgram: typeof updatePartnerProgram;
|
|
138
|
+
getInactiveCompaniesShort: typeof getInactiveCompaniesShort;
|
|
137
139
|
finalizeCurrent: typeof finalizeCurrent;
|
|
138
140
|
updateCurrent: typeof updateCurrent;
|
|
139
141
|
updateBookingFields: typeof updateBookingFields;
|
|
@@ -22,6 +22,7 @@ var get_bookeo_integration_link_1 = require("./bookeo/get-bookeo-integration-lin
|
|
|
22
22
|
var get_bookeo_orders_1 = require("./bookeo/get-bookeo-orders");
|
|
23
23
|
var resync_bookeo_1 = require("./bookeo/resync-bookeo");
|
|
24
24
|
var query_1 = require("./calls/query");
|
|
25
|
+
var get_inactive_companies_short_1 = require("./get-inactive-companies-short");
|
|
25
26
|
var create_contact_1 = require("./contacts/create-contact");
|
|
26
27
|
var get_contacts_1 = require("./contacts/get-contacts");
|
|
27
28
|
var remove_contact_1 = require("./contacts/remove-contact");
|
|
@@ -83,6 +84,7 @@ exports.profilesApiDeclaration = {
|
|
|
83
84
|
getAllRooms: get_all_1.getAllRooms,
|
|
84
85
|
deleteRoom: delete_1.deleteRoom,
|
|
85
86
|
registerQuestroomVisit: register_questroom_visit_1.registerQuestroomVisit,
|
|
87
|
+
getInactiveCompaniesShort: get_inactive_companies_short_1.getInactiveCompaniesShort,
|
|
86
88
|
updateNotificationChanel: update_1.updateNotificationChanel,
|
|
87
89
|
getRoom: get_one_1.getRoom,
|
|
88
90
|
createRoom: create_3.createRoom,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@escapenavigator/services",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.104",
|
|
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": "def29e9251b6e27a2925c8385141e89897363d84",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@escapenavigator/types": "^1.10.
|
|
18
|
-
"@escapenavigator/utils": "^1.10.
|
|
17
|
+
"@escapenavigator/types": "^1.10.96",
|
|
18
|
+
"@escapenavigator/utils": "^1.10.100",
|
|
19
19
|
"axios": "^0.21.4",
|
|
20
20
|
"class-transformer": "^0.5.1",
|
|
21
21
|
"class-validator": "^0.13.2",
|