@zerocarbon/erp-config-sdk 1.0.26 → 1.0.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -921,6 +921,66 @@ type Scope3Item$3 = {
921
921
  declare const ALL_SCOPES_3_RCO: Scope3Item$3[];
922
922
  declare const getRCOConfigByName: (name: string) => Scope3Item$3 | undefined;
923
923
 
924
+ type BulkBillAgentProfileId = 'electricity' | 'fuel_combustion' | 'refrigerants' | 'industrial_gases' | 'employee_commuting' | 'business_travel' | 'lpg_usage' | 'fire_extinguisher' | 'sf6_usage' | 'water' | 'waste' | 'purchased_goods' | 'process_emissions' | 'generic_material';
925
+ interface BulkBillAgentAllowedItem {
926
+ itemKey?: string;
927
+ sourceId?: string;
928
+ itemName?: string;
929
+ billCategory?: string;
930
+ billSubCategory?: string;
931
+ billNestedSubCategory?: string;
932
+ billType?: string;
933
+ unit?: string;
934
+ emissionFactor?: number;
935
+ requiresMassData?: boolean;
936
+ }
937
+ interface BulkBillAgentMappingContext {
938
+ locked?: boolean;
939
+ scope?: string;
940
+ category?: string;
941
+ route?: string;
942
+ plant?: string;
943
+ year?: number | string;
944
+ month?: number | string;
945
+ yearType?: string;
946
+ allowedItems?: BulkBillAgentAllowedItem[];
947
+ }
948
+ interface BulkBillAgentProfile {
949
+ id: BulkBillAgentProfileId;
950
+ label: string;
951
+ description: string;
952
+ documentTypes: string[];
953
+ itemSignals: string[];
954
+ documentSignals: string[];
955
+ preferredUnits: string[];
956
+ extractionRules: string[];
957
+ rejectRules: string[];
958
+ }
959
+ interface BulkBillAgentPromptConfig {
960
+ profile: BulkBillAgentProfile;
961
+ allowedItemCount: number;
962
+ allowedItemSummaries: string[];
963
+ uploadContext: {
964
+ scope: string;
965
+ category: string;
966
+ plant: string;
967
+ year: string;
968
+ month: string;
969
+ yearType: string;
970
+ route: string;
971
+ };
972
+ }
973
+ declare const BULK_BILL_AGENT_PROFILES: Record<BulkBillAgentProfileId, BulkBillAgentProfile>;
974
+ declare const getBulkBillAgentProfile: (profileId: BulkBillAgentProfileId) => BulkBillAgentProfile;
975
+ declare const listBulkBillAgentProfiles: () => BulkBillAgentProfile[];
976
+ declare const scoreBulkBillAgentProfile: (profile: BulkBillAgentProfile, context?: BulkBillAgentMappingContext, documentText?: string) => number;
977
+ declare const getBulkBillAgentProfilesForMappingContext: (context?: BulkBillAgentMappingContext, documentText?: string) => {
978
+ profile: BulkBillAgentProfile;
979
+ score: number;
980
+ }[];
981
+ declare const getPrimaryBulkBillAgentProfile: (context?: BulkBillAgentMappingContext, documentText?: string) => BulkBillAgentProfile;
982
+ declare const buildBulkBillAgentPromptConfig: (context?: BulkBillAgentMappingContext, documentText?: string) => BulkBillAgentPromptConfig;
983
+
924
984
  declare const getUserNameScopeConfig: <T = any>(scopeKey: "scope1" | "scope2" | "scope3" | "waterManagement", username?: string, defaultScope?: T) => T;
925
985
  type IndustryAdditionalScopeItem = {
926
986
  type: "scope1" | "scope2" | "scope3";
@@ -1932,7 +1992,71 @@ declare const UI_FEATURES: {
1932
1992
  */
1933
1993
  declare const isUIFeatureEnabled: (featureConstant: string, username?: string) => boolean;
1934
1994
 
1935
- declare const WATER_PRODUCTS: {
1995
+ declare const ELECTRIC_PRODUCTS$5: {
1996
+ name: string;
1997
+ unit: string;
1998
+ type: string;
1999
+ renewable: boolean;
2000
+ calorificValue: number;
2001
+ emissionFactor: number;
2002
+ }[];
2003
+ declare const REFRIGERANTS$9: {
2004
+ name: string;
2005
+ unit: string;
2006
+ type: string;
2007
+ calorificValue: number;
2008
+ emissionFactor: number;
2009
+ }[];
2010
+ declare const FIRE_EXTINGUISHER_PRODUCTS$i: {
2011
+ name: string;
2012
+ unit: string;
2013
+ type: string;
2014
+ calorificValue: number;
2015
+ emissionFactor: number;
2016
+ }[];
2017
+ declare const SF6_PRODUCTS$1: {
2018
+ name: string;
2019
+ unit: string;
2020
+ type: string;
2021
+ calorificValue: number;
2022
+ emissionFactor: number;
2023
+ }[];
2024
+ declare const WATER_PRODUCTS$5: {
2025
+ name: string;
2026
+ unit: string;
2027
+ type: string;
2028
+ calorificValue: number;
2029
+ emissionFactor: number;
2030
+ }[];
2031
+ declare const WASTE_PRODUCTS$5: {
2032
+ name: string;
2033
+ unit: string;
2034
+ type: string;
2035
+ calorificValue: number;
2036
+ emissionFactor: number;
2037
+ }[];
2038
+ declare const FUEL_COMBUSTION_PRODUCTS$e: {
2039
+ name: string;
2040
+ unit: string;
2041
+ type: string;
2042
+ calorificValue: number;
2043
+ emissionFactor: number;
2044
+ }[];
2045
+ declare const REFRIGERANT_PRODUCTS$c: {
2046
+ name: string;
2047
+ unit: string;
2048
+ type: string;
2049
+ calorificValue: number;
2050
+ emissionFactor: number;
2051
+ }[];
2052
+ declare const LPG_USAGE_PRODUCTS$g: {
2053
+ name: string;
2054
+ unit: string;
2055
+ type: string;
2056
+ calorificValue: number;
2057
+ emissionFactor: number;
2058
+ }[];
2059
+ declare const SF6_USAGE_PRODUCTS$h: {
1936
2060
  name: string;
1937
2061
  unit: string;
1938
2062
  type: string;
@@ -1953,6 +2077,22 @@ declare const SCOPE1_PACKAGING: {
1953
2077
  }[];
1954
2078
  desc: string;
1955
2079
  }[];
2080
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$h: {
2081
+ name: string;
2082
+ unit: string;
2083
+ type: string;
2084
+ renewable: boolean;
2085
+ calorificValue: number;
2086
+ emissionFactor: number;
2087
+ }[];
2088
+ declare const RENEWABLE_ENERGY_PRODUCTS$g: {
2089
+ name: string;
2090
+ unit: string;
2091
+ type: string;
2092
+ renewable: boolean;
2093
+ calorificValue: number;
2094
+ emissionFactor: number;
2095
+ }[];
1956
2096
  declare const SCOPE2_PACKAGING: {
1957
2097
  name: string;
1958
2098
  icon: react_icons_lib.IconType;
@@ -1982,6 +2122,46 @@ declare const ALLSCOPES_PACKAGING: {
1982
2122
  }[];
1983
2123
  desc: string;
1984
2124
  }[];
2125
+ declare const PURCHASED_GOODS_AND_SERVICES$g: {
2126
+ category: string;
2127
+ items: {
2128
+ item: string;
2129
+ emissionFactor: number;
2130
+ unit: string;
2131
+ }[];
2132
+ }[];
2133
+ declare const UPSTREAM_EMISSIONS_PURCHASED_FUELS$5: {
2134
+ category: string;
2135
+ items: {
2136
+ item: string;
2137
+ emissionFactor: number;
2138
+ unit: string;
2139
+ }[];
2140
+ }[];
2141
+ declare const UPSTREAM_TRANSPORTATION_EMISSIONS$2: {
2142
+ category: string;
2143
+ items: {
2144
+ item: string;
2145
+ emissionFactor: number;
2146
+ unit: string;
2147
+ }[];
2148
+ }[];
2149
+ declare const GUEST_TRANSPORTATION_EMISSIONS$2: {
2150
+ category: string;
2151
+ items: {
2152
+ item: string;
2153
+ emissionFactor: number;
2154
+ unit: string;
2155
+ }[];
2156
+ }[];
2157
+ declare const WASTE_DISPOSAL_EMISSIONS$5: {
2158
+ category: string;
2159
+ items: {
2160
+ item: string;
2161
+ emissionFactor: number;
2162
+ unit: string;
2163
+ }[];
2164
+ }[];
1985
2165
  declare const EMPLOYEE_COMMUTING_EMISSIONS: {
1986
2166
  category: string;
1987
2167
  items: {
@@ -1990,6 +2170,54 @@ declare const EMPLOYEE_COMMUTING_EMISSIONS: {
1990
2170
  unit: string;
1991
2171
  }[];
1992
2172
  }[];
2173
+ declare const EMPLOYEE_COMMUTING$h: {
2174
+ category: string;
2175
+ items: {
2176
+ item: string;
2177
+ emissionFactor: number;
2178
+ unit: string;
2179
+ }[];
2180
+ }[];
2181
+ declare const BUSINESS_TRAVEL$h: {
2182
+ category: string;
2183
+ items: {
2184
+ item: string;
2185
+ emissionFactor: number;
2186
+ unit: string;
2187
+ }[];
2188
+ }[];
2189
+ declare const TOTAL_DOWNSTREAM_EMISSIONS$1: {
2190
+ category: string;
2191
+ items: {
2192
+ item: string;
2193
+ emissionFactor: number;
2194
+ unit: string;
2195
+ }[];
2196
+ }[];
2197
+ declare const PROCESSING_OF_SOLD_PRODUCTS$1: {
2198
+ category: string;
2199
+ items: {
2200
+ item: string;
2201
+ emissionFactor: number;
2202
+ unit: string;
2203
+ }[];
2204
+ }[];
2205
+ declare const USE_OF_SOLD_PRODUCTS$4: {
2206
+ category: string;
2207
+ items: {
2208
+ item: string;
2209
+ emissionFactor: number;
2210
+ unit: string;
2211
+ }[];
2212
+ }[];
2213
+ declare const END_OF_LIFE_TREATMENT$1: {
2214
+ category: string;
2215
+ items: {
2216
+ item: string;
2217
+ emissionFactor: number;
2218
+ unit: string;
2219
+ }[];
2220
+ }[];
1993
2221
  declare const WATER_CONSUMPTION_EMISSIONS: {
1994
2222
  category: string;
1995
2223
  items: {
@@ -2032,6 +2260,106 @@ declare const ISO_CATEGORIES_PACKAGING: {
2032
2260
  }[];
2033
2261
  }[];
2034
2262
 
2263
+ declare const packaging_ALLSCOPES_PACKAGING: typeof ALLSCOPES_PACKAGING;
2264
+ declare const packaging_ALL_SCOPES_3_PACKAGING: typeof ALL_SCOPES_3_PACKAGING;
2265
+ declare const packaging_EMPLOYEE_COMMUTING_EMISSIONS: typeof EMPLOYEE_COMMUTING_EMISSIONS;
2266
+ declare const packaging_ISO_CATEGORIES_PACKAGING: typeof ISO_CATEGORIES_PACKAGING;
2267
+ declare const packaging_SCOPE1_PACKAGING: typeof SCOPE1_PACKAGING;
2268
+ declare const packaging_SCOPE2_PACKAGING: typeof SCOPE2_PACKAGING;
2269
+ declare const packaging_WATER_CONSUMPTION_EMISSIONS: typeof WATER_CONSUMPTION_EMISSIONS;
2270
+ declare namespace packaging {
2271
+ export {
2272
+ packaging_ALLSCOPES_PACKAGING as ALLSCOPES_PACKAGING,
2273
+ packaging_ALL_SCOPES_3_PACKAGING as ALL_SCOPES_3_PACKAGING,
2274
+ BUSINESS_TRAVEL$h as BUSINESS_TRAVEL,
2275
+ ELECTRIC_PRODUCTS$5 as ELECTRIC_PRODUCTS,
2276
+ EMPLOYEE_COMMUTING$h as EMPLOYEE_COMMUTING,
2277
+ packaging_EMPLOYEE_COMMUTING_EMISSIONS as EMPLOYEE_COMMUTING_EMISSIONS,
2278
+ END_OF_LIFE_TREATMENT$1 as END_OF_LIFE_TREATMENT,
2279
+ FIRE_EXTINGUISHER_PRODUCTS$i as FIRE_EXTINGUISHER_PRODUCTS,
2280
+ FUEL_COMBUSTION_PRODUCTS$e as FUEL_COMBUSTION_PRODUCTS,
2281
+ GUEST_TRANSPORTATION_EMISSIONS$2 as GUEST_TRANSPORTATION_EMISSIONS,
2282
+ packaging_ISO_CATEGORIES_PACKAGING as ISO_CATEGORIES_PACKAGING,
2283
+ LPG_USAGE_PRODUCTS$g as LPG_USAGE_PRODUCTS,
2284
+ PROCESSING_OF_SOLD_PRODUCTS$1 as PROCESSING_OF_SOLD_PRODUCTS,
2285
+ PURCHASED_ELECTRICITY_PRODUCTS$h as PURCHASED_ELECTRICITY_PRODUCTS,
2286
+ PURCHASED_GOODS_AND_SERVICES$g as PURCHASED_GOODS_AND_SERVICES,
2287
+ REFRIGERANTS$9 as REFRIGERANTS,
2288
+ REFRIGERANT_PRODUCTS$c as REFRIGERANT_PRODUCTS,
2289
+ RENEWABLE_ENERGY_PRODUCTS$g as RENEWABLE_ENERGY_PRODUCTS,
2290
+ packaging_SCOPE1_PACKAGING as SCOPE1_PACKAGING,
2291
+ packaging_SCOPE2_PACKAGING as SCOPE2_PACKAGING,
2292
+ SF6_PRODUCTS$1 as SF6_PRODUCTS,
2293
+ SF6_USAGE_PRODUCTS$h as SF6_USAGE_PRODUCTS,
2294
+ TOTAL_DOWNSTREAM_EMISSIONS$1 as TOTAL_DOWNSTREAM_EMISSIONS,
2295
+ UPSTREAM_EMISSIONS_PURCHASED_FUELS$5 as UPSTREAM_EMISSIONS_PURCHASED_FUELS,
2296
+ UPSTREAM_TRANSPORTATION_EMISSIONS$2 as UPSTREAM_TRANSPORTATION_EMISSIONS,
2297
+ USE_OF_SOLD_PRODUCTS$4 as USE_OF_SOLD_PRODUCTS,
2298
+ WASTE_DISPOSAL_EMISSIONS$5 as WASTE_DISPOSAL_EMISSIONS,
2299
+ WASTE_PRODUCTS$5 as WASTE_PRODUCTS,
2300
+ packaging_WATER_CONSUMPTION_EMISSIONS as WATER_CONSUMPTION_EMISSIONS,
2301
+ WATER_PRODUCTS$5 as WATER_PRODUCTS,
2302
+ };
2303
+ }
2304
+
2305
+ declare const FUEL_COMBUSTION_PRODUCTS$d: {
2306
+ name: string;
2307
+ unit: string;
2308
+ type: string;
2309
+ calorificValue: number;
2310
+ emissionFactor: number;
2311
+ }[];
2312
+ declare const REFRIGERANTS$8: {
2313
+ name: string;
2314
+ unit: string;
2315
+ type: string;
2316
+ calorificValue: number;
2317
+ emissionFactor: number;
2318
+ }[];
2319
+ declare const FIRE_EXTINGUISHER_PRODUCTS$h: {
2320
+ name: string;
2321
+ unit: string;
2322
+ type: string;
2323
+ calorificValue: number;
2324
+ emissionFactor: number;
2325
+ }[];
2326
+ declare const LPG_USAGE_PRODUCTS$f: {
2327
+ name: string;
2328
+ unit: string;
2329
+ type: string;
2330
+ calorificValue: number;
2331
+ emissionFactor: number;
2332
+ }[];
2333
+ declare const SF6_USAGE_PRODUCTS$g: {
2334
+ name: string;
2335
+ unit: string;
2336
+ type: string;
2337
+ calorificValue: number;
2338
+ emissionFactor: number;
2339
+ }[];
2340
+ declare const SOLID_FUEL_PRODUCTS$1: {
2341
+ name: string;
2342
+ unit: string;
2343
+ type: string;
2344
+ calorificValue: number;
2345
+ emissionFactor: number;
2346
+ }[];
2347
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$g: {
2348
+ name: string;
2349
+ unit: string;
2350
+ type: string;
2351
+ renewable: boolean;
2352
+ calorificValue: number;
2353
+ emissionFactor: number;
2354
+ }[];
2355
+ declare const RENEWABLE_ENERGY_PRODUCTS$f: {
2356
+ name: string;
2357
+ unit: string;
2358
+ type: string;
2359
+ renewable: boolean;
2360
+ calorificValue: number;
2361
+ emissionFactor: number;
2362
+ }[];
2035
2363
  declare const SCOPE1_ALLOY: {
2036
2364
  name: string;
2037
2365
  icon: react_icons_lib.IconType;
@@ -2071,8 +2399,12 @@ type EmissionCategory$b = {
2071
2399
  items: EmissionItem$j[];
2072
2400
  };
2073
2401
  type Emissions$h = EmissionCategory$b[];
2402
+ declare const PURCHASED_GOODS_AND_SERVICES$f: Emissions$h;
2074
2403
  declare const FUEL_AND_ENERGY_RELATED_ACTIVITIES: Emissions$h;
2075
2404
  declare const WASTE_GENERATED_IN_OPERATIONS: Emissions$h;
2405
+ declare const EMPLOYEE_COMMUTING$g: Emissions$h;
2406
+ declare const BUSINESS_TRAVEL$g: Emissions$h;
2407
+ declare const UPSTREAM_TRANSPORTATION$b: Emissions$h;
2076
2408
  declare const ALL_SCOPES_3_ALLOY: {
2077
2409
  name: string;
2078
2410
  displayName: string;
@@ -2105,42 +2437,122 @@ declare const ALLSCOPES_ALLOY: ({
2105
2437
  desc: string;
2106
2438
  })[];
2107
2439
 
2108
- declare const SCOPE1_ALUMINUM: {
2440
+ declare const alloy_ALLSCOPES_ALLOY: typeof ALLSCOPES_ALLOY;
2441
+ declare const alloy_ALL_SCOPES_3_ALLOY: typeof ALL_SCOPES_3_ALLOY;
2442
+ declare const alloy_FUEL_AND_ENERGY_RELATED_ACTIVITIES: typeof FUEL_AND_ENERGY_RELATED_ACTIVITIES;
2443
+ declare const alloy_SCOPE1_ALLOY: typeof SCOPE1_ALLOY;
2444
+ declare const alloy_SCOPE2_ALLOY: typeof SCOPE2_ALLOY;
2445
+ declare const alloy_WASTE_GENERATED_IN_OPERATIONS: typeof WASTE_GENERATED_IN_OPERATIONS;
2446
+ declare namespace alloy {
2447
+ export {
2448
+ alloy_ALLSCOPES_ALLOY as ALLSCOPES_ALLOY,
2449
+ alloy_ALL_SCOPES_3_ALLOY as ALL_SCOPES_3_ALLOY,
2450
+ BUSINESS_TRAVEL$g as BUSINESS_TRAVEL,
2451
+ EMPLOYEE_COMMUTING$g as EMPLOYEE_COMMUTING,
2452
+ FIRE_EXTINGUISHER_PRODUCTS$h as FIRE_EXTINGUISHER_PRODUCTS,
2453
+ alloy_FUEL_AND_ENERGY_RELATED_ACTIVITIES as FUEL_AND_ENERGY_RELATED_ACTIVITIES,
2454
+ FUEL_COMBUSTION_PRODUCTS$d as FUEL_COMBUSTION_PRODUCTS,
2455
+ LPG_USAGE_PRODUCTS$f as LPG_USAGE_PRODUCTS,
2456
+ PURCHASED_ELECTRICITY_PRODUCTS$g as PURCHASED_ELECTRICITY_PRODUCTS,
2457
+ PURCHASED_GOODS_AND_SERVICES$f as PURCHASED_GOODS_AND_SERVICES,
2458
+ REFRIGERANTS$8 as REFRIGERANTS,
2459
+ RENEWABLE_ENERGY_PRODUCTS$f as RENEWABLE_ENERGY_PRODUCTS,
2460
+ alloy_SCOPE1_ALLOY as SCOPE1_ALLOY,
2461
+ alloy_SCOPE2_ALLOY as SCOPE2_ALLOY,
2462
+ SF6_USAGE_PRODUCTS$g as SF6_USAGE_PRODUCTS,
2463
+ SOLID_FUEL_PRODUCTS$1 as SOLID_FUEL_PRODUCTS,
2464
+ UPSTREAM_TRANSPORTATION$b as UPSTREAM_TRANSPORTATION,
2465
+ alloy_WASTE_GENERATED_IN_OPERATIONS as WASTE_GENERATED_IN_OPERATIONS,
2466
+ };
2467
+ }
2468
+
2469
+ declare const FUEL_COMBUSTION_PRODUCTS$c: {
2109
2470
  name: string;
2110
- icon: react_icons_lib.IconType;
2111
- scope: string;
2112
2471
  unit: string;
2113
- subProducts: {
2114
- name: string;
2115
- unit: string;
2116
- type: string;
2117
- calorificValue: number;
2118
- emissionFactor: number;
2119
- }[];
2120
- desc: string;
2472
+ type: string;
2473
+ calorificValue: number;
2474
+ emissionFactor: number;
2121
2475
  }[];
2122
- declare const SCOPE2_ALUMINUM: {
2476
+ declare const REFRIGERANT_PRODUCTS$b: {
2123
2477
  name: string;
2124
- icon: react_icons_lib.IconType;
2125
- scope: string;
2126
2478
  unit: string;
2127
- subProducts: {
2128
- name: string;
2129
- unit: string;
2130
- type: string;
2131
- renewable: boolean;
2132
- calorificValue: number;
2133
- emissionFactor: number;
2134
- }[];
2135
- desc: string;
2136
- }[];
2137
- type EmissionItem$i = {
2138
- item: string;
2479
+ type: string;
2480
+ calorificValue: number;
2139
2481
  emissionFactor: number;
2482
+ }[];
2483
+ declare const FIRE_EXTINGUISHER_PRODUCTS$g: {
2484
+ name: string;
2140
2485
  unit: string;
2141
- };
2142
- type Scope3SubProduct$1 = {
2143
- category: string;
2486
+ type: string;
2487
+ calorificValue: number;
2488
+ emissionFactor: number;
2489
+ }[];
2490
+ declare const LPG_USAGE_PRODUCTS$e: {
2491
+ name: string;
2492
+ unit: string;
2493
+ type: string;
2494
+ calorificValue: number;
2495
+ emissionFactor: number;
2496
+ }[];
2497
+ declare const SF6_USAGE_PRODUCTS$f: {
2498
+ name: string;
2499
+ unit: string;
2500
+ type: string;
2501
+ calorificValue: number;
2502
+ emissionFactor: number;
2503
+ }[];
2504
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$f: {
2505
+ name: string;
2506
+ unit: string;
2507
+ type: string;
2508
+ renewable: boolean;
2509
+ calorificValue: number;
2510
+ emissionFactor: number;
2511
+ }[];
2512
+ declare const RENEWABLE_ENERGY_PRODUCTS$e: {
2513
+ name: string;
2514
+ unit: string;
2515
+ type: string;
2516
+ renewable: boolean;
2517
+ calorificValue: number;
2518
+ emissionFactor: number;
2519
+ }[];
2520
+ declare const SCOPE1_ALUMINUM: {
2521
+ name: string;
2522
+ icon: react_icons_lib.IconType;
2523
+ scope: string;
2524
+ unit: string;
2525
+ subProducts: {
2526
+ name: string;
2527
+ unit: string;
2528
+ type: string;
2529
+ calorificValue: number;
2530
+ emissionFactor: number;
2531
+ }[];
2532
+ desc: string;
2533
+ }[];
2534
+ declare const SCOPE2_ALUMINUM: {
2535
+ name: string;
2536
+ icon: react_icons_lib.IconType;
2537
+ scope: string;
2538
+ unit: string;
2539
+ subProducts: {
2540
+ name: string;
2541
+ unit: string;
2542
+ type: string;
2543
+ renewable: boolean;
2544
+ calorificValue: number;
2545
+ emissionFactor: number;
2546
+ }[];
2547
+ desc: string;
2548
+ }[];
2549
+ type EmissionItem$i = {
2550
+ item: string;
2551
+ emissionFactor: number;
2552
+ unit: string;
2553
+ };
2554
+ type Scope3SubProduct$1 = {
2555
+ category: string;
2144
2556
  items: EmissionItem$i[];
2145
2557
  };
2146
2558
  type Scope3Product$1 = {
@@ -2168,6 +2580,26 @@ declare const ALLSCOPES_ALUMINUM: ({
2168
2580
  desc: string;
2169
2581
  } | Scope3Product$1)[];
2170
2582
 
2583
+ declare const aluminum_ALLSCOPES_ALUMINUM: typeof ALLSCOPES_ALUMINUM;
2584
+ declare const aluminum_ALL_SCOPES_3_ALUMINUM: typeof ALL_SCOPES_3_ALUMINUM;
2585
+ declare const aluminum_SCOPE1_ALUMINUM: typeof SCOPE1_ALUMINUM;
2586
+ declare const aluminum_SCOPE2_ALUMINUM: typeof SCOPE2_ALUMINUM;
2587
+ declare namespace aluminum {
2588
+ export {
2589
+ aluminum_ALLSCOPES_ALUMINUM as ALLSCOPES_ALUMINUM,
2590
+ aluminum_ALL_SCOPES_3_ALUMINUM as ALL_SCOPES_3_ALUMINUM,
2591
+ FIRE_EXTINGUISHER_PRODUCTS$g as FIRE_EXTINGUISHER_PRODUCTS,
2592
+ FUEL_COMBUSTION_PRODUCTS$c as FUEL_COMBUSTION_PRODUCTS,
2593
+ LPG_USAGE_PRODUCTS$e as LPG_USAGE_PRODUCTS,
2594
+ PURCHASED_ELECTRICITY_PRODUCTS$f as PURCHASED_ELECTRICITY_PRODUCTS,
2595
+ REFRIGERANT_PRODUCTS$b as REFRIGERANT_PRODUCTS,
2596
+ RENEWABLE_ENERGY_PRODUCTS$e as RENEWABLE_ENERGY_PRODUCTS,
2597
+ aluminum_SCOPE1_ALUMINUM as SCOPE1_ALUMINUM,
2598
+ aluminum_SCOPE2_ALUMINUM as SCOPE2_ALUMINUM,
2599
+ SF6_USAGE_PRODUCTS$f as SF6_USAGE_PRODUCTS,
2600
+ };
2601
+ }
2602
+
2171
2603
  declare const MOBILE_COMBUSTION_PRODUCTS: {
2172
2604
  name: string;
2173
2605
  unit: string;
@@ -2182,6 +2614,43 @@ declare const STATIONARY_COMBUSTION_PRODUCTS: {
2182
2614
  calorificValue: number;
2183
2615
  emissionFactor: number;
2184
2616
  }[];
2617
+ declare const REFRIGERANTS$7: {
2618
+ name: string;
2619
+ unit: string;
2620
+ type: string;
2621
+ calorificValue: number;
2622
+ emissionFactor: number;
2623
+ }[];
2624
+ declare const FIRE_EXTINGUISHER_PRODUCTS$f: {
2625
+ name: string;
2626
+ unit: string;
2627
+ type: string;
2628
+ calorificValue: number;
2629
+ emissionFactor: number;
2630
+ }[];
2631
+ declare const SF6_USAGE_PRODUCTS$e: {
2632
+ name: string;
2633
+ unit: string;
2634
+ type: string;
2635
+ calorificValue: number;
2636
+ emissionFactor: number;
2637
+ }[];
2638
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$e: {
2639
+ name: string;
2640
+ unit: string;
2641
+ type: string;
2642
+ renewable: boolean;
2643
+ calorificValue: number;
2644
+ emissionFactor: number;
2645
+ }[];
2646
+ declare const RENEWABLE_ENERGY_PRODUCTS$d: {
2647
+ name: string;
2648
+ unit: string;
2649
+ type: string;
2650
+ renewable: boolean;
2651
+ calorificValue: number;
2652
+ emissionFactor: number;
2653
+ }[];
2185
2654
  declare const PURCHASED_HEAT_STEAM_COOLING_PRODUCTS: {
2186
2655
  name: string;
2187
2656
  unit: string;
@@ -2228,6 +2697,12 @@ type EmissionCategory$a = {
2228
2697
  items: EmissionItem$h[];
2229
2698
  };
2230
2699
  type Emissions$g = EmissionCategory$a[];
2700
+ declare const PURCHASED_GOODS_AND_SERVICES$e: Emissions$g;
2701
+ declare const FUEL_ENERGY_RELATED$9: Emissions$g;
2702
+ declare const WASTE_OPERATIONS$9: Emissions$g;
2703
+ declare const EMPLOYEE_COMMUTING$f: Emissions$g;
2704
+ declare const BUSINESS_TRAVEL$f: Emissions$g;
2705
+ declare const UPSTREAM_TRANSPORTATION$a: Emissions$g;
2231
2706
  declare const WATER_MANAGEMENT: Emissions$g;
2232
2707
  declare const ALL_SCOPES_3_AUTOMOBILE: {
2233
2708
  name: string;
@@ -2261,6 +2736,73 @@ declare const ALLSCOPES_AUTOMOBILE: ({
2261
2736
  desc: string;
2262
2737
  })[];
2263
2738
 
2739
+ declare const automobile_ALLSCOPES_AUTOMOBILE: typeof ALLSCOPES_AUTOMOBILE;
2740
+ declare const automobile_ALL_SCOPES_3_AUTOMOBILE: typeof ALL_SCOPES_3_AUTOMOBILE;
2741
+ declare const automobile_MOBILE_COMBUSTION_PRODUCTS: typeof MOBILE_COMBUSTION_PRODUCTS;
2742
+ declare const automobile_PURCHASED_HEAT_STEAM_COOLING_PRODUCTS: typeof PURCHASED_HEAT_STEAM_COOLING_PRODUCTS;
2743
+ declare const automobile_SCOPE1_AUTOMOBILE: typeof SCOPE1_AUTOMOBILE;
2744
+ declare const automobile_SCOPE2_AUTOMOBILE: typeof SCOPE2_AUTOMOBILE;
2745
+ declare const automobile_STATIONARY_COMBUSTION_PRODUCTS: typeof STATIONARY_COMBUSTION_PRODUCTS;
2746
+ declare const automobile_WATER_MANAGEMENT: typeof WATER_MANAGEMENT;
2747
+ declare namespace automobile {
2748
+ export {
2749
+ automobile_ALLSCOPES_AUTOMOBILE as ALLSCOPES_AUTOMOBILE,
2750
+ automobile_ALL_SCOPES_3_AUTOMOBILE as ALL_SCOPES_3_AUTOMOBILE,
2751
+ BUSINESS_TRAVEL$f as BUSINESS_TRAVEL,
2752
+ EMPLOYEE_COMMUTING$f as EMPLOYEE_COMMUTING,
2753
+ FIRE_EXTINGUISHER_PRODUCTS$f as FIRE_EXTINGUISHER_PRODUCTS,
2754
+ FUEL_ENERGY_RELATED$9 as FUEL_ENERGY_RELATED,
2755
+ automobile_MOBILE_COMBUSTION_PRODUCTS as MOBILE_COMBUSTION_PRODUCTS,
2756
+ PURCHASED_ELECTRICITY_PRODUCTS$e as PURCHASED_ELECTRICITY_PRODUCTS,
2757
+ PURCHASED_GOODS_AND_SERVICES$e as PURCHASED_GOODS_AND_SERVICES,
2758
+ automobile_PURCHASED_HEAT_STEAM_COOLING_PRODUCTS as PURCHASED_HEAT_STEAM_COOLING_PRODUCTS,
2759
+ REFRIGERANTS$7 as REFRIGERANTS,
2760
+ RENEWABLE_ENERGY_PRODUCTS$d as RENEWABLE_ENERGY_PRODUCTS,
2761
+ automobile_SCOPE1_AUTOMOBILE as SCOPE1_AUTOMOBILE,
2762
+ automobile_SCOPE2_AUTOMOBILE as SCOPE2_AUTOMOBILE,
2763
+ SF6_USAGE_PRODUCTS$e as SF6_USAGE_PRODUCTS,
2764
+ automobile_STATIONARY_COMBUSTION_PRODUCTS as STATIONARY_COMBUSTION_PRODUCTS,
2765
+ UPSTREAM_TRANSPORTATION$a as UPSTREAM_TRANSPORTATION,
2766
+ WASTE_OPERATIONS$9 as WASTE_OPERATIONS,
2767
+ automobile_WATER_MANAGEMENT as WATER_MANAGEMENT,
2768
+ };
2769
+ }
2770
+
2771
+ declare const FUEL_COMBUSTION_PRODUCTS$b: {
2772
+ name: string;
2773
+ unit: string;
2774
+ type: string;
2775
+ calorificValue: number;
2776
+ emissionFactor: number;
2777
+ }[];
2778
+ declare const REFRIGERANT_PRODUCTS$a: {
2779
+ name: string;
2780
+ unit: string;
2781
+ type: string;
2782
+ calorificValue: number;
2783
+ emissionFactor: number;
2784
+ }[];
2785
+ declare const FIRE_EXTINGUISHER_PRODUCTS$e: {
2786
+ name: string;
2787
+ unit: string;
2788
+ type: string;
2789
+ calorificValue: number;
2790
+ emissionFactor: number;
2791
+ }[];
2792
+ declare const LPG_USAGE_PRODUCTS$d: {
2793
+ name: string;
2794
+ unit: string;
2795
+ type: string;
2796
+ calorificValue: number;
2797
+ emissionFactor: number;
2798
+ }[];
2799
+ declare const SF6_USAGE_PRODUCTS$d: {
2800
+ name: string;
2801
+ unit: string;
2802
+ type: string;
2803
+ calorificValue: number;
2804
+ emissionFactor: number;
2805
+ }[];
2264
2806
  declare const SCOPE1_AVIATION: {
2265
2807
  name: string;
2266
2808
  icon: react_icons_lib.IconType;
@@ -2275,6 +2817,22 @@ declare const SCOPE1_AVIATION: {
2275
2817
  }[];
2276
2818
  desc: string;
2277
2819
  }[];
2820
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$d: {
2821
+ name: string;
2822
+ unit: string;
2823
+ type: string;
2824
+ renewable: boolean;
2825
+ calorificValue: number;
2826
+ emissionFactor: number;
2827
+ }[];
2828
+ declare const RENEWABLE_ENERGY_PRODUCTS$c: {
2829
+ name: string;
2830
+ unit: string;
2831
+ type: string;
2832
+ renewable: boolean;
2833
+ calorificValue: number;
2834
+ emissionFactor: number;
2835
+ }[];
2278
2836
  declare const SCOPE2_AVIATION: {
2279
2837
  name: string;
2280
2838
  icon: react_icons_lib.IconType;
@@ -2366,6 +2924,61 @@ declare const ALLSCOPES_AVIATION: ({
2366
2924
  desc: string;
2367
2925
  })[];
2368
2926
 
2927
+ declare const aviation_ALLSCOPES_AVIATION: typeof ALLSCOPES_AVIATION;
2928
+ declare const aviation_ALL_SCOPES_3_AVIATION: typeof ALL_SCOPES_3_AVIATION;
2929
+ declare const aviation_SCOPE1_AVIATION: typeof SCOPE1_AVIATION;
2930
+ declare const aviation_SCOPE2_AVIATION: typeof SCOPE2_AVIATION;
2931
+ declare namespace aviation {
2932
+ export {
2933
+ aviation_ALLSCOPES_AVIATION as ALLSCOPES_AVIATION,
2934
+ aviation_ALL_SCOPES_3_AVIATION as ALL_SCOPES_3_AVIATION,
2935
+ FIRE_EXTINGUISHER_PRODUCTS$e as FIRE_EXTINGUISHER_PRODUCTS,
2936
+ FUEL_COMBUSTION_PRODUCTS$b as FUEL_COMBUSTION_PRODUCTS,
2937
+ LPG_USAGE_PRODUCTS$d as LPG_USAGE_PRODUCTS,
2938
+ PURCHASED_ELECTRICITY_PRODUCTS$d as PURCHASED_ELECTRICITY_PRODUCTS,
2939
+ REFRIGERANT_PRODUCTS$a as REFRIGERANT_PRODUCTS,
2940
+ RENEWABLE_ENERGY_PRODUCTS$c as RENEWABLE_ENERGY_PRODUCTS,
2941
+ aviation_SCOPE1_AVIATION as SCOPE1_AVIATION,
2942
+ aviation_SCOPE2_AVIATION as SCOPE2_AVIATION,
2943
+ SF6_USAGE_PRODUCTS$d as SF6_USAGE_PRODUCTS,
2944
+ };
2945
+ }
2946
+
2947
+ declare const FUEL_COMBUSTION_PRODUCTS$a: {
2948
+ name: string;
2949
+ unit: string;
2950
+ type: string;
2951
+ calorificValue: number;
2952
+ emissionFactor: number;
2953
+ }[];
2954
+ declare const REFRIGERANT_PRODUCTS$9: {
2955
+ name: string;
2956
+ unit: string;
2957
+ type: string;
2958
+ calorificValue: number;
2959
+ emissionFactor: number;
2960
+ }[];
2961
+ declare const FIRE_EXTINGUISHER_PRODUCTS$d: {
2962
+ name: string;
2963
+ unit: string;
2964
+ type: string;
2965
+ calorificValue: number;
2966
+ emissionFactor: number;
2967
+ }[];
2968
+ declare const LPG_USAGE_PRODUCTS$c: {
2969
+ name: string;
2970
+ unit: string;
2971
+ type: string;
2972
+ calorificValue: number;
2973
+ emissionFactor: number;
2974
+ }[];
2975
+ declare const SF6_USAGE_PRODUCTS$c: {
2976
+ name: string;
2977
+ unit: string;
2978
+ type: string;
2979
+ calorificValue: number;
2980
+ emissionFactor: number;
2981
+ }[];
2369
2982
  declare const SCOPE1_BATTERY_EV: {
2370
2983
  name: string;
2371
2984
  icon: react_icons_lib.IconType;
@@ -2380,6 +2993,22 @@ declare const SCOPE1_BATTERY_EV: {
2380
2993
  }[];
2381
2994
  desc: string;
2382
2995
  }[];
2996
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$c: {
2997
+ name: string;
2998
+ unit: string;
2999
+ type: string;
3000
+ renewable: boolean;
3001
+ calorificValue: number;
3002
+ emissionFactor: number;
3003
+ }[];
3004
+ declare const RENEWABLE_ENERGY_PRODUCTS$b: {
3005
+ name: string;
3006
+ unit: string;
3007
+ type: string;
3008
+ renewable: boolean;
3009
+ calorificValue: number;
3010
+ emissionFactor: number;
3011
+ }[];
2383
3012
  declare const SCOPE2_BATTERY_EV: {
2384
3013
  name: string;
2385
3014
  icon: react_icons_lib.IconType;
@@ -2395,6 +3024,22 @@ declare const SCOPE2_BATTERY_EV: {
2395
3024
  }[];
2396
3025
  desc: string;
2397
3026
  }[];
3027
+ declare const EMPLOYEE_COMMUTING$e: {
3028
+ category: string;
3029
+ items: {
3030
+ item: string;
3031
+ emissionFactor: number;
3032
+ unit: string;
3033
+ }[];
3034
+ }[];
3035
+ declare const BUSINESS_TRAVEL$e: {
3036
+ category: string;
3037
+ items: {
3038
+ item: string;
3039
+ emissionFactor: number;
3040
+ unit: string;
3041
+ }[];
3042
+ }[];
2398
3043
  declare const ALL_SCOPES_3_BATTERY_EV: ({
2399
3044
  name: string;
2400
3045
  icon: react_icons_lib.IconType;
@@ -2471,6 +3116,64 @@ declare const ALLSCOPES_BATTERY_EV: ({
2471
3116
  desc: string;
2472
3117
  })[];
2473
3118
 
3119
+ declare const battery_ev_ALLSCOPES_BATTERY_EV: typeof ALLSCOPES_BATTERY_EV;
3120
+ declare const battery_ev_ALL_SCOPES_3_BATTERY_EV: typeof ALL_SCOPES_3_BATTERY_EV;
3121
+ declare const battery_ev_SCOPE1_BATTERY_EV: typeof SCOPE1_BATTERY_EV;
3122
+ declare const battery_ev_SCOPE2_BATTERY_EV: typeof SCOPE2_BATTERY_EV;
3123
+ declare namespace battery_ev {
3124
+ export {
3125
+ battery_ev_ALLSCOPES_BATTERY_EV as ALLSCOPES_BATTERY_EV,
3126
+ battery_ev_ALL_SCOPES_3_BATTERY_EV as ALL_SCOPES_3_BATTERY_EV,
3127
+ BUSINESS_TRAVEL$e as BUSINESS_TRAVEL,
3128
+ EMPLOYEE_COMMUTING$e as EMPLOYEE_COMMUTING,
3129
+ FIRE_EXTINGUISHER_PRODUCTS$d as FIRE_EXTINGUISHER_PRODUCTS,
3130
+ FUEL_COMBUSTION_PRODUCTS$a as FUEL_COMBUSTION_PRODUCTS,
3131
+ LPG_USAGE_PRODUCTS$c as LPG_USAGE_PRODUCTS,
3132
+ PURCHASED_ELECTRICITY_PRODUCTS$c as PURCHASED_ELECTRICITY_PRODUCTS,
3133
+ REFRIGERANT_PRODUCTS$9 as REFRIGERANT_PRODUCTS,
3134
+ RENEWABLE_ENERGY_PRODUCTS$b as RENEWABLE_ENERGY_PRODUCTS,
3135
+ battery_ev_SCOPE1_BATTERY_EV as SCOPE1_BATTERY_EV,
3136
+ battery_ev_SCOPE2_BATTERY_EV as SCOPE2_BATTERY_EV,
3137
+ SF6_USAGE_PRODUCTS$c as SF6_USAGE_PRODUCTS,
3138
+ };
3139
+ }
3140
+
3141
+ declare const ELECTRIC_PRODUCTS$4: ({
3142
+ name: string;
3143
+ unit: string;
3144
+ type: string;
3145
+ calorificValue: number;
3146
+ emissionFactor: number;
3147
+ renewable?: undefined;
3148
+ } | {
3149
+ name: string;
3150
+ unit: string;
3151
+ type: string;
3152
+ renewable: boolean;
3153
+ calorificValue: number;
3154
+ emissionFactor: number;
3155
+ })[];
3156
+ declare const WATER_PRODUCTS$4: {
3157
+ name: string;
3158
+ unit: string;
3159
+ type: string;
3160
+ calorificValue: number;
3161
+ emissionFactor: number;
3162
+ }[];
3163
+ declare const WASTE_PRODUCTS$4: {
3164
+ name: string;
3165
+ unit: string;
3166
+ type: string;
3167
+ calorificValue: number;
3168
+ emissionFactor: number;
3169
+ }[];
3170
+ declare const REFRIGERANTS$6: {
3171
+ name: string;
3172
+ unit: string;
3173
+ type: string;
3174
+ calorificValue: number;
3175
+ emissionFactor: number;
3176
+ }[];
2474
3177
  declare const FUEL_COMBUSTION_PYRO_PROCESS_PRODUCTS: ({
2475
3178
  name: string;
2476
3179
  unit: string;
@@ -2556,17 +3259,52 @@ declare const ELECTRICITY_CONSUMED_PRODUCTS: ({
2556
3259
  energyConversionFactor: number;
2557
3260
  source?: undefined;
2558
3261
  })[];
2559
- declare const LPG_PRODUCTS: {
3262
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$b: ({
2560
3263
  name: string;
2561
3264
  unit: string;
2562
- type: string;
2563
- calorificValue: number;
2564
3265
  emissionFactor: number;
2565
- ch4EmissionFactor: number;
2566
- n2oEmissionFactor: number;
3266
+ calorificValue: number;
3267
+ type: string;
2567
3268
  energyConversionFactor: number;
2568
- }[];
2569
- declare const SCOPE1_CEMENT: ({
3269
+ source: string;
3270
+ } | {
3271
+ name: string;
3272
+ unit: string;
3273
+ emissionFactor: number;
3274
+ calorificValue: number;
3275
+ type: string;
3276
+ energyConversionFactor: number;
3277
+ source?: undefined;
3278
+ })[];
3279
+ declare const FIRE_EXTINGUISHER_PRODUCTS$c: {
3280
+ name: string;
3281
+ unit: string;
3282
+ type: string;
3283
+ calorificValue: number;
3284
+ emissionFactor: number;
3285
+ ch4EmissionFactor: number;
3286
+ n2oEmissionFactor: number;
3287
+ }[];
3288
+ declare const LPG_PRODUCTS: {
3289
+ name: string;
3290
+ unit: string;
3291
+ type: string;
3292
+ calorificValue: number;
3293
+ emissionFactor: number;
3294
+ ch4EmissionFactor: number;
3295
+ n2oEmissionFactor: number;
3296
+ energyConversionFactor: number;
3297
+ }[];
3298
+ declare const SF6_PRODUCTS: {
3299
+ name: string;
3300
+ unit: string;
3301
+ type: string;
3302
+ calorificValue: number;
3303
+ emissionFactor: number;
3304
+ ch4EmissionFactor: number;
3305
+ n2oEmissionFactor: number;
3306
+ }[];
3307
+ declare const SCOPE1_CEMENT: ({
2570
3308
  name: string;
2571
3309
  icon: react_icons_lib.IconType;
2572
3310
  scope: string;
@@ -2681,6 +3419,8 @@ type EquipmentCategory$5 = {
2681
3419
  items: EmissionItem$g[];
2682
3420
  };
2683
3421
  type Emissions$f = EquipmentCategory$5[];
3422
+ declare const PURCHASED_GOODS_AND_SERVICES$d: Emissions$f;
3423
+ declare const UPSTREAM_EMISSIONS_PURCHASED_FUELS$4: Emissions$f;
2684
3424
  declare const TRAVEL_EMISSIONS: {
2685
3425
  category: string;
2686
3426
  items: {
@@ -2697,6 +3437,16 @@ declare const GROUND_TRANSPORTATION_EMISSIONS: {
2697
3437
  unit: string;
2698
3438
  }[];
2699
3439
  }[];
3440
+ declare const WASTE_DISPOSAL_EMISSIONS$4: {
3441
+ category: string;
3442
+ items: {
3443
+ item: string;
3444
+ emissionFactor: number;
3445
+ unit: string;
3446
+ }[];
3447
+ }[];
3448
+ declare const USE_OF_SOLD_PRODUCTS$3: never[];
3449
+ declare const GUEST_TRANSPORTATION_EMISSIONS$1: Emissions$f;
2700
3450
  type Scope3Item$1 = {
2701
3451
  name: string;
2702
3452
  displayName: string;
@@ -2763,6 +3513,64 @@ declare const CEMENT_INDUSTRY_CONFIG: IndustryConfig$1;
2763
3513
  declare const getIndustryConfig: (industry: string) => IndustryConfig$1 | null;
2764
3514
  declare const getEndpointConfig: (industry: string, endpointName: string) => ApiEndpointConfig | undefined;
2765
3515
 
3516
+ declare const cement_ALLSCOPES_CEMENT: typeof ALLSCOPES_CEMENT;
3517
+ declare const cement_ALL_SCOPES_3_CEMENT: typeof ALL_SCOPES_3_CEMENT;
3518
+ declare const cement_CALCINATION_PROCESS_PRODUCTS: typeof CALCINATION_PROCESS_PRODUCTS;
3519
+ declare const cement_CCTS_1: typeof CCTS_1;
3520
+ declare const cement_CCTS_2: typeof CCTS_2;
3521
+ declare const cement_CEMENT_INDUSTRY_CONFIG: typeof CEMENT_INDUSTRY_CONFIG;
3522
+ declare const cement_ELECTRICITY_CONSUMED_PRODUCTS: typeof ELECTRICITY_CONSUMED_PRODUCTS;
3523
+ declare const cement_ENERGY_SOURCE: typeof ENERGY_SOURCE;
3524
+ declare const cement_FUEL_COMBUSTION_PYRO_PROCESS_PRODUCTS: typeof FUEL_COMBUSTION_PYRO_PROCESS_PRODUCTS;
3525
+ declare const cement_FUEL_PRODUCTS: typeof FUEL_PRODUCTS;
3526
+ declare const cement_GROUND_TRANSPORTATION_EMISSIONS: typeof GROUND_TRANSPORTATION_EMISSIONS;
3527
+ declare const cement_LPG_PRODUCTS: typeof LPG_PRODUCTS;
3528
+ declare const cement_MINING_OPERATIONS_PRODUCTS: typeof MINING_OPERATIONS_PRODUCTS;
3529
+ declare const cement_ON_SITE_POWER_PRODUCTS: typeof ON_SITE_POWER_PRODUCTS;
3530
+ declare const cement_SCOPE1_CEMENT: typeof SCOPE1_CEMENT;
3531
+ declare const cement_SCOPE2_CEMENT: typeof SCOPE2_CEMENT;
3532
+ declare const cement_SF6_PRODUCTS: typeof SF6_PRODUCTS;
3533
+ declare const cement_TRAVEL_EMISSIONS: typeof TRAVEL_EMISSIONS;
3534
+ declare const cement_WATER_MANAGEMENT_SCOPE: typeof WATER_MANAGEMENT_SCOPE;
3535
+ declare const cement_getEndpointConfig: typeof getEndpointConfig;
3536
+ declare const cement_getIndustryConfig: typeof getIndustryConfig;
3537
+ declare namespace cement {
3538
+ export {
3539
+ cement_ALLSCOPES_CEMENT as ALLSCOPES_CEMENT,
3540
+ cement_ALL_SCOPES_3_CEMENT as ALL_SCOPES_3_CEMENT,
3541
+ cement_CALCINATION_PROCESS_PRODUCTS as CALCINATION_PROCESS_PRODUCTS,
3542
+ cement_CCTS_1 as CCTS_1,
3543
+ cement_CCTS_2 as CCTS_2,
3544
+ cement_CEMENT_INDUSTRY_CONFIG as CEMENT_INDUSTRY_CONFIG,
3545
+ cement_ELECTRICITY_CONSUMED_PRODUCTS as ELECTRICITY_CONSUMED_PRODUCTS,
3546
+ ELECTRIC_PRODUCTS$4 as ELECTRIC_PRODUCTS,
3547
+ cement_ENERGY_SOURCE as ENERGY_SOURCE,
3548
+ FIRE_EXTINGUISHER_PRODUCTS$c as FIRE_EXTINGUISHER_PRODUCTS,
3549
+ cement_FUEL_COMBUSTION_PYRO_PROCESS_PRODUCTS as FUEL_COMBUSTION_PYRO_PROCESS_PRODUCTS,
3550
+ cement_FUEL_PRODUCTS as FUEL_PRODUCTS,
3551
+ cement_GROUND_TRANSPORTATION_EMISSIONS as GROUND_TRANSPORTATION_EMISSIONS,
3552
+ GUEST_TRANSPORTATION_EMISSIONS$1 as GUEST_TRANSPORTATION_EMISSIONS,
3553
+ cement_LPG_PRODUCTS as LPG_PRODUCTS,
3554
+ cement_MINING_OPERATIONS_PRODUCTS as MINING_OPERATIONS_PRODUCTS,
3555
+ cement_ON_SITE_POWER_PRODUCTS as ON_SITE_POWER_PRODUCTS,
3556
+ PURCHASED_ELECTRICITY_PRODUCTS$b as PURCHASED_ELECTRICITY_PRODUCTS,
3557
+ PURCHASED_GOODS_AND_SERVICES$d as PURCHASED_GOODS_AND_SERVICES,
3558
+ REFRIGERANTS$6 as REFRIGERANTS,
3559
+ cement_SCOPE1_CEMENT as SCOPE1_CEMENT,
3560
+ cement_SCOPE2_CEMENT as SCOPE2_CEMENT,
3561
+ cement_SF6_PRODUCTS as SF6_PRODUCTS,
3562
+ cement_TRAVEL_EMISSIONS as TRAVEL_EMISSIONS,
3563
+ UPSTREAM_EMISSIONS_PURCHASED_FUELS$4 as UPSTREAM_EMISSIONS_PURCHASED_FUELS,
3564
+ USE_OF_SOLD_PRODUCTS$3 as USE_OF_SOLD_PRODUCTS,
3565
+ WASTE_DISPOSAL_EMISSIONS$4 as WASTE_DISPOSAL_EMISSIONS,
3566
+ WASTE_PRODUCTS$4 as WASTE_PRODUCTS,
3567
+ cement_WATER_MANAGEMENT_SCOPE as WATER_MANAGEMENT_SCOPE,
3568
+ WATER_PRODUCTS$4 as WATER_PRODUCTS,
3569
+ cement_getEndpointConfig as getEndpointConfig,
3570
+ cement_getIndustryConfig as getIndustryConfig,
3571
+ };
3572
+ }
3573
+
2766
3574
  type EmissionItem$f = {
2767
3575
  item: string;
2768
3576
  emissionFactor: number;
@@ -2900,6 +3708,73 @@ declare const WATER_MANAGEMENT_GAS_LAB: {
2900
3708
  desc: string;
2901
3709
  };
2902
3710
 
3711
+ declare const cementGaslab_BUSINESS_TRAVEL_GAS_LAB: typeof BUSINESS_TRAVEL_GAS_LAB;
3712
+ declare const cementGaslab_DIESEL_GENERATOR_GAS_LAB: typeof DIESEL_GENERATOR_GAS_LAB;
3713
+ declare const cementGaslab_DOWNSTREAM_TRANSPORTATION_GAS_LAB: typeof DOWNSTREAM_TRANSPORTATION_GAS_LAB;
3714
+ declare const cementGaslab_EMPLOYEE_COMMUTE_GAS_LAB: typeof EMPLOYEE_COMMUTE_GAS_LAB;
3715
+ declare const cementGaslab_FUEL_COMBUSTION_GAS_LAB: typeof FUEL_COMBUSTION_GAS_LAB;
3716
+ declare const cementGaslab_LOCATION_BASED_ELECTRICITY_GAS_LAB: typeof LOCATION_BASED_ELECTRICITY_GAS_LAB;
3717
+ declare const cementGaslab_LPG_PRODUCTS_GAS_LAB: typeof LPG_PRODUCTS_GAS_LAB;
3718
+ declare const cementGaslab_MARKET_BASED_ELECTRICITY_GAS_LAB: typeof MARKET_BASED_ELECTRICITY_GAS_LAB;
3719
+ declare const cementGaslab_PURCHASED_GOODS_GAS_LAB: typeof PURCHASED_GOODS_GAS_LAB;
3720
+ declare const cementGaslab_SCOPE1_GAS_LAB: typeof SCOPE1_GAS_LAB;
3721
+ declare const cementGaslab_SCOPE2_GAS_LAB: typeof SCOPE2_GAS_LAB;
3722
+ declare const cementGaslab_SCOPE3_GAS_LAB: typeof SCOPE3_GAS_LAB;
3723
+ declare const cementGaslab_UPSTREAM_TRANSPORTATION_GAS_LAB: typeof UPSTREAM_TRANSPORTATION_GAS_LAB;
3724
+ declare const cementGaslab_WASTE_GENERATED_GAS_LAB: typeof WASTE_GENERATED_GAS_LAB;
3725
+ declare const cementGaslab_WATER_MANAGEMENT_GAS_LAB: typeof WATER_MANAGEMENT_GAS_LAB;
3726
+ declare const cementGaslab_WATER_PRODUCTS_GAS_LAB: typeof WATER_PRODUCTS_GAS_LAB;
3727
+ declare const cementGaslab_WELDING_PRODUCTS_GAS_LAB: typeof WELDING_PRODUCTS_GAS_LAB;
3728
+ declare namespace cementGaslab {
3729
+ export {
3730
+ cementGaslab_BUSINESS_TRAVEL_GAS_LAB as BUSINESS_TRAVEL_GAS_LAB,
3731
+ cementGaslab_DIESEL_GENERATOR_GAS_LAB as DIESEL_GENERATOR_GAS_LAB,
3732
+ cementGaslab_DOWNSTREAM_TRANSPORTATION_GAS_LAB as DOWNSTREAM_TRANSPORTATION_GAS_LAB,
3733
+ cementGaslab_EMPLOYEE_COMMUTE_GAS_LAB as EMPLOYEE_COMMUTE_GAS_LAB,
3734
+ cementGaslab_FUEL_COMBUSTION_GAS_LAB as FUEL_COMBUSTION_GAS_LAB,
3735
+ cementGaslab_LOCATION_BASED_ELECTRICITY_GAS_LAB as LOCATION_BASED_ELECTRICITY_GAS_LAB,
3736
+ cementGaslab_LPG_PRODUCTS_GAS_LAB as LPG_PRODUCTS_GAS_LAB,
3737
+ cementGaslab_MARKET_BASED_ELECTRICITY_GAS_LAB as MARKET_BASED_ELECTRICITY_GAS_LAB,
3738
+ cementGaslab_PURCHASED_GOODS_GAS_LAB as PURCHASED_GOODS_GAS_LAB,
3739
+ cementGaslab_SCOPE1_GAS_LAB as SCOPE1_GAS_LAB,
3740
+ cementGaslab_SCOPE2_GAS_LAB as SCOPE2_GAS_LAB,
3741
+ cementGaslab_SCOPE3_GAS_LAB as SCOPE3_GAS_LAB,
3742
+ cementGaslab_UPSTREAM_TRANSPORTATION_GAS_LAB as UPSTREAM_TRANSPORTATION_GAS_LAB,
3743
+ cementGaslab_WASTE_GENERATED_GAS_LAB as WASTE_GENERATED_GAS_LAB,
3744
+ cementGaslab_WATER_MANAGEMENT_GAS_LAB as WATER_MANAGEMENT_GAS_LAB,
3745
+ cementGaslab_WATER_PRODUCTS_GAS_LAB as WATER_PRODUCTS_GAS_LAB,
3746
+ cementGaslab_WELDING_PRODUCTS_GAS_LAB as WELDING_PRODUCTS_GAS_LAB,
3747
+ };
3748
+ }
3749
+
3750
+ declare const ELECTRIC_PRODUCTS$3: {
3751
+ name: string;
3752
+ unit: string;
3753
+ type: string;
3754
+ calorificValue: number;
3755
+ emissionFactor: number;
3756
+ }[];
3757
+ declare const WATER_PRODUCTS$3: {
3758
+ name: string;
3759
+ unit: string;
3760
+ type: string;
3761
+ calorificValue: number;
3762
+ emissionFactor: number;
3763
+ }[];
3764
+ declare const WASTE_PRODUCTS$3: {
3765
+ name: string;
3766
+ unit: string;
3767
+ type: string;
3768
+ calorificValue: number;
3769
+ emissionFactor: number;
3770
+ }[];
3771
+ declare const REFRIGERANTS$5: {
3772
+ name: string;
3773
+ unit: string;
3774
+ type: string;
3775
+ calorificValue: number;
3776
+ emissionFactor: number;
3777
+ }[];
2903
3778
  declare const OPERATIONS_PRODUCTS: {
2904
3779
  name: string;
2905
3780
  unit: string;
@@ -2907,6 +3782,27 @@ declare const OPERATIONS_PRODUCTS: {
2907
3782
  calorificValue: number;
2908
3783
  emissionFactor: number;
2909
3784
  }[];
3785
+ declare const FIRE_EXTINGUISHER_PRODUCTS$b: {
3786
+ name: string;
3787
+ unit: string;
3788
+ type: string;
3789
+ calorificValue: number;
3790
+ emissionFactor: number;
3791
+ }[];
3792
+ declare const LPG_USAGE_PRODUCTS$b: {
3793
+ name: string;
3794
+ unit: string;
3795
+ type: string;
3796
+ calorificValue: number;
3797
+ emissionFactor: number;
3798
+ }[];
3799
+ declare const SF6_USAGE_PRODUCTS$b: {
3800
+ name: string;
3801
+ unit: string;
3802
+ type: string;
3803
+ calorificValue: number;
3804
+ emissionFactor: number;
3805
+ }[];
2910
3806
  declare const CHEMICAL_PROCESS_PRODUCTS: {
2911
3807
  name: string;
2912
3808
  unit: string;
@@ -2967,6 +3863,27 @@ type EquipmentCategory$3 = {
2967
3863
  items: EmissionItem$e[];
2968
3864
  };
2969
3865
  type Emissions$d = EquipmentCategory$3[];
3866
+ declare const PURCHASED_GOODS_AND_SERVICES$c: Emissions$d;
3867
+ declare const UPSTREAM_TRANSPORTATION_EMISSIONS$1: Emissions$d;
3868
+ declare const UPSTREAM_EMISSIONS_PURCHASED_FUELS$3: Emissions$d;
3869
+ declare const EMPLOYEE_COMMUTING$d: Emissions$d;
3870
+ declare const BUSINESS_TRAVEL$d: Emissions$d;
3871
+ declare const WASTE_DISPOSAL_EMISSIONS$3: {
3872
+ category: string;
3873
+ items: {
3874
+ item: string;
3875
+ emissionFactor: number;
3876
+ unit: string;
3877
+ }[];
3878
+ }[];
3879
+ declare const USE_OF_SOLD_PRODUCTS$2: {
3880
+ category: string;
3881
+ items: {
3882
+ item: string;
3883
+ emissionFactor: number;
3884
+ unit: string;
3885
+ }[];
3886
+ }[];
2970
3887
  declare const ALL_SCOPES_3_CHEMICAL: ({
2971
3888
  name: string;
2972
3889
  displayName: string;
@@ -2985,6 +3902,67 @@ declare const ALL_SCOPES_3_CHEMICAL: ({
2985
3902
  displayName?: undefined;
2986
3903
  })[];
2987
3904
 
3905
+ declare const chemical_ALLSCOPES_CHEMICAL: typeof ALLSCOPES_CHEMICAL;
3906
+ declare const chemical_ALL_SCOPES_3_CHEMICAL: typeof ALL_SCOPES_3_CHEMICAL;
3907
+ declare const chemical_CHEMICAL_PROCESS_PRODUCTS: typeof CHEMICAL_PROCESS_PRODUCTS;
3908
+ declare const chemical_OPERATIONS_PRODUCTS: typeof OPERATIONS_PRODUCTS;
3909
+ declare const chemical_SCOPE1_CHEMICAL: typeof SCOPE1_CHEMICAL;
3910
+ declare const chemical_SCOPE2_CHEMICAL: typeof SCOPE2_CHEMICAL;
3911
+ declare namespace chemical {
3912
+ export {
3913
+ chemical_ALLSCOPES_CHEMICAL as ALLSCOPES_CHEMICAL,
3914
+ chemical_ALL_SCOPES_3_CHEMICAL as ALL_SCOPES_3_CHEMICAL,
3915
+ BUSINESS_TRAVEL$d as BUSINESS_TRAVEL,
3916
+ chemical_CHEMICAL_PROCESS_PRODUCTS as CHEMICAL_PROCESS_PRODUCTS,
3917
+ ELECTRIC_PRODUCTS$3 as ELECTRIC_PRODUCTS,
3918
+ EMPLOYEE_COMMUTING$d as EMPLOYEE_COMMUTING,
3919
+ FIRE_EXTINGUISHER_PRODUCTS$b as FIRE_EXTINGUISHER_PRODUCTS,
3920
+ LPG_USAGE_PRODUCTS$b as LPG_USAGE_PRODUCTS,
3921
+ chemical_OPERATIONS_PRODUCTS as OPERATIONS_PRODUCTS,
3922
+ PURCHASED_GOODS_AND_SERVICES$c as PURCHASED_GOODS_AND_SERVICES,
3923
+ REFRIGERANTS$5 as REFRIGERANTS,
3924
+ chemical_SCOPE1_CHEMICAL as SCOPE1_CHEMICAL,
3925
+ chemical_SCOPE2_CHEMICAL as SCOPE2_CHEMICAL,
3926
+ SF6_USAGE_PRODUCTS$b as SF6_USAGE_PRODUCTS,
3927
+ UPSTREAM_EMISSIONS_PURCHASED_FUELS$3 as UPSTREAM_EMISSIONS_PURCHASED_FUELS,
3928
+ UPSTREAM_TRANSPORTATION_EMISSIONS$1 as UPSTREAM_TRANSPORTATION_EMISSIONS,
3929
+ USE_OF_SOLD_PRODUCTS$2 as USE_OF_SOLD_PRODUCTS,
3930
+ WASTE_DISPOSAL_EMISSIONS$3 as WASTE_DISPOSAL_EMISSIONS,
3931
+ WASTE_PRODUCTS$3 as WASTE_PRODUCTS,
3932
+ WATER_PRODUCTS$3 as WATER_PRODUCTS,
3933
+ };
3934
+ }
3935
+
3936
+ declare const ELECTRIC_PRODUCTS$2: {
3937
+ name: string;
3938
+ unit: string;
3939
+ type: string;
3940
+ renewable: boolean;
3941
+ calorificValue: number;
3942
+ emissionFactor: number;
3943
+ energyConversionFactor: number;
3944
+ }[];
3945
+ declare const WATER_PRODUCTS$2: {
3946
+ name: string;
3947
+ unit: string;
3948
+ type: string;
3949
+ calorificValue: number;
3950
+ emissionFactor: number;
3951
+ }[];
3952
+ declare const WASTE_PRODUCTS$2: {
3953
+ name: string;
3954
+ unit: string;
3955
+ type: string;
3956
+ calorificValue: number;
3957
+ emissionFactor: number;
3958
+ }[];
3959
+ declare const REFRIGERANTS$4: {
3960
+ name: string;
3961
+ unit: string;
3962
+ type: string;
3963
+ calorificValue: number;
3964
+ emissionFactor: number;
3965
+ }[];
2988
3966
  declare const SCOPE1_CONSTRUCTION: {
2989
3967
  name: string;
2990
3968
  icon: react_icons_lib.IconType;
@@ -3038,6 +4016,35 @@ type EquipmentCategory$2 = {
3038
4016
  items: EmissionItem$d[];
3039
4017
  };
3040
4018
  type Emissions$c = EquipmentCategory$2[];
4019
+ declare const PURCHASED_GOODS_AND_SERVICES$b: Emissions$c;
4020
+ declare const HOTEL_EQUIPMENT_EMISSIONS$1: {
4021
+ category: string;
4022
+ items: {
4023
+ item: string;
4024
+ emissionFactor: number;
4025
+ unit: string;
4026
+ }[];
4027
+ }[];
4028
+ declare const UPSTREAM_EMISSIONS_PURCHASED_FUELS$2: {
4029
+ category: string;
4030
+ items: {
4031
+ item: string;
4032
+ emissionFactor: number;
4033
+ unit: string;
4034
+ }[];
4035
+ }[];
4036
+ declare const GUEST_TRANSPORTATION_EMISSIONS: Emissions$c;
4037
+ declare const RAW_MATERIAL_TRANSPORTATION$1: {
4038
+ category: string;
4039
+ items: {
4040
+ item: string;
4041
+ emissionFactor: number;
4042
+ unit: string;
4043
+ }[];
4044
+ }[];
4045
+ declare const WASTE_DISPOSAL_EMISSIONS$2: Emissions$c;
4046
+ declare const EMPLOYEE_COMMUTING$c: Emissions$c;
4047
+ declare const BUSINESS_TRAVEL$c: Emissions$c;
3041
4048
  declare const ALL_SCOPES_3_CONSTRUCTION: ({
3042
4049
  name: string;
3043
4050
  displayName: string;
@@ -3056,6 +4063,32 @@ declare const ALL_SCOPES_3_CONSTRUCTION: ({
3056
4063
  displayName?: undefined;
3057
4064
  })[];
3058
4065
 
4066
+ declare const construction_ALLSCOPES_CONSTRUCTION: typeof ALLSCOPES_CONSTRUCTION;
4067
+ declare const construction_ALL_SCOPES_3_CONSTRUCTION: typeof ALL_SCOPES_3_CONSTRUCTION;
4068
+ declare const construction_GUEST_TRANSPORTATION_EMISSIONS: typeof GUEST_TRANSPORTATION_EMISSIONS;
4069
+ declare const construction_SCOPE1_CONSTRUCTION: typeof SCOPE1_CONSTRUCTION;
4070
+ declare const construction_SCOPE2_CONSTRUCTION: typeof SCOPE2_CONSTRUCTION;
4071
+ declare namespace construction {
4072
+ export {
4073
+ construction_ALLSCOPES_CONSTRUCTION as ALLSCOPES_CONSTRUCTION,
4074
+ construction_ALL_SCOPES_3_CONSTRUCTION as ALL_SCOPES_3_CONSTRUCTION,
4075
+ BUSINESS_TRAVEL$c as BUSINESS_TRAVEL,
4076
+ ELECTRIC_PRODUCTS$2 as ELECTRIC_PRODUCTS,
4077
+ EMPLOYEE_COMMUTING$c as EMPLOYEE_COMMUTING,
4078
+ construction_GUEST_TRANSPORTATION_EMISSIONS as GUEST_TRANSPORTATION_EMISSIONS,
4079
+ HOTEL_EQUIPMENT_EMISSIONS$1 as HOTEL_EQUIPMENT_EMISSIONS,
4080
+ PURCHASED_GOODS_AND_SERVICES$b as PURCHASED_GOODS_AND_SERVICES,
4081
+ RAW_MATERIAL_TRANSPORTATION$1 as RAW_MATERIAL_TRANSPORTATION,
4082
+ REFRIGERANTS$4 as REFRIGERANTS,
4083
+ construction_SCOPE1_CONSTRUCTION as SCOPE1_CONSTRUCTION,
4084
+ construction_SCOPE2_CONSTRUCTION as SCOPE2_CONSTRUCTION,
4085
+ UPSTREAM_EMISSIONS_PURCHASED_FUELS$2 as UPSTREAM_EMISSIONS_PURCHASED_FUELS,
4086
+ WASTE_DISPOSAL_EMISSIONS$2 as WASTE_DISPOSAL_EMISSIONS,
4087
+ WASTE_PRODUCTS$2 as WASTE_PRODUCTS,
4088
+ WATER_PRODUCTS$2 as WATER_PRODUCTS,
4089
+ };
4090
+ }
4091
+
3059
4092
  declare const SCOPE1_ELECTRICAL_EQUIPMENTS: {
3060
4093
  name: string;
3061
4094
  icon: react_icons_lib.IconType;
@@ -3131,6 +4164,54 @@ declare const ALLSCOPES_ELECTRICAL_EQUIPMENTS: ({
3131
4164
  desc: string;
3132
4165
  })[];
3133
4166
 
4167
+ declare const electricalEquipments_ALLSCOPES_ELECTRICAL_EQUIPMENTS: typeof ALLSCOPES_ELECTRICAL_EQUIPMENTS;
4168
+ declare const electricalEquipments_ALL_SCOPES_3_ELECTRICAL_EQUIPMENTS: typeof ALL_SCOPES_3_ELECTRICAL_EQUIPMENTS;
4169
+ declare const electricalEquipments_SCOPE1_ELECTRICAL_EQUIPMENTS: typeof SCOPE1_ELECTRICAL_EQUIPMENTS;
4170
+ declare const electricalEquipments_SCOPE2_ELECTRICAL_EQUIPMENTS: typeof SCOPE2_ELECTRICAL_EQUIPMENTS;
4171
+ declare namespace electricalEquipments {
4172
+ export {
4173
+ electricalEquipments_ALLSCOPES_ELECTRICAL_EQUIPMENTS as ALLSCOPES_ELECTRICAL_EQUIPMENTS,
4174
+ electricalEquipments_ALL_SCOPES_3_ELECTRICAL_EQUIPMENTS as ALL_SCOPES_3_ELECTRICAL_EQUIPMENTS,
4175
+ electricalEquipments_SCOPE1_ELECTRICAL_EQUIPMENTS as SCOPE1_ELECTRICAL_EQUIPMENTS,
4176
+ electricalEquipments_SCOPE2_ELECTRICAL_EQUIPMENTS as SCOPE2_ELECTRICAL_EQUIPMENTS,
4177
+ };
4178
+ }
4179
+
4180
+ declare const FUEL_COMBUSTION_PRODUCTS$9: {
4181
+ name: string;
4182
+ unit: string;
4183
+ type: string;
4184
+ calorificValue: number;
4185
+ emissionFactor: number;
4186
+ }[];
4187
+ declare const REFRIGERANT_PRODUCTS$8: {
4188
+ name: string;
4189
+ unit: string;
4190
+ type: string;
4191
+ calorificValue: number;
4192
+ emissionFactor: number;
4193
+ }[];
4194
+ declare const FIRE_EXTINGUISHER_PRODUCTS$a: {
4195
+ name: string;
4196
+ unit: string;
4197
+ type: string;
4198
+ calorificValue: number;
4199
+ emissionFactor: number;
4200
+ }[];
4201
+ declare const LPG_USAGE_PRODUCTS$a: {
4202
+ name: string;
4203
+ unit: string;
4204
+ type: string;
4205
+ calorificValue: number;
4206
+ emissionFactor: number;
4207
+ }[];
4208
+ declare const SF6_USAGE_PRODUCTS$a: {
4209
+ name: string;
4210
+ unit: string;
4211
+ type: string;
4212
+ calorificValue: number;
4213
+ emissionFactor: number;
4214
+ }[];
3134
4215
  declare const SCOPE1_FOOD: {
3135
4216
  name: string;
3136
4217
  icon: react_icons_lib.IconType;
@@ -3145,6 +4226,22 @@ declare const SCOPE1_FOOD: {
3145
4226
  }[];
3146
4227
  desc: string;
3147
4228
  }[];
4229
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$a: {
4230
+ name: string;
4231
+ unit: string;
4232
+ type: string;
4233
+ renewable: boolean;
4234
+ calorificValue: number;
4235
+ emissionFactor: number;
4236
+ }[];
4237
+ declare const RENEWABLE_ENERGY_PRODUCTS$a: {
4238
+ name: string;
4239
+ unit: string;
4240
+ type: string;
4241
+ renewable: boolean;
4242
+ calorificValue: number;
4243
+ emissionFactor: number;
4244
+ }[];
3148
4245
  declare const SCOPE2_FOOD: {
3149
4246
  name: string;
3150
4247
  icon: react_icons_lib.IconType;
@@ -3170,6 +4267,13 @@ type EmissionCategory$9 = {
3170
4267
  items: EmissionItem$c[];
3171
4268
  };
3172
4269
  type Emissions$b = EmissionCategory$9[];
4270
+ declare const PURCHASED_GOODS_AND_SERVICES$a: Emissions$b;
4271
+ declare const FUEL_ENERGY_RELATED$8: Emissions$b;
4272
+ declare const UPSTREAM_TRANSPORTATION$9: Emissions$b;
4273
+ declare const WASTE_OPERATIONS$8: Emissions$b;
4274
+ declare const EMPLOYEE_COMMUTING$b: Emissions$b;
4275
+ declare const BUSINESS_TRAVEL$b: Emissions$b;
4276
+ declare const WATER_USAGE$8: Emissions$b;
3173
4277
  declare const ALL_SCOPES_3_FOOD: {
3174
4278
  name: string;
3175
4279
  displayName: string;
@@ -3179,6 +4283,54 @@ declare const ALL_SCOPES_3_FOOD: {
3179
4283
  subProducts: Emissions$b;
3180
4284
  desc: string;
3181
4285
  }[];
4286
+ declare const ALLSCOPES_LOGISTICS$6: ({
4287
+ name: string;
4288
+ icon: react_icons_lib.IconType;
4289
+ scope: string;
4290
+ unit: string;
4291
+ subProducts: {
4292
+ name: string;
4293
+ unit: string;
4294
+ type: string;
4295
+ calorificValue: number;
4296
+ emissionFactor: number;
4297
+ }[];
4298
+ desc: string;
4299
+ } | {
4300
+ name: string;
4301
+ displayName: string;
4302
+ icon: react_icons_lib.IconType;
4303
+ scope: string;
4304
+ unit: string;
4305
+ subProducts: Emissions$b;
4306
+ desc: string;
4307
+ })[];
4308
+
4309
+ declare const food_ALL_SCOPES_3_FOOD: typeof ALL_SCOPES_3_FOOD;
4310
+ declare const food_SCOPE1_FOOD: typeof SCOPE1_FOOD;
4311
+ declare const food_SCOPE2_FOOD: typeof SCOPE2_FOOD;
4312
+ declare namespace food {
4313
+ export {
4314
+ ALLSCOPES_LOGISTICS$6 as ALLSCOPES_LOGISTICS,
4315
+ food_ALL_SCOPES_3_FOOD as ALL_SCOPES_3_FOOD,
4316
+ BUSINESS_TRAVEL$b as BUSINESS_TRAVEL,
4317
+ EMPLOYEE_COMMUTING$b as EMPLOYEE_COMMUTING,
4318
+ FIRE_EXTINGUISHER_PRODUCTS$a as FIRE_EXTINGUISHER_PRODUCTS,
4319
+ FUEL_COMBUSTION_PRODUCTS$9 as FUEL_COMBUSTION_PRODUCTS,
4320
+ FUEL_ENERGY_RELATED$8 as FUEL_ENERGY_RELATED,
4321
+ LPG_USAGE_PRODUCTS$a as LPG_USAGE_PRODUCTS,
4322
+ PURCHASED_ELECTRICITY_PRODUCTS$a as PURCHASED_ELECTRICITY_PRODUCTS,
4323
+ PURCHASED_GOODS_AND_SERVICES$a as PURCHASED_GOODS_AND_SERVICES,
4324
+ REFRIGERANT_PRODUCTS$8 as REFRIGERANT_PRODUCTS,
4325
+ RENEWABLE_ENERGY_PRODUCTS$a as RENEWABLE_ENERGY_PRODUCTS,
4326
+ food_SCOPE1_FOOD as SCOPE1_FOOD,
4327
+ food_SCOPE2_FOOD as SCOPE2_FOOD,
4328
+ SF6_USAGE_PRODUCTS$a as SF6_USAGE_PRODUCTS,
4329
+ UPSTREAM_TRANSPORTATION$9 as UPSTREAM_TRANSPORTATION,
4330
+ WASTE_OPERATIONS$8 as WASTE_OPERATIONS,
4331
+ WATER_USAGE$8 as WATER_USAGE,
4332
+ };
4333
+ }
3182
4334
 
3183
4335
  type EmissionItem$b = {
3184
4336
  item: string;
@@ -3197,28 +4349,70 @@ declare const OPERATION_PRODUCTS: {
3197
4349
  calorificValue: number;
3198
4350
  emissionFactor: number;
3199
4351
  }[];
3200
- declare const SCOPE1_HOSPITALITY: {
4352
+ declare const REFRIGERANTS$3: {
3201
4353
  name: string;
3202
- icon: react_icons_lib.IconType;
3203
- scope: string;
3204
4354
  unit: string;
3205
- subProducts: {
3206
- name: string;
3207
- unit: string;
3208
- type: string;
3209
- calorificValue: number;
3210
- emissionFactor: number;
3211
- }[];
3212
- desc: string;
4355
+ type: string;
4356
+ calorificValue: number;
4357
+ emissionFactor: number;
3213
4358
  }[];
3214
- declare const SCOPE2_HOSPITALITY: {
4359
+ declare const FIRE_EXTINGUISHER_PRODUCTS$9: {
3215
4360
  name: string;
3216
- icon: react_icons_lib.IconType;
3217
- scope: string;
3218
4361
  unit: string;
3219
- subProducts: {
3220
- name: string;
3221
- unit: string;
4362
+ type: string;
4363
+ calorificValue: number;
4364
+ emissionFactor: number;
4365
+ }[];
4366
+ declare const LPG_USAGE_PRODUCTS$9: {
4367
+ name: string;
4368
+ unit: string;
4369
+ type: string;
4370
+ calorificValue: number;
4371
+ emissionFactor: number;
4372
+ }[];
4373
+ declare const SF6_USAGE_PRODUCTS$9: {
4374
+ name: string;
4375
+ unit: string;
4376
+ type: string;
4377
+ calorificValue: number;
4378
+ emissionFactor: number;
4379
+ }[];
4380
+ declare const SCOPE1_HOSPITALITY: {
4381
+ name: string;
4382
+ icon: react_icons_lib.IconType;
4383
+ scope: string;
4384
+ unit: string;
4385
+ subProducts: {
4386
+ name: string;
4387
+ unit: string;
4388
+ type: string;
4389
+ calorificValue: number;
4390
+ emissionFactor: number;
4391
+ }[];
4392
+ desc: string;
4393
+ }[];
4394
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$9: {
4395
+ name: string;
4396
+ unit: string;
4397
+ type: string;
4398
+ calorificValue: number;
4399
+ emissionFactor: number;
4400
+ }[];
4401
+ declare const RENEWABLE_ENERGY_PRODUCTS$9: {
4402
+ name: string;
4403
+ unit: string;
4404
+ type: string;
4405
+ calorificValue: number;
4406
+ emissionFactor: number;
4407
+ }[];
4408
+ declare const SCOPE2_HOSPITALITY: {
4409
+ name: string;
4410
+ icon: react_icons_lib.IconType;
4411
+ scope: string;
4412
+ unit: string;
4413
+ subProducts: {
4414
+ name: string;
4415
+ unit: string;
3222
4416
  type: string;
3223
4417
  renewable: boolean;
3224
4418
  calorificValue: number;
@@ -3240,6 +4434,8 @@ declare const BUSINESS_TRAVEL_GROUND_PRODUCTS: Emissions$a;
3240
4434
  declare const UPSTREAM_TRANSPORTATION_PRODUCTS: Emissions$a;
3241
4435
  declare const WATER_USAGE_PRODUCTS: Emissions$a;
3242
4436
  declare const WATER_DISCHARGE_PRODUCTS: Emissions$a;
4437
+ declare const EMPLOYEE_COMMUTING$a: Emissions$a;
4438
+ declare const BUSINESS_TRAVEL$a: Emissions$a;
3243
4439
  type Scope3Item = {
3244
4440
  name: string;
3245
4441
  displayName: string;
@@ -3265,6 +4461,92 @@ declare const ALLSCOPES_HOSPITALITY: ({
3265
4461
  desc: string;
3266
4462
  } | Scope3Item)[];
3267
4463
 
4464
+ declare const hospitality_ALLSCOPES_HOSPITALITY: typeof ALLSCOPES_HOSPITALITY;
4465
+ declare const hospitality_BUSINESS_TRAVEL_AIR_PRODUCTS: typeof BUSINESS_TRAVEL_AIR_PRODUCTS;
4466
+ declare const hospitality_BUSINESS_TRAVEL_GROUND_PRODUCTS: typeof BUSINESS_TRAVEL_GROUND_PRODUCTS;
4467
+ declare const hospitality_EMPLOYEE_COMMUTING_CAR_PRODUCTS: typeof EMPLOYEE_COMMUTING_CAR_PRODUCTS;
4468
+ declare const hospitality_EMPLOYEE_COMMUTING_PUBLIC_TRANSPORT_PRODUCTS: typeof EMPLOYEE_COMMUTING_PUBLIC_TRANSPORT_PRODUCTS;
4469
+ declare const hospitality_EMPLOYEE_COMMUTING_TWO_WHEELER_PRODUCTS: typeof EMPLOYEE_COMMUTING_TWO_WHEELER_PRODUCTS;
4470
+ declare const hospitality_MAINTENANCE_MATERIALS_PRODUCTS: typeof MAINTENANCE_MATERIALS_PRODUCTS;
4471
+ declare const hospitality_OPERATION_PRODUCTS: typeof OPERATION_PRODUCTS;
4472
+ declare const hospitality_PACKAGING_MATERIALS_PRODUCTS: typeof PACKAGING_MATERIALS_PRODUCTS;
4473
+ declare const hospitality_RAW_MATERIALS_PRODUCTS: typeof RAW_MATERIALS_PRODUCTS;
4474
+ declare const hospitality_SCOPE1_HOSPITALITY: typeof SCOPE1_HOSPITALITY;
4475
+ declare const hospitality_SCOPE2_HOSPITALITY: typeof SCOPE2_HOSPITALITY;
4476
+ declare const hospitality_SCOPE3_HOSPITALITY: typeof SCOPE3_HOSPITALITY;
4477
+ declare const hospitality_TD_LOSSES_ELECTRICITY_PRODUCTS: typeof TD_LOSSES_ELECTRICITY_PRODUCTS;
4478
+ declare const hospitality_UPSTREAM_FUEL_EMISSIONS_PRODUCTS: typeof UPSTREAM_FUEL_EMISSIONS_PRODUCTS;
4479
+ declare const hospitality_UPSTREAM_TRANSPORTATION_PRODUCTS: typeof UPSTREAM_TRANSPORTATION_PRODUCTS;
4480
+ declare const hospitality_WASTE_GENERATED_PRODUCTS: typeof WASTE_GENERATED_PRODUCTS;
4481
+ declare const hospitality_WATER_DISCHARGE_PRODUCTS: typeof WATER_DISCHARGE_PRODUCTS;
4482
+ declare const hospitality_WATER_USAGE_PRODUCTS: typeof WATER_USAGE_PRODUCTS;
4483
+ declare namespace hospitality {
4484
+ export {
4485
+ hospitality_ALLSCOPES_HOSPITALITY as ALLSCOPES_HOSPITALITY,
4486
+ BUSINESS_TRAVEL$a as BUSINESS_TRAVEL,
4487
+ hospitality_BUSINESS_TRAVEL_AIR_PRODUCTS as BUSINESS_TRAVEL_AIR_PRODUCTS,
4488
+ hospitality_BUSINESS_TRAVEL_GROUND_PRODUCTS as BUSINESS_TRAVEL_GROUND_PRODUCTS,
4489
+ EMPLOYEE_COMMUTING$a as EMPLOYEE_COMMUTING,
4490
+ hospitality_EMPLOYEE_COMMUTING_CAR_PRODUCTS as EMPLOYEE_COMMUTING_CAR_PRODUCTS,
4491
+ hospitality_EMPLOYEE_COMMUTING_PUBLIC_TRANSPORT_PRODUCTS as EMPLOYEE_COMMUTING_PUBLIC_TRANSPORT_PRODUCTS,
4492
+ hospitality_EMPLOYEE_COMMUTING_TWO_WHEELER_PRODUCTS as EMPLOYEE_COMMUTING_TWO_WHEELER_PRODUCTS,
4493
+ FIRE_EXTINGUISHER_PRODUCTS$9 as FIRE_EXTINGUISHER_PRODUCTS,
4494
+ LPG_USAGE_PRODUCTS$9 as LPG_USAGE_PRODUCTS,
4495
+ hospitality_MAINTENANCE_MATERIALS_PRODUCTS as MAINTENANCE_MATERIALS_PRODUCTS,
4496
+ hospitality_OPERATION_PRODUCTS as OPERATION_PRODUCTS,
4497
+ hospitality_PACKAGING_MATERIALS_PRODUCTS as PACKAGING_MATERIALS_PRODUCTS,
4498
+ PURCHASED_ELECTRICITY_PRODUCTS$9 as PURCHASED_ELECTRICITY_PRODUCTS,
4499
+ hospitality_RAW_MATERIALS_PRODUCTS as RAW_MATERIALS_PRODUCTS,
4500
+ REFRIGERANTS$3 as REFRIGERANTS,
4501
+ RENEWABLE_ENERGY_PRODUCTS$9 as RENEWABLE_ENERGY_PRODUCTS,
4502
+ hospitality_SCOPE1_HOSPITALITY as SCOPE1_HOSPITALITY,
4503
+ hospitality_SCOPE2_HOSPITALITY as SCOPE2_HOSPITALITY,
4504
+ hospitality_SCOPE3_HOSPITALITY as SCOPE3_HOSPITALITY,
4505
+ SF6_USAGE_PRODUCTS$9 as SF6_USAGE_PRODUCTS,
4506
+ hospitality_TD_LOSSES_ELECTRICITY_PRODUCTS as TD_LOSSES_ELECTRICITY_PRODUCTS,
4507
+ hospitality_UPSTREAM_FUEL_EMISSIONS_PRODUCTS as UPSTREAM_FUEL_EMISSIONS_PRODUCTS,
4508
+ hospitality_UPSTREAM_TRANSPORTATION_PRODUCTS as UPSTREAM_TRANSPORTATION_PRODUCTS,
4509
+ hospitality_WASTE_GENERATED_PRODUCTS as WASTE_GENERATED_PRODUCTS,
4510
+ hospitality_WATER_DISCHARGE_PRODUCTS as WATER_DISCHARGE_PRODUCTS,
4511
+ hospitality_WATER_USAGE_PRODUCTS as WATER_USAGE_PRODUCTS,
4512
+ };
4513
+ }
4514
+
4515
+ declare const FUEL_COMBUSTION_PRODUCTS$8: {
4516
+ name: string;
4517
+ unit: string;
4518
+ type: string;
4519
+ calorificValue: number;
4520
+ emissionFactor: number;
4521
+ }[];
4522
+ declare const REFRIGERANT_PRODUCTS$7: {
4523
+ name: string;
4524
+ unit: string;
4525
+ type: string;
4526
+ calorificValue: number;
4527
+ emissionFactor: number;
4528
+ }[];
4529
+ declare const FIRE_EXTINGUISHER_PRODUCTS$8: {
4530
+ name: string;
4531
+ unit: string;
4532
+ type: string;
4533
+ calorificValue: number;
4534
+ emissionFactor: number;
4535
+ }[];
4536
+ declare const LPG_USAGE_PRODUCTS$8: {
4537
+ name: string;
4538
+ unit: string;
4539
+ type: string;
4540
+ calorificValue: number;
4541
+ emissionFactor: number;
4542
+ }[];
4543
+ declare const SF6_USAGE_PRODUCTS$8: {
4544
+ name: string;
4545
+ unit: string;
4546
+ type: string;
4547
+ calorificValue: number;
4548
+ emissionFactor: number;
4549
+ }[];
3268
4550
  declare const SCOPE1_LOGISTICS: {
3269
4551
  name: string;
3270
4552
  icon: react_icons_lib.IconType;
@@ -3279,6 +4561,22 @@ declare const SCOPE1_LOGISTICS: {
3279
4561
  }[];
3280
4562
  desc: string;
3281
4563
  }[];
4564
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$8: {
4565
+ name: string;
4566
+ unit: string;
4567
+ type: string;
4568
+ renewable: boolean;
4569
+ calorificValue: number;
4570
+ emissionFactor: number;
4571
+ }[];
4572
+ declare const RENEWABLE_ENERGY_PRODUCTS$8: {
4573
+ name: string;
4574
+ unit: string;
4575
+ type: string;
4576
+ renewable: boolean;
4577
+ calorificValue: number;
4578
+ emissionFactor: number;
4579
+ }[];
3282
4580
  declare const SCOPE2_LOGISTICS: {
3283
4581
  name: string;
3284
4582
  icon: react_icons_lib.IconType;
@@ -3304,6 +4602,13 @@ type EmissionCategory$8 = {
3304
4602
  items: EmissionItem$a[];
3305
4603
  };
3306
4604
  type Emissions$9 = EmissionCategory$8[];
4605
+ declare const PURCHASED_GOODS_AND_SERVICES$9: Emissions$9;
4606
+ declare const FUEL_ENERGY_RELATED$7: Emissions$9;
4607
+ declare const UPSTREAM_TRANSPORTATION$8: Emissions$9;
4608
+ declare const WASTE_OPERATIONS$7: Emissions$9;
4609
+ declare const EMPLOYEE_COMMUTING$9: Emissions$9;
4610
+ declare const BUSINESS_TRAVEL$9: Emissions$9;
4611
+ declare const WATER_USAGE$7: Emissions$9;
3307
4612
  declare const ALL_SCOPES_3_LOGISTICS: {
3308
4613
  name: string;
3309
4614
  displayName: string;
@@ -3313,7 +4618,84 @@ declare const ALL_SCOPES_3_LOGISTICS: {
3313
4618
  subProducts: Emissions$9;
3314
4619
  desc: string;
3315
4620
  }[];
4621
+ declare const ALLSCOPES_LOGISTICS$5: ({
4622
+ name: string;
4623
+ icon: react_icons_lib.IconType;
4624
+ scope: string;
4625
+ unit: string;
4626
+ subProducts: {
4627
+ name: string;
4628
+ unit: string;
4629
+ type: string;
4630
+ calorificValue: number;
4631
+ emissionFactor: number;
4632
+ }[];
4633
+ desc: string;
4634
+ } | {
4635
+ name: string;
4636
+ displayName: string;
4637
+ icon: react_icons_lib.IconType;
4638
+ scope: string;
4639
+ unit: string;
4640
+ subProducts: Emissions$9;
4641
+ desc: string;
4642
+ })[];
4643
+
4644
+ declare const logistics_ALL_SCOPES_3_LOGISTICS: typeof ALL_SCOPES_3_LOGISTICS;
4645
+ declare const logistics_SCOPE1_LOGISTICS: typeof SCOPE1_LOGISTICS;
4646
+ declare const logistics_SCOPE2_LOGISTICS: typeof SCOPE2_LOGISTICS;
4647
+ declare namespace logistics {
4648
+ export {
4649
+ ALLSCOPES_LOGISTICS$5 as ALLSCOPES_LOGISTICS,
4650
+ logistics_ALL_SCOPES_3_LOGISTICS as ALL_SCOPES_3_LOGISTICS,
4651
+ BUSINESS_TRAVEL$9 as BUSINESS_TRAVEL,
4652
+ EMPLOYEE_COMMUTING$9 as EMPLOYEE_COMMUTING,
4653
+ FIRE_EXTINGUISHER_PRODUCTS$8 as FIRE_EXTINGUISHER_PRODUCTS,
4654
+ FUEL_COMBUSTION_PRODUCTS$8 as FUEL_COMBUSTION_PRODUCTS,
4655
+ FUEL_ENERGY_RELATED$7 as FUEL_ENERGY_RELATED,
4656
+ LPG_USAGE_PRODUCTS$8 as LPG_USAGE_PRODUCTS,
4657
+ PURCHASED_ELECTRICITY_PRODUCTS$8 as PURCHASED_ELECTRICITY_PRODUCTS,
4658
+ PURCHASED_GOODS_AND_SERVICES$9 as PURCHASED_GOODS_AND_SERVICES,
4659
+ REFRIGERANT_PRODUCTS$7 as REFRIGERANT_PRODUCTS,
4660
+ RENEWABLE_ENERGY_PRODUCTS$8 as RENEWABLE_ENERGY_PRODUCTS,
4661
+ logistics_SCOPE1_LOGISTICS as SCOPE1_LOGISTICS,
4662
+ logistics_SCOPE2_LOGISTICS as SCOPE2_LOGISTICS,
4663
+ SF6_USAGE_PRODUCTS$8 as SF6_USAGE_PRODUCTS,
4664
+ UPSTREAM_TRANSPORTATION$8 as UPSTREAM_TRANSPORTATION,
4665
+ WASTE_OPERATIONS$7 as WASTE_OPERATIONS,
4666
+ WATER_USAGE$7 as WATER_USAGE,
4667
+ };
4668
+ }
3316
4669
 
4670
+ declare const ELECTRIC_PRODUCTS$1: {
4671
+ name: string;
4672
+ unit: string;
4673
+ type: string;
4674
+ renewable: boolean;
4675
+ calorificValue: number;
4676
+ emissionFactor: number;
4677
+ }[];
4678
+ declare const WATER_PRODUCTS$1: {
4679
+ name: string;
4680
+ unit: string;
4681
+ type: string;
4682
+ calorificValue: number;
4683
+ emissionFactor: number;
4684
+ }[];
4685
+ declare const WASTE_PRODUCTS$1: {
4686
+ name: string;
4687
+ unit: string;
4688
+ type: string;
4689
+ calorificValue: number;
4690
+ emissionFactor: number;
4691
+ }[];
4692
+ declare const REFRIGERANTS$2: {
4693
+ name: string;
4694
+ unit: string;
4695
+ type: string;
4696
+ calorificValue: number;
4697
+ emissionFactor: number;
4698
+ }[];
3317
4699
  declare const MANUFACTURING_PROCESS_PRODUCTS: {
3318
4700
  name: string;
3319
4701
  unit: string;
@@ -3375,7 +4757,36 @@ type EquipmentCategory = {
3375
4757
  items: EmissionItem$9[];
3376
4758
  };
3377
4759
  type Emissions$8 = EquipmentCategory[];
4760
+ declare const PURCHASED_GOODS_AND_SERVICES$8: {
4761
+ category: string;
4762
+ items: {
4763
+ item: string;
4764
+ emissionFactor: number;
4765
+ unit: string;
4766
+ requiresMassData: boolean;
4767
+ }[];
4768
+ }[];
4769
+ declare const UPSTREAM_TRANSPORTATION_EMISSIONS: Emissions$8;
4770
+ declare const UPSTREAM_EMISSIONS_PURCHASED_FUELS$1: Emissions$8;
4771
+ declare const EMPLOYEE_COMMUTING$8: Emissions$8;
4772
+ declare const BUSINESS_TRAVEL$8: Emissions$8;
3378
4773
  declare const WASTE_FROM_OPERATIONS: Emissions$8;
4774
+ declare const WASTE_DISPOSAL_EMISSIONS$1: {
4775
+ category: string;
4776
+ items: {
4777
+ item: string;
4778
+ emissionFactor: number;
4779
+ unit: string;
4780
+ }[];
4781
+ }[];
4782
+ declare const USE_OF_SOLD_PRODUCTS$1: {
4783
+ category: string;
4784
+ items: {
4785
+ item: string;
4786
+ emissionFactor: number;
4787
+ unit: string;
4788
+ }[];
4789
+ }[];
3379
4790
  declare const ALL_SCOPES_3_MANUFACTURING: ({
3380
4791
  name: string;
3381
4792
  displayName: string;
@@ -3394,6 +4805,77 @@ declare const ALL_SCOPES_3_MANUFACTURING: ({
3394
4805
  displayName?: undefined;
3395
4806
  })[];
3396
4807
 
4808
+ declare const manufacturing_ALLSCOPES_MANUFACTURING: typeof ALLSCOPES_MANUFACTURING;
4809
+ declare const manufacturing_ALL_SCOPES_3_MANUFACTURING: typeof ALL_SCOPES_3_MANUFACTURING;
4810
+ declare const manufacturing_MANUFACTURING_PROCESS_PRODUCTS: typeof MANUFACTURING_PROCESS_PRODUCTS;
4811
+ declare const manufacturing_SCOPE1_MANUFACTURING: typeof SCOPE1_MANUFACTURING;
4812
+ declare const manufacturing_SCOPE2_MANUFACTURING: typeof SCOPE2_MANUFACTURING;
4813
+ declare const manufacturing_UPSTREAM_TRANSPORTATION_EMISSIONS: typeof UPSTREAM_TRANSPORTATION_EMISSIONS;
4814
+ declare const manufacturing_WASTE_FROM_OPERATIONS: typeof WASTE_FROM_OPERATIONS;
4815
+ declare namespace manufacturing {
4816
+ export {
4817
+ manufacturing_ALLSCOPES_MANUFACTURING as ALLSCOPES_MANUFACTURING,
4818
+ manufacturing_ALL_SCOPES_3_MANUFACTURING as ALL_SCOPES_3_MANUFACTURING,
4819
+ BUSINESS_TRAVEL$8 as BUSINESS_TRAVEL,
4820
+ ELECTRIC_PRODUCTS$1 as ELECTRIC_PRODUCTS,
4821
+ EMPLOYEE_COMMUTING$8 as EMPLOYEE_COMMUTING,
4822
+ manufacturing_MANUFACTURING_PROCESS_PRODUCTS as MANUFACTURING_PROCESS_PRODUCTS,
4823
+ PURCHASED_GOODS_AND_SERVICES$8 as PURCHASED_GOODS_AND_SERVICES,
4824
+ REFRIGERANTS$2 as REFRIGERANTS,
4825
+ manufacturing_SCOPE1_MANUFACTURING as SCOPE1_MANUFACTURING,
4826
+ manufacturing_SCOPE2_MANUFACTURING as SCOPE2_MANUFACTURING,
4827
+ UPSTREAM_EMISSIONS_PURCHASED_FUELS$1 as UPSTREAM_EMISSIONS_PURCHASED_FUELS,
4828
+ manufacturing_UPSTREAM_TRANSPORTATION_EMISSIONS as UPSTREAM_TRANSPORTATION_EMISSIONS,
4829
+ USE_OF_SOLD_PRODUCTS$1 as USE_OF_SOLD_PRODUCTS,
4830
+ WASTE_DISPOSAL_EMISSIONS$1 as WASTE_DISPOSAL_EMISSIONS,
4831
+ manufacturing_WASTE_FROM_OPERATIONS as WASTE_FROM_OPERATIONS,
4832
+ WASTE_PRODUCTS$1 as WASTE_PRODUCTS,
4833
+ WATER_PRODUCTS$1 as WATER_PRODUCTS,
4834
+ };
4835
+ }
4836
+
4837
+ declare const FUEL_COMBUSTION_PRODUCTS$7: {
4838
+ name: string;
4839
+ unit: string;
4840
+ type: string;
4841
+ calorificValue: number;
4842
+ emissionFactor: number;
4843
+ }[];
4844
+ declare const REFRIGERANT_PRODUCTS$6: {
4845
+ name: string;
4846
+ unit: string;
4847
+ type: string;
4848
+ calorificValue: number;
4849
+ emissionFactor: number;
4850
+ }[];
4851
+ declare const FIRE_EXTINGUISHER_PRODUCTS$7: {
4852
+ name: string;
4853
+ unit: string;
4854
+ type: string;
4855
+ calorificValue: number;
4856
+ emissionFactor: number;
4857
+ }[];
4858
+ declare const LPG_USAGE_PRODUCTS$7: {
4859
+ name: string;
4860
+ unit: string;
4861
+ type: string;
4862
+ calorificValue: number;
4863
+ emissionFactor: number;
4864
+ }[];
4865
+ declare const SF6_USAGE_PRODUCTS$7: {
4866
+ name: string;
4867
+ unit: string;
4868
+ type: string;
4869
+ calorificValue: number;
4870
+ emissionFactor: number;
4871
+ }[];
4872
+ declare const SOLID_FUEL_PRODUCTS: {
4873
+ name: string;
4874
+ unit: string;
4875
+ type: string;
4876
+ calorificValue: number;
4877
+ emissionFactor: number;
4878
+ }[];
3397
4879
  declare const SCOPE1_METAL: {
3398
4880
  name: string;
3399
4881
  icon: react_icons_lib.IconType;
@@ -3408,6 +4890,22 @@ declare const SCOPE1_METAL: {
3408
4890
  }[];
3409
4891
  desc: string;
3410
4892
  }[];
4893
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$7: {
4894
+ name: string;
4895
+ unit: string;
4896
+ type: string;
4897
+ renewable: boolean;
4898
+ calorificValue: number;
4899
+ emissionFactor: number;
4900
+ }[];
4901
+ declare const RENEWABLE_ENERGY_PRODUCTS$7: {
4902
+ name: string;
4903
+ unit: string;
4904
+ type: string;
4905
+ renewable: boolean;
4906
+ calorificValue: number;
4907
+ emissionFactor: number;
4908
+ }[];
3411
4909
  declare const SCOPE2_METAL: {
3412
4910
  name: string;
3413
4911
  icon: react_icons_lib.IconType;
@@ -3433,6 +4931,13 @@ type EmissionCategory$7 = {
3433
4931
  items: EmissionItem$8[];
3434
4932
  };
3435
4933
  type Emissions$7 = EmissionCategory$7[];
4934
+ declare const PURCHASED_GOODS_AND_SERVICES$7: Emissions$7;
4935
+ declare const FUEL_ENERGY_RELATED$6: Emissions$7;
4936
+ declare const UPSTREAM_TRANSPORTATION$7: Emissions$7;
4937
+ declare const WASTE_OPERATIONS$6: Emissions$7;
4938
+ declare const EMPLOYEE_COMMUTING$7: Emissions$7;
4939
+ declare const BUSINESS_TRAVEL$7: Emissions$7;
4940
+ declare const WATER_USAGE$6: Emissions$7;
3436
4941
  declare const ALL_SCOPES_3_METAL: {
3437
4942
  name: string;
3438
4943
  displayName: string;
@@ -3442,8 +4947,7 @@ declare const ALL_SCOPES_3_METAL: {
3442
4947
  subProducts: Emissions$7;
3443
4948
  desc: string;
3444
4949
  }[];
3445
-
3446
- declare const SCOPE1_PETRO_CHEMICAL: {
4950
+ declare const ALLSCOPES_LOGISTICS$4: ({
3447
4951
  name: string;
3448
4952
  icon: react_icons_lib.IconType;
3449
4953
  scope: string;
@@ -3456,32 +4960,141 @@ declare const SCOPE1_PETRO_CHEMICAL: {
3456
4960
  emissionFactor: number;
3457
4961
  }[];
3458
4962
  desc: string;
3459
- }[];
3460
- declare const SCOPE2_PETRO_CHEMICAL: {
4963
+ } | {
3461
4964
  name: string;
4965
+ displayName: string;
3462
4966
  icon: react_icons_lib.IconType;
3463
4967
  scope: string;
3464
4968
  unit: string;
3465
- subProducts: {
3466
- name: string;
3467
- unit: string;
3468
- type: string;
3469
- renewable: boolean;
3470
- calorificValue: number;
3471
- emissionFactor: number;
3472
- }[];
4969
+ subProducts: Emissions$7;
3473
4970
  desc: string;
3474
- }[];
3475
- type EmissionItem$7 = {
3476
- item: string;
4971
+ })[];
4972
+
4973
+ declare const metal_ALL_SCOPES_3_METAL: typeof ALL_SCOPES_3_METAL;
4974
+ declare const metal_SCOPE1_METAL: typeof SCOPE1_METAL;
4975
+ declare const metal_SCOPE2_METAL: typeof SCOPE2_METAL;
4976
+ declare const metal_SOLID_FUEL_PRODUCTS: typeof SOLID_FUEL_PRODUCTS;
4977
+ declare namespace metal {
4978
+ export {
4979
+ ALLSCOPES_LOGISTICS$4 as ALLSCOPES_LOGISTICS,
4980
+ metal_ALL_SCOPES_3_METAL as ALL_SCOPES_3_METAL,
4981
+ BUSINESS_TRAVEL$7 as BUSINESS_TRAVEL,
4982
+ EMPLOYEE_COMMUTING$7 as EMPLOYEE_COMMUTING,
4983
+ FIRE_EXTINGUISHER_PRODUCTS$7 as FIRE_EXTINGUISHER_PRODUCTS,
4984
+ FUEL_COMBUSTION_PRODUCTS$7 as FUEL_COMBUSTION_PRODUCTS,
4985
+ FUEL_ENERGY_RELATED$6 as FUEL_ENERGY_RELATED,
4986
+ LPG_USAGE_PRODUCTS$7 as LPG_USAGE_PRODUCTS,
4987
+ PURCHASED_ELECTRICITY_PRODUCTS$7 as PURCHASED_ELECTRICITY_PRODUCTS,
4988
+ PURCHASED_GOODS_AND_SERVICES$7 as PURCHASED_GOODS_AND_SERVICES,
4989
+ REFRIGERANT_PRODUCTS$6 as REFRIGERANT_PRODUCTS,
4990
+ RENEWABLE_ENERGY_PRODUCTS$7 as RENEWABLE_ENERGY_PRODUCTS,
4991
+ metal_SCOPE1_METAL as SCOPE1_METAL,
4992
+ metal_SCOPE2_METAL as SCOPE2_METAL,
4993
+ SF6_USAGE_PRODUCTS$7 as SF6_USAGE_PRODUCTS,
4994
+ metal_SOLID_FUEL_PRODUCTS as SOLID_FUEL_PRODUCTS,
4995
+ UPSTREAM_TRANSPORTATION$7 as UPSTREAM_TRANSPORTATION,
4996
+ WASTE_OPERATIONS$6 as WASTE_OPERATIONS,
4997
+ WATER_USAGE$6 as WATER_USAGE,
4998
+ };
4999
+ }
5000
+
5001
+ declare const FUEL_COMBUSTION_PRODUCTS$6: {
5002
+ name: string;
5003
+ unit: string;
5004
+ type: string;
5005
+ calorificValue: number;
3477
5006
  emissionFactor: number;
5007
+ }[];
5008
+ declare const REFRIGERANT_PRODUCTS$5: {
5009
+ name: string;
3478
5010
  unit: string;
3479
- };
3480
- type EmissionCategory$6 = {
3481
- category: string;
5011
+ type: string;
5012
+ calorificValue: number;
5013
+ emissionFactor: number;
5014
+ }[];
5015
+ declare const FIRE_EXTINGUISHER_PRODUCTS$6: {
5016
+ name: string;
5017
+ unit: string;
5018
+ type: string;
5019
+ calorificValue: number;
5020
+ emissionFactor: number;
5021
+ }[];
5022
+ declare const LPG_USAGE_PRODUCTS$6: {
5023
+ name: string;
5024
+ unit: string;
5025
+ type: string;
5026
+ calorificValue: number;
5027
+ emissionFactor: number;
5028
+ }[];
5029
+ declare const SF6_USAGE_PRODUCTS$6: {
5030
+ name: string;
5031
+ unit: string;
5032
+ type: string;
5033
+ calorificValue: number;
5034
+ emissionFactor: number;
5035
+ }[];
5036
+ declare const SCOPE1_PETRO_CHEMICAL: {
5037
+ name: string;
5038
+ icon: react_icons_lib.IconType;
5039
+ scope: string;
5040
+ unit: string;
5041
+ subProducts: {
5042
+ name: string;
5043
+ unit: string;
5044
+ type: string;
5045
+ calorificValue: number;
5046
+ emissionFactor: number;
5047
+ }[];
5048
+ desc: string;
5049
+ }[];
5050
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$6: {
5051
+ name: string;
5052
+ unit: string;
5053
+ type: string;
5054
+ renewable: boolean;
5055
+ calorificValue: number;
5056
+ emissionFactor: number;
5057
+ }[];
5058
+ declare const RENEWABLE_ENERGY_PRODUCTS$6: {
5059
+ name: string;
5060
+ unit: string;
5061
+ type: string;
5062
+ renewable: boolean;
5063
+ calorificValue: number;
5064
+ emissionFactor: number;
5065
+ }[];
5066
+ declare const SCOPE2_PETRO_CHEMICAL: {
5067
+ name: string;
5068
+ icon: react_icons_lib.IconType;
5069
+ scope: string;
5070
+ unit: string;
5071
+ subProducts: {
5072
+ name: string;
5073
+ unit: string;
5074
+ type: string;
5075
+ renewable: boolean;
5076
+ calorificValue: number;
5077
+ emissionFactor: number;
5078
+ }[];
5079
+ desc: string;
5080
+ }[];
5081
+ type EmissionItem$7 = {
5082
+ item: string;
5083
+ emissionFactor: number;
5084
+ unit: string;
5085
+ };
5086
+ type EmissionCategory$6 = {
5087
+ category: string;
3482
5088
  items: EmissionItem$7[];
3483
5089
  };
3484
5090
  type Emissions$6 = EmissionCategory$6[];
5091
+ declare const PURCHASED_GOODS_AND_SERVICES$6: Emissions$6;
5092
+ declare const FUEL_ENERGY_RELATED$5: Emissions$6;
5093
+ declare const UPSTREAM_TRANSPORTATION$6: Emissions$6;
5094
+ declare const WASTE_OPERATIONS$5: Emissions$6;
5095
+ declare const EMPLOYEE_COMMUTING$6: Emissions$6;
5096
+ declare const BUSINESS_TRAVEL$6: Emissions$6;
5097
+ declare const WATER_USAGE$5: Emissions$6;
3485
5098
  declare const ALL_SCOPES_3_PETRO_CHEMICAL: {
3486
5099
  name: string;
3487
5100
  displayName: string;
@@ -3491,6 +5104,54 @@ declare const ALL_SCOPES_3_PETRO_CHEMICAL: {
3491
5104
  subProducts: Emissions$6;
3492
5105
  desc: string;
3493
5106
  }[];
5107
+ declare const ALLSCOPES_LOGISTICS$3: ({
5108
+ name: string;
5109
+ icon: react_icons_lib.IconType;
5110
+ scope: string;
5111
+ unit: string;
5112
+ subProducts: {
5113
+ name: string;
5114
+ unit: string;
5115
+ type: string;
5116
+ calorificValue: number;
5117
+ emissionFactor: number;
5118
+ }[];
5119
+ desc: string;
5120
+ } | {
5121
+ name: string;
5122
+ displayName: string;
5123
+ icon: react_icons_lib.IconType;
5124
+ scope: string;
5125
+ unit: string;
5126
+ subProducts: Emissions$6;
5127
+ desc: string;
5128
+ })[];
5129
+
5130
+ declare const petro_ALL_SCOPES_3_PETRO_CHEMICAL: typeof ALL_SCOPES_3_PETRO_CHEMICAL;
5131
+ declare const petro_SCOPE1_PETRO_CHEMICAL: typeof SCOPE1_PETRO_CHEMICAL;
5132
+ declare const petro_SCOPE2_PETRO_CHEMICAL: typeof SCOPE2_PETRO_CHEMICAL;
5133
+ declare namespace petro {
5134
+ export {
5135
+ ALLSCOPES_LOGISTICS$3 as ALLSCOPES_LOGISTICS,
5136
+ petro_ALL_SCOPES_3_PETRO_CHEMICAL as ALL_SCOPES_3_PETRO_CHEMICAL,
5137
+ BUSINESS_TRAVEL$6 as BUSINESS_TRAVEL,
5138
+ EMPLOYEE_COMMUTING$6 as EMPLOYEE_COMMUTING,
5139
+ FIRE_EXTINGUISHER_PRODUCTS$6 as FIRE_EXTINGUISHER_PRODUCTS,
5140
+ FUEL_COMBUSTION_PRODUCTS$6 as FUEL_COMBUSTION_PRODUCTS,
5141
+ FUEL_ENERGY_RELATED$5 as FUEL_ENERGY_RELATED,
5142
+ LPG_USAGE_PRODUCTS$6 as LPG_USAGE_PRODUCTS,
5143
+ PURCHASED_ELECTRICITY_PRODUCTS$6 as PURCHASED_ELECTRICITY_PRODUCTS,
5144
+ PURCHASED_GOODS_AND_SERVICES$6 as PURCHASED_GOODS_AND_SERVICES,
5145
+ REFRIGERANT_PRODUCTS$5 as REFRIGERANT_PRODUCTS,
5146
+ RENEWABLE_ENERGY_PRODUCTS$6 as RENEWABLE_ENERGY_PRODUCTS,
5147
+ petro_SCOPE1_PETRO_CHEMICAL as SCOPE1_PETRO_CHEMICAL,
5148
+ petro_SCOPE2_PETRO_CHEMICAL as SCOPE2_PETRO_CHEMICAL,
5149
+ SF6_USAGE_PRODUCTS$6 as SF6_USAGE_PRODUCTS,
5150
+ UPSTREAM_TRANSPORTATION$6 as UPSTREAM_TRANSPORTATION,
5151
+ WASTE_OPERATIONS$5 as WASTE_OPERATIONS,
5152
+ WATER_USAGE$5 as WATER_USAGE,
5153
+ };
5154
+ }
3494
5155
 
3495
5156
  declare const CLINKER_PRODUCTION: {
3496
5157
  name: string;
@@ -3499,6 +5160,13 @@ declare const CLINKER_PRODUCTION: {
3499
5160
  calorificValue: number;
3500
5161
  emissionFactor: number;
3501
5162
  }[];
5163
+ declare const FUEL_COMBUSTION_PRODUCTS$5: {
5164
+ name: string;
5165
+ unit: string;
5166
+ type: string;
5167
+ calorificValue: number;
5168
+ emissionFactor: number;
5169
+ }[];
3502
5170
  declare const MINING_OPERATIONS: {
3503
5171
  name: string;
3504
5172
  unit: string;
@@ -3513,6 +5181,50 @@ declare const ONSITE_POWER_GENERATION: {
3513
5181
  calorificValue: number;
3514
5182
  emissionFactor: number;
3515
5183
  }[];
5184
+ declare const REFRIGERANTS$1: {
5185
+ name: string;
5186
+ unit: string;
5187
+ type: string;
5188
+ calorificValue: number;
5189
+ emissionFactor: number;
5190
+ }[];
5191
+ declare const FIRE_EXTINGUISHER_PRODUCTS$5: {
5192
+ name: string;
5193
+ unit: string;
5194
+ type: string;
5195
+ calorificValue: number;
5196
+ emissionFactor: number;
5197
+ }[];
5198
+ declare const LPG_USAGE_PRODUCTS$5: {
5199
+ name: string;
5200
+ unit: string;
5201
+ type: string;
5202
+ calorificValue: number;
5203
+ emissionFactor: number;
5204
+ }[];
5205
+ declare const SF6_USAGE_PRODUCTS$5: {
5206
+ name: string;
5207
+ unit: string;
5208
+ type: string;
5209
+ calorificValue: number;
5210
+ emissionFactor: number;
5211
+ }[];
5212
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$5: {
5213
+ name: string;
5214
+ unit: string;
5215
+ type: string;
5216
+ renewable: boolean;
5217
+ calorificValue: number;
5218
+ emissionFactor: number;
5219
+ }[];
5220
+ declare const RENEWABLE_ENERGY_PRODUCTS$5: {
5221
+ name: string;
5222
+ unit: string;
5223
+ type: string;
5224
+ renewable: boolean;
5225
+ calorificValue: number;
5226
+ emissionFactor: number;
5227
+ }[];
3516
5228
  declare const SCOPE1_PHARMA: {
3517
5229
  name: string;
3518
5230
  icon: react_icons_lib.IconType;
@@ -3551,6 +5263,13 @@ type EmissionCategory$5 = {
3551
5263
  items: EmissionItem$6[];
3552
5264
  };
3553
5265
  type Emissions$5 = EmissionCategory$5[];
5266
+ declare const PURCHASED_GOODS_AND_SERVICES$5: Emissions$5;
5267
+ declare const FUEL_ENERGY_RELATED$4: Emissions$5;
5268
+ declare const UPSTREAM_TRANSPORTATION$5: Emissions$5;
5269
+ declare const WASTE_OPERATIONS$4: Emissions$5;
5270
+ declare const EMPLOYEE_COMMUTING$5: Emissions$5;
5271
+ declare const BUSINESS_TRAVEL$5: Emissions$5;
5272
+ declare const WATER_USAGE$4: Emissions$5;
3554
5273
  declare const ALL_SCOPES_3_PHARMA: {
3555
5274
  name: string;
3556
5275
  displayName: string;
@@ -3582,6 +5301,39 @@ declare const ALLSCOPES_PHARMA: ({
3582
5301
  desc: string;
3583
5302
  })[];
3584
5303
 
5304
+ declare const pharma_ALLSCOPES_PHARMA: typeof ALLSCOPES_PHARMA;
5305
+ declare const pharma_ALL_SCOPES_3_PHARMA: typeof ALL_SCOPES_3_PHARMA;
5306
+ declare const pharma_CLINKER_PRODUCTION: typeof CLINKER_PRODUCTION;
5307
+ declare const pharma_MINING_OPERATIONS: typeof MINING_OPERATIONS;
5308
+ declare const pharma_ONSITE_POWER_GENERATION: typeof ONSITE_POWER_GENERATION;
5309
+ declare const pharma_SCOPE1_PHARMA: typeof SCOPE1_PHARMA;
5310
+ declare const pharma_SCOPE2_PHARMA: typeof SCOPE2_PHARMA;
5311
+ declare namespace pharma {
5312
+ export {
5313
+ pharma_ALLSCOPES_PHARMA as ALLSCOPES_PHARMA,
5314
+ pharma_ALL_SCOPES_3_PHARMA as ALL_SCOPES_3_PHARMA,
5315
+ BUSINESS_TRAVEL$5 as BUSINESS_TRAVEL,
5316
+ pharma_CLINKER_PRODUCTION as CLINKER_PRODUCTION,
5317
+ EMPLOYEE_COMMUTING$5 as EMPLOYEE_COMMUTING,
5318
+ FIRE_EXTINGUISHER_PRODUCTS$5 as FIRE_EXTINGUISHER_PRODUCTS,
5319
+ FUEL_COMBUSTION_PRODUCTS$5 as FUEL_COMBUSTION_PRODUCTS,
5320
+ FUEL_ENERGY_RELATED$4 as FUEL_ENERGY_RELATED,
5321
+ LPG_USAGE_PRODUCTS$5 as LPG_USAGE_PRODUCTS,
5322
+ pharma_MINING_OPERATIONS as MINING_OPERATIONS,
5323
+ pharma_ONSITE_POWER_GENERATION as ONSITE_POWER_GENERATION,
5324
+ PURCHASED_ELECTRICITY_PRODUCTS$5 as PURCHASED_ELECTRICITY_PRODUCTS,
5325
+ PURCHASED_GOODS_AND_SERVICES$5 as PURCHASED_GOODS_AND_SERVICES,
5326
+ REFRIGERANTS$1 as REFRIGERANTS,
5327
+ RENEWABLE_ENERGY_PRODUCTS$5 as RENEWABLE_ENERGY_PRODUCTS,
5328
+ pharma_SCOPE1_PHARMA as SCOPE1_PHARMA,
5329
+ pharma_SCOPE2_PHARMA as SCOPE2_PHARMA,
5330
+ SF6_USAGE_PRODUCTS$5 as SF6_USAGE_PRODUCTS,
5331
+ UPSTREAM_TRANSPORTATION$5 as UPSTREAM_TRANSPORTATION,
5332
+ WASTE_OPERATIONS$4 as WASTE_OPERATIONS,
5333
+ WATER_USAGE$4 as WATER_USAGE,
5334
+ };
5335
+ }
5336
+
3585
5337
  declare const FUEL_COMBUSTION_PRODUCTS_POLYMER: {
3586
5338
  name: string;
3587
5339
  unit: string;
@@ -3695,6 +5447,78 @@ declare const ALLSCOPES_POLYMER: ({
3695
5447
  desc: string;
3696
5448
  })[];
3697
5449
 
5450
+ declare const polymer_ALLSCOPES_POLYMER: typeof ALLSCOPES_POLYMER;
5451
+ declare const polymer_ALL_SCOPES_3_POLYMER: typeof ALL_SCOPES_3_POLYMER;
5452
+ declare const polymer_BUSINESS_TRAVEL_POLYMER: typeof BUSINESS_TRAVEL_POLYMER;
5453
+ declare const polymer_EMPLOYEE_COMMUTING_POLYMER: typeof EMPLOYEE_COMMUTING_POLYMER;
5454
+ declare const polymer_FIRE_EXTINGUISHER_PRODUCTS_POLYMER: typeof FIRE_EXTINGUISHER_PRODUCTS_POLYMER;
5455
+ declare const polymer_FUEL_COMBUSTION_PRODUCTS_POLYMER: typeof FUEL_COMBUSTION_PRODUCTS_POLYMER;
5456
+ declare const polymer_FUEL_ENERGY_RELATED_POLYMER: typeof FUEL_ENERGY_RELATED_POLYMER;
5457
+ declare const polymer_LPG_USAGE_PRODUCTS_POLYMER: typeof LPG_USAGE_PRODUCTS_POLYMER;
5458
+ declare const polymer_PURCHASED_GOODS_AND_SERVICES_POLYMER: typeof PURCHASED_GOODS_AND_SERVICES_POLYMER;
5459
+ declare const polymer_REFRIGERANT_PRODUCTS_POLYMER: typeof REFRIGERANT_PRODUCTS_POLYMER;
5460
+ declare const polymer_SCOPE1_POLYMER: typeof SCOPE1_POLYMER;
5461
+ declare const polymer_SCOPE2_POLYMER: typeof SCOPE2_POLYMER;
5462
+ declare const polymer_SF6_USAGE_PRODUCTS_POLYMER: typeof SF6_USAGE_PRODUCTS_POLYMER;
5463
+ declare const polymer_UPSTREAM_TRANSPORTATION_POLYMER: typeof UPSTREAM_TRANSPORTATION_POLYMER;
5464
+ declare const polymer_WASTE_OPERATIONS_POLYMER: typeof WASTE_OPERATIONS_POLYMER;
5465
+ declare const polymer_WATER_USAGE_POLYMER: typeof WATER_USAGE_POLYMER;
5466
+ declare namespace polymer {
5467
+ export {
5468
+ polymer_ALLSCOPES_POLYMER as ALLSCOPES_POLYMER,
5469
+ polymer_ALL_SCOPES_3_POLYMER as ALL_SCOPES_3_POLYMER,
5470
+ polymer_BUSINESS_TRAVEL_POLYMER as BUSINESS_TRAVEL_POLYMER,
5471
+ polymer_EMPLOYEE_COMMUTING_POLYMER as EMPLOYEE_COMMUTING_POLYMER,
5472
+ polymer_FIRE_EXTINGUISHER_PRODUCTS_POLYMER as FIRE_EXTINGUISHER_PRODUCTS_POLYMER,
5473
+ polymer_FUEL_COMBUSTION_PRODUCTS_POLYMER as FUEL_COMBUSTION_PRODUCTS_POLYMER,
5474
+ polymer_FUEL_ENERGY_RELATED_POLYMER as FUEL_ENERGY_RELATED_POLYMER,
5475
+ polymer_LPG_USAGE_PRODUCTS_POLYMER as LPG_USAGE_PRODUCTS_POLYMER,
5476
+ polymer_PURCHASED_GOODS_AND_SERVICES_POLYMER as PURCHASED_GOODS_AND_SERVICES_POLYMER,
5477
+ polymer_REFRIGERANT_PRODUCTS_POLYMER as REFRIGERANT_PRODUCTS_POLYMER,
5478
+ polymer_SCOPE1_POLYMER as SCOPE1_POLYMER,
5479
+ polymer_SCOPE2_POLYMER as SCOPE2_POLYMER,
5480
+ polymer_SF6_USAGE_PRODUCTS_POLYMER as SF6_USAGE_PRODUCTS_POLYMER,
5481
+ polymer_UPSTREAM_TRANSPORTATION_POLYMER as UPSTREAM_TRANSPORTATION_POLYMER,
5482
+ polymer_WASTE_OPERATIONS_POLYMER as WASTE_OPERATIONS_POLYMER,
5483
+ polymer_WATER_USAGE_POLYMER as WATER_USAGE_POLYMER,
5484
+ };
5485
+ }
5486
+
5487
+ declare const FUEL_COMBUSTION_PRODUCTS$4: {
5488
+ name: string;
5489
+ unit: string;
5490
+ type: string;
5491
+ calorificValue: number;
5492
+ emissionFactor: number;
5493
+ }[];
5494
+ declare const REFRIGERANT_PRODUCTS$4: {
5495
+ name: string;
5496
+ unit: string;
5497
+ type: string;
5498
+ calorificValue: number;
5499
+ emissionFactor: number;
5500
+ }[];
5501
+ declare const FIRE_EXTINGUISHER_PRODUCTS$4: {
5502
+ name: string;
5503
+ unit: string;
5504
+ type: string;
5505
+ calorificValue: number;
5506
+ emissionFactor: number;
5507
+ }[];
5508
+ declare const LPG_USAGE_PRODUCTS$4: {
5509
+ name: string;
5510
+ unit: string;
5511
+ type: string;
5512
+ calorificValue: number;
5513
+ emissionFactor: number;
5514
+ }[];
5515
+ declare const SF6_USAGE_PRODUCTS$4: {
5516
+ name: string;
5517
+ unit: string;
5518
+ type: string;
5519
+ calorificValue: number;
5520
+ emissionFactor: number;
5521
+ }[];
3698
5522
  declare const SCOPE1_REAL_ESTATE: {
3699
5523
  name: string;
3700
5524
  icon: react_icons_lib.IconType;
@@ -3709,6 +5533,22 @@ declare const SCOPE1_REAL_ESTATE: {
3709
5533
  }[];
3710
5534
  desc: string;
3711
5535
  }[];
5536
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$4: {
5537
+ name: string;
5538
+ unit: string;
5539
+ type: string;
5540
+ renewable: boolean;
5541
+ calorificValue: number;
5542
+ emissionFactor: number;
5543
+ }[];
5544
+ declare const RENEWABLE_ENERGY_PRODUCTS$4: {
5545
+ name: string;
5546
+ unit: string;
5547
+ type: string;
5548
+ renewable: boolean;
5549
+ calorificValue: number;
5550
+ emissionFactor: number;
5551
+ }[];
3712
5552
  declare const SCOPE2_REAL_ESTATE: {
3713
5553
  name: string;
3714
5554
  icon: react_icons_lib.IconType;
@@ -3734,6 +5574,13 @@ type EmissionCategory$3 = {
3734
5574
  items: EmissionItem$4[];
3735
5575
  };
3736
5576
  type Emissions$3 = EmissionCategory$3[];
5577
+ declare const PURCHASED_GOODS_AND_SERVICES$4: Emissions$3;
5578
+ declare const FUEL_ENERGY_RELATED$3: Emissions$3;
5579
+ declare const UPSTREAM_TRANSPORTATION$4: Emissions$3;
5580
+ declare const WASTE_OPERATIONS$3: Emissions$3;
5581
+ declare const EMPLOYEE_COMMUTING$4: Emissions$3;
5582
+ declare const BUSINESS_TRAVEL$4: Emissions$3;
5583
+ declare const WATER_USAGE$3: Emissions$3;
3737
5584
  declare const ALL_SCOPES_3_REAL_ESTATE: {
3738
5585
  name: string;
3739
5586
  displayName: string;
@@ -3766,6 +5613,68 @@ declare const ALLSCOPES_REAL_ESTATE: ({
3766
5613
  desc: string;
3767
5614
  })[];
3768
5615
 
5616
+ declare const realestate_ALLSCOPES_REAL_ESTATE: typeof ALLSCOPES_REAL_ESTATE;
5617
+ declare const realestate_ALL_SCOPES_3_REAL_ESTATE: typeof ALL_SCOPES_3_REAL_ESTATE;
5618
+ declare const realestate_SCOPE1_REAL_ESTATE: typeof SCOPE1_REAL_ESTATE;
5619
+ declare const realestate_SCOPE2_REAL_ESTATE: typeof SCOPE2_REAL_ESTATE;
5620
+ declare namespace realestate {
5621
+ export {
5622
+ realestate_ALLSCOPES_REAL_ESTATE as ALLSCOPES_REAL_ESTATE,
5623
+ realestate_ALL_SCOPES_3_REAL_ESTATE as ALL_SCOPES_3_REAL_ESTATE,
5624
+ BUSINESS_TRAVEL$4 as BUSINESS_TRAVEL,
5625
+ EMPLOYEE_COMMUTING$4 as EMPLOYEE_COMMUTING,
5626
+ FIRE_EXTINGUISHER_PRODUCTS$4 as FIRE_EXTINGUISHER_PRODUCTS,
5627
+ FUEL_COMBUSTION_PRODUCTS$4 as FUEL_COMBUSTION_PRODUCTS,
5628
+ FUEL_ENERGY_RELATED$3 as FUEL_ENERGY_RELATED,
5629
+ LPG_USAGE_PRODUCTS$4 as LPG_USAGE_PRODUCTS,
5630
+ PURCHASED_ELECTRICITY_PRODUCTS$4 as PURCHASED_ELECTRICITY_PRODUCTS,
5631
+ PURCHASED_GOODS_AND_SERVICES$4 as PURCHASED_GOODS_AND_SERVICES,
5632
+ REFRIGERANT_PRODUCTS$4 as REFRIGERANT_PRODUCTS,
5633
+ RENEWABLE_ENERGY_PRODUCTS$4 as RENEWABLE_ENERGY_PRODUCTS,
5634
+ realestate_SCOPE1_REAL_ESTATE as SCOPE1_REAL_ESTATE,
5635
+ realestate_SCOPE2_REAL_ESTATE as SCOPE2_REAL_ESTATE,
5636
+ SF6_USAGE_PRODUCTS$4 as SF6_USAGE_PRODUCTS,
5637
+ UPSTREAM_TRANSPORTATION$4 as UPSTREAM_TRANSPORTATION,
5638
+ WASTE_OPERATIONS$3 as WASTE_OPERATIONS,
5639
+ WATER_USAGE$3 as WATER_USAGE,
5640
+ };
5641
+ }
5642
+
5643
+ declare const FUEL_COMBUSTION_PRODUCTS$3: {
5644
+ name: string;
5645
+ unit: string;
5646
+ type: string;
5647
+ calorificValue: number;
5648
+ emissionFactor: number;
5649
+ }[];
5650
+ declare const REFRIGERANT_PRODUCTS$3: {
5651
+ name: string;
5652
+ unit: string;
5653
+ type: string;
5654
+ calorificValue: number;
5655
+ emissionFactor: number;
5656
+ }[];
5657
+ declare const FIRE_EXTINGUISHER_PRODUCTS$3: {
5658
+ name: string;
5659
+ unit: string;
5660
+ type: string;
5661
+ calorificValue: number;
5662
+ emissionFactor: number;
5663
+ }[];
5664
+ declare const LPG_USAGE_PRODUCTS$3: {
5665
+ name: string;
5666
+ unit: string;
5667
+ type: string;
5668
+ calorificValue: number;
5669
+ emissionFactor: number;
5670
+ }[];
5671
+ declare const SF6_USAGE_PRODUCTS$3: {
5672
+ name: string;
5673
+ unit: string;
5674
+ type: string;
5675
+ calorificValue: number;
5676
+ emissionFactor: number;
5677
+ }[];
3769
5678
  declare const SCOPE1_SHIPPING: {
3770
5679
  name: string;
3771
5680
  icon: react_icons_lib.IconType;
@@ -3780,6 +5689,22 @@ declare const SCOPE1_SHIPPING: {
3780
5689
  }[];
3781
5690
  desc: string;
3782
5691
  }[];
5692
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$3: {
5693
+ name: string;
5694
+ unit: string;
5695
+ type: string;
5696
+ renewable: boolean;
5697
+ calorificValue: number;
5698
+ emissionFactor: number;
5699
+ }[];
5700
+ declare const RENEWABLE_ENERGY_PRODUCTS$3: {
5701
+ name: string;
5702
+ unit: string;
5703
+ type: string;
5704
+ renewable: boolean;
5705
+ calorificValue: number;
5706
+ emissionFactor: number;
5707
+ }[];
3783
5708
  declare const SCOPE2_SHIPPING: {
3784
5709
  name: string;
3785
5710
  icon: react_icons_lib.IconType;
@@ -3806,6 +5731,13 @@ type EmissionCategory$2 = {
3806
5731
  items: EmissionItem$3[];
3807
5732
  };
3808
5733
  type Emissions$2 = EmissionCategory$2[];
5734
+ declare const PURCHASED_GOODS_AND_SERVICES$3: Emissions$2;
5735
+ declare const FUEL_ENERGY_RELATED$2: Emissions$2;
5736
+ declare const UPSTREAM_TRANSPORTATION$3: Emissions$2;
5737
+ declare const WASTE_OPERATIONS$2: Emissions$2;
5738
+ declare const EMPLOYEE_COMMUTING$3: Emissions$2;
5739
+ declare const BUSINESS_TRAVEL$3: Emissions$2;
5740
+ declare const WATER_USAGE$2: Emissions$2;
3809
5741
  declare const ALL_SCOPES_3_SHIPPING: {
3810
5742
  name: string;
3811
5743
  displayName: string;
@@ -3815,8 +5747,7 @@ declare const ALL_SCOPES_3_SHIPPING: {
3815
5747
  subProducts: Emissions$2;
3816
5748
  desc: string;
3817
5749
  }[];
3818
-
3819
- declare const SCOPE1_STEEL: {
5750
+ declare const ALLSCOPES_LOGISTICS$2: ({
3820
5751
  name: string;
3821
5752
  icon: react_icons_lib.IconType;
3822
5753
  scope: string;
@@ -3829,20 +5760,98 @@ declare const SCOPE1_STEEL: {
3829
5760
  emissionFactor: number;
3830
5761
  }[];
3831
5762
  desc: string;
3832
- }[];
3833
- declare const SCOPE2_STEEL: {
5763
+ } | {
3834
5764
  name: string;
5765
+ displayName: string;
3835
5766
  icon: react_icons_lib.IconType;
3836
5767
  scope: string;
3837
5768
  unit: string;
3838
- subProducts: {
3839
- name: string;
3840
- unit: string;
3841
- type: string;
3842
- renewable: boolean;
3843
- calorificValue: number;
3844
- emissionFactor: number;
3845
- }[];
5769
+ subProducts: Emissions$2;
5770
+ desc: string;
5771
+ })[];
5772
+
5773
+ declare const shipping_ALL_SCOPES_3_SHIPPING: typeof ALL_SCOPES_3_SHIPPING;
5774
+ declare const shipping_SCOPE1_SHIPPING: typeof SCOPE1_SHIPPING;
5775
+ declare const shipping_SCOPE2_SHIPPING: typeof SCOPE2_SHIPPING;
5776
+ declare namespace shipping {
5777
+ export {
5778
+ ALLSCOPES_LOGISTICS$2 as ALLSCOPES_LOGISTICS,
5779
+ shipping_ALL_SCOPES_3_SHIPPING as ALL_SCOPES_3_SHIPPING,
5780
+ BUSINESS_TRAVEL$3 as BUSINESS_TRAVEL,
5781
+ EMPLOYEE_COMMUTING$3 as EMPLOYEE_COMMUTING,
5782
+ FIRE_EXTINGUISHER_PRODUCTS$3 as FIRE_EXTINGUISHER_PRODUCTS,
5783
+ FUEL_COMBUSTION_PRODUCTS$3 as FUEL_COMBUSTION_PRODUCTS,
5784
+ FUEL_ENERGY_RELATED$2 as FUEL_ENERGY_RELATED,
5785
+ LPG_USAGE_PRODUCTS$3 as LPG_USAGE_PRODUCTS,
5786
+ PURCHASED_ELECTRICITY_PRODUCTS$3 as PURCHASED_ELECTRICITY_PRODUCTS,
5787
+ PURCHASED_GOODS_AND_SERVICES$3 as PURCHASED_GOODS_AND_SERVICES,
5788
+ REFRIGERANT_PRODUCTS$3 as REFRIGERANT_PRODUCTS,
5789
+ RENEWABLE_ENERGY_PRODUCTS$3 as RENEWABLE_ENERGY_PRODUCTS,
5790
+ shipping_SCOPE1_SHIPPING as SCOPE1_SHIPPING,
5791
+ shipping_SCOPE2_SHIPPING as SCOPE2_SHIPPING,
5792
+ SF6_USAGE_PRODUCTS$3 as SF6_USAGE_PRODUCTS,
5793
+ UPSTREAM_TRANSPORTATION$3 as UPSTREAM_TRANSPORTATION,
5794
+ WASTE_OPERATIONS$2 as WASTE_OPERATIONS,
5795
+ WATER_USAGE$2 as WATER_USAGE,
5796
+ };
5797
+ }
5798
+
5799
+ declare const ELECTRIC_PRODUCTS: {
5800
+ name: string;
5801
+ unit: string;
5802
+ type: string;
5803
+ renewable: boolean;
5804
+ calorificValue: number;
5805
+ emissionFactor: number;
5806
+ }[];
5807
+ declare const WATER_PRODUCTS: {
5808
+ name: string;
5809
+ unit: string;
5810
+ type: string;
5811
+ calorificValue: number;
5812
+ emissionFactor: number;
5813
+ }[];
5814
+ declare const WASTE_PRODUCTS: {
5815
+ name: string;
5816
+ unit: string;
5817
+ type: string;
5818
+ calorificValue: number;
5819
+ emissionFactor: number;
5820
+ }[];
5821
+ declare const REFRIGERANTS: {
5822
+ name: string;
5823
+ unit: string;
5824
+ type: string;
5825
+ calorificValue: number;
5826
+ emissionFactor: number;
5827
+ }[];
5828
+ declare const SCOPE1_STEEL: {
5829
+ name: string;
5830
+ icon: react_icons_lib.IconType;
5831
+ scope: string;
5832
+ unit: string;
5833
+ subProducts: {
5834
+ name: string;
5835
+ unit: string;
5836
+ type: string;
5837
+ calorificValue: number;
5838
+ emissionFactor: number;
5839
+ }[];
5840
+ desc: string;
5841
+ }[];
5842
+ declare const SCOPE2_STEEL: {
5843
+ name: string;
5844
+ icon: react_icons_lib.IconType;
5845
+ scope: string;
5846
+ unit: string;
5847
+ subProducts: {
5848
+ name: string;
5849
+ unit: string;
5850
+ type: string;
5851
+ renewable: boolean;
5852
+ calorificValue: number;
5853
+ emissionFactor: number;
5854
+ }[];
3846
5855
  desc: string;
3847
5856
  }[];
3848
5857
  declare const ALLSCOPES_STEEL: {
@@ -3859,6 +5868,67 @@ declare const ALLSCOPES_STEEL: {
3859
5868
  }[];
3860
5869
  desc: string;
3861
5870
  }[];
5871
+ declare const PURCHASED_GOODS_AND_SERVICES$2: {
5872
+ category: string;
5873
+ items: {
5874
+ item: string;
5875
+ emissionFactor: number;
5876
+ unit: string;
5877
+ }[];
5878
+ }[];
5879
+ declare const HOTEL_EQUIPMENT_EMISSIONS: never[];
5880
+ declare const UPSTREAM_EMISSIONS_PURCHASED_FUELS: {
5881
+ category: string;
5882
+ items: {
5883
+ item: string;
5884
+ emissionFactor: number;
5885
+ unit: string;
5886
+ }[];
5887
+ }[];
5888
+ declare const UPSTREAM_TRANSPORTATION$2: {
5889
+ category: string;
5890
+ items: {
5891
+ item: string;
5892
+ emissionFactor: number;
5893
+ unit: string;
5894
+ }[];
5895
+ }[];
5896
+ declare const RAW_MATERIAL_TRANSPORTATION: {
5897
+ category: string;
5898
+ items: {
5899
+ item: string;
5900
+ emissionFactor: number;
5901
+ unit: string;
5902
+ }[];
5903
+ }[];
5904
+ declare const WASTE_DISPOSAL_EMISSIONS: {
5905
+ category: string;
5906
+ items: {
5907
+ item: string;
5908
+ emissionFactor: number;
5909
+ unit: string;
5910
+ }[];
5911
+ }[];
5912
+ declare const EMPLOYEE_COMMUTING$2: {
5913
+ category: string;
5914
+ items: {
5915
+ item: string;
5916
+ emissionFactor: number;
5917
+ unit: string;
5918
+ }[];
5919
+ }[];
5920
+ declare const BUSINESS_TRAVEL$2: {
5921
+ category: string;
5922
+ items: {
5923
+ item: string;
5924
+ emissionFactor: number;
5925
+ unit: string;
5926
+ }[];
5927
+ }[];
5928
+ declare const TOTAL_DOWNSTREAM_EMISSIONS: never[];
5929
+ declare const PROCESSING_OF_SOLD_PRODUCTS: never[];
5930
+ declare const USE_OF_SOLD_PRODUCTS: never[];
5931
+ declare const END_OF_LIFE_TREATMENT: never[];
3862
5932
  declare const WATER_MANAGEMENT_STEEL: {
3863
5933
  name: string;
3864
5934
  icon: react_icons_lib.IconType;
@@ -3890,6 +5960,100 @@ declare const ALL_SCOPES_3_STEEL: {
3890
5960
  desc: string;
3891
5961
  }[];
3892
5962
 
5963
+ declare const steel_ALLSCOPES_STEEL: typeof ALLSCOPES_STEEL;
5964
+ declare const steel_ALL_SCOPES_3_STEEL: typeof ALL_SCOPES_3_STEEL;
5965
+ declare const steel_ELECTRIC_PRODUCTS: typeof ELECTRIC_PRODUCTS;
5966
+ declare const steel_END_OF_LIFE_TREATMENT: typeof END_OF_LIFE_TREATMENT;
5967
+ declare const steel_HOTEL_EQUIPMENT_EMISSIONS: typeof HOTEL_EQUIPMENT_EMISSIONS;
5968
+ declare const steel_PROCESSING_OF_SOLD_PRODUCTS: typeof PROCESSING_OF_SOLD_PRODUCTS;
5969
+ declare const steel_RAW_MATERIAL_TRANSPORTATION: typeof RAW_MATERIAL_TRANSPORTATION;
5970
+ declare const steel_REFRIGERANTS: typeof REFRIGERANTS;
5971
+ declare const steel_SCOPE1_STEEL: typeof SCOPE1_STEEL;
5972
+ declare const steel_SCOPE2_STEEL: typeof SCOPE2_STEEL;
5973
+ declare const steel_TOTAL_DOWNSTREAM_EMISSIONS: typeof TOTAL_DOWNSTREAM_EMISSIONS;
5974
+ declare const steel_UPSTREAM_EMISSIONS_PURCHASED_FUELS: typeof UPSTREAM_EMISSIONS_PURCHASED_FUELS;
5975
+ declare const steel_USE_OF_SOLD_PRODUCTS: typeof USE_OF_SOLD_PRODUCTS;
5976
+ declare const steel_WASTE_DISPOSAL_EMISSIONS: typeof WASTE_DISPOSAL_EMISSIONS;
5977
+ declare const steel_WASTE_PRODUCTS: typeof WASTE_PRODUCTS;
5978
+ declare const steel_WATER_MANAGEMENT_STEEL: typeof WATER_MANAGEMENT_STEEL;
5979
+ declare const steel_WATER_PRODUCTS: typeof WATER_PRODUCTS;
5980
+ declare namespace steel {
5981
+ export {
5982
+ steel_ALLSCOPES_STEEL as ALLSCOPES_STEEL,
5983
+ steel_ALL_SCOPES_3_STEEL as ALL_SCOPES_3_STEEL,
5984
+ BUSINESS_TRAVEL$2 as BUSINESS_TRAVEL,
5985
+ steel_ELECTRIC_PRODUCTS as ELECTRIC_PRODUCTS,
5986
+ EMPLOYEE_COMMUTING$2 as EMPLOYEE_COMMUTING,
5987
+ steel_END_OF_LIFE_TREATMENT as END_OF_LIFE_TREATMENT,
5988
+ steel_HOTEL_EQUIPMENT_EMISSIONS as HOTEL_EQUIPMENT_EMISSIONS,
5989
+ steel_PROCESSING_OF_SOLD_PRODUCTS as PROCESSING_OF_SOLD_PRODUCTS,
5990
+ PURCHASED_GOODS_AND_SERVICES$2 as PURCHASED_GOODS_AND_SERVICES,
5991
+ steel_RAW_MATERIAL_TRANSPORTATION as RAW_MATERIAL_TRANSPORTATION,
5992
+ steel_REFRIGERANTS as REFRIGERANTS,
5993
+ steel_SCOPE1_STEEL as SCOPE1_STEEL,
5994
+ steel_SCOPE2_STEEL as SCOPE2_STEEL,
5995
+ steel_TOTAL_DOWNSTREAM_EMISSIONS as TOTAL_DOWNSTREAM_EMISSIONS,
5996
+ steel_UPSTREAM_EMISSIONS_PURCHASED_FUELS as UPSTREAM_EMISSIONS_PURCHASED_FUELS,
5997
+ UPSTREAM_TRANSPORTATION$2 as UPSTREAM_TRANSPORTATION,
5998
+ steel_USE_OF_SOLD_PRODUCTS as USE_OF_SOLD_PRODUCTS,
5999
+ steel_WASTE_DISPOSAL_EMISSIONS as WASTE_DISPOSAL_EMISSIONS,
6000
+ steel_WASTE_PRODUCTS as WASTE_PRODUCTS,
6001
+ steel_WATER_MANAGEMENT_STEEL as WATER_MANAGEMENT_STEEL,
6002
+ steel_WATER_PRODUCTS as WATER_PRODUCTS,
6003
+ };
6004
+ }
6005
+
6006
+ declare const FUEL_COMBUSTION_PRODUCTS$2: {
6007
+ name: string;
6008
+ unit: string;
6009
+ type: string;
6010
+ calorificValue: number;
6011
+ emissionFactor: number;
6012
+ }[];
6013
+ declare const REFRIGERANT_PRODUCTS$2: {
6014
+ name: string;
6015
+ unit: string;
6016
+ type: string;
6017
+ calorificValue: number;
6018
+ emissionFactor: number;
6019
+ }[];
6020
+ declare const FIRE_EXTINGUISHER_PRODUCTS$2: {
6021
+ name: string;
6022
+ unit: string;
6023
+ type: string;
6024
+ calorificValue: number;
6025
+ emissionFactor: number;
6026
+ }[];
6027
+ declare const LPG_USAGE_PRODUCTS$2: {
6028
+ name: string;
6029
+ unit: string;
6030
+ type: string;
6031
+ calorificValue: number;
6032
+ emissionFactor: number;
6033
+ }[];
6034
+ declare const SF6_USAGE_PRODUCTS$2: {
6035
+ name: string;
6036
+ unit: string;
6037
+ type: string;
6038
+ calorificValue: number;
6039
+ emissionFactor: number;
6040
+ }[];
6041
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$2: {
6042
+ name: string;
6043
+ unit: string;
6044
+ type: string;
6045
+ renewable: boolean;
6046
+ calorificValue: number;
6047
+ emissionFactor: number;
6048
+ }[];
6049
+ declare const RENEWABLE_ENERGY_PRODUCTS$2: {
6050
+ name: string;
6051
+ unit: string;
6052
+ type: string;
6053
+ renewable: boolean;
6054
+ calorificValue: number;
6055
+ emissionFactor: number;
6056
+ }[];
3893
6057
  declare const SCOPE1_TELECOMMUNICATIONS: {
3894
6058
  name: string;
3895
6059
  icon: react_icons_lib.IconType;
@@ -3953,6 +6117,61 @@ declare const ALLSCOPES_TELECOMMUNICATIONS: ({
3953
6117
  desc: string;
3954
6118
  } | Scope3Product)[];
3955
6119
 
6120
+ declare const telecommunications_ALLSCOPES_TELECOMMUNICATIONS: typeof ALLSCOPES_TELECOMMUNICATIONS;
6121
+ declare const telecommunications_ALL_SCOPES_3_TELECOMMUNICATIONS: typeof ALL_SCOPES_3_TELECOMMUNICATIONS;
6122
+ declare const telecommunications_SCOPE1_TELECOMMUNICATIONS: typeof SCOPE1_TELECOMMUNICATIONS;
6123
+ declare const telecommunications_SCOPE2_TELECOMMUNICATIONS: typeof SCOPE2_TELECOMMUNICATIONS;
6124
+ declare namespace telecommunications {
6125
+ export {
6126
+ telecommunications_ALLSCOPES_TELECOMMUNICATIONS as ALLSCOPES_TELECOMMUNICATIONS,
6127
+ telecommunications_ALL_SCOPES_3_TELECOMMUNICATIONS as ALL_SCOPES_3_TELECOMMUNICATIONS,
6128
+ FIRE_EXTINGUISHER_PRODUCTS$2 as FIRE_EXTINGUISHER_PRODUCTS,
6129
+ FUEL_COMBUSTION_PRODUCTS$2 as FUEL_COMBUSTION_PRODUCTS,
6130
+ LPG_USAGE_PRODUCTS$2 as LPG_USAGE_PRODUCTS,
6131
+ PURCHASED_ELECTRICITY_PRODUCTS$2 as PURCHASED_ELECTRICITY_PRODUCTS,
6132
+ REFRIGERANT_PRODUCTS$2 as REFRIGERANT_PRODUCTS,
6133
+ RENEWABLE_ENERGY_PRODUCTS$2 as RENEWABLE_ENERGY_PRODUCTS,
6134
+ telecommunications_SCOPE1_TELECOMMUNICATIONS as SCOPE1_TELECOMMUNICATIONS,
6135
+ telecommunications_SCOPE2_TELECOMMUNICATIONS as SCOPE2_TELECOMMUNICATIONS,
6136
+ SF6_USAGE_PRODUCTS$2 as SF6_USAGE_PRODUCTS,
6137
+ };
6138
+ }
6139
+
6140
+ declare const FUEL_COMBUSTION_PRODUCTS$1: {
6141
+ name: string;
6142
+ unit: string;
6143
+ type: string;
6144
+ calorificValue: number;
6145
+ emissionFactor: number;
6146
+ }[];
6147
+ declare const REFRIGERANT_PRODUCTS$1: {
6148
+ name: string;
6149
+ unit: string;
6150
+ type: string;
6151
+ calorificValue: number;
6152
+ emissionFactor: number;
6153
+ }[];
6154
+ declare const FIRE_EXTINGUISHER_PRODUCTS$1: {
6155
+ name: string;
6156
+ unit: string;
6157
+ type: string;
6158
+ calorificValue: number;
6159
+ emissionFactor: number;
6160
+ }[];
6161
+ declare const LPG_USAGE_PRODUCTS$1: {
6162
+ name: string;
6163
+ unit: string;
6164
+ type: string;
6165
+ calorificValue: number;
6166
+ emissionFactor: number;
6167
+ }[];
6168
+ declare const SF6_USAGE_PRODUCTS$1: {
6169
+ name: string;
6170
+ unit: string;
6171
+ type: string;
6172
+ calorificValue: number;
6173
+ emissionFactor: number;
6174
+ }[];
3956
6175
  declare const SCOPE1_TEXTILE: {
3957
6176
  name: string;
3958
6177
  icon: react_icons_lib.IconType;
@@ -3967,6 +6186,22 @@ declare const SCOPE1_TEXTILE: {
3967
6186
  }[];
3968
6187
  desc: string;
3969
6188
  }[];
6189
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$1: {
6190
+ name: string;
6191
+ unit: string;
6192
+ type: string;
6193
+ renewable: boolean;
6194
+ calorificValue: number;
6195
+ emissionFactor: number;
6196
+ }[];
6197
+ declare const RENEWABLE_ENERGY_PRODUCTS$1: {
6198
+ name: string;
6199
+ unit: string;
6200
+ type: string;
6201
+ renewable: boolean;
6202
+ calorificValue: number;
6203
+ emissionFactor: number;
6204
+ }[];
3970
6205
  declare const SCOPE2_TEXTILE: {
3971
6206
  name: string;
3972
6207
  icon: react_icons_lib.IconType;
@@ -3992,6 +6227,13 @@ type EmissionCategory$1 = {
3992
6227
  items: EmissionItem$1[];
3993
6228
  };
3994
6229
  type Emissions$1 = EmissionCategory$1[];
6230
+ declare const PURCHASED_GOODS_AND_SERVICES$1: Emissions$1;
6231
+ declare const FUEL_ENERGY_RELATED$1: Emissions$1;
6232
+ declare const UPSTREAM_TRANSPORTATION$1: Emissions$1;
6233
+ declare const WASTE_OPERATIONS$1: Emissions$1;
6234
+ declare const EMPLOYEE_COMMUTING$1: Emissions$1;
6235
+ declare const BUSINESS_TRAVEL$1: Emissions$1;
6236
+ declare const WATER_USAGE$1: Emissions$1;
3995
6237
  declare const ALL_SCOPES_3_TEXTILE: {
3996
6238
  name: string;
3997
6239
  displayName: string;
@@ -4001,7 +6243,90 @@ declare const ALL_SCOPES_3_TEXTILE: {
4001
6243
  subProducts: Emissions$1;
4002
6244
  desc: string;
4003
6245
  }[];
6246
+ declare const ALLSCOPES_LOGISTICS$1: ({
6247
+ name: string;
6248
+ icon: react_icons_lib.IconType;
6249
+ scope: string;
6250
+ unit: string;
6251
+ subProducts: {
6252
+ name: string;
6253
+ unit: string;
6254
+ type: string;
6255
+ calorificValue: number;
6256
+ emissionFactor: number;
6257
+ }[];
6258
+ desc: string;
6259
+ } | {
6260
+ name: string;
6261
+ displayName: string;
6262
+ icon: react_icons_lib.IconType;
6263
+ scope: string;
6264
+ unit: string;
6265
+ subProducts: Emissions$1;
6266
+ desc: string;
6267
+ })[];
6268
+
6269
+ declare const textile_ALL_SCOPES_3_TEXTILE: typeof ALL_SCOPES_3_TEXTILE;
6270
+ declare const textile_SCOPE1_TEXTILE: typeof SCOPE1_TEXTILE;
6271
+ declare const textile_SCOPE2_TEXTILE: typeof SCOPE2_TEXTILE;
6272
+ declare namespace textile {
6273
+ export {
6274
+ ALLSCOPES_LOGISTICS$1 as ALLSCOPES_LOGISTICS,
6275
+ textile_ALL_SCOPES_3_TEXTILE as ALL_SCOPES_3_TEXTILE,
6276
+ BUSINESS_TRAVEL$1 as BUSINESS_TRAVEL,
6277
+ EMPLOYEE_COMMUTING$1 as EMPLOYEE_COMMUTING,
6278
+ FIRE_EXTINGUISHER_PRODUCTS$1 as FIRE_EXTINGUISHER_PRODUCTS,
6279
+ FUEL_COMBUSTION_PRODUCTS$1 as FUEL_COMBUSTION_PRODUCTS,
6280
+ FUEL_ENERGY_RELATED$1 as FUEL_ENERGY_RELATED,
6281
+ LPG_USAGE_PRODUCTS$1 as LPG_USAGE_PRODUCTS,
6282
+ PURCHASED_ELECTRICITY_PRODUCTS$1 as PURCHASED_ELECTRICITY_PRODUCTS,
6283
+ PURCHASED_GOODS_AND_SERVICES$1 as PURCHASED_GOODS_AND_SERVICES,
6284
+ REFRIGERANT_PRODUCTS$1 as REFRIGERANT_PRODUCTS,
6285
+ RENEWABLE_ENERGY_PRODUCTS$1 as RENEWABLE_ENERGY_PRODUCTS,
6286
+ textile_SCOPE1_TEXTILE as SCOPE1_TEXTILE,
6287
+ textile_SCOPE2_TEXTILE as SCOPE2_TEXTILE,
6288
+ SF6_USAGE_PRODUCTS$1 as SF6_USAGE_PRODUCTS,
6289
+ UPSTREAM_TRANSPORTATION$1 as UPSTREAM_TRANSPORTATION,
6290
+ WASTE_OPERATIONS$1 as WASTE_OPERATIONS,
6291
+ WATER_USAGE$1 as WATER_USAGE,
6292
+ };
6293
+ }
4004
6294
 
6295
+ declare const FUEL_COMBUSTION_PRODUCTS: {
6296
+ name: string;
6297
+ unit: string;
6298
+ type: string;
6299
+ calorificValue: number;
6300
+ emissionFactor: number;
6301
+ }[];
6302
+ declare const REFRIGERANT_PRODUCTS: {
6303
+ name: string;
6304
+ unit: string;
6305
+ type: string;
6306
+ calorificValue: number;
6307
+ emissionFactor: number;
6308
+ }[];
6309
+ declare const FIRE_EXTINGUISHER_PRODUCTS: {
6310
+ name: string;
6311
+ unit: string;
6312
+ type: string;
6313
+ calorificValue: number;
6314
+ emissionFactor: number;
6315
+ }[];
6316
+ declare const LPG_USAGE_PRODUCTS: {
6317
+ name: string;
6318
+ unit: string;
6319
+ type: string;
6320
+ calorificValue: number;
6321
+ emissionFactor: number;
6322
+ }[];
6323
+ declare const SF6_USAGE_PRODUCTS: {
6324
+ name: string;
6325
+ unit: string;
6326
+ type: string;
6327
+ calorificValue: number;
6328
+ emissionFactor: number;
6329
+ }[];
4005
6330
  declare const SCOPE1_UTILITIES: {
4006
6331
  name: string;
4007
6332
  icon: react_icons_lib.IconType;
@@ -4016,6 +6341,22 @@ declare const SCOPE1_UTILITIES: {
4016
6341
  }[];
4017
6342
  desc: string;
4018
6343
  }[];
6344
+ declare const PURCHASED_ELECTRICITY_PRODUCTS: {
6345
+ name: string;
6346
+ unit: string;
6347
+ type: string;
6348
+ renewable: boolean;
6349
+ calorificValue: number;
6350
+ emissionFactor: number;
6351
+ }[];
6352
+ declare const RENEWABLE_ENERGY_PRODUCTS: {
6353
+ name: string;
6354
+ unit: string;
6355
+ type: string;
6356
+ renewable: boolean;
6357
+ calorificValue: number;
6358
+ emissionFactor: number;
6359
+ }[];
4019
6360
  declare const SCOPE2_UTILITIES: {
4020
6361
  name: string;
4021
6362
  icon: react_icons_lib.IconType;
@@ -4041,6 +6382,13 @@ type EmissionCategory = {
4041
6382
  items: EmissionItem[];
4042
6383
  };
4043
6384
  type Emissions = EmissionCategory[];
6385
+ declare const PURCHASED_GOODS_AND_SERVICES: Emissions;
6386
+ declare const FUEL_ENERGY_RELATED: Emissions;
6387
+ declare const UPSTREAM_TRANSPORTATION: Emissions;
6388
+ declare const WASTE_OPERATIONS: Emissions;
6389
+ declare const EMPLOYEE_COMMUTING: Emissions;
6390
+ declare const BUSINESS_TRAVEL: Emissions;
6391
+ declare const WATER_USAGE: Emissions;
4044
6392
  declare const ALL_SCOPES_3_UTILITIES: {
4045
6393
  name: string;
4046
6394
  displayName: string;
@@ -4050,347 +6398,103 @@ declare const ALL_SCOPES_3_UTILITIES: {
4050
6398
  subProducts: Emissions;
4051
6399
  desc: string;
4052
6400
  }[];
6401
+ declare const ALLSCOPES_LOGISTICS: ({
6402
+ name: string;
6403
+ icon: react_icons_lib.IconType;
6404
+ scope: string;
6405
+ unit: string;
6406
+ subProducts: {
6407
+ name: string;
6408
+ unit: string;
6409
+ type: string;
6410
+ calorificValue: number;
6411
+ emissionFactor: number;
6412
+ }[];
6413
+ desc: string;
6414
+ } | {
6415
+ name: string;
6416
+ displayName: string;
6417
+ icon: react_icons_lib.IconType;
6418
+ scope: string;
6419
+ unit: string;
6420
+ subProducts: Emissions;
6421
+ desc: string;
6422
+ })[];
6423
+
6424
+ declare const utilities_ALLSCOPES_LOGISTICS: typeof ALLSCOPES_LOGISTICS;
6425
+ declare const utilities_ALL_SCOPES_3_UTILITIES: typeof ALL_SCOPES_3_UTILITIES;
6426
+ declare const utilities_BUSINESS_TRAVEL: typeof BUSINESS_TRAVEL;
6427
+ declare const utilities_EMPLOYEE_COMMUTING: typeof EMPLOYEE_COMMUTING;
6428
+ declare const utilities_FIRE_EXTINGUISHER_PRODUCTS: typeof FIRE_EXTINGUISHER_PRODUCTS;
6429
+ declare const utilities_FUEL_COMBUSTION_PRODUCTS: typeof FUEL_COMBUSTION_PRODUCTS;
6430
+ declare const utilities_FUEL_ENERGY_RELATED: typeof FUEL_ENERGY_RELATED;
6431
+ declare const utilities_LPG_USAGE_PRODUCTS: typeof LPG_USAGE_PRODUCTS;
6432
+ declare const utilities_PURCHASED_ELECTRICITY_PRODUCTS: typeof PURCHASED_ELECTRICITY_PRODUCTS;
6433
+ declare const utilities_PURCHASED_GOODS_AND_SERVICES: typeof PURCHASED_GOODS_AND_SERVICES;
6434
+ declare const utilities_REFRIGERANT_PRODUCTS: typeof REFRIGERANT_PRODUCTS;
6435
+ declare const utilities_RENEWABLE_ENERGY_PRODUCTS: typeof RENEWABLE_ENERGY_PRODUCTS;
6436
+ declare const utilities_SCOPE1_UTILITIES: typeof SCOPE1_UTILITIES;
6437
+ declare const utilities_SCOPE2_UTILITIES: typeof SCOPE2_UTILITIES;
6438
+ declare const utilities_SF6_USAGE_PRODUCTS: typeof SF6_USAGE_PRODUCTS;
6439
+ declare const utilities_UPSTREAM_TRANSPORTATION: typeof UPSTREAM_TRANSPORTATION;
6440
+ declare const utilities_WASTE_OPERATIONS: typeof WASTE_OPERATIONS;
6441
+ declare const utilities_WATER_USAGE: typeof WATER_USAGE;
6442
+ declare namespace utilities {
6443
+ export {
6444
+ utilities_ALLSCOPES_LOGISTICS as ALLSCOPES_LOGISTICS,
6445
+ utilities_ALL_SCOPES_3_UTILITIES as ALL_SCOPES_3_UTILITIES,
6446
+ utilities_BUSINESS_TRAVEL as BUSINESS_TRAVEL,
6447
+ utilities_EMPLOYEE_COMMUTING as EMPLOYEE_COMMUTING,
6448
+ utilities_FIRE_EXTINGUISHER_PRODUCTS as FIRE_EXTINGUISHER_PRODUCTS,
6449
+ utilities_FUEL_COMBUSTION_PRODUCTS as FUEL_COMBUSTION_PRODUCTS,
6450
+ utilities_FUEL_ENERGY_RELATED as FUEL_ENERGY_RELATED,
6451
+ utilities_LPG_USAGE_PRODUCTS as LPG_USAGE_PRODUCTS,
6452
+ utilities_PURCHASED_ELECTRICITY_PRODUCTS as PURCHASED_ELECTRICITY_PRODUCTS,
6453
+ utilities_PURCHASED_GOODS_AND_SERVICES as PURCHASED_GOODS_AND_SERVICES,
6454
+ utilities_REFRIGERANT_PRODUCTS as REFRIGERANT_PRODUCTS,
6455
+ utilities_RENEWABLE_ENERGY_PRODUCTS as RENEWABLE_ENERGY_PRODUCTS,
6456
+ utilities_SCOPE1_UTILITIES as SCOPE1_UTILITIES,
6457
+ utilities_SCOPE2_UTILITIES as SCOPE2_UTILITIES,
6458
+ utilities_SF6_USAGE_PRODUCTS as SF6_USAGE_PRODUCTS,
6459
+ utilities_UPSTREAM_TRANSPORTATION as UPSTREAM_TRANSPORTATION,
6460
+ utilities_WASTE_OPERATIONS as WASTE_OPERATIONS,
6461
+ utilities_WATER_USAGE as WATER_USAGE,
6462
+ };
6463
+ }
4053
6464
 
4054
- declare const index_ALLSCOPES_ALLOY: typeof ALLSCOPES_ALLOY;
4055
- declare const index_ALLSCOPES_ALUMINUM: typeof ALLSCOPES_ALUMINUM;
4056
- declare const index_ALLSCOPES_AUTOMOBILE: typeof ALLSCOPES_AUTOMOBILE;
4057
- declare const index_ALLSCOPES_AVIATION: typeof ALLSCOPES_AVIATION;
4058
- declare const index_ALLSCOPES_BATTERY_EV: typeof ALLSCOPES_BATTERY_EV;
4059
- declare const index_ALLSCOPES_CEMENT: typeof ALLSCOPES_CEMENT;
4060
- declare const index_ALLSCOPES_CHEMICAL: typeof ALLSCOPES_CHEMICAL;
4061
- declare const index_ALLSCOPES_CONSTRUCTION: typeof ALLSCOPES_CONSTRUCTION;
4062
- declare const index_ALLSCOPES_ELECTRICAL_EQUIPMENTS: typeof ALLSCOPES_ELECTRICAL_EQUIPMENTS;
4063
- declare const index_ALLSCOPES_HOSPITALITY: typeof ALLSCOPES_HOSPITALITY;
4064
- declare const index_ALLSCOPES_MANUFACTURING: typeof ALLSCOPES_MANUFACTURING;
4065
- declare const index_ALLSCOPES_PACKAGING: typeof ALLSCOPES_PACKAGING;
4066
- declare const index_ALLSCOPES_PHARMA: typeof ALLSCOPES_PHARMA;
4067
- declare const index_ALLSCOPES_POLYMER: typeof ALLSCOPES_POLYMER;
4068
- declare const index_ALLSCOPES_REAL_ESTATE: typeof ALLSCOPES_REAL_ESTATE;
4069
- declare const index_ALLSCOPES_STEEL: typeof ALLSCOPES_STEEL;
4070
- declare const index_ALLSCOPES_TELECOMMUNICATIONS: typeof ALLSCOPES_TELECOMMUNICATIONS;
4071
- declare const index_ALL_SCOPES_3_ALLOY: typeof ALL_SCOPES_3_ALLOY;
4072
- declare const index_ALL_SCOPES_3_ALUMINUM: typeof ALL_SCOPES_3_ALUMINUM;
4073
- declare const index_ALL_SCOPES_3_AUTOMOBILE: typeof ALL_SCOPES_3_AUTOMOBILE;
4074
- declare const index_ALL_SCOPES_3_AVIATION: typeof ALL_SCOPES_3_AVIATION;
4075
- declare const index_ALL_SCOPES_3_BATTERY_EV: typeof ALL_SCOPES_3_BATTERY_EV;
4076
- declare const index_ALL_SCOPES_3_CEMENT: typeof ALL_SCOPES_3_CEMENT;
4077
- declare const index_ALL_SCOPES_3_CHEMICAL: typeof ALL_SCOPES_3_CHEMICAL;
4078
- declare const index_ALL_SCOPES_3_CONSTRUCTION: typeof ALL_SCOPES_3_CONSTRUCTION;
4079
- declare const index_ALL_SCOPES_3_ELECTRICAL_EQUIPMENTS: typeof ALL_SCOPES_3_ELECTRICAL_EQUIPMENTS;
4080
- declare const index_ALL_SCOPES_3_FOOD: typeof ALL_SCOPES_3_FOOD;
4081
- declare const index_ALL_SCOPES_3_LOGISTICS: typeof ALL_SCOPES_3_LOGISTICS;
4082
- declare const index_ALL_SCOPES_3_MANUFACTURING: typeof ALL_SCOPES_3_MANUFACTURING;
4083
- declare const index_ALL_SCOPES_3_METAL: typeof ALL_SCOPES_3_METAL;
4084
- declare const index_ALL_SCOPES_3_PACKAGING: typeof ALL_SCOPES_3_PACKAGING;
4085
- declare const index_ALL_SCOPES_3_PETRO_CHEMICAL: typeof ALL_SCOPES_3_PETRO_CHEMICAL;
4086
- declare const index_ALL_SCOPES_3_PHARMA: typeof ALL_SCOPES_3_PHARMA;
4087
- declare const index_ALL_SCOPES_3_POLYMER: typeof ALL_SCOPES_3_POLYMER;
4088
6465
  declare const index_ALL_SCOPES_3_RCO: typeof ALL_SCOPES_3_RCO;
4089
- declare const index_ALL_SCOPES_3_REAL_ESTATE: typeof ALL_SCOPES_3_REAL_ESTATE;
4090
- declare const index_ALL_SCOPES_3_SHIPPING: typeof ALL_SCOPES_3_SHIPPING;
4091
- declare const index_ALL_SCOPES_3_STEEL: typeof ALL_SCOPES_3_STEEL;
4092
- declare const index_ALL_SCOPES_3_TELECOMMUNICATIONS: typeof ALL_SCOPES_3_TELECOMMUNICATIONS;
4093
- declare const index_ALL_SCOPES_3_TEXTILE: typeof ALL_SCOPES_3_TEXTILE;
4094
- declare const index_ALL_SCOPES_3_UTILITIES: typeof ALL_SCOPES_3_UTILITIES;
4095
- declare const index_BUSINESS_TRAVEL_AIR_PRODUCTS: typeof BUSINESS_TRAVEL_AIR_PRODUCTS;
4096
- declare const index_BUSINESS_TRAVEL_GAS_LAB: typeof BUSINESS_TRAVEL_GAS_LAB;
4097
- declare const index_BUSINESS_TRAVEL_GROUND_PRODUCTS: typeof BUSINESS_TRAVEL_GROUND_PRODUCTS;
4098
- declare const index_BUSINESS_TRAVEL_POLYMER: typeof BUSINESS_TRAVEL_POLYMER;
4099
- declare const index_CALCINATION_PROCESS_PRODUCTS: typeof CALCINATION_PROCESS_PRODUCTS;
4100
- declare const index_CCTS_1: typeof CCTS_1;
4101
- declare const index_CCTS_2: typeof CCTS_2;
4102
- declare const index_CEMENT_INDUSTRY_CONFIG: typeof CEMENT_INDUSTRY_CONFIG;
4103
- declare const index_CHEMICAL_PROCESS_PRODUCTS: typeof CHEMICAL_PROCESS_PRODUCTS;
4104
- declare const index_CLINKER_PRODUCTION: typeof CLINKER_PRODUCTION;
4105
- declare const index_DIESEL_GENERATOR_GAS_LAB: typeof DIESEL_GENERATOR_GAS_LAB;
4106
- declare const index_DOWNSTREAM_TRANSPORTATION_GAS_LAB: typeof DOWNSTREAM_TRANSPORTATION_GAS_LAB;
4107
- declare const index_ELECTRICITY_CONSUMED_PRODUCTS: typeof ELECTRICITY_CONSUMED_PRODUCTS;
4108
- declare const index_EMPLOYEE_COMMUTE_GAS_LAB: typeof EMPLOYEE_COMMUTE_GAS_LAB;
4109
- declare const index_EMPLOYEE_COMMUTING_CAR_PRODUCTS: typeof EMPLOYEE_COMMUTING_CAR_PRODUCTS;
4110
- declare const index_EMPLOYEE_COMMUTING_EMISSIONS: typeof EMPLOYEE_COMMUTING_EMISSIONS;
4111
- declare const index_EMPLOYEE_COMMUTING_POLYMER: typeof EMPLOYEE_COMMUTING_POLYMER;
4112
- declare const index_EMPLOYEE_COMMUTING_PUBLIC_TRANSPORT_PRODUCTS: typeof EMPLOYEE_COMMUTING_PUBLIC_TRANSPORT_PRODUCTS;
4113
- declare const index_EMPLOYEE_COMMUTING_TWO_WHEELER_PRODUCTS: typeof EMPLOYEE_COMMUTING_TWO_WHEELER_PRODUCTS;
4114
- declare const index_ENERGY_SOURCE: typeof ENERGY_SOURCE;
4115
- declare const index_FIRE_EXTINGUISHER_PRODUCTS_POLYMER: typeof FIRE_EXTINGUISHER_PRODUCTS_POLYMER;
4116
- declare const index_FUEL_AND_ENERGY_RELATED_ACTIVITIES: typeof FUEL_AND_ENERGY_RELATED_ACTIVITIES;
4117
- declare const index_FUEL_COMBUSTION_GAS_LAB: typeof FUEL_COMBUSTION_GAS_LAB;
4118
- declare const index_FUEL_COMBUSTION_PRODUCTS_POLYMER: typeof FUEL_COMBUSTION_PRODUCTS_POLYMER;
4119
- declare const index_FUEL_COMBUSTION_PYRO_PROCESS_PRODUCTS: typeof FUEL_COMBUSTION_PYRO_PROCESS_PRODUCTS;
4120
- declare const index_FUEL_ENERGY_RELATED_POLYMER: typeof FUEL_ENERGY_RELATED_POLYMER;
4121
- declare const index_FUEL_PRODUCTS: typeof FUEL_PRODUCTS;
4122
- declare const index_GROUND_TRANSPORTATION_EMISSIONS: typeof GROUND_TRANSPORTATION_EMISSIONS;
4123
- declare const index_ISO_CATEGORIES_PACKAGING: typeof ISO_CATEGORIES_PACKAGING;
4124
- declare const index_LOCATION_BASED_ELECTRICITY_GAS_LAB: typeof LOCATION_BASED_ELECTRICITY_GAS_LAB;
4125
- declare const index_LPG_PRODUCTS: typeof LPG_PRODUCTS;
4126
- declare const index_LPG_PRODUCTS_GAS_LAB: typeof LPG_PRODUCTS_GAS_LAB;
4127
- declare const index_LPG_USAGE_PRODUCTS_POLYMER: typeof LPG_USAGE_PRODUCTS_POLYMER;
4128
- declare const index_MAINTENANCE_MATERIALS_PRODUCTS: typeof MAINTENANCE_MATERIALS_PRODUCTS;
4129
- declare const index_MANUFACTURING_PROCESS_PRODUCTS: typeof MANUFACTURING_PROCESS_PRODUCTS;
4130
- declare const index_MARKET_BASED_ELECTRICITY_GAS_LAB: typeof MARKET_BASED_ELECTRICITY_GAS_LAB;
4131
- declare const index_MINING_OPERATIONS: typeof MINING_OPERATIONS;
4132
- declare const index_MINING_OPERATIONS_PRODUCTS: typeof MINING_OPERATIONS_PRODUCTS;
4133
- declare const index_MOBILE_COMBUSTION_PRODUCTS: typeof MOBILE_COMBUSTION_PRODUCTS;
4134
- declare const index_ONSITE_POWER_GENERATION: typeof ONSITE_POWER_GENERATION;
4135
- declare const index_ON_SITE_POWER_PRODUCTS: typeof ON_SITE_POWER_PRODUCTS;
4136
- declare const index_OPERATIONS_PRODUCTS: typeof OPERATIONS_PRODUCTS;
4137
- declare const index_OPERATION_PRODUCTS: typeof OPERATION_PRODUCTS;
4138
- declare const index_PACKAGING_MATERIALS_PRODUCTS: typeof PACKAGING_MATERIALS_PRODUCTS;
4139
- declare const index_PURCHASED_GOODS_AND_SERVICES_POLYMER: typeof PURCHASED_GOODS_AND_SERVICES_POLYMER;
4140
- declare const index_PURCHASED_GOODS_GAS_LAB: typeof PURCHASED_GOODS_GAS_LAB;
4141
- declare const index_PURCHASED_HEAT_STEAM_COOLING_PRODUCTS: typeof PURCHASED_HEAT_STEAM_COOLING_PRODUCTS;
4142
- declare const index_RAW_MATERIALS_PRODUCTS: typeof RAW_MATERIALS_PRODUCTS;
4143
- declare const index_REFRIGERANT_PRODUCTS_POLYMER: typeof REFRIGERANT_PRODUCTS_POLYMER;
4144
- declare const index_SCOPE1_ALLOY: typeof SCOPE1_ALLOY;
4145
- declare const index_SCOPE1_ALUMINUM: typeof SCOPE1_ALUMINUM;
4146
- declare const index_SCOPE1_AUTOMOBILE: typeof SCOPE1_AUTOMOBILE;
4147
- declare const index_SCOPE1_AVIATION: typeof SCOPE1_AVIATION;
4148
- declare const index_SCOPE1_BATTERY_EV: typeof SCOPE1_BATTERY_EV;
4149
- declare const index_SCOPE1_CEMENT: typeof SCOPE1_CEMENT;
4150
- declare const index_SCOPE1_CHEMICAL: typeof SCOPE1_CHEMICAL;
4151
- declare const index_SCOPE1_CONSTRUCTION: typeof SCOPE1_CONSTRUCTION;
4152
- declare const index_SCOPE1_ELECTRICAL_EQUIPMENTS: typeof SCOPE1_ELECTRICAL_EQUIPMENTS;
4153
- declare const index_SCOPE1_FOOD: typeof SCOPE1_FOOD;
4154
- declare const index_SCOPE1_GAS_LAB: typeof SCOPE1_GAS_LAB;
4155
- declare const index_SCOPE1_HOSPITALITY: typeof SCOPE1_HOSPITALITY;
4156
- declare const index_SCOPE1_LOGISTICS: typeof SCOPE1_LOGISTICS;
4157
- declare const index_SCOPE1_MANUFACTURING: typeof SCOPE1_MANUFACTURING;
4158
- declare const index_SCOPE1_METAL: typeof SCOPE1_METAL;
4159
- declare const index_SCOPE1_PACKAGING: typeof SCOPE1_PACKAGING;
4160
- declare const index_SCOPE1_PETRO_CHEMICAL: typeof SCOPE1_PETRO_CHEMICAL;
4161
- declare const index_SCOPE1_PHARMA: typeof SCOPE1_PHARMA;
4162
- declare const index_SCOPE1_POLYMER: typeof SCOPE1_POLYMER;
4163
- declare const index_SCOPE1_REAL_ESTATE: typeof SCOPE1_REAL_ESTATE;
4164
- declare const index_SCOPE1_SHIPPING: typeof SCOPE1_SHIPPING;
4165
- declare const index_SCOPE1_STEEL: typeof SCOPE1_STEEL;
4166
- declare const index_SCOPE1_TELECOMMUNICATIONS: typeof SCOPE1_TELECOMMUNICATIONS;
4167
- declare const index_SCOPE1_TEXTILE: typeof SCOPE1_TEXTILE;
4168
- declare const index_SCOPE1_UTILITIES: typeof SCOPE1_UTILITIES;
4169
- declare const index_SCOPE2_ALLOY: typeof SCOPE2_ALLOY;
4170
- declare const index_SCOPE2_ALUMINUM: typeof SCOPE2_ALUMINUM;
4171
- declare const index_SCOPE2_AUTOMOBILE: typeof SCOPE2_AUTOMOBILE;
4172
- declare const index_SCOPE2_AVIATION: typeof SCOPE2_AVIATION;
4173
- declare const index_SCOPE2_BATTERY_EV: typeof SCOPE2_BATTERY_EV;
4174
- declare const index_SCOPE2_CEMENT: typeof SCOPE2_CEMENT;
4175
- declare const index_SCOPE2_CHEMICAL: typeof SCOPE2_CHEMICAL;
4176
- declare const index_SCOPE2_CONSTRUCTION: typeof SCOPE2_CONSTRUCTION;
4177
- declare const index_SCOPE2_ELECTRICAL_EQUIPMENTS: typeof SCOPE2_ELECTRICAL_EQUIPMENTS;
4178
- declare const index_SCOPE2_FOOD: typeof SCOPE2_FOOD;
4179
- declare const index_SCOPE2_GAS_LAB: typeof SCOPE2_GAS_LAB;
4180
- declare const index_SCOPE2_HOSPITALITY: typeof SCOPE2_HOSPITALITY;
4181
- declare const index_SCOPE2_LOGISTICS: typeof SCOPE2_LOGISTICS;
4182
- declare const index_SCOPE2_MANUFACTURING: typeof SCOPE2_MANUFACTURING;
4183
- declare const index_SCOPE2_METAL: typeof SCOPE2_METAL;
4184
- declare const index_SCOPE2_PACKAGING: typeof SCOPE2_PACKAGING;
4185
- declare const index_SCOPE2_PETRO_CHEMICAL: typeof SCOPE2_PETRO_CHEMICAL;
4186
- declare const index_SCOPE2_PHARMA: typeof SCOPE2_PHARMA;
4187
- declare const index_SCOPE2_POLYMER: typeof SCOPE2_POLYMER;
4188
- declare const index_SCOPE2_REAL_ESTATE: typeof SCOPE2_REAL_ESTATE;
4189
- declare const index_SCOPE2_SHIPPING: typeof SCOPE2_SHIPPING;
4190
- declare const index_SCOPE2_STEEL: typeof SCOPE2_STEEL;
4191
- declare const index_SCOPE2_TELECOMMUNICATIONS: typeof SCOPE2_TELECOMMUNICATIONS;
4192
- declare const index_SCOPE2_TEXTILE: typeof SCOPE2_TEXTILE;
4193
- declare const index_SCOPE2_UTILITIES: typeof SCOPE2_UTILITIES;
4194
- declare const index_SCOPE3_GAS_LAB: typeof SCOPE3_GAS_LAB;
4195
- declare const index_SCOPE3_HOSPITALITY: typeof SCOPE3_HOSPITALITY;
4196
- declare const index_SF6_USAGE_PRODUCTS_POLYMER: typeof SF6_USAGE_PRODUCTS_POLYMER;
4197
- declare const index_STATIONARY_COMBUSTION_PRODUCTS: typeof STATIONARY_COMBUSTION_PRODUCTS;
4198
- declare const index_TD_LOSSES_ELECTRICITY_PRODUCTS: typeof TD_LOSSES_ELECTRICITY_PRODUCTS;
4199
- declare const index_TRAVEL_EMISSIONS: typeof TRAVEL_EMISSIONS;
4200
- declare const index_UPSTREAM_FUEL_EMISSIONS_PRODUCTS: typeof UPSTREAM_FUEL_EMISSIONS_PRODUCTS;
4201
- declare const index_UPSTREAM_TRANSPORTATION_GAS_LAB: typeof UPSTREAM_TRANSPORTATION_GAS_LAB;
4202
- declare const index_UPSTREAM_TRANSPORTATION_POLYMER: typeof UPSTREAM_TRANSPORTATION_POLYMER;
4203
- declare const index_UPSTREAM_TRANSPORTATION_PRODUCTS: typeof UPSTREAM_TRANSPORTATION_PRODUCTS;
4204
- declare const index_WASTE_FROM_OPERATIONS: typeof WASTE_FROM_OPERATIONS;
4205
- declare const index_WASTE_GENERATED_GAS_LAB: typeof WASTE_GENERATED_GAS_LAB;
4206
- declare const index_WASTE_GENERATED_IN_OPERATIONS: typeof WASTE_GENERATED_IN_OPERATIONS;
4207
- declare const index_WASTE_GENERATED_PRODUCTS: typeof WASTE_GENERATED_PRODUCTS;
4208
- declare const index_WASTE_OPERATIONS_POLYMER: typeof WASTE_OPERATIONS_POLYMER;
4209
- declare const index_WATER_CONSUMPTION_EMISSIONS: typeof WATER_CONSUMPTION_EMISSIONS;
4210
- declare const index_WATER_DISCHARGE_PRODUCTS: typeof WATER_DISCHARGE_PRODUCTS;
4211
- declare const index_WATER_MANAGEMENT: typeof WATER_MANAGEMENT;
4212
- declare const index_WATER_MANAGEMENT_GAS_LAB: typeof WATER_MANAGEMENT_GAS_LAB;
4213
- declare const index_WATER_MANAGEMENT_SCOPE: typeof WATER_MANAGEMENT_SCOPE;
4214
- declare const index_WATER_MANAGEMENT_STEEL: typeof WATER_MANAGEMENT_STEEL;
4215
- declare const index_WATER_PRODUCTS_GAS_LAB: typeof WATER_PRODUCTS_GAS_LAB;
4216
- declare const index_WATER_USAGE_POLYMER: typeof WATER_USAGE_POLYMER;
4217
- declare const index_WATER_USAGE_PRODUCTS: typeof WATER_USAGE_PRODUCTS;
4218
- declare const index_WELDING_PRODUCTS_GAS_LAB: typeof WELDING_PRODUCTS_GAS_LAB;
4219
- declare const index_getEndpointConfig: typeof getEndpointConfig;
4220
- declare const index_getIndustryConfig: typeof getIndustryConfig;
4221
6466
  declare const index_getRCOConfigByName: typeof getRCOConfigByName;
4222
6467
  declare namespace index {
4223
6468
  export {
4224
- index_ALLSCOPES_ALLOY as ALLSCOPES_ALLOY,
4225
- index_ALLSCOPES_ALUMINUM as ALLSCOPES_ALUMINUM,
4226
- index_ALLSCOPES_AUTOMOBILE as ALLSCOPES_AUTOMOBILE,
4227
- index_ALLSCOPES_AVIATION as ALLSCOPES_AVIATION,
4228
- index_ALLSCOPES_BATTERY_EV as ALLSCOPES_BATTERY_EV,
4229
- index_ALLSCOPES_CEMENT as ALLSCOPES_CEMENT,
4230
- index_ALLSCOPES_CHEMICAL as ALLSCOPES_CHEMICAL,
4231
- index_ALLSCOPES_CONSTRUCTION as ALLSCOPES_CONSTRUCTION,
4232
- index_ALLSCOPES_ELECTRICAL_EQUIPMENTS as ALLSCOPES_ELECTRICAL_EQUIPMENTS,
4233
- index_ALLSCOPES_HOSPITALITY as ALLSCOPES_HOSPITALITY,
4234
- index_ALLSCOPES_MANUFACTURING as ALLSCOPES_MANUFACTURING,
4235
- index_ALLSCOPES_PACKAGING as ALLSCOPES_PACKAGING,
4236
- index_ALLSCOPES_PHARMA as ALLSCOPES_PHARMA,
4237
- index_ALLSCOPES_POLYMER as ALLSCOPES_POLYMER,
4238
- index_ALLSCOPES_REAL_ESTATE as ALLSCOPES_REAL_ESTATE,
4239
- index_ALLSCOPES_STEEL as ALLSCOPES_STEEL,
4240
- index_ALLSCOPES_TELECOMMUNICATIONS as ALLSCOPES_TELECOMMUNICATIONS,
4241
- index_ALL_SCOPES_3_ALLOY as ALL_SCOPES_3_ALLOY,
4242
- index_ALL_SCOPES_3_ALUMINUM as ALL_SCOPES_3_ALUMINUM,
4243
- index_ALL_SCOPES_3_AUTOMOBILE as ALL_SCOPES_3_AUTOMOBILE,
4244
- index_ALL_SCOPES_3_AVIATION as ALL_SCOPES_3_AVIATION,
4245
- index_ALL_SCOPES_3_BATTERY_EV as ALL_SCOPES_3_BATTERY_EV,
4246
- index_ALL_SCOPES_3_CEMENT as ALL_SCOPES_3_CEMENT,
4247
- index_ALL_SCOPES_3_CHEMICAL as ALL_SCOPES_3_CHEMICAL,
4248
- index_ALL_SCOPES_3_CONSTRUCTION as ALL_SCOPES_3_CONSTRUCTION,
4249
- index_ALL_SCOPES_3_ELECTRICAL_EQUIPMENTS as ALL_SCOPES_3_ELECTRICAL_EQUIPMENTS,
4250
- index_ALL_SCOPES_3_FOOD as ALL_SCOPES_3_FOOD,
4251
- index_ALL_SCOPES_3_LOGISTICS as ALL_SCOPES_3_LOGISTICS,
4252
- index_ALL_SCOPES_3_MANUFACTURING as ALL_SCOPES_3_MANUFACTURING,
4253
- index_ALL_SCOPES_3_METAL as ALL_SCOPES_3_METAL,
4254
- index_ALL_SCOPES_3_PACKAGING as ALL_SCOPES_3_PACKAGING,
4255
- index_ALL_SCOPES_3_PETRO_CHEMICAL as ALL_SCOPES_3_PETRO_CHEMICAL,
4256
- index_ALL_SCOPES_3_PHARMA as ALL_SCOPES_3_PHARMA,
4257
- index_ALL_SCOPES_3_POLYMER as ALL_SCOPES_3_POLYMER,
4258
6469
  index_ALL_SCOPES_3_RCO as ALL_SCOPES_3_RCO,
4259
- index_ALL_SCOPES_3_REAL_ESTATE as ALL_SCOPES_3_REAL_ESTATE,
4260
- index_ALL_SCOPES_3_SHIPPING as ALL_SCOPES_3_SHIPPING,
4261
- index_ALL_SCOPES_3_STEEL as ALL_SCOPES_3_STEEL,
4262
- index_ALL_SCOPES_3_TELECOMMUNICATIONS as ALL_SCOPES_3_TELECOMMUNICATIONS,
4263
- index_ALL_SCOPES_3_TEXTILE as ALL_SCOPES_3_TEXTILE,
4264
- index_ALL_SCOPES_3_UTILITIES as ALL_SCOPES_3_UTILITIES,
4265
- index_BUSINESS_TRAVEL_AIR_PRODUCTS as BUSINESS_TRAVEL_AIR_PRODUCTS,
4266
- index_BUSINESS_TRAVEL_GAS_LAB as BUSINESS_TRAVEL_GAS_LAB,
4267
- index_BUSINESS_TRAVEL_GROUND_PRODUCTS as BUSINESS_TRAVEL_GROUND_PRODUCTS,
4268
- index_BUSINESS_TRAVEL_POLYMER as BUSINESS_TRAVEL_POLYMER,
4269
- index_CALCINATION_PROCESS_PRODUCTS as CALCINATION_PROCESS_PRODUCTS,
4270
- index_CCTS_1 as CCTS_1,
4271
- index_CCTS_2 as CCTS_2,
4272
- index_CEMENT_INDUSTRY_CONFIG as CEMENT_INDUSTRY_CONFIG,
4273
- index_CHEMICAL_PROCESS_PRODUCTS as CHEMICAL_PROCESS_PRODUCTS,
4274
- index_CLINKER_PRODUCTION as CLINKER_PRODUCTION,
4275
- index_DIESEL_GENERATOR_GAS_LAB as DIESEL_GENERATOR_GAS_LAB,
4276
- index_DOWNSTREAM_TRANSPORTATION_GAS_LAB as DOWNSTREAM_TRANSPORTATION_GAS_LAB,
4277
- index_ELECTRICITY_CONSUMED_PRODUCTS as ELECTRICITY_CONSUMED_PRODUCTS,
4278
- index_EMPLOYEE_COMMUTE_GAS_LAB as EMPLOYEE_COMMUTE_GAS_LAB,
4279
- index_EMPLOYEE_COMMUTING_CAR_PRODUCTS as EMPLOYEE_COMMUTING_CAR_PRODUCTS,
4280
- index_EMPLOYEE_COMMUTING_EMISSIONS as EMPLOYEE_COMMUTING_EMISSIONS,
4281
- index_EMPLOYEE_COMMUTING_POLYMER as EMPLOYEE_COMMUTING_POLYMER,
4282
- index_EMPLOYEE_COMMUTING_PUBLIC_TRANSPORT_PRODUCTS as EMPLOYEE_COMMUTING_PUBLIC_TRANSPORT_PRODUCTS,
4283
- index_EMPLOYEE_COMMUTING_TWO_WHEELER_PRODUCTS as EMPLOYEE_COMMUTING_TWO_WHEELER_PRODUCTS,
4284
- index_ENERGY_SOURCE as ENERGY_SOURCE,
4285
- index_FIRE_EXTINGUISHER_PRODUCTS_POLYMER as FIRE_EXTINGUISHER_PRODUCTS_POLYMER,
4286
- index_FUEL_AND_ENERGY_RELATED_ACTIVITIES as FUEL_AND_ENERGY_RELATED_ACTIVITIES,
4287
- index_FUEL_COMBUSTION_GAS_LAB as FUEL_COMBUSTION_GAS_LAB,
4288
- index_FUEL_COMBUSTION_PRODUCTS_POLYMER as FUEL_COMBUSTION_PRODUCTS_POLYMER,
4289
- index_FUEL_COMBUSTION_PYRO_PROCESS_PRODUCTS as FUEL_COMBUSTION_PYRO_PROCESS_PRODUCTS,
4290
- index_FUEL_ENERGY_RELATED_POLYMER as FUEL_ENERGY_RELATED_POLYMER,
4291
- index_FUEL_PRODUCTS as FUEL_PRODUCTS,
4292
- index_GROUND_TRANSPORTATION_EMISSIONS as GROUND_TRANSPORTATION_EMISSIONS,
4293
- index_ISO_CATEGORIES_PACKAGING as ISO_CATEGORIES_PACKAGING,
4294
- index_LOCATION_BASED_ELECTRICITY_GAS_LAB as LOCATION_BASED_ELECTRICITY_GAS_LAB,
4295
- index_LPG_PRODUCTS as LPG_PRODUCTS,
4296
- index_LPG_PRODUCTS_GAS_LAB as LPG_PRODUCTS_GAS_LAB,
4297
- index_LPG_USAGE_PRODUCTS_POLYMER as LPG_USAGE_PRODUCTS_POLYMER,
4298
- index_MAINTENANCE_MATERIALS_PRODUCTS as MAINTENANCE_MATERIALS_PRODUCTS,
4299
- index_MANUFACTURING_PROCESS_PRODUCTS as MANUFACTURING_PROCESS_PRODUCTS,
4300
- index_MARKET_BASED_ELECTRICITY_GAS_LAB as MARKET_BASED_ELECTRICITY_GAS_LAB,
4301
- index_MINING_OPERATIONS as MINING_OPERATIONS,
4302
- index_MINING_OPERATIONS_PRODUCTS as MINING_OPERATIONS_PRODUCTS,
4303
- index_MOBILE_COMBUSTION_PRODUCTS as MOBILE_COMBUSTION_PRODUCTS,
4304
- index_ONSITE_POWER_GENERATION as ONSITE_POWER_GENERATION,
4305
- index_ON_SITE_POWER_PRODUCTS as ON_SITE_POWER_PRODUCTS,
4306
- index_OPERATIONS_PRODUCTS as OPERATIONS_PRODUCTS,
4307
- index_OPERATION_PRODUCTS as OPERATION_PRODUCTS,
4308
- index_PACKAGING_MATERIALS_PRODUCTS as PACKAGING_MATERIALS_PRODUCTS,
4309
- index_PURCHASED_GOODS_AND_SERVICES_POLYMER as PURCHASED_GOODS_AND_SERVICES_POLYMER,
4310
- index_PURCHASED_GOODS_GAS_LAB as PURCHASED_GOODS_GAS_LAB,
4311
- index_PURCHASED_HEAT_STEAM_COOLING_PRODUCTS as PURCHASED_HEAT_STEAM_COOLING_PRODUCTS,
4312
- index_RAW_MATERIALS_PRODUCTS as RAW_MATERIALS_PRODUCTS,
4313
- index_REFRIGERANT_PRODUCTS_POLYMER as REFRIGERANT_PRODUCTS_POLYMER,
4314
- index_SCOPE1_ALLOY as SCOPE1_ALLOY,
4315
- index_SCOPE1_ALUMINUM as SCOPE1_ALUMINUM,
4316
- index_SCOPE1_AUTOMOBILE as SCOPE1_AUTOMOBILE,
4317
- index_SCOPE1_AVIATION as SCOPE1_AVIATION,
4318
- index_SCOPE1_BATTERY_EV as SCOPE1_BATTERY_EV,
4319
- index_SCOPE1_CEMENT as SCOPE1_CEMENT,
4320
- index_SCOPE1_CHEMICAL as SCOPE1_CHEMICAL,
4321
- index_SCOPE1_CONSTRUCTION as SCOPE1_CONSTRUCTION,
4322
- index_SCOPE1_ELECTRICAL_EQUIPMENTS as SCOPE1_ELECTRICAL_EQUIPMENTS,
4323
- index_SCOPE1_FOOD as SCOPE1_FOOD,
4324
- index_SCOPE1_GAS_LAB as SCOPE1_GAS_LAB,
4325
- index_SCOPE1_HOSPITALITY as SCOPE1_HOSPITALITY,
4326
- index_SCOPE1_LOGISTICS as SCOPE1_LOGISTICS,
4327
- index_SCOPE1_MANUFACTURING as SCOPE1_MANUFACTURING,
4328
- index_SCOPE1_METAL as SCOPE1_METAL,
4329
- index_SCOPE1_PACKAGING as SCOPE1_PACKAGING,
4330
- index_SCOPE1_PETRO_CHEMICAL as SCOPE1_PETRO_CHEMICAL,
4331
- index_SCOPE1_PHARMA as SCOPE1_PHARMA,
4332
- index_SCOPE1_POLYMER as SCOPE1_POLYMER,
4333
- index_SCOPE1_REAL_ESTATE as SCOPE1_REAL_ESTATE,
4334
- index_SCOPE1_SHIPPING as SCOPE1_SHIPPING,
4335
- index_SCOPE1_STEEL as SCOPE1_STEEL,
4336
- index_SCOPE1_TELECOMMUNICATIONS as SCOPE1_TELECOMMUNICATIONS,
4337
- index_SCOPE1_TEXTILE as SCOPE1_TEXTILE,
4338
- index_SCOPE1_UTILITIES as SCOPE1_UTILITIES,
4339
- index_SCOPE2_ALLOY as SCOPE2_ALLOY,
4340
- index_SCOPE2_ALUMINUM as SCOPE2_ALUMINUM,
4341
- index_SCOPE2_AUTOMOBILE as SCOPE2_AUTOMOBILE,
4342
- index_SCOPE2_AVIATION as SCOPE2_AVIATION,
4343
- index_SCOPE2_BATTERY_EV as SCOPE2_BATTERY_EV,
4344
- index_SCOPE2_CEMENT as SCOPE2_CEMENT,
4345
- index_SCOPE2_CHEMICAL as SCOPE2_CHEMICAL,
4346
- index_SCOPE2_CONSTRUCTION as SCOPE2_CONSTRUCTION,
4347
- index_SCOPE2_ELECTRICAL_EQUIPMENTS as SCOPE2_ELECTRICAL_EQUIPMENTS,
4348
- index_SCOPE2_FOOD as SCOPE2_FOOD,
4349
- index_SCOPE2_GAS_LAB as SCOPE2_GAS_LAB,
4350
- index_SCOPE2_HOSPITALITY as SCOPE2_HOSPITALITY,
4351
- index_SCOPE2_LOGISTICS as SCOPE2_LOGISTICS,
4352
- index_SCOPE2_MANUFACTURING as SCOPE2_MANUFACTURING,
4353
- index_SCOPE2_METAL as SCOPE2_METAL,
4354
- index_SCOPE2_PACKAGING as SCOPE2_PACKAGING,
4355
- index_SCOPE2_PETRO_CHEMICAL as SCOPE2_PETRO_CHEMICAL,
4356
- index_SCOPE2_PHARMA as SCOPE2_PHARMA,
4357
- index_SCOPE2_POLYMER as SCOPE2_POLYMER,
4358
- index_SCOPE2_REAL_ESTATE as SCOPE2_REAL_ESTATE,
4359
- index_SCOPE2_SHIPPING as SCOPE2_SHIPPING,
4360
- index_SCOPE2_STEEL as SCOPE2_STEEL,
4361
- index_SCOPE2_TELECOMMUNICATIONS as SCOPE2_TELECOMMUNICATIONS,
4362
- index_SCOPE2_TEXTILE as SCOPE2_TEXTILE,
4363
- index_SCOPE2_UTILITIES as SCOPE2_UTILITIES,
4364
- index_SCOPE3_GAS_LAB as SCOPE3_GAS_LAB,
4365
- index_SCOPE3_HOSPITALITY as SCOPE3_HOSPITALITY,
4366
- index_SF6_USAGE_PRODUCTS_POLYMER as SF6_USAGE_PRODUCTS_POLYMER,
4367
- index_STATIONARY_COMBUSTION_PRODUCTS as STATIONARY_COMBUSTION_PRODUCTS,
4368
- index_TD_LOSSES_ELECTRICITY_PRODUCTS as TD_LOSSES_ELECTRICITY_PRODUCTS,
4369
- index_TRAVEL_EMISSIONS as TRAVEL_EMISSIONS,
4370
- index_UPSTREAM_FUEL_EMISSIONS_PRODUCTS as UPSTREAM_FUEL_EMISSIONS_PRODUCTS,
4371
- index_UPSTREAM_TRANSPORTATION_GAS_LAB as UPSTREAM_TRANSPORTATION_GAS_LAB,
4372
- index_UPSTREAM_TRANSPORTATION_POLYMER as UPSTREAM_TRANSPORTATION_POLYMER,
4373
- index_UPSTREAM_TRANSPORTATION_PRODUCTS as UPSTREAM_TRANSPORTATION_PRODUCTS,
4374
- index_WASTE_FROM_OPERATIONS as WASTE_FROM_OPERATIONS,
4375
- index_WASTE_GENERATED_GAS_LAB as WASTE_GENERATED_GAS_LAB,
4376
- index_WASTE_GENERATED_IN_OPERATIONS as WASTE_GENERATED_IN_OPERATIONS,
4377
- index_WASTE_GENERATED_PRODUCTS as WASTE_GENERATED_PRODUCTS,
4378
- index_WASTE_OPERATIONS_POLYMER as WASTE_OPERATIONS_POLYMER,
4379
- index_WATER_CONSUMPTION_EMISSIONS as WATER_CONSUMPTION_EMISSIONS,
4380
- index_WATER_DISCHARGE_PRODUCTS as WATER_DISCHARGE_PRODUCTS,
4381
- index_WATER_MANAGEMENT as WATER_MANAGEMENT,
4382
- index_WATER_MANAGEMENT_GAS_LAB as WATER_MANAGEMENT_GAS_LAB,
4383
- index_WATER_MANAGEMENT_SCOPE as WATER_MANAGEMENT_SCOPE,
4384
- index_WATER_MANAGEMENT_STEEL as WATER_MANAGEMENT_STEEL,
4385
- index_WATER_PRODUCTS_GAS_LAB as WATER_PRODUCTS_GAS_LAB,
4386
- index_WATER_USAGE_POLYMER as WATER_USAGE_POLYMER,
4387
- index_WATER_USAGE_PRODUCTS as WATER_USAGE_PRODUCTS,
4388
- index_WELDING_PRODUCTS_GAS_LAB as WELDING_PRODUCTS_GAS_LAB,
4389
- index_getEndpointConfig as getEndpointConfig,
4390
- index_getIndustryConfig as getIndustryConfig,
6470
+ alloy as Alloy,
6471
+ aluminum as Aluminum,
6472
+ automobile as Automobile,
6473
+ aviation as Aviation,
6474
+ battery_ev as BatteryEv,
6475
+ cement as Cement,
6476
+ cementGaslab as CementGaslab,
6477
+ chemical as Chemical,
6478
+ construction as Construction,
6479
+ electricalEquipments as ElectricalEquipments,
6480
+ food as Food,
6481
+ hospitality as Hospitality,
6482
+ logistics as Logistics,
6483
+ manufacturing as Manufacturing,
6484
+ metal as Metal,
6485
+ packaging as Packaging,
6486
+ petro as Petro,
6487
+ pharma as Pharma,
6488
+ polymer as Polymer,
6489
+ realestate as RealEstate,
6490
+ shipping as Shipping,
6491
+ steel as Steel,
6492
+ telecommunications as Telecommunications,
6493
+ textile as Textile,
6494
+ utilities as Utilities,
4391
6495
  index_getRCOConfigByName as getRCOConfigByName,
4392
6496
  };
4393
6497
  }
4394
6498
 
4395
- export { ALL_SCOPES_3_RCO, API_ENDPOINTS, API_SCOPE3_CEMENT_CONFIG, BILL_CALCULATION_CONFIGS, BillManager, 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, DEFAULT_BILL_MATCHING_CONFIG, EmissionSourceGenerator, FRONTEND_INDUSTRY_CONFIGS, HTTP_STATUS, INDUSTRIES_CONFIG, INDUSTRY_MAPPING, INDUSTRY_SPECIFIC_FIELDS, INTENSITY_FIELD_LABELS, ISO_CATEGORIES_PACKAGING, index as Industries, UI_FEATURES, WATER_PRODUCTS, addItemForUser, buildUserConfigItemKey, calculateCCTSEmission, calculateIntensityMetrics, categorizeApiItem, cleanValue, createBillManager, createCapitalizedMonthMapping, createEmissionSourceGenerator, createMonthMapping, debugCarbonIntensityMapping, extractCarbonIntensityData, formatEmissionValue, formatIntensityValue, formatKPIEmission, formatMonthlyEmission, formatPercentage, getAllConfig, getApiIndustryType, getAvailableFieldsForIndustry, getCombinedBackendConfig, getIndustryBackendConfig, getIndustryConfig$1 as getIndustryConfig, getIndustryFieldConfig, getIntensityFormulas, getItemsForUser, getPlantNameConfig, getRCOConfigByName, getScope3ConfigByName, getUserNameBackendConfig, getUserNameScopeConfig, hasIntensities, isUIFeatureEnabled, mapIndustryToApiType, mergeUserItemsIntoIndustryConfig, normalizeConfigKeyText, normalizeConfigText, resolveEmissionFactorsForUser, sameUserConfigText, sanitizeNumber, supportsIntensityCalculations, updateItemEmissionFactorForUser, updateSdkItemEmissionFactorForUser, validateCarbonIntensityData };
4396
- export type { AllConfigurations, AlloyRequest, AlloyResponse, AluminiumRequest, AluminiumResponse, ApiEndpointConfig, ApiResponse, AutomobileRequest, AutomobileResponse, AviationRequest, AviationResponse, BackendAdditionalScopeItem, BackendEmissionItem, BackendEmissions, BackendEquipmentCategory, BackendIndustries, BackendIndustryConfig, BackendProduct, BackendScope, BackendScope3Item, BackendUserConfig, BackendUserConfigs, BaseRequest, BaseResponse, Bill, BillCalculationConfig, BillFilterOptions, BillMatchingConfig, BusinessTravelEmission, BusinessTravelEmissionAttributes, BusinessTravelEmissionsResponse, BillsAnalyzed$1 as CarbonIntensityBillsAnalyzed, Calculations$1 as CarbonIntensityCalculations, EmissionData$2 as CarbonIntensityEmissionData, ErrorResponse$1 as CarbonIntensityErrorResponse, CarbonIntensityRequest, CarbonIntensityResponse, ChemicalRequest, ChemicalResponse, DetailedCarbonIntensityResponse, EditableItem, EmissionData$3 as EmissionData, EmissionSource, Emissions$j as Emissions, EmissionsDataAttributes, EmissionsDataResponse, FieldConfig, FoodBeveragesRequest, FoodBeveragesResponse, FormData, FormValidationResult, FrontendIndustryConfig, HospitalityRequest, HospitalityResponse, IndustryConfig$1 as IndustryConfig, EmissionData as IndustryEmissionData, IndustryFieldConfig, IndustryFieldSection, ProductionData as IndustryProductionData, IndustryType, IntensityCalculation, IntensityValue, LogisticsRequest, LogisticsResponse, ManufacturingRequest, ManufacturingResponse, Meta, MetalEnergyRequest, MetalEnergyResponse, PackagingRequest, PackagingResponse, Pagination, PetrochemicalRequest, PetrochemicalResponse, PharmaRequest, PharmaResponse, PlantNameConfig, ProcessedEmissionCategory, ProcessedEmissionItem, ProcessedScope3Data, RealEstateRequest, RealEstateResponse, BillsAnalyzed as ResponseBillsAnalyzed, Calculations as ResponseCalculations, EmissionData$1 as ResponseEmissionData, ErrorResponse as ResponseErrorResponse, ScopeConfig, ScopeProduct, ShippingRequest, ShippingResponse, SteelRequest, SteelResponse, StrapiItem, StrapiResponse, TelecommunicationRequest, TelecommunicationResponse, TextileRequest, TextileResponse, TransportationEmission, TransportationEmissionAttributes, TransportationEmissionsResponse, UserConfigApiClient, UserConfigItem, UserData, UserEmissionFactorApprovalResponse, UserEmissionFactorResolution, UtilitiesRequest, UtilitiesResponse, ValidationError, VehicleEmission, VehicleEmissionAttributes, VehicleEmissionsResponse };
6499
+ export { ALL_SCOPES_3_RCO, API_ENDPOINTS, API_SCOPE3_CEMENT_CONFIG, BILL_CALCULATION_CONFIGS, BULK_BILL_AGENT_PROFILES, BillManager, 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, DEFAULT_BILL_MATCHING_CONFIG, EmissionSourceGenerator, FRONTEND_INDUSTRY_CONFIGS, HTTP_STATUS, INDUSTRIES_CONFIG, INDUSTRY_MAPPING, INDUSTRY_SPECIFIC_FIELDS, INTENSITY_FIELD_LABELS, ISO_CATEGORIES_PACKAGING, index as Industries, UI_FEATURES, WATER_PRODUCTS$5 as WATER_PRODUCTS, addItemForUser, buildBulkBillAgentPromptConfig, buildUserConfigItemKey, calculateCCTSEmission, calculateIntensityMetrics, categorizeApiItem, cleanValue, createBillManager, createCapitalizedMonthMapping, createEmissionSourceGenerator, createMonthMapping, debugCarbonIntensityMapping, extractCarbonIntensityData, formatEmissionValue, formatIntensityValue, formatKPIEmission, formatMonthlyEmission, formatPercentage, getAllConfig, getApiIndustryType, getAvailableFieldsForIndustry, getBulkBillAgentProfile, getBulkBillAgentProfilesForMappingContext, getCombinedBackendConfig, getIndustryBackendConfig, getIndustryConfig$1 as getIndustryConfig, getIndustryFieldConfig, getIntensityFormulas, getItemsForUser, getPlantNameConfig, getPrimaryBulkBillAgentProfile, getRCOConfigByName, getScope3ConfigByName, getUserNameBackendConfig, getUserNameScopeConfig, hasIntensities, isUIFeatureEnabled, listBulkBillAgentProfiles, mapIndustryToApiType, mergeUserItemsIntoIndustryConfig, normalizeConfigKeyText, normalizeConfigText, resolveEmissionFactorsForUser, sameUserConfigText, sanitizeNumber, scoreBulkBillAgentProfile, supportsIntensityCalculations, updateItemEmissionFactorForUser, updateSdkItemEmissionFactorForUser, validateCarbonIntensityData };
6500
+ export type { AllConfigurations, AlloyRequest, AlloyResponse, AluminiumRequest, AluminiumResponse, ApiEndpointConfig, ApiResponse, AutomobileRequest, AutomobileResponse, AviationRequest, AviationResponse, BackendAdditionalScopeItem, BackendEmissionItem, BackendEmissions, BackendEquipmentCategory, BackendIndustries, BackendIndustryConfig, BackendProduct, BackendScope, BackendScope3Item, BackendUserConfig, BackendUserConfigs, BaseRequest, BaseResponse, Bill, BillCalculationConfig, BillFilterOptions, BillMatchingConfig, BulkBillAgentAllowedItem, BulkBillAgentMappingContext, BulkBillAgentProfile, BulkBillAgentProfileId, BulkBillAgentPromptConfig, BusinessTravelEmission, BusinessTravelEmissionAttributes, BusinessTravelEmissionsResponse, BillsAnalyzed$1 as CarbonIntensityBillsAnalyzed, Calculations$1 as CarbonIntensityCalculations, EmissionData$2 as CarbonIntensityEmissionData, ErrorResponse$1 as CarbonIntensityErrorResponse, CarbonIntensityRequest, CarbonIntensityResponse, ChemicalRequest, ChemicalResponse, DetailedCarbonIntensityResponse, EditableItem, EmissionData$3 as EmissionData, EmissionSource, Emissions$j as Emissions, EmissionsDataAttributes, EmissionsDataResponse, FieldConfig, FoodBeveragesRequest, FoodBeveragesResponse, FormData, FormValidationResult, FrontendIndustryConfig, HospitalityRequest, HospitalityResponse, IndustryConfig$1 as IndustryConfig, EmissionData as IndustryEmissionData, IndustryFieldConfig, IndustryFieldSection, ProductionData as IndustryProductionData, IndustryType, IntensityCalculation, IntensityValue, LogisticsRequest, LogisticsResponse, ManufacturingRequest, ManufacturingResponse, Meta, MetalEnergyRequest, MetalEnergyResponse, PackagingRequest, PackagingResponse, Pagination, PetrochemicalRequest, PetrochemicalResponse, PharmaRequest, PharmaResponse, PlantNameConfig, ProcessedEmissionCategory, ProcessedEmissionItem, ProcessedScope3Data, RealEstateRequest, RealEstateResponse, BillsAnalyzed as ResponseBillsAnalyzed, Calculations as ResponseCalculations, EmissionData$1 as ResponseEmissionData, ErrorResponse as ResponseErrorResponse, ScopeConfig, ScopeProduct, ShippingRequest, ShippingResponse, SteelRequest, SteelResponse, StrapiItem, StrapiResponse, TelecommunicationRequest, TelecommunicationResponse, TextileRequest, TextileResponse, TransportationEmission, TransportationEmissionAttributes, TransportationEmissionsResponse, UserConfigApiClient, UserConfigItem, UserData, UserEmissionFactorApprovalResponse, UserEmissionFactorResolution, UtilitiesRequest, UtilitiesResponse, ValidationError, VehicleEmission, VehicleEmissionAttributes, VehicleEmissionsResponse };