@rentcheck/biz 1.0.5 → 1.0.7
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/constants/index.d.ts +1 -0
- package/dist/constants/index.js +27 -0
- package/dist/constants/rooms.d.ts +1 -0
- package/dist/constants/rooms.js +14 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +28 -0
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.js +27 -0
- package/dist/utils/inspection-templates/build-template-features.d.ts +8 -0
- package/dist/utils/inspection-templates/build-template-features.js +142 -0
- package/dist/utils/inspection-templates/common.d.ts +36 -0
- package/dist/utils/inspection-templates/common.js +108 -0
- package/dist/utils/inspection-templates/index.d.ts +3 -0
- package/dist/utils/inspection-templates/index.js +19 -0
- package/dist/utils/inspection-templates/template-logic.d.ts +3 -0
- package/dist/utils/inspection-templates/template-logic.js +69 -0
- package/package.json +1 -2
- package/tsconfig.tsbuildinfo +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as RoomConstants from './rooms';
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.RoomConstants = void 0;
|
|
27
|
+
exports.RoomConstants = __importStar(require("./rooms"));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ordinalPrefixes: string[];
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ordinalPrefixes = void 0;
|
|
4
|
+
exports.ordinalPrefixes = [
|
|
5
|
+
'First',
|
|
6
|
+
'Second',
|
|
7
|
+
'Third',
|
|
8
|
+
'Fourth',
|
|
9
|
+
'Fifth',
|
|
10
|
+
'Sixth',
|
|
11
|
+
'Seventh',
|
|
12
|
+
'Eighth',
|
|
13
|
+
'Ninth',
|
|
14
|
+
];
|
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.Utils = exports.Constants = void 0;
|
|
27
|
+
exports.Constants = __importStar(require("./constants"));
|
|
28
|
+
exports.Utils = __importStar(require("./utils"));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as InspectionTemplates from './inspection-templates';
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.InspectionTemplates = void 0;
|
|
27
|
+
exports.InspectionTemplates = __importStar(require("./inspection-templates"));
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Feature, Inspection, InspectionTemplate, Property } from '@rentcheck/types';
|
|
2
|
+
type BuildTemplateFeaturesParams = {
|
|
3
|
+
inspection: Inspection;
|
|
4
|
+
property: Property;
|
|
5
|
+
inspectionTemplate: InspectionTemplate;
|
|
6
|
+
};
|
|
7
|
+
export declare const buildTemplateFeatures: ({ inspection, property, inspectionTemplate, }: BuildTemplateFeaturesParams) => Promise<Feature[]>;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.buildTemplateFeatures = void 0;
|
|
13
|
+
const common_1 = require("./common");
|
|
14
|
+
const createResponsesForFeature = (feature) => feature.questions.map((q) => {
|
|
15
|
+
if (q.type === 'yes/no') {
|
|
16
|
+
return 'Yes';
|
|
17
|
+
}
|
|
18
|
+
return '';
|
|
19
|
+
});
|
|
20
|
+
const createEmptyFeature = (inspection, basicFeatureProps, section, sectionName, sectionNameWithOrdinal) => (Object.assign(Object.assign({}, basicFeatureProps), { id: '', inspection_id: inspection.id, property_id: inspection.propertyID, section: {
|
|
21
|
+
name: sectionName,
|
|
22
|
+
name_with_ordinal: sectionNameWithOrdinal !== null && sectionNameWithOrdinal !== void 0 ? sectionNameWithOrdinal : sectionName,
|
|
23
|
+
type: section.type,
|
|
24
|
+
}, images: [], videos: [], image_links: [], video_links: [], rating: undefined, incomplete: true, not_applicable: false, notes: '', responses: createResponsesForFeature(basicFeatureProps), uploaded: false, revision_requested: false, revision_requested_update: false, edited_by_reviewer: false, review_notes: '', reviewed_by: undefined, reviewed_at: undefined, maintenance_flags: [], created_date: new Date(), updated_date: new Date() }));
|
|
25
|
+
const createFeaturesFromSection = (inspection, section, sectionName, sectionNameWithOrdinal) => {
|
|
26
|
+
if (!section.features.length) {
|
|
27
|
+
return [];
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* If fast track is enabled, we only create one feature for the section
|
|
31
|
+
* with the name of the section as feature name and a predefined description.
|
|
32
|
+
*/
|
|
33
|
+
if (inspection.fast_track) {
|
|
34
|
+
const basicFeatureProps = {
|
|
35
|
+
name: sectionName,
|
|
36
|
+
description: '',
|
|
37
|
+
is_rating_required: true,
|
|
38
|
+
reference_photos: [],
|
|
39
|
+
number_of_photos_required: 1,
|
|
40
|
+
questions: [],
|
|
41
|
+
};
|
|
42
|
+
if (section.type === 'room') {
|
|
43
|
+
basicFeatureProps.description =
|
|
44
|
+
`Stand back from each corner to ` +
|
|
45
|
+
`ensure you get photos of the ${sectionName} in its entirety.`;
|
|
46
|
+
}
|
|
47
|
+
else if (section.type === 'section') {
|
|
48
|
+
basicFeatureProps.description =
|
|
49
|
+
`Take any additional ${sectionName}` +
|
|
50
|
+
` photos that you would like to document.`;
|
|
51
|
+
}
|
|
52
|
+
return [
|
|
53
|
+
createEmptyFeature(inspection, basicFeatureProps, section, sectionName, sectionNameWithOrdinal),
|
|
54
|
+
];
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* If fast track is not enabled, we create features based on the template
|
|
58
|
+
* features for the section.
|
|
59
|
+
*/
|
|
60
|
+
return section.features.map((tf) => createEmptyFeature(inspection, tf, section, sectionName, sectionNameWithOrdinal));
|
|
61
|
+
};
|
|
62
|
+
const createFeaturesFromRepeatableSection = (sectionName, section, inspection, property) => {
|
|
63
|
+
const sectionCount = sectionName === 'Floor'
|
|
64
|
+
? property.floors
|
|
65
|
+
: inspection.rooms.filter((r) => r === sectionName).length;
|
|
66
|
+
return new Array(sectionCount)
|
|
67
|
+
.fill(null)
|
|
68
|
+
.map((_, i) => createFeaturesFromSection(inspection, section, sectionName, (0, common_1.addOrdinalToSectionName)(sectionName, i)))
|
|
69
|
+
.flat();
|
|
70
|
+
};
|
|
71
|
+
const createFeaturesForSpecificFeaturesTemplate = (inspection, inspectionTemplate) => {
|
|
72
|
+
var _a;
|
|
73
|
+
const features = [];
|
|
74
|
+
const selectedFeatures = Array.from((_a = inspection.selected_features) !== null && _a !== void 0 ? _a : []);
|
|
75
|
+
for (const selectedFeature of selectedFeatures) {
|
|
76
|
+
const sectionName = (0, common_1.parseSelectedSectionName)(selectedFeature.section);
|
|
77
|
+
const section = inspectionTemplate.sections.find((s) => s.name === sectionName);
|
|
78
|
+
if (!section) {
|
|
79
|
+
continue;
|
|
80
|
+
}
|
|
81
|
+
const selectedFeaturesInSection = section.features.filter((f) => selectedFeature.feature === f.name);
|
|
82
|
+
const limitedSection = Object.assign(Object.assign({}, section), { features: selectedFeaturesInSection });
|
|
83
|
+
/**
|
|
84
|
+
* For selected features we create sections in the template regardless of
|
|
85
|
+
* property rooms. We assume all that logic already happened in the backend
|
|
86
|
+
* at the time of inspection creation
|
|
87
|
+
*/
|
|
88
|
+
features.push(...createFeaturesFromSection(inspection, limitedSection, section.name, selectedFeature.room_name));
|
|
89
|
+
}
|
|
90
|
+
return features;
|
|
91
|
+
};
|
|
92
|
+
const createFeaturesForAllRoomsTemplate = (inspection, inspectionTemplate, property) => {
|
|
93
|
+
const features = [];
|
|
94
|
+
for (const section of inspectionTemplate.sections) {
|
|
95
|
+
/**
|
|
96
|
+
* We create sections in the template regardless of
|
|
97
|
+
* property rooms.
|
|
98
|
+
*/
|
|
99
|
+
if (section.type === 'section') {
|
|
100
|
+
features.push(...createFeaturesFromSection(inspection, section, section.name));
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* For room type sections we first check if the room exists on
|
|
104
|
+
* the property/inspection. If it does we create the features for that room.
|
|
105
|
+
*/
|
|
106
|
+
if (section.type === 'room') {
|
|
107
|
+
/**
|
|
108
|
+
* Some section names use plural nomenclature, while the property rooms
|
|
109
|
+
* are all singular, that's why we first need to change
|
|
110
|
+
*/
|
|
111
|
+
const singularName = (0, common_1.parseTemplateRoomName)(section.name);
|
|
112
|
+
if (!inspection.rooms.includes(singularName)) {
|
|
113
|
+
continue;
|
|
114
|
+
}
|
|
115
|
+
/**
|
|
116
|
+
* If this is a section that can be repeated (Bedroom, Bathroom, etc.)
|
|
117
|
+
* we need to create features for each room of that type.
|
|
118
|
+
*/
|
|
119
|
+
if ((0, common_1.sectionCanExistMultipleTimes)(section.name)) {
|
|
120
|
+
features.push(...createFeaturesFromRepeatableSection(singularName, section, inspection, property));
|
|
121
|
+
}
|
|
122
|
+
else {
|
|
123
|
+
features.push(...createFeaturesFromSection(inspection, section, singularName));
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
return features;
|
|
128
|
+
};
|
|
129
|
+
const buildTemplateFeatures = ({ inspection, property, inspectionTemplate, }) => __awaiter(void 0, void 0, void 0, function* () {
|
|
130
|
+
const features = [];
|
|
131
|
+
if (!property) {
|
|
132
|
+
return [];
|
|
133
|
+
}
|
|
134
|
+
if (inspectionTemplate.template_type === 'all-rooms') {
|
|
135
|
+
features.push(...createFeaturesForAllRoomsTemplate(inspection, inspectionTemplate, property));
|
|
136
|
+
}
|
|
137
|
+
if (inspectionTemplate.template_type === 'specific-features') {
|
|
138
|
+
features.push(...createFeaturesForSpecificFeaturesTemplate(inspection, inspectionTemplate));
|
|
139
|
+
}
|
|
140
|
+
return features;
|
|
141
|
+
});
|
|
142
|
+
exports.buildTemplateFeatures = buildTemplateFeatures;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Converts the template room name from plural to singular, this is to
|
|
3
|
+
* account for legacy functionality where the template section name is
|
|
4
|
+
* plural and the feature section name is singular.
|
|
5
|
+
* @param name the section name
|
|
6
|
+
* @returns the singular version of the template section name
|
|
7
|
+
*/
|
|
8
|
+
export declare const parseTemplateRoomName: (name: string) => string;
|
|
9
|
+
/**
|
|
10
|
+
* Checks if a section can be created multiple times.
|
|
11
|
+
*
|
|
12
|
+
* @param sectionName the section name without ordinal
|
|
13
|
+
* @returns true if the section is repeatable based on property configuration
|
|
14
|
+
*/
|
|
15
|
+
export declare const sectionCanExistMultipleTimes: (sectionName: string) => boolean;
|
|
16
|
+
/**
|
|
17
|
+
* Parses the section name to remove the ordinal and return the template section name.
|
|
18
|
+
*
|
|
19
|
+
* @param name the section name including ordinal.
|
|
20
|
+
* Examples: 1st Floor, 2nd Floor, 3rd Floor, 4th Floor, 5th Floor,
|
|
21
|
+
* First Full Bathroom, Second Full Bathroom, Third Full Bathroom, Fourth Full Bathroom, Fifth Full Bathroom,
|
|
22
|
+
* First Half Bathroom, Second Half Bathroom, Third Half Bathroom, Fourth Half Bathroom, Fifth Half Bathroom,
|
|
23
|
+
* First Bedroom, Second Bedroom, Third Bedroom, Fourth Bedroom, Fifth Bedroom
|
|
24
|
+
*
|
|
25
|
+
* @returns The template section name without the ordinal.
|
|
26
|
+
* Examples: 1st Floor -> Floors, First Full Bathroom -> Full Bathrooms, etc.
|
|
27
|
+
*/
|
|
28
|
+
export declare const parseSelectedSectionName: (name: string) => string;
|
|
29
|
+
/**
|
|
30
|
+
* Adds an ordinal to the section to account for repeatable sections.
|
|
31
|
+
*
|
|
32
|
+
* @param sectionName Floor, Bedroom, Full Bathroom, Half Bathroom
|
|
33
|
+
* @param number index of the section, 0 indexed
|
|
34
|
+
* @returns the updated section name, e.g. "First Floor", "Second Bedroom"
|
|
35
|
+
*/
|
|
36
|
+
export declare const addOrdinalToSectionName: (sectionName: string, number: number) => string;
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.addOrdinalToSectionName = exports.parseSelectedSectionName = exports.sectionCanExistMultipleTimes = exports.parseTemplateRoomName = void 0;
|
|
4
|
+
const constants_1 = require("../../constants");
|
|
5
|
+
/**
|
|
6
|
+
* Converts the template room name from plural to singular, this is to
|
|
7
|
+
* account for legacy functionality where the template section name is
|
|
8
|
+
* plural and the feature section name is singular.
|
|
9
|
+
* @param name the section name
|
|
10
|
+
* @returns the singular version of the template section name
|
|
11
|
+
*/
|
|
12
|
+
const parseTemplateRoomName = (name) => {
|
|
13
|
+
if (name === 'Floors') {
|
|
14
|
+
return 'Floor';
|
|
15
|
+
}
|
|
16
|
+
if (name === 'Full Bathrooms') {
|
|
17
|
+
return 'Full Bathroom';
|
|
18
|
+
}
|
|
19
|
+
if (name === 'Half Bathrooms') {
|
|
20
|
+
return 'Half Bathroom';
|
|
21
|
+
}
|
|
22
|
+
if (name === 'Bedrooms') {
|
|
23
|
+
return 'Bedroom';
|
|
24
|
+
}
|
|
25
|
+
return name;
|
|
26
|
+
};
|
|
27
|
+
exports.parseTemplateRoomName = parseTemplateRoomName;
|
|
28
|
+
/**
|
|
29
|
+
* Checks if a section can be created multiple times.
|
|
30
|
+
*
|
|
31
|
+
* @param sectionName the section name without ordinal
|
|
32
|
+
* @returns true if the section is repeatable based on property configuration
|
|
33
|
+
*/
|
|
34
|
+
const sectionCanExistMultipleTimes = (sectionName) => [
|
|
35
|
+
'Bedroom',
|
|
36
|
+
'Bedrooms',
|
|
37
|
+
'Full Bathroom',
|
|
38
|
+
'Full Bathrooms',
|
|
39
|
+
'Half Bathroom',
|
|
40
|
+
'Half Bathrooms',
|
|
41
|
+
'Floor',
|
|
42
|
+
'Floors',
|
|
43
|
+
].includes(sectionName);
|
|
44
|
+
exports.sectionCanExistMultipleTimes = sectionCanExistMultipleTimes;
|
|
45
|
+
/**
|
|
46
|
+
* Parses the section name to remove the ordinal and return the template section name.
|
|
47
|
+
*
|
|
48
|
+
* @param name the section name including ordinal.
|
|
49
|
+
* Examples: 1st Floor, 2nd Floor, 3rd Floor, 4th Floor, 5th Floor,
|
|
50
|
+
* First Full Bathroom, Second Full Bathroom, Third Full Bathroom, Fourth Full Bathroom, Fifth Full Bathroom,
|
|
51
|
+
* First Half Bathroom, Second Half Bathroom, Third Half Bathroom, Fourth Half Bathroom, Fifth Half Bathroom,
|
|
52
|
+
* First Bedroom, Second Bedroom, Third Bedroom, Fourth Bedroom, Fifth Bedroom
|
|
53
|
+
*
|
|
54
|
+
* @returns The template section name without the ordinal.
|
|
55
|
+
* Examples: 1st Floor -> Floors, First Full Bathroom -> Full Bathrooms, etc.
|
|
56
|
+
*/
|
|
57
|
+
const parseSelectedSectionName = (name) => {
|
|
58
|
+
if (/(\d)+(st|nd|rd|th) Floor/.test(name)) {
|
|
59
|
+
return 'Floors';
|
|
60
|
+
}
|
|
61
|
+
if (/\w+ Full Bathroom/.test(name)) {
|
|
62
|
+
return 'Full Bathrooms';
|
|
63
|
+
}
|
|
64
|
+
if (/\w+ Half Bathroom/.test(name)) {
|
|
65
|
+
return 'Half Bathrooms';
|
|
66
|
+
}
|
|
67
|
+
if (/\w+ Bedroom/.test(name)) {
|
|
68
|
+
return 'Bedrooms';
|
|
69
|
+
}
|
|
70
|
+
return name;
|
|
71
|
+
};
|
|
72
|
+
exports.parseSelectedSectionName = parseSelectedSectionName;
|
|
73
|
+
/**
|
|
74
|
+
* Adds an ordinal to the floor section to account for repeatable sections.
|
|
75
|
+
* @param number the floor number, 0 based
|
|
76
|
+
* @returns the floor section + ordinal, e.g. "1st Floor", "2nd Floor"
|
|
77
|
+
*/
|
|
78
|
+
const addOrdinalToFloorSection = (number) => {
|
|
79
|
+
/**
|
|
80
|
+
* America has no concept of a ground floor, so we add 1 to the number
|
|
81
|
+
* to get the correct floor name. /shrug
|
|
82
|
+
*/
|
|
83
|
+
const floor = number + 1;
|
|
84
|
+
if (floor % 10 === 1) {
|
|
85
|
+
return `${floor}st Floor`;
|
|
86
|
+
}
|
|
87
|
+
if (floor % 10 === 2) {
|
|
88
|
+
return `${floor}nd Floor`;
|
|
89
|
+
}
|
|
90
|
+
if (floor % 10 === 3) {
|
|
91
|
+
return `${floor}rd Floor`;
|
|
92
|
+
}
|
|
93
|
+
return `${floor}th Floor`;
|
|
94
|
+
};
|
|
95
|
+
/**
|
|
96
|
+
* Adds an ordinal to the section to account for repeatable sections.
|
|
97
|
+
*
|
|
98
|
+
* @param sectionName Floor, Bedroom, Full Bathroom, Half Bathroom
|
|
99
|
+
* @param number index of the section, 0 indexed
|
|
100
|
+
* @returns the updated section name, e.g. "First Floor", "Second Bedroom"
|
|
101
|
+
*/
|
|
102
|
+
const addOrdinalToSectionName = (sectionName, number) => {
|
|
103
|
+
if (sectionName === 'Floor') {
|
|
104
|
+
return addOrdinalToFloorSection(number);
|
|
105
|
+
}
|
|
106
|
+
return `${constants_1.RoomConstants.ordinalPrefixes[number]} ${sectionName}`;
|
|
107
|
+
};
|
|
108
|
+
exports.addOrdinalToSectionName = addOrdinalToSectionName;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./build-template-features"), exports);
|
|
18
|
+
__exportStar(require("./common"), exports);
|
|
19
|
+
__exportStar(require("./template-logic"), exports);
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { Feature, InspectionTemplate } from '@rentcheck/types';
|
|
2
|
+
export declare const getQuestionIdsAttachedToLogic: (inspectionTemplate: InspectionTemplate) => string[];
|
|
3
|
+
export declare const sectionShouldBeVisible: (section: Feature['section'], otherFeatures: Feature[], template: InspectionTemplate) => boolean;
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.sectionShouldBeVisible = exports.getQuestionIdsAttachedToLogic = void 0;
|
|
27
|
+
const types_1 = require("@rentcheck/types");
|
|
28
|
+
const lodash_1 = __importStar(require("lodash"));
|
|
29
|
+
const common_1 = require("./common");
|
|
30
|
+
const getQuestionIdsAttachedToLogic = (inspectionTemplate) => inspectionTemplate.sections
|
|
31
|
+
.map((section) => section.logic)
|
|
32
|
+
.flat()
|
|
33
|
+
.filter((logic) => logic.trigger_type === 'question')
|
|
34
|
+
.map((l) => l.trigger_id);
|
|
35
|
+
exports.getQuestionIdsAttachedToLogic = getQuestionIdsAttachedToLogic;
|
|
36
|
+
const sectionShouldBeVisible = (section, otherFeatures, template) => {
|
|
37
|
+
const templateSection = template.sections.find((s) => (0, common_1.parseTemplateRoomName)(s.name) === section.name && s.type === section.type);
|
|
38
|
+
if (!templateSection) {
|
|
39
|
+
return false;
|
|
40
|
+
}
|
|
41
|
+
if (!templateSection.logic.length) {
|
|
42
|
+
return true;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* If section has logic we need to find at least one trigger
|
|
46
|
+
* that allows it to show
|
|
47
|
+
*/
|
|
48
|
+
return templateSection.logic.some((condition) => {
|
|
49
|
+
if (condition.trigger_type !== 'question') {
|
|
50
|
+
return false;
|
|
51
|
+
}
|
|
52
|
+
const featureWithQuestion = otherFeatures.find((f) => f.questions.some((q) => q.id === condition.trigger_id));
|
|
53
|
+
if (!featureWithQuestion) {
|
|
54
|
+
return false;
|
|
55
|
+
}
|
|
56
|
+
const questionIndex = featureWithQuestion === null || featureWithQuestion === void 0 ? void 0 : featureWithQuestion.questions.findIndex((q) => q.id === condition.trigger_id);
|
|
57
|
+
/**
|
|
58
|
+
* Split first if it's multiple choice
|
|
59
|
+
* We lowercase because yes/no questions have been used for a long
|
|
60
|
+
* time and we're not sure if the case is enforced there
|
|
61
|
+
*/
|
|
62
|
+
const conditionValue = condition.condition_value.map(lodash_1.lowerCase);
|
|
63
|
+
const response = featureWithQuestion.responses[questionIndex]
|
|
64
|
+
.split(types_1.MULTIPLE_CHOICE_RESPONSE_SEPARATOR)
|
|
65
|
+
.map(lodash_1.lowerCase);
|
|
66
|
+
return lodash_1.default.intersection(conditionValue, response).length > 0;
|
|
67
|
+
});
|
|
68
|
+
};
|
|
69
|
+
exports.sectionShouldBeVisible = sectionShouldBeVisible;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rentcheck/biz",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "RC biz",
|
|
5
5
|
"author": "engineering@getrentcheck.com",
|
|
6
6
|
"license": "MIT",
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "tsc",
|
|
11
11
|
"build:watch": "tsc --watch",
|
|
12
|
-
"prepublish": "yarn build",
|
|
13
12
|
"test": "cross-env NODE_ENV=test jest --verbose --forceExit"
|
|
14
13
|
},
|
|
15
14
|
"devDependencies": {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["./node_modules/typescript/lib/lib.es6.d.ts","./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.webworker.importscripts.d.ts","./node_modules/typescript/lib/lib.scripthost.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./src/constants/rooms.ts","./src/constants/index.ts","./node_modules/@rentcheck/types/dist/api/flatfile.d.ts","./node_modules/@rentcheck/types/dist/firebase/chargebee.d.ts","./node_modules/@rentcheck/types/dist/firebase/creationsource.d.ts","./node_modules/@rentcheck/types/dist/firebase/emailrecord.d.ts","./node_modules/@rentcheck/types/dist/firebase/emailsyncsettings.d.ts","./node_modules/@rentcheck/types/dist/firebase/profile.d.ts","./node_modules/@rentcheck/types/dist/firebase/inspection-template.d.ts","./node_modules/@rentcheck/types/dist/firebase/feature.d.ts","./node_modules/@rentcheck/types/dist/firebase/filerequest.d.ts","./node_modules/@rentcheck/types/dist/firebase/subscription.d.ts","./node_modules/@rentcheck/types/dist/integrations/base-integration.d.ts","./node_modules/@rentcheck/types/dist/integrations/appfolio.d.ts","./node_modules/@rentcheck/types/dist/integrations/jenark.d.ts","./node_modules/@rentcheck/types/dist/integrations/latchel.d.ts","./node_modules/@rentcheck/types/dist/integrations/yardi.d.ts","./node_modules/@rentcheck/types/dist/integrations/rent-manager.d.ts","./node_modules/@rentcheck/types/dist/integrations/index.d.ts","./node_modules/@rentcheck/types/dist/firebase/inspection.d.ts","./node_modules/@rentcheck/types/dist/firebase/inspectionevent.d.ts","./node_modules/@rentcheck/types/dist/firebase/inspectionhealthscore.d.ts","./node_modules/@rentcheck/types/dist/firebase/inspectionrating.d.ts","./node_modules/@rentcheck/types/dist/firebase/integrationsettings.d.ts","./node_modules/@rentcheck/types/dist/firebase/invite.d.ts","./node_modules/@rentcheck/types/dist/firebase/maintenancereport.d.ts","./node_modules/@rentcheck/types/dist/firebase/notification.d.ts","./node_modules/@rentcheck/types/dist/firebase/occupancy.d.ts","./node_modules/@rentcheck/types/dist/firebase/organization.d.ts","./node_modules/@rentcheck/types/node_modules/@firebase/util/dist/util-public.d.ts","./node_modules/@rentcheck/types/node_modules/@firebase/firestore-types/index.d.ts","./node_modules/@rentcheck/types/dist/firebase/property.d.ts","./node_modules/@rentcheck/types/dist/firebase/request.d.ts","./node_modules/@rentcheck/types/dist/firebase/signature.d.ts","./node_modules/@rentcheck/types/dist/firebase/skill.d.ts","./node_modules/@rentcheck/types/dist/firebase/teaminvite.d.ts","./node_modules/@rentcheck/types/dist/firebase/tenant.d.ts","./node_modules/@rentcheck/types/dist/firebase/workorder.d.ts","./node_modules/@rentcheck/types/dist/firebase/account-settings.d.ts","./node_modules/@rentcheck/types/dist/firebase/application-settings.d.ts","./node_modules/@rentcheck/types/dist/firebase/image-metadata.d.ts","./node_modules/@rentcheck/types/dist/firebase/integration-rentcheck-api.d.ts","./node_modules/@rentcheck/types/dist/firebase/webhooks.d.ts","./node_modules/@rentcheck/types/dist/firebase/index.d.ts","./node_modules/@rentcheck/types/dist/api/inspection.d.ts","./node_modules/@rentcheck/types/dist/api/occupancy.d.ts","./node_modules/@rentcheck/types/dist/api/property.d.ts","./node_modules/@rentcheck/types/dist/api/reminders.d.ts","./node_modules/@rentcheck/types/dist/api/team-invite.d.ts","./node_modules/@rentcheck/types/dist/api/team.d.ts","./node_modules/@rentcheck/types/dist/api/account-settings.d.ts","./node_modules/@rentcheck/types/dist/api/image-metadata.d.ts","./node_modules/@rentcheck/types/dist/api/latchel.d.ts","./node_modules/@rentcheck/types/dist/api/rent-manager.d.ts","./node_modules/@rentcheck/types/dist/api/subscriptions.d.ts","./node_modules/@rentcheck/types/dist/api/team-member.d.ts","./node_modules/@rentcheck/types/dist/api/index.d.ts","./node_modules/@rentcheck/types/dist/embedded-web-app/index.d.ts","./node_modules/@rentcheck/types/dist/integrations/propify/integrations.d.ts","./node_modules/@rentcheck/types/dist/integrations/propify/leases.d.ts","./node_modules/@rentcheck/types/dist/integrations/propify/residents.d.ts","./node_modules/@rentcheck/types/dist/integrations/propify/index.d.ts","./node_modules/@rentcheck/types/dist/index.d.ts","./src/utils/inspection-templates/common.ts","./src/utils/inspection-templates/build-template-features.ts","./node_modules/@types/lodash/common/common.d.ts","./node_modules/@types/lodash/common/array.d.ts","./node_modules/@types/lodash/common/collection.d.ts","./node_modules/@types/lodash/common/date.d.ts","./node_modules/@types/lodash/common/function.d.ts","./node_modules/@types/lodash/common/lang.d.ts","./node_modules/@types/lodash/common/math.d.ts","./node_modules/@types/lodash/common/number.d.ts","./node_modules/@types/lodash/common/object.d.ts","./node_modules/@types/lodash/common/seq.d.ts","./node_modules/@types/lodash/common/string.d.ts","./node_modules/@types/lodash/common/util.d.ts","./node_modules/@types/lodash/index.d.ts","./src/utils/inspection-templates/template-logic.ts","./src/utils/inspection-templates/index.ts","./src/utils/index.ts","./src/index.ts","./node_modules/@babel/types/lib/index.d.ts","./node_modules/@types/babel__generator/index.d.ts","./node_modules/@babel/parser/typings/babel-parser.d.ts","./node_modules/@types/babel__template/index.d.ts","./node_modules/@types/babel__traverse/index.d.ts","./node_modules/@types/babel__core/index.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/undici-types/header.d.ts","./node_modules/undici-types/readable.d.ts","./node_modules/undici-types/file.d.ts","./node_modules/undici-types/fetch.d.ts","./node_modules/undici-types/formdata.d.ts","./node_modules/undici-types/connector.d.ts","./node_modules/undici-types/client.d.ts","./node_modules/undici-types/errors.d.ts","./node_modules/undici-types/dispatcher.d.ts","./node_modules/undici-types/global-dispatcher.d.ts","./node_modules/undici-types/global-origin.d.ts","./node_modules/undici-types/pool-stats.d.ts","./node_modules/undici-types/pool.d.ts","./node_modules/undici-types/handlers.d.ts","./node_modules/undici-types/balanced-pool.d.ts","./node_modules/undici-types/agent.d.ts","./node_modules/undici-types/mock-interceptor.d.ts","./node_modules/undici-types/mock-agent.d.ts","./node_modules/undici-types/mock-client.d.ts","./node_modules/undici-types/mock-pool.d.ts","./node_modules/undici-types/mock-errors.d.ts","./node_modules/undici-types/proxy-agent.d.ts","./node_modules/undici-types/api.d.ts","./node_modules/undici-types/cookies.d.ts","./node_modules/undici-types/patch.d.ts","./node_modules/undici-types/filereader.d.ts","./node_modules/undici-types/diagnostics-channel.d.ts","./node_modules/undici-types/websocket.d.ts","./node_modules/undici-types/content-type.d.ts","./node_modules/undici-types/cache.d.ts","./node_modules/undici-types/interceptors.d.ts","./node_modules/undici-types/index.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/dom-events.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/readline/promises.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/index.d.ts","./node_modules/@types/graceful-fs/index.d.ts","./node_modules/@types/istanbul-lib-coverage/index.d.ts","./node_modules/@types/istanbul-lib-report/index.d.ts","./node_modules/@types/istanbul-reports/index.d.ts","./node_modules/@types/prettier/index.d.ts","./node_modules/@types/stack-utils/index.d.ts","./node_modules/@types/yargs-parser/index.d.ts","./node_modules/@types/yargs/index.d.ts","../types/dist/index.d.ts"],"fileInfos":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},{"version":"2bc6cfd20fcee2d25e71cbc228b3b03c5177ce1a33de2e0ff752ea761c66c0e8","signature":"be3f61a914d12653d1b6fa3b355a120f9e386a56123494afa5645f7f8f6f77bb"},"786212114f1fa5e9bd61fb5dcac787a5f86a51580b1eeed05b50ba53d7f309ae","637b8317d5233afac80f7091cac81ae91a50c635f781eb2d7c3001d9f01df9c2","513ed5964ffd71d4ca70921d6ce66ded7cf31659e324c554b9bcf4b7a815e331","134445103ea50660947ce8825a6591e0ab75eb1fd223f793920c77107b63e86c","191c1034c3d24b9ae569b674f4bdc08cfe12d44e310818de1be9c42cacc5bbf0","f5e370c4823ea9f00d72d80191634ffaf699be095886b8f2cd01eebc6e82eee5","76d69287f604b06261622ee36b00eca11f4c9e9186e5d7f0ff8064f3a5c79bbc","62ca7e540855e2e0a3f5df7fead6d1ce18a48324e1cbc8b9283231ed84c1cea3","0bdd931a99a9398572185caa82cb2c723c42e1f42e5f01f6b10569da2e370f38","c7a99fd52e2597ad65b1be30b71e7a411d39c1072fd2d15618d99cb74cb8bdac","34d2a88c81c91cf709726355b1c7bb795a2d26159decaefe601a845455f32253","a962de8a7d9c2e710d3fa2d4684fe864df360361334003c17079e83fad1a5708","3ad93f054f8973229bf8dd17b2965c2d67e4e190cde94524401f5755dd6d01b4","b05e8d247a40ad4bb235294f74dfa71c4f8a4e26da6414709f34c684acdd5240","335628291bcf55c9155cb2bc110232f9ef8ac9ab3cd4e55af35f3e880863e47f","5e793515ea13935dde80dcef6eac0bc438459b4398080fc7e64cf678588b4f63","ca4603bf25114f9f8248f79b95edf2fd4a7cc09b80df9e17afc2f3e219d2bfd3","100817399770585c4d35181f163a1a7e9b63fcfc21217967f5ce74e17d9353cf","e00a5421660626a8a673059c40251e54b423d9ff65ef09f7d5b20c899de19f46","0562491331708813292efef43bf205844f57a6818a06fc5cbaea7090c96742f9","c7df2f5a5b504f6c48c7674018132191b30c740ecb61edb0f01f8948931879a7","0c50c24110251d87051812b1cdd7060e14d5eb4eca0596ef0d05281bef4da80e","a00296b00aa710dcf82ba7b193d52c1bb8a133a938e7e5fd4c550af68f892f2f","13df7c987c8554f8d5881ec1a7773f8db256896eea7a20597ab50ec7151a4dac","8ff744ee3e08e52a288c511d2562bc4a2bc11dfbf835d90af63df8d97b22ce84","29566f962c7e76eee7e51f07dec3da2b9f63fba560fe8a3e4ba5130c590585c1","042a0508401cc9b5ec5ded4c36a25300a6d88b2384f0860792c5d0b15615f4a8","852935f45a685b48d1c7c7ef464090dcee0e822a21c7342c74075bb72981ff30","2a0fdc4e3ff0daab68692c115db4609206e029061fc2803a342973da34f57901","9eab55f31a786bd68831bd619f39b506c340f46066ff937359b8f708ea50cc93","e2e79d275871ebd4a213f3d0c5ea9e2e8d33262cadbeca2597c1f0865e0644ad","976f41fcfc3e38def3a83fbeb7b811e0982e60b1e640a34dd6ce4aafa283bf62","0c3cc87e11967dadbb26f1c9d918fb780f4a7a4385b6f6ed41b0fdcdcb23b10a","603369db398dbf51a52affd358343d03401f728cd9b72321a22e99d1aec01133","6454fad11f96b35d817d323098199d9446da4eec75c9a49d0f659fae09a4ab79","0c11c9cf0f3760b58d8c7283ba7ebcf7fe4cc7bea344649560b830e7711a8653","3d07630903a031394d612043cb9dbce76af4ddf9700766c969f5e19f4470b104","a16415fde445db938938e1c9f1260e87e6f9a5a5db6eb8e9769fd9ab24c1cf73","1c6603c590c46a7dd3a538810bea9e09514c3fa32d3332aa14aec833bfe88d6f","d5305ea0ea630727eb00788f91a881c681742a7af3126c399aeb1b000f0d5aeb","284954cf346f465239fb012b55e2f1474be09dda4b071bb973ecece0438ac2d5","40256ccb9dc4866518e300a236b88d34d9dd5f22b9399b0d350ebec6b950caf8","eba3f3d1864a91478bf52a54c09b83ccb706ba8ab63093174443d4e49703c4e6","96826eeb86f72e5c6222a700e1bd452b5b1c317647f634aa42417f5cbbbe9191","387ce51ee891a5317412177597e276c4adebfc361ac9bfb6e739928709daddb3","0cc71856ca1ea54f2fff329874d331e342c19ce04052552eca738e59b9368236","3f1296e745f352a3f4ac943ba6a43d0eebeaf4f445687161548dd601417dc86f","8efbab99f1885fcdcc8939e3df125151981ba4704aa4361ff9c2dfae65406527","ecfbece0bbbfe8b7728d9a70de04e0eebffe6352f4125aabac92111de1a33a04","d9ed5f966bb4d5cc3d841121ea8d043030ebadffdebb2d82da65d22fe4c6b3f5","e7b3271c5b3e6bb3d49e41888a71113e0dcea859c738d97abf3ce1c9cce699c4","12d58b1eaa0a5781c79f659ce25818927f9509fe4d3b94932ee28edc9922d4e9","28d45bda85031b094ac98fecd3c7d298fbe6fcdb5dd1d22d506fa8d2e402b2b3","686f8d892779c3415c67713cea0b3be814bb40cd3256866e1d746c9f137aae9a","e4be70a4e8e69a068956e94af81c4add5c6f1ba1cef90b7ed9937c4dc3c93cf4","02a6859932dc4a6805fe599fa94a16a729e836a18541ab3b54cdae0fab5da700","e50bfc8c627c8eb506665f5a3970d7803435f5f880dbfb2b1eb6efc7287ad941","e55a20eca64604b7a61c109b70f3c83e1dd1fe34eee4c9e1557f6a8d5ed0a800","c184ddb08af85e906b277cb89cd12d0149d015f0de4b07d0f4d79793cf530f84","0000aacd901f4c7e9f894a1d45d41a8ce2502c21d28e5b76e629d0e6e1f76cb3","66b83cdeabe06ea5a46af3eaa16a37a70c56f1630d786238825eae250568662e","595a335dec1d899ed947f33714480fe8b0395d0f5b7e2bf13cd75a84b0da9228",{"version":"a96ea569a246f34f4b072aac87374c4f5d78508bd49767044ab88414ab86f8f4","signature":"049e30fe99a467681b75ba2c22d16b9a44d7d537df132f2087fd3ca51a2c5b60"},{"version":"702a9f8bfcb0f4e8275f959d328c21990cdd6ea265bd0c12e44c44c8cabb82fe","signature":"9e4dfa781e0f497bac07cba78139b3a5cb3329aee87c161969763d33c0f5e6ef"},"b8442e9db28157344d1bc5d8a5a256f1692de213f0c0ddeb84359834015a008c","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","da2b6356b84a40111aaecb18304ea4e4fcb43d70efb1c13ca7d7a906445ee0d3","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","6f294731b495c65ecf46a5694f0082954b961cf05463bea823f8014098eaffa0","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","68a0d0c508e1b6d8d23a519a8a0a3303dc5baa4849ca049f21e5bad41945e3fc","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","b03afe4bec768ae333582915146f48b161e567a81b5ebc31c4d78af089770ac9","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd",{"version":"5650fb00a38101e5923b7289fff16a3bd604019f77191086355046109f4d641e","signature":"d9c45449b55e29123758264de0a6998b720cf1acffdd243376b3557de306b275"},"c7296dc4d9fbcc729bb4dfc57e2e569127fd1ff0a5dabcf57de73dedf59ea7e3","46a39ca180745da3642d72a8014a3c4d5b610c009fa20481365354f4c472fdc4","d7eb937bf74e3233b161306104a3cb787c4d5c1c94b61d301f20c37c69863fb5","4489c6a9fde8934733aa7df6f7911461ee6e9e4ad092736bd416f6b2cc20b2c6","2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","8041cfce439ff29d339742389de04c136e3029d6b1817f07b2d7fcbfb7534990","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","9d38964b57191567a14b396422c87488cecd48f405c642daa734159875ee81d9","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"7fd7fcbf021a5845bdd9397d4649fcf2fe17152d2098140fc723099a215d19ad","affectsGlobalScope":true},"df3389f71a71a38bc931aaf1ef97a65fada98f0a27f19dd12f8b8de2b0f4e461","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"8b809082dfeffc8cc4f3b9c59f55c0ff52ba12f5ae0766cb5c35deee83b8552e","affectsGlobalScope":true},"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","d4f9d3ae2fe1ae199e1c832cca2c44f45e0b305dfa2808afdd51249b6f4a5163","7525257b4aa35efc7a1bbc00f205a9a96c4e4ab791da90db41b77938c4e0c18e","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"674168aa3db414ea0a19b2a31d901b2d49705c7a495e43ffdc96928543010f8c","affectsGlobalScope":true},"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","afb1701fd4be413a8a5a88df6befdd4510c30a31372c07a4138facf61594c66d","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"c07146dbbbd8b347241b5df250a51e48f2d7bef19b1e187b1a3f20c849988ff1","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"0666f4c99b8688c7be5956df8fecf5d1779d3b22f8f2a88258ae7072c7b6026f","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7fa32887f8a97909fca35ebba3740f8caf8df146618d8fff957a3f89f67a2f6a","9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","4b55240c2a03b2c71e98a7fc528b16136faa762211c92e781a01c37821915ea6","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"94c086dff8dbc5998749326bc69b520e8e4273fb5b7b58b50e0210e0885dfcde","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"ebe5facd12fd7745cda5f4bc3319f91fb29dc1f96e57e9c6f8b260a7cc5b67ee","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","21c56c6e8eeacef15f63f373a29fab6a2b36e4705be7a528aae8c51469e2737b",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","d88a5e779faf033be3d52142a04fbe1cb96009868e3bbdd296b2bc6c59e06c0e","ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","c3e5b75e1af87b8e67e12e21332e708f7eccee6aac6261cfe98ca36652cdcb53"],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"module":1,"outDir":"./dist","rootDir":"./src","target":2},"fileIdsList":[[129],[90],[49,91,92,93,94,95,96,97,98,99,100,101,102],[96],[78],[67],[65],[90,96],[90,95],[54,55,90],[50,51,52,53,54,55,56,57,58,66,67,68,69,70,71,72,73,74,75,77,78,79,80,81,82,83,84,85,86,87,88,89],[65,90],[54,66,90],[65,77,90],[50,90],[54,90],[51,65,74,90],[54],[65,90,103,104,108],[59,109],[54,58,103,109],[59,60,61,62,63,64],[109],[105,106,107],[59,90],[76],[129,130,131,132,133],[129,131],[184,220],[222],[223],[112,114,115,116,117,118,119,120,121,122,123,124],[112,113,115,116,117,118,119,120,121,122,123,124],[113,114,115,116,117,118,119,120,121,122,123,124],[112,113,114,116,117,118,119,120,121,122,123,124],[112,113,114,115,117,118,119,120,121,122,123,124],[112,113,114,115,116,118,119,120,121,122,123,124],[112,113,114,115,116,117,119,120,121,122,123,124],[112,113,114,115,116,117,118,120,121,122,123,124],[112,113,114,115,116,117,118,119,121,122,123,124],[112,113,114,115,116,117,118,119,120,122,123,124],[112,113,114,115,116,117,118,119,120,121,123,124],[112,113,114,115,116,117,118,119,120,121,122,124],[112,113,114,115,116,117,118,119,120,121,122,123],[135],[170],[171,176,204],[172,183,184,191,201,212],[172,173,183,191],[174,213],[175,176,184,192],[176,201,209],[177,179,183,191],[170,178],[179,180],[183],[181,183],[170,183],[183,184,185,201,212],[183,184,185,198,201,204],[168,171,217],[179,183,186,191,201,212],[183,184,186,187,191,201,209,212],[186,188,201,209,212],[135,136,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219],[183,189],[190,212,217],[179,183,191,201],[192],[193],[170,194],[195,211,217],[196],[197],[183,198,199],[198,200,213,215],[171,183,201,202,203,204],[171,201,203],[201,202],[204],[205],[170,201],[183,207,208],[207,208],[176,191,201,209],[210],[191,211],[171,186,197,212],[176,213],[201,214],[190,215],[216],[171,176,183,185,194,201,212,215,217],[201,218],[227],[145,149,212],[145,201,212],[140],[142,145,209,212],[191,209],[220],[140,220],[142,145,191,212],[137,138,141,144,171,183,201,212],[137,143],[141,145,171,204,212,220],[171,220],[161,171,220],[139,140,220],[145],[139,140,141,142,143,144,145,146,147,149,150,151,152,153,154,155,156,157,158,159,160,162,163,164,165,166,167],[145,152,153],[143,145,153,154],[144],[137,140,145],[145,149,153,154],[149],[143,145,148,212],[137,142,143,145,149,152],[171,201],[140,145,161,171,217,220],[47],[48,127],[126],[109,110],[48],[110,111,125],[109,110,124],[229]],"referencedMap":[[131,1],[97,2],[103,3],[91,2],[99,4],[92,2],[93,5],[94,6],[100,7],[95,8],[102,8],[96,9],[52,2],[53,2],[56,10],[87,2],[90,11],[55,2],[66,12],[67,2],[69,2],[70,2],[71,13],[72,2],[74,2],[75,2],[54,2],[78,14],[79,2],[80,2],[58,15],[82,16],[83,17],[89,18],[84,2],[109,19],[60,20],[59,21],[65,22],[61,23],[108,24],[64,25],[63,23],[77,26],[134,27],[130,1],[132,28],[133,1],[221,29],[223,30],[224,31],[113,32],[114,33],[112,34],[115,35],[116,36],[117,37],[118,38],[119,39],[120,40],[121,41],[122,42],[123,43],[124,44],[135,45],[136,45],[170,46],[171,47],[172,48],[173,49],[174,50],[175,51],[176,52],[177,53],[178,54],[179,55],[180,55],[182,56],[181,57],[183,58],[184,59],[185,60],[169,61],[186,62],[187,63],[188,64],[220,65],[189,66],[190,67],[191,68],[192,69],[193,70],[194,71],[195,72],[196,73],[197,74],[198,75],[199,75],[200,76],[201,77],[203,78],[202,79],[204,80],[205,81],[206,82],[207,83],[208,84],[209,85],[210,86],[211,87],[212,88],[213,89],[214,90],[215,91],[216,92],[217,93],[218,94],[228,95],[152,96],[159,97],[151,96],[166,98],[143,99],[142,100],[165,101],[160,102],[163,103],[145,104],[144,105],[140,106],[139,107],[162,108],[141,109],[146,110],[150,110],[168,111],[167,110],[154,112],[155,113],[157,114],[153,115],[156,116],[161,101],[148,117],[149,118],[158,119],[138,120],[164,121],[48,122],[128,123],[127,124],[111,125],[110,126],[126,127],[125,128]],"exportedModulesMap":[[131,1],[97,2],[103,3],[91,2],[99,4],[92,2],[93,5],[94,6],[100,7],[95,8],[102,8],[96,9],[52,2],[53,2],[56,10],[87,2],[90,11],[55,2],[66,12],[67,2],[69,2],[70,2],[71,13],[72,2],[74,2],[75,2],[54,2],[78,14],[79,2],[80,2],[58,15],[82,16],[83,17],[89,18],[84,2],[109,19],[60,20],[59,21],[65,22],[61,23],[108,24],[64,25],[63,23],[77,26],[134,27],[130,1],[132,28],[133,1],[221,29],[223,30],[224,31],[113,32],[114,33],[112,34],[115,35],[116,36],[117,37],[118,38],[119,39],[120,40],[121,41],[122,42],[123,43],[124,44],[135,45],[136,45],[170,46],[171,47],[172,48],[173,49],[174,50],[175,51],[176,52],[177,53],[178,54],[179,55],[180,55],[182,56],[181,57],[183,58],[184,59],[185,60],[169,61],[186,62],[187,63],[188,64],[220,65],[189,66],[190,67],[191,68],[192,69],[193,70],[194,71],[195,72],[196,73],[197,74],[198,75],[199,75],[200,76],[201,77],[203,78],[202,79],[204,80],[205,81],[206,82],[207,83],[208,84],[209,85],[210,86],[211,87],[212,88],[213,89],[214,90],[215,91],[216,92],[217,93],[218,94],[228,95],[152,96],[159,97],[151,96],[166,98],[143,99],[142,100],[165,101],[160,102],[163,103],[145,104],[144,105],[140,106],[139,107],[162,108],[141,109],[146,110],[150,110],[168,111],[167,110],[154,112],[155,113],[157,114],[153,115],[156,116],[161,101],[148,117],[149,118],[158,119],[138,120],[164,121],[48,122],[128,123],[127,124],[111,129],[126,127],[125,129]],"semanticDiagnosticsPerFile":[131,129,97,49,98,103,91,99,92,93,94,100,101,95,102,96,104,85,86,50,51,52,53,56,57,87,90,55,66,67,68,69,88,70,71,72,73,74,75,54,78,79,80,81,58,82,83,89,84,109,60,59,65,61,62,108,105,106,107,64,63,77,76,134,130,132,133,221,222,223,224,113,114,112,115,116,117,118,119,120,121,122,123,124,135,136,170,171,172,173,174,175,176,177,178,179,180,182,181,183,184,185,169,219,186,187,188,220,189,190,191,192,193,194,195,196,197,198,199,200,201,203,202,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,225,226,227,228,9,10,14,13,3,15,16,17,18,19,20,21,22,4,5,26,23,24,25,27,28,29,6,30,31,32,33,7,37,34,35,36,38,8,39,44,45,40,41,42,43,2,1,46,12,11,152,159,151,166,143,142,165,160,163,145,144,140,139,162,141,146,147,150,137,168,167,154,155,157,153,156,161,148,149,158,138,164,48,47,128,127,111,110,126,125],"latestChangedDtsFile":"./dist/index.d.ts"},"version":"4.9.5"}
|