@e-trias/woonplan 1.0.46 → 1.0.49
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/package.json +1 -1
- package/types.d.ts +182 -1
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -133,7 +133,7 @@ export interface Solarapicall{
|
|
|
133
133
|
postcode:string
|
|
134
134
|
housenumber:number
|
|
135
135
|
extension:string | null
|
|
136
|
-
result:string
|
|
136
|
+
result:string | ZonatlasResponse
|
|
137
137
|
}
|
|
138
138
|
|
|
139
139
|
export interface Quotation{
|
|
@@ -494,6 +494,12 @@ export interface IWall extends IHouseobject{
|
|
|
494
494
|
sideid ?: string
|
|
495
495
|
walltypeid ?: string
|
|
496
496
|
walltype ?: IWalltype
|
|
497
|
+
insulationonownrisk ?: boolean
|
|
498
|
+
wallfinishid ?: string
|
|
499
|
+
protectedstatus ?: boolean
|
|
500
|
+
aircavity ?: boolean
|
|
501
|
+
rcvalue ?: number
|
|
502
|
+
thicknesscavity ?: number
|
|
497
503
|
}
|
|
498
504
|
|
|
499
505
|
|
|
@@ -562,4 +568,179 @@ export interface IRule{
|
|
|
562
568
|
field ?: string
|
|
563
569
|
operator ?: string
|
|
564
570
|
value ?: string
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
interface ZonatlasAddress {
|
|
576
|
+
add_on: string
|
|
577
|
+
addition: string
|
|
578
|
+
city: string
|
|
579
|
+
country: string
|
|
580
|
+
hid: number
|
|
581
|
+
lat: number
|
|
582
|
+
lon: number
|
|
583
|
+
municipality: string
|
|
584
|
+
number: number
|
|
585
|
+
postal: string
|
|
586
|
+
project: string
|
|
587
|
+
spc_id: number
|
|
588
|
+
spc_key: string
|
|
589
|
+
street: string
|
|
590
|
+
}
|
|
591
|
+
interface ZonatlasBagdata {
|
|
592
|
+
building_add_on: string | null,
|
|
593
|
+
building_addition: string | null,
|
|
594
|
+
building_area: number,
|
|
595
|
+
building_function: string
|
|
596
|
+
building_number: number,
|
|
597
|
+
building_postcode: string
|
|
598
|
+
building_status: string
|
|
599
|
+
id_nummeraanduiding: string
|
|
600
|
+
id_openbareruimte: string
|
|
601
|
+
id_plaats: string
|
|
602
|
+
id_verblijfsobject: string
|
|
603
|
+
pand_building_year: number
|
|
604
|
+
pand_status: string
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
interface ZonatlasCalculationParamaters{
|
|
608
|
+
harging_station: boolean
|
|
609
|
+
costs_insurance: number
|
|
610
|
+
costs_other: number
|
|
611
|
+
costs_service: number
|
|
612
|
+
degradation:number
|
|
613
|
+
eeg_umlage: any | null,
|
|
614
|
+
emobility: boolean,
|
|
615
|
+
energy_consumption: number,
|
|
616
|
+
energy_price:number
|
|
617
|
+
energy_price_increase: number
|
|
618
|
+
feed_in_rate_kwh: number
|
|
619
|
+
inflation: number
|
|
620
|
+
load_profile: boolean,
|
|
621
|
+
scaffold_factor: number
|
|
622
|
+
scaffold_price_increase: number
|
|
623
|
+
solar_thermal: boolean,
|
|
624
|
+
storage: boolean,
|
|
625
|
+
storage_information: { kwh_brutto: number }
|
|
626
|
+
subsidy_per_kwp: number
|
|
627
|
+
system_loss: number
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
interface ZonatlasData {
|
|
631
|
+
autarky: number
|
|
632
|
+
building_area: number
|
|
633
|
+
co2_savings: number
|
|
634
|
+
cost_charging_station: number
|
|
635
|
+
cost: number
|
|
636
|
+
cost_charging_station_excl_vat: number
|
|
637
|
+
cost_excl_vat: number
|
|
638
|
+
cost_pv_excl_vat: number
|
|
639
|
+
cost_pv: number
|
|
640
|
+
cost_storage_excl_vat: number
|
|
641
|
+
cost_storage: number
|
|
642
|
+
forecasted_years: number
|
|
643
|
+
energy_consumption: number
|
|
644
|
+
global_mean_barely_suited: number
|
|
645
|
+
global_mean_suited: number
|
|
646
|
+
global_mean_well_suited: number
|
|
647
|
+
kwp: number
|
|
648
|
+
max_energy: number
|
|
649
|
+
max_energy_barely_suited: number
|
|
650
|
+
max_energy_suited: number
|
|
651
|
+
max_energy_well_suited: number
|
|
652
|
+
max_kwp: number
|
|
653
|
+
max_kwp_barely_suited: number
|
|
654
|
+
max_kwp_suited: number
|
|
655
|
+
max_kwp_well_suited: number
|
|
656
|
+
max_panels: number
|
|
657
|
+
months_until_payback: number
|
|
658
|
+
number_of_panels: number
|
|
659
|
+
own_consumption: number
|
|
660
|
+
percent_roi: number
|
|
661
|
+
profit: number
|
|
662
|
+
pv_area_barely_suited: number
|
|
663
|
+
pv_area_suited: number
|
|
664
|
+
pv_area_well_suited: number
|
|
665
|
+
st_area_suited: number
|
|
666
|
+
st_area_well_suited: number
|
|
667
|
+
st_max_area: number
|
|
668
|
+
st_max_kwhpa_flat: number
|
|
669
|
+
st_max_kwhpa_vacuum: number
|
|
670
|
+
st_max_number_of_panels: number
|
|
671
|
+
street: string
|
|
672
|
+
subsidy_one_time: number
|
|
673
|
+
suitability: string
|
|
674
|
+
suitability_st: string
|
|
675
|
+
total_income: number
|
|
676
|
+
total_plant_roof_area: number
|
|
677
|
+
total_plant_surface: number
|
|
678
|
+
yearly_income: number
|
|
679
|
+
yearly_yield: number
|
|
680
|
+
years_until_payed_back: number
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
interface ZonatlasMapLayer {
|
|
684
|
+
name: string
|
|
685
|
+
url: string
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
interface ZonatlasModule {
|
|
689
|
+
Wp: number,
|
|
690
|
+
cost_per_kwp: number,
|
|
691
|
+
height: number,
|
|
692
|
+
ident: number | null,
|
|
693
|
+
name: string,
|
|
694
|
+
size:number,
|
|
695
|
+
width: number
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
interface ZonatlasPlantData{
|
|
699
|
+
estimated_yield:number,
|
|
700
|
+
kwp: number,
|
|
701
|
+
module: ZonatlasModule,
|
|
702
|
+
number_of_modules: number,
|
|
703
|
+
orientation: number,
|
|
704
|
+
roof_id: number,
|
|
705
|
+
scaffold: boolean,
|
|
706
|
+
tilt: number
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
interface ZonatlasPlant{
|
|
710
|
+
data: ZonatlasPlantData,
|
|
711
|
+
mp: string
|
|
712
|
+
type: string
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
interface ZonatlasRequest {
|
|
716
|
+
add_on: string
|
|
717
|
+
addition: string
|
|
718
|
+
api_type: string
|
|
719
|
+
auth: string
|
|
720
|
+
moduleplacer: boolean
|
|
721
|
+
number: string
|
|
722
|
+
postal: string
|
|
723
|
+
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
|
|
727
|
+
interface ZonatlasResult{
|
|
728
|
+
address : ZonatlasAddress
|
|
729
|
+
bagdata : ZonatlasBagdata[]
|
|
730
|
+
buildingwkt : string
|
|
731
|
+
calculation_parameters : ZonatlasCalculationParamaters
|
|
732
|
+
data : ZonatlasData
|
|
733
|
+
href : string
|
|
734
|
+
individual_data : any
|
|
735
|
+
map_layers : ZonatlasMapLayer[]
|
|
736
|
+
monuments : {
|
|
737
|
+
monument_areas: [],
|
|
738
|
+
national_monuments: []
|
|
739
|
+
}
|
|
740
|
+
plants : ZonatlasPlant[]
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
interface ZonatlasResponse {
|
|
744
|
+
request : ZonatlasRequest
|
|
745
|
+
results : ZonatlasResult[]
|
|
565
746
|
}
|