@escapenavigator/services 1.10.13 → 1.10.14
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.
|
@@ -0,0 +1,7 @@
|
|
|
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
|
+
declare type ParamsData = QueryDto;
|
|
5
|
+
declare type ResponseData = QueryRO<any>;
|
|
6
|
+
export declare const queryCalls: ApiMethodDeclaration<ParamsData, ResponseData>;
|
|
7
|
+
export {};
|
|
@@ -17,6 +17,7 @@ import { getBookeoInfo } from './bookeo/get-bookeo-info';
|
|
|
17
17
|
import { getBookeoIntegrationLink } from './bookeo/get-bookeo-integration-link';
|
|
18
18
|
import { getBookeoOrders } from './bookeo/get-bookeo-orders';
|
|
19
19
|
import { resyncBookeo } from './bookeo/resync-bookeo';
|
|
20
|
+
import { queryCalls } from './calls/query';
|
|
20
21
|
import { createContact } from './contacts/create-contact';
|
|
21
22
|
import { getContacts } from './contacts/get-contacts';
|
|
22
23
|
import { removeContact } from './contacts/remove-contact';
|
|
@@ -68,6 +69,7 @@ import { updateCrmVerification } from './update-crm-verification';
|
|
|
68
69
|
import { updatePartnerProgram } from './update-partner-program';
|
|
69
70
|
import { updateStep } from './update-step';
|
|
70
71
|
declare type ApiDeclaration = {
|
|
72
|
+
queryCalls: typeof queryCalls;
|
|
71
73
|
adjustBalance: typeof adjustBalance;
|
|
72
74
|
queryBalanceItems: typeof queryBalanceItems;
|
|
73
75
|
queryBalancePayments: typeof queryBalancePayments;
|
|
@@ -20,6 +20,7 @@ var get_bookeo_info_1 = require("./bookeo/get-bookeo-info");
|
|
|
20
20
|
var get_bookeo_integration_link_1 = require("./bookeo/get-bookeo-integration-link");
|
|
21
21
|
var get_bookeo_orders_1 = require("./bookeo/get-bookeo-orders");
|
|
22
22
|
var resync_bookeo_1 = require("./bookeo/resync-bookeo");
|
|
23
|
+
var query_1 = require("./calls/query");
|
|
23
24
|
var create_contact_1 = require("./contacts/create-contact");
|
|
24
25
|
var get_contacts_1 = require("./contacts/get-contacts");
|
|
25
26
|
var remove_contact_1 = require("./contacts/remove-contact");
|
|
@@ -34,7 +35,7 @@ var query_campaigns_1 = require("./email/query-campaigns");
|
|
|
34
35
|
var test_email_1 = require("./email/test-email");
|
|
35
36
|
var create_2 = require("./notification-chanel/create");
|
|
36
37
|
var get_client_notofocations_1 = require("./notification-chanel/get-client-notofocations");
|
|
37
|
-
var
|
|
38
|
+
var query_2 = require("./notification-chanel/query");
|
|
38
39
|
var remove_1 = require("./notification-chanel/remove");
|
|
39
40
|
var update_1 = require("./notification-chanel/update");
|
|
40
41
|
var webhook_api_1 = require("./notification-chanel/webhook-api");
|
|
@@ -64,7 +65,7 @@ var create_3 = require("./create");
|
|
|
64
65
|
var get_by_slug_for_verify_1 = require("./get-by-slug-for-verify");
|
|
65
66
|
var get_onboarding_steps_1 = require("./get-onboarding-steps");
|
|
66
67
|
var get_one_1 = require("./get-one");
|
|
67
|
-
var
|
|
68
|
+
var query_3 = require("./query");
|
|
68
69
|
var remove_2 = require("./remove");
|
|
69
70
|
var update_3 = require("./update");
|
|
70
71
|
var update_crm_verification_1 = require("./update-crm-verification");
|
|
@@ -72,9 +73,10 @@ var update_partner_program_1 = require("./update-partner-program");
|
|
|
72
73
|
var update_step_1 = require("./update-step");
|
|
73
74
|
exports.profilesApiDeclaration = {
|
|
74
75
|
updateNotificationChanel: update_1.updateNotificationChanel,
|
|
76
|
+
queryCalls: query_1.queryCalls,
|
|
75
77
|
createNotificationChanel: create_2.createNotificationChanel,
|
|
76
78
|
removeNotificationChanel: remove_1.removeNotificationChanel,
|
|
77
|
-
queryNotificationChanels:
|
|
79
|
+
queryNotificationChanels: query_2.queryNotificationChanels,
|
|
78
80
|
webHookApi: webhook_api_1.webHookApi,
|
|
79
81
|
getClientNotifications: get_client_notofocations_1.getClientNotifications,
|
|
80
82
|
queryBalancePayments: query_balance_payments_1.queryBalancePayments,
|
|
@@ -136,7 +138,7 @@ exports.profilesApiDeclaration = {
|
|
|
136
138
|
create: create_3.create,
|
|
137
139
|
remove: remove_2.remove,
|
|
138
140
|
update: update_3.update,
|
|
139
|
-
query:
|
|
141
|
+
query: query_3.query,
|
|
140
142
|
getOne: get_one_1.getOne,
|
|
141
143
|
current: current_1.current,
|
|
142
144
|
getBySlugForVerify: get_by_slug_for_verify_1.getBySlugForVerify,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@escapenavigator/services",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.14",
|
|
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": "252f559ebc56da2d45854ec62f2c66525478efcf",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@escapenavigator/types": "^1.10.
|
|
18
|
-
"@escapenavigator/utils": "^1.10.
|
|
17
|
+
"@escapenavigator/types": "^1.10.14",
|
|
18
|
+
"@escapenavigator/utils": "^1.10.14",
|
|
19
19
|
"axios": "^0.21.4",
|
|
20
20
|
"class-transformer": "^0.5.1",
|
|
21
21
|
"class-validator": "^0.13.2",
|