@pdtf/schemas 3.2.1-5 → 3.2.1-6
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/index.js +1 -0
- package/package.json +1 -1
- package/src/examples/v3/exampleTransaction.json +5 -2
- package/src/schemas/v3/combined.json +410 -10
- package/src/schemas/v3/overlays/baspi4.json +5 -1
- package/src/schemas/v3/overlays/baspi5.json +5 -1
- package/src/schemas/v3/overlays/nts-sef.json +2161 -0
- package/src/schemas/v3/overlays/nts.json +1 -3
- package/src/schemas/v3/overlays/ntsl.json +1 -0
- package/src/schemas/v3/overlays/ta7.json +11 -2
- package/src/schemas/v3/pdtf-transaction.json +2 -2
- package/src/utils/extractOverlay.js +1 -0
package/index.js
CHANGED
|
@@ -41,6 +41,7 @@ const overlaysMap = {
|
|
|
41
41
|
fme1ed2: require("./src/schemas/v3/overlays/fme1.json"),
|
|
42
42
|
llc1v2: require("./src/schemas/v3/overlays/llc1.json"),
|
|
43
43
|
nts2023: require("./src/schemas/v3/overlays/nts.json"),
|
|
44
|
+
sef24: require("./src/schemas/v3/overlays/nts-sef.json"),
|
|
44
45
|
ntsl2023: require("./src/schemas/v3/overlays/ntsl.json"),
|
|
45
46
|
con29R2019: require("./src/schemas/v3/overlays/con29R.json"),
|
|
46
47
|
con29DW: require("./src/schemas/v3/overlays/con29DW.json"),
|
package/package.json
CHANGED
|
@@ -164,8 +164,8 @@
|
|
|
164
164
|
},
|
|
165
165
|
"buildingSafety": { "yesNo": "No" },
|
|
166
166
|
"accessibilityAndAdaptations": ["Level access"],
|
|
167
|
-
"loft": {
|
|
168
|
-
"loftAccess": "Yes",
|
|
167
|
+
"loft": {
|
|
168
|
+
"loftAccess": "Yes",
|
|
169
169
|
"details": "There's a hatch you need to jump up and grab and pull yourself in",
|
|
170
170
|
"loftBoarded": "No",
|
|
171
171
|
"loftInsulated": "Yes"
|
|
@@ -339,6 +339,9 @@
|
|
|
339
339
|
"solarPanels": {
|
|
340
340
|
"yesNo": "No"
|
|
341
341
|
},
|
|
342
|
+
"heatPump": {
|
|
343
|
+
"yesNo": "No"
|
|
344
|
+
},
|
|
342
345
|
"otherSources": {
|
|
343
346
|
"yesNo": "No"
|
|
344
347
|
}
|