@zerocarbon/erp-config-sdk 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3997 @@
1
+ import * as react_icons_lib from 'react-icons/lib';
2
+
3
+ interface StrapiResponse<T> {
4
+ data: StrapiItem<T>[];
5
+ meta: {
6
+ pagination: {
7
+ page: number;
8
+ pageSize: number;
9
+ pageCount: number;
10
+ total: number;
11
+ };
12
+ };
13
+ }
14
+ interface StrapiItem<T> {
15
+ id: number;
16
+ attributes: T;
17
+ }
18
+ interface TransportationEmissionAttributes {
19
+ category: string;
20
+ sub_category: string;
21
+ mode: string;
22
+ vehicle: string;
23
+ vehicle_specification?: string | null;
24
+ unit: string;
25
+ emission_factor: number;
26
+ mass_of_transported_goods_tonnes?: number | null;
27
+ distance_transported_km?: number | null;
28
+ emissions_kg_co2?: number | null;
29
+ vehicle_type?: string | null;
30
+ fuel_type?: string | null;
31
+ engine_size?: string | null;
32
+ load_capacity_tonnes?: number | null;
33
+ load_factor?: number | null;
34
+ notes?: string | null;
35
+ source?: string | null;
36
+ is_active: boolean;
37
+ createdAt: string;
38
+ updatedAt: string;
39
+ publishedAt: string;
40
+ requiresMassData?: boolean;
41
+ }
42
+ interface BusinessTravelEmissionAttributes {
43
+ category: string;
44
+ mode: string;
45
+ type: string;
46
+ engine_type?: string | null;
47
+ engine_capacity?: string | null;
48
+ fuel?: string | null;
49
+ emission_factor: number;
50
+ unit: string;
51
+ total_distance_travelled_km?: number | null;
52
+ total_emissions?: number | null;
53
+ passenger_count?: number | null;
54
+ trip_purpose?: string | null;
55
+ origin?: string | null;
56
+ destination?: string | null;
57
+ is_active: boolean;
58
+ notes?: string | null;
59
+ source?: string | null;
60
+ createdAt: string;
61
+ updatedAt: string;
62
+ publishedAt: string;
63
+ requiresMassData?: boolean;
64
+ }
65
+ interface EmissionsDataAttributes {
66
+ category: string;
67
+ process: string;
68
+ activity: string;
69
+ activity_data?: number | null;
70
+ unit_of_measurement?: string | null;
71
+ emission_factor: number;
72
+ emission_factor_unit: string;
73
+ actual_emission_tonnes?: number | null;
74
+ erp_outcome?: string | null;
75
+ notes?: string | null;
76
+ source?: string | null;
77
+ is_active: boolean;
78
+ createdAt: string;
79
+ updatedAt: string;
80
+ publishedAt: string;
81
+ requiresMassData?: boolean;
82
+ }
83
+ interface VehicleEmissionAttributes {
84
+ category: string;
85
+ vehicle: string;
86
+ mode: string;
87
+ type_of_vehicle: string;
88
+ category_specification?: string | null;
89
+ fuel_type: string;
90
+ vehicle_specific_emission_factor: number;
91
+ unit: string;
92
+ total_distance_travelled_km?: number | null;
93
+ total_emissions?: number | null;
94
+ engine_capacity: string;
95
+ year_of_manufacture?: number | null;
96
+ fuel_efficiency?: number | null;
97
+ occupancy_rate?: number | null;
98
+ notes?: string | null;
99
+ source?: string | null;
100
+ is_active: boolean;
101
+ createdAt: string;
102
+ updatedAt: string;
103
+ publishedAt: string;
104
+ requiresMassData?: boolean;
105
+ }
106
+ type TransportationEmissionsResponse = StrapiResponse<TransportationEmissionAttributes>;
107
+ type BusinessTravelEmissionsResponse = StrapiResponse<BusinessTravelEmissionAttributes>;
108
+ type EmissionsDataResponse = StrapiResponse<EmissionsDataAttributes>;
109
+ type VehicleEmissionsResponse = StrapiResponse<VehicleEmissionAttributes>;
110
+ interface ProcessedEmissionItem {
111
+ id: string;
112
+ item: string;
113
+ category: string;
114
+ subCategory?: string;
115
+ mode?: string;
116
+ type?: string;
117
+ vehicle?: string;
118
+ fuelType?: string;
119
+ engineCapacity?: string;
120
+ unit: string;
121
+ emissionFactor: number;
122
+ requiresMassData?: boolean;
123
+ process?: string;
124
+ activity?: string;
125
+ activityData?: number;
126
+ dataSource: "api";
127
+ }
128
+ interface EditableItem extends ProcessedEmissionItem {
129
+ isEditing: boolean;
130
+ tempActivityData?: number;
131
+ }
132
+ interface ProcessedEmissionCategory {
133
+ category: string;
134
+ displayName: string;
135
+ items: ProcessedEmissionItem[];
136
+ totalItems: number;
137
+ }
138
+ interface ApiEndpointConfig {
139
+ endpoint: string;
140
+ displayName: string;
141
+ scope3Category: string;
142
+ icon: any;
143
+ unit: string;
144
+ description: string;
145
+ mappingFunction: (data: StrapiItem<any>[]) => ProcessedEmissionItem[];
146
+ }
147
+ interface IndustryConfig$1 {
148
+ industry: string;
149
+ displayName: string;
150
+ apiEndpoints: ApiEndpointConfig[];
151
+ }
152
+ interface Bill {
153
+ _id?: string;
154
+ user?: string;
155
+ plant?: string;
156
+ category: string;
157
+ year: number;
158
+ month: number;
159
+ amount: string;
160
+ billUrl: string;
161
+ subCategory: string;
162
+ type: string;
163
+ nestedSubCategory: string;
164
+ amountCalculated: number;
165
+ multiplicationFactor: number;
166
+ massData?: number;
167
+ config?: {
168
+ type?: string;
169
+ id?: string;
170
+ name?: string;
171
+ };
172
+ }
173
+ interface Meta {
174
+ pagination: {
175
+ page: number;
176
+ pageSize: number;
177
+ pageCount: number;
178
+ total: number;
179
+ };
180
+ }
181
+ interface Pagination {
182
+ page: number;
183
+ pageSize: number;
184
+ pageCount: number;
185
+ total: number;
186
+ }
187
+ type BusinessTravelEmission = StrapiItem<BusinessTravelEmissionAttributes>;
188
+ type TransportationEmission = StrapiItem<TransportationEmissionAttributes>;
189
+ type VehicleEmission = StrapiItem<VehicleEmissionAttributes>;
190
+ interface ProcessedScope3Data {
191
+ name: string;
192
+ displayName: string;
193
+ icon: any;
194
+ scope: string;
195
+ unit: string;
196
+ subProducts: ProcessedEmissionCategory[];
197
+ desc: string;
198
+ apiEndpoint: string;
199
+ }
200
+
201
+ /**
202
+ * Carbon Intensity API Type Definitions for Frontend Integration
203
+ */
204
+ interface BaseRequest {
205
+ industryType: string;
206
+ year: number;
207
+ month?: number;
208
+ plant?: string;
209
+ }
210
+ interface Emissions$j {
211
+ scope1: number;
212
+ scope2: number;
213
+ scope3: number;
214
+ total: number;
215
+ }
216
+ interface BillsAnalyzed$1 {
217
+ scope1: number;
218
+ scope2: number;
219
+ scope3: number;
220
+ total: number;
221
+ }
222
+ interface Calculations$1 {
223
+ timestamp: string;
224
+ methodology: string;
225
+ dataSource: string;
226
+ }
227
+ interface SteelRequest extends BaseRequest {
228
+ industryType: "steel";
229
+ revenue: number;
230
+ steel_production: number;
231
+ }
232
+ interface PharmaRequest extends BaseRequest {
233
+ industryType: "pharma";
234
+ area: number;
235
+ production: number;
236
+ }
237
+ interface ChemicalRequest extends BaseRequest {
238
+ industryType: "chemical";
239
+ production: number;
240
+ }
241
+ interface AluminiumRequest extends BaseRequest {
242
+ industryType: "aluminium";
243
+ production: number;
244
+ }
245
+ interface AlloyRequest extends BaseRequest {
246
+ industryType: "alloy";
247
+ area: number;
248
+ production: number;
249
+ }
250
+ interface TextileRequest extends BaseRequest {
251
+ industryType: "textile";
252
+ area: number;
253
+ production: number;
254
+ }
255
+ interface AutomobileRequest extends BaseRequest {
256
+ industryType: "automobile";
257
+ annual_production_units: number;
258
+ }
259
+ interface AviationRequest extends BaseRequest {
260
+ industryType: "aviation";
261
+ area: number;
262
+ }
263
+ interface ShippingRequest extends BaseRequest {
264
+ industryType: "shipping";
265
+ area: number;
266
+ employees: number;
267
+ }
268
+ interface FoodBeveragesRequest extends BaseRequest {
269
+ industryType: "food_beverages";
270
+ production_facility_area: number;
271
+ production: number;
272
+ }
273
+ interface HospitalityRequest extends BaseRequest {
274
+ industryType: "hospitality";
275
+ built_up_area: number;
276
+ }
277
+ interface LogisticsRequest extends BaseRequest {
278
+ industryType: "logistics";
279
+ warehouse_area: number;
280
+ }
281
+ interface ManufacturingRequest extends BaseRequest {
282
+ industryType: "manufacturing";
283
+ manufacturing_facility_area: number;
284
+ annual_production: number;
285
+ }
286
+ interface MetalEnergyRequest extends BaseRequest {
287
+ industryType: "metal_energy";
288
+ power_generated: number;
289
+ annual_production: number;
290
+ }
291
+ interface PackagingRequest extends BaseRequest {
292
+ industryType: "packaging";
293
+ packaging_units: number;
294
+ }
295
+ interface PetrochemicalRequest extends BaseRequest {
296
+ industryType: "petrochemical";
297
+ chemical_production: number;
298
+ }
299
+ interface RealEstateRequest extends BaseRequest {
300
+ industryType: "real_estate";
301
+ project_site_area: number;
302
+ }
303
+ interface TelecommunicationRequest extends BaseRequest {
304
+ industryType: "telecommunication";
305
+ project_site_area: number;
306
+ }
307
+ interface UtilitiesRequest extends BaseRequest {
308
+ industryType: "utilities";
309
+ total_area: number;
310
+ annual_production: number;
311
+ }
312
+ type CarbonIntensityRequest = SteelRequest | PharmaRequest | ChemicalRequest | AluminiumRequest | AlloyRequest | TextileRequest | AutomobileRequest | AviationRequest | ShippingRequest | FoodBeveragesRequest | HospitalityRequest | LogisticsRequest | ManufacturingRequest | MetalEnergyRequest | PackagingRequest | PetrochemicalRequest | RealEstateRequest | TelecommunicationRequest | UtilitiesRequest;
313
+ interface CarbonIntensityResponse {
314
+ industryType: string;
315
+ inputData: Record<string, number>;
316
+ filters: {
317
+ year: number;
318
+ month: number | null;
319
+ plant: string | null;
320
+ };
321
+ emissions: Emissions$j;
322
+ billsAnalyzed: BillsAnalyzed$1;
323
+ intensityCalculations: Record<string, number>;
324
+ units: Record<string, string>;
325
+ calculations: Calculations$1;
326
+ }
327
+ interface ErrorResponse {
328
+ success: false;
329
+ message: string;
330
+ data?: {
331
+ year?: number;
332
+ month?: number | null;
333
+ plant?: string | null;
334
+ billsFound?: {
335
+ scope1: number;
336
+ scope2: number;
337
+ scope3: number;
338
+ total: number;
339
+ };
340
+ };
341
+ error?: string;
342
+ }
343
+ type IndustryType = "steel" | "pharma" | "chemical" | "aluminium" | "alloy" | "textile" | "automobile" | "aviation" | "shipping" | "food_beverages" | "hospitality" | "logistics" | "manufacturing" | "metal_energy" | "packaging" | "petrochemical" | "real_estate" | "telecommunication" | "utilities";
344
+ type ApiResponse<T = CarbonIntensityResponse> = T | ErrorResponse;
345
+ interface FormData {
346
+ industryType: IndustryType;
347
+ year: number;
348
+ month?: number;
349
+ plant?: string;
350
+ [key: string]: string | number | undefined;
351
+ }
352
+ interface ValidationError {
353
+ field: string;
354
+ message: string;
355
+ }
356
+ interface FormValidationResult {
357
+ isValid: boolean;
358
+ errors: ValidationError[];
359
+ }
360
+ interface IndustryConfig {
361
+ name: IndustryType;
362
+ displayName: string;
363
+ requiredFields: string[];
364
+ fieldLabels: Record<string, string>;
365
+ fieldUnits: Record<string, string>;
366
+ fieldTypes: Record<string, "number" | "text">;
367
+ placeholders: Record<string, string>;
368
+ }
369
+ declare const FRONTEND_INDUSTRY_CONFIGS: Record<IndustryType, IndustryConfig>;
370
+ declare const API_ENDPOINTS: {
371
+ readonly CALCULATE: "/carbon-intensity/calculate";
372
+ readonly INDUSTRIES: "/carbon-intensity/industries";
373
+ };
374
+ declare const HTTP_STATUS: {
375
+ readonly OK: 200;
376
+ readonly BAD_REQUEST: 400;
377
+ readonly UNAUTHORIZED: 401;
378
+ readonly FORBIDDEN: 403;
379
+ readonly NOT_FOUND: 404;
380
+ readonly INTERNAL_SERVER_ERROR: 500;
381
+ };
382
+
383
+ interface IntensityValue {
384
+ value: number;
385
+ unit: string;
386
+ formula: string;
387
+ }
388
+ interface EmissionData$1 {
389
+ scope1: number;
390
+ scope2: number;
391
+ scope3: number;
392
+ total: number;
393
+ }
394
+ interface BillsAnalyzed {
395
+ scope1: number;
396
+ scope2: number;
397
+ scope3: number;
398
+ total: number;
399
+ }
400
+ interface Calculations {
401
+ timestamp: string;
402
+ methodology: string;
403
+ dataSource: string;
404
+ }
405
+ interface BaseResponse {
406
+ success: true;
407
+ data: {
408
+ industryType: string;
409
+ inputData: Record<string, number>;
410
+ filters: {
411
+ year: number;
412
+ month: number | null;
413
+ plant: string | null;
414
+ };
415
+ emissions: EmissionData$1;
416
+ billsAnalyzed: BillsAnalyzed;
417
+ calculations: Calculations;
418
+ };
419
+ }
420
+ interface SteelResponse extends BaseResponse {
421
+ data: BaseResponse["data"] & {
422
+ industryType: "steel";
423
+ inputData: {
424
+ revenue: number;
425
+ steel_production: number;
426
+ };
427
+ intensities: {
428
+ scope1: {
429
+ revenue: IntensityValue;
430
+ steel_production: IntensityValue;
431
+ };
432
+ scope2: {
433
+ revenue: IntensityValue;
434
+ steel_production: IntensityValue;
435
+ };
436
+ scope3: {
437
+ revenue: IntensityValue;
438
+ steel_production: IntensityValue;
439
+ };
440
+ total: {
441
+ revenue: IntensityValue;
442
+ steel_production: IntensityValue;
443
+ };
444
+ };
445
+ };
446
+ }
447
+ interface PharmaResponse extends BaseResponse {
448
+ data: BaseResponse["data"] & {
449
+ industryType: "pharma";
450
+ inputData: {
451
+ area: number;
452
+ production: number;
453
+ };
454
+ intensities: {
455
+ scope1: {
456
+ area: IntensityValue;
457
+ production: IntensityValue;
458
+ };
459
+ scope2: {
460
+ area: IntensityValue;
461
+ production: IntensityValue;
462
+ };
463
+ scope3: {
464
+ area: IntensityValue;
465
+ production: IntensityValue;
466
+ };
467
+ total: {
468
+ area: IntensityValue;
469
+ production: IntensityValue;
470
+ };
471
+ };
472
+ };
473
+ }
474
+ interface ChemicalResponse extends BaseResponse {
475
+ data: BaseResponse["data"] & {
476
+ industryType: "chemical";
477
+ inputData: {
478
+ production: number;
479
+ };
480
+ intensities: {
481
+ scope1: {
482
+ production: IntensityValue;
483
+ };
484
+ scope2: {
485
+ production: IntensityValue;
486
+ };
487
+ scope3: {
488
+ production: IntensityValue;
489
+ };
490
+ total: {
491
+ production: IntensityValue;
492
+ };
493
+ };
494
+ };
495
+ }
496
+ interface AluminiumResponse extends BaseResponse {
497
+ data: BaseResponse["data"] & {
498
+ industryType: "aluminium";
499
+ inputData: {
500
+ production: number;
501
+ };
502
+ intensities: {
503
+ scope1: {
504
+ production: IntensityValue;
505
+ };
506
+ scope2: {
507
+ production: IntensityValue;
508
+ };
509
+ scope3: {
510
+ production: IntensityValue;
511
+ };
512
+ total: {
513
+ production: IntensityValue;
514
+ };
515
+ };
516
+ };
517
+ }
518
+ interface AlloyResponse extends BaseResponse {
519
+ data: BaseResponse["data"] & {
520
+ industryType: "alloy";
521
+ inputData: {
522
+ area: number;
523
+ production: number;
524
+ };
525
+ intensities: {
526
+ scope1: {
527
+ area: IntensityValue;
528
+ production: IntensityValue;
529
+ };
530
+ scope2: {
531
+ area: IntensityValue;
532
+ production: IntensityValue;
533
+ };
534
+ scope3: {
535
+ area: IntensityValue;
536
+ production: IntensityValue;
537
+ };
538
+ total: {
539
+ area: IntensityValue;
540
+ production: IntensityValue;
541
+ };
542
+ };
543
+ };
544
+ }
545
+ interface TextileResponse extends BaseResponse {
546
+ data: BaseResponse["data"] & {
547
+ industryType: "textile";
548
+ inputData: {
549
+ area: number;
550
+ production: number;
551
+ };
552
+ intensities: {
553
+ scope1: {
554
+ area: IntensityValue;
555
+ production: IntensityValue;
556
+ };
557
+ scope2: {
558
+ area: IntensityValue;
559
+ production: IntensityValue;
560
+ };
561
+ scope3: {
562
+ area: IntensityValue;
563
+ production: IntensityValue;
564
+ };
565
+ total: {
566
+ area: IntensityValue;
567
+ production: IntensityValue;
568
+ };
569
+ };
570
+ };
571
+ }
572
+ interface AutomobileResponse extends BaseResponse {
573
+ data: BaseResponse["data"] & {
574
+ industryType: "automobile";
575
+ inputData: {
576
+ annual_production_units: number;
577
+ };
578
+ intensities: {
579
+ scope1: {
580
+ annual_production_units: IntensityValue;
581
+ };
582
+ scope2: {
583
+ annual_production_units: IntensityValue;
584
+ };
585
+ scope3: {
586
+ annual_production_units: IntensityValue;
587
+ };
588
+ total: {
589
+ annual_production_units: IntensityValue;
590
+ };
591
+ };
592
+ };
593
+ }
594
+ interface AviationResponse extends BaseResponse {
595
+ data: BaseResponse["data"] & {
596
+ industryType: "aviation";
597
+ inputData: {
598
+ area: number;
599
+ };
600
+ intensities: {
601
+ scope1: {
602
+ area: IntensityValue;
603
+ };
604
+ scope2: {
605
+ area: IntensityValue;
606
+ };
607
+ scope3: {
608
+ area: IntensityValue;
609
+ };
610
+ total: {
611
+ area: IntensityValue;
612
+ };
613
+ };
614
+ };
615
+ }
616
+ interface ShippingResponse extends BaseResponse {
617
+ data: BaseResponse["data"] & {
618
+ industryType: "shipping";
619
+ inputData: {
620
+ area: number;
621
+ employees: number;
622
+ };
623
+ intensities: {
624
+ scope1: {
625
+ area: IntensityValue;
626
+ employees: IntensityValue;
627
+ };
628
+ scope2: {
629
+ area: IntensityValue;
630
+ employees: IntensityValue;
631
+ };
632
+ scope3: {
633
+ area: IntensityValue;
634
+ employees: IntensityValue;
635
+ };
636
+ total: {
637
+ area: IntensityValue;
638
+ employees: IntensityValue;
639
+ };
640
+ };
641
+ };
642
+ }
643
+ interface FoodBeveragesResponse extends BaseResponse {
644
+ data: BaseResponse["data"] & {
645
+ industryType: "food_beverages";
646
+ inputData: {
647
+ production_facility_area: number;
648
+ production: number;
649
+ };
650
+ intensities: {
651
+ scope1: {
652
+ production_facility_area: IntensityValue;
653
+ production: IntensityValue;
654
+ };
655
+ scope2: {
656
+ production_facility_area: IntensityValue;
657
+ production: IntensityValue;
658
+ };
659
+ scope3: {
660
+ production_facility_area: IntensityValue;
661
+ production: IntensityValue;
662
+ };
663
+ total: {
664
+ production_facility_area: IntensityValue;
665
+ production: IntensityValue;
666
+ };
667
+ };
668
+ };
669
+ }
670
+ interface HospitalityResponse extends BaseResponse {
671
+ data: BaseResponse["data"] & {
672
+ industryType: "hospitality";
673
+ inputData: {
674
+ built_up_area: number;
675
+ };
676
+ intensities: {
677
+ scope1: {
678
+ built_up_area: IntensityValue;
679
+ };
680
+ scope2: {
681
+ built_up_area: IntensityValue;
682
+ };
683
+ scope3: {
684
+ built_up_area: IntensityValue;
685
+ };
686
+ total: {
687
+ built_up_area: IntensityValue;
688
+ };
689
+ };
690
+ };
691
+ }
692
+ interface LogisticsResponse extends BaseResponse {
693
+ data: BaseResponse["data"] & {
694
+ industryType: "logistics";
695
+ inputData: {
696
+ warehouse_area: number;
697
+ };
698
+ intensities: {
699
+ scope1: {
700
+ warehouse_area: IntensityValue;
701
+ };
702
+ scope2: {
703
+ warehouse_area: IntensityValue;
704
+ };
705
+ scope3: {
706
+ warehouse_area: IntensityValue;
707
+ };
708
+ total: {
709
+ warehouse_area: IntensityValue;
710
+ };
711
+ };
712
+ };
713
+ }
714
+ interface ManufacturingResponse extends BaseResponse {
715
+ data: BaseResponse["data"] & {
716
+ industryType: "manufacturing";
717
+ inputData: {
718
+ manufacturing_facility_area: number;
719
+ annual_production: number;
720
+ };
721
+ intensities: {
722
+ scope1: {
723
+ manufacturing_facility_area: IntensityValue;
724
+ annual_production: IntensityValue;
725
+ };
726
+ scope2: {
727
+ manufacturing_facility_area: IntensityValue;
728
+ annual_production: IntensityValue;
729
+ };
730
+ scope3: {
731
+ manufacturing_facility_area: IntensityValue;
732
+ annual_production: IntensityValue;
733
+ };
734
+ total: {
735
+ manufacturing_facility_area: IntensityValue;
736
+ annual_production: IntensityValue;
737
+ };
738
+ };
739
+ };
740
+ }
741
+ interface MetalEnergyResponse extends BaseResponse {
742
+ data: BaseResponse["data"] & {
743
+ industryType: "metal_energy";
744
+ inputData: {
745
+ power_generated: number;
746
+ annual_production: number;
747
+ };
748
+ intensities: {
749
+ scope1: {
750
+ power_generated: IntensityValue;
751
+ annual_production: IntensityValue;
752
+ };
753
+ scope2: {
754
+ power_generated: IntensityValue;
755
+ annual_production: IntensityValue;
756
+ };
757
+ scope3: {
758
+ power_generated: IntensityValue;
759
+ annual_production: IntensityValue;
760
+ };
761
+ total: {
762
+ power_generated: IntensityValue;
763
+ annual_production: IntensityValue;
764
+ };
765
+ };
766
+ };
767
+ }
768
+ interface PackagingResponse extends BaseResponse {
769
+ data: BaseResponse["data"] & {
770
+ industryType: "packaging";
771
+ inputData: {
772
+ packaging_units: number;
773
+ };
774
+ intensities: {
775
+ scope1: {
776
+ packaging_units: IntensityValue;
777
+ };
778
+ scope2: {
779
+ packaging_units: IntensityValue;
780
+ };
781
+ scope3: {
782
+ packaging_units: IntensityValue;
783
+ };
784
+ total: {
785
+ packaging_units: IntensityValue;
786
+ };
787
+ };
788
+ };
789
+ }
790
+ interface PetrochemicalResponse extends BaseResponse {
791
+ data: BaseResponse["data"] & {
792
+ industryType: "petrochemical";
793
+ inputData: {
794
+ chemical_production: number;
795
+ };
796
+ intensities: {
797
+ scope1: {
798
+ chemical_production: IntensityValue;
799
+ };
800
+ scope2: {
801
+ chemical_production: IntensityValue;
802
+ };
803
+ scope3: {
804
+ chemical_production: IntensityValue;
805
+ };
806
+ total: {
807
+ chemical_production: IntensityValue;
808
+ };
809
+ };
810
+ };
811
+ }
812
+ interface RealEstateResponse extends BaseResponse {
813
+ data: BaseResponse["data"] & {
814
+ industryType: "real_estate";
815
+ inputData: {
816
+ project_site_area: number;
817
+ };
818
+ intensities: {
819
+ scope1: {
820
+ project_site_area: IntensityValue;
821
+ };
822
+ scope2: {
823
+ project_site_area: IntensityValue;
824
+ };
825
+ scope3: {
826
+ project_site_area: IntensityValue;
827
+ };
828
+ total: {
829
+ project_site_area: IntensityValue;
830
+ };
831
+ };
832
+ };
833
+ }
834
+ interface TelecommunicationResponse extends BaseResponse {
835
+ data: BaseResponse["data"] & {
836
+ industryType: "telecommunication";
837
+ inputData: {
838
+ project_site_area: number;
839
+ };
840
+ intensities: {
841
+ scope1: {
842
+ project_site_area: IntensityValue;
843
+ };
844
+ scope2: {
845
+ project_site_area: IntensityValue;
846
+ };
847
+ scope3: {
848
+ project_site_area: IntensityValue;
849
+ };
850
+ total: {
851
+ project_site_area: IntensityValue;
852
+ };
853
+ };
854
+ };
855
+ }
856
+ interface UtilitiesResponse extends BaseResponse {
857
+ data: BaseResponse["data"] & {
858
+ industryType: "utilities";
859
+ inputData: {
860
+ total_area: number;
861
+ annual_production: number;
862
+ };
863
+ intensities: {
864
+ scope1: {
865
+ total_area: IntensityValue;
866
+ annual_production: IntensityValue;
867
+ };
868
+ scope2: {
869
+ total_area: IntensityValue;
870
+ annual_production: IntensityValue;
871
+ };
872
+ scope3: {
873
+ total_area: IntensityValue;
874
+ annual_production: IntensityValue;
875
+ };
876
+ total: {
877
+ total_area: IntensityValue;
878
+ annual_production: IntensityValue;
879
+ };
880
+ };
881
+ };
882
+ }
883
+ type DetailedCarbonIntensityResponse = SteelResponse | PharmaResponse | ChemicalResponse | AluminiumResponse | AlloyResponse | TextileResponse | AutomobileResponse | AviationResponse | ShippingResponse | FoodBeveragesResponse | HospitalityResponse | LogisticsResponse | ManufacturingResponse | MetalEnergyResponse | PackagingResponse | PetrochemicalResponse | RealEstateResponse | TelecommunicationResponse | UtilitiesResponse;
884
+ declare function hasIntensities(response: any): response is DetailedCarbonIntensityResponse;
885
+ declare const INTENSITY_FIELD_LABELS: Record<string, string>;
886
+
887
+ declare const INDUSTRIES_CONFIG: {
888
+ [key: string]: {
889
+ scope1: Scope[];
890
+ scope2: Scope[];
891
+ scope3: Scope3Item$2[];
892
+ additionalScopes?: {
893
+ [key: string]: Array<{
894
+ type: "scope1" | "scope2" | "scope3";
895
+ route: string;
896
+ name: string;
897
+ scope: Scope | Scope3Item$2;
898
+ }>;
899
+ };
900
+ };
901
+ };
902
+ declare const getUserNameWaterManagementConfig: (username?: string, defaultWaterManagement?: any) => any;
903
+ declare const getIndustryConfig$1: (industry: string, username?: string) => {
904
+ scope1: Scope[];
905
+ scope2: Scope[];
906
+ scope3: Scope3Item$2[];
907
+ additionalScopes?: {
908
+ [key: string]: Array<{
909
+ type: "scope1" | "scope2" | "scope3";
910
+ route: string;
911
+ name: string;
912
+ scope: Scope | Scope3Item$2;
913
+ }>;
914
+ };
915
+ };
916
+ type Product = {
917
+ name: string;
918
+ unit: string;
919
+ type: string;
920
+ calorificValue: number;
921
+ emissionFactor: number;
922
+ energyConversionFactor?: number;
923
+ };
924
+ type Scope = {
925
+ name: string;
926
+ icon: React.ComponentType<any>;
927
+ scope: string;
928
+ unit: string;
929
+ subProducts: Product[];
930
+ desc: string;
931
+ group?: string;
932
+ className?: string;
933
+ };
934
+ type EmissionItem$k = {
935
+ item: string;
936
+ emissionFactor: number;
937
+ unit: string;
938
+ };
939
+ type EquipmentCategory$6 = {
940
+ category: string;
941
+ items: EmissionItem$k[];
942
+ };
943
+ type Emissions$i = EquipmentCategory$6[];
944
+ type Scope3Item$2 = {
945
+ name: string;
946
+ displayName: string;
947
+ icon: any;
948
+ scope: string;
949
+ unit: string;
950
+ subProducts: Emissions$i;
951
+ desc: string;
952
+ };
953
+
954
+ declare const INDUSTRY_MAPPING: Record<string, IndustryType>;
955
+ declare const getApiIndustryType: (erpIndustry: string) => IndustryType;
956
+
957
+ /**
958
+ * Format emission values to handle small numbers properly while keeping UI clean
959
+ */
960
+ declare const formatEmissionValue: (value: number, options?: {
961
+ unit?: string;
962
+ showUnit?: boolean;
963
+ forceDecimals?: number;
964
+ }) => string;
965
+ /**
966
+ * Format emission values specifically for monthly display (show small values properly)
967
+ */
968
+ declare const formatMonthlyEmission: (value: number) => string;
969
+ /**
970
+ * Format percentage values
971
+ */
972
+ declare const formatPercentage: (value: number) => string;
973
+ /**
974
+ * Format large emission values for KPI cards
975
+ */
976
+ declare const formatKPIEmission: (value: number) => string;
977
+
978
+ interface BillFilterOptions {
979
+ category?: string;
980
+ year?: number;
981
+ month?: number;
982
+ type?: string;
983
+ subCategory?: string;
984
+ nestedSubCategory?: string;
985
+ plant?: string;
986
+ }
987
+ interface BillMatchingConfig {
988
+ matchBy: "exact" | "contains" | "startsWith";
989
+ caseSensitive: boolean;
990
+ fields: {
991
+ category: boolean;
992
+ subCategory: boolean;
993
+ nestedSubCategory: boolean;
994
+ type: boolean;
995
+ };
996
+ }
997
+ declare class BillManager {
998
+ private bills;
999
+ private matchingConfig;
1000
+ constructor(bills: Bill[], matchingConfig?: BillMatchingConfig);
1001
+ filterBills(options: BillFilterOptions): Bill[];
1002
+ private matchField;
1003
+ findBillsForEmissionItem(emissionItem: ProcessedEmissionItem, category: string, year: number, month: number, scope: string, plantId?: string): Bill[];
1004
+ createBill(userId: string, category: string, activityData: number, emissionItem: ProcessedEmissionItem, year: number, month: number, scope: string, industry?: string, vendorConfig?: any, massData?: number, plantId?: string): Omit<Bill, "_id">;
1005
+ private getCalculationConfig;
1006
+ private calculateEmissions;
1007
+ private getMultiplicationFactor;
1008
+ calculateTotalEmissions(filterOptions: BillFilterOptions): number;
1009
+ getMonthlyEmissions(category: string, year: number, scope: string): number[];
1010
+ updateBills(newBills: Bill[]): void;
1011
+ }
1012
+
1013
+ interface EmissionSource {
1014
+ id: string;
1015
+ itemName: string;
1016
+ category: string;
1017
+ subcategory: string;
1018
+ emissionFactor: number;
1019
+ unit: string;
1020
+ totalEmissions: number;
1021
+ amount: string;
1022
+ activityData: number;
1023
+ isEditing: boolean;
1024
+ tempActivityData?: number;
1025
+ bill?: Bill;
1026
+ scope: string;
1027
+ requiresMassData?: boolean;
1028
+ massData?: number;
1029
+ }
1030
+ interface ScopeProduct {
1031
+ name: string;
1032
+ displayName?: string;
1033
+ type?: string;
1034
+ unit?: string;
1035
+ calorificValue?: number;
1036
+ emissionFactor?: number;
1037
+ items?: Array<{
1038
+ item: string;
1039
+ emissionFactor: number;
1040
+ unit: string;
1041
+ requiresMassData?: boolean;
1042
+ }>;
1043
+ }
1044
+ interface ScopeConfig {
1045
+ name: string;
1046
+ displayName?: string;
1047
+ scope: string;
1048
+ icon?: any;
1049
+ unit?: string;
1050
+ subProducts?: ScopeProduct[];
1051
+ }
1052
+ declare class EmissionSourceGenerator {
1053
+ private billManager;
1054
+ constructor(billManager: BillManager);
1055
+ generateFromScopeConfig(scopeConfig: ScopeConfig, year: number, selectedMonth: string, monthMapping: {
1056
+ [key: string]: number;
1057
+ }): EmissionSource[];
1058
+ generateFromApiData(apiCategories: ProcessedEmissionCategory[], scopeConfig: ScopeConfig, year: number, selectedMonth: string, monthMapping: {
1059
+ [key: string]: number;
1060
+ }): EmissionSource[];
1061
+ generateFromNestedScopeConfig(scopeConfig: ScopeConfig, year: number, selectedMonth: string, monthMapping: {
1062
+ [key: string]: number;
1063
+ }): EmissionSource[];
1064
+ updateBills(newBills: Bill[]): void;
1065
+ }
1066
+ declare const createMonthMapping: () => {
1067
+ [key: string]: number;
1068
+ };
1069
+ declare const createCapitalizedMonthMapping: () => {
1070
+ [key: string]: number;
1071
+ };
1072
+ declare const createEmissionSourceGenerator: (billManager: BillManager) => EmissionSourceGenerator;
1073
+
1074
+ /**
1075
+ * UI Features Configuration System
1076
+ *
1077
+ * This file defines all UI features and components that can be configured per user.
1078
+ * By default, all features are enabled (true).
1079
+ * To disable features for specific users, add their username to USER_OVERRIDES with the feature set to false.
1080
+ *
1081
+ * Usage:
1082
+ * - isFeatureEnabled('DASHBOARD_CARDS.GHG_INTENSITY', username) -> checks if feature is enabled for user
1083
+ * - getUserFeatures(username) -> gets all features for a specific user
1084
+ */
1085
+ declare const UI_FEATURES: {
1086
+ readonly DASHBOARD_CARDS: {
1087
+ readonly SCOPE_1: "dashboard.cards.scope1";
1088
+ readonly SCOPE_2: "dashboard.cards.scope2";
1089
+ readonly SCOPE_3: "dashboard.cards.scope3";
1090
+ readonly WATER_MANAGEMENT: "dashboard.cards.waterManagement";
1091
+ readonly GHG_INTENSITY: "dashboard.cards.ghgIntensity";
1092
+ readonly GENERAL_INFORMATION: "dashboard.cards.generalInformation";
1093
+ readonly BEE_SHEET: "dashboard.cards.beeSheet";
1094
+ readonly CCTS_KPI: "dashboard.cards.cctsKpi";
1095
+ readonly CCTS_LEVERS: "dashboard.cards.cctsLevers";
1096
+ readonly GHG_REPORTS: "dashboard.cards.ghgReports";
1097
+ readonly CCTS_REPORTS: "dashboard.cards.cctsReports";
1098
+ };
1099
+ readonly DASHBOARD_SECTIONS: {
1100
+ readonly GHG_SECTION: "dashboard.sections.ghg";
1101
+ readonly CCTS_SECTION: "dashboard.sections.ccts";
1102
+ readonly REPORTS_SECTION: "dashboard.sections.reports";
1103
+ readonly ANALYTICS_SECTION: "dashboard.sections.analytics";
1104
+ };
1105
+ readonly NAVIGATION: {
1106
+ readonly HOME_BUTTON: "navigation.homeButton";
1107
+ readonly RESET_DATA_BUTTON: "navigation.resetDataButton";
1108
+ readonly RESET_ALL_DATA_BUTTON: "navigation.resetAllDataButton";
1109
+ readonly ESG_MIS_BUTTON: "navigation.esgMisButton";
1110
+ readonly TICKETS_BUTTON: "navigation.ticketsButton";
1111
+ readonly LOGOUT_BUTTON: "navigation.logoutButton";
1112
+ readonly GLOBAL_SEARCH: "navigation.globalSearch";
1113
+ readonly PLANT_SELECTION: "navigation.plantSelection";
1114
+ readonly ADD_PLANT_BUTTON: "navigation.addPlantButton";
1115
+ readonly NOTIFICATION_BELL: "navigation.notificationBell";
1116
+ readonly COMPANY_PROFILE: "navigation.companyProfile";
1117
+ };
1118
+ readonly AI_FEATURES: {
1119
+ readonly FLOAT_CHAT: "ai.floatChat";
1120
+ readonly AI_AGENT_CHAT: "ai.agentChat";
1121
+ readonly AGENT_SELECTOR: "ai.agentSelector";
1122
+ readonly THREAD_MANAGEMENT: "ai.threadManagement";
1123
+ readonly TOOL_CALL_DISPLAY: "ai.toolCallDisplay";
1124
+ readonly CHAT_SETTINGS: "ai.chatSettings";
1125
+ readonly GHG_AI_ANALYTICS: "ai.ghgAnalytics";
1126
+ readonly CCTS_AI_ANALYTICS: "ai.cctsAnalytics";
1127
+ readonly PREDICTIVE_ANALYTICS: "ai.predictiveAnalytics";
1128
+ };
1129
+ readonly TABS: {
1130
+ readonly GHG_TAB_GROUP: "tabs.ghgGroup";
1131
+ readonly GHG_TAB: "tabs.ghgTab";
1132
+ readonly GHG_INTENSITY_TAB: "tabs.ghgIntensityTab";
1133
+ readonly CCTS_TAB_GROUP: "tabs.cctsGroup";
1134
+ readonly CCTS_TAB: "tabs.cctsTab";
1135
+ readonly CCTS_KPI_TAB: "tabs.cctsKpiTab";
1136
+ readonly CCTS_LEVERS_TAB: "tabs.cctsLeversTab";
1137
+ readonly REPORTING_AI_TAB_GROUP: "tabs.reportingAiGroup";
1138
+ readonly CCTS_AI_ANALYTICS_TAB: "tabs.cctsAiAnalyticsTab";
1139
+ readonly GHG_AI_ANALYTICS_TAB: "tabs.ghgAiAnalyticsTab";
1140
+ };
1141
+ readonly MODALS: {
1142
+ readonly DELETE_MODAL: "modals.deleteModal";
1143
+ readonly DELETE_YEAR_SELECTION: "modals.deleteYearSelection";
1144
+ readonly DELETE_SCOPE_SELECTION: "modals.deleteScopeSelection";
1145
+ readonly DELETE_CATEGORY_SELECTION: "modals.deleteCategorySelection";
1146
+ readonly RESET_DATA_MODAL: "modals.resetDataModal";
1147
+ readonly RESET_COMPLETE_DATA: "modals.resetCompleteData";
1148
+ readonly RESET_PLANT_DATA: "modals.resetPlantData";
1149
+ readonly RESET_CONFIRMATION: "modals.resetConfirmation";
1150
+ readonly UNSAVED_WARNINGS: "modals.unsavedWarnings";
1151
+ };
1152
+ readonly FORMS: {
1153
+ readonly GENERAL_INFO_FORM: "forms.generalInfo";
1154
+ readonly FORM_1: "forms.form1";
1155
+ readonly FORM_E2: "forms.formE2";
1156
+ readonly FORM_SB: "forms.formSb";
1157
+ readonly EMISSION_FACTOR_FORMS: "forms.emissionFactor";
1158
+ readonly NF_FORMS: "forms.nfForms";
1159
+ readonly SUMMARY_FORMS: "forms.summaryForms";
1160
+ readonly WATER_MANAGEMENT_FORMS: "forms.waterManagement";
1161
+ readonly PLANT_INFO_FORMS: "forms.plantInfo";
1162
+ readonly BASELINE_PARAMETERS: "forms.baselineParameters";
1163
+ };
1164
+ readonly UPLOADS: {
1165
+ readonly EXCEL_UPLOAD_CENTER: "uploads.excelUploadCenter";
1166
+ readonly FILE_UPLOAD_INTERFACE: "uploads.fileUploadInterface";
1167
+ readonly FILE_VALIDATION: "uploads.fileValidation";
1168
+ readonly SUBMIT_DELETE_ACTIONS: "uploads.submitDeleteActions";
1169
+ readonly DOCUMENT_UPLOAD: "uploads.documentUpload";
1170
+ readonly IMAGE_UPLOAD: "uploads.imageUpload";
1171
+ readonly BULK_UPLOAD: "uploads.bulkUpload";
1172
+ };
1173
+ readonly ANALYTICS: {
1174
+ readonly SCOPE_ANALYTICS_CHARTS: "analytics.scopeAnalyticsCharts";
1175
+ readonly SCOPE_1_CHARTS: "analytics.scope1Charts";
1176
+ readonly SCOPE_2_CHARTS: "analytics.scope2Charts";
1177
+ readonly SCOPE_3_CHARTS: "analytics.scope3Charts";
1178
+ readonly BAR_CHARTS: "analytics.barCharts";
1179
+ readonly DOUGHNUT_CHARTS: "analytics.doughnutCharts";
1180
+ readonly YEAR_OVER_YEAR_COMPARISON: "analytics.yearOverYearComparison";
1181
+ readonly CARBON_INTENSITY_CALCULATOR: "analytics.carbonIntensityCalculator";
1182
+ readonly INTENSITY_CALCULATIONS: "analytics.intensityCalculations";
1183
+ readonly COMPARISON_TOOLS: "analytics.comparisonTools";
1184
+ readonly MIS_DASHBOARD: "analytics.misDashboard";
1185
+ readonly KPI_DISPLAYS: "analytics.kpiDisplays";
1186
+ readonly EXPORT_FUNCTIONS: "analytics.exportFunctions";
1187
+ };
1188
+ readonly SEARCH: {
1189
+ readonly GLOBAL_SEARCH_INPUT: "search.globalSearchInput";
1190
+ readonly FILTER_OPTIONS: "search.filterOptions";
1191
+ readonly RESULTS_DISPLAY: "search.resultsDisplay";
1192
+ readonly ADVANCED_FILTERS: "search.advancedFilters";
1193
+ readonly INDUSTRY_SELECTION: "search.industrySelection";
1194
+ readonly YEAR_TYPE_SELECTION: "search.yearTypeSelection";
1195
+ readonly COUNTRY_SELECTION: "search.countrySelection";
1196
+ readonly PLANT_SELECTION_FILTER: "search.plantSelectionFilter";
1197
+ };
1198
+ readonly SUPPORT: {
1199
+ readonly TICKET_SYSTEM: "support.ticketSystem";
1200
+ readonly CREATE_TICKET_FORM: "support.createTicketForm";
1201
+ readonly TICKET_CATEGORIES: "support.ticketCategories";
1202
+ readonly STATUS_TRACKING: "support.statusTracking";
1203
+ readonly COMMENT_SYSTEM: "support.commentSystem";
1204
+ readonly INFO_BAR_COMPONENTS: "support.infoBarComponents";
1205
+ readonly HELP_TEXT_DISPLAY: "support.helpTextDisplay";
1206
+ readonly NOTIFICATION_MESSAGES: "support.notificationMessages";
1207
+ readonly STATUS_INDICATORS: "support.statusIndicators";
1208
+ };
1209
+ readonly AUTH: {
1210
+ readonly BUSINESS_LOGIN: "auth.businessLogin";
1211
+ readonly LOGIN_FORM_FIELDS: "auth.loginFormFields";
1212
+ readonly COMPANY_SELECTION: "auth.companySelection";
1213
+ readonly INDUSTRY_SELECTION: "auth.industrySelection";
1214
+ readonly AUTO_FILL_OPTIONS: "auth.autoFillOptions";
1215
+ readonly DASHBOARD_SELECTION: "auth.dashboardSelection";
1216
+ readonly ROLE_BASED_ROUTING: "auth.roleBasedRouting";
1217
+ };
1218
+ readonly GRI: {
1219
+ readonly GRI_DASHBOARD: "gri.dashboard";
1220
+ readonly GRI_MODULE_CARDS: "gri.moduleCards";
1221
+ readonly COMPLETION_TRACKING: "gri.completionTracking";
1222
+ readonly REPORT_GENERATION: "gri.reportGeneration";
1223
+ readonly BLOCKCHAIN_PUBLISHING: "gri.blockchainPublishing";
1224
+ readonly GRI_IMAGE_UPLOAD: "gri.imageUpload";
1225
+ };
1226
+ readonly WATER: {
1227
+ readonly WATER_KPI_DASHBOARD: "water.kpiDashboard";
1228
+ readonly MONTHLY_TRACKING: "water.monthlyTracking";
1229
+ readonly WATER_UPLOAD_INTERFACE: "water.uploadInterface";
1230
+ readonly WATER_USAGE_INPUT: "water.usageInput";
1231
+ };
1232
+ readonly CCTS: {
1233
+ readonly CCTS_FORMS: "ccts.forms";
1234
+ readonly BEE_SHEET_ACCESS: "ccts.beeSheetAccess";
1235
+ readonly CCTS_KPI_ACCESS: "ccts.kpiAccess";
1236
+ readonly CCTS_LEVERS_ACCESS: "ccts.leversAccess";
1237
+ readonly EMISSION_FACTORS_LIBRARY: "ccts.emissionFactorsLibrary";
1238
+ };
1239
+ readonly MICRO: {
1240
+ readonly DROPDOWN_COMPONENTS: "micro.dropdownComponents";
1241
+ readonly INPUT_COMPONENTS: "micro.inputComponents";
1242
+ readonly BUTTON_COMPONENTS: "micro.buttonComponents";
1243
+ readonly TABLE_COMPONENTS: "micro.tableComponents";
1244
+ readonly MODAL_COMPONENTS: "micro.modalComponents";
1245
+ readonly RADIO_COMPONENTS: "micro.radioComponents";
1246
+ readonly LABEL_COMPONENTS: "micro.labelComponents";
1247
+ };
1248
+ readonly ADVANCED: {
1249
+ readonly BULK_OPERATIONS: "advanced.bulkOperations";
1250
+ readonly DATA_EXPORT: "advanced.dataExport";
1251
+ readonly DATA_IMPORT: "advanced.dataImport";
1252
+ readonly ADVANCED_ANALYTICS: "advanced.analytics";
1253
+ readonly CUSTOM_REPORTS: "advanced.customReports";
1254
+ readonly API_ACCESS: "advanced.apiAccess";
1255
+ readonly INTEGRATION_FEATURES: "advanced.integrationFeatures";
1256
+ };
1257
+ };
1258
+
1259
+ type FieldType = "text" | "number" | "dropdown" | "multiDropdown" | "country";
1260
+ interface FieldOption {
1261
+ value: string;
1262
+ label: string;
1263
+ }
1264
+ interface FieldConfig {
1265
+ key: string;
1266
+ label: string;
1267
+ type: FieldType;
1268
+ placeholder?: string;
1269
+ options?: FieldOption[];
1270
+ required?: boolean;
1271
+ readonly?: boolean;
1272
+ validation?: {
1273
+ min?: number;
1274
+ max?: number;
1275
+ pattern?: string;
1276
+ };
1277
+ conditionalOn?: string;
1278
+ conditionalValue?: string;
1279
+ }
1280
+ interface IndustryFieldSection {
1281
+ title: string;
1282
+ description?: string;
1283
+ fields: FieldConfig[];
1284
+ gridCols?: number;
1285
+ conditionalOn?: string;
1286
+ conditionalValue?: string;
1287
+ }
1288
+ interface PlantNameConfig {
1289
+ label: string;
1290
+ placeholder: string;
1291
+ }
1292
+ interface IntensityCalculation {
1293
+ scope1AreaIntensity?: number;
1294
+ scope1ProductionIntensity?: number;
1295
+ scope2AreaIntensity?: number;
1296
+ scope2ProductionIntensity?: number;
1297
+ scope3AreaIntensity?: number;
1298
+ scope3ProductionIntensity?: number;
1299
+ totalAreaIntensity?: number;
1300
+ totalProductionIntensity?: number;
1301
+ }
1302
+ interface EmissionData {
1303
+ scope1Emissions: number;
1304
+ scope2Emissions: number;
1305
+ scope3Emissions: number;
1306
+ totalEmissions: number;
1307
+ }
1308
+ interface ProductionData {
1309
+ manufacturingFacilityArea: number;
1310
+ annualProductionVolume: number;
1311
+ }
1312
+ interface IndustryFieldConfig {
1313
+ plantNameConfig?: PlantNameConfig;
1314
+ plantInfoFields?: FieldConfig[];
1315
+ additionalSections?: IndustryFieldSection[];
1316
+ enableIntensityCalculations?: boolean;
1317
+ }
1318
+ declare const INDUSTRY_SPECIFIC_FIELDS: Record<string, IndustryFieldConfig>;
1319
+ declare const getIndustryFieldConfig: (industry: string) => IndustryFieldConfig;
1320
+ declare const getPlantNameConfig: (industry: string) => PlantNameConfig;
1321
+ declare const calculateIntensityMetrics: (emissionData: EmissionData, productionData: ProductionData) => IntensityCalculation;
1322
+ declare const formatIntensityValue: (value: number, unit: string) => string;
1323
+ declare const getIntensityFormulas: () => {
1324
+ scope1AreaFormula: string;
1325
+ scope1ProductionFormula: string;
1326
+ scope2AreaFormula: string;
1327
+ scope2ProductionFormula: string;
1328
+ scope3AreaFormula: string;
1329
+ scope3ProductionFormula: string;
1330
+ totalAreaFormula: string;
1331
+ totalProductionFormula: string;
1332
+ };
1333
+ declare const supportsIntensityCalculations: (industry: string) => boolean;
1334
+ interface UserData {
1335
+ buissnessID?: {
1336
+ industry?: string;
1337
+ };
1338
+ additionalConfig?: {
1339
+ erp?: {
1340
+ [industry: string]: any;
1341
+ };
1342
+ };
1343
+ }
1344
+ interface CarbonIntensityApiMapping {
1345
+ [apiField: string]: {
1346
+ userDataPath: string;
1347
+ transform?: (value: any) => number;
1348
+ fallback?: number;
1349
+ required?: boolean;
1350
+ fieldLabel?: string;
1351
+ industryFieldKey?: string;
1352
+ };
1353
+ }
1354
+ declare const CARBON_INTENSITY_FIELD_MAPPINGS: Record<string, CarbonIntensityApiMapping>;
1355
+ declare const getNestedValue: (obj: any, path: string) => any;
1356
+ declare const extractCarbonIntensityData: (userData: UserData, industry: string) => Record<string, number>;
1357
+ declare const mapIndustryToApiType: (industryName: string) => string;
1358
+ declare const getAvailableFieldsForIndustry: (userData: UserData, industry: string) => string[];
1359
+ declare const validateCarbonIntensityData: (userData: UserData, industry: string) => {
1360
+ isValid: boolean;
1361
+ missingFields: Array<{
1362
+ apiField: string;
1363
+ fieldLabel: string;
1364
+ industryFieldKey: string;
1365
+ userDataPath: string;
1366
+ }>;
1367
+ errors: string[];
1368
+ };
1369
+ declare const debugCarbonIntensityMapping: (userData: UserData, industry: string) => void;
1370
+
1371
+ interface MappingRules {
1372
+ includeIfCategoryContains?: string[];
1373
+ includeIfSubCategoryContains?: string[];
1374
+ includeIfModeContains?: string[];
1375
+ includeIfTypeContains?: string[];
1376
+ includeIfVehicleContains?: string[];
1377
+ includeIfProcessContains?: string[];
1378
+ includeIfActivityContains?: string[];
1379
+ excludeIfCategoryContains?: string[];
1380
+ }
1381
+ interface ApiSource {
1382
+ endpoint: string;
1383
+ categoryFilters: string[];
1384
+ subcategoryFilters: string[];
1385
+ }
1386
+ interface Scope3Config {
1387
+ name: string;
1388
+ displayName: string;
1389
+ icon: any;
1390
+ scope: string;
1391
+ unit: string;
1392
+ desc: string;
1393
+ apiSources: ApiSource[];
1394
+ mappingRules: MappingRules;
1395
+ }
1396
+ declare const API_SCOPE3_CEMENT_CONFIG: Scope3Config[];
1397
+ declare const categorizeApiItem: (item: any, apiEndpoint: string) => string | null;
1398
+ declare const getScope3ConfigByName: (name: string) => Scope3Config | undefined;
1399
+
1400
+ declare const CCTS_CALCINATION_PRODUCTS: {
1401
+ name: string;
1402
+ unit: string;
1403
+ emissionFactor: number;
1404
+ calorificValue: number;
1405
+ type: string;
1406
+ }[];
1407
+ declare const CCTS_FUEL_COMBUSTION_PRODUCTS: ({
1408
+ name: string;
1409
+ unit: string;
1410
+ emissionFactor: number;
1411
+ ncv: number;
1412
+ gcv: number;
1413
+ ncvUnit: string;
1414
+ boilerEfficiency: number;
1415
+ emissionFactorUnit: string;
1416
+ type: string;
1417
+ } | {
1418
+ name: string;
1419
+ unit: string;
1420
+ emissionFactor: number;
1421
+ boilerEfficiency: number;
1422
+ emissionFactorUnit: string;
1423
+ type: string;
1424
+ ncv?: undefined;
1425
+ gcv?: undefined;
1426
+ ncvUnit?: undefined;
1427
+ } | {
1428
+ name: string;
1429
+ unit: string;
1430
+ emissionFactor: number;
1431
+ boilerEfficiency: number;
1432
+ type: string;
1433
+ ncv?: undefined;
1434
+ gcv?: undefined;
1435
+ ncvUnit?: undefined;
1436
+ emissionFactorUnit?: undefined;
1437
+ })[];
1438
+ declare const CCTS_MINING_OPERATIONS_PRODUCTS: ({
1439
+ name: string;
1440
+ unit: string;
1441
+ emissionFactor: number;
1442
+ ncv: number;
1443
+ gcv: number;
1444
+ ncvUnit: string;
1445
+ emissionFactorUnit: string;
1446
+ type: string;
1447
+ boilerEfficiency?: undefined;
1448
+ } | {
1449
+ name: string;
1450
+ unit: string;
1451
+ emissionFactor: number;
1452
+ emissionFactorUnit: string;
1453
+ type: string;
1454
+ ncv?: undefined;
1455
+ gcv?: undefined;
1456
+ ncvUnit?: undefined;
1457
+ boilerEfficiency?: undefined;
1458
+ } | {
1459
+ name: string;
1460
+ unit: string;
1461
+ emissionFactor: number;
1462
+ ncv: number;
1463
+ gcv: number;
1464
+ ncvUnit: string;
1465
+ boilerEfficiency: number;
1466
+ emissionFactorUnit: string;
1467
+ type: string;
1468
+ })[];
1469
+ declare const CCTS_ONSITE_POWER_PRODUCTS: {
1470
+ name: string;
1471
+ unit: string;
1472
+ emissionFactor: number;
1473
+ ncv: number;
1474
+ gcv: number;
1475
+ ncvUnit: string;
1476
+ boilerEfficiency: number;
1477
+ emissionFactorUnit: string;
1478
+ type: string;
1479
+ }[];
1480
+ declare const CCTS_REFRIGERANTS: {
1481
+ name: string;
1482
+ unit: string;
1483
+ emissionFactor: number;
1484
+ ncv: number;
1485
+ gcv: number;
1486
+ ncvUnit: string;
1487
+ emissionFactorUnit: string;
1488
+ type: string;
1489
+ }[];
1490
+ declare const CCTS_FIRE_EXTINGUISHER_PRODUCTS: {
1491
+ name: string;
1492
+ unit: string;
1493
+ emissionFactor: number;
1494
+ emissionFactorUnit: string;
1495
+ type: string;
1496
+ }[];
1497
+ declare const CCTS_LPG_PRODUCTS: {
1498
+ name: string;
1499
+ unit: string;
1500
+ emissionFactor: number;
1501
+ ncv: number;
1502
+ gcv: number;
1503
+ ncvUnit: string;
1504
+ emissionFactorUnit: string;
1505
+ type: string;
1506
+ }[];
1507
+ declare const CCTS_SF6_PRODUCTS: {
1508
+ name: string;
1509
+ unit: string;
1510
+ emissionFactor: number;
1511
+ emissionFactorUnit: string;
1512
+ type: string;
1513
+ }[];
1514
+ declare const CCTS_ELECTRICITY_PRODUCTS: {
1515
+ name: string;
1516
+ unit: string;
1517
+ emissionFactor: number;
1518
+ emissionFactorUnit: string;
1519
+ type: string;
1520
+ }[];
1521
+ declare const CCTS_PURCHASED_ELECTRICITY: {
1522
+ name: string;
1523
+ unit: string;
1524
+ emissionFactor: number;
1525
+ emissionFactorUnit: string;
1526
+ type: string;
1527
+ }[];
1528
+ declare const CCTS_SCOPE1_CEMENT: ({
1529
+ name: string;
1530
+ icon: react_icons_lib.IconType;
1531
+ scope: string;
1532
+ unit: string;
1533
+ subProducts: {
1534
+ name: string;
1535
+ unit: string;
1536
+ emissionFactor: number;
1537
+ calorificValue: number;
1538
+ type: string;
1539
+ }[];
1540
+ desc: string;
1541
+ group: string;
1542
+ } | {
1543
+ name: string;
1544
+ icon: react_icons_lib.IconType;
1545
+ scope: string;
1546
+ unit: string;
1547
+ subProducts: ({
1548
+ name: string;
1549
+ unit: string;
1550
+ emissionFactor: number;
1551
+ ncv: number;
1552
+ gcv: number;
1553
+ ncvUnit: string;
1554
+ boilerEfficiency: number;
1555
+ emissionFactorUnit: string;
1556
+ type: string;
1557
+ } | {
1558
+ name: string;
1559
+ unit: string;
1560
+ emissionFactor: number;
1561
+ boilerEfficiency: number;
1562
+ emissionFactorUnit: string;
1563
+ type: string;
1564
+ ncv?: undefined;
1565
+ gcv?: undefined;
1566
+ ncvUnit?: undefined;
1567
+ } | {
1568
+ name: string;
1569
+ unit: string;
1570
+ emissionFactor: number;
1571
+ boilerEfficiency: number;
1572
+ type: string;
1573
+ ncv?: undefined;
1574
+ gcv?: undefined;
1575
+ ncvUnit?: undefined;
1576
+ emissionFactorUnit?: undefined;
1577
+ })[];
1578
+ desc: string;
1579
+ group: string;
1580
+ } | {
1581
+ name: string;
1582
+ icon: react_icons_lib.IconType;
1583
+ scope: string;
1584
+ unit: string;
1585
+ subProducts: {
1586
+ name: string;
1587
+ unit: string;
1588
+ emissionFactor: number;
1589
+ emissionFactorUnit: string;
1590
+ type: string;
1591
+ }[];
1592
+ desc: string;
1593
+ group: string;
1594
+ })[];
1595
+ declare const CCTS_SCOPE2_CEMENT: {
1596
+ name: string;
1597
+ icon: react_icons_lib.IconType;
1598
+ scope: string;
1599
+ unit: string;
1600
+ subProducts: {
1601
+ name: string;
1602
+ unit: string;
1603
+ emissionFactor: number;
1604
+ emissionFactorUnit: string;
1605
+ type: string;
1606
+ }[];
1607
+ desc: string;
1608
+ group: string;
1609
+ }[];
1610
+ declare const CCTS_ALLSCOPES_CEMENT: ({
1611
+ name: string;
1612
+ icon: react_icons_lib.IconType;
1613
+ scope: string;
1614
+ unit: string;
1615
+ subProducts: {
1616
+ name: string;
1617
+ unit: string;
1618
+ emissionFactor: number;
1619
+ calorificValue: number;
1620
+ type: string;
1621
+ }[];
1622
+ desc: string;
1623
+ group: string;
1624
+ } | {
1625
+ name: string;
1626
+ icon: react_icons_lib.IconType;
1627
+ scope: string;
1628
+ unit: string;
1629
+ subProducts: ({
1630
+ name: string;
1631
+ unit: string;
1632
+ emissionFactor: number;
1633
+ ncv: number;
1634
+ gcv: number;
1635
+ ncvUnit: string;
1636
+ boilerEfficiency: number;
1637
+ emissionFactorUnit: string;
1638
+ type: string;
1639
+ } | {
1640
+ name: string;
1641
+ unit: string;
1642
+ emissionFactor: number;
1643
+ boilerEfficiency: number;
1644
+ emissionFactorUnit: string;
1645
+ type: string;
1646
+ ncv?: undefined;
1647
+ gcv?: undefined;
1648
+ ncvUnit?: undefined;
1649
+ } | {
1650
+ name: string;
1651
+ unit: string;
1652
+ emissionFactor: number;
1653
+ boilerEfficiency: number;
1654
+ type: string;
1655
+ ncv?: undefined;
1656
+ gcv?: undefined;
1657
+ ncvUnit?: undefined;
1658
+ emissionFactorUnit?: undefined;
1659
+ })[];
1660
+ desc: string;
1661
+ group: string;
1662
+ } | {
1663
+ name: string;
1664
+ icon: react_icons_lib.IconType;
1665
+ scope: string;
1666
+ unit: string;
1667
+ subProducts: {
1668
+ name: string;
1669
+ unit: string;
1670
+ emissionFactor: number;
1671
+ emissionFactorUnit: string;
1672
+ type: string;
1673
+ }[];
1674
+ desc: string;
1675
+ group: string;
1676
+ })[];
1677
+ declare const CCTS_TABLE_COLUMNS: {
1678
+ key: string;
1679
+ label: string;
1680
+ width: string;
1681
+ }[];
1682
+ declare const calculateCCTSEmission: (bill: any) => number;
1683
+
1684
+ declare const SCOPE1_ALLOY: {
1685
+ name: string;
1686
+ icon: react_icons_lib.IconType;
1687
+ scope: string;
1688
+ unit: string;
1689
+ subProducts: {
1690
+ name: string;
1691
+ unit: string;
1692
+ type: string;
1693
+ calorificValue: number;
1694
+ emissionFactor: number;
1695
+ }[];
1696
+ desc: string;
1697
+ }[];
1698
+ declare const SCOPE2_ALLOY: {
1699
+ name: string;
1700
+ icon: react_icons_lib.IconType;
1701
+ scope: string;
1702
+ unit: string;
1703
+ subProducts: {
1704
+ name: string;
1705
+ unit: string;
1706
+ type: string;
1707
+ renewable: boolean;
1708
+ calorificValue: number;
1709
+ emissionFactor: number;
1710
+ }[];
1711
+ desc: string;
1712
+ }[];
1713
+ type EmissionItem$j = {
1714
+ item: string;
1715
+ emissionFactor: number;
1716
+ unit: string;
1717
+ };
1718
+ type EmissionCategory$b = {
1719
+ category: string;
1720
+ items: EmissionItem$j[];
1721
+ };
1722
+ type Emissions$h = EmissionCategory$b[];
1723
+ declare const FUEL_AND_ENERGY_RELATED_ACTIVITIES: Emissions$h;
1724
+ declare const WASTE_GENERATED_IN_OPERATIONS: Emissions$h;
1725
+ declare const ALL_SCOPES_3_ALLOY: {
1726
+ name: string;
1727
+ displayName: string;
1728
+ icon: react_icons_lib.IconType;
1729
+ scope: string;
1730
+ unit: string;
1731
+ subProducts: Emissions$h;
1732
+ desc: string;
1733
+ }[];
1734
+ declare const ALLSCOPES_ALLOY: ({
1735
+ name: string;
1736
+ icon: react_icons_lib.IconType;
1737
+ scope: string;
1738
+ unit: string;
1739
+ subProducts: {
1740
+ name: string;
1741
+ unit: string;
1742
+ type: string;
1743
+ calorificValue: number;
1744
+ emissionFactor: number;
1745
+ }[];
1746
+ desc: string;
1747
+ } | {
1748
+ name: string;
1749
+ displayName: string;
1750
+ icon: react_icons_lib.IconType;
1751
+ scope: string;
1752
+ unit: string;
1753
+ subProducts: Emissions$h;
1754
+ desc: string;
1755
+ })[];
1756
+
1757
+ declare const SCOPE1_ALUMINUM: {
1758
+ name: string;
1759
+ icon: react_icons_lib.IconType;
1760
+ scope: string;
1761
+ unit: string;
1762
+ subProducts: {
1763
+ name: string;
1764
+ unit: string;
1765
+ type: string;
1766
+ calorificValue: number;
1767
+ emissionFactor: number;
1768
+ }[];
1769
+ desc: string;
1770
+ }[];
1771
+ declare const SCOPE2_ALUMINUM: {
1772
+ name: string;
1773
+ icon: react_icons_lib.IconType;
1774
+ scope: string;
1775
+ unit: string;
1776
+ subProducts: {
1777
+ name: string;
1778
+ unit: string;
1779
+ type: string;
1780
+ renewable: boolean;
1781
+ calorificValue: number;
1782
+ emissionFactor: number;
1783
+ }[];
1784
+ desc: string;
1785
+ }[];
1786
+ type EmissionItem$i = {
1787
+ item: string;
1788
+ emissionFactor: number;
1789
+ unit: string;
1790
+ };
1791
+ type Scope3SubProduct$1 = {
1792
+ category: string;
1793
+ items: EmissionItem$i[];
1794
+ };
1795
+ type Scope3Product$1 = {
1796
+ name: string;
1797
+ displayName?: string;
1798
+ icon: any;
1799
+ scope: string;
1800
+ unit: string;
1801
+ subProducts: Scope3SubProduct$1[];
1802
+ desc: string;
1803
+ };
1804
+ declare const ALL_SCOPES_3_ALUMINUM: Scope3Product$1[];
1805
+ declare const ALLSCOPES_ALUMINUM: ({
1806
+ name: string;
1807
+ icon: react_icons_lib.IconType;
1808
+ scope: string;
1809
+ unit: string;
1810
+ subProducts: {
1811
+ name: string;
1812
+ unit: string;
1813
+ type: string;
1814
+ calorificValue: number;
1815
+ emissionFactor: number;
1816
+ }[];
1817
+ desc: string;
1818
+ } | Scope3Product$1)[];
1819
+
1820
+ declare const MOBILE_COMBUSTION_PRODUCTS: {
1821
+ name: string;
1822
+ unit: string;
1823
+ type: string;
1824
+ calorificValue: number;
1825
+ emissionFactor: number;
1826
+ }[];
1827
+ declare const STATIONARY_COMBUSTION_PRODUCTS: {
1828
+ name: string;
1829
+ unit: string;
1830
+ type: string;
1831
+ calorificValue: number;
1832
+ emissionFactor: number;
1833
+ }[];
1834
+ declare const PURCHASED_HEAT_STEAM_COOLING_PRODUCTS: {
1835
+ name: string;
1836
+ unit: string;
1837
+ type: string;
1838
+ calorificValue: number;
1839
+ emissionFactor: number;
1840
+ }[];
1841
+ declare const SCOPE1_AUTOMOBILE: {
1842
+ name: string;
1843
+ icon: react_icons_lib.IconType;
1844
+ scope: string;
1845
+ unit: string;
1846
+ subProducts: {
1847
+ name: string;
1848
+ unit: string;
1849
+ type: string;
1850
+ calorificValue: number;
1851
+ emissionFactor: number;
1852
+ }[];
1853
+ desc: string;
1854
+ }[];
1855
+ declare const SCOPE2_AUTOMOBILE: {
1856
+ name: string;
1857
+ icon: react_icons_lib.IconType;
1858
+ scope: string;
1859
+ unit: string;
1860
+ subProducts: {
1861
+ name: string;
1862
+ unit: string;
1863
+ type: string;
1864
+ renewable: boolean;
1865
+ calorificValue: number;
1866
+ emissionFactor: number;
1867
+ }[];
1868
+ desc: string;
1869
+ }[];
1870
+ type EmissionItem$h = {
1871
+ item: string;
1872
+ emissionFactor: number;
1873
+ unit: string;
1874
+ };
1875
+ type EmissionCategory$a = {
1876
+ category: string;
1877
+ items: EmissionItem$h[];
1878
+ };
1879
+ type Emissions$g = EmissionCategory$a[];
1880
+ declare const WATER_MANAGEMENT: Emissions$g;
1881
+ declare const ALL_SCOPES_3_AUTOMOBILE: {
1882
+ name: string;
1883
+ displayName: string;
1884
+ icon: react_icons_lib.IconType;
1885
+ scope: string;
1886
+ unit: string;
1887
+ subProducts: Emissions$g;
1888
+ desc: string;
1889
+ }[];
1890
+ declare const ALLSCOPES_AUTOMOBILE: ({
1891
+ name: string;
1892
+ icon: react_icons_lib.IconType;
1893
+ scope: string;
1894
+ unit: string;
1895
+ subProducts: {
1896
+ name: string;
1897
+ unit: string;
1898
+ type: string;
1899
+ calorificValue: number;
1900
+ emissionFactor: number;
1901
+ }[];
1902
+ desc: string;
1903
+ } | {
1904
+ name: string;
1905
+ displayName: string;
1906
+ icon: react_icons_lib.IconType;
1907
+ scope: string;
1908
+ unit: string;
1909
+ subProducts: Emissions$g;
1910
+ desc: string;
1911
+ })[];
1912
+
1913
+ declare const SCOPE1_AVIATION: {
1914
+ name: string;
1915
+ icon: react_icons_lib.IconType;
1916
+ scope: string;
1917
+ unit: string;
1918
+ subProducts: {
1919
+ name: string;
1920
+ unit: string;
1921
+ type: string;
1922
+ calorificValue: number;
1923
+ emissionFactor: number;
1924
+ }[];
1925
+ desc: string;
1926
+ }[];
1927
+ declare const SCOPE2_AVIATION: {
1928
+ name: string;
1929
+ icon: react_icons_lib.IconType;
1930
+ scope: string;
1931
+ unit: string;
1932
+ subProducts: {
1933
+ name: string;
1934
+ unit: string;
1935
+ type: string;
1936
+ renewable: boolean;
1937
+ calorificValue: number;
1938
+ emissionFactor: number;
1939
+ }[];
1940
+ desc: string;
1941
+ }[];
1942
+ declare const ALL_SCOPES_3_AVIATION: ({
1943
+ name: string;
1944
+ icon: react_icons_lib.IconType;
1945
+ scope: string;
1946
+ unit: string;
1947
+ subProducts: {
1948
+ category: string;
1949
+ items: {
1950
+ item: string;
1951
+ emissionFactor: number;
1952
+ unit: string;
1953
+ }[];
1954
+ }[];
1955
+ desc: string;
1956
+ displayName?: undefined;
1957
+ } | {
1958
+ name: string;
1959
+ displayName: string;
1960
+ icon: react_icons_lib.IconType;
1961
+ scope: string;
1962
+ unit: string;
1963
+ subProducts: {
1964
+ category: string;
1965
+ items: {
1966
+ item: string;
1967
+ emissionFactor: number;
1968
+ unit: string;
1969
+ }[];
1970
+ }[];
1971
+ desc: string;
1972
+ })[];
1973
+ declare const ALLSCOPES_AVIATION: ({
1974
+ name: string;
1975
+ icon: react_icons_lib.IconType;
1976
+ scope: string;
1977
+ unit: string;
1978
+ subProducts: {
1979
+ name: string;
1980
+ unit: string;
1981
+ type: string;
1982
+ calorificValue: number;
1983
+ emissionFactor: number;
1984
+ }[];
1985
+ desc: string;
1986
+ } | {
1987
+ name: string;
1988
+ icon: react_icons_lib.IconType;
1989
+ scope: string;
1990
+ unit: string;
1991
+ subProducts: {
1992
+ category: string;
1993
+ items: {
1994
+ item: string;
1995
+ emissionFactor: number;
1996
+ unit: string;
1997
+ }[];
1998
+ }[];
1999
+ desc: string;
2000
+ displayName?: undefined;
2001
+ } | {
2002
+ name: string;
2003
+ displayName: string;
2004
+ icon: react_icons_lib.IconType;
2005
+ scope: string;
2006
+ unit: string;
2007
+ subProducts: {
2008
+ category: string;
2009
+ items: {
2010
+ item: string;
2011
+ emissionFactor: number;
2012
+ unit: string;
2013
+ }[];
2014
+ }[];
2015
+ desc: string;
2016
+ })[];
2017
+
2018
+ declare const SCOPE1_BATTERY_EV: {
2019
+ name: string;
2020
+ icon: react_icons_lib.IconType;
2021
+ scope: string;
2022
+ unit: string;
2023
+ subProducts: {
2024
+ name: string;
2025
+ unit: string;
2026
+ type: string;
2027
+ calorificValue: number;
2028
+ emissionFactor: number;
2029
+ }[];
2030
+ desc: string;
2031
+ }[];
2032
+ declare const SCOPE2_BATTERY_EV: {
2033
+ name: string;
2034
+ icon: react_icons_lib.IconType;
2035
+ scope: string;
2036
+ unit: string;
2037
+ subProducts: {
2038
+ name: string;
2039
+ unit: string;
2040
+ type: string;
2041
+ renewable: boolean;
2042
+ calorificValue: number;
2043
+ emissionFactor: number;
2044
+ }[];
2045
+ desc: string;
2046
+ }[];
2047
+ declare const ALL_SCOPES_3_BATTERY_EV: ({
2048
+ name: string;
2049
+ icon: react_icons_lib.IconType;
2050
+ scope: string;
2051
+ unit: string;
2052
+ subProducts: {
2053
+ category: string;
2054
+ items: {
2055
+ item: string;
2056
+ emissionFactor: number;
2057
+ unit: string;
2058
+ }[];
2059
+ }[];
2060
+ desc: string;
2061
+ displayName?: undefined;
2062
+ } | {
2063
+ name: string;
2064
+ displayName: string;
2065
+ icon: react_icons_lib.IconType;
2066
+ scope: string;
2067
+ unit: string;
2068
+ subProducts: {
2069
+ category: string;
2070
+ items: {
2071
+ item: string;
2072
+ emissionFactor: number;
2073
+ unit: string;
2074
+ }[];
2075
+ }[];
2076
+ desc: string;
2077
+ })[];
2078
+ declare const ALLSCOPES_BATTERY_EV: ({
2079
+ name: string;
2080
+ icon: react_icons_lib.IconType;
2081
+ scope: string;
2082
+ unit: string;
2083
+ subProducts: {
2084
+ name: string;
2085
+ unit: string;
2086
+ type: string;
2087
+ calorificValue: number;
2088
+ emissionFactor: number;
2089
+ }[];
2090
+ desc: string;
2091
+ } | {
2092
+ name: string;
2093
+ icon: react_icons_lib.IconType;
2094
+ scope: string;
2095
+ unit: string;
2096
+ subProducts: {
2097
+ category: string;
2098
+ items: {
2099
+ item: string;
2100
+ emissionFactor: number;
2101
+ unit: string;
2102
+ }[];
2103
+ }[];
2104
+ desc: string;
2105
+ displayName?: undefined;
2106
+ } | {
2107
+ name: string;
2108
+ displayName: string;
2109
+ icon: react_icons_lib.IconType;
2110
+ scope: string;
2111
+ unit: string;
2112
+ subProducts: {
2113
+ category: string;
2114
+ items: {
2115
+ item: string;
2116
+ emissionFactor: number;
2117
+ unit: string;
2118
+ }[];
2119
+ }[];
2120
+ desc: string;
2121
+ })[];
2122
+
2123
+ declare const FUEL_COMBUSTION_PYRO_PROCESS_PRODUCTS: {
2124
+ name: string;
2125
+ unit: string;
2126
+ emissionFactor: number;
2127
+ calorificValue: number;
2128
+ type: string;
2129
+ energyConversionFactor: number;
2130
+ ch4EmissionFactor: number;
2131
+ n2oEmissionFactor: number;
2132
+ }[];
2133
+ declare const CALCINATION_PROCESS_PRODUCTS: {
2134
+ name: string;
2135
+ unit: string;
2136
+ emissionFactor: number;
2137
+ calorificValue: number;
2138
+ type: string;
2139
+ }[];
2140
+ declare const MINING_OPERATIONS_PRODUCTS: {
2141
+ name: string;
2142
+ unit: string;
2143
+ emissionFactor: number;
2144
+ calorificValue: number;
2145
+ type: string;
2146
+ energyConversionFactor: number;
2147
+ }[];
2148
+ declare const ON_SITE_POWER_PRODUCTS: {
2149
+ name: string;
2150
+ unit: string;
2151
+ emissionFactor: number;
2152
+ calorificValue: number;
2153
+ type: string;
2154
+ energyConversionFactor: number;
2155
+ }[];
2156
+ declare const ELECTRICITY_CONSUMED_PRODUCTS: {
2157
+ name: string;
2158
+ unit: string;
2159
+ emissionFactor: number;
2160
+ calorificValue: number;
2161
+ type: string;
2162
+ energyConversionFactor: number;
2163
+ }[];
2164
+ declare const LPG_PRODUCTS: {
2165
+ name: string;
2166
+ unit: string;
2167
+ type: string;
2168
+ calorificValue: number;
2169
+ emissionFactor: number;
2170
+ ch4EmissionFactor: number;
2171
+ n2oEmissionFactor: number;
2172
+ energyConversionFactor: number;
2173
+ }[];
2174
+ declare const SCOPE1_CEMENT: ({
2175
+ name: string;
2176
+ icon: react_icons_lib.IconType;
2177
+ scope: string;
2178
+ unit: string;
2179
+ subProducts: {
2180
+ name: string;
2181
+ unit: string;
2182
+ emissionFactor: number;
2183
+ calorificValue: number;
2184
+ type: string;
2185
+ }[];
2186
+ desc: string;
2187
+ group: string;
2188
+ } | {
2189
+ name: string;
2190
+ icon: react_icons_lib.IconType;
2191
+ scope: string;
2192
+ unit: string;
2193
+ subProducts: {
2194
+ name: string;
2195
+ unit: string;
2196
+ type: string;
2197
+ calorificValue: number;
2198
+ emissionFactor: number;
2199
+ }[];
2200
+ desc: string;
2201
+ group?: undefined;
2202
+ })[];
2203
+ declare const SCOPE2_CEMENT: {
2204
+ name: string;
2205
+ icon: react_icons_lib.IconType;
2206
+ scope: string;
2207
+ unit: string;
2208
+ subProducts: {
2209
+ name: string;
2210
+ unit: string;
2211
+ type: string;
2212
+ renewable: boolean;
2213
+ calorificValue: number;
2214
+ emissionFactor: number;
2215
+ }[];
2216
+ desc: string;
2217
+ }[];
2218
+ declare const ALLSCOPES_CEMENT: ({
2219
+ name: string;
2220
+ icon: react_icons_lib.IconType;
2221
+ scope: string;
2222
+ unit: string;
2223
+ subProducts: {
2224
+ name: string;
2225
+ unit: string;
2226
+ emissionFactor: number;
2227
+ calorificValue: number;
2228
+ type: string;
2229
+ }[];
2230
+ desc: string;
2231
+ group: string;
2232
+ } | {
2233
+ name: string;
2234
+ icon: react_icons_lib.IconType;
2235
+ scope: string;
2236
+ unit: string;
2237
+ subProducts: {
2238
+ name: string;
2239
+ unit: string;
2240
+ type: string;
2241
+ calorificValue: number;
2242
+ emissionFactor: number;
2243
+ }[];
2244
+ desc: string;
2245
+ group?: undefined;
2246
+ } | {
2247
+ name: string;
2248
+ icon: react_icons_lib.IconType;
2249
+ scope: string;
2250
+ unit: string;
2251
+ subProducts: {
2252
+ name: string;
2253
+ unit: string;
2254
+ type: string;
2255
+ renewable: boolean;
2256
+ calorificValue: number;
2257
+ emissionFactor: number;
2258
+ }[];
2259
+ desc: string;
2260
+ })[];
2261
+ type EmissionItem$g = {
2262
+ item: string;
2263
+ emissionFactor: number;
2264
+ unit: string;
2265
+ };
2266
+ type EquipmentCategory$5 = {
2267
+ category: string;
2268
+ items: EmissionItem$g[];
2269
+ };
2270
+ type Emissions$f = EquipmentCategory$5[];
2271
+ declare const TRAVEL_EMISSIONS: {
2272
+ category: string;
2273
+ items: {
2274
+ item: string;
2275
+ emissionFactor: number;
2276
+ unit: string;
2277
+ }[];
2278
+ }[];
2279
+ declare const GROUND_TRANSPORTATION_EMISSIONS: {
2280
+ category: string;
2281
+ items: {
2282
+ item: string;
2283
+ emissionFactor: number;
2284
+ unit: string;
2285
+ }[];
2286
+ }[];
2287
+ type Scope3Item$1 = {
2288
+ name: string;
2289
+ displayName: string;
2290
+ icon: any;
2291
+ scope: string;
2292
+ unit: string;
2293
+ subProducts: Emissions$f;
2294
+ desc: string;
2295
+ };
2296
+ declare const ALL_SCOPES_3_CEMENT: Scope3Item$1[];
2297
+ declare const getUserNameScope1Config: (username?: string, defaultScope1?: any[]) => any[];
2298
+ declare const getUserNameScope2Config: (username?: string, defaultScope2?: any[]) => any[];
2299
+ declare const getUserNameScope3Config: (username?: string, defaultScope3?: Scope3Item$1[]) => Scope3Item$1[];
2300
+ declare const FUEL_PRODUCTS: {
2301
+ name: string;
2302
+ unit: string;
2303
+ type: string;
2304
+ renewable: boolean;
2305
+ calorificValue: number;
2306
+ emissionFactor: number;
2307
+ }[];
2308
+ declare const CCTS_1: ({
2309
+ name: string;
2310
+ icon: react_icons_lib.IconType;
2311
+ scope: string;
2312
+ unit: string;
2313
+ subProducts: {
2314
+ name: string;
2315
+ unit: string;
2316
+ type: string;
2317
+ renewable: boolean;
2318
+ calorificValue: number;
2319
+ emissionFactor: number;
2320
+ }[];
2321
+ desc: string;
2322
+ } | {
2323
+ name: string;
2324
+ icon: react_icons_lib.IconType;
2325
+ scope: string;
2326
+ unit: string;
2327
+ subProducts: {
2328
+ name: string;
2329
+ unit: string;
2330
+ type: string;
2331
+ calorificValue: number;
2332
+ emissionFactor: number;
2333
+ }[];
2334
+ desc: string;
2335
+ })[];
2336
+ declare const ENERGY_SOURCE: Emissions$f;
2337
+ declare const CCTS_2: Scope3Item$1[];
2338
+ declare const WATER_MANAGEMENT_SCOPE: {
2339
+ name: string;
2340
+ icon: react_icons_lib.IconType;
2341
+ scope: string;
2342
+ unit: string;
2343
+ subProducts: {
2344
+ name: string;
2345
+ unit: string;
2346
+ type: string;
2347
+ calorificValue: number;
2348
+ emissionFactor: number;
2349
+ }[];
2350
+ desc: string;
2351
+ };
2352
+ declare const CEMENT_INDUSTRY_CONFIG: IndustryConfig$1;
2353
+ declare const getIndustryConfig: (industry: string) => IndustryConfig$1 | null;
2354
+ declare const getEndpointConfig: (industry: string, endpointName: string) => ApiEndpointConfig | undefined;
2355
+
2356
+ type EmissionItem$f = {
2357
+ item: string;
2358
+ emissionFactor: number;
2359
+ unit: string;
2360
+ };
2361
+ type EquipmentCategory$4 = {
2362
+ category: string;
2363
+ items: EmissionItem$f[];
2364
+ };
2365
+ type Emissions$e = EquipmentCategory$4[];
2366
+ declare const LPG_PRODUCTS_GAS_LAB: {
2367
+ name: string;
2368
+ unit: string;
2369
+ type: string;
2370
+ calorificValue: number;
2371
+ emissionFactor: number;
2372
+ ch4EmissionFactor: number;
2373
+ n2oEmissionFactor: number;
2374
+ energyConversionFactor: number;
2375
+ }[];
2376
+ declare const FUEL_COMBUSTION_GAS_LAB: {
2377
+ name: string;
2378
+ unit: string;
2379
+ emissionFactor: number;
2380
+ calorificValue: number;
2381
+ type: string;
2382
+ energyConversionFactor: number;
2383
+ ch4EmissionFactor: number;
2384
+ n2oEmissionFactor: number;
2385
+ }[];
2386
+ declare const DIESEL_GENERATOR_GAS_LAB: {
2387
+ name: string;
2388
+ unit: string;
2389
+ type: string;
2390
+ calorificValue: number;
2391
+ emissionFactor: number;
2392
+ ch4EmissionFactor: number;
2393
+ n2oEmissionFactor: number;
2394
+ energyConversionFactor: number;
2395
+ }[];
2396
+ declare const WELDING_PRODUCTS_GAS_LAB: {
2397
+ name: string;
2398
+ unit: string;
2399
+ type: string;
2400
+ calorificValue: number;
2401
+ emissionFactor: number;
2402
+ ch4EmissionFactor: number;
2403
+ n2oEmissionFactor: number;
2404
+ energyConversionFactor: number;
2405
+ }[];
2406
+ declare const LOCATION_BASED_ELECTRICITY_GAS_LAB: {
2407
+ name: string;
2408
+ unit: string;
2409
+ type: string;
2410
+ renewable: boolean;
2411
+ calorificValue: number;
2412
+ emissionFactor: number;
2413
+ }[];
2414
+ declare const MARKET_BASED_ELECTRICITY_GAS_LAB: {
2415
+ name: string;
2416
+ unit: string;
2417
+ type: string;
2418
+ renewable: boolean;
2419
+ calorificValue: number;
2420
+ emissionFactor: number;
2421
+ }[];
2422
+ declare const BUSINESS_TRAVEL_GAS_LAB: Emissions$e;
2423
+ declare const UPSTREAM_TRANSPORTATION_GAS_LAB: Emissions$e;
2424
+ declare const EMPLOYEE_COMMUTE_GAS_LAB: Emissions$e;
2425
+ declare const DOWNSTREAM_TRANSPORTATION_GAS_LAB: Emissions$e;
2426
+ declare const PURCHASED_GOODS_GAS_LAB: Emissions$e;
2427
+ declare const SCOPE1_GAS_LAB: {
2428
+ name: string;
2429
+ icon: react_icons_lib.IconType;
2430
+ scope: string;
2431
+ unit: string;
2432
+ subProducts: {
2433
+ name: string;
2434
+ unit: string;
2435
+ type: string;
2436
+ calorificValue: number;
2437
+ emissionFactor: number;
2438
+ ch4EmissionFactor: number;
2439
+ n2oEmissionFactor: number;
2440
+ energyConversionFactor: number;
2441
+ }[];
2442
+ desc: string;
2443
+ group: string;
2444
+ }[];
2445
+ declare const SCOPE2_GAS_LAB: {
2446
+ name: string;
2447
+ icon: react_icons_lib.IconType;
2448
+ scope: string;
2449
+ unit: string;
2450
+ subProducts: {
2451
+ name: string;
2452
+ unit: string;
2453
+ type: string;
2454
+ renewable: boolean;
2455
+ calorificValue: number;
2456
+ emissionFactor: number;
2457
+ }[];
2458
+ desc: string;
2459
+ }[];
2460
+ declare const WATER_PRODUCTS_GAS_LAB: {
2461
+ name: string;
2462
+ unit: string;
2463
+ type: string;
2464
+ calorificValue: number;
2465
+ emissionFactor: number;
2466
+ }[];
2467
+ declare const WASTE_GENERATED_GAS_LAB: Emissions$e;
2468
+ declare const SCOPE3_GAS_LAB: {
2469
+ name: string;
2470
+ displayName: string;
2471
+ icon: react_icons_lib.IconType;
2472
+ scope: string;
2473
+ unit: string;
2474
+ subProducts: Emissions$e;
2475
+ desc: string;
2476
+ }[];
2477
+ declare const WATER_MANAGEMENT_GAS_LAB: {
2478
+ name: string;
2479
+ displayName: string;
2480
+ icon: react_icons_lib.IconType;
2481
+ scope: string;
2482
+ unit: string;
2483
+ subProducts: {
2484
+ name: string;
2485
+ unit: string;
2486
+ type: string;
2487
+ calorificValue: number;
2488
+ emissionFactor: number;
2489
+ }[];
2490
+ desc: string;
2491
+ };
2492
+
2493
+ declare const OPERATIONS_PRODUCTS: {
2494
+ name: string;
2495
+ unit: string;
2496
+ type: string;
2497
+ calorificValue: number;
2498
+ emissionFactor: number;
2499
+ }[];
2500
+ declare const CHEMICAL_PROCESS_PRODUCTS: {
2501
+ name: string;
2502
+ unit: string;
2503
+ type: string;
2504
+ calorificValue: number;
2505
+ emissionFactor: number;
2506
+ }[];
2507
+ declare const SCOPE1_CHEMICAL: {
2508
+ name: string;
2509
+ icon: react_icons_lib.IconType;
2510
+ scope: string;
2511
+ unit: string;
2512
+ subProducts: {
2513
+ name: string;
2514
+ unit: string;
2515
+ type: string;
2516
+ calorificValue: number;
2517
+ emissionFactor: number;
2518
+ }[];
2519
+ desc: string;
2520
+ }[];
2521
+ declare const SCOPE2_CHEMICAL: {
2522
+ name: string;
2523
+ icon: react_icons_lib.IconType;
2524
+ scope: string;
2525
+ unit: string;
2526
+ subProducts: {
2527
+ name: string;
2528
+ unit: string;
2529
+ type: string;
2530
+ renewable: boolean;
2531
+ calorificValue: number;
2532
+ emissionFactor: number;
2533
+ }[];
2534
+ desc: string;
2535
+ }[];
2536
+ declare const ALLSCOPES_CHEMICAL: {
2537
+ name: string;
2538
+ icon: react_icons_lib.IconType;
2539
+ scope: string;
2540
+ unit: string;
2541
+ subProducts: {
2542
+ name: string;
2543
+ unit: string;
2544
+ type: string;
2545
+ calorificValue: number;
2546
+ emissionFactor: number;
2547
+ }[];
2548
+ desc: string;
2549
+ }[];
2550
+ type EmissionItem$e = {
2551
+ item: string;
2552
+ emissionFactor: number;
2553
+ unit: string;
2554
+ };
2555
+ type EquipmentCategory$3 = {
2556
+ category: string;
2557
+ items: EmissionItem$e[];
2558
+ };
2559
+ type Emissions$d = EquipmentCategory$3[];
2560
+ declare const ALL_SCOPES_3_CHEMICAL: ({
2561
+ name: string;
2562
+ displayName: string;
2563
+ icon: react_icons_lib.IconType;
2564
+ scope: string;
2565
+ unit: string;
2566
+ subProducts: Emissions$d;
2567
+ desc: string;
2568
+ } | {
2569
+ name: string;
2570
+ icon: react_icons_lib.IconType;
2571
+ scope: string;
2572
+ unit: string;
2573
+ subProducts: Emissions$d;
2574
+ desc: string;
2575
+ displayName?: undefined;
2576
+ })[];
2577
+
2578
+ declare const SCOPE1_CONSTRUCTION: {
2579
+ name: string;
2580
+ icon: react_icons_lib.IconType;
2581
+ scope: string;
2582
+ unit: string;
2583
+ subProducts: {
2584
+ name: string;
2585
+ unit: string;
2586
+ type: string;
2587
+ calorificValue: number;
2588
+ emissionFactor: number;
2589
+ }[];
2590
+ desc: string;
2591
+ }[];
2592
+ declare const SCOPE2_CONSTRUCTION: {
2593
+ name: string;
2594
+ icon: react_icons_lib.IconType;
2595
+ scope: string;
2596
+ unit: string;
2597
+ subProducts: {
2598
+ name: string;
2599
+ unit: string;
2600
+ type: string;
2601
+ renewable: boolean;
2602
+ calorificValue: number;
2603
+ emissionFactor: number;
2604
+ }[];
2605
+ desc: string;
2606
+ }[];
2607
+ declare const ALLSCOPES_CONSTRUCTION: {
2608
+ name: string;
2609
+ icon: react_icons_lib.IconType;
2610
+ scope: string;
2611
+ unit: string;
2612
+ subProducts: {
2613
+ name: string;
2614
+ unit: string;
2615
+ type: string;
2616
+ calorificValue: number;
2617
+ emissionFactor: number;
2618
+ }[];
2619
+ desc: string;
2620
+ }[];
2621
+ type EmissionItem$d = {
2622
+ item: string;
2623
+ emissionFactor: number;
2624
+ unit: string;
2625
+ };
2626
+ type EquipmentCategory$2 = {
2627
+ category: string;
2628
+ items: EmissionItem$d[];
2629
+ };
2630
+ type Emissions$c = EquipmentCategory$2[];
2631
+ declare const ALL_SCOPES_3_CONSTRUCTION: ({
2632
+ name: string;
2633
+ displayName: string;
2634
+ icon: react_icons_lib.IconType;
2635
+ scope: string;
2636
+ unit: string;
2637
+ subProducts: Emissions$c;
2638
+ desc: string;
2639
+ } | {
2640
+ name: string;
2641
+ icon: react_icons_lib.IconType;
2642
+ scope: string;
2643
+ unit: string;
2644
+ subProducts: Emissions$c;
2645
+ desc: string;
2646
+ displayName?: undefined;
2647
+ })[];
2648
+
2649
+ declare const SCOPE1_FOOD: {
2650
+ name: string;
2651
+ icon: react_icons_lib.IconType;
2652
+ scope: string;
2653
+ unit: string;
2654
+ subProducts: {
2655
+ name: string;
2656
+ unit: string;
2657
+ type: string;
2658
+ calorificValue: number;
2659
+ emissionFactor: number;
2660
+ }[];
2661
+ desc: string;
2662
+ }[];
2663
+ declare const SCOPE2_FOOD: {
2664
+ name: string;
2665
+ icon: react_icons_lib.IconType;
2666
+ scope: string;
2667
+ unit: string;
2668
+ subProducts: {
2669
+ name: string;
2670
+ unit: string;
2671
+ type: string;
2672
+ renewable: boolean;
2673
+ calorificValue: number;
2674
+ emissionFactor: number;
2675
+ }[];
2676
+ desc: string;
2677
+ }[];
2678
+ type EmissionItem$c = {
2679
+ item: string;
2680
+ emissionFactor: number;
2681
+ unit: string;
2682
+ };
2683
+ type EmissionCategory$9 = {
2684
+ category: string;
2685
+ items: EmissionItem$c[];
2686
+ };
2687
+ type Emissions$b = EmissionCategory$9[];
2688
+ declare const ALL_SCOPES_3_FOOD: {
2689
+ name: string;
2690
+ displayName: string;
2691
+ icon: react_icons_lib.IconType;
2692
+ scope: string;
2693
+ unit: string;
2694
+ subProducts: Emissions$b;
2695
+ desc: string;
2696
+ }[];
2697
+
2698
+ type EmissionItem$b = {
2699
+ item: string;
2700
+ emissionFactor: number;
2701
+ unit: string;
2702
+ };
2703
+ type EquipmentCategory$1 = {
2704
+ category: string;
2705
+ items: EmissionItem$b[];
2706
+ };
2707
+ type Emissions$a = EquipmentCategory$1[];
2708
+ declare const OPERATION_PRODUCTS: {
2709
+ name: string;
2710
+ unit: string;
2711
+ type: string;
2712
+ calorificValue: number;
2713
+ emissionFactor: number;
2714
+ }[];
2715
+ declare const SCOPE1_HOSPITALITY: {
2716
+ name: string;
2717
+ icon: react_icons_lib.IconType;
2718
+ scope: string;
2719
+ unit: string;
2720
+ subProducts: {
2721
+ name: string;
2722
+ unit: string;
2723
+ type: string;
2724
+ calorificValue: number;
2725
+ emissionFactor: number;
2726
+ }[];
2727
+ desc: string;
2728
+ }[];
2729
+ declare const SCOPE2_HOSPITALITY: {
2730
+ name: string;
2731
+ icon: react_icons_lib.IconType;
2732
+ scope: string;
2733
+ unit: string;
2734
+ subProducts: {
2735
+ name: string;
2736
+ unit: string;
2737
+ type: string;
2738
+ renewable: boolean;
2739
+ calorificValue: number;
2740
+ emissionFactor: number;
2741
+ }[];
2742
+ desc: string;
2743
+ }[];
2744
+ declare const RAW_MATERIALS_PRODUCTS: Emissions$a;
2745
+ declare const PACKAGING_MATERIALS_PRODUCTS: Emissions$a;
2746
+ declare const MAINTENANCE_MATERIALS_PRODUCTS: Emissions$a;
2747
+ declare const UPSTREAM_FUEL_EMISSIONS_PRODUCTS: Emissions$a;
2748
+ declare const TD_LOSSES_ELECTRICITY_PRODUCTS: Emissions$a;
2749
+ declare const EMPLOYEE_COMMUTING_CAR_PRODUCTS: Emissions$a;
2750
+ declare const EMPLOYEE_COMMUTING_PUBLIC_TRANSPORT_PRODUCTS: Emissions$a;
2751
+ declare const EMPLOYEE_COMMUTING_TWO_WHEELER_PRODUCTS: Emissions$a;
2752
+ declare const WASTE_GENERATED_PRODUCTS: Emissions$a;
2753
+ declare const BUSINESS_TRAVEL_AIR_PRODUCTS: Emissions$a;
2754
+ declare const BUSINESS_TRAVEL_GROUND_PRODUCTS: Emissions$a;
2755
+ declare const UPSTREAM_TRANSPORTATION_PRODUCTS: Emissions$a;
2756
+ declare const WATER_USAGE_PRODUCTS: Emissions$a;
2757
+ declare const WATER_DISCHARGE_PRODUCTS: Emissions$a;
2758
+ type Scope3Item = {
2759
+ name: string;
2760
+ displayName: string;
2761
+ icon: any;
2762
+ scope: string;
2763
+ unit: string;
2764
+ subProducts: Emissions$a;
2765
+ desc: string;
2766
+ };
2767
+ declare const SCOPE3_HOSPITALITY: Scope3Item[];
2768
+ declare const ALLSCOPES_HOSPITALITY: ({
2769
+ name: string;
2770
+ icon: react_icons_lib.IconType;
2771
+ scope: string;
2772
+ unit: string;
2773
+ subProducts: {
2774
+ name: string;
2775
+ unit: string;
2776
+ type: string;
2777
+ calorificValue: number;
2778
+ emissionFactor: number;
2779
+ }[];
2780
+ desc: string;
2781
+ } | Scope3Item)[];
2782
+
2783
+ declare const SCOPE1_LOGISTICS: {
2784
+ name: string;
2785
+ icon: react_icons_lib.IconType;
2786
+ scope: string;
2787
+ unit: string;
2788
+ subProducts: {
2789
+ name: string;
2790
+ unit: string;
2791
+ type: string;
2792
+ calorificValue: number;
2793
+ emissionFactor: number;
2794
+ }[];
2795
+ desc: string;
2796
+ }[];
2797
+ declare const SCOPE2_LOGISTICS: {
2798
+ name: string;
2799
+ icon: react_icons_lib.IconType;
2800
+ scope: string;
2801
+ unit: string;
2802
+ subProducts: {
2803
+ name: string;
2804
+ unit: string;
2805
+ type: string;
2806
+ renewable: boolean;
2807
+ calorificValue: number;
2808
+ emissionFactor: number;
2809
+ }[];
2810
+ desc: string;
2811
+ }[];
2812
+ type EmissionItem$a = {
2813
+ item: string;
2814
+ emissionFactor: number;
2815
+ unit: string;
2816
+ };
2817
+ type EmissionCategory$8 = {
2818
+ category: string;
2819
+ items: EmissionItem$a[];
2820
+ };
2821
+ type Emissions$9 = EmissionCategory$8[];
2822
+ declare const ALL_SCOPES_3_LOGISTICS: {
2823
+ name: string;
2824
+ displayName: string;
2825
+ icon: react_icons_lib.IconType;
2826
+ scope: string;
2827
+ unit: string;
2828
+ subProducts: Emissions$9;
2829
+ desc: string;
2830
+ }[];
2831
+
2832
+ declare const MANUFACTURING_PROCESS_PRODUCTS: {
2833
+ name: string;
2834
+ unit: string;
2835
+ type: string;
2836
+ calorificValue: number;
2837
+ emissionFactor: number;
2838
+ }[];
2839
+ declare const SCOPE1_MANUFACTURING: {
2840
+ name: string;
2841
+ icon: react_icons_lib.IconType;
2842
+ scope: string;
2843
+ unit: string;
2844
+ subProducts: {
2845
+ name: string;
2846
+ unit: string;
2847
+ type: string;
2848
+ calorificValue: number;
2849
+ emissionFactor: number;
2850
+ }[];
2851
+ desc: string;
2852
+ }[];
2853
+ declare const SCOPE2_MANUFACTURING: {
2854
+ name: string;
2855
+ icon: react_icons_lib.IconType;
2856
+ scope: string;
2857
+ unit: string;
2858
+ subProducts: {
2859
+ name: string;
2860
+ unit: string;
2861
+ type: string;
2862
+ renewable: boolean;
2863
+ calorificValue: number;
2864
+ emissionFactor: number;
2865
+ }[];
2866
+ desc: string;
2867
+ }[];
2868
+ declare const ALLSCOPES_MANUFACTURING: {
2869
+ name: string;
2870
+ icon: react_icons_lib.IconType;
2871
+ scope: string;
2872
+ unit: string;
2873
+ subProducts: {
2874
+ name: string;
2875
+ unit: string;
2876
+ type: string;
2877
+ calorificValue: number;
2878
+ emissionFactor: number;
2879
+ }[];
2880
+ desc: string;
2881
+ }[];
2882
+ type EmissionItem$9 = {
2883
+ item: string;
2884
+ emissionFactor: number;
2885
+ unit: string;
2886
+ requiresMassData?: boolean;
2887
+ };
2888
+ type EquipmentCategory = {
2889
+ category: string;
2890
+ items: EmissionItem$9[];
2891
+ };
2892
+ type Emissions$8 = EquipmentCategory[];
2893
+ declare const WASTE_FROM_OPERATIONS: Emissions$8;
2894
+ declare const ALL_SCOPES_3_MANUFACTURING: ({
2895
+ name: string;
2896
+ displayName: string;
2897
+ icon: react_icons_lib.IconType;
2898
+ scope: string;
2899
+ unit: string;
2900
+ subProducts: Emissions$8;
2901
+ desc: string;
2902
+ } | {
2903
+ name: string;
2904
+ icon: react_icons_lib.IconType;
2905
+ scope: string;
2906
+ unit: string;
2907
+ subProducts: Emissions$8;
2908
+ desc: string;
2909
+ displayName?: undefined;
2910
+ })[];
2911
+
2912
+ declare const SCOPE1_METAL: {
2913
+ name: string;
2914
+ icon: react_icons_lib.IconType;
2915
+ scope: string;
2916
+ unit: string;
2917
+ subProducts: {
2918
+ name: string;
2919
+ unit: string;
2920
+ type: string;
2921
+ calorificValue: number;
2922
+ emissionFactor: number;
2923
+ }[];
2924
+ desc: string;
2925
+ }[];
2926
+ declare const SCOPE2_METAL: {
2927
+ name: string;
2928
+ icon: react_icons_lib.IconType;
2929
+ scope: string;
2930
+ unit: string;
2931
+ subProducts: {
2932
+ name: string;
2933
+ unit: string;
2934
+ type: string;
2935
+ renewable: boolean;
2936
+ calorificValue: number;
2937
+ emissionFactor: number;
2938
+ }[];
2939
+ desc: string;
2940
+ }[];
2941
+ type EmissionItem$8 = {
2942
+ item: string;
2943
+ emissionFactor: number;
2944
+ unit: string;
2945
+ };
2946
+ type EmissionCategory$7 = {
2947
+ category: string;
2948
+ items: EmissionItem$8[];
2949
+ };
2950
+ type Emissions$7 = EmissionCategory$7[];
2951
+ declare const ALL_SCOPES_3_METAL: {
2952
+ name: string;
2953
+ displayName: string;
2954
+ icon: react_icons_lib.IconType;
2955
+ scope: string;
2956
+ unit: string;
2957
+ subProducts: Emissions$7;
2958
+ desc: string;
2959
+ }[];
2960
+
2961
+ declare const SCOPE1_PACKAGING: {
2962
+ name: string;
2963
+ icon: react_icons_lib.IconType;
2964
+ scope: string;
2965
+ unit: string;
2966
+ subProducts: {
2967
+ name: string;
2968
+ unit: string;
2969
+ type: string;
2970
+ calorificValue: number;
2971
+ emissionFactor: number;
2972
+ }[];
2973
+ desc: string;
2974
+ }[];
2975
+ declare const SCOPE2_PACKAGING: {
2976
+ name: string;
2977
+ icon: react_icons_lib.IconType;
2978
+ scope: string;
2979
+ unit: string;
2980
+ subProducts: {
2981
+ name: string;
2982
+ unit: string;
2983
+ type: string;
2984
+ renewable: boolean;
2985
+ calorificValue: number;
2986
+ emissionFactor: number;
2987
+ }[];
2988
+ desc: string;
2989
+ }[];
2990
+ declare const ALLSCOPES_PACKAGING: {
2991
+ name: string;
2992
+ icon: react_icons_lib.IconType;
2993
+ scope: string;
2994
+ unit: string;
2995
+ subProducts: {
2996
+ name: string;
2997
+ unit: string;
2998
+ type: string;
2999
+ calorificValue: number;
3000
+ emissionFactor: number;
3001
+ }[];
3002
+ desc: string;
3003
+ }[];
3004
+ declare const EMPLOYEE_COMMUTING_EMISSIONS: {
3005
+ category: string;
3006
+ items: {
3007
+ item: string;
3008
+ emissionFactor: number;
3009
+ unit: string;
3010
+ }[];
3011
+ }[];
3012
+ declare const WATER_CONSUMPTION_EMISSIONS: {
3013
+ category: string;
3014
+ items: {
3015
+ item: string;
3016
+ emissionFactor: number;
3017
+ unit: string;
3018
+ }[];
3019
+ }[];
3020
+ declare const ALL_SCOPES_3_PACKAGING: {
3021
+ name: string;
3022
+ displayName: string;
3023
+ icon: react_icons_lib.IconType;
3024
+ scope: string;
3025
+ unit: string;
3026
+ subProducts: {
3027
+ category: string;
3028
+ items: {
3029
+ item: string;
3030
+ emissionFactor: number;
3031
+ unit: string;
3032
+ }[];
3033
+ }[];
3034
+ desc: string;
3035
+ }[];
3036
+ declare const ISO_CATEGORIES_PACKAGING: {
3037
+ name: string;
3038
+ displayName: string;
3039
+ type: string;
3040
+ icon: react_icons_lib.IconType;
3041
+ scope: string;
3042
+ unit: string;
3043
+ desc: string;
3044
+ subProducts: {
3045
+ category: string;
3046
+ items: {
3047
+ item: string;
3048
+ unit: string;
3049
+ emissionFactor: number;
3050
+ }[];
3051
+ }[];
3052
+ }[];
3053
+
3054
+ declare const SCOPE1_PETRO_CHEMICAL: {
3055
+ name: string;
3056
+ icon: react_icons_lib.IconType;
3057
+ scope: string;
3058
+ unit: string;
3059
+ subProducts: {
3060
+ name: string;
3061
+ unit: string;
3062
+ type: string;
3063
+ calorificValue: number;
3064
+ emissionFactor: number;
3065
+ }[];
3066
+ desc: string;
3067
+ }[];
3068
+ declare const SCOPE2_PETRO_CHEMICAL: {
3069
+ name: string;
3070
+ icon: react_icons_lib.IconType;
3071
+ scope: string;
3072
+ unit: string;
3073
+ subProducts: {
3074
+ name: string;
3075
+ unit: string;
3076
+ type: string;
3077
+ renewable: boolean;
3078
+ calorificValue: number;
3079
+ emissionFactor: number;
3080
+ }[];
3081
+ desc: string;
3082
+ }[];
3083
+ type EmissionItem$7 = {
3084
+ item: string;
3085
+ emissionFactor: number;
3086
+ unit: string;
3087
+ };
3088
+ type EmissionCategory$6 = {
3089
+ category: string;
3090
+ items: EmissionItem$7[];
3091
+ };
3092
+ type Emissions$6 = EmissionCategory$6[];
3093
+ declare const ALL_SCOPES_3_PETRO_CHEMICAL: {
3094
+ name: string;
3095
+ displayName: string;
3096
+ icon: react_icons_lib.IconType;
3097
+ scope: string;
3098
+ unit: string;
3099
+ subProducts: Emissions$6;
3100
+ desc: string;
3101
+ }[];
3102
+
3103
+ declare const CLINKER_PRODUCTION: {
3104
+ name: string;
3105
+ unit: string;
3106
+ type: string;
3107
+ calorificValue: number;
3108
+ emissionFactor: number;
3109
+ }[];
3110
+ declare const MINING_OPERATIONS: {
3111
+ name: string;
3112
+ unit: string;
3113
+ type: string;
3114
+ calorificValue: number;
3115
+ emissionFactor: number;
3116
+ }[];
3117
+ declare const ONSITE_POWER_GENERATION: {
3118
+ name: string;
3119
+ unit: string;
3120
+ type: string;
3121
+ calorificValue: number;
3122
+ emissionFactor: number;
3123
+ }[];
3124
+ declare const SCOPE1_PHARMA: {
3125
+ name: string;
3126
+ icon: react_icons_lib.IconType;
3127
+ scope: string;
3128
+ unit: string;
3129
+ subProducts: {
3130
+ name: string;
3131
+ unit: string;
3132
+ type: string;
3133
+ emissionFactor: number;
3134
+ }[];
3135
+ desc: string;
3136
+ }[];
3137
+ declare const SCOPE2_PHARMA: {
3138
+ name: string;
3139
+ icon: react_icons_lib.IconType;
3140
+ scope: string;
3141
+ unit: string;
3142
+ subProducts: {
3143
+ name: string;
3144
+ unit: string;
3145
+ type: string;
3146
+ renewable: boolean;
3147
+ calorificValue: number;
3148
+ emissionFactor: number;
3149
+ }[];
3150
+ desc: string;
3151
+ }[];
3152
+ type EmissionItem$6 = {
3153
+ item: string;
3154
+ emissionFactor: number;
3155
+ unit: string;
3156
+ };
3157
+ type EmissionCategory$5 = {
3158
+ category: string;
3159
+ items: EmissionItem$6[];
3160
+ };
3161
+ type Emissions$5 = EmissionCategory$5[];
3162
+ declare const ALL_SCOPES_3_PHARMA: {
3163
+ name: string;
3164
+ displayName: string;
3165
+ icon: react_icons_lib.IconType;
3166
+ scope: string;
3167
+ unit: string;
3168
+ subProducts: Emissions$5;
3169
+ desc: string;
3170
+ }[];
3171
+ declare const ALLSCOPES_PHARMA: ({
3172
+ name: string;
3173
+ icon: react_icons_lib.IconType;
3174
+ scope: string;
3175
+ unit: string;
3176
+ subProducts: {
3177
+ name: string;
3178
+ unit: string;
3179
+ type: string;
3180
+ emissionFactor: number;
3181
+ }[];
3182
+ desc: string;
3183
+ } | {
3184
+ name: string;
3185
+ displayName: string;
3186
+ icon: react_icons_lib.IconType;
3187
+ scope: string;
3188
+ unit: string;
3189
+ subProducts: Emissions$5;
3190
+ desc: string;
3191
+ })[];
3192
+
3193
+ declare const FUEL_COMBUSTION_PRODUCTS_POLYMER: {
3194
+ name: string;
3195
+ unit: string;
3196
+ type: string;
3197
+ calorificValue: number;
3198
+ emissionFactor: number;
3199
+ }[];
3200
+ declare const REFRIGERANT_PRODUCTS_POLYMER: {
3201
+ name: string;
3202
+ unit: string;
3203
+ type: string;
3204
+ calorificValue: number;
3205
+ emissionFactor: number;
3206
+ }[];
3207
+ declare const FIRE_EXTINGUISHER_PRODUCTS_POLYMER: {
3208
+ name: string;
3209
+ unit: string;
3210
+ type: string;
3211
+ calorificValue: number;
3212
+ emissionFactor: number;
3213
+ }[];
3214
+ declare const LPG_USAGE_PRODUCTS_POLYMER: {
3215
+ name: string;
3216
+ unit: string;
3217
+ type: string;
3218
+ calorificValue: number;
3219
+ emissionFactor: number;
3220
+ }[];
3221
+ declare const SF6_USAGE_PRODUCTS_POLYMER: {
3222
+ name: string;
3223
+ unit: string;
3224
+ type: string;
3225
+ calorificValue: number;
3226
+ emissionFactor: number;
3227
+ }[];
3228
+ declare const SCOPE1_POLYMER: {
3229
+ name: string;
3230
+ icon: react_icons_lib.IconType;
3231
+ scope: string;
3232
+ unit: string;
3233
+ subProducts: {
3234
+ name: string;
3235
+ unit: string;
3236
+ type: string;
3237
+ calorificValue: number;
3238
+ emissionFactor: number;
3239
+ }[];
3240
+ desc: string;
3241
+ }[];
3242
+ declare const SCOPE2_POLYMER: {
3243
+ name: string;
3244
+ icon: react_icons_lib.IconType;
3245
+ scope: string;
3246
+ unit: string;
3247
+ subProducts: {
3248
+ name: string;
3249
+ unit: string;
3250
+ type: string;
3251
+ renewable: boolean;
3252
+ calorificValue: number;
3253
+ emissionFactor: number;
3254
+ }[];
3255
+ desc: string;
3256
+ }[];
3257
+ type EmissionItem$5 = {
3258
+ item: string;
3259
+ emissionFactor: number;
3260
+ unit: string;
3261
+ };
3262
+ type EmissionCategory$4 = {
3263
+ category: string;
3264
+ items: EmissionItem$5[];
3265
+ };
3266
+ type Emissions$4 = EmissionCategory$4[];
3267
+ declare const PURCHASED_GOODS_AND_SERVICES_POLYMER: Emissions$4;
3268
+ declare const FUEL_ENERGY_RELATED_POLYMER: Emissions$4;
3269
+ declare const UPSTREAM_TRANSPORTATION_POLYMER: Emissions$4;
3270
+ declare const WASTE_OPERATIONS_POLYMER: Emissions$4;
3271
+ declare const EMPLOYEE_COMMUTING_POLYMER: Emissions$4;
3272
+ declare const BUSINESS_TRAVEL_POLYMER: Emissions$4;
3273
+ declare const WATER_USAGE_POLYMER: Emissions$4;
3274
+ declare const ALL_SCOPES_3_POLYMER: {
3275
+ name: string;
3276
+ displayName: string;
3277
+ icon: react_icons_lib.IconType;
3278
+ scope: string;
3279
+ unit: string;
3280
+ subProducts: Emissions$4;
3281
+ desc: string;
3282
+ }[];
3283
+ declare const ALLSCOPES_POLYMER: ({
3284
+ name: string;
3285
+ icon: react_icons_lib.IconType;
3286
+ scope: string;
3287
+ unit: string;
3288
+ subProducts: {
3289
+ name: string;
3290
+ unit: string;
3291
+ type: string;
3292
+ calorificValue: number;
3293
+ emissionFactor: number;
3294
+ }[];
3295
+ desc: string;
3296
+ } | {
3297
+ name: string;
3298
+ displayName: string;
3299
+ icon: react_icons_lib.IconType;
3300
+ scope: string;
3301
+ unit: string;
3302
+ subProducts: Emissions$4;
3303
+ desc: string;
3304
+ })[];
3305
+
3306
+ declare const SCOPE1_REAL_ESTATE: {
3307
+ name: string;
3308
+ icon: react_icons_lib.IconType;
3309
+ scope: string;
3310
+ unit: string;
3311
+ subProducts: {
3312
+ name: string;
3313
+ unit: string;
3314
+ type: string;
3315
+ calorificValue: number;
3316
+ emissionFactor: number;
3317
+ }[];
3318
+ desc: string;
3319
+ }[];
3320
+ declare const SCOPE2_REAL_ESTATE: {
3321
+ name: string;
3322
+ icon: react_icons_lib.IconType;
3323
+ scope: string;
3324
+ unit: string;
3325
+ subProducts: {
3326
+ name: string;
3327
+ unit: string;
3328
+ type: string;
3329
+ renewable: boolean;
3330
+ calorificValue: number;
3331
+ emissionFactor: number;
3332
+ }[];
3333
+ desc: string;
3334
+ }[];
3335
+ type EmissionItem$4 = {
3336
+ item: string;
3337
+ emissionFactor: number;
3338
+ unit: string;
3339
+ };
3340
+ type EmissionCategory$3 = {
3341
+ category: string;
3342
+ items: EmissionItem$4[];
3343
+ };
3344
+ type Emissions$3 = EmissionCategory$3[];
3345
+ declare const ALL_SCOPES_3_REAL_ESTATE: {
3346
+ name: string;
3347
+ displayName: string;
3348
+ icon: react_icons_lib.IconType;
3349
+ scope: string;
3350
+ unit: string;
3351
+ subProducts: Emissions$3;
3352
+ desc: string;
3353
+ }[];
3354
+ declare const ALLSCOPES_REAL_ESTATE: ({
3355
+ name: string;
3356
+ icon: react_icons_lib.IconType;
3357
+ scope: string;
3358
+ unit: string;
3359
+ subProducts: {
3360
+ name: string;
3361
+ unit: string;
3362
+ type: string;
3363
+ calorificValue: number;
3364
+ emissionFactor: number;
3365
+ }[];
3366
+ desc: string;
3367
+ } | {
3368
+ name: string;
3369
+ displayName: string;
3370
+ icon: react_icons_lib.IconType;
3371
+ scope: string;
3372
+ unit: string;
3373
+ subProducts: Emissions$3;
3374
+ desc: string;
3375
+ })[];
3376
+
3377
+ declare const SCOPE1_SHIPPING: {
3378
+ name: string;
3379
+ icon: react_icons_lib.IconType;
3380
+ scope: string;
3381
+ unit: string;
3382
+ subProducts: {
3383
+ name: string;
3384
+ unit: string;
3385
+ type: string;
3386
+ calorificValue: number;
3387
+ emissionFactor: number;
3388
+ }[];
3389
+ desc: string;
3390
+ }[];
3391
+ declare const SCOPE2_SHIPPING: {
3392
+ name: string;
3393
+ icon: react_icons_lib.IconType;
3394
+ scope: string;
3395
+ unit: string;
3396
+ subProducts: {
3397
+ name: string;
3398
+ unit: string;
3399
+ type: string;
3400
+ renewable: boolean;
3401
+ calorificValue: number;
3402
+ emissionFactor: number;
3403
+ }[];
3404
+ desc: string;
3405
+ }[];
3406
+ type EmissionItem$3 = {
3407
+ item: string;
3408
+ emissionFactor: number;
3409
+ unit: string;
3410
+ source?: string;
3411
+ };
3412
+ type EmissionCategory$2 = {
3413
+ category: string;
3414
+ items: EmissionItem$3[];
3415
+ };
3416
+ type Emissions$2 = EmissionCategory$2[];
3417
+ declare const ALL_SCOPES_3_SHIPPING: {
3418
+ name: string;
3419
+ displayName: string;
3420
+ icon: react_icons_lib.IconType;
3421
+ scope: string;
3422
+ unit: string;
3423
+ subProducts: Emissions$2;
3424
+ desc: string;
3425
+ }[];
3426
+
3427
+ declare const SCOPE1_STEEL: {
3428
+ name: string;
3429
+ icon: react_icons_lib.IconType;
3430
+ scope: string;
3431
+ unit: string;
3432
+ subProducts: {
3433
+ name: string;
3434
+ unit: string;
3435
+ type: string;
3436
+ calorificValue: number;
3437
+ emissionFactor: number;
3438
+ }[];
3439
+ desc: string;
3440
+ }[];
3441
+ declare const SCOPE2_STEEL: {
3442
+ name: string;
3443
+ icon: react_icons_lib.IconType;
3444
+ scope: string;
3445
+ unit: string;
3446
+ subProducts: {
3447
+ name: string;
3448
+ unit: string;
3449
+ type: string;
3450
+ renewable: boolean;
3451
+ calorificValue: number;
3452
+ emissionFactor: number;
3453
+ }[];
3454
+ desc: string;
3455
+ }[];
3456
+ declare const ALLSCOPES_STEEL: {
3457
+ name: string;
3458
+ icon: react_icons_lib.IconType;
3459
+ scope: string;
3460
+ unit: string;
3461
+ subProducts: {
3462
+ name: string;
3463
+ unit: string;
3464
+ type: string;
3465
+ calorificValue: number;
3466
+ emissionFactor: number;
3467
+ }[];
3468
+ desc: string;
3469
+ }[];
3470
+ declare const ALL_SCOPES_3_STEEL: ({
3471
+ name: string;
3472
+ displayName: string;
3473
+ icon: react_icons_lib.IconType;
3474
+ scope: string;
3475
+ unit: string;
3476
+ subProducts: {
3477
+ category: string;
3478
+ items: {
3479
+ item: string;
3480
+ emissionFactor: number;
3481
+ unit: string;
3482
+ }[];
3483
+ }[];
3484
+ desc: string;
3485
+ } | {
3486
+ name: string;
3487
+ icon: react_icons_lib.IconType;
3488
+ scope: string;
3489
+ unit: string;
3490
+ subProducts: {
3491
+ category: string;
3492
+ items: {
3493
+ item: string;
3494
+ emissionFactor: number;
3495
+ unit: string;
3496
+ }[];
3497
+ }[];
3498
+ desc: string;
3499
+ displayName?: undefined;
3500
+ })[];
3501
+
3502
+ declare const SCOPE1_TELECOMMUNICATIONS: {
3503
+ name: string;
3504
+ icon: react_icons_lib.IconType;
3505
+ scope: string;
3506
+ unit: string;
3507
+ subProducts: {
3508
+ name: string;
3509
+ unit: string;
3510
+ type: string;
3511
+ calorificValue: number;
3512
+ emissionFactor: number;
3513
+ }[];
3514
+ desc: string;
3515
+ }[];
3516
+ declare const SCOPE2_TELECOMMUNICATIONS: {
3517
+ name: string;
3518
+ icon: react_icons_lib.IconType;
3519
+ scope: string;
3520
+ unit: string;
3521
+ subProducts: {
3522
+ name: string;
3523
+ unit: string;
3524
+ type: string;
3525
+ renewable: boolean;
3526
+ calorificValue: number;
3527
+ emissionFactor: number;
3528
+ }[];
3529
+ desc: string;
3530
+ }[];
3531
+ type EmissionItem$2 = {
3532
+ item: string;
3533
+ emissionFactor: number;
3534
+ unit: string;
3535
+ };
3536
+ type Scope3SubProduct = {
3537
+ category: string;
3538
+ items: EmissionItem$2[];
3539
+ };
3540
+ type Scope3Product = {
3541
+ name: string;
3542
+ displayName?: string;
3543
+ icon: any;
3544
+ scope: string;
3545
+ unit: string;
3546
+ subProducts: Scope3SubProduct[];
3547
+ desc: string;
3548
+ };
3549
+ declare const ALL_SCOPES_3_TELECOMMUNICATIONS: Scope3Product[];
3550
+ declare const ALLSCOPES_TELECOMMUNICATIONS: ({
3551
+ name: string;
3552
+ icon: react_icons_lib.IconType;
3553
+ scope: string;
3554
+ unit: string;
3555
+ subProducts: {
3556
+ name: string;
3557
+ unit: string;
3558
+ type: string;
3559
+ calorificValue: number;
3560
+ emissionFactor: number;
3561
+ }[];
3562
+ desc: string;
3563
+ } | Scope3Product)[];
3564
+
3565
+ declare const SCOPE1_TEXTILE: {
3566
+ name: string;
3567
+ icon: react_icons_lib.IconType;
3568
+ scope: string;
3569
+ unit: string;
3570
+ subProducts: {
3571
+ name: string;
3572
+ unit: string;
3573
+ type: string;
3574
+ calorificValue: number;
3575
+ emissionFactor: number;
3576
+ }[];
3577
+ desc: string;
3578
+ }[];
3579
+ declare const SCOPE2_TEXTILE: {
3580
+ name: string;
3581
+ icon: react_icons_lib.IconType;
3582
+ scope: string;
3583
+ unit: string;
3584
+ subProducts: {
3585
+ name: string;
3586
+ unit: string;
3587
+ type: string;
3588
+ renewable: boolean;
3589
+ calorificValue: number;
3590
+ emissionFactor: number;
3591
+ }[];
3592
+ desc: string;
3593
+ }[];
3594
+ type EmissionItem$1 = {
3595
+ item: string;
3596
+ emissionFactor: number;
3597
+ unit: string;
3598
+ };
3599
+ type EmissionCategory$1 = {
3600
+ category: string;
3601
+ items: EmissionItem$1[];
3602
+ };
3603
+ type Emissions$1 = EmissionCategory$1[];
3604
+ declare const ALL_SCOPES_3_TEXTILE: {
3605
+ name: string;
3606
+ displayName: string;
3607
+ icon: react_icons_lib.IconType;
3608
+ scope: string;
3609
+ unit: string;
3610
+ subProducts: Emissions$1;
3611
+ desc: string;
3612
+ }[];
3613
+
3614
+ declare const SCOPE1_UTILITIES: {
3615
+ name: string;
3616
+ icon: react_icons_lib.IconType;
3617
+ scope: string;
3618
+ unit: string;
3619
+ subProducts: {
3620
+ name: string;
3621
+ unit: string;
3622
+ type: string;
3623
+ calorificValue: number;
3624
+ emissionFactor: number;
3625
+ }[];
3626
+ desc: string;
3627
+ }[];
3628
+ declare const SCOPE2_UTILITIES: {
3629
+ name: string;
3630
+ icon: react_icons_lib.IconType;
3631
+ scope: string;
3632
+ unit: string;
3633
+ subProducts: {
3634
+ name: string;
3635
+ unit: string;
3636
+ type: string;
3637
+ renewable: boolean;
3638
+ calorificValue: number;
3639
+ emissionFactor: number;
3640
+ }[];
3641
+ desc: string;
3642
+ }[];
3643
+ type EmissionItem = {
3644
+ item: string;
3645
+ emissionFactor: number;
3646
+ unit: string;
3647
+ };
3648
+ type EmissionCategory = {
3649
+ category: string;
3650
+ items: EmissionItem[];
3651
+ };
3652
+ type Emissions = EmissionCategory[];
3653
+ declare const ALL_SCOPES_3_UTILITIES: {
3654
+ name: string;
3655
+ displayName: string;
3656
+ icon: react_icons_lib.IconType;
3657
+ scope: string;
3658
+ unit: string;
3659
+ subProducts: Emissions;
3660
+ desc: string;
3661
+ }[];
3662
+
3663
+ declare const index_ALLSCOPES_ALLOY: typeof ALLSCOPES_ALLOY;
3664
+ declare const index_ALLSCOPES_ALUMINUM: typeof ALLSCOPES_ALUMINUM;
3665
+ declare const index_ALLSCOPES_AUTOMOBILE: typeof ALLSCOPES_AUTOMOBILE;
3666
+ declare const index_ALLSCOPES_AVIATION: typeof ALLSCOPES_AVIATION;
3667
+ declare const index_ALLSCOPES_BATTERY_EV: typeof ALLSCOPES_BATTERY_EV;
3668
+ declare const index_ALLSCOPES_CEMENT: typeof ALLSCOPES_CEMENT;
3669
+ declare const index_ALLSCOPES_CHEMICAL: typeof ALLSCOPES_CHEMICAL;
3670
+ declare const index_ALLSCOPES_CONSTRUCTION: typeof ALLSCOPES_CONSTRUCTION;
3671
+ declare const index_ALLSCOPES_HOSPITALITY: typeof ALLSCOPES_HOSPITALITY;
3672
+ declare const index_ALLSCOPES_MANUFACTURING: typeof ALLSCOPES_MANUFACTURING;
3673
+ declare const index_ALLSCOPES_PACKAGING: typeof ALLSCOPES_PACKAGING;
3674
+ declare const index_ALLSCOPES_PHARMA: typeof ALLSCOPES_PHARMA;
3675
+ declare const index_ALLSCOPES_POLYMER: typeof ALLSCOPES_POLYMER;
3676
+ declare const index_ALLSCOPES_REAL_ESTATE: typeof ALLSCOPES_REAL_ESTATE;
3677
+ declare const index_ALLSCOPES_STEEL: typeof ALLSCOPES_STEEL;
3678
+ declare const index_ALLSCOPES_TELECOMMUNICATIONS: typeof ALLSCOPES_TELECOMMUNICATIONS;
3679
+ declare const index_ALL_SCOPES_3_ALLOY: typeof ALL_SCOPES_3_ALLOY;
3680
+ declare const index_ALL_SCOPES_3_ALUMINUM: typeof ALL_SCOPES_3_ALUMINUM;
3681
+ declare const index_ALL_SCOPES_3_AUTOMOBILE: typeof ALL_SCOPES_3_AUTOMOBILE;
3682
+ declare const index_ALL_SCOPES_3_AVIATION: typeof ALL_SCOPES_3_AVIATION;
3683
+ declare const index_ALL_SCOPES_3_BATTERY_EV: typeof ALL_SCOPES_3_BATTERY_EV;
3684
+ declare const index_ALL_SCOPES_3_CEMENT: typeof ALL_SCOPES_3_CEMENT;
3685
+ declare const index_ALL_SCOPES_3_CHEMICAL: typeof ALL_SCOPES_3_CHEMICAL;
3686
+ declare const index_ALL_SCOPES_3_CONSTRUCTION: typeof ALL_SCOPES_3_CONSTRUCTION;
3687
+ declare const index_ALL_SCOPES_3_FOOD: typeof ALL_SCOPES_3_FOOD;
3688
+ declare const index_ALL_SCOPES_3_LOGISTICS: typeof ALL_SCOPES_3_LOGISTICS;
3689
+ declare const index_ALL_SCOPES_3_MANUFACTURING: typeof ALL_SCOPES_3_MANUFACTURING;
3690
+ declare const index_ALL_SCOPES_3_METAL: typeof ALL_SCOPES_3_METAL;
3691
+ declare const index_ALL_SCOPES_3_PACKAGING: typeof ALL_SCOPES_3_PACKAGING;
3692
+ declare const index_ALL_SCOPES_3_PETRO_CHEMICAL: typeof ALL_SCOPES_3_PETRO_CHEMICAL;
3693
+ declare const index_ALL_SCOPES_3_PHARMA: typeof ALL_SCOPES_3_PHARMA;
3694
+ declare const index_ALL_SCOPES_3_POLYMER: typeof ALL_SCOPES_3_POLYMER;
3695
+ declare const index_ALL_SCOPES_3_REAL_ESTATE: typeof ALL_SCOPES_3_REAL_ESTATE;
3696
+ declare const index_ALL_SCOPES_3_SHIPPING: typeof ALL_SCOPES_3_SHIPPING;
3697
+ declare const index_ALL_SCOPES_3_STEEL: typeof ALL_SCOPES_3_STEEL;
3698
+ declare const index_ALL_SCOPES_3_TELECOMMUNICATIONS: typeof ALL_SCOPES_3_TELECOMMUNICATIONS;
3699
+ declare const index_ALL_SCOPES_3_TEXTILE: typeof ALL_SCOPES_3_TEXTILE;
3700
+ declare const index_ALL_SCOPES_3_UTILITIES: typeof ALL_SCOPES_3_UTILITIES;
3701
+ declare const index_BUSINESS_TRAVEL_AIR_PRODUCTS: typeof BUSINESS_TRAVEL_AIR_PRODUCTS;
3702
+ declare const index_BUSINESS_TRAVEL_GAS_LAB: typeof BUSINESS_TRAVEL_GAS_LAB;
3703
+ declare const index_BUSINESS_TRAVEL_GROUND_PRODUCTS: typeof BUSINESS_TRAVEL_GROUND_PRODUCTS;
3704
+ declare const index_BUSINESS_TRAVEL_POLYMER: typeof BUSINESS_TRAVEL_POLYMER;
3705
+ declare const index_CALCINATION_PROCESS_PRODUCTS: typeof CALCINATION_PROCESS_PRODUCTS;
3706
+ declare const index_CCTS_1: typeof CCTS_1;
3707
+ declare const index_CCTS_2: typeof CCTS_2;
3708
+ declare const index_CEMENT_INDUSTRY_CONFIG: typeof CEMENT_INDUSTRY_CONFIG;
3709
+ declare const index_CHEMICAL_PROCESS_PRODUCTS: typeof CHEMICAL_PROCESS_PRODUCTS;
3710
+ declare const index_CLINKER_PRODUCTION: typeof CLINKER_PRODUCTION;
3711
+ declare const index_DIESEL_GENERATOR_GAS_LAB: typeof DIESEL_GENERATOR_GAS_LAB;
3712
+ declare const index_DOWNSTREAM_TRANSPORTATION_GAS_LAB: typeof DOWNSTREAM_TRANSPORTATION_GAS_LAB;
3713
+ declare const index_ELECTRICITY_CONSUMED_PRODUCTS: typeof ELECTRICITY_CONSUMED_PRODUCTS;
3714
+ declare const index_EMPLOYEE_COMMUTE_GAS_LAB: typeof EMPLOYEE_COMMUTE_GAS_LAB;
3715
+ declare const index_EMPLOYEE_COMMUTING_CAR_PRODUCTS: typeof EMPLOYEE_COMMUTING_CAR_PRODUCTS;
3716
+ declare const index_EMPLOYEE_COMMUTING_EMISSIONS: typeof EMPLOYEE_COMMUTING_EMISSIONS;
3717
+ declare const index_EMPLOYEE_COMMUTING_POLYMER: typeof EMPLOYEE_COMMUTING_POLYMER;
3718
+ declare const index_EMPLOYEE_COMMUTING_PUBLIC_TRANSPORT_PRODUCTS: typeof EMPLOYEE_COMMUTING_PUBLIC_TRANSPORT_PRODUCTS;
3719
+ declare const index_EMPLOYEE_COMMUTING_TWO_WHEELER_PRODUCTS: typeof EMPLOYEE_COMMUTING_TWO_WHEELER_PRODUCTS;
3720
+ declare const index_ENERGY_SOURCE: typeof ENERGY_SOURCE;
3721
+ declare const index_FIRE_EXTINGUISHER_PRODUCTS_POLYMER: typeof FIRE_EXTINGUISHER_PRODUCTS_POLYMER;
3722
+ declare const index_FUEL_AND_ENERGY_RELATED_ACTIVITIES: typeof FUEL_AND_ENERGY_RELATED_ACTIVITIES;
3723
+ declare const index_FUEL_COMBUSTION_GAS_LAB: typeof FUEL_COMBUSTION_GAS_LAB;
3724
+ declare const index_FUEL_COMBUSTION_PRODUCTS_POLYMER: typeof FUEL_COMBUSTION_PRODUCTS_POLYMER;
3725
+ declare const index_FUEL_COMBUSTION_PYRO_PROCESS_PRODUCTS: typeof FUEL_COMBUSTION_PYRO_PROCESS_PRODUCTS;
3726
+ declare const index_FUEL_ENERGY_RELATED_POLYMER: typeof FUEL_ENERGY_RELATED_POLYMER;
3727
+ declare const index_FUEL_PRODUCTS: typeof FUEL_PRODUCTS;
3728
+ declare const index_GROUND_TRANSPORTATION_EMISSIONS: typeof GROUND_TRANSPORTATION_EMISSIONS;
3729
+ declare const index_ISO_CATEGORIES_PACKAGING: typeof ISO_CATEGORIES_PACKAGING;
3730
+ declare const index_LOCATION_BASED_ELECTRICITY_GAS_LAB: typeof LOCATION_BASED_ELECTRICITY_GAS_LAB;
3731
+ declare const index_LPG_PRODUCTS: typeof LPG_PRODUCTS;
3732
+ declare const index_LPG_PRODUCTS_GAS_LAB: typeof LPG_PRODUCTS_GAS_LAB;
3733
+ declare const index_LPG_USAGE_PRODUCTS_POLYMER: typeof LPG_USAGE_PRODUCTS_POLYMER;
3734
+ declare const index_MAINTENANCE_MATERIALS_PRODUCTS: typeof MAINTENANCE_MATERIALS_PRODUCTS;
3735
+ declare const index_MANUFACTURING_PROCESS_PRODUCTS: typeof MANUFACTURING_PROCESS_PRODUCTS;
3736
+ declare const index_MARKET_BASED_ELECTRICITY_GAS_LAB: typeof MARKET_BASED_ELECTRICITY_GAS_LAB;
3737
+ declare const index_MINING_OPERATIONS: typeof MINING_OPERATIONS;
3738
+ declare const index_MINING_OPERATIONS_PRODUCTS: typeof MINING_OPERATIONS_PRODUCTS;
3739
+ declare const index_MOBILE_COMBUSTION_PRODUCTS: typeof MOBILE_COMBUSTION_PRODUCTS;
3740
+ declare const index_ONSITE_POWER_GENERATION: typeof ONSITE_POWER_GENERATION;
3741
+ declare const index_ON_SITE_POWER_PRODUCTS: typeof ON_SITE_POWER_PRODUCTS;
3742
+ declare const index_OPERATIONS_PRODUCTS: typeof OPERATIONS_PRODUCTS;
3743
+ declare const index_OPERATION_PRODUCTS: typeof OPERATION_PRODUCTS;
3744
+ declare const index_PACKAGING_MATERIALS_PRODUCTS: typeof PACKAGING_MATERIALS_PRODUCTS;
3745
+ declare const index_PURCHASED_GOODS_AND_SERVICES_POLYMER: typeof PURCHASED_GOODS_AND_SERVICES_POLYMER;
3746
+ declare const index_PURCHASED_GOODS_GAS_LAB: typeof PURCHASED_GOODS_GAS_LAB;
3747
+ declare const index_PURCHASED_HEAT_STEAM_COOLING_PRODUCTS: typeof PURCHASED_HEAT_STEAM_COOLING_PRODUCTS;
3748
+ declare const index_RAW_MATERIALS_PRODUCTS: typeof RAW_MATERIALS_PRODUCTS;
3749
+ declare const index_REFRIGERANT_PRODUCTS_POLYMER: typeof REFRIGERANT_PRODUCTS_POLYMER;
3750
+ declare const index_SCOPE1_ALLOY: typeof SCOPE1_ALLOY;
3751
+ declare const index_SCOPE1_ALUMINUM: typeof SCOPE1_ALUMINUM;
3752
+ declare const index_SCOPE1_AUTOMOBILE: typeof SCOPE1_AUTOMOBILE;
3753
+ declare const index_SCOPE1_AVIATION: typeof SCOPE1_AVIATION;
3754
+ declare const index_SCOPE1_BATTERY_EV: typeof SCOPE1_BATTERY_EV;
3755
+ declare const index_SCOPE1_CEMENT: typeof SCOPE1_CEMENT;
3756
+ declare const index_SCOPE1_CHEMICAL: typeof SCOPE1_CHEMICAL;
3757
+ declare const index_SCOPE1_CONSTRUCTION: typeof SCOPE1_CONSTRUCTION;
3758
+ declare const index_SCOPE1_FOOD: typeof SCOPE1_FOOD;
3759
+ declare const index_SCOPE1_GAS_LAB: typeof SCOPE1_GAS_LAB;
3760
+ declare const index_SCOPE1_HOSPITALITY: typeof SCOPE1_HOSPITALITY;
3761
+ declare const index_SCOPE1_LOGISTICS: typeof SCOPE1_LOGISTICS;
3762
+ declare const index_SCOPE1_MANUFACTURING: typeof SCOPE1_MANUFACTURING;
3763
+ declare const index_SCOPE1_METAL: typeof SCOPE1_METAL;
3764
+ declare const index_SCOPE1_PACKAGING: typeof SCOPE1_PACKAGING;
3765
+ declare const index_SCOPE1_PETRO_CHEMICAL: typeof SCOPE1_PETRO_CHEMICAL;
3766
+ declare const index_SCOPE1_PHARMA: typeof SCOPE1_PHARMA;
3767
+ declare const index_SCOPE1_POLYMER: typeof SCOPE1_POLYMER;
3768
+ declare const index_SCOPE1_REAL_ESTATE: typeof SCOPE1_REAL_ESTATE;
3769
+ declare const index_SCOPE1_SHIPPING: typeof SCOPE1_SHIPPING;
3770
+ declare const index_SCOPE1_STEEL: typeof SCOPE1_STEEL;
3771
+ declare const index_SCOPE1_TELECOMMUNICATIONS: typeof SCOPE1_TELECOMMUNICATIONS;
3772
+ declare const index_SCOPE1_TEXTILE: typeof SCOPE1_TEXTILE;
3773
+ declare const index_SCOPE1_UTILITIES: typeof SCOPE1_UTILITIES;
3774
+ declare const index_SCOPE2_ALLOY: typeof SCOPE2_ALLOY;
3775
+ declare const index_SCOPE2_ALUMINUM: typeof SCOPE2_ALUMINUM;
3776
+ declare const index_SCOPE2_AUTOMOBILE: typeof SCOPE2_AUTOMOBILE;
3777
+ declare const index_SCOPE2_AVIATION: typeof SCOPE2_AVIATION;
3778
+ declare const index_SCOPE2_BATTERY_EV: typeof SCOPE2_BATTERY_EV;
3779
+ declare const index_SCOPE2_CEMENT: typeof SCOPE2_CEMENT;
3780
+ declare const index_SCOPE2_CHEMICAL: typeof SCOPE2_CHEMICAL;
3781
+ declare const index_SCOPE2_CONSTRUCTION: typeof SCOPE2_CONSTRUCTION;
3782
+ declare const index_SCOPE2_FOOD: typeof SCOPE2_FOOD;
3783
+ declare const index_SCOPE2_GAS_LAB: typeof SCOPE2_GAS_LAB;
3784
+ declare const index_SCOPE2_HOSPITALITY: typeof SCOPE2_HOSPITALITY;
3785
+ declare const index_SCOPE2_LOGISTICS: typeof SCOPE2_LOGISTICS;
3786
+ declare const index_SCOPE2_MANUFACTURING: typeof SCOPE2_MANUFACTURING;
3787
+ declare const index_SCOPE2_METAL: typeof SCOPE2_METAL;
3788
+ declare const index_SCOPE2_PACKAGING: typeof SCOPE2_PACKAGING;
3789
+ declare const index_SCOPE2_PETRO_CHEMICAL: typeof SCOPE2_PETRO_CHEMICAL;
3790
+ declare const index_SCOPE2_PHARMA: typeof SCOPE2_PHARMA;
3791
+ declare const index_SCOPE2_POLYMER: typeof SCOPE2_POLYMER;
3792
+ declare const index_SCOPE2_REAL_ESTATE: typeof SCOPE2_REAL_ESTATE;
3793
+ declare const index_SCOPE2_SHIPPING: typeof SCOPE2_SHIPPING;
3794
+ declare const index_SCOPE2_STEEL: typeof SCOPE2_STEEL;
3795
+ declare const index_SCOPE2_TELECOMMUNICATIONS: typeof SCOPE2_TELECOMMUNICATIONS;
3796
+ declare const index_SCOPE2_TEXTILE: typeof SCOPE2_TEXTILE;
3797
+ declare const index_SCOPE2_UTILITIES: typeof SCOPE2_UTILITIES;
3798
+ declare const index_SCOPE3_GAS_LAB: typeof SCOPE3_GAS_LAB;
3799
+ declare const index_SCOPE3_HOSPITALITY: typeof SCOPE3_HOSPITALITY;
3800
+ declare const index_SF6_USAGE_PRODUCTS_POLYMER: typeof SF6_USAGE_PRODUCTS_POLYMER;
3801
+ declare const index_STATIONARY_COMBUSTION_PRODUCTS: typeof STATIONARY_COMBUSTION_PRODUCTS;
3802
+ declare const index_TD_LOSSES_ELECTRICITY_PRODUCTS: typeof TD_LOSSES_ELECTRICITY_PRODUCTS;
3803
+ declare const index_TRAVEL_EMISSIONS: typeof TRAVEL_EMISSIONS;
3804
+ declare const index_UPSTREAM_FUEL_EMISSIONS_PRODUCTS: typeof UPSTREAM_FUEL_EMISSIONS_PRODUCTS;
3805
+ declare const index_UPSTREAM_TRANSPORTATION_GAS_LAB: typeof UPSTREAM_TRANSPORTATION_GAS_LAB;
3806
+ declare const index_UPSTREAM_TRANSPORTATION_POLYMER: typeof UPSTREAM_TRANSPORTATION_POLYMER;
3807
+ declare const index_UPSTREAM_TRANSPORTATION_PRODUCTS: typeof UPSTREAM_TRANSPORTATION_PRODUCTS;
3808
+ declare const index_WASTE_FROM_OPERATIONS: typeof WASTE_FROM_OPERATIONS;
3809
+ declare const index_WASTE_GENERATED_GAS_LAB: typeof WASTE_GENERATED_GAS_LAB;
3810
+ declare const index_WASTE_GENERATED_IN_OPERATIONS: typeof WASTE_GENERATED_IN_OPERATIONS;
3811
+ declare const index_WASTE_GENERATED_PRODUCTS: typeof WASTE_GENERATED_PRODUCTS;
3812
+ declare const index_WASTE_OPERATIONS_POLYMER: typeof WASTE_OPERATIONS_POLYMER;
3813
+ declare const index_WATER_CONSUMPTION_EMISSIONS: typeof WATER_CONSUMPTION_EMISSIONS;
3814
+ declare const index_WATER_DISCHARGE_PRODUCTS: typeof WATER_DISCHARGE_PRODUCTS;
3815
+ declare const index_WATER_MANAGEMENT: typeof WATER_MANAGEMENT;
3816
+ declare const index_WATER_MANAGEMENT_GAS_LAB: typeof WATER_MANAGEMENT_GAS_LAB;
3817
+ declare const index_WATER_MANAGEMENT_SCOPE: typeof WATER_MANAGEMENT_SCOPE;
3818
+ declare const index_WATER_PRODUCTS_GAS_LAB: typeof WATER_PRODUCTS_GAS_LAB;
3819
+ declare const index_WATER_USAGE_POLYMER: typeof WATER_USAGE_POLYMER;
3820
+ declare const index_WATER_USAGE_PRODUCTS: typeof WATER_USAGE_PRODUCTS;
3821
+ declare const index_WELDING_PRODUCTS_GAS_LAB: typeof WELDING_PRODUCTS_GAS_LAB;
3822
+ declare const index_getEndpointConfig: typeof getEndpointConfig;
3823
+ declare const index_getIndustryConfig: typeof getIndustryConfig;
3824
+ declare const index_getUserNameScope1Config: typeof getUserNameScope1Config;
3825
+ declare const index_getUserNameScope2Config: typeof getUserNameScope2Config;
3826
+ declare const index_getUserNameScope3Config: typeof getUserNameScope3Config;
3827
+ declare namespace index {
3828
+ export {
3829
+ index_ALLSCOPES_ALLOY as ALLSCOPES_ALLOY,
3830
+ index_ALLSCOPES_ALUMINUM as ALLSCOPES_ALUMINUM,
3831
+ index_ALLSCOPES_AUTOMOBILE as ALLSCOPES_AUTOMOBILE,
3832
+ index_ALLSCOPES_AVIATION as ALLSCOPES_AVIATION,
3833
+ index_ALLSCOPES_BATTERY_EV as ALLSCOPES_BATTERY_EV,
3834
+ index_ALLSCOPES_CEMENT as ALLSCOPES_CEMENT,
3835
+ index_ALLSCOPES_CHEMICAL as ALLSCOPES_CHEMICAL,
3836
+ index_ALLSCOPES_CONSTRUCTION as ALLSCOPES_CONSTRUCTION,
3837
+ index_ALLSCOPES_HOSPITALITY as ALLSCOPES_HOSPITALITY,
3838
+ index_ALLSCOPES_MANUFACTURING as ALLSCOPES_MANUFACTURING,
3839
+ index_ALLSCOPES_PACKAGING as ALLSCOPES_PACKAGING,
3840
+ index_ALLSCOPES_PHARMA as ALLSCOPES_PHARMA,
3841
+ index_ALLSCOPES_POLYMER as ALLSCOPES_POLYMER,
3842
+ index_ALLSCOPES_REAL_ESTATE as ALLSCOPES_REAL_ESTATE,
3843
+ index_ALLSCOPES_STEEL as ALLSCOPES_STEEL,
3844
+ index_ALLSCOPES_TELECOMMUNICATIONS as ALLSCOPES_TELECOMMUNICATIONS,
3845
+ index_ALL_SCOPES_3_ALLOY as ALL_SCOPES_3_ALLOY,
3846
+ index_ALL_SCOPES_3_ALUMINUM as ALL_SCOPES_3_ALUMINUM,
3847
+ index_ALL_SCOPES_3_AUTOMOBILE as ALL_SCOPES_3_AUTOMOBILE,
3848
+ index_ALL_SCOPES_3_AVIATION as ALL_SCOPES_3_AVIATION,
3849
+ index_ALL_SCOPES_3_BATTERY_EV as ALL_SCOPES_3_BATTERY_EV,
3850
+ index_ALL_SCOPES_3_CEMENT as ALL_SCOPES_3_CEMENT,
3851
+ index_ALL_SCOPES_3_CHEMICAL as ALL_SCOPES_3_CHEMICAL,
3852
+ index_ALL_SCOPES_3_CONSTRUCTION as ALL_SCOPES_3_CONSTRUCTION,
3853
+ index_ALL_SCOPES_3_FOOD as ALL_SCOPES_3_FOOD,
3854
+ index_ALL_SCOPES_3_LOGISTICS as ALL_SCOPES_3_LOGISTICS,
3855
+ index_ALL_SCOPES_3_MANUFACTURING as ALL_SCOPES_3_MANUFACTURING,
3856
+ index_ALL_SCOPES_3_METAL as ALL_SCOPES_3_METAL,
3857
+ index_ALL_SCOPES_3_PACKAGING as ALL_SCOPES_3_PACKAGING,
3858
+ index_ALL_SCOPES_3_PETRO_CHEMICAL as ALL_SCOPES_3_PETRO_CHEMICAL,
3859
+ index_ALL_SCOPES_3_PHARMA as ALL_SCOPES_3_PHARMA,
3860
+ index_ALL_SCOPES_3_POLYMER as ALL_SCOPES_3_POLYMER,
3861
+ index_ALL_SCOPES_3_REAL_ESTATE as ALL_SCOPES_3_REAL_ESTATE,
3862
+ index_ALL_SCOPES_3_SHIPPING as ALL_SCOPES_3_SHIPPING,
3863
+ index_ALL_SCOPES_3_STEEL as ALL_SCOPES_3_STEEL,
3864
+ index_ALL_SCOPES_3_TELECOMMUNICATIONS as ALL_SCOPES_3_TELECOMMUNICATIONS,
3865
+ index_ALL_SCOPES_3_TEXTILE as ALL_SCOPES_3_TEXTILE,
3866
+ index_ALL_SCOPES_3_UTILITIES as ALL_SCOPES_3_UTILITIES,
3867
+ index_BUSINESS_TRAVEL_AIR_PRODUCTS as BUSINESS_TRAVEL_AIR_PRODUCTS,
3868
+ index_BUSINESS_TRAVEL_GAS_LAB as BUSINESS_TRAVEL_GAS_LAB,
3869
+ index_BUSINESS_TRAVEL_GROUND_PRODUCTS as BUSINESS_TRAVEL_GROUND_PRODUCTS,
3870
+ index_BUSINESS_TRAVEL_POLYMER as BUSINESS_TRAVEL_POLYMER,
3871
+ index_CALCINATION_PROCESS_PRODUCTS as CALCINATION_PROCESS_PRODUCTS,
3872
+ index_CCTS_1 as CCTS_1,
3873
+ index_CCTS_2 as CCTS_2,
3874
+ index_CEMENT_INDUSTRY_CONFIG as CEMENT_INDUSTRY_CONFIG,
3875
+ index_CHEMICAL_PROCESS_PRODUCTS as CHEMICAL_PROCESS_PRODUCTS,
3876
+ index_CLINKER_PRODUCTION as CLINKER_PRODUCTION,
3877
+ index_DIESEL_GENERATOR_GAS_LAB as DIESEL_GENERATOR_GAS_LAB,
3878
+ index_DOWNSTREAM_TRANSPORTATION_GAS_LAB as DOWNSTREAM_TRANSPORTATION_GAS_LAB,
3879
+ index_ELECTRICITY_CONSUMED_PRODUCTS as ELECTRICITY_CONSUMED_PRODUCTS,
3880
+ index_EMPLOYEE_COMMUTE_GAS_LAB as EMPLOYEE_COMMUTE_GAS_LAB,
3881
+ index_EMPLOYEE_COMMUTING_CAR_PRODUCTS as EMPLOYEE_COMMUTING_CAR_PRODUCTS,
3882
+ index_EMPLOYEE_COMMUTING_EMISSIONS as EMPLOYEE_COMMUTING_EMISSIONS,
3883
+ index_EMPLOYEE_COMMUTING_POLYMER as EMPLOYEE_COMMUTING_POLYMER,
3884
+ index_EMPLOYEE_COMMUTING_PUBLIC_TRANSPORT_PRODUCTS as EMPLOYEE_COMMUTING_PUBLIC_TRANSPORT_PRODUCTS,
3885
+ index_EMPLOYEE_COMMUTING_TWO_WHEELER_PRODUCTS as EMPLOYEE_COMMUTING_TWO_WHEELER_PRODUCTS,
3886
+ index_ENERGY_SOURCE as ENERGY_SOURCE,
3887
+ index_FIRE_EXTINGUISHER_PRODUCTS_POLYMER as FIRE_EXTINGUISHER_PRODUCTS_POLYMER,
3888
+ index_FUEL_AND_ENERGY_RELATED_ACTIVITIES as FUEL_AND_ENERGY_RELATED_ACTIVITIES,
3889
+ index_FUEL_COMBUSTION_GAS_LAB as FUEL_COMBUSTION_GAS_LAB,
3890
+ index_FUEL_COMBUSTION_PRODUCTS_POLYMER as FUEL_COMBUSTION_PRODUCTS_POLYMER,
3891
+ index_FUEL_COMBUSTION_PYRO_PROCESS_PRODUCTS as FUEL_COMBUSTION_PYRO_PROCESS_PRODUCTS,
3892
+ index_FUEL_ENERGY_RELATED_POLYMER as FUEL_ENERGY_RELATED_POLYMER,
3893
+ index_FUEL_PRODUCTS as FUEL_PRODUCTS,
3894
+ index_GROUND_TRANSPORTATION_EMISSIONS as GROUND_TRANSPORTATION_EMISSIONS,
3895
+ index_ISO_CATEGORIES_PACKAGING as ISO_CATEGORIES_PACKAGING,
3896
+ index_LOCATION_BASED_ELECTRICITY_GAS_LAB as LOCATION_BASED_ELECTRICITY_GAS_LAB,
3897
+ index_LPG_PRODUCTS as LPG_PRODUCTS,
3898
+ index_LPG_PRODUCTS_GAS_LAB as LPG_PRODUCTS_GAS_LAB,
3899
+ index_LPG_USAGE_PRODUCTS_POLYMER as LPG_USAGE_PRODUCTS_POLYMER,
3900
+ index_MAINTENANCE_MATERIALS_PRODUCTS as MAINTENANCE_MATERIALS_PRODUCTS,
3901
+ index_MANUFACTURING_PROCESS_PRODUCTS as MANUFACTURING_PROCESS_PRODUCTS,
3902
+ index_MARKET_BASED_ELECTRICITY_GAS_LAB as MARKET_BASED_ELECTRICITY_GAS_LAB,
3903
+ index_MINING_OPERATIONS as MINING_OPERATIONS,
3904
+ index_MINING_OPERATIONS_PRODUCTS as MINING_OPERATIONS_PRODUCTS,
3905
+ index_MOBILE_COMBUSTION_PRODUCTS as MOBILE_COMBUSTION_PRODUCTS,
3906
+ index_ONSITE_POWER_GENERATION as ONSITE_POWER_GENERATION,
3907
+ index_ON_SITE_POWER_PRODUCTS as ON_SITE_POWER_PRODUCTS,
3908
+ index_OPERATIONS_PRODUCTS as OPERATIONS_PRODUCTS,
3909
+ index_OPERATION_PRODUCTS as OPERATION_PRODUCTS,
3910
+ index_PACKAGING_MATERIALS_PRODUCTS as PACKAGING_MATERIALS_PRODUCTS,
3911
+ index_PURCHASED_GOODS_AND_SERVICES_POLYMER as PURCHASED_GOODS_AND_SERVICES_POLYMER,
3912
+ index_PURCHASED_GOODS_GAS_LAB as PURCHASED_GOODS_GAS_LAB,
3913
+ index_PURCHASED_HEAT_STEAM_COOLING_PRODUCTS as PURCHASED_HEAT_STEAM_COOLING_PRODUCTS,
3914
+ index_RAW_MATERIALS_PRODUCTS as RAW_MATERIALS_PRODUCTS,
3915
+ index_REFRIGERANT_PRODUCTS_POLYMER as REFRIGERANT_PRODUCTS_POLYMER,
3916
+ index_SCOPE1_ALLOY as SCOPE1_ALLOY,
3917
+ index_SCOPE1_ALUMINUM as SCOPE1_ALUMINUM,
3918
+ index_SCOPE1_AUTOMOBILE as SCOPE1_AUTOMOBILE,
3919
+ index_SCOPE1_AVIATION as SCOPE1_AVIATION,
3920
+ index_SCOPE1_BATTERY_EV as SCOPE1_BATTERY_EV,
3921
+ index_SCOPE1_CEMENT as SCOPE1_CEMENT,
3922
+ index_SCOPE1_CHEMICAL as SCOPE1_CHEMICAL,
3923
+ index_SCOPE1_CONSTRUCTION as SCOPE1_CONSTRUCTION,
3924
+ index_SCOPE1_FOOD as SCOPE1_FOOD,
3925
+ index_SCOPE1_GAS_LAB as SCOPE1_GAS_LAB,
3926
+ index_SCOPE1_HOSPITALITY as SCOPE1_HOSPITALITY,
3927
+ index_SCOPE1_LOGISTICS as SCOPE1_LOGISTICS,
3928
+ index_SCOPE1_MANUFACTURING as SCOPE1_MANUFACTURING,
3929
+ index_SCOPE1_METAL as SCOPE1_METAL,
3930
+ index_SCOPE1_PACKAGING as SCOPE1_PACKAGING,
3931
+ index_SCOPE1_PETRO_CHEMICAL as SCOPE1_PETRO_CHEMICAL,
3932
+ index_SCOPE1_PHARMA as SCOPE1_PHARMA,
3933
+ index_SCOPE1_POLYMER as SCOPE1_POLYMER,
3934
+ index_SCOPE1_REAL_ESTATE as SCOPE1_REAL_ESTATE,
3935
+ index_SCOPE1_SHIPPING as SCOPE1_SHIPPING,
3936
+ index_SCOPE1_STEEL as SCOPE1_STEEL,
3937
+ index_SCOPE1_TELECOMMUNICATIONS as SCOPE1_TELECOMMUNICATIONS,
3938
+ index_SCOPE1_TEXTILE as SCOPE1_TEXTILE,
3939
+ index_SCOPE1_UTILITIES as SCOPE1_UTILITIES,
3940
+ index_SCOPE2_ALLOY as SCOPE2_ALLOY,
3941
+ index_SCOPE2_ALUMINUM as SCOPE2_ALUMINUM,
3942
+ index_SCOPE2_AUTOMOBILE as SCOPE2_AUTOMOBILE,
3943
+ index_SCOPE2_AVIATION as SCOPE2_AVIATION,
3944
+ index_SCOPE2_BATTERY_EV as SCOPE2_BATTERY_EV,
3945
+ index_SCOPE2_CEMENT as SCOPE2_CEMENT,
3946
+ index_SCOPE2_CHEMICAL as SCOPE2_CHEMICAL,
3947
+ index_SCOPE2_CONSTRUCTION as SCOPE2_CONSTRUCTION,
3948
+ index_SCOPE2_FOOD as SCOPE2_FOOD,
3949
+ index_SCOPE2_GAS_LAB as SCOPE2_GAS_LAB,
3950
+ index_SCOPE2_HOSPITALITY as SCOPE2_HOSPITALITY,
3951
+ index_SCOPE2_LOGISTICS as SCOPE2_LOGISTICS,
3952
+ index_SCOPE2_MANUFACTURING as SCOPE2_MANUFACTURING,
3953
+ index_SCOPE2_METAL as SCOPE2_METAL,
3954
+ index_SCOPE2_PACKAGING as SCOPE2_PACKAGING,
3955
+ index_SCOPE2_PETRO_CHEMICAL as SCOPE2_PETRO_CHEMICAL,
3956
+ index_SCOPE2_PHARMA as SCOPE2_PHARMA,
3957
+ index_SCOPE2_POLYMER as SCOPE2_POLYMER,
3958
+ index_SCOPE2_REAL_ESTATE as SCOPE2_REAL_ESTATE,
3959
+ index_SCOPE2_SHIPPING as SCOPE2_SHIPPING,
3960
+ index_SCOPE2_STEEL as SCOPE2_STEEL,
3961
+ index_SCOPE2_TELECOMMUNICATIONS as SCOPE2_TELECOMMUNICATIONS,
3962
+ index_SCOPE2_TEXTILE as SCOPE2_TEXTILE,
3963
+ index_SCOPE2_UTILITIES as SCOPE2_UTILITIES,
3964
+ index_SCOPE3_GAS_LAB as SCOPE3_GAS_LAB,
3965
+ index_SCOPE3_HOSPITALITY as SCOPE3_HOSPITALITY,
3966
+ index_SF6_USAGE_PRODUCTS_POLYMER as SF6_USAGE_PRODUCTS_POLYMER,
3967
+ index_STATIONARY_COMBUSTION_PRODUCTS as STATIONARY_COMBUSTION_PRODUCTS,
3968
+ index_TD_LOSSES_ELECTRICITY_PRODUCTS as TD_LOSSES_ELECTRICITY_PRODUCTS,
3969
+ index_TRAVEL_EMISSIONS as TRAVEL_EMISSIONS,
3970
+ index_UPSTREAM_FUEL_EMISSIONS_PRODUCTS as UPSTREAM_FUEL_EMISSIONS_PRODUCTS,
3971
+ index_UPSTREAM_TRANSPORTATION_GAS_LAB as UPSTREAM_TRANSPORTATION_GAS_LAB,
3972
+ index_UPSTREAM_TRANSPORTATION_POLYMER as UPSTREAM_TRANSPORTATION_POLYMER,
3973
+ index_UPSTREAM_TRANSPORTATION_PRODUCTS as UPSTREAM_TRANSPORTATION_PRODUCTS,
3974
+ index_WASTE_FROM_OPERATIONS as WASTE_FROM_OPERATIONS,
3975
+ index_WASTE_GENERATED_GAS_LAB as WASTE_GENERATED_GAS_LAB,
3976
+ index_WASTE_GENERATED_IN_OPERATIONS as WASTE_GENERATED_IN_OPERATIONS,
3977
+ index_WASTE_GENERATED_PRODUCTS as WASTE_GENERATED_PRODUCTS,
3978
+ index_WASTE_OPERATIONS_POLYMER as WASTE_OPERATIONS_POLYMER,
3979
+ index_WATER_CONSUMPTION_EMISSIONS as WATER_CONSUMPTION_EMISSIONS,
3980
+ index_WATER_DISCHARGE_PRODUCTS as WATER_DISCHARGE_PRODUCTS,
3981
+ index_WATER_MANAGEMENT as WATER_MANAGEMENT,
3982
+ index_WATER_MANAGEMENT_GAS_LAB as WATER_MANAGEMENT_GAS_LAB,
3983
+ index_WATER_MANAGEMENT_SCOPE as WATER_MANAGEMENT_SCOPE,
3984
+ index_WATER_PRODUCTS_GAS_LAB as WATER_PRODUCTS_GAS_LAB,
3985
+ index_WATER_USAGE_POLYMER as WATER_USAGE_POLYMER,
3986
+ index_WATER_USAGE_PRODUCTS as WATER_USAGE_PRODUCTS,
3987
+ index_WELDING_PRODUCTS_GAS_LAB as WELDING_PRODUCTS_GAS_LAB,
3988
+ index_getEndpointConfig as getEndpointConfig,
3989
+ index_getIndustryConfig as getIndustryConfig,
3990
+ index_getUserNameScope1Config as getUserNameScope1Config,
3991
+ index_getUserNameScope2Config as getUserNameScope2Config,
3992
+ index_getUserNameScope3Config as getUserNameScope3Config,
3993
+ };
3994
+ }
3995
+
3996
+ export { API_ENDPOINTS, API_SCOPE3_CEMENT_CONFIG, CARBON_INTENSITY_FIELD_MAPPINGS, CCTS_ALLSCOPES_CEMENT, CCTS_CALCINATION_PRODUCTS, CCTS_ELECTRICITY_PRODUCTS, CCTS_FIRE_EXTINGUISHER_PRODUCTS, CCTS_FUEL_COMBUSTION_PRODUCTS, CCTS_LPG_PRODUCTS, CCTS_MINING_OPERATIONS_PRODUCTS, CCTS_ONSITE_POWER_PRODUCTS, CCTS_PURCHASED_ELECTRICITY, CCTS_REFRIGERANTS, CCTS_SCOPE1_CEMENT, CCTS_SCOPE2_CEMENT, CCTS_SF6_PRODUCTS, CCTS_TABLE_COLUMNS, EmissionSourceGenerator, FRONTEND_INDUSTRY_CONFIGS, HTTP_STATUS, INDUSTRIES_CONFIG, INDUSTRY_MAPPING, INDUSTRY_SPECIFIC_FIELDS, INTENSITY_FIELD_LABELS, index as Industries, UI_FEATURES, calculateCCTSEmission, calculateIntensityMetrics, categorizeApiItem, createCapitalizedMonthMapping, createEmissionSourceGenerator, createMonthMapping, debugCarbonIntensityMapping, extractCarbonIntensityData, formatEmissionValue, formatIntensityValue, formatKPIEmission, formatMonthlyEmission, formatPercentage, getApiIndustryType, getAvailableFieldsForIndustry, getIndustryConfig$1 as getIndustryConfig, getIndustryFieldConfig, getIntensityFormulas, getNestedValue, getPlantNameConfig, getScope3ConfigByName, getUserNameWaterManagementConfig, hasIntensities, mapIndustryToApiType, supportsIntensityCalculations, validateCarbonIntensityData };
3997
+ export type { AlloyRequest, AlloyResponse, AluminiumRequest, AluminiumResponse, ApiEndpointConfig, ApiResponse, AutomobileRequest, AutomobileResponse, AviationRequest, AviationResponse, BaseRequest, BaseResponse, Bill, BusinessTravelEmission, BusinessTravelEmissionAttributes, BusinessTravelEmissionsResponse, CarbonIntensityApiMapping, CarbonIntensityRequest, CarbonIntensityResponse, ChemicalRequest, ChemicalResponse, DetailedCarbonIntensityResponse, EditableItem, EmissionSource, Emissions$j as Emissions, EmissionsDataAttributes, EmissionsDataResponse, FieldConfig, FieldOption, FieldType, FoodBeveragesRequest, FoodBeveragesResponse, FormData, FormValidationResult, HospitalityRequest, HospitalityResponse, IndustryFieldConfig, IndustryFieldSection, IndustryType, IntensityCalculation, IntensityValue, LogisticsRequest, LogisticsResponse, ManufacturingRequest, ManufacturingResponse, Meta, MetalEnergyRequest, MetalEnergyResponse, PackagingRequest, PackagingResponse, Pagination, PetrochemicalRequest, PetrochemicalResponse, PharmaRequest, PharmaResponse, PlantNameConfig, ProcessedEmissionCategory, ProcessedEmissionItem, ProcessedScope3Data, ProductionData, RealEstateRequest, RealEstateResponse, ScopeConfig, ScopeProduct, ShippingRequest, ShippingResponse, SteelRequest, SteelResponse, StrapiItem, StrapiResponse, TelecommunicationRequest, TelecommunicationResponse, TextileRequest, TextileResponse, TransportationEmission, TransportationEmissionAttributes, TransportationEmissionsResponse, UserData, UtilitiesRequest, UtilitiesResponse, ValidationError, VehicleEmission, VehicleEmissionAttributes, VehicleEmissionsResponse };