@escapenavigator/types 1.2.4 → 1.4.1

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 (35) hide show
  1. package/dist/agregator/agregator-city-questrooms.ro.d.ts +6 -0
  2. package/dist/agregator/agregator-city-questrooms.ro.js +2 -0
  3. package/dist/agregator/agregator-city.ro.d.ts +9 -0
  4. package/dist/agregator/agregator-city.ro.js +2 -0
  5. package/dist/agregator/agregator-location.ro.d.ts +5 -0
  6. package/dist/agregator/agregator-location.ro.js +2 -0
  7. package/dist/agregator/agregator-post.ro.d.ts +6 -0
  8. package/dist/agregator/agregator-post.ro.js +2 -0
  9. package/dist/agregator/agregator-posts-list.ro.d.ts +5 -0
  10. package/dist/agregator/agregator-posts-list.ro.js +2 -0
  11. package/dist/agregator/agregator-questroom.ro.d.ts +27 -0
  12. package/dist/agregator/agregator-questroom.ro.js +2 -0
  13. package/dist/agregator/agregator-questrooms-by-tag-list.ro.d.ts +20 -0
  14. package/dist/agregator/agregator-questrooms-by-tag-list.ro.js +2 -0
  15. package/dist/agregator/agregator-questrooms-list.ro.d.ts +18 -0
  16. package/dist/agregator/agregator-questrooms-list.ro.js +2 -0
  17. package/dist/agregator/dto/agregator-questrooms-by-tag-query.dto.d.ts +6 -0
  18. package/dist/agregator/dto/agregator-questrooms-by-tag-query.dto.js +2 -0
  19. package/dist/shared/enum/countries.enum.d.ts +1 -2
  20. package/dist/shared/enum/countries.enum.js +1 -2
  21. package/dist/tsconfig.build.tsbuildinfo +1 -1
  22. package/dist/widget-openapi/widget-openapi-certificate.ro.d.ts +16 -0
  23. package/dist/widget-openapi/widget-openapi-certificate.ro.js +2 -0
  24. package/dist/widget-openapi/widget-openapi-create-certificate.dto.d.ts +9 -0
  25. package/dist/widget-openapi/widget-openapi-create-certificate.dto.js +45 -0
  26. package/dist/widget-openapi/widget-openapi-create-order.dto.d.ts +14 -0
  27. package/dist/widget-openapi/widget-openapi-create-order.dto.js +63 -0
  28. package/dist/widget-openapi/widget-openapi-finded-certificate.ro.d.ts +5 -0
  29. package/dist/widget-openapi/widget-openapi-finded-certificate.ro.js +2 -0
  30. package/dist/widget-openapi/widget-openapi-order.ro.d.ts +27 -0
  31. package/dist/widget-openapi/widget-openapi-order.ro.js +2 -0
  32. package/dist/widget-openapi/widget-openapi-schedule-query.dto.d.ts +2 -1
  33. package/dist/widget-openapi/widget-openapi-schedule-query.dto.js +7 -2
  34. package/dist/widget-openapi/widget-openapi.ro.d.ts +27 -2
  35. 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,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ import { CountriesEnum } from './../shared/enum/countries.enum';
2
+ export declare type AgregatorCityResponseObject = {
3
+ title: string;
4
+ country: CountriesEnum;
5
+ photo?: string;
6
+ coordinates: [number, number];
7
+ questroomsCount: number;
8
+ slug: string;
9
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,5 @@
1
+ export declare type AgregatorLocationResponseObject = {
2
+ id: number;
3
+ coordinates: [number, number];
4
+ questroomsCount: number;
5
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ export declare type AgregatorPostResponseObject = {
2
+ title: string;
3
+ description: string;
4
+ content: string;
5
+ poster: string;
6
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,5 @@
1
+ export declare type AgregatorPostsListResponseObject = {
2
+ title: string;
3
+ time: string;
4
+ preview: string;
5
+ }[];
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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
+ }[];
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ import { TagsEnum } from "../../shared/enum/tags.enum";
2
+ export declare type AgregatorQuestroomsByTagQueryDTO = {
3
+ skip: number;
4
+ coordinates: [number, number];
5
+ tag: TagsEnum;
6
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,6 +1,5 @@
1
1
  export declare enum CountriesEnum {
2
2
  GERMANY = "de",
3
- AUSTRIA = "au",
4
- USA = "usa",
3
+ AUSTRIA = "at",
5
4
  RUSSIA = "ru"
6
5
  }
@@ -4,7 +4,6 @@ exports.CountriesEnum = void 0;
4
4
  var CountriesEnum;
5
5
  (function (CountriesEnum) {
6
6
  CountriesEnum["GERMANY"] = "de";
7
- CountriesEnum["AUSTRIA"] = "au";
8
- CountriesEnum["USA"] = "usa";
7
+ CountriesEnum["AUSTRIA"] = "at";
9
8
  CountriesEnum["RUSSIA"] = "ru";
10
9
  })(CountriesEnum = exports.CountriesEnum || (exports.CountriesEnum = {}));