epb_view_models 1.0.29 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (29) hide show
  1. checksums.yaml +4 -4
  2. data/.ruby-version +1 -1
  3. data/Gemfile.lock +24 -24
  4. data/api/schemas/data/orchestrate.json +4 -0
  5. data/api/schemas/xml/SAP-Schema-19.1.0/SAP/ExternalDefinitions.xml +1735 -0
  6. data/api/schemas/xml/SAP-Schema-19.1.0/SAP/ExternalDefinitions.xsd +313 -0
  7. data/api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/AssessorManagement.xsd +275 -0
  8. data/api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/EPC-Certificate.xsd +632 -0
  9. data/api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/ExceptionList.xsd +20 -0
  10. data/api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/Property.xsd +85 -0
  11. data/api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/ReportList.xsd +27 -0
  12. data/api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/SAP-CollectedData.xsd +2500 -0
  13. data/api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/SAP-Compliance-Report.xsd +51 -0
  14. data/api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/SAP-Report.xsd +277 -0
  15. data/api/schemas/xml/SAP-Schema-19.1.0/SAP/UDT/EPC-Domains.xsd +646 -0
  16. data/api/schemas/xml/SAP-Schema-19.1.0/SAP/UDT/SAP-Domains.xsd +3421 -0
  17. data/epb_view_models.gemspec +2 -2
  18. data/lib/accessor/domestic_recommendations_accessor.rb +50 -0
  19. data/lib/epb_view_models.rb +1 -1
  20. data/lib/helper/xml_enums_to_output.rb +2 -0
  21. data/lib/presenter/rd_sap/domestic_digest.rb +0 -2
  22. data/lib/presenter/sap/domestic_digest.rb +1 -1
  23. data/lib/view_model/factory.rb +1 -0
  24. data/lib/view_model/rd_sap_schema_200/common_schema.rb +5 -4
  25. data/lib/view_model/sap_schema_1800/common_schema.rb +4 -2
  26. data/lib/view_model/sap_schema_1900/common_schema.rb +4 -2
  27. data/lib/view_model/sap_schema_1910/common_schema.rb +620 -0
  28. data/lib/view_model/sap_wrapper.rb +2 -0
  29. metadata +19 -5
@@ -0,0 +1,620 @@
1
+ module ViewModel
2
+ module SapSchema1910
3
+ class CommonSchema < ViewModel::DomesticEpcViewModel
4
+ THRESHOLD_LOW_ENERGY_LIGHTING_EFFICACY = 65
5
+
6
+ def assessment_id
7
+ xpath(%w[Report-Header RRN])
8
+ end
9
+
10
+ def address_line1
11
+ xpath(%w[Report-Header Property Address Address-Line-1])
12
+ end
13
+
14
+ def address_line2
15
+ xpath(%w[Report-Header Property Address Address-Line-2])
16
+ end
17
+
18
+ def address_line3
19
+ xpath(%w[Report-Header Property Address Address-Line-3])
20
+ end
21
+
22
+ def town
23
+ xpath(%w[Report-Header Property Address Post-Town])
24
+ end
25
+
26
+ def postcode
27
+ xpath(%w[Report-Header Property Address Postcode])
28
+ end
29
+
30
+ def scheme_assessor_id
31
+ xpath(%w[Certificate-Number])
32
+ end
33
+
34
+ def assessor_name
35
+ xpath(%w[Home-Inspector Name])
36
+ end
37
+
38
+ def assessor_email
39
+ xpath(%w[Home-Inspector/E-Mail])
40
+ end
41
+
42
+ def assessor_telephone
43
+ xpath(%w[Home-Inspector/Telephone])
44
+ end
45
+
46
+ def date_of_assessment
47
+ xpath(%w[Inspection-Date])
48
+ end
49
+
50
+ def date_of_registration
51
+ xpath(%w[Registration-Date])
52
+ end
53
+
54
+ def date_of_completion
55
+ xpath(%w[Completion-Date])
56
+ end
57
+
58
+ def address_id
59
+ xpath(%w[UPRN])
60
+ end
61
+
62
+ def date_of_expiry
63
+ expires_at = (Date.parse(date_of_registration) - 1) >> 12 * 10
64
+
65
+ expires_at.to_s
66
+ end
67
+
68
+ def property_summary
69
+ @xml_doc.search("Energy-Assessment Property-Summary").children.select(
70
+ &:element?
71
+ ).map { |node|
72
+ next if xpath(%w[Energy-Efficiency-Rating], node).nil?
73
+
74
+ {
75
+ energy_efficiency_rating:
76
+ xpath(%w[Energy-Efficiency-Rating], node).to_i,
77
+ environmental_efficiency_rating:
78
+ xpath(%w[Environmental-Efficiency-Rating], node).to_i,
79
+ name: node.name.underscore,
80
+ description: xpath(%w[Description], node),
81
+ }
82
+ }.compact
83
+ end
84
+
85
+ def related_party_disclosure_text
86
+ xpath(%w[Related-Party-Disclosure-Text])
87
+ end
88
+
89
+ def related_party_disclosure_number
90
+ xpath(%w[Related-Party-Disclosure-Number])&.to_i
91
+ end
92
+
93
+ def improvements
94
+ @xml_doc
95
+ .search("Suggested-Improvements Improvement")
96
+ .map do |node|
97
+ {
98
+ energy_performance_rating_improvement:
99
+ xpath(%w[Energy-Performance-Rating], node).to_i,
100
+ environmental_impact_rating_improvement:
101
+ xpath(%w[Environmental-Impact-Rating], node).to_i,
102
+ green_deal_category_code: xpath(%w[Green-Deal-Category], node),
103
+ improvement_category: xpath(%w[Improvement-Category], node),
104
+ improvement_code:
105
+ xpath(%w[Improvement-Details Improvement-Number], node),
106
+ improvement_description: xpath(%w[Improvement-Description], node),
107
+ improvement_title: improvement_title(node),
108
+ improvement_type: xpath(%w[Improvement-Type], node),
109
+ indicative_cost: xpath(%w[Indicative-Cost], node),
110
+ sequence: xpath(%w[Sequence], node).to_i,
111
+ typical_saving: xpath(%w[Typical-Saving], node),
112
+ }
113
+ end
114
+ end
115
+
116
+ def recommendations_for_report
117
+ accessor = Accessor::DomesticRecommendationsAccessor.instance
118
+ @xml_doc
119
+ .search("Suggested-Improvements Improvement")
120
+ .map do |node|
121
+ improvement_code = xpath(%w[Improvement-Details Improvement-Number], node)
122
+ {
123
+ sequence: xpath(%w[Sequence], node).to_i,
124
+ improvement_summary: improvement_code ? accessor.fetch_details(schema_version: "SAP-Schema-19.1.0", improvement_number: improvement_code).summary : xpath(%w[Improvement-Summary], node),
125
+ improvement_description: improvement_code ? accessor.fetch_details(schema_version: "SAP-Schema-19.1.0", improvement_number: improvement_code).description : xpath(%w[Improvement-Description], node),
126
+ improvement_code:
127
+ xpath(%w[Improvement-Details Improvement-Number], node),
128
+ indicative_cost: xpath(%w[Indicative-Cost], node),
129
+ }
130
+ end
131
+ end
132
+
133
+ def hot_water_cost_potential
134
+ xpath(%w[Hot-Water-Cost-Potential])
135
+ end
136
+
137
+ def heating_cost_potential
138
+ xpath(%w[Heating-Cost-Potential])
139
+ end
140
+
141
+ def lighting_cost_potential
142
+ xpath(%w[Lighting-Cost-Potential])
143
+ end
144
+
145
+ def hot_water_cost_current
146
+ xpath(%w[Hot-Water-Cost-Current])
147
+ end
148
+
149
+ def heating_cost_current
150
+ xpath(%w[Heating-Cost-Current])
151
+ end
152
+
153
+ def lighting_cost_current
154
+ xpath(%w[Lighting-Cost-Current])
155
+ end
156
+
157
+ def potential_carbon_emission
158
+ xpath(%w[CO2-Emissions-Potential])
159
+ end
160
+
161
+ def current_carbon_emission
162
+ xpath(%w[CO2-Emissions-Current])
163
+ end
164
+
165
+ def potential_energy_rating
166
+ xpath(%w[Energy-Rating-Potential]).to_i
167
+ end
168
+
169
+ def current_energy_rating
170
+ xpath(%w[Energy-Rating-Current]).to_i
171
+ end
172
+
173
+ def primary_energy_use
174
+ xpath(%w[Energy-Consumption-Current])
175
+ end
176
+
177
+ def energy_consumption_potential
178
+ xpath(%w[Energy-Consumption-Potential])
179
+ end
180
+
181
+ def estimated_energy_cost; end
182
+
183
+ def total_floor_area
184
+ xpath(%w[Property-Summary Total-Floor-Area]).to_i
185
+ end
186
+
187
+ def dwelling_type
188
+ xpath(%w[Dwelling-Type])
189
+ end
190
+
191
+ def potential_energy_saving; end
192
+
193
+ def property_age_band
194
+ xpath(%w[Construction-Year])
195
+ end
196
+
197
+ def main_dwelling_construction_age_band_or_year
198
+ sap_building_parts =
199
+ @xml_doc.xpath("//SAP-Building-Parts/SAP-Building-Part")
200
+ sap_building_parts.each do |sap_building_part|
201
+ building_part_number = sap_building_part.at("Building-Part-Number")
202
+
203
+ # Identifies the Main Dwelling
204
+ if building_part_number&.content == "1"
205
+ return(
206
+ sap_building_part.at_xpath(
207
+ "Construction-Age-Band | Construction-Year",
208
+ )&.content
209
+ )
210
+ end
211
+ end
212
+ nil
213
+ end
214
+
215
+ def tenure
216
+ xpath(%w[Tenure])
217
+ end
218
+
219
+ def transaction_type
220
+ xpath(%w[Transaction-Type])
221
+ end
222
+
223
+ def current_space_heating_demand
224
+ xpath(%w[Space-Heating]) or xpath(%w[Space-Heating-Existing-Dwelling])
225
+ end
226
+
227
+ def current_water_heating_demand
228
+ xpath(%w[Water-Heating])
229
+ end
230
+
231
+ def impact_of_cavity_insulation
232
+ if xpath(%w[Impact-Of-Cavity-Insulation])
233
+ xpath(%w[Impact-Of-Cavity-Insulation]).to_i
234
+ end
235
+ end
236
+
237
+ def impact_of_loft_insulation
238
+ if xpath(%w[Impact-Of-Loft-Insulation])
239
+ xpath(%w[Impact-Of-Loft-Insulation]).to_i
240
+ end
241
+ end
242
+
243
+ def impact_of_solid_wall_insulation
244
+ if xpath(%w[Impact-Of-Solid-Wall-Insulation])
245
+ xpath(%w[Impact-Of-Solid-Wall-Insulation]).to_i
246
+ end
247
+ end
248
+
249
+ def all_sap_floor_dimensions
250
+ @xml_doc.search("SAP-Floor-Dimension").select(&:element?).map { |node|
251
+ { total_floor_area: xpath(%w[Total-Floor-Area], node).to_f }
252
+ }.compact
253
+ end
254
+
255
+ def type_of_assessment
256
+ "SAP"
257
+ end
258
+
259
+ def level
260
+ xpath(%w[Level])
261
+ end
262
+
263
+ def top_storey
264
+ flat_level_code = xpath(%w[SAP-FlatLevelCode])
265
+ flat_level_code == "3" ? "Y" : "N"
266
+ end
267
+
268
+ def storey_count
269
+ xpath(%w[Storeys])
270
+ end
271
+
272
+ def building_part_number
273
+ xpath(%w[Building-Part-Number])
274
+ end
275
+
276
+ def all_building_parts
277
+ @xml_doc
278
+ .search("SAP-Building-Parts/SAP-Building-Part")
279
+ .map do |part|
280
+ {
281
+ roof_insulation_thickness:
282
+ if part.xpath("Roof-Insulation-Thickness").empty?
283
+ nil
284
+ else
285
+ part.xpath("Roof-Insulation-Thickness").text
286
+ end,
287
+ rafter_insulation_thickness:
288
+ xpath(%w[Rafter-Insulation-Thickness], part),
289
+ flat_roof_insulation_thickness:
290
+ xpath(%w[Flat-Roof-Insulation-Thickness], part),
291
+ sloping_ceiling_insulation_thickness:
292
+ xpath(%w[Sloping-Ceiling-Insulation-Thickness], part),
293
+ roof_u_value: xpath(%w[Roof-U-Value], part),
294
+ }
295
+ end
296
+ end
297
+
298
+ def floor_heat_loss
299
+ xpath(%w[Floor-Heat-Loss])
300
+ end
301
+
302
+ def immersion_heating_type
303
+ xpath(%w[Immersion-Heating-Type])
304
+ end
305
+
306
+ def main_fuel_type
307
+ xpath(%w[Main-Fuel-Type])
308
+ end
309
+
310
+ def secondary_fuel_type
311
+ xpath(%w[Secondary-Fuel-Type])
312
+ end
313
+
314
+ def water_heating_fuel
315
+ xpath(%w[Water-Fuel-Type])
316
+ end
317
+
318
+ def boiler_flue_type
319
+ xpath(%w[Boiler-Flue-Type])
320
+ end
321
+
322
+ def meter_type
323
+ xpath(%w[Meter-Type])
324
+ end
325
+
326
+ def sap_main_heating_code
327
+ xpath(%w[SAP-Main-Heating-Code])
328
+ end
329
+
330
+ def country_code
331
+ xpath(%w[Country-Code])
332
+ end
333
+
334
+ def environmental_impact_current
335
+ xpath(%w[Environmental-Impact-Current])
336
+ end
337
+
338
+ def environmental_impact_potential
339
+ xpath(%w[Environmental-Impact-Potential])
340
+ end
341
+
342
+ def co2_emissions_current_per_floor_area
343
+ xpath(%w[CO2-Emissions-Current-Per-Floor-Area])
344
+ end
345
+
346
+ def mains_gas
347
+ nil
348
+ end
349
+
350
+ def main_heating_controls
351
+ xpath(%w[Main-Heating-Controls Description])
352
+ end
353
+
354
+ def multiple_glazed_proportion
355
+ xpath(%w[Multiple-Glazed-Percentage])
356
+ end
357
+
358
+ def glazed_area
359
+ nil
360
+ end
361
+
362
+ def habitable_room_count
363
+ nil
364
+ end
365
+
366
+ def heated_room_count
367
+ nil
368
+ end
369
+
370
+ def fixed_lighting_outlets_count
371
+ @xml_doc.search("Fixed-Lights/Fixed-Light/Lighting-Outlets").map(&:content).map(&:to_i).sum
372
+ end
373
+
374
+ def format_fixed_light_array
375
+ @xml_doc
376
+ .search("Fixed-Lights/Fixed-Light")
377
+ .map do |part|
378
+ {
379
+ lighting_efficacy:
380
+ xpath(%w[Lighting-Efficacy], part),
381
+ lighting_outlets:
382
+ xpath(%w[Lighting-Outlets], part),
383
+ }
384
+ end
385
+ end
386
+
387
+ def low_energy_lighting
388
+ total_energy_outlet_count = []
389
+ low_energy_outlet_count = []
390
+
391
+ format_fixed_light_array.each do |outlet|
392
+ if outlet[:lighting_efficacy].to_i > THRESHOLD_LOW_ENERGY_LIGHTING_EFFICACY
393
+ low_energy_outlet_count << outlet[:lighting_outlets].to_i
394
+ end
395
+ total_energy_outlet_count << outlet[:lighting_outlets].to_f
396
+ end
397
+
398
+ if total_energy_outlet_count.sum.zero?
399
+ return 0
400
+ end
401
+
402
+ (low_energy_outlet_count.sum / total_energy_outlet_count.sum * 100).round
403
+ end
404
+
405
+ def low_energy_fixed_lighting_outlets_count
406
+ low_energy_outlet_count = []
407
+
408
+ format_fixed_light_array.each do |outlet|
409
+ if outlet[:lighting_efficacy].to_i > THRESHOLD_LOW_ENERGY_LIGHTING_EFFICACY
410
+ low_energy_outlet_count << outlet[:lighting_outlets].to_i
411
+ end
412
+ end
413
+
414
+ low_energy_outlet_count.sum
415
+ end
416
+
417
+ def open_fireplaces_count
418
+ xpath(%w[Open-Chimneys-Count])
419
+ end
420
+
421
+ def hot_water_description
422
+ xpath(%w[Hot-Water Description])
423
+ end
424
+
425
+ def hot_water_energy_efficiency_rating
426
+ xpath(%w[Hot-Water Energy-Efficiency-Rating])
427
+ end
428
+
429
+ def hot_water_environmental_efficiency_rating
430
+ xpath(%w[Hot-Water Environmental-Efficiency-Rating])
431
+ end
432
+
433
+ def window_description
434
+ xpath(%w[Windows Description])
435
+ end
436
+
437
+ def window_energy_efficiency_rating
438
+ xpath(%w[Windows Energy-Efficiency-Rating])
439
+ end
440
+
441
+ def window_environmental_efficiency_rating
442
+ xpath(%w[Windows Environmental-Efficiency-Rating])
443
+ end
444
+
445
+ def secondary_heating_description
446
+ xpath(%w[Secondary-Heating Description])
447
+ end
448
+
449
+ def secondary_heating_energy_efficiency_rating
450
+ xpath(%w[Secondary-Heating Energy-Efficiency-Rating])
451
+ end
452
+
453
+ def secondary_heating_environmental_efficiency_rating
454
+ xpath(%w[Secondary-Heating Environmental-Efficiency-Rating])
455
+ end
456
+
457
+ def lighting_description
458
+ xpath(%w[Lighting Description])
459
+ end
460
+
461
+ def lighting_energy_efficiency_rating
462
+ xpath(%w[Lighting Energy-Efficiency-Rating])
463
+ end
464
+
465
+ def lighting_environmental_efficiency_rating
466
+ xpath(%w[Lighting Environmental-Efficiency-Rating])
467
+ end
468
+
469
+ def photovoltaic_roof_area_percent
470
+ nil
471
+ end
472
+
473
+ def built_form
474
+ xpath(%w[Built-Form])
475
+ end
476
+
477
+ def wind_turbine_count
478
+ @xml_doc.search("Wind-Turbines/Wind-Turbine").map(&:content).count
479
+ end
480
+
481
+ def unheated_corridor_length
482
+ nil
483
+ end
484
+
485
+ def heat_loss_corridor
486
+ nil
487
+ end
488
+
489
+ def all_main_heating_descriptions
490
+ @xml_doc.search("Main-Heating/Description").map(&:content)
491
+ end
492
+
493
+ def all_main_heating_controls_descriptions
494
+ @xml_doc.search("Main-Heating-Controls/Description").map(&:content)
495
+ end
496
+
497
+ def report_type
498
+ xpath(%w[Report-Type])
499
+ end
500
+
501
+ def all_roof_descriptions
502
+ @xml_doc.search("Roof/Description").map(&:content)
503
+ end
504
+
505
+ def all_roof_env_energy_efficiency_rating
506
+ @xml_doc.search("Roof/Environmental-Efficiency-Rating").map(&:content)
507
+ end
508
+
509
+ def all_roof_energy_efficiency_rating
510
+ @xml_doc.search("Roof/Environmental-Efficiency-Rating").map(&:content)
511
+ end
512
+
513
+ def all_wall_descriptions
514
+ @xml_doc.search("Walls/Description").map(&:content)
515
+ end
516
+
517
+ def all_wall_energy_efficiency_rating
518
+ @xml_doc.search("Walls/Energy-Efficiency-Rating").map(&:content)
519
+ end
520
+
521
+ def all_wall_env_energy_efficiency_rating
522
+ @xml_doc.search("Walls/Environmental-Efficiency-Rating").map(&:content)
523
+ end
524
+
525
+ def energy_tariff
526
+ xpath(%w[Electricity-Tariff])
527
+ end
528
+
529
+ def floor_level
530
+ xpath(%w[SAP-Flat-Details Level])
531
+ end
532
+
533
+ def all_main_heating_energy_efficiency
534
+ @xml_doc.search("Main-Heating/Energy-Efficiency-Rating").map(&:content)
535
+ end
536
+
537
+ def extensions_count
538
+ nil
539
+ end
540
+
541
+ def solar_water_heating_flag
542
+ nil
543
+ end
544
+
545
+ def mechanical_ventilation
546
+ nil
547
+ end
548
+
549
+ def floor_height
550
+ @xml_doc.search("Storey-Height").map(&:content)
551
+ end
552
+
553
+ def all_floor_descriptions
554
+ @xml_doc.search("Property-Summary/Floor/Description").map(&:content)
555
+ end
556
+
557
+ def all_floor_energy_efficiency_rating
558
+ @xml_doc
559
+ .search("Property-Summary/Floor/Energy-Efficiency-Rating")
560
+ .map(&:content)
561
+ end
562
+
563
+ def all_floor_env_energy_efficiency_rating
564
+ @xml_doc
565
+ .search("Property-Summary/Floor/Environmental-Efficiency-Rating")
566
+ .map(&:content)
567
+ end
568
+
569
+ def all_main_heating_controls_energy_efficiency
570
+ @xml_doc
571
+ .search("Main-Heating-Controls/Energy-Efficiency-Rating")
572
+ .map(&:content)
573
+ end
574
+
575
+ def all_main_heating_controls_environmental_efficiency
576
+ @xml_doc
577
+ .search("Main-Heating-Controls/Environmental-Efficiency-Rating")
578
+ .map(&:content)
579
+ end
580
+
581
+ def all_main_heating_environmental_efficiency
582
+ @xml_doc
583
+ .search("Main-Heating/Environmental-Efficiency-Rating")
584
+ .map(&:content)
585
+ end
586
+
587
+ def cylinder_insul_thickness
588
+ xpath(%w[Hot-Water-Store-Insulation-Thickness])
589
+ end
590
+
591
+ def cylinder_insulation_type
592
+ xpath(%w[Hot-Water-Store-Insulation-Type])
593
+ end
594
+
595
+ def cylinder_size
596
+ xpath(%w[Hot-Water-Store-Size])
597
+ end
598
+
599
+ def has_cylinder_thermostat
600
+ xpath(%w[Has-Cylinder-Thermostat])
601
+ end
602
+
603
+ def mech_vent_sys_index_number
604
+ xpath(%w[Mechanical-Vent-System-Index-Number])
605
+ end
606
+
607
+ def mechanical_vent_data_source
608
+ xpath(%w[Mechanical-Ventilation-Data-Source])
609
+ end
610
+
611
+ def thermal_store
612
+ xpath(%w[Thermal-Store])
613
+ end
614
+
615
+ def ventilation_type
616
+ xpath(%w[Ventilation-Type])
617
+ end
618
+ end
619
+ end
620
+ end
@@ -50,6 +50,8 @@ module ViewModel
50
50
 
51
51
  def build_view_model(xml_doc, schema_type, report_type)
52
52
  case schema_type
53
+ when :"SAP-Schema-19.1.0"
54
+ return ViewModel::SapSchema1910::CommonSchema.new xml_doc
53
55
  when :"SAP-Schema-19.0.0"
54
56
  return ViewModel::SapSchema1900::CommonSchema.new xml_doc
55
57
  when :"SAP-Schema-18.0.0"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: epb_view_models
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.29
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
- - MHCLG Energy Performance of Buildings
7
+ - DLUHC Energy Performance of Buildings
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-01-09 00:00:00.000000000 Z
11
+ date: 2023-04-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -40,7 +40,7 @@ dependencies:
40
40
  version: '2.6'
41
41
  description:
42
42
  email:
43
- - mhclg.digital-services@communities.gov.uk
43
+ - dluhc.digital-services@levellingup.gov.uk
44
44
  executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
@@ -1037,6 +1037,18 @@ files:
1037
1037
  - api/schemas/xml/SAP-Schema-19.0.0/SAP/Templates/SAP-Report.xsd
1038
1038
  - api/schemas/xml/SAP-Schema-19.0.0/SAP/UDT/EPC-Domains.xsd
1039
1039
  - api/schemas/xml/SAP-Schema-19.0.0/SAP/UDT/SAP-Domains.xsd
1040
+ - api/schemas/xml/SAP-Schema-19.1.0/SAP/ExternalDefinitions.xml
1041
+ - api/schemas/xml/SAP-Schema-19.1.0/SAP/ExternalDefinitions.xsd
1042
+ - api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/AssessorManagement.xsd
1043
+ - api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/EPC-Certificate.xsd
1044
+ - api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/ExceptionList.xsd
1045
+ - api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/Property.xsd
1046
+ - api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/ReportList.xsd
1047
+ - api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/SAP-CollectedData.xsd
1048
+ - api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/SAP-Compliance-Report.xsd
1049
+ - api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/SAP-Report.xsd
1050
+ - api/schemas/xml/SAP-Schema-19.1.0/SAP/UDT/EPC-Domains.xsd
1051
+ - api/schemas/xml/SAP-Schema-19.1.0/SAP/UDT/SAP-Domains.xsd
1040
1052
  - api/schemas/xml/SAP-Schema-NI-11.2/CommonFiles/CommonStructures.xsd
1041
1053
  - api/schemas/xml/SAP-Schema-NI-11.2/CommonFiles/Exceptions.xsd
1042
1054
  - api/schemas/xml/SAP-Schema-NI-11.2/Messages/ConditionReportChangeAccessRequest_1.xsd
@@ -1646,6 +1658,7 @@ files:
1646
1658
  - api/schemas/xml/examples/SAP-18.0.0.xml
1647
1659
  - api/schemas/xml/examples/SAP-NI-18.0.0.xml
1648
1660
  - epb_view_models.gemspec
1661
+ - lib/accessor/domestic_recommendations_accessor.rb
1649
1662
  - lib/epb_view_models.rb
1650
1663
  - lib/helper/ac_report_extraction.rb
1651
1664
  - lib/helper/energy_band_calculator.rb
@@ -1807,6 +1820,7 @@ files:
1807
1820
  - lib/view_model/sap_schema_171/common_schema.rb
1808
1821
  - lib/view_model/sap_schema_1800/common_schema.rb
1809
1822
  - lib/view_model/sap_schema_1900/common_schema.rb
1823
+ - lib/view_model/sap_schema_1910/common_schema.rb
1810
1824
  - lib/view_model/sap_schema_ni_112/common_schema.rb
1811
1825
  - lib/view_model/sap_schema_ni_112/rdsap.rb
1812
1826
  - lib/view_model/sap_schema_ni_112/sap.rb
@@ -1870,7 +1884,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1870
1884
  - !ruby/object:Gem::Version
1871
1885
  version: '0'
1872
1886
  requirements: []
1873
- rubygems_version: 3.3.7
1887
+ rubygems_version: 3.3.26
1874
1888
  signing_key:
1875
1889
  specification_version: 4
1876
1890
  summary: Library used to parse Energy Performance Certificates (EPC)