@escapenavigator/types 1.2.5 → 1.4.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/agregator/agregator-city-questrooms.ro.d.ts +6 -0
- package/dist/agregator/agregator-city-questrooms.ro.js +2 -0
- package/dist/agregator/agregator-city.ro.d.ts +9 -0
- package/dist/agregator/agregator-city.ro.js +2 -0
- package/dist/agregator/agregator-location.ro.d.ts +5 -0
- package/dist/agregator/agregator-location.ro.js +2 -0
- package/dist/agregator/agregator-post.ro.d.ts +6 -0
- package/dist/agregator/agregator-post.ro.js +2 -0
- package/dist/agregator/agregator-posts-list.ro.d.ts +5 -0
- package/dist/agregator/agregator-posts-list.ro.js +2 -0
- package/dist/agregator/agregator-questroom.ro.d.ts +27 -0
- package/dist/agregator/agregator-questroom.ro.js +2 -0
- package/dist/agregator/agregator-questrooms-by-tag-list.ro.d.ts +20 -0
- package/dist/agregator/agregator-questrooms-by-tag-list.ro.js +2 -0
- package/dist/agregator/agregator-questrooms-list.ro.d.ts +18 -0
- package/dist/agregator/agregator-questrooms-list.ro.js +2 -0
- package/dist/agregator/dto/agregator-questrooms-by-tag-query.dto.d.ts +6 -0
- package/dist/agregator/dto/agregator-questrooms-by-tag-query.dto.js +2 -0
- package/dist/shared/enum/countries.enum.d.ts +1 -2
- package/dist/shared/enum/countries.enum.js +1 -2
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/widget-openapi/widget-openapi-certificate.ro.d.ts +16 -0
- package/dist/widget-openapi/widget-openapi-certificate.ro.js +2 -0
- package/dist/widget-openapi/widget-openapi-create-certificate.dto.d.ts +9 -0
- package/dist/widget-openapi/widget-openapi-create-certificate.dto.js +45 -0
- package/dist/widget-openapi/widget-openapi-create-order.dto.d.ts +14 -0
- package/dist/widget-openapi/widget-openapi-create-order.dto.js +63 -0
- package/dist/widget-openapi/widget-openapi-finded-certificate.ro.d.ts +5 -0
- package/dist/widget-openapi/widget-openapi-finded-certificate.ro.js +2 -0
- package/dist/widget-openapi/widget-openapi-order.ro.d.ts +27 -0
- package/dist/widget-openapi/widget-openapi-order.ro.js +2 -0
- package/dist/widget-openapi/widget-openapi-schedule-query.dto.d.ts +2 -1
- package/dist/widget-openapi/widget-openapi-schedule-query.dto.js +7 -2
- package/dist/widget-openapi/widget-openapi.ro.d.ts +25 -0
- package/package.json +3 -2
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { AgregatorCityResponseObject } from "./agregator-city.ro";
|
|
2
|
+
import { AgregatorQuestroomsListResponseObject } from "./agregator-questrooms-list.ro";
|
|
3
|
+
export declare type AgregatorCityQuestroomsResponseObject = {
|
|
4
|
+
city: AgregatorCityResponseObject;
|
|
5
|
+
questrooms: AgregatorQuestroomsListResponseObject;
|
|
6
|
+
}[];
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { Languages } from '../shared/enum/languages.enum';
|
|
2
|
+
export declare type AgregatorQuestroomResponseObject = {
|
|
3
|
+
title: string;
|
|
4
|
+
video?: string;
|
|
5
|
+
photo: string;
|
|
6
|
+
photos?: string[];
|
|
7
|
+
time: number;
|
|
8
|
+
breakInterval: number;
|
|
9
|
+
type: string;
|
|
10
|
+
minAge: number;
|
|
11
|
+
difficult: number;
|
|
12
|
+
fear: number;
|
|
13
|
+
teaser?: string;
|
|
14
|
+
legend?: string;
|
|
15
|
+
actors: boolean;
|
|
16
|
+
languages?: Languages[];
|
|
17
|
+
defaultLanguage?: Languages;
|
|
18
|
+
minHoursForFreeCanceling?: number;
|
|
19
|
+
awailableForNavigator: boolean;
|
|
20
|
+
awailableForWidgets: boolean;
|
|
21
|
+
questroomIds?: number[];
|
|
22
|
+
onlinePaymentsCashbox: number;
|
|
23
|
+
cashPaymentsCashbox: number;
|
|
24
|
+
cardPaymentsCashbox: number;
|
|
25
|
+
locationId: number;
|
|
26
|
+
sortPosition: number;
|
|
27
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { QuestroomTypeEnum } from '../questroom/enum/questroom-type.enum';
|
|
2
|
+
import { Languages } from '../shared/enum/languages.enum';
|
|
3
|
+
export declare type AgregatorQuestroomsByTagListResponseObject = {
|
|
4
|
+
slug: string;
|
|
5
|
+
title: string;
|
|
6
|
+
type: QuestroomTypeEnum;
|
|
7
|
+
rating: number;
|
|
8
|
+
photo: string;
|
|
9
|
+
photos?: string[];
|
|
10
|
+
time: number;
|
|
11
|
+
minAge: number;
|
|
12
|
+
minPlayers: number;
|
|
13
|
+
maxPLayers: number;
|
|
14
|
+
difficult: number;
|
|
15
|
+
fear: number;
|
|
16
|
+
actors: boolean;
|
|
17
|
+
languages?: Languages[];
|
|
18
|
+
city: string;
|
|
19
|
+
address: string;
|
|
20
|
+
}[];
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { QuestroomTypeEnum } from '../questroom/enum/questroom-type.enum';
|
|
2
|
+
import { Languages } from '../shared/enum/languages.enum';
|
|
3
|
+
export declare type AgregatorQuestroomsListResponseObject = {
|
|
4
|
+
slug: string;
|
|
5
|
+
title: string;
|
|
6
|
+
type: QuestroomTypeEnum;
|
|
7
|
+
rating: number;
|
|
8
|
+
photo: string;
|
|
9
|
+
photos?: string[];
|
|
10
|
+
time: number;
|
|
11
|
+
minAge: number;
|
|
12
|
+
minPlayers: number;
|
|
13
|
+
maxPLayers: number;
|
|
14
|
+
difficult: number;
|
|
15
|
+
fear: number;
|
|
16
|
+
actors: boolean;
|
|
17
|
+
languages?: Languages[];
|
|
18
|
+
}[];
|
|
@@ -4,7 +4,6 @@ exports.CountriesEnum = void 0;
|
|
|
4
4
|
var CountriesEnum;
|
|
5
5
|
(function (CountriesEnum) {
|
|
6
6
|
CountriesEnum["GERMANY"] = "de";
|
|
7
|
-
CountriesEnum["AUSTRIA"] = "
|
|
8
|
-
CountriesEnum["USA"] = "usa";
|
|
7
|
+
CountriesEnum["AUSTRIA"] = "at";
|
|
9
8
|
CountriesEnum["RUSSIA"] = "ru";
|
|
10
9
|
})(CountriesEnum = exports.CountriesEnum || (exports.CountriesEnum = {}));
|