vector-shared 1.2.31 → 1.3.0

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,10 @@
1
+ import { PropertyPhotoTagEnum } from '../types/image/property-photo-tag.enum';
2
+ import { RealtyTypeEnum } from '../types/customer-property/realty-type.enum';
3
+ export declare const PROPERTY_PHOTO_TAG_TO_LABEL_MAP: Record<PropertyPhotoTagEnum, string>;
4
+ export type PropertyPhotoTagGroup = {
5
+ label: string;
6
+ tags: PropertyPhotoTagEnum[];
7
+ };
8
+ export declare const PROPERTY_PHOTO_TAG_GROUPS_BY_REALTY_TYPE: Record<RealtyTypeEnum, PropertyPhotoTagGroup[]>;
9
+ export declare const POPULAR_PROPERTY_PHOTO_TAGS: PropertyPhotoTagEnum[];
10
+ export declare const REALTY_TYPES_WITH_POPULAR_PHOTO_TAGS: RealtyTypeEnum[];
@@ -0,0 +1,282 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.REALTY_TYPES_WITH_POPULAR_PHOTO_TAGS = exports.POPULAR_PROPERTY_PHOTO_TAGS = exports.PROPERTY_PHOTO_TAG_GROUPS_BY_REALTY_TYPE = exports.PROPERTY_PHOTO_TAG_TO_LABEL_MAP = void 0;
4
+ const property_photo_tag_enum_1 = require("../types/image/property-photo-tag.enum");
5
+ const realty_type_enum_1 = require("../types/customer-property/realty-type.enum");
6
+ exports.PROPERTY_PHOTO_TAG_TO_LABEL_MAP = {
7
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Hall]: 'Прихожа',
8
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Foyer]: 'Хол',
9
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.EntryWardrobe]: 'Гардеробна при вході',
10
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.LivingRoom]: 'Вітальня',
11
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Kitchen]: 'Кухня',
12
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.DiningRoom]: 'Їдальня',
13
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.KitchenLivingOpenSpace]: 'Кухня-вітальня (open space)',
14
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.MasterBedroom]: 'Майстер-спальня',
15
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Bedroom]: 'Спальня',
16
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.ChildrenRoom]: 'Дитяча',
17
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.StudyRoom]: 'Кабінет',
18
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.GuestRoom]: 'Гостьова кімната',
19
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Bathroom]: 'Ванна кімната',
20
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.ShowerRoom]: 'Душова',
21
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.GuestToilet]: 'Санвузол гостьовий',
22
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Laundry]: 'Прачечна / Комора',
23
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Balcony]: 'Балкон',
24
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Loggia]: 'Лоджія',
25
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Terrace]: 'Тераса',
26
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.WindowView]: 'Вид з вікна (панорама)',
27
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.LobbyEntrance]: "Під'їзд / Лобі",
28
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Parking]: 'Паркінг',
29
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.FloorPlan]: 'Планування (схема)',
30
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.FloorPlan3d]: '3D планування',
31
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Stairs]: 'Сходовий марш',
32
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Attic]: 'Мансарда',
33
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Basement]: 'Цокольний поверх',
34
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.BoilerRoom]: 'Котельня / Бойлерна',
35
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Pool]: 'Басейн',
36
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Sauna]: 'Сауна / Лазня',
37
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Gym]: 'Тренажерний зал',
38
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.GameRoom]: 'Більярдна / Кінозал',
39
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.HouseFacade]: 'Фасад будинку',
40
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Porch]: 'Ґанок',
41
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Garden]: 'Сад / Ландшафтний дизайн',
42
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Bbq]: 'Зона BBQ / Альтанка',
43
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.GarageCarport]: 'Гараж / Навіс для авто',
44
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.HouseView]: 'Вид на будинок',
45
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Driveway]: "Під'їзна дорога",
46
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Neighborhood]: 'Околиці',
47
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.OpenSpace]: 'Open space',
48
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.CeoOffice]: 'Кабінет керівника',
49
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.MeetingRoom]: 'Переговорна',
50
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Reception]: 'Ресепшн',
51
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.StaffKitchen]: 'Зона відпочинку / Кухня',
52
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.ServerRoom]: 'Серверна',
53
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.SalesArea]: 'Торговий зал',
54
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Storefront]: 'Вітрина / Вхідна група',
55
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Storage]: 'Складське приміщення',
56
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.LoadingZone]: 'Зона навантаження',
57
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.ProductionFloor]: 'Виробничий цех',
58
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.WarehouseArea]: 'Складська зона',
59
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Mezzanine]: 'Антресолі',
60
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.TechnicalRooms]: 'Технічні приміщення',
61
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.AdministrativeBlock]: 'Адміністративний блок',
62
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Toilets]: 'Санвузли',
63
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.ElevatorHall]: 'Ліфтовий хол',
64
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.ClientParking]: 'Парковка для клієнтів',
65
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.FacadeNavigation]: 'Фасад і навігація',
66
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.GeneralView]: 'Загальний вигляд',
67
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Boundaries]: 'Межі (паркан)',
68
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.EntryPoints]: 'Точки заїзду',
69
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Electrical]: 'Електрощит / Трансформатор',
70
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.GasLine]: 'Газова магістраль',
71
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Well]: 'Свердловина',
72
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.LandscapeView]: 'Вид на ландшафт',
73
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Trees]: 'Дерева на ділянці',
74
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.Waterbody]: 'Водойма поблизу',
75
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.VillageInfrastructure]: 'Інфраструктура селища',
76
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.NeighboringBuildings]: 'Сусідні будівлі',
77
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.AccessRoad]: 'Дорога до ділянки',
78
+ [property_photo_tag_enum_1.PropertyPhotoTagEnum.CadastralPlan]: 'Кадастровий план',
79
+ };
80
+ const APARTMENT_GROUPS = [
81
+ {
82
+ label: 'Вхідна група',
83
+ tags: [property_photo_tag_enum_1.PropertyPhotoTagEnum.Hall, property_photo_tag_enum_1.PropertyPhotoTagEnum.Foyer, property_photo_tag_enum_1.PropertyPhotoTagEnum.EntryWardrobe],
84
+ },
85
+ {
86
+ label: 'Загальні зони',
87
+ tags: [
88
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.LivingRoom,
89
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Kitchen,
90
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.DiningRoom,
91
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.KitchenLivingOpenSpace,
92
+ ],
93
+ },
94
+ {
95
+ label: 'Приватні зони',
96
+ tags: [
97
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.MasterBedroom,
98
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Bedroom,
99
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.ChildrenRoom,
100
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.StudyRoom,
101
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.GuestRoom,
102
+ ],
103
+ },
104
+ {
105
+ label: 'Зручності',
106
+ tags: [
107
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Bathroom,
108
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.ShowerRoom,
109
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.GuestToilet,
110
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Laundry,
111
+ ],
112
+ },
113
+ {
114
+ label: "Екстер'єр",
115
+ tags: [property_photo_tag_enum_1.PropertyPhotoTagEnum.Balcony, property_photo_tag_enum_1.PropertyPhotoTagEnum.Loggia, property_photo_tag_enum_1.PropertyPhotoTagEnum.Terrace],
116
+ },
117
+ {
118
+ label: 'Додатково',
119
+ tags: [
120
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.WindowView,
121
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.LobbyEntrance,
122
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Parking,
123
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.FloorPlan,
124
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.FloorPlan3d,
125
+ ],
126
+ },
127
+ ];
128
+ const HOUSE_GROUPS = [
129
+ {
130
+ label: 'Вхідна група',
131
+ tags: [property_photo_tag_enum_1.PropertyPhotoTagEnum.Hall, property_photo_tag_enum_1.PropertyPhotoTagEnum.Foyer, property_photo_tag_enum_1.PropertyPhotoTagEnum.EntryWardrobe],
132
+ },
133
+ {
134
+ label: 'Загальні зони',
135
+ tags: [
136
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.LivingRoom,
137
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Kitchen,
138
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.DiningRoom,
139
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.KitchenLivingOpenSpace,
140
+ ],
141
+ },
142
+ {
143
+ label: 'Приватні зони',
144
+ tags: [
145
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.MasterBedroom,
146
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Bedroom,
147
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.ChildrenRoom,
148
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.StudyRoom,
149
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.GuestRoom,
150
+ ],
151
+ },
152
+ {
153
+ label: 'Зручності',
154
+ tags: [
155
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Bathroom,
156
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.ShowerRoom,
157
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.GuestToilet,
158
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Laundry,
159
+ ],
160
+ },
161
+ {
162
+ label: "Інтер'єр (додатково)",
163
+ tags: [
164
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Stairs,
165
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Attic,
166
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Basement,
167
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.BoilerRoom,
168
+ ],
169
+ },
170
+ {
171
+ label: 'Зони відпочинку',
172
+ tags: [property_photo_tag_enum_1.PropertyPhotoTagEnum.Pool, property_photo_tag_enum_1.PropertyPhotoTagEnum.Sauna, property_photo_tag_enum_1.PropertyPhotoTagEnum.Gym, property_photo_tag_enum_1.PropertyPhotoTagEnum.GameRoom],
173
+ },
174
+ {
175
+ label: 'Ділянка та ландшафт',
176
+ tags: [
177
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.HouseFacade,
178
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Porch,
179
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Garden,
180
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Bbq,
181
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.GarageCarport,
182
+ ],
183
+ },
184
+ {
185
+ label: 'Оточення',
186
+ tags: [property_photo_tag_enum_1.PropertyPhotoTagEnum.HouseView, property_photo_tag_enum_1.PropertyPhotoTagEnum.Driveway, property_photo_tag_enum_1.PropertyPhotoTagEnum.Neighborhood],
187
+ },
188
+ {
189
+ label: 'Додатково',
190
+ tags: [
191
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.WindowView,
192
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.FloorPlan,
193
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.FloorPlan3d,
194
+ ],
195
+ },
196
+ ];
197
+ const COMMERCIAL_GROUPS = [
198
+ {
199
+ label: 'Офіси',
200
+ tags: [
201
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.OpenSpace,
202
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.CeoOffice,
203
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.MeetingRoom,
204
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Reception,
205
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.StaffKitchen,
206
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.ServerRoom,
207
+ ],
208
+ },
209
+ {
210
+ label: 'Магазини / ТЦ',
211
+ tags: [
212
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.SalesArea,
213
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Storefront,
214
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Storage,
215
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.LoadingZone,
216
+ ],
217
+ },
218
+ {
219
+ label: 'Склади / виробництво',
220
+ tags: [
221
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.ProductionFloor,
222
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.WarehouseArea,
223
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Mezzanine,
224
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.TechnicalRooms,
225
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.AdministrativeBlock,
226
+ ],
227
+ },
228
+ {
229
+ label: 'Спільне',
230
+ tags: [
231
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Toilets,
232
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.ElevatorHall,
233
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.ClientParking,
234
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.FacadeNavigation,
235
+ ],
236
+ },
237
+ ];
238
+ const AREA_GROUPS = [
239
+ {
240
+ label: 'Межі та форма',
241
+ tags: [property_photo_tag_enum_1.PropertyPhotoTagEnum.GeneralView, property_photo_tag_enum_1.PropertyPhotoTagEnum.Boundaries, property_photo_tag_enum_1.PropertyPhotoTagEnum.EntryPoints],
242
+ },
243
+ {
244
+ label: 'Комунікації',
245
+ tags: [property_photo_tag_enum_1.PropertyPhotoTagEnum.Electrical, property_photo_tag_enum_1.PropertyPhotoTagEnum.GasLine, property_photo_tag_enum_1.PropertyPhotoTagEnum.Well],
246
+ },
247
+ {
248
+ label: 'Рельєф та природа',
249
+ tags: [property_photo_tag_enum_1.PropertyPhotoTagEnum.LandscapeView, property_photo_tag_enum_1.PropertyPhotoTagEnum.Trees, property_photo_tag_enum_1.PropertyPhotoTagEnum.Waterbody],
250
+ },
251
+ {
252
+ label: 'Оточення',
253
+ tags: [
254
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.VillageInfrastructure,
255
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.NeighboringBuildings,
256
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.AccessRoad,
257
+ ],
258
+ },
259
+ {
260
+ label: 'Документація',
261
+ tags: [property_photo_tag_enum_1.PropertyPhotoTagEnum.CadastralPlan],
262
+ },
263
+ ];
264
+ exports.PROPERTY_PHOTO_TAG_GROUPS_BY_REALTY_TYPE = {
265
+ [realty_type_enum_1.RealtyTypeEnum.Apartment]: APARTMENT_GROUPS,
266
+ [realty_type_enum_1.RealtyTypeEnum.Room]: APARTMENT_GROUPS,
267
+ [realty_type_enum_1.RealtyTypeEnum.House]: HOUSE_GROUPS,
268
+ [realty_type_enum_1.RealtyTypeEnum.Garage]: HOUSE_GROUPS,
269
+ [realty_type_enum_1.RealtyTypeEnum.Commercial]: COMMERCIAL_GROUPS,
270
+ [realty_type_enum_1.RealtyTypeEnum.Area]: AREA_GROUPS,
271
+ };
272
+ exports.POPULAR_PROPERTY_PHOTO_TAGS = [
273
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.LivingRoom,
274
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Bedroom,
275
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Bathroom,
276
+ property_photo_tag_enum_1.PropertyPhotoTagEnum.Kitchen,
277
+ ];
278
+ exports.REALTY_TYPES_WITH_POPULAR_PHOTO_TAGS = [
279
+ realty_type_enum_1.RealtyTypeEnum.Apartment,
280
+ realty_type_enum_1.RealtyTypeEnum.Room,
281
+ ];
282
+ //# sourceMappingURL=property-photo-tag.constants.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"property-photo-tag.constants.js","sourceRoot":"","sources":["../../constants/property-photo-tag.constants.ts"],"names":[],"mappings":"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"}
package/dist/index.d.ts CHANGED
@@ -6,3 +6,4 @@ export * from './constants/auth-service.constants';
6
6
  export * from './constants/norm-category.constants';
7
7
  export * from './constants/handling.constants';
8
8
  export * from './constants/realty-subtype.constants';
9
+ export * from './constants/property-photo-tag.constants';
package/dist/index.js CHANGED
@@ -25,4 +25,5 @@ __exportStar(require("./constants/auth-service.constants"), exports);
25
25
  __exportStar(require("./constants/norm-category.constants"), exports);
26
26
  __exportStar(require("./constants/handling.constants"), exports);
27
27
  __exportStar(require("./constants/realty-subtype.constants"), exports);
28
+ __exportStar(require("./constants/property-photo-tag.constants"), exports);
28
29
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,0CAAwB;AAExB,0CAAwB;AAGxB,iCAAgD;AAAvC,6FAAA,IAAI,OAAA;AAAE,wGAAA,eAAe,OAAA;AAG9B,yEAAuD;AACvD,qEAAmD;AACnD,sEAAoD;AACpD,iEAA+C;AAC/C,uEAAqD"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,0CAAwB;AAExB,0CAAwB;AAGxB,iCAAgD;AAAvC,6FAAA,IAAI,OAAA;AAAE,wGAAA,eAAe,OAAA;AAG9B,yEAAuD;AACvD,qEAAmD;AACnD,sEAAoD;AACpD,iEAA+C;AAC/C,uEAAqD;AACrD,2EAAyD"}