@escapenavigator/services 2.0.0 → 2.0.2
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/dashboard-calendar-api/index.d.ts +6 -0
- package/dist/api/dashboard-calendar-api/index.js +7 -0
- package/dist/api/dashboard-calendar-api/markers.d.ts +7 -0
- package/dist/api/dashboard-calendar-api/markers.js +9 -0
- package/dist/api/init-client-api.d.ts +2 -0
- package/dist/api/init-client-api.js +2 -0
- package/package.json +4 -4
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { DashboardCalendarMarkersDto } from '@escapenavigator/types/dist/dashboard-calendar/dashboard-calendar-markers.dto';
|
|
2
|
+
import { DashboardCalendarMarkersRO } from '@escapenavigator/types/dist/dashboard-calendar/dashboard-calendar-markers.ro';
|
|
3
|
+
import { ApiMethodDeclaration } from '..';
|
|
4
|
+
type ParamsData = DashboardCalendarMarkersDto;
|
|
5
|
+
type ResponseData = DashboardCalendarMarkersRO;
|
|
6
|
+
export declare const markers: ApiMethodDeclaration<ParamsData, ResponseData>;
|
|
7
|
+
export {};
|
|
@@ -19,6 +19,7 @@ import { clientsApiDeclaration } from './clients-api';
|
|
|
19
19
|
import { cronParserApiDeclaration } from './cron-parser-api';
|
|
20
20
|
import { customFieldsApiDeclaration } from './custom-fields-api';
|
|
21
21
|
import { dashboardApiDeclaration } from './dashboard-api';
|
|
22
|
+
import { dashboardCalendarApiDeclaration } from './dashboard-calendar-api';
|
|
22
23
|
import { dynamicResourcesApiDeclaration } from './dynamic-resources-api';
|
|
23
24
|
import { emailsApiDeclaration } from './emails-api';
|
|
24
25
|
import { financeItemsApiDeclaration } from './financeitems-api';
|
|
@@ -96,6 +97,7 @@ export type InitApiDeclaration = {
|
|
|
96
97
|
expertsReviews: Api<typeof expertsReviewsApiDeclaration>;
|
|
97
98
|
socialReviews: Api<typeof socialReviewsApiDeclaration>;
|
|
98
99
|
dashboard: Api<typeof dashboardApiDeclaration>;
|
|
100
|
+
dashboardCalendar: Api<typeof dashboardCalendarApiDeclaration>;
|
|
99
101
|
statiscticsApi: Api<typeof statisticsApiDeclaration>;
|
|
100
102
|
searchApi: Api<typeof searchApiDeclaration>;
|
|
101
103
|
promocodes: Api<typeof promocodesApiDeclaration>;
|
|
@@ -22,6 +22,7 @@ var clients_api_1 = require("./clients-api");
|
|
|
22
22
|
var cron_parser_api_1 = require("./cron-parser-api");
|
|
23
23
|
var custom_fields_api_1 = require("./custom-fields-api");
|
|
24
24
|
var dashboard_api_1 = require("./dashboard-api");
|
|
25
|
+
var dashboard_calendar_api_1 = require("./dashboard-calendar-api");
|
|
25
26
|
var dynamic_resources_api_1 = require("./dynamic-resources-api");
|
|
26
27
|
var emails_api_1 = require("./emails-api");
|
|
27
28
|
var financeitems_api_1 = require("./financeitems-api");
|
|
@@ -102,6 +103,7 @@ var initClientApi = function (url, clientOptions) { return ({
|
|
|
102
103
|
orderTransactionsApi: (0, _1.initApi)(order_transactions_api_1.orderTransactionsApiDeclaration, url, clientOptions),
|
|
103
104
|
translationsApi: (0, _1.initApi)(translations_api_1.translationsApiDeclaration, url, clientOptions),
|
|
104
105
|
dashboard: (0, _1.initApi)(dashboard_api_1.dashboardApiDeclaration, url, clientOptions),
|
|
106
|
+
dashboardCalendar: (0, _1.initApi)(dashboard_calendar_api_1.dashboardCalendarApiDeclaration, url, clientOptions),
|
|
105
107
|
expertsReviews: (0, _1.initApi)(reviews_experts_api_1.expertsReviewsApiDeclaration, url, clientOptions),
|
|
106
108
|
socialReviews: (0, _1.initApi)(reviews_social_api_1.socialReviewsApiDeclaration, url, clientOptions),
|
|
107
109
|
orderCertificateUploads: (0, _1.initApi)(order_certificate_uploads_api_1.orderCertificateUploadsApiDeclaration, url, clientOptions),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@escapenavigator/services",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
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": "fd5d63cf01b4dcde8e8938233e741e6113ed7865",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@escapenavigator/types": "^2.0.
|
|
18
|
-
"@escapenavigator/utils": "^2.0.
|
|
17
|
+
"@escapenavigator/types": "^2.0.2",
|
|
18
|
+
"@escapenavigator/utils": "^2.0.2",
|
|
19
19
|
"axios": "^0.21.4",
|
|
20
20
|
"class-transformer": "^0.5.1",
|
|
21
21
|
"class-validator": "^0.13.2",
|