@zerocarbon/erp-config-sdk 1.0.27 → 1.0.29

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,97 @@ 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
+ interface BulkBillAgentProfilePage {
984
+ pageNumber: number | string;
985
+ text?: string;
986
+ }
987
+ interface BulkBillAgentProfileGroup {
988
+ groupId: string;
989
+ pageNumbers: Array<number | string>;
990
+ }
991
+ interface BulkBillAgentProfileCandidate {
992
+ candidateId: string;
993
+ groupId: string;
994
+ profileId: BulkBillAgentProfileId;
995
+ itemName: string;
996
+ quantity: string;
997
+ unit: string;
998
+ role: string;
999
+ confidence: number;
1000
+ pageNumber: number;
1001
+ evidenceText: string;
1002
+ matchedAllowedItemName?: string;
1003
+ matchedAllowedItemKey?: string;
1004
+ matchedAllowedItemSourceId?: string;
1005
+ mappingConfidence?: number;
1006
+ }
1007
+ interface BulkBillAgentProfileExtractionInput {
1008
+ mappingContext?: BulkBillAgentMappingContext;
1009
+ pages?: BulkBillAgentProfilePage[];
1010
+ group: BulkBillAgentProfileGroup;
1011
+ documentText?: string;
1012
+ }
1013
+ declare const extractBulkBillAgentProfileCandidates: ({ mappingContext, pages, group, documentText, }: BulkBillAgentProfileExtractionInput) => BulkBillAgentProfileCandidate[];
1014
+
924
1015
  declare const getUserNameScopeConfig: <T = any>(scopeKey: "scope1" | "scope2" | "scope3" | "waterManagement", username?: string, defaultScope?: T) => T;
925
1016
  type IndustryAdditionalScopeItem = {
926
1017
  type: "scope1" | "scope2" | "scope3";
@@ -1932,7 +2023,71 @@ declare const UI_FEATURES: {
1932
2023
  */
1933
2024
  declare const isUIFeatureEnabled: (featureConstant: string, username?: string) => boolean;
1934
2025
 
1935
- declare const WATER_PRODUCTS: {
2026
+ declare const ELECTRIC_PRODUCTS$5: {
2027
+ name: string;
2028
+ unit: string;
2029
+ type: string;
2030
+ renewable: boolean;
2031
+ calorificValue: number;
2032
+ emissionFactor: number;
2033
+ }[];
2034
+ declare const REFRIGERANTS$9: {
2035
+ name: string;
2036
+ unit: string;
2037
+ type: string;
2038
+ calorificValue: number;
2039
+ emissionFactor: number;
2040
+ }[];
2041
+ declare const FIRE_EXTINGUISHER_PRODUCTS$i: {
2042
+ name: string;
2043
+ unit: string;
2044
+ type: string;
2045
+ calorificValue: number;
2046
+ emissionFactor: number;
2047
+ }[];
2048
+ declare const SF6_PRODUCTS$1: {
2049
+ name: string;
2050
+ unit: string;
2051
+ type: string;
2052
+ calorificValue: number;
2053
+ emissionFactor: number;
2054
+ }[];
2055
+ declare const WATER_PRODUCTS$5: {
2056
+ name: string;
2057
+ unit: string;
2058
+ type: string;
2059
+ calorificValue: number;
2060
+ emissionFactor: number;
2061
+ }[];
2062
+ declare const WASTE_PRODUCTS$5: {
2063
+ name: string;
2064
+ unit: string;
2065
+ type: string;
2066
+ calorificValue: number;
2067
+ emissionFactor: number;
2068
+ }[];
2069
+ declare const FUEL_COMBUSTION_PRODUCTS$e: {
2070
+ name: string;
2071
+ unit: string;
2072
+ type: string;
2073
+ calorificValue: number;
2074
+ emissionFactor: number;
2075
+ }[];
2076
+ declare const REFRIGERANT_PRODUCTS$c: {
2077
+ name: string;
2078
+ unit: string;
2079
+ type: string;
2080
+ calorificValue: number;
2081
+ emissionFactor: number;
2082
+ }[];
2083
+ declare const LPG_USAGE_PRODUCTS$g: {
2084
+ name: string;
2085
+ unit: string;
2086
+ type: string;
2087
+ calorificValue: number;
2088
+ emissionFactor: number;
2089
+ }[];
2090
+ declare const SF6_USAGE_PRODUCTS$h: {
1936
2091
  name: string;
1937
2092
  unit: string;
1938
2093
  type: string;
@@ -1953,6 +2108,22 @@ declare const SCOPE1_PACKAGING: {
1953
2108
  }[];
1954
2109
  desc: string;
1955
2110
  }[];
2111
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$h: {
2112
+ name: string;
2113
+ unit: string;
2114
+ type: string;
2115
+ renewable: boolean;
2116
+ calorificValue: number;
2117
+ emissionFactor: number;
2118
+ }[];
2119
+ declare const RENEWABLE_ENERGY_PRODUCTS$g: {
2120
+ name: string;
2121
+ unit: string;
2122
+ type: string;
2123
+ renewable: boolean;
2124
+ calorificValue: number;
2125
+ emissionFactor: number;
2126
+ }[];
1956
2127
  declare const SCOPE2_PACKAGING: {
1957
2128
  name: string;
1958
2129
  icon: react_icons_lib.IconType;
@@ -1982,6 +2153,46 @@ declare const ALLSCOPES_PACKAGING: {
1982
2153
  }[];
1983
2154
  desc: string;
1984
2155
  }[];
2156
+ declare const PURCHASED_GOODS_AND_SERVICES$g: {
2157
+ category: string;
2158
+ items: {
2159
+ item: string;
2160
+ emissionFactor: number;
2161
+ unit: string;
2162
+ }[];
2163
+ }[];
2164
+ declare const UPSTREAM_EMISSIONS_PURCHASED_FUELS$5: {
2165
+ category: string;
2166
+ items: {
2167
+ item: string;
2168
+ emissionFactor: number;
2169
+ unit: string;
2170
+ }[];
2171
+ }[];
2172
+ declare const UPSTREAM_TRANSPORTATION_EMISSIONS$2: {
2173
+ category: string;
2174
+ items: {
2175
+ item: string;
2176
+ emissionFactor: number;
2177
+ unit: string;
2178
+ }[];
2179
+ }[];
2180
+ declare const GUEST_TRANSPORTATION_EMISSIONS$2: {
2181
+ category: string;
2182
+ items: {
2183
+ item: string;
2184
+ emissionFactor: number;
2185
+ unit: string;
2186
+ }[];
2187
+ }[];
2188
+ declare const WASTE_DISPOSAL_EMISSIONS$5: {
2189
+ category: string;
2190
+ items: {
2191
+ item: string;
2192
+ emissionFactor: number;
2193
+ unit: string;
2194
+ }[];
2195
+ }[];
1985
2196
  declare const EMPLOYEE_COMMUTING_EMISSIONS: {
1986
2197
  category: string;
1987
2198
  items: {
@@ -1990,6 +2201,54 @@ declare const EMPLOYEE_COMMUTING_EMISSIONS: {
1990
2201
  unit: string;
1991
2202
  }[];
1992
2203
  }[];
2204
+ declare const EMPLOYEE_COMMUTING$h: {
2205
+ category: string;
2206
+ items: {
2207
+ item: string;
2208
+ emissionFactor: number;
2209
+ unit: string;
2210
+ }[];
2211
+ }[];
2212
+ declare const BUSINESS_TRAVEL$h: {
2213
+ category: string;
2214
+ items: {
2215
+ item: string;
2216
+ emissionFactor: number;
2217
+ unit: string;
2218
+ }[];
2219
+ }[];
2220
+ declare const TOTAL_DOWNSTREAM_EMISSIONS$1: {
2221
+ category: string;
2222
+ items: {
2223
+ item: string;
2224
+ emissionFactor: number;
2225
+ unit: string;
2226
+ }[];
2227
+ }[];
2228
+ declare const PROCESSING_OF_SOLD_PRODUCTS$1: {
2229
+ category: string;
2230
+ items: {
2231
+ item: string;
2232
+ emissionFactor: number;
2233
+ unit: string;
2234
+ }[];
2235
+ }[];
2236
+ declare const USE_OF_SOLD_PRODUCTS$4: {
2237
+ category: string;
2238
+ items: {
2239
+ item: string;
2240
+ emissionFactor: number;
2241
+ unit: string;
2242
+ }[];
2243
+ }[];
2244
+ declare const END_OF_LIFE_TREATMENT$1: {
2245
+ category: string;
2246
+ items: {
2247
+ item: string;
2248
+ emissionFactor: number;
2249
+ unit: string;
2250
+ }[];
2251
+ }[];
1993
2252
  declare const WATER_CONSUMPTION_EMISSIONS: {
1994
2253
  category: string;
1995
2254
  items: {
@@ -2032,6 +2291,106 @@ declare const ISO_CATEGORIES_PACKAGING: {
2032
2291
  }[];
2033
2292
  }[];
2034
2293
 
2294
+ declare const packaging_ALLSCOPES_PACKAGING: typeof ALLSCOPES_PACKAGING;
2295
+ declare const packaging_ALL_SCOPES_3_PACKAGING: typeof ALL_SCOPES_3_PACKAGING;
2296
+ declare const packaging_EMPLOYEE_COMMUTING_EMISSIONS: typeof EMPLOYEE_COMMUTING_EMISSIONS;
2297
+ declare const packaging_ISO_CATEGORIES_PACKAGING: typeof ISO_CATEGORIES_PACKAGING;
2298
+ declare const packaging_SCOPE1_PACKAGING: typeof SCOPE1_PACKAGING;
2299
+ declare const packaging_SCOPE2_PACKAGING: typeof SCOPE2_PACKAGING;
2300
+ declare const packaging_WATER_CONSUMPTION_EMISSIONS: typeof WATER_CONSUMPTION_EMISSIONS;
2301
+ declare namespace packaging {
2302
+ export {
2303
+ packaging_ALLSCOPES_PACKAGING as ALLSCOPES_PACKAGING,
2304
+ packaging_ALL_SCOPES_3_PACKAGING as ALL_SCOPES_3_PACKAGING,
2305
+ BUSINESS_TRAVEL$h as BUSINESS_TRAVEL,
2306
+ ELECTRIC_PRODUCTS$5 as ELECTRIC_PRODUCTS,
2307
+ EMPLOYEE_COMMUTING$h as EMPLOYEE_COMMUTING,
2308
+ packaging_EMPLOYEE_COMMUTING_EMISSIONS as EMPLOYEE_COMMUTING_EMISSIONS,
2309
+ END_OF_LIFE_TREATMENT$1 as END_OF_LIFE_TREATMENT,
2310
+ FIRE_EXTINGUISHER_PRODUCTS$i as FIRE_EXTINGUISHER_PRODUCTS,
2311
+ FUEL_COMBUSTION_PRODUCTS$e as FUEL_COMBUSTION_PRODUCTS,
2312
+ GUEST_TRANSPORTATION_EMISSIONS$2 as GUEST_TRANSPORTATION_EMISSIONS,
2313
+ packaging_ISO_CATEGORIES_PACKAGING as ISO_CATEGORIES_PACKAGING,
2314
+ LPG_USAGE_PRODUCTS$g as LPG_USAGE_PRODUCTS,
2315
+ PROCESSING_OF_SOLD_PRODUCTS$1 as PROCESSING_OF_SOLD_PRODUCTS,
2316
+ PURCHASED_ELECTRICITY_PRODUCTS$h as PURCHASED_ELECTRICITY_PRODUCTS,
2317
+ PURCHASED_GOODS_AND_SERVICES$g as PURCHASED_GOODS_AND_SERVICES,
2318
+ REFRIGERANTS$9 as REFRIGERANTS,
2319
+ REFRIGERANT_PRODUCTS$c as REFRIGERANT_PRODUCTS,
2320
+ RENEWABLE_ENERGY_PRODUCTS$g as RENEWABLE_ENERGY_PRODUCTS,
2321
+ packaging_SCOPE1_PACKAGING as SCOPE1_PACKAGING,
2322
+ packaging_SCOPE2_PACKAGING as SCOPE2_PACKAGING,
2323
+ SF6_PRODUCTS$1 as SF6_PRODUCTS,
2324
+ SF6_USAGE_PRODUCTS$h as SF6_USAGE_PRODUCTS,
2325
+ TOTAL_DOWNSTREAM_EMISSIONS$1 as TOTAL_DOWNSTREAM_EMISSIONS,
2326
+ UPSTREAM_EMISSIONS_PURCHASED_FUELS$5 as UPSTREAM_EMISSIONS_PURCHASED_FUELS,
2327
+ UPSTREAM_TRANSPORTATION_EMISSIONS$2 as UPSTREAM_TRANSPORTATION_EMISSIONS,
2328
+ USE_OF_SOLD_PRODUCTS$4 as USE_OF_SOLD_PRODUCTS,
2329
+ WASTE_DISPOSAL_EMISSIONS$5 as WASTE_DISPOSAL_EMISSIONS,
2330
+ WASTE_PRODUCTS$5 as WASTE_PRODUCTS,
2331
+ packaging_WATER_CONSUMPTION_EMISSIONS as WATER_CONSUMPTION_EMISSIONS,
2332
+ WATER_PRODUCTS$5 as WATER_PRODUCTS,
2333
+ };
2334
+ }
2335
+
2336
+ declare const FUEL_COMBUSTION_PRODUCTS$d: {
2337
+ name: string;
2338
+ unit: string;
2339
+ type: string;
2340
+ calorificValue: number;
2341
+ emissionFactor: number;
2342
+ }[];
2343
+ declare const REFRIGERANTS$8: {
2344
+ name: string;
2345
+ unit: string;
2346
+ type: string;
2347
+ calorificValue: number;
2348
+ emissionFactor: number;
2349
+ }[];
2350
+ declare const FIRE_EXTINGUISHER_PRODUCTS$h: {
2351
+ name: string;
2352
+ unit: string;
2353
+ type: string;
2354
+ calorificValue: number;
2355
+ emissionFactor: number;
2356
+ }[];
2357
+ declare const LPG_USAGE_PRODUCTS$f: {
2358
+ name: string;
2359
+ unit: string;
2360
+ type: string;
2361
+ calorificValue: number;
2362
+ emissionFactor: number;
2363
+ }[];
2364
+ declare const SF6_USAGE_PRODUCTS$g: {
2365
+ name: string;
2366
+ unit: string;
2367
+ type: string;
2368
+ calorificValue: number;
2369
+ emissionFactor: number;
2370
+ }[];
2371
+ declare const SOLID_FUEL_PRODUCTS$1: {
2372
+ name: string;
2373
+ unit: string;
2374
+ type: string;
2375
+ calorificValue: number;
2376
+ emissionFactor: number;
2377
+ }[];
2378
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$g: {
2379
+ name: string;
2380
+ unit: string;
2381
+ type: string;
2382
+ renewable: boolean;
2383
+ calorificValue: number;
2384
+ emissionFactor: number;
2385
+ }[];
2386
+ declare const RENEWABLE_ENERGY_PRODUCTS$f: {
2387
+ name: string;
2388
+ unit: string;
2389
+ type: string;
2390
+ renewable: boolean;
2391
+ calorificValue: number;
2392
+ emissionFactor: number;
2393
+ }[];
2035
2394
  declare const SCOPE1_ALLOY: {
2036
2395
  name: string;
2037
2396
  icon: react_icons_lib.IconType;
@@ -2071,8 +2430,12 @@ type EmissionCategory$b = {
2071
2430
  items: EmissionItem$j[];
2072
2431
  };
2073
2432
  type Emissions$h = EmissionCategory$b[];
2433
+ declare const PURCHASED_GOODS_AND_SERVICES$f: Emissions$h;
2074
2434
  declare const FUEL_AND_ENERGY_RELATED_ACTIVITIES: Emissions$h;
2075
2435
  declare const WASTE_GENERATED_IN_OPERATIONS: Emissions$h;
2436
+ declare const EMPLOYEE_COMMUTING$g: Emissions$h;
2437
+ declare const BUSINESS_TRAVEL$g: Emissions$h;
2438
+ declare const UPSTREAM_TRANSPORTATION$b: Emissions$h;
2076
2439
  declare const ALL_SCOPES_3_ALLOY: {
2077
2440
  name: string;
2078
2441
  displayName: string;
@@ -2105,37 +2468,117 @@ declare const ALLSCOPES_ALLOY: ({
2105
2468
  desc: string;
2106
2469
  })[];
2107
2470
 
2108
- declare const SCOPE1_ALUMINUM: {
2471
+ declare const alloy_ALLSCOPES_ALLOY: typeof ALLSCOPES_ALLOY;
2472
+ declare const alloy_ALL_SCOPES_3_ALLOY: typeof ALL_SCOPES_3_ALLOY;
2473
+ declare const alloy_FUEL_AND_ENERGY_RELATED_ACTIVITIES: typeof FUEL_AND_ENERGY_RELATED_ACTIVITIES;
2474
+ declare const alloy_SCOPE1_ALLOY: typeof SCOPE1_ALLOY;
2475
+ declare const alloy_SCOPE2_ALLOY: typeof SCOPE2_ALLOY;
2476
+ declare const alloy_WASTE_GENERATED_IN_OPERATIONS: typeof WASTE_GENERATED_IN_OPERATIONS;
2477
+ declare namespace alloy {
2478
+ export {
2479
+ alloy_ALLSCOPES_ALLOY as ALLSCOPES_ALLOY,
2480
+ alloy_ALL_SCOPES_3_ALLOY as ALL_SCOPES_3_ALLOY,
2481
+ BUSINESS_TRAVEL$g as BUSINESS_TRAVEL,
2482
+ EMPLOYEE_COMMUTING$g as EMPLOYEE_COMMUTING,
2483
+ FIRE_EXTINGUISHER_PRODUCTS$h as FIRE_EXTINGUISHER_PRODUCTS,
2484
+ alloy_FUEL_AND_ENERGY_RELATED_ACTIVITIES as FUEL_AND_ENERGY_RELATED_ACTIVITIES,
2485
+ FUEL_COMBUSTION_PRODUCTS$d as FUEL_COMBUSTION_PRODUCTS,
2486
+ LPG_USAGE_PRODUCTS$f as LPG_USAGE_PRODUCTS,
2487
+ PURCHASED_ELECTRICITY_PRODUCTS$g as PURCHASED_ELECTRICITY_PRODUCTS,
2488
+ PURCHASED_GOODS_AND_SERVICES$f as PURCHASED_GOODS_AND_SERVICES,
2489
+ REFRIGERANTS$8 as REFRIGERANTS,
2490
+ RENEWABLE_ENERGY_PRODUCTS$f as RENEWABLE_ENERGY_PRODUCTS,
2491
+ alloy_SCOPE1_ALLOY as SCOPE1_ALLOY,
2492
+ alloy_SCOPE2_ALLOY as SCOPE2_ALLOY,
2493
+ SF6_USAGE_PRODUCTS$g as SF6_USAGE_PRODUCTS,
2494
+ SOLID_FUEL_PRODUCTS$1 as SOLID_FUEL_PRODUCTS,
2495
+ UPSTREAM_TRANSPORTATION$b as UPSTREAM_TRANSPORTATION,
2496
+ alloy_WASTE_GENERATED_IN_OPERATIONS as WASTE_GENERATED_IN_OPERATIONS,
2497
+ };
2498
+ }
2499
+
2500
+ declare const FUEL_COMBUSTION_PRODUCTS$c: {
2109
2501
  name: string;
2110
- icon: react_icons_lib.IconType;
2111
- scope: string;
2112
2502
  unit: string;
2113
- subProducts: {
2114
- name: string;
2115
- unit: string;
2116
- type: string;
2117
- calorificValue: number;
2118
- emissionFactor: number;
2119
- }[];
2120
- desc: string;
2503
+ type: string;
2504
+ calorificValue: number;
2505
+ emissionFactor: number;
2121
2506
  }[];
2122
- declare const SCOPE2_ALUMINUM: {
2507
+ declare const REFRIGERANT_PRODUCTS$b: {
2123
2508
  name: string;
2124
- icon: react_icons_lib.IconType;
2125
- scope: string;
2126
2509
  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;
2510
+ type: string;
2511
+ calorificValue: number;
2512
+ emissionFactor: number;
2513
+ }[];
2514
+ declare const FIRE_EXTINGUISHER_PRODUCTS$g: {
2515
+ name: string;
2516
+ unit: string;
2517
+ type: string;
2518
+ calorificValue: number;
2519
+ emissionFactor: number;
2520
+ }[];
2521
+ declare const LPG_USAGE_PRODUCTS$e: {
2522
+ name: string;
2523
+ unit: string;
2524
+ type: string;
2525
+ calorificValue: number;
2526
+ emissionFactor: number;
2527
+ }[];
2528
+ declare const SF6_USAGE_PRODUCTS$f: {
2529
+ name: string;
2530
+ unit: string;
2531
+ type: string;
2532
+ calorificValue: number;
2533
+ emissionFactor: number;
2534
+ }[];
2535
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$f: {
2536
+ name: string;
2537
+ unit: string;
2538
+ type: string;
2539
+ renewable: boolean;
2540
+ calorificValue: number;
2541
+ emissionFactor: number;
2542
+ }[];
2543
+ declare const RENEWABLE_ENERGY_PRODUCTS$e: {
2544
+ name: string;
2545
+ unit: string;
2546
+ type: string;
2547
+ renewable: boolean;
2548
+ calorificValue: number;
2549
+ emissionFactor: number;
2550
+ }[];
2551
+ declare const SCOPE1_ALUMINUM: {
2552
+ name: string;
2553
+ icon: react_icons_lib.IconType;
2554
+ scope: string;
2555
+ unit: string;
2556
+ subProducts: {
2557
+ name: string;
2558
+ unit: string;
2559
+ type: string;
2560
+ calorificValue: number;
2561
+ emissionFactor: number;
2562
+ }[];
2563
+ desc: string;
2564
+ }[];
2565
+ declare const SCOPE2_ALUMINUM: {
2566
+ name: string;
2567
+ icon: react_icons_lib.IconType;
2568
+ scope: string;
2569
+ unit: string;
2570
+ subProducts: {
2571
+ name: string;
2572
+ unit: string;
2573
+ type: string;
2574
+ renewable: boolean;
2575
+ calorificValue: number;
2576
+ emissionFactor: number;
2577
+ }[];
2578
+ desc: string;
2579
+ }[];
2580
+ type EmissionItem$i = {
2581
+ item: string;
2139
2582
  emissionFactor: number;
2140
2583
  unit: string;
2141
2584
  };
@@ -2168,6 +2611,26 @@ declare const ALLSCOPES_ALUMINUM: ({
2168
2611
  desc: string;
2169
2612
  } | Scope3Product$1)[];
2170
2613
 
2614
+ declare const aluminum_ALLSCOPES_ALUMINUM: typeof ALLSCOPES_ALUMINUM;
2615
+ declare const aluminum_ALL_SCOPES_3_ALUMINUM: typeof ALL_SCOPES_3_ALUMINUM;
2616
+ declare const aluminum_SCOPE1_ALUMINUM: typeof SCOPE1_ALUMINUM;
2617
+ declare const aluminum_SCOPE2_ALUMINUM: typeof SCOPE2_ALUMINUM;
2618
+ declare namespace aluminum {
2619
+ export {
2620
+ aluminum_ALLSCOPES_ALUMINUM as ALLSCOPES_ALUMINUM,
2621
+ aluminum_ALL_SCOPES_3_ALUMINUM as ALL_SCOPES_3_ALUMINUM,
2622
+ FIRE_EXTINGUISHER_PRODUCTS$g as FIRE_EXTINGUISHER_PRODUCTS,
2623
+ FUEL_COMBUSTION_PRODUCTS$c as FUEL_COMBUSTION_PRODUCTS,
2624
+ LPG_USAGE_PRODUCTS$e as LPG_USAGE_PRODUCTS,
2625
+ PURCHASED_ELECTRICITY_PRODUCTS$f as PURCHASED_ELECTRICITY_PRODUCTS,
2626
+ REFRIGERANT_PRODUCTS$b as REFRIGERANT_PRODUCTS,
2627
+ RENEWABLE_ENERGY_PRODUCTS$e as RENEWABLE_ENERGY_PRODUCTS,
2628
+ aluminum_SCOPE1_ALUMINUM as SCOPE1_ALUMINUM,
2629
+ aluminum_SCOPE2_ALUMINUM as SCOPE2_ALUMINUM,
2630
+ SF6_USAGE_PRODUCTS$f as SF6_USAGE_PRODUCTS,
2631
+ };
2632
+ }
2633
+
2171
2634
  declare const MOBILE_COMBUSTION_PRODUCTS: {
2172
2635
  name: string;
2173
2636
  unit: string;
@@ -2182,6 +2645,43 @@ declare const STATIONARY_COMBUSTION_PRODUCTS: {
2182
2645
  calorificValue: number;
2183
2646
  emissionFactor: number;
2184
2647
  }[];
2648
+ declare const REFRIGERANTS$7: {
2649
+ name: string;
2650
+ unit: string;
2651
+ type: string;
2652
+ calorificValue: number;
2653
+ emissionFactor: number;
2654
+ }[];
2655
+ declare const FIRE_EXTINGUISHER_PRODUCTS$f: {
2656
+ name: string;
2657
+ unit: string;
2658
+ type: string;
2659
+ calorificValue: number;
2660
+ emissionFactor: number;
2661
+ }[];
2662
+ declare const SF6_USAGE_PRODUCTS$e: {
2663
+ name: string;
2664
+ unit: string;
2665
+ type: string;
2666
+ calorificValue: number;
2667
+ emissionFactor: number;
2668
+ }[];
2669
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$e: {
2670
+ name: string;
2671
+ unit: string;
2672
+ type: string;
2673
+ renewable: boolean;
2674
+ calorificValue: number;
2675
+ emissionFactor: number;
2676
+ }[];
2677
+ declare const RENEWABLE_ENERGY_PRODUCTS$d: {
2678
+ name: string;
2679
+ unit: string;
2680
+ type: string;
2681
+ renewable: boolean;
2682
+ calorificValue: number;
2683
+ emissionFactor: number;
2684
+ }[];
2185
2685
  declare const PURCHASED_HEAT_STEAM_COOLING_PRODUCTS: {
2186
2686
  name: string;
2187
2687
  unit: string;
@@ -2228,6 +2728,12 @@ type EmissionCategory$a = {
2228
2728
  items: EmissionItem$h[];
2229
2729
  };
2230
2730
  type Emissions$g = EmissionCategory$a[];
2731
+ declare const PURCHASED_GOODS_AND_SERVICES$e: Emissions$g;
2732
+ declare const FUEL_ENERGY_RELATED$9: Emissions$g;
2733
+ declare const WASTE_OPERATIONS$9: Emissions$g;
2734
+ declare const EMPLOYEE_COMMUTING$f: Emissions$g;
2735
+ declare const BUSINESS_TRAVEL$f: Emissions$g;
2736
+ declare const UPSTREAM_TRANSPORTATION$a: Emissions$g;
2231
2737
  declare const WATER_MANAGEMENT: Emissions$g;
2232
2738
  declare const ALL_SCOPES_3_AUTOMOBILE: {
2233
2739
  name: string;
@@ -2261,6 +2767,73 @@ declare const ALLSCOPES_AUTOMOBILE: ({
2261
2767
  desc: string;
2262
2768
  })[];
2263
2769
 
2770
+ declare const automobile_ALLSCOPES_AUTOMOBILE: typeof ALLSCOPES_AUTOMOBILE;
2771
+ declare const automobile_ALL_SCOPES_3_AUTOMOBILE: typeof ALL_SCOPES_3_AUTOMOBILE;
2772
+ declare const automobile_MOBILE_COMBUSTION_PRODUCTS: typeof MOBILE_COMBUSTION_PRODUCTS;
2773
+ declare const automobile_PURCHASED_HEAT_STEAM_COOLING_PRODUCTS: typeof PURCHASED_HEAT_STEAM_COOLING_PRODUCTS;
2774
+ declare const automobile_SCOPE1_AUTOMOBILE: typeof SCOPE1_AUTOMOBILE;
2775
+ declare const automobile_SCOPE2_AUTOMOBILE: typeof SCOPE2_AUTOMOBILE;
2776
+ declare const automobile_STATIONARY_COMBUSTION_PRODUCTS: typeof STATIONARY_COMBUSTION_PRODUCTS;
2777
+ declare const automobile_WATER_MANAGEMENT: typeof WATER_MANAGEMENT;
2778
+ declare namespace automobile {
2779
+ export {
2780
+ automobile_ALLSCOPES_AUTOMOBILE as ALLSCOPES_AUTOMOBILE,
2781
+ automobile_ALL_SCOPES_3_AUTOMOBILE as ALL_SCOPES_3_AUTOMOBILE,
2782
+ BUSINESS_TRAVEL$f as BUSINESS_TRAVEL,
2783
+ EMPLOYEE_COMMUTING$f as EMPLOYEE_COMMUTING,
2784
+ FIRE_EXTINGUISHER_PRODUCTS$f as FIRE_EXTINGUISHER_PRODUCTS,
2785
+ FUEL_ENERGY_RELATED$9 as FUEL_ENERGY_RELATED,
2786
+ automobile_MOBILE_COMBUSTION_PRODUCTS as MOBILE_COMBUSTION_PRODUCTS,
2787
+ PURCHASED_ELECTRICITY_PRODUCTS$e as PURCHASED_ELECTRICITY_PRODUCTS,
2788
+ PURCHASED_GOODS_AND_SERVICES$e as PURCHASED_GOODS_AND_SERVICES,
2789
+ automobile_PURCHASED_HEAT_STEAM_COOLING_PRODUCTS as PURCHASED_HEAT_STEAM_COOLING_PRODUCTS,
2790
+ REFRIGERANTS$7 as REFRIGERANTS,
2791
+ RENEWABLE_ENERGY_PRODUCTS$d as RENEWABLE_ENERGY_PRODUCTS,
2792
+ automobile_SCOPE1_AUTOMOBILE as SCOPE1_AUTOMOBILE,
2793
+ automobile_SCOPE2_AUTOMOBILE as SCOPE2_AUTOMOBILE,
2794
+ SF6_USAGE_PRODUCTS$e as SF6_USAGE_PRODUCTS,
2795
+ automobile_STATIONARY_COMBUSTION_PRODUCTS as STATIONARY_COMBUSTION_PRODUCTS,
2796
+ UPSTREAM_TRANSPORTATION$a as UPSTREAM_TRANSPORTATION,
2797
+ WASTE_OPERATIONS$9 as WASTE_OPERATIONS,
2798
+ automobile_WATER_MANAGEMENT as WATER_MANAGEMENT,
2799
+ };
2800
+ }
2801
+
2802
+ declare const FUEL_COMBUSTION_PRODUCTS$b: {
2803
+ name: string;
2804
+ unit: string;
2805
+ type: string;
2806
+ calorificValue: number;
2807
+ emissionFactor: number;
2808
+ }[];
2809
+ declare const REFRIGERANT_PRODUCTS$a: {
2810
+ name: string;
2811
+ unit: string;
2812
+ type: string;
2813
+ calorificValue: number;
2814
+ emissionFactor: number;
2815
+ }[];
2816
+ declare const FIRE_EXTINGUISHER_PRODUCTS$e: {
2817
+ name: string;
2818
+ unit: string;
2819
+ type: string;
2820
+ calorificValue: number;
2821
+ emissionFactor: number;
2822
+ }[];
2823
+ declare const LPG_USAGE_PRODUCTS$d: {
2824
+ name: string;
2825
+ unit: string;
2826
+ type: string;
2827
+ calorificValue: number;
2828
+ emissionFactor: number;
2829
+ }[];
2830
+ declare const SF6_USAGE_PRODUCTS$d: {
2831
+ name: string;
2832
+ unit: string;
2833
+ type: string;
2834
+ calorificValue: number;
2835
+ emissionFactor: number;
2836
+ }[];
2264
2837
  declare const SCOPE1_AVIATION: {
2265
2838
  name: string;
2266
2839
  icon: react_icons_lib.IconType;
@@ -2275,6 +2848,22 @@ declare const SCOPE1_AVIATION: {
2275
2848
  }[];
2276
2849
  desc: string;
2277
2850
  }[];
2851
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$d: {
2852
+ name: string;
2853
+ unit: string;
2854
+ type: string;
2855
+ renewable: boolean;
2856
+ calorificValue: number;
2857
+ emissionFactor: number;
2858
+ }[];
2859
+ declare const RENEWABLE_ENERGY_PRODUCTS$c: {
2860
+ name: string;
2861
+ unit: string;
2862
+ type: string;
2863
+ renewable: boolean;
2864
+ calorificValue: number;
2865
+ emissionFactor: number;
2866
+ }[];
2278
2867
  declare const SCOPE2_AVIATION: {
2279
2868
  name: string;
2280
2869
  icon: react_icons_lib.IconType;
@@ -2366,6 +2955,61 @@ declare const ALLSCOPES_AVIATION: ({
2366
2955
  desc: string;
2367
2956
  })[];
2368
2957
 
2958
+ declare const aviation_ALLSCOPES_AVIATION: typeof ALLSCOPES_AVIATION;
2959
+ declare const aviation_ALL_SCOPES_3_AVIATION: typeof ALL_SCOPES_3_AVIATION;
2960
+ declare const aviation_SCOPE1_AVIATION: typeof SCOPE1_AVIATION;
2961
+ declare const aviation_SCOPE2_AVIATION: typeof SCOPE2_AVIATION;
2962
+ declare namespace aviation {
2963
+ export {
2964
+ aviation_ALLSCOPES_AVIATION as ALLSCOPES_AVIATION,
2965
+ aviation_ALL_SCOPES_3_AVIATION as ALL_SCOPES_3_AVIATION,
2966
+ FIRE_EXTINGUISHER_PRODUCTS$e as FIRE_EXTINGUISHER_PRODUCTS,
2967
+ FUEL_COMBUSTION_PRODUCTS$b as FUEL_COMBUSTION_PRODUCTS,
2968
+ LPG_USAGE_PRODUCTS$d as LPG_USAGE_PRODUCTS,
2969
+ PURCHASED_ELECTRICITY_PRODUCTS$d as PURCHASED_ELECTRICITY_PRODUCTS,
2970
+ REFRIGERANT_PRODUCTS$a as REFRIGERANT_PRODUCTS,
2971
+ RENEWABLE_ENERGY_PRODUCTS$c as RENEWABLE_ENERGY_PRODUCTS,
2972
+ aviation_SCOPE1_AVIATION as SCOPE1_AVIATION,
2973
+ aviation_SCOPE2_AVIATION as SCOPE2_AVIATION,
2974
+ SF6_USAGE_PRODUCTS$d as SF6_USAGE_PRODUCTS,
2975
+ };
2976
+ }
2977
+
2978
+ declare const FUEL_COMBUSTION_PRODUCTS$a: {
2979
+ name: string;
2980
+ unit: string;
2981
+ type: string;
2982
+ calorificValue: number;
2983
+ emissionFactor: number;
2984
+ }[];
2985
+ declare const REFRIGERANT_PRODUCTS$9: {
2986
+ name: string;
2987
+ unit: string;
2988
+ type: string;
2989
+ calorificValue: number;
2990
+ emissionFactor: number;
2991
+ }[];
2992
+ declare const FIRE_EXTINGUISHER_PRODUCTS$d: {
2993
+ name: string;
2994
+ unit: string;
2995
+ type: string;
2996
+ calorificValue: number;
2997
+ emissionFactor: number;
2998
+ }[];
2999
+ declare const LPG_USAGE_PRODUCTS$c: {
3000
+ name: string;
3001
+ unit: string;
3002
+ type: string;
3003
+ calorificValue: number;
3004
+ emissionFactor: number;
3005
+ }[];
3006
+ declare const SF6_USAGE_PRODUCTS$c: {
3007
+ name: string;
3008
+ unit: string;
3009
+ type: string;
3010
+ calorificValue: number;
3011
+ emissionFactor: number;
3012
+ }[];
2369
3013
  declare const SCOPE1_BATTERY_EV: {
2370
3014
  name: string;
2371
3015
  icon: react_icons_lib.IconType;
@@ -2380,6 +3024,22 @@ declare const SCOPE1_BATTERY_EV: {
2380
3024
  }[];
2381
3025
  desc: string;
2382
3026
  }[];
3027
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$c: {
3028
+ name: string;
3029
+ unit: string;
3030
+ type: string;
3031
+ renewable: boolean;
3032
+ calorificValue: number;
3033
+ emissionFactor: number;
3034
+ }[];
3035
+ declare const RENEWABLE_ENERGY_PRODUCTS$b: {
3036
+ name: string;
3037
+ unit: string;
3038
+ type: string;
3039
+ renewable: boolean;
3040
+ calorificValue: number;
3041
+ emissionFactor: number;
3042
+ }[];
2383
3043
  declare const SCOPE2_BATTERY_EV: {
2384
3044
  name: string;
2385
3045
  icon: react_icons_lib.IconType;
@@ -2395,6 +3055,22 @@ declare const SCOPE2_BATTERY_EV: {
2395
3055
  }[];
2396
3056
  desc: string;
2397
3057
  }[];
3058
+ declare const EMPLOYEE_COMMUTING$e: {
3059
+ category: string;
3060
+ items: {
3061
+ item: string;
3062
+ emissionFactor: number;
3063
+ unit: string;
3064
+ }[];
3065
+ }[];
3066
+ declare const BUSINESS_TRAVEL$e: {
3067
+ category: string;
3068
+ items: {
3069
+ item: string;
3070
+ emissionFactor: number;
3071
+ unit: string;
3072
+ }[];
3073
+ }[];
2398
3074
  declare const ALL_SCOPES_3_BATTERY_EV: ({
2399
3075
  name: string;
2400
3076
  icon: react_icons_lib.IconType;
@@ -2471,6 +3147,64 @@ declare const ALLSCOPES_BATTERY_EV: ({
2471
3147
  desc: string;
2472
3148
  })[];
2473
3149
 
3150
+ declare const battery_ev_ALLSCOPES_BATTERY_EV: typeof ALLSCOPES_BATTERY_EV;
3151
+ declare const battery_ev_ALL_SCOPES_3_BATTERY_EV: typeof ALL_SCOPES_3_BATTERY_EV;
3152
+ declare const battery_ev_SCOPE1_BATTERY_EV: typeof SCOPE1_BATTERY_EV;
3153
+ declare const battery_ev_SCOPE2_BATTERY_EV: typeof SCOPE2_BATTERY_EV;
3154
+ declare namespace battery_ev {
3155
+ export {
3156
+ battery_ev_ALLSCOPES_BATTERY_EV as ALLSCOPES_BATTERY_EV,
3157
+ battery_ev_ALL_SCOPES_3_BATTERY_EV as ALL_SCOPES_3_BATTERY_EV,
3158
+ BUSINESS_TRAVEL$e as BUSINESS_TRAVEL,
3159
+ EMPLOYEE_COMMUTING$e as EMPLOYEE_COMMUTING,
3160
+ FIRE_EXTINGUISHER_PRODUCTS$d as FIRE_EXTINGUISHER_PRODUCTS,
3161
+ FUEL_COMBUSTION_PRODUCTS$a as FUEL_COMBUSTION_PRODUCTS,
3162
+ LPG_USAGE_PRODUCTS$c as LPG_USAGE_PRODUCTS,
3163
+ PURCHASED_ELECTRICITY_PRODUCTS$c as PURCHASED_ELECTRICITY_PRODUCTS,
3164
+ REFRIGERANT_PRODUCTS$9 as REFRIGERANT_PRODUCTS,
3165
+ RENEWABLE_ENERGY_PRODUCTS$b as RENEWABLE_ENERGY_PRODUCTS,
3166
+ battery_ev_SCOPE1_BATTERY_EV as SCOPE1_BATTERY_EV,
3167
+ battery_ev_SCOPE2_BATTERY_EV as SCOPE2_BATTERY_EV,
3168
+ SF6_USAGE_PRODUCTS$c as SF6_USAGE_PRODUCTS,
3169
+ };
3170
+ }
3171
+
3172
+ declare const ELECTRIC_PRODUCTS$4: ({
3173
+ name: string;
3174
+ unit: string;
3175
+ type: string;
3176
+ calorificValue: number;
3177
+ emissionFactor: number;
3178
+ renewable?: undefined;
3179
+ } | {
3180
+ name: string;
3181
+ unit: string;
3182
+ type: string;
3183
+ renewable: boolean;
3184
+ calorificValue: number;
3185
+ emissionFactor: number;
3186
+ })[];
3187
+ declare const WATER_PRODUCTS$4: {
3188
+ name: string;
3189
+ unit: string;
3190
+ type: string;
3191
+ calorificValue: number;
3192
+ emissionFactor: number;
3193
+ }[];
3194
+ declare const WASTE_PRODUCTS$4: {
3195
+ name: string;
3196
+ unit: string;
3197
+ type: string;
3198
+ calorificValue: number;
3199
+ emissionFactor: number;
3200
+ }[];
3201
+ declare const REFRIGERANTS$6: {
3202
+ name: string;
3203
+ unit: string;
3204
+ type: string;
3205
+ calorificValue: number;
3206
+ emissionFactor: number;
3207
+ }[];
2474
3208
  declare const FUEL_COMBUSTION_PYRO_PROCESS_PRODUCTS: ({
2475
3209
  name: string;
2476
3210
  unit: string;
@@ -2556,18 +3290,53 @@ declare const ELECTRICITY_CONSUMED_PRODUCTS: ({
2556
3290
  energyConversionFactor: number;
2557
3291
  source?: undefined;
2558
3292
  })[];
2559
- declare const LPG_PRODUCTS: {
3293
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$b: ({
2560
3294
  name: string;
2561
3295
  unit: string;
2562
- type: string;
2563
- calorificValue: number;
2564
3296
  emissionFactor: number;
2565
- ch4EmissionFactor: number;
2566
- n2oEmissionFactor: number;
3297
+ calorificValue: number;
3298
+ type: string;
2567
3299
  energyConversionFactor: number;
2568
- }[];
2569
- declare const SCOPE1_CEMENT: ({
2570
- name: string;
3300
+ source: string;
3301
+ } | {
3302
+ name: string;
3303
+ unit: string;
3304
+ emissionFactor: number;
3305
+ calorificValue: number;
3306
+ type: string;
3307
+ energyConversionFactor: number;
3308
+ source?: undefined;
3309
+ })[];
3310
+ declare const FIRE_EXTINGUISHER_PRODUCTS$c: {
3311
+ name: string;
3312
+ unit: string;
3313
+ type: string;
3314
+ calorificValue: number;
3315
+ emissionFactor: number;
3316
+ ch4EmissionFactor: number;
3317
+ n2oEmissionFactor: number;
3318
+ }[];
3319
+ declare const LPG_PRODUCTS: {
3320
+ name: string;
3321
+ unit: string;
3322
+ type: string;
3323
+ calorificValue: number;
3324
+ emissionFactor: number;
3325
+ ch4EmissionFactor: number;
3326
+ n2oEmissionFactor: number;
3327
+ energyConversionFactor: number;
3328
+ }[];
3329
+ declare const SF6_PRODUCTS: {
3330
+ name: string;
3331
+ unit: string;
3332
+ type: string;
3333
+ calorificValue: number;
3334
+ emissionFactor: number;
3335
+ ch4EmissionFactor: number;
3336
+ n2oEmissionFactor: number;
3337
+ }[];
3338
+ declare const SCOPE1_CEMENT: ({
3339
+ name: string;
2571
3340
  icon: react_icons_lib.IconType;
2572
3341
  scope: string;
2573
3342
  unit: string;
@@ -2681,6 +3450,8 @@ type EquipmentCategory$5 = {
2681
3450
  items: EmissionItem$g[];
2682
3451
  };
2683
3452
  type Emissions$f = EquipmentCategory$5[];
3453
+ declare const PURCHASED_GOODS_AND_SERVICES$d: Emissions$f;
3454
+ declare const UPSTREAM_EMISSIONS_PURCHASED_FUELS$4: Emissions$f;
2684
3455
  declare const TRAVEL_EMISSIONS: {
2685
3456
  category: string;
2686
3457
  items: {
@@ -2697,6 +3468,16 @@ declare const GROUND_TRANSPORTATION_EMISSIONS: {
2697
3468
  unit: string;
2698
3469
  }[];
2699
3470
  }[];
3471
+ declare const WASTE_DISPOSAL_EMISSIONS$4: {
3472
+ category: string;
3473
+ items: {
3474
+ item: string;
3475
+ emissionFactor: number;
3476
+ unit: string;
3477
+ }[];
3478
+ }[];
3479
+ declare const USE_OF_SOLD_PRODUCTS$3: never[];
3480
+ declare const GUEST_TRANSPORTATION_EMISSIONS$1: Emissions$f;
2700
3481
  type Scope3Item$1 = {
2701
3482
  name: string;
2702
3483
  displayName: string;
@@ -2763,6 +3544,64 @@ declare const CEMENT_INDUSTRY_CONFIG: IndustryConfig$1;
2763
3544
  declare const getIndustryConfig: (industry: string) => IndustryConfig$1 | null;
2764
3545
  declare const getEndpointConfig: (industry: string, endpointName: string) => ApiEndpointConfig | undefined;
2765
3546
 
3547
+ declare const cement_ALLSCOPES_CEMENT: typeof ALLSCOPES_CEMENT;
3548
+ declare const cement_ALL_SCOPES_3_CEMENT: typeof ALL_SCOPES_3_CEMENT;
3549
+ declare const cement_CALCINATION_PROCESS_PRODUCTS: typeof CALCINATION_PROCESS_PRODUCTS;
3550
+ declare const cement_CCTS_1: typeof CCTS_1;
3551
+ declare const cement_CCTS_2: typeof CCTS_2;
3552
+ declare const cement_CEMENT_INDUSTRY_CONFIG: typeof CEMENT_INDUSTRY_CONFIG;
3553
+ declare const cement_ELECTRICITY_CONSUMED_PRODUCTS: typeof ELECTRICITY_CONSUMED_PRODUCTS;
3554
+ declare const cement_ENERGY_SOURCE: typeof ENERGY_SOURCE;
3555
+ declare const cement_FUEL_COMBUSTION_PYRO_PROCESS_PRODUCTS: typeof FUEL_COMBUSTION_PYRO_PROCESS_PRODUCTS;
3556
+ declare const cement_FUEL_PRODUCTS: typeof FUEL_PRODUCTS;
3557
+ declare const cement_GROUND_TRANSPORTATION_EMISSIONS: typeof GROUND_TRANSPORTATION_EMISSIONS;
3558
+ declare const cement_LPG_PRODUCTS: typeof LPG_PRODUCTS;
3559
+ declare const cement_MINING_OPERATIONS_PRODUCTS: typeof MINING_OPERATIONS_PRODUCTS;
3560
+ declare const cement_ON_SITE_POWER_PRODUCTS: typeof ON_SITE_POWER_PRODUCTS;
3561
+ declare const cement_SCOPE1_CEMENT: typeof SCOPE1_CEMENT;
3562
+ declare const cement_SCOPE2_CEMENT: typeof SCOPE2_CEMENT;
3563
+ declare const cement_SF6_PRODUCTS: typeof SF6_PRODUCTS;
3564
+ declare const cement_TRAVEL_EMISSIONS: typeof TRAVEL_EMISSIONS;
3565
+ declare const cement_WATER_MANAGEMENT_SCOPE: typeof WATER_MANAGEMENT_SCOPE;
3566
+ declare const cement_getEndpointConfig: typeof getEndpointConfig;
3567
+ declare const cement_getIndustryConfig: typeof getIndustryConfig;
3568
+ declare namespace cement {
3569
+ export {
3570
+ cement_ALLSCOPES_CEMENT as ALLSCOPES_CEMENT,
3571
+ cement_ALL_SCOPES_3_CEMENT as ALL_SCOPES_3_CEMENT,
3572
+ cement_CALCINATION_PROCESS_PRODUCTS as CALCINATION_PROCESS_PRODUCTS,
3573
+ cement_CCTS_1 as CCTS_1,
3574
+ cement_CCTS_2 as CCTS_2,
3575
+ cement_CEMENT_INDUSTRY_CONFIG as CEMENT_INDUSTRY_CONFIG,
3576
+ cement_ELECTRICITY_CONSUMED_PRODUCTS as ELECTRICITY_CONSUMED_PRODUCTS,
3577
+ ELECTRIC_PRODUCTS$4 as ELECTRIC_PRODUCTS,
3578
+ cement_ENERGY_SOURCE as ENERGY_SOURCE,
3579
+ FIRE_EXTINGUISHER_PRODUCTS$c as FIRE_EXTINGUISHER_PRODUCTS,
3580
+ cement_FUEL_COMBUSTION_PYRO_PROCESS_PRODUCTS as FUEL_COMBUSTION_PYRO_PROCESS_PRODUCTS,
3581
+ cement_FUEL_PRODUCTS as FUEL_PRODUCTS,
3582
+ cement_GROUND_TRANSPORTATION_EMISSIONS as GROUND_TRANSPORTATION_EMISSIONS,
3583
+ GUEST_TRANSPORTATION_EMISSIONS$1 as GUEST_TRANSPORTATION_EMISSIONS,
3584
+ cement_LPG_PRODUCTS as LPG_PRODUCTS,
3585
+ cement_MINING_OPERATIONS_PRODUCTS as MINING_OPERATIONS_PRODUCTS,
3586
+ cement_ON_SITE_POWER_PRODUCTS as ON_SITE_POWER_PRODUCTS,
3587
+ PURCHASED_ELECTRICITY_PRODUCTS$b as PURCHASED_ELECTRICITY_PRODUCTS,
3588
+ PURCHASED_GOODS_AND_SERVICES$d as PURCHASED_GOODS_AND_SERVICES,
3589
+ REFRIGERANTS$6 as REFRIGERANTS,
3590
+ cement_SCOPE1_CEMENT as SCOPE1_CEMENT,
3591
+ cement_SCOPE2_CEMENT as SCOPE2_CEMENT,
3592
+ cement_SF6_PRODUCTS as SF6_PRODUCTS,
3593
+ cement_TRAVEL_EMISSIONS as TRAVEL_EMISSIONS,
3594
+ UPSTREAM_EMISSIONS_PURCHASED_FUELS$4 as UPSTREAM_EMISSIONS_PURCHASED_FUELS,
3595
+ USE_OF_SOLD_PRODUCTS$3 as USE_OF_SOLD_PRODUCTS,
3596
+ WASTE_DISPOSAL_EMISSIONS$4 as WASTE_DISPOSAL_EMISSIONS,
3597
+ WASTE_PRODUCTS$4 as WASTE_PRODUCTS,
3598
+ cement_WATER_MANAGEMENT_SCOPE as WATER_MANAGEMENT_SCOPE,
3599
+ WATER_PRODUCTS$4 as WATER_PRODUCTS,
3600
+ cement_getEndpointConfig as getEndpointConfig,
3601
+ cement_getIndustryConfig as getIndustryConfig,
3602
+ };
3603
+ }
3604
+
2766
3605
  type EmissionItem$f = {
2767
3606
  item: string;
2768
3607
  emissionFactor: number;
@@ -2900,6 +3739,73 @@ declare const WATER_MANAGEMENT_GAS_LAB: {
2900
3739
  desc: string;
2901
3740
  };
2902
3741
 
3742
+ declare const cementGaslab_BUSINESS_TRAVEL_GAS_LAB: typeof BUSINESS_TRAVEL_GAS_LAB;
3743
+ declare const cementGaslab_DIESEL_GENERATOR_GAS_LAB: typeof DIESEL_GENERATOR_GAS_LAB;
3744
+ declare const cementGaslab_DOWNSTREAM_TRANSPORTATION_GAS_LAB: typeof DOWNSTREAM_TRANSPORTATION_GAS_LAB;
3745
+ declare const cementGaslab_EMPLOYEE_COMMUTE_GAS_LAB: typeof EMPLOYEE_COMMUTE_GAS_LAB;
3746
+ declare const cementGaslab_FUEL_COMBUSTION_GAS_LAB: typeof FUEL_COMBUSTION_GAS_LAB;
3747
+ declare const cementGaslab_LOCATION_BASED_ELECTRICITY_GAS_LAB: typeof LOCATION_BASED_ELECTRICITY_GAS_LAB;
3748
+ declare const cementGaslab_LPG_PRODUCTS_GAS_LAB: typeof LPG_PRODUCTS_GAS_LAB;
3749
+ declare const cementGaslab_MARKET_BASED_ELECTRICITY_GAS_LAB: typeof MARKET_BASED_ELECTRICITY_GAS_LAB;
3750
+ declare const cementGaslab_PURCHASED_GOODS_GAS_LAB: typeof PURCHASED_GOODS_GAS_LAB;
3751
+ declare const cementGaslab_SCOPE1_GAS_LAB: typeof SCOPE1_GAS_LAB;
3752
+ declare const cementGaslab_SCOPE2_GAS_LAB: typeof SCOPE2_GAS_LAB;
3753
+ declare const cementGaslab_SCOPE3_GAS_LAB: typeof SCOPE3_GAS_LAB;
3754
+ declare const cementGaslab_UPSTREAM_TRANSPORTATION_GAS_LAB: typeof UPSTREAM_TRANSPORTATION_GAS_LAB;
3755
+ declare const cementGaslab_WASTE_GENERATED_GAS_LAB: typeof WASTE_GENERATED_GAS_LAB;
3756
+ declare const cementGaslab_WATER_MANAGEMENT_GAS_LAB: typeof WATER_MANAGEMENT_GAS_LAB;
3757
+ declare const cementGaslab_WATER_PRODUCTS_GAS_LAB: typeof WATER_PRODUCTS_GAS_LAB;
3758
+ declare const cementGaslab_WELDING_PRODUCTS_GAS_LAB: typeof WELDING_PRODUCTS_GAS_LAB;
3759
+ declare namespace cementGaslab {
3760
+ export {
3761
+ cementGaslab_BUSINESS_TRAVEL_GAS_LAB as BUSINESS_TRAVEL_GAS_LAB,
3762
+ cementGaslab_DIESEL_GENERATOR_GAS_LAB as DIESEL_GENERATOR_GAS_LAB,
3763
+ cementGaslab_DOWNSTREAM_TRANSPORTATION_GAS_LAB as DOWNSTREAM_TRANSPORTATION_GAS_LAB,
3764
+ cementGaslab_EMPLOYEE_COMMUTE_GAS_LAB as EMPLOYEE_COMMUTE_GAS_LAB,
3765
+ cementGaslab_FUEL_COMBUSTION_GAS_LAB as FUEL_COMBUSTION_GAS_LAB,
3766
+ cementGaslab_LOCATION_BASED_ELECTRICITY_GAS_LAB as LOCATION_BASED_ELECTRICITY_GAS_LAB,
3767
+ cementGaslab_LPG_PRODUCTS_GAS_LAB as LPG_PRODUCTS_GAS_LAB,
3768
+ cementGaslab_MARKET_BASED_ELECTRICITY_GAS_LAB as MARKET_BASED_ELECTRICITY_GAS_LAB,
3769
+ cementGaslab_PURCHASED_GOODS_GAS_LAB as PURCHASED_GOODS_GAS_LAB,
3770
+ cementGaslab_SCOPE1_GAS_LAB as SCOPE1_GAS_LAB,
3771
+ cementGaslab_SCOPE2_GAS_LAB as SCOPE2_GAS_LAB,
3772
+ cementGaslab_SCOPE3_GAS_LAB as SCOPE3_GAS_LAB,
3773
+ cementGaslab_UPSTREAM_TRANSPORTATION_GAS_LAB as UPSTREAM_TRANSPORTATION_GAS_LAB,
3774
+ cementGaslab_WASTE_GENERATED_GAS_LAB as WASTE_GENERATED_GAS_LAB,
3775
+ cementGaslab_WATER_MANAGEMENT_GAS_LAB as WATER_MANAGEMENT_GAS_LAB,
3776
+ cementGaslab_WATER_PRODUCTS_GAS_LAB as WATER_PRODUCTS_GAS_LAB,
3777
+ cementGaslab_WELDING_PRODUCTS_GAS_LAB as WELDING_PRODUCTS_GAS_LAB,
3778
+ };
3779
+ }
3780
+
3781
+ declare const ELECTRIC_PRODUCTS$3: {
3782
+ name: string;
3783
+ unit: string;
3784
+ type: string;
3785
+ calorificValue: number;
3786
+ emissionFactor: number;
3787
+ }[];
3788
+ declare const WATER_PRODUCTS$3: {
3789
+ name: string;
3790
+ unit: string;
3791
+ type: string;
3792
+ calorificValue: number;
3793
+ emissionFactor: number;
3794
+ }[];
3795
+ declare const WASTE_PRODUCTS$3: {
3796
+ name: string;
3797
+ unit: string;
3798
+ type: string;
3799
+ calorificValue: number;
3800
+ emissionFactor: number;
3801
+ }[];
3802
+ declare const REFRIGERANTS$5: {
3803
+ name: string;
3804
+ unit: string;
3805
+ type: string;
3806
+ calorificValue: number;
3807
+ emissionFactor: number;
3808
+ }[];
2903
3809
  declare const OPERATIONS_PRODUCTS: {
2904
3810
  name: string;
2905
3811
  unit: string;
@@ -2907,6 +3813,27 @@ declare const OPERATIONS_PRODUCTS: {
2907
3813
  calorificValue: number;
2908
3814
  emissionFactor: number;
2909
3815
  }[];
3816
+ declare const FIRE_EXTINGUISHER_PRODUCTS$b: {
3817
+ name: string;
3818
+ unit: string;
3819
+ type: string;
3820
+ calorificValue: number;
3821
+ emissionFactor: number;
3822
+ }[];
3823
+ declare const LPG_USAGE_PRODUCTS$b: {
3824
+ name: string;
3825
+ unit: string;
3826
+ type: string;
3827
+ calorificValue: number;
3828
+ emissionFactor: number;
3829
+ }[];
3830
+ declare const SF6_USAGE_PRODUCTS$b: {
3831
+ name: string;
3832
+ unit: string;
3833
+ type: string;
3834
+ calorificValue: number;
3835
+ emissionFactor: number;
3836
+ }[];
2910
3837
  declare const CHEMICAL_PROCESS_PRODUCTS: {
2911
3838
  name: string;
2912
3839
  unit: string;
@@ -2967,6 +3894,27 @@ type EquipmentCategory$3 = {
2967
3894
  items: EmissionItem$e[];
2968
3895
  };
2969
3896
  type Emissions$d = EquipmentCategory$3[];
3897
+ declare const PURCHASED_GOODS_AND_SERVICES$c: Emissions$d;
3898
+ declare const UPSTREAM_TRANSPORTATION_EMISSIONS$1: Emissions$d;
3899
+ declare const UPSTREAM_EMISSIONS_PURCHASED_FUELS$3: Emissions$d;
3900
+ declare const EMPLOYEE_COMMUTING$d: Emissions$d;
3901
+ declare const BUSINESS_TRAVEL$d: Emissions$d;
3902
+ declare const WASTE_DISPOSAL_EMISSIONS$3: {
3903
+ category: string;
3904
+ items: {
3905
+ item: string;
3906
+ emissionFactor: number;
3907
+ unit: string;
3908
+ }[];
3909
+ }[];
3910
+ declare const USE_OF_SOLD_PRODUCTS$2: {
3911
+ category: string;
3912
+ items: {
3913
+ item: string;
3914
+ emissionFactor: number;
3915
+ unit: string;
3916
+ }[];
3917
+ }[];
2970
3918
  declare const ALL_SCOPES_3_CHEMICAL: ({
2971
3919
  name: string;
2972
3920
  displayName: string;
@@ -2985,6 +3933,67 @@ declare const ALL_SCOPES_3_CHEMICAL: ({
2985
3933
  displayName?: undefined;
2986
3934
  })[];
2987
3935
 
3936
+ declare const chemical_ALLSCOPES_CHEMICAL: typeof ALLSCOPES_CHEMICAL;
3937
+ declare const chemical_ALL_SCOPES_3_CHEMICAL: typeof ALL_SCOPES_3_CHEMICAL;
3938
+ declare const chemical_CHEMICAL_PROCESS_PRODUCTS: typeof CHEMICAL_PROCESS_PRODUCTS;
3939
+ declare const chemical_OPERATIONS_PRODUCTS: typeof OPERATIONS_PRODUCTS;
3940
+ declare const chemical_SCOPE1_CHEMICAL: typeof SCOPE1_CHEMICAL;
3941
+ declare const chemical_SCOPE2_CHEMICAL: typeof SCOPE2_CHEMICAL;
3942
+ declare namespace chemical {
3943
+ export {
3944
+ chemical_ALLSCOPES_CHEMICAL as ALLSCOPES_CHEMICAL,
3945
+ chemical_ALL_SCOPES_3_CHEMICAL as ALL_SCOPES_3_CHEMICAL,
3946
+ BUSINESS_TRAVEL$d as BUSINESS_TRAVEL,
3947
+ chemical_CHEMICAL_PROCESS_PRODUCTS as CHEMICAL_PROCESS_PRODUCTS,
3948
+ ELECTRIC_PRODUCTS$3 as ELECTRIC_PRODUCTS,
3949
+ EMPLOYEE_COMMUTING$d as EMPLOYEE_COMMUTING,
3950
+ FIRE_EXTINGUISHER_PRODUCTS$b as FIRE_EXTINGUISHER_PRODUCTS,
3951
+ LPG_USAGE_PRODUCTS$b as LPG_USAGE_PRODUCTS,
3952
+ chemical_OPERATIONS_PRODUCTS as OPERATIONS_PRODUCTS,
3953
+ PURCHASED_GOODS_AND_SERVICES$c as PURCHASED_GOODS_AND_SERVICES,
3954
+ REFRIGERANTS$5 as REFRIGERANTS,
3955
+ chemical_SCOPE1_CHEMICAL as SCOPE1_CHEMICAL,
3956
+ chemical_SCOPE2_CHEMICAL as SCOPE2_CHEMICAL,
3957
+ SF6_USAGE_PRODUCTS$b as SF6_USAGE_PRODUCTS,
3958
+ UPSTREAM_EMISSIONS_PURCHASED_FUELS$3 as UPSTREAM_EMISSIONS_PURCHASED_FUELS,
3959
+ UPSTREAM_TRANSPORTATION_EMISSIONS$1 as UPSTREAM_TRANSPORTATION_EMISSIONS,
3960
+ USE_OF_SOLD_PRODUCTS$2 as USE_OF_SOLD_PRODUCTS,
3961
+ WASTE_DISPOSAL_EMISSIONS$3 as WASTE_DISPOSAL_EMISSIONS,
3962
+ WASTE_PRODUCTS$3 as WASTE_PRODUCTS,
3963
+ WATER_PRODUCTS$3 as WATER_PRODUCTS,
3964
+ };
3965
+ }
3966
+
3967
+ declare const ELECTRIC_PRODUCTS$2: {
3968
+ name: string;
3969
+ unit: string;
3970
+ type: string;
3971
+ renewable: boolean;
3972
+ calorificValue: number;
3973
+ emissionFactor: number;
3974
+ energyConversionFactor: number;
3975
+ }[];
3976
+ declare const WATER_PRODUCTS$2: {
3977
+ name: string;
3978
+ unit: string;
3979
+ type: string;
3980
+ calorificValue: number;
3981
+ emissionFactor: number;
3982
+ }[];
3983
+ declare const WASTE_PRODUCTS$2: {
3984
+ name: string;
3985
+ unit: string;
3986
+ type: string;
3987
+ calorificValue: number;
3988
+ emissionFactor: number;
3989
+ }[];
3990
+ declare const REFRIGERANTS$4: {
3991
+ name: string;
3992
+ unit: string;
3993
+ type: string;
3994
+ calorificValue: number;
3995
+ emissionFactor: number;
3996
+ }[];
2988
3997
  declare const SCOPE1_CONSTRUCTION: {
2989
3998
  name: string;
2990
3999
  icon: react_icons_lib.IconType;
@@ -3038,6 +4047,35 @@ type EquipmentCategory$2 = {
3038
4047
  items: EmissionItem$d[];
3039
4048
  };
3040
4049
  type Emissions$c = EquipmentCategory$2[];
4050
+ declare const PURCHASED_GOODS_AND_SERVICES$b: Emissions$c;
4051
+ declare const HOTEL_EQUIPMENT_EMISSIONS$1: {
4052
+ category: string;
4053
+ items: {
4054
+ item: string;
4055
+ emissionFactor: number;
4056
+ unit: string;
4057
+ }[];
4058
+ }[];
4059
+ declare const UPSTREAM_EMISSIONS_PURCHASED_FUELS$2: {
4060
+ category: string;
4061
+ items: {
4062
+ item: string;
4063
+ emissionFactor: number;
4064
+ unit: string;
4065
+ }[];
4066
+ }[];
4067
+ declare const GUEST_TRANSPORTATION_EMISSIONS: Emissions$c;
4068
+ declare const RAW_MATERIAL_TRANSPORTATION$1: {
4069
+ category: string;
4070
+ items: {
4071
+ item: string;
4072
+ emissionFactor: number;
4073
+ unit: string;
4074
+ }[];
4075
+ }[];
4076
+ declare const WASTE_DISPOSAL_EMISSIONS$2: Emissions$c;
4077
+ declare const EMPLOYEE_COMMUTING$c: Emissions$c;
4078
+ declare const BUSINESS_TRAVEL$c: Emissions$c;
3041
4079
  declare const ALL_SCOPES_3_CONSTRUCTION: ({
3042
4080
  name: string;
3043
4081
  displayName: string;
@@ -3056,6 +4094,32 @@ declare const ALL_SCOPES_3_CONSTRUCTION: ({
3056
4094
  displayName?: undefined;
3057
4095
  })[];
3058
4096
 
4097
+ declare const construction_ALLSCOPES_CONSTRUCTION: typeof ALLSCOPES_CONSTRUCTION;
4098
+ declare const construction_ALL_SCOPES_3_CONSTRUCTION: typeof ALL_SCOPES_3_CONSTRUCTION;
4099
+ declare const construction_GUEST_TRANSPORTATION_EMISSIONS: typeof GUEST_TRANSPORTATION_EMISSIONS;
4100
+ declare const construction_SCOPE1_CONSTRUCTION: typeof SCOPE1_CONSTRUCTION;
4101
+ declare const construction_SCOPE2_CONSTRUCTION: typeof SCOPE2_CONSTRUCTION;
4102
+ declare namespace construction {
4103
+ export {
4104
+ construction_ALLSCOPES_CONSTRUCTION as ALLSCOPES_CONSTRUCTION,
4105
+ construction_ALL_SCOPES_3_CONSTRUCTION as ALL_SCOPES_3_CONSTRUCTION,
4106
+ BUSINESS_TRAVEL$c as BUSINESS_TRAVEL,
4107
+ ELECTRIC_PRODUCTS$2 as ELECTRIC_PRODUCTS,
4108
+ EMPLOYEE_COMMUTING$c as EMPLOYEE_COMMUTING,
4109
+ construction_GUEST_TRANSPORTATION_EMISSIONS as GUEST_TRANSPORTATION_EMISSIONS,
4110
+ HOTEL_EQUIPMENT_EMISSIONS$1 as HOTEL_EQUIPMENT_EMISSIONS,
4111
+ PURCHASED_GOODS_AND_SERVICES$b as PURCHASED_GOODS_AND_SERVICES,
4112
+ RAW_MATERIAL_TRANSPORTATION$1 as RAW_MATERIAL_TRANSPORTATION,
4113
+ REFRIGERANTS$4 as REFRIGERANTS,
4114
+ construction_SCOPE1_CONSTRUCTION as SCOPE1_CONSTRUCTION,
4115
+ construction_SCOPE2_CONSTRUCTION as SCOPE2_CONSTRUCTION,
4116
+ UPSTREAM_EMISSIONS_PURCHASED_FUELS$2 as UPSTREAM_EMISSIONS_PURCHASED_FUELS,
4117
+ WASTE_DISPOSAL_EMISSIONS$2 as WASTE_DISPOSAL_EMISSIONS,
4118
+ WASTE_PRODUCTS$2 as WASTE_PRODUCTS,
4119
+ WATER_PRODUCTS$2 as WATER_PRODUCTS,
4120
+ };
4121
+ }
4122
+
3059
4123
  declare const SCOPE1_ELECTRICAL_EQUIPMENTS: {
3060
4124
  name: string;
3061
4125
  icon: react_icons_lib.IconType;
@@ -3131,6 +4195,54 @@ declare const ALLSCOPES_ELECTRICAL_EQUIPMENTS: ({
3131
4195
  desc: string;
3132
4196
  })[];
3133
4197
 
4198
+ declare const electricalEquipments_ALLSCOPES_ELECTRICAL_EQUIPMENTS: typeof ALLSCOPES_ELECTRICAL_EQUIPMENTS;
4199
+ declare const electricalEquipments_ALL_SCOPES_3_ELECTRICAL_EQUIPMENTS: typeof ALL_SCOPES_3_ELECTRICAL_EQUIPMENTS;
4200
+ declare const electricalEquipments_SCOPE1_ELECTRICAL_EQUIPMENTS: typeof SCOPE1_ELECTRICAL_EQUIPMENTS;
4201
+ declare const electricalEquipments_SCOPE2_ELECTRICAL_EQUIPMENTS: typeof SCOPE2_ELECTRICAL_EQUIPMENTS;
4202
+ declare namespace electricalEquipments {
4203
+ export {
4204
+ electricalEquipments_ALLSCOPES_ELECTRICAL_EQUIPMENTS as ALLSCOPES_ELECTRICAL_EQUIPMENTS,
4205
+ electricalEquipments_ALL_SCOPES_3_ELECTRICAL_EQUIPMENTS as ALL_SCOPES_3_ELECTRICAL_EQUIPMENTS,
4206
+ electricalEquipments_SCOPE1_ELECTRICAL_EQUIPMENTS as SCOPE1_ELECTRICAL_EQUIPMENTS,
4207
+ electricalEquipments_SCOPE2_ELECTRICAL_EQUIPMENTS as SCOPE2_ELECTRICAL_EQUIPMENTS,
4208
+ };
4209
+ }
4210
+
4211
+ declare const FUEL_COMBUSTION_PRODUCTS$9: {
4212
+ name: string;
4213
+ unit: string;
4214
+ type: string;
4215
+ calorificValue: number;
4216
+ emissionFactor: number;
4217
+ }[];
4218
+ declare const REFRIGERANT_PRODUCTS$8: {
4219
+ name: string;
4220
+ unit: string;
4221
+ type: string;
4222
+ calorificValue: number;
4223
+ emissionFactor: number;
4224
+ }[];
4225
+ declare const FIRE_EXTINGUISHER_PRODUCTS$a: {
4226
+ name: string;
4227
+ unit: string;
4228
+ type: string;
4229
+ calorificValue: number;
4230
+ emissionFactor: number;
4231
+ }[];
4232
+ declare const LPG_USAGE_PRODUCTS$a: {
4233
+ name: string;
4234
+ unit: string;
4235
+ type: string;
4236
+ calorificValue: number;
4237
+ emissionFactor: number;
4238
+ }[];
4239
+ declare const SF6_USAGE_PRODUCTS$a: {
4240
+ name: string;
4241
+ unit: string;
4242
+ type: string;
4243
+ calorificValue: number;
4244
+ emissionFactor: number;
4245
+ }[];
3134
4246
  declare const SCOPE1_FOOD: {
3135
4247
  name: string;
3136
4248
  icon: react_icons_lib.IconType;
@@ -3145,6 +4257,22 @@ declare const SCOPE1_FOOD: {
3145
4257
  }[];
3146
4258
  desc: string;
3147
4259
  }[];
4260
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$a: {
4261
+ name: string;
4262
+ unit: string;
4263
+ type: string;
4264
+ renewable: boolean;
4265
+ calorificValue: number;
4266
+ emissionFactor: number;
4267
+ }[];
4268
+ declare const RENEWABLE_ENERGY_PRODUCTS$a: {
4269
+ name: string;
4270
+ unit: string;
4271
+ type: string;
4272
+ renewable: boolean;
4273
+ calorificValue: number;
4274
+ emissionFactor: number;
4275
+ }[];
3148
4276
  declare const SCOPE2_FOOD: {
3149
4277
  name: string;
3150
4278
  icon: react_icons_lib.IconType;
@@ -3170,6 +4298,13 @@ type EmissionCategory$9 = {
3170
4298
  items: EmissionItem$c[];
3171
4299
  };
3172
4300
  type Emissions$b = EmissionCategory$9[];
4301
+ declare const PURCHASED_GOODS_AND_SERVICES$a: Emissions$b;
4302
+ declare const FUEL_ENERGY_RELATED$8: Emissions$b;
4303
+ declare const UPSTREAM_TRANSPORTATION$9: Emissions$b;
4304
+ declare const WASTE_OPERATIONS$8: Emissions$b;
4305
+ declare const EMPLOYEE_COMMUTING$b: Emissions$b;
4306
+ declare const BUSINESS_TRAVEL$b: Emissions$b;
4307
+ declare const WATER_USAGE$8: Emissions$b;
3173
4308
  declare const ALL_SCOPES_3_FOOD: {
3174
4309
  name: string;
3175
4310
  displayName: string;
@@ -3179,6 +4314,54 @@ declare const ALL_SCOPES_3_FOOD: {
3179
4314
  subProducts: Emissions$b;
3180
4315
  desc: string;
3181
4316
  }[];
4317
+ declare const ALLSCOPES_LOGISTICS$6: ({
4318
+ name: string;
4319
+ icon: react_icons_lib.IconType;
4320
+ scope: string;
4321
+ unit: string;
4322
+ subProducts: {
4323
+ name: string;
4324
+ unit: string;
4325
+ type: string;
4326
+ calorificValue: number;
4327
+ emissionFactor: number;
4328
+ }[];
4329
+ desc: string;
4330
+ } | {
4331
+ name: string;
4332
+ displayName: string;
4333
+ icon: react_icons_lib.IconType;
4334
+ scope: string;
4335
+ unit: string;
4336
+ subProducts: Emissions$b;
4337
+ desc: string;
4338
+ })[];
4339
+
4340
+ declare const food_ALL_SCOPES_3_FOOD: typeof ALL_SCOPES_3_FOOD;
4341
+ declare const food_SCOPE1_FOOD: typeof SCOPE1_FOOD;
4342
+ declare const food_SCOPE2_FOOD: typeof SCOPE2_FOOD;
4343
+ declare namespace food {
4344
+ export {
4345
+ ALLSCOPES_LOGISTICS$6 as ALLSCOPES_LOGISTICS,
4346
+ food_ALL_SCOPES_3_FOOD as ALL_SCOPES_3_FOOD,
4347
+ BUSINESS_TRAVEL$b as BUSINESS_TRAVEL,
4348
+ EMPLOYEE_COMMUTING$b as EMPLOYEE_COMMUTING,
4349
+ FIRE_EXTINGUISHER_PRODUCTS$a as FIRE_EXTINGUISHER_PRODUCTS,
4350
+ FUEL_COMBUSTION_PRODUCTS$9 as FUEL_COMBUSTION_PRODUCTS,
4351
+ FUEL_ENERGY_RELATED$8 as FUEL_ENERGY_RELATED,
4352
+ LPG_USAGE_PRODUCTS$a as LPG_USAGE_PRODUCTS,
4353
+ PURCHASED_ELECTRICITY_PRODUCTS$a as PURCHASED_ELECTRICITY_PRODUCTS,
4354
+ PURCHASED_GOODS_AND_SERVICES$a as PURCHASED_GOODS_AND_SERVICES,
4355
+ REFRIGERANT_PRODUCTS$8 as REFRIGERANT_PRODUCTS,
4356
+ RENEWABLE_ENERGY_PRODUCTS$a as RENEWABLE_ENERGY_PRODUCTS,
4357
+ food_SCOPE1_FOOD as SCOPE1_FOOD,
4358
+ food_SCOPE2_FOOD as SCOPE2_FOOD,
4359
+ SF6_USAGE_PRODUCTS$a as SF6_USAGE_PRODUCTS,
4360
+ UPSTREAM_TRANSPORTATION$9 as UPSTREAM_TRANSPORTATION,
4361
+ WASTE_OPERATIONS$8 as WASTE_OPERATIONS,
4362
+ WATER_USAGE$8 as WATER_USAGE,
4363
+ };
4364
+ }
3182
4365
 
3183
4366
  type EmissionItem$b = {
3184
4367
  item: string;
@@ -3197,27 +4380,69 @@ declare const OPERATION_PRODUCTS: {
3197
4380
  calorificValue: number;
3198
4381
  emissionFactor: number;
3199
4382
  }[];
3200
- declare const SCOPE1_HOSPITALITY: {
4383
+ declare const REFRIGERANTS$3: {
3201
4384
  name: string;
3202
- icon: react_icons_lib.IconType;
3203
- scope: string;
3204
4385
  unit: string;
3205
- subProducts: {
3206
- name: string;
3207
- unit: string;
3208
- type: string;
3209
- calorificValue: number;
3210
- emissionFactor: number;
3211
- }[];
3212
- desc: string;
4386
+ type: string;
4387
+ calorificValue: number;
4388
+ emissionFactor: number;
3213
4389
  }[];
3214
- declare const SCOPE2_HOSPITALITY: {
4390
+ declare const FIRE_EXTINGUISHER_PRODUCTS$9: {
3215
4391
  name: string;
3216
- icon: react_icons_lib.IconType;
3217
- scope: string;
3218
4392
  unit: string;
3219
- subProducts: {
3220
- name: string;
4393
+ type: string;
4394
+ calorificValue: number;
4395
+ emissionFactor: number;
4396
+ }[];
4397
+ declare const LPG_USAGE_PRODUCTS$9: {
4398
+ name: string;
4399
+ unit: string;
4400
+ type: string;
4401
+ calorificValue: number;
4402
+ emissionFactor: number;
4403
+ }[];
4404
+ declare const SF6_USAGE_PRODUCTS$9: {
4405
+ name: string;
4406
+ unit: string;
4407
+ type: string;
4408
+ calorificValue: number;
4409
+ emissionFactor: number;
4410
+ }[];
4411
+ declare const SCOPE1_HOSPITALITY: {
4412
+ name: string;
4413
+ icon: react_icons_lib.IconType;
4414
+ scope: string;
4415
+ unit: string;
4416
+ subProducts: {
4417
+ name: string;
4418
+ unit: string;
4419
+ type: string;
4420
+ calorificValue: number;
4421
+ emissionFactor: number;
4422
+ }[];
4423
+ desc: string;
4424
+ }[];
4425
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$9: {
4426
+ name: string;
4427
+ unit: string;
4428
+ type: string;
4429
+ calorificValue: number;
4430
+ emissionFactor: number;
4431
+ }[];
4432
+ declare const RENEWABLE_ENERGY_PRODUCTS$9: {
4433
+ name: string;
4434
+ unit: string;
4435
+ type: string;
4436
+ calorificValue: number;
4437
+ emissionFactor: number;
4438
+ }[];
4439
+ declare const SCOPE2_HOSPITALITY: {
4440
+ name: string;
4441
+ icon: react_icons_lib.IconType;
4442
+ scope: string;
4443
+ unit: string;
4444
+ subProducts: {
4445
+ name: string;
3221
4446
  unit: string;
3222
4447
  type: string;
3223
4448
  renewable: boolean;
@@ -3240,6 +4465,8 @@ declare const BUSINESS_TRAVEL_GROUND_PRODUCTS: Emissions$a;
3240
4465
  declare const UPSTREAM_TRANSPORTATION_PRODUCTS: Emissions$a;
3241
4466
  declare const WATER_USAGE_PRODUCTS: Emissions$a;
3242
4467
  declare const WATER_DISCHARGE_PRODUCTS: Emissions$a;
4468
+ declare const EMPLOYEE_COMMUTING$a: Emissions$a;
4469
+ declare const BUSINESS_TRAVEL$a: Emissions$a;
3243
4470
  type Scope3Item = {
3244
4471
  name: string;
3245
4472
  displayName: string;
@@ -3265,6 +4492,92 @@ declare const ALLSCOPES_HOSPITALITY: ({
3265
4492
  desc: string;
3266
4493
  } | Scope3Item)[];
3267
4494
 
4495
+ declare const hospitality_ALLSCOPES_HOSPITALITY: typeof ALLSCOPES_HOSPITALITY;
4496
+ declare const hospitality_BUSINESS_TRAVEL_AIR_PRODUCTS: typeof BUSINESS_TRAVEL_AIR_PRODUCTS;
4497
+ declare const hospitality_BUSINESS_TRAVEL_GROUND_PRODUCTS: typeof BUSINESS_TRAVEL_GROUND_PRODUCTS;
4498
+ declare const hospitality_EMPLOYEE_COMMUTING_CAR_PRODUCTS: typeof EMPLOYEE_COMMUTING_CAR_PRODUCTS;
4499
+ declare const hospitality_EMPLOYEE_COMMUTING_PUBLIC_TRANSPORT_PRODUCTS: typeof EMPLOYEE_COMMUTING_PUBLIC_TRANSPORT_PRODUCTS;
4500
+ declare const hospitality_EMPLOYEE_COMMUTING_TWO_WHEELER_PRODUCTS: typeof EMPLOYEE_COMMUTING_TWO_WHEELER_PRODUCTS;
4501
+ declare const hospitality_MAINTENANCE_MATERIALS_PRODUCTS: typeof MAINTENANCE_MATERIALS_PRODUCTS;
4502
+ declare const hospitality_OPERATION_PRODUCTS: typeof OPERATION_PRODUCTS;
4503
+ declare const hospitality_PACKAGING_MATERIALS_PRODUCTS: typeof PACKAGING_MATERIALS_PRODUCTS;
4504
+ declare const hospitality_RAW_MATERIALS_PRODUCTS: typeof RAW_MATERIALS_PRODUCTS;
4505
+ declare const hospitality_SCOPE1_HOSPITALITY: typeof SCOPE1_HOSPITALITY;
4506
+ declare const hospitality_SCOPE2_HOSPITALITY: typeof SCOPE2_HOSPITALITY;
4507
+ declare const hospitality_SCOPE3_HOSPITALITY: typeof SCOPE3_HOSPITALITY;
4508
+ declare const hospitality_TD_LOSSES_ELECTRICITY_PRODUCTS: typeof TD_LOSSES_ELECTRICITY_PRODUCTS;
4509
+ declare const hospitality_UPSTREAM_FUEL_EMISSIONS_PRODUCTS: typeof UPSTREAM_FUEL_EMISSIONS_PRODUCTS;
4510
+ declare const hospitality_UPSTREAM_TRANSPORTATION_PRODUCTS: typeof UPSTREAM_TRANSPORTATION_PRODUCTS;
4511
+ declare const hospitality_WASTE_GENERATED_PRODUCTS: typeof WASTE_GENERATED_PRODUCTS;
4512
+ declare const hospitality_WATER_DISCHARGE_PRODUCTS: typeof WATER_DISCHARGE_PRODUCTS;
4513
+ declare const hospitality_WATER_USAGE_PRODUCTS: typeof WATER_USAGE_PRODUCTS;
4514
+ declare namespace hospitality {
4515
+ export {
4516
+ hospitality_ALLSCOPES_HOSPITALITY as ALLSCOPES_HOSPITALITY,
4517
+ BUSINESS_TRAVEL$a as BUSINESS_TRAVEL,
4518
+ hospitality_BUSINESS_TRAVEL_AIR_PRODUCTS as BUSINESS_TRAVEL_AIR_PRODUCTS,
4519
+ hospitality_BUSINESS_TRAVEL_GROUND_PRODUCTS as BUSINESS_TRAVEL_GROUND_PRODUCTS,
4520
+ EMPLOYEE_COMMUTING$a as EMPLOYEE_COMMUTING,
4521
+ hospitality_EMPLOYEE_COMMUTING_CAR_PRODUCTS as EMPLOYEE_COMMUTING_CAR_PRODUCTS,
4522
+ hospitality_EMPLOYEE_COMMUTING_PUBLIC_TRANSPORT_PRODUCTS as EMPLOYEE_COMMUTING_PUBLIC_TRANSPORT_PRODUCTS,
4523
+ hospitality_EMPLOYEE_COMMUTING_TWO_WHEELER_PRODUCTS as EMPLOYEE_COMMUTING_TWO_WHEELER_PRODUCTS,
4524
+ FIRE_EXTINGUISHER_PRODUCTS$9 as FIRE_EXTINGUISHER_PRODUCTS,
4525
+ LPG_USAGE_PRODUCTS$9 as LPG_USAGE_PRODUCTS,
4526
+ hospitality_MAINTENANCE_MATERIALS_PRODUCTS as MAINTENANCE_MATERIALS_PRODUCTS,
4527
+ hospitality_OPERATION_PRODUCTS as OPERATION_PRODUCTS,
4528
+ hospitality_PACKAGING_MATERIALS_PRODUCTS as PACKAGING_MATERIALS_PRODUCTS,
4529
+ PURCHASED_ELECTRICITY_PRODUCTS$9 as PURCHASED_ELECTRICITY_PRODUCTS,
4530
+ hospitality_RAW_MATERIALS_PRODUCTS as RAW_MATERIALS_PRODUCTS,
4531
+ REFRIGERANTS$3 as REFRIGERANTS,
4532
+ RENEWABLE_ENERGY_PRODUCTS$9 as RENEWABLE_ENERGY_PRODUCTS,
4533
+ hospitality_SCOPE1_HOSPITALITY as SCOPE1_HOSPITALITY,
4534
+ hospitality_SCOPE2_HOSPITALITY as SCOPE2_HOSPITALITY,
4535
+ hospitality_SCOPE3_HOSPITALITY as SCOPE3_HOSPITALITY,
4536
+ SF6_USAGE_PRODUCTS$9 as SF6_USAGE_PRODUCTS,
4537
+ hospitality_TD_LOSSES_ELECTRICITY_PRODUCTS as TD_LOSSES_ELECTRICITY_PRODUCTS,
4538
+ hospitality_UPSTREAM_FUEL_EMISSIONS_PRODUCTS as UPSTREAM_FUEL_EMISSIONS_PRODUCTS,
4539
+ hospitality_UPSTREAM_TRANSPORTATION_PRODUCTS as UPSTREAM_TRANSPORTATION_PRODUCTS,
4540
+ hospitality_WASTE_GENERATED_PRODUCTS as WASTE_GENERATED_PRODUCTS,
4541
+ hospitality_WATER_DISCHARGE_PRODUCTS as WATER_DISCHARGE_PRODUCTS,
4542
+ hospitality_WATER_USAGE_PRODUCTS as WATER_USAGE_PRODUCTS,
4543
+ };
4544
+ }
4545
+
4546
+ declare const FUEL_COMBUSTION_PRODUCTS$8: {
4547
+ name: string;
4548
+ unit: string;
4549
+ type: string;
4550
+ calorificValue: number;
4551
+ emissionFactor: number;
4552
+ }[];
4553
+ declare const REFRIGERANT_PRODUCTS$7: {
4554
+ name: string;
4555
+ unit: string;
4556
+ type: string;
4557
+ calorificValue: number;
4558
+ emissionFactor: number;
4559
+ }[];
4560
+ declare const FIRE_EXTINGUISHER_PRODUCTS$8: {
4561
+ name: string;
4562
+ unit: string;
4563
+ type: string;
4564
+ calorificValue: number;
4565
+ emissionFactor: number;
4566
+ }[];
4567
+ declare const LPG_USAGE_PRODUCTS$8: {
4568
+ name: string;
4569
+ unit: string;
4570
+ type: string;
4571
+ calorificValue: number;
4572
+ emissionFactor: number;
4573
+ }[];
4574
+ declare const SF6_USAGE_PRODUCTS$8: {
4575
+ name: string;
4576
+ unit: string;
4577
+ type: string;
4578
+ calorificValue: number;
4579
+ emissionFactor: number;
4580
+ }[];
3268
4581
  declare const SCOPE1_LOGISTICS: {
3269
4582
  name: string;
3270
4583
  icon: react_icons_lib.IconType;
@@ -3279,6 +4592,22 @@ declare const SCOPE1_LOGISTICS: {
3279
4592
  }[];
3280
4593
  desc: string;
3281
4594
  }[];
4595
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$8: {
4596
+ name: string;
4597
+ unit: string;
4598
+ type: string;
4599
+ renewable: boolean;
4600
+ calorificValue: number;
4601
+ emissionFactor: number;
4602
+ }[];
4603
+ declare const RENEWABLE_ENERGY_PRODUCTS$8: {
4604
+ name: string;
4605
+ unit: string;
4606
+ type: string;
4607
+ renewable: boolean;
4608
+ calorificValue: number;
4609
+ emissionFactor: number;
4610
+ }[];
3282
4611
  declare const SCOPE2_LOGISTICS: {
3283
4612
  name: string;
3284
4613
  icon: react_icons_lib.IconType;
@@ -3304,6 +4633,13 @@ type EmissionCategory$8 = {
3304
4633
  items: EmissionItem$a[];
3305
4634
  };
3306
4635
  type Emissions$9 = EmissionCategory$8[];
4636
+ declare const PURCHASED_GOODS_AND_SERVICES$9: Emissions$9;
4637
+ declare const FUEL_ENERGY_RELATED$7: Emissions$9;
4638
+ declare const UPSTREAM_TRANSPORTATION$8: Emissions$9;
4639
+ declare const WASTE_OPERATIONS$7: Emissions$9;
4640
+ declare const EMPLOYEE_COMMUTING$9: Emissions$9;
4641
+ declare const BUSINESS_TRAVEL$9: Emissions$9;
4642
+ declare const WATER_USAGE$7: Emissions$9;
3307
4643
  declare const ALL_SCOPES_3_LOGISTICS: {
3308
4644
  name: string;
3309
4645
  displayName: string;
@@ -3313,7 +4649,84 @@ declare const ALL_SCOPES_3_LOGISTICS: {
3313
4649
  subProducts: Emissions$9;
3314
4650
  desc: string;
3315
4651
  }[];
4652
+ declare const ALLSCOPES_LOGISTICS$5: ({
4653
+ name: string;
4654
+ icon: react_icons_lib.IconType;
4655
+ scope: string;
4656
+ unit: string;
4657
+ subProducts: {
4658
+ name: string;
4659
+ unit: string;
4660
+ type: string;
4661
+ calorificValue: number;
4662
+ emissionFactor: number;
4663
+ }[];
4664
+ desc: string;
4665
+ } | {
4666
+ name: string;
4667
+ displayName: string;
4668
+ icon: react_icons_lib.IconType;
4669
+ scope: string;
4670
+ unit: string;
4671
+ subProducts: Emissions$9;
4672
+ desc: string;
4673
+ })[];
4674
+
4675
+ declare const logistics_ALL_SCOPES_3_LOGISTICS: typeof ALL_SCOPES_3_LOGISTICS;
4676
+ declare const logistics_SCOPE1_LOGISTICS: typeof SCOPE1_LOGISTICS;
4677
+ declare const logistics_SCOPE2_LOGISTICS: typeof SCOPE2_LOGISTICS;
4678
+ declare namespace logistics {
4679
+ export {
4680
+ ALLSCOPES_LOGISTICS$5 as ALLSCOPES_LOGISTICS,
4681
+ logistics_ALL_SCOPES_3_LOGISTICS as ALL_SCOPES_3_LOGISTICS,
4682
+ BUSINESS_TRAVEL$9 as BUSINESS_TRAVEL,
4683
+ EMPLOYEE_COMMUTING$9 as EMPLOYEE_COMMUTING,
4684
+ FIRE_EXTINGUISHER_PRODUCTS$8 as FIRE_EXTINGUISHER_PRODUCTS,
4685
+ FUEL_COMBUSTION_PRODUCTS$8 as FUEL_COMBUSTION_PRODUCTS,
4686
+ FUEL_ENERGY_RELATED$7 as FUEL_ENERGY_RELATED,
4687
+ LPG_USAGE_PRODUCTS$8 as LPG_USAGE_PRODUCTS,
4688
+ PURCHASED_ELECTRICITY_PRODUCTS$8 as PURCHASED_ELECTRICITY_PRODUCTS,
4689
+ PURCHASED_GOODS_AND_SERVICES$9 as PURCHASED_GOODS_AND_SERVICES,
4690
+ REFRIGERANT_PRODUCTS$7 as REFRIGERANT_PRODUCTS,
4691
+ RENEWABLE_ENERGY_PRODUCTS$8 as RENEWABLE_ENERGY_PRODUCTS,
4692
+ logistics_SCOPE1_LOGISTICS as SCOPE1_LOGISTICS,
4693
+ logistics_SCOPE2_LOGISTICS as SCOPE2_LOGISTICS,
4694
+ SF6_USAGE_PRODUCTS$8 as SF6_USAGE_PRODUCTS,
4695
+ UPSTREAM_TRANSPORTATION$8 as UPSTREAM_TRANSPORTATION,
4696
+ WASTE_OPERATIONS$7 as WASTE_OPERATIONS,
4697
+ WATER_USAGE$7 as WATER_USAGE,
4698
+ };
4699
+ }
3316
4700
 
4701
+ declare const ELECTRIC_PRODUCTS$1: {
4702
+ name: string;
4703
+ unit: string;
4704
+ type: string;
4705
+ renewable: boolean;
4706
+ calorificValue: number;
4707
+ emissionFactor: number;
4708
+ }[];
4709
+ declare const WATER_PRODUCTS$1: {
4710
+ name: string;
4711
+ unit: string;
4712
+ type: string;
4713
+ calorificValue: number;
4714
+ emissionFactor: number;
4715
+ }[];
4716
+ declare const WASTE_PRODUCTS$1: {
4717
+ name: string;
4718
+ unit: string;
4719
+ type: string;
4720
+ calorificValue: number;
4721
+ emissionFactor: number;
4722
+ }[];
4723
+ declare const REFRIGERANTS$2: {
4724
+ name: string;
4725
+ unit: string;
4726
+ type: string;
4727
+ calorificValue: number;
4728
+ emissionFactor: number;
4729
+ }[];
3317
4730
  declare const MANUFACTURING_PROCESS_PRODUCTS: {
3318
4731
  name: string;
3319
4732
  unit: string;
@@ -3375,7 +4788,36 @@ type EquipmentCategory = {
3375
4788
  items: EmissionItem$9[];
3376
4789
  };
3377
4790
  type Emissions$8 = EquipmentCategory[];
4791
+ declare const PURCHASED_GOODS_AND_SERVICES$8: {
4792
+ category: string;
4793
+ items: {
4794
+ item: string;
4795
+ emissionFactor: number;
4796
+ unit: string;
4797
+ requiresMassData: boolean;
4798
+ }[];
4799
+ }[];
4800
+ declare const UPSTREAM_TRANSPORTATION_EMISSIONS: Emissions$8;
4801
+ declare const UPSTREAM_EMISSIONS_PURCHASED_FUELS$1: Emissions$8;
4802
+ declare const EMPLOYEE_COMMUTING$8: Emissions$8;
4803
+ declare const BUSINESS_TRAVEL$8: Emissions$8;
3378
4804
  declare const WASTE_FROM_OPERATIONS: Emissions$8;
4805
+ declare const WASTE_DISPOSAL_EMISSIONS$1: {
4806
+ category: string;
4807
+ items: {
4808
+ item: string;
4809
+ emissionFactor: number;
4810
+ unit: string;
4811
+ }[];
4812
+ }[];
4813
+ declare const USE_OF_SOLD_PRODUCTS$1: {
4814
+ category: string;
4815
+ items: {
4816
+ item: string;
4817
+ emissionFactor: number;
4818
+ unit: string;
4819
+ }[];
4820
+ }[];
3379
4821
  declare const ALL_SCOPES_3_MANUFACTURING: ({
3380
4822
  name: string;
3381
4823
  displayName: string;
@@ -3394,6 +4836,77 @@ declare const ALL_SCOPES_3_MANUFACTURING: ({
3394
4836
  displayName?: undefined;
3395
4837
  })[];
3396
4838
 
4839
+ declare const manufacturing_ALLSCOPES_MANUFACTURING: typeof ALLSCOPES_MANUFACTURING;
4840
+ declare const manufacturing_ALL_SCOPES_3_MANUFACTURING: typeof ALL_SCOPES_3_MANUFACTURING;
4841
+ declare const manufacturing_MANUFACTURING_PROCESS_PRODUCTS: typeof MANUFACTURING_PROCESS_PRODUCTS;
4842
+ declare const manufacturing_SCOPE1_MANUFACTURING: typeof SCOPE1_MANUFACTURING;
4843
+ declare const manufacturing_SCOPE2_MANUFACTURING: typeof SCOPE2_MANUFACTURING;
4844
+ declare const manufacturing_UPSTREAM_TRANSPORTATION_EMISSIONS: typeof UPSTREAM_TRANSPORTATION_EMISSIONS;
4845
+ declare const manufacturing_WASTE_FROM_OPERATIONS: typeof WASTE_FROM_OPERATIONS;
4846
+ declare namespace manufacturing {
4847
+ export {
4848
+ manufacturing_ALLSCOPES_MANUFACTURING as ALLSCOPES_MANUFACTURING,
4849
+ manufacturing_ALL_SCOPES_3_MANUFACTURING as ALL_SCOPES_3_MANUFACTURING,
4850
+ BUSINESS_TRAVEL$8 as BUSINESS_TRAVEL,
4851
+ ELECTRIC_PRODUCTS$1 as ELECTRIC_PRODUCTS,
4852
+ EMPLOYEE_COMMUTING$8 as EMPLOYEE_COMMUTING,
4853
+ manufacturing_MANUFACTURING_PROCESS_PRODUCTS as MANUFACTURING_PROCESS_PRODUCTS,
4854
+ PURCHASED_GOODS_AND_SERVICES$8 as PURCHASED_GOODS_AND_SERVICES,
4855
+ REFRIGERANTS$2 as REFRIGERANTS,
4856
+ manufacturing_SCOPE1_MANUFACTURING as SCOPE1_MANUFACTURING,
4857
+ manufacturing_SCOPE2_MANUFACTURING as SCOPE2_MANUFACTURING,
4858
+ UPSTREAM_EMISSIONS_PURCHASED_FUELS$1 as UPSTREAM_EMISSIONS_PURCHASED_FUELS,
4859
+ manufacturing_UPSTREAM_TRANSPORTATION_EMISSIONS as UPSTREAM_TRANSPORTATION_EMISSIONS,
4860
+ USE_OF_SOLD_PRODUCTS$1 as USE_OF_SOLD_PRODUCTS,
4861
+ WASTE_DISPOSAL_EMISSIONS$1 as WASTE_DISPOSAL_EMISSIONS,
4862
+ manufacturing_WASTE_FROM_OPERATIONS as WASTE_FROM_OPERATIONS,
4863
+ WASTE_PRODUCTS$1 as WASTE_PRODUCTS,
4864
+ WATER_PRODUCTS$1 as WATER_PRODUCTS,
4865
+ };
4866
+ }
4867
+
4868
+ declare const FUEL_COMBUSTION_PRODUCTS$7: {
4869
+ name: string;
4870
+ unit: string;
4871
+ type: string;
4872
+ calorificValue: number;
4873
+ emissionFactor: number;
4874
+ }[];
4875
+ declare const REFRIGERANT_PRODUCTS$6: {
4876
+ name: string;
4877
+ unit: string;
4878
+ type: string;
4879
+ calorificValue: number;
4880
+ emissionFactor: number;
4881
+ }[];
4882
+ declare const FIRE_EXTINGUISHER_PRODUCTS$7: {
4883
+ name: string;
4884
+ unit: string;
4885
+ type: string;
4886
+ calorificValue: number;
4887
+ emissionFactor: number;
4888
+ }[];
4889
+ declare const LPG_USAGE_PRODUCTS$7: {
4890
+ name: string;
4891
+ unit: string;
4892
+ type: string;
4893
+ calorificValue: number;
4894
+ emissionFactor: number;
4895
+ }[];
4896
+ declare const SF6_USAGE_PRODUCTS$7: {
4897
+ name: string;
4898
+ unit: string;
4899
+ type: string;
4900
+ calorificValue: number;
4901
+ emissionFactor: number;
4902
+ }[];
4903
+ declare const SOLID_FUEL_PRODUCTS: {
4904
+ name: string;
4905
+ unit: string;
4906
+ type: string;
4907
+ calorificValue: number;
4908
+ emissionFactor: number;
4909
+ }[];
3397
4910
  declare const SCOPE1_METAL: {
3398
4911
  name: string;
3399
4912
  icon: react_icons_lib.IconType;
@@ -3408,6 +4921,22 @@ declare const SCOPE1_METAL: {
3408
4921
  }[];
3409
4922
  desc: string;
3410
4923
  }[];
4924
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$7: {
4925
+ name: string;
4926
+ unit: string;
4927
+ type: string;
4928
+ renewable: boolean;
4929
+ calorificValue: number;
4930
+ emissionFactor: number;
4931
+ }[];
4932
+ declare const RENEWABLE_ENERGY_PRODUCTS$7: {
4933
+ name: string;
4934
+ unit: string;
4935
+ type: string;
4936
+ renewable: boolean;
4937
+ calorificValue: number;
4938
+ emissionFactor: number;
4939
+ }[];
3411
4940
  declare const SCOPE2_METAL: {
3412
4941
  name: string;
3413
4942
  icon: react_icons_lib.IconType;
@@ -3433,6 +4962,13 @@ type EmissionCategory$7 = {
3433
4962
  items: EmissionItem$8[];
3434
4963
  };
3435
4964
  type Emissions$7 = EmissionCategory$7[];
4965
+ declare const PURCHASED_GOODS_AND_SERVICES$7: Emissions$7;
4966
+ declare const FUEL_ENERGY_RELATED$6: Emissions$7;
4967
+ declare const UPSTREAM_TRANSPORTATION$7: Emissions$7;
4968
+ declare const WASTE_OPERATIONS$6: Emissions$7;
4969
+ declare const EMPLOYEE_COMMUTING$7: Emissions$7;
4970
+ declare const BUSINESS_TRAVEL$7: Emissions$7;
4971
+ declare const WATER_USAGE$6: Emissions$7;
3436
4972
  declare const ALL_SCOPES_3_METAL: {
3437
4973
  name: string;
3438
4974
  displayName: string;
@@ -3442,8 +4978,7 @@ declare const ALL_SCOPES_3_METAL: {
3442
4978
  subProducts: Emissions$7;
3443
4979
  desc: string;
3444
4980
  }[];
3445
-
3446
- declare const SCOPE1_PETRO_CHEMICAL: {
4981
+ declare const ALLSCOPES_LOGISTICS$4: ({
3447
4982
  name: string;
3448
4983
  icon: react_icons_lib.IconType;
3449
4984
  scope: string;
@@ -3456,24 +4991,126 @@ declare const SCOPE1_PETRO_CHEMICAL: {
3456
4991
  emissionFactor: number;
3457
4992
  }[];
3458
4993
  desc: string;
3459
- }[];
3460
- declare const SCOPE2_PETRO_CHEMICAL: {
4994
+ } | {
3461
4995
  name: string;
4996
+ displayName: string;
3462
4997
  icon: react_icons_lib.IconType;
3463
4998
  scope: string;
3464
4999
  unit: string;
3465
- subProducts: {
3466
- name: string;
3467
- unit: string;
3468
- type: string;
3469
- renewable: boolean;
3470
- calorificValue: number;
3471
- emissionFactor: number;
3472
- }[];
5000
+ subProducts: Emissions$7;
3473
5001
  desc: string;
5002
+ })[];
5003
+
5004
+ declare const metal_ALL_SCOPES_3_METAL: typeof ALL_SCOPES_3_METAL;
5005
+ declare const metal_SCOPE1_METAL: typeof SCOPE1_METAL;
5006
+ declare const metal_SCOPE2_METAL: typeof SCOPE2_METAL;
5007
+ declare const metal_SOLID_FUEL_PRODUCTS: typeof SOLID_FUEL_PRODUCTS;
5008
+ declare namespace metal {
5009
+ export {
5010
+ ALLSCOPES_LOGISTICS$4 as ALLSCOPES_LOGISTICS,
5011
+ metal_ALL_SCOPES_3_METAL as ALL_SCOPES_3_METAL,
5012
+ BUSINESS_TRAVEL$7 as BUSINESS_TRAVEL,
5013
+ EMPLOYEE_COMMUTING$7 as EMPLOYEE_COMMUTING,
5014
+ FIRE_EXTINGUISHER_PRODUCTS$7 as FIRE_EXTINGUISHER_PRODUCTS,
5015
+ FUEL_COMBUSTION_PRODUCTS$7 as FUEL_COMBUSTION_PRODUCTS,
5016
+ FUEL_ENERGY_RELATED$6 as FUEL_ENERGY_RELATED,
5017
+ LPG_USAGE_PRODUCTS$7 as LPG_USAGE_PRODUCTS,
5018
+ PURCHASED_ELECTRICITY_PRODUCTS$7 as PURCHASED_ELECTRICITY_PRODUCTS,
5019
+ PURCHASED_GOODS_AND_SERVICES$7 as PURCHASED_GOODS_AND_SERVICES,
5020
+ REFRIGERANT_PRODUCTS$6 as REFRIGERANT_PRODUCTS,
5021
+ RENEWABLE_ENERGY_PRODUCTS$7 as RENEWABLE_ENERGY_PRODUCTS,
5022
+ metal_SCOPE1_METAL as SCOPE1_METAL,
5023
+ metal_SCOPE2_METAL as SCOPE2_METAL,
5024
+ SF6_USAGE_PRODUCTS$7 as SF6_USAGE_PRODUCTS,
5025
+ metal_SOLID_FUEL_PRODUCTS as SOLID_FUEL_PRODUCTS,
5026
+ UPSTREAM_TRANSPORTATION$7 as UPSTREAM_TRANSPORTATION,
5027
+ WASTE_OPERATIONS$6 as WASTE_OPERATIONS,
5028
+ WATER_USAGE$6 as WATER_USAGE,
5029
+ };
5030
+ }
5031
+
5032
+ declare const FUEL_COMBUSTION_PRODUCTS$6: {
5033
+ name: string;
5034
+ unit: string;
5035
+ type: string;
5036
+ calorificValue: number;
5037
+ emissionFactor: number;
3474
5038
  }[];
3475
- type EmissionItem$7 = {
3476
- item: string;
5039
+ declare const REFRIGERANT_PRODUCTS$5: {
5040
+ name: string;
5041
+ unit: string;
5042
+ type: string;
5043
+ calorificValue: number;
5044
+ emissionFactor: number;
5045
+ }[];
5046
+ declare const FIRE_EXTINGUISHER_PRODUCTS$6: {
5047
+ name: string;
5048
+ unit: string;
5049
+ type: string;
5050
+ calorificValue: number;
5051
+ emissionFactor: number;
5052
+ }[];
5053
+ declare const LPG_USAGE_PRODUCTS$6: {
5054
+ name: string;
5055
+ unit: string;
5056
+ type: string;
5057
+ calorificValue: number;
5058
+ emissionFactor: number;
5059
+ }[];
5060
+ declare const SF6_USAGE_PRODUCTS$6: {
5061
+ name: string;
5062
+ unit: string;
5063
+ type: string;
5064
+ calorificValue: number;
5065
+ emissionFactor: number;
5066
+ }[];
5067
+ declare const SCOPE1_PETRO_CHEMICAL: {
5068
+ name: string;
5069
+ icon: react_icons_lib.IconType;
5070
+ scope: string;
5071
+ unit: string;
5072
+ subProducts: {
5073
+ name: string;
5074
+ unit: string;
5075
+ type: string;
5076
+ calorificValue: number;
5077
+ emissionFactor: number;
5078
+ }[];
5079
+ desc: string;
5080
+ }[];
5081
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$6: {
5082
+ name: string;
5083
+ unit: string;
5084
+ type: string;
5085
+ renewable: boolean;
5086
+ calorificValue: number;
5087
+ emissionFactor: number;
5088
+ }[];
5089
+ declare const RENEWABLE_ENERGY_PRODUCTS$6: {
5090
+ name: string;
5091
+ unit: string;
5092
+ type: string;
5093
+ renewable: boolean;
5094
+ calorificValue: number;
5095
+ emissionFactor: number;
5096
+ }[];
5097
+ declare const SCOPE2_PETRO_CHEMICAL: {
5098
+ name: string;
5099
+ icon: react_icons_lib.IconType;
5100
+ scope: string;
5101
+ unit: string;
5102
+ subProducts: {
5103
+ name: string;
5104
+ unit: string;
5105
+ type: string;
5106
+ renewable: boolean;
5107
+ calorificValue: number;
5108
+ emissionFactor: number;
5109
+ }[];
5110
+ desc: string;
5111
+ }[];
5112
+ type EmissionItem$7 = {
5113
+ item: string;
3477
5114
  emissionFactor: number;
3478
5115
  unit: string;
3479
5116
  };
@@ -3482,6 +5119,13 @@ type EmissionCategory$6 = {
3482
5119
  items: EmissionItem$7[];
3483
5120
  };
3484
5121
  type Emissions$6 = EmissionCategory$6[];
5122
+ declare const PURCHASED_GOODS_AND_SERVICES$6: Emissions$6;
5123
+ declare const FUEL_ENERGY_RELATED$5: Emissions$6;
5124
+ declare const UPSTREAM_TRANSPORTATION$6: Emissions$6;
5125
+ declare const WASTE_OPERATIONS$5: Emissions$6;
5126
+ declare const EMPLOYEE_COMMUTING$6: Emissions$6;
5127
+ declare const BUSINESS_TRAVEL$6: Emissions$6;
5128
+ declare const WATER_USAGE$5: Emissions$6;
3485
5129
  declare const ALL_SCOPES_3_PETRO_CHEMICAL: {
3486
5130
  name: string;
3487
5131
  displayName: string;
@@ -3491,6 +5135,54 @@ declare const ALL_SCOPES_3_PETRO_CHEMICAL: {
3491
5135
  subProducts: Emissions$6;
3492
5136
  desc: string;
3493
5137
  }[];
5138
+ declare const ALLSCOPES_LOGISTICS$3: ({
5139
+ name: string;
5140
+ icon: react_icons_lib.IconType;
5141
+ scope: string;
5142
+ unit: string;
5143
+ subProducts: {
5144
+ name: string;
5145
+ unit: string;
5146
+ type: string;
5147
+ calorificValue: number;
5148
+ emissionFactor: number;
5149
+ }[];
5150
+ desc: string;
5151
+ } | {
5152
+ name: string;
5153
+ displayName: string;
5154
+ icon: react_icons_lib.IconType;
5155
+ scope: string;
5156
+ unit: string;
5157
+ subProducts: Emissions$6;
5158
+ desc: string;
5159
+ })[];
5160
+
5161
+ declare const petro_ALL_SCOPES_3_PETRO_CHEMICAL: typeof ALL_SCOPES_3_PETRO_CHEMICAL;
5162
+ declare const petro_SCOPE1_PETRO_CHEMICAL: typeof SCOPE1_PETRO_CHEMICAL;
5163
+ declare const petro_SCOPE2_PETRO_CHEMICAL: typeof SCOPE2_PETRO_CHEMICAL;
5164
+ declare namespace petro {
5165
+ export {
5166
+ ALLSCOPES_LOGISTICS$3 as ALLSCOPES_LOGISTICS,
5167
+ petro_ALL_SCOPES_3_PETRO_CHEMICAL as ALL_SCOPES_3_PETRO_CHEMICAL,
5168
+ BUSINESS_TRAVEL$6 as BUSINESS_TRAVEL,
5169
+ EMPLOYEE_COMMUTING$6 as EMPLOYEE_COMMUTING,
5170
+ FIRE_EXTINGUISHER_PRODUCTS$6 as FIRE_EXTINGUISHER_PRODUCTS,
5171
+ FUEL_COMBUSTION_PRODUCTS$6 as FUEL_COMBUSTION_PRODUCTS,
5172
+ FUEL_ENERGY_RELATED$5 as FUEL_ENERGY_RELATED,
5173
+ LPG_USAGE_PRODUCTS$6 as LPG_USAGE_PRODUCTS,
5174
+ PURCHASED_ELECTRICITY_PRODUCTS$6 as PURCHASED_ELECTRICITY_PRODUCTS,
5175
+ PURCHASED_GOODS_AND_SERVICES$6 as PURCHASED_GOODS_AND_SERVICES,
5176
+ REFRIGERANT_PRODUCTS$5 as REFRIGERANT_PRODUCTS,
5177
+ RENEWABLE_ENERGY_PRODUCTS$6 as RENEWABLE_ENERGY_PRODUCTS,
5178
+ petro_SCOPE1_PETRO_CHEMICAL as SCOPE1_PETRO_CHEMICAL,
5179
+ petro_SCOPE2_PETRO_CHEMICAL as SCOPE2_PETRO_CHEMICAL,
5180
+ SF6_USAGE_PRODUCTS$6 as SF6_USAGE_PRODUCTS,
5181
+ UPSTREAM_TRANSPORTATION$6 as UPSTREAM_TRANSPORTATION,
5182
+ WASTE_OPERATIONS$5 as WASTE_OPERATIONS,
5183
+ WATER_USAGE$5 as WATER_USAGE,
5184
+ };
5185
+ }
3494
5186
 
3495
5187
  declare const CLINKER_PRODUCTION: {
3496
5188
  name: string;
@@ -3499,6 +5191,13 @@ declare const CLINKER_PRODUCTION: {
3499
5191
  calorificValue: number;
3500
5192
  emissionFactor: number;
3501
5193
  }[];
5194
+ declare const FUEL_COMBUSTION_PRODUCTS$5: {
5195
+ name: string;
5196
+ unit: string;
5197
+ type: string;
5198
+ calorificValue: number;
5199
+ emissionFactor: number;
5200
+ }[];
3502
5201
  declare const MINING_OPERATIONS: {
3503
5202
  name: string;
3504
5203
  unit: string;
@@ -3513,6 +5212,50 @@ declare const ONSITE_POWER_GENERATION: {
3513
5212
  calorificValue: number;
3514
5213
  emissionFactor: number;
3515
5214
  }[];
5215
+ declare const REFRIGERANTS$1: {
5216
+ name: string;
5217
+ unit: string;
5218
+ type: string;
5219
+ calorificValue: number;
5220
+ emissionFactor: number;
5221
+ }[];
5222
+ declare const FIRE_EXTINGUISHER_PRODUCTS$5: {
5223
+ name: string;
5224
+ unit: string;
5225
+ type: string;
5226
+ calorificValue: number;
5227
+ emissionFactor: number;
5228
+ }[];
5229
+ declare const LPG_USAGE_PRODUCTS$5: {
5230
+ name: string;
5231
+ unit: string;
5232
+ type: string;
5233
+ calorificValue: number;
5234
+ emissionFactor: number;
5235
+ }[];
5236
+ declare const SF6_USAGE_PRODUCTS$5: {
5237
+ name: string;
5238
+ unit: string;
5239
+ type: string;
5240
+ calorificValue: number;
5241
+ emissionFactor: number;
5242
+ }[];
5243
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$5: {
5244
+ name: string;
5245
+ unit: string;
5246
+ type: string;
5247
+ renewable: boolean;
5248
+ calorificValue: number;
5249
+ emissionFactor: number;
5250
+ }[];
5251
+ declare const RENEWABLE_ENERGY_PRODUCTS$5: {
5252
+ name: string;
5253
+ unit: string;
5254
+ type: string;
5255
+ renewable: boolean;
5256
+ calorificValue: number;
5257
+ emissionFactor: number;
5258
+ }[];
3516
5259
  declare const SCOPE1_PHARMA: {
3517
5260
  name: string;
3518
5261
  icon: react_icons_lib.IconType;
@@ -3551,6 +5294,13 @@ type EmissionCategory$5 = {
3551
5294
  items: EmissionItem$6[];
3552
5295
  };
3553
5296
  type Emissions$5 = EmissionCategory$5[];
5297
+ declare const PURCHASED_GOODS_AND_SERVICES$5: Emissions$5;
5298
+ declare const FUEL_ENERGY_RELATED$4: Emissions$5;
5299
+ declare const UPSTREAM_TRANSPORTATION$5: Emissions$5;
5300
+ declare const WASTE_OPERATIONS$4: Emissions$5;
5301
+ declare const EMPLOYEE_COMMUTING$5: Emissions$5;
5302
+ declare const BUSINESS_TRAVEL$5: Emissions$5;
5303
+ declare const WATER_USAGE$4: Emissions$5;
3554
5304
  declare const ALL_SCOPES_3_PHARMA: {
3555
5305
  name: string;
3556
5306
  displayName: string;
@@ -3582,6 +5332,39 @@ declare const ALLSCOPES_PHARMA: ({
3582
5332
  desc: string;
3583
5333
  })[];
3584
5334
 
5335
+ declare const pharma_ALLSCOPES_PHARMA: typeof ALLSCOPES_PHARMA;
5336
+ declare const pharma_ALL_SCOPES_3_PHARMA: typeof ALL_SCOPES_3_PHARMA;
5337
+ declare const pharma_CLINKER_PRODUCTION: typeof CLINKER_PRODUCTION;
5338
+ declare const pharma_MINING_OPERATIONS: typeof MINING_OPERATIONS;
5339
+ declare const pharma_ONSITE_POWER_GENERATION: typeof ONSITE_POWER_GENERATION;
5340
+ declare const pharma_SCOPE1_PHARMA: typeof SCOPE1_PHARMA;
5341
+ declare const pharma_SCOPE2_PHARMA: typeof SCOPE2_PHARMA;
5342
+ declare namespace pharma {
5343
+ export {
5344
+ pharma_ALLSCOPES_PHARMA as ALLSCOPES_PHARMA,
5345
+ pharma_ALL_SCOPES_3_PHARMA as ALL_SCOPES_3_PHARMA,
5346
+ BUSINESS_TRAVEL$5 as BUSINESS_TRAVEL,
5347
+ pharma_CLINKER_PRODUCTION as CLINKER_PRODUCTION,
5348
+ EMPLOYEE_COMMUTING$5 as EMPLOYEE_COMMUTING,
5349
+ FIRE_EXTINGUISHER_PRODUCTS$5 as FIRE_EXTINGUISHER_PRODUCTS,
5350
+ FUEL_COMBUSTION_PRODUCTS$5 as FUEL_COMBUSTION_PRODUCTS,
5351
+ FUEL_ENERGY_RELATED$4 as FUEL_ENERGY_RELATED,
5352
+ LPG_USAGE_PRODUCTS$5 as LPG_USAGE_PRODUCTS,
5353
+ pharma_MINING_OPERATIONS as MINING_OPERATIONS,
5354
+ pharma_ONSITE_POWER_GENERATION as ONSITE_POWER_GENERATION,
5355
+ PURCHASED_ELECTRICITY_PRODUCTS$5 as PURCHASED_ELECTRICITY_PRODUCTS,
5356
+ PURCHASED_GOODS_AND_SERVICES$5 as PURCHASED_GOODS_AND_SERVICES,
5357
+ REFRIGERANTS$1 as REFRIGERANTS,
5358
+ RENEWABLE_ENERGY_PRODUCTS$5 as RENEWABLE_ENERGY_PRODUCTS,
5359
+ pharma_SCOPE1_PHARMA as SCOPE1_PHARMA,
5360
+ pharma_SCOPE2_PHARMA as SCOPE2_PHARMA,
5361
+ SF6_USAGE_PRODUCTS$5 as SF6_USAGE_PRODUCTS,
5362
+ UPSTREAM_TRANSPORTATION$5 as UPSTREAM_TRANSPORTATION,
5363
+ WASTE_OPERATIONS$4 as WASTE_OPERATIONS,
5364
+ WATER_USAGE$4 as WATER_USAGE,
5365
+ };
5366
+ }
5367
+
3585
5368
  declare const FUEL_COMBUSTION_PRODUCTS_POLYMER: {
3586
5369
  name: string;
3587
5370
  unit: string;
@@ -3695,6 +5478,78 @@ declare const ALLSCOPES_POLYMER: ({
3695
5478
  desc: string;
3696
5479
  })[];
3697
5480
 
5481
+ declare const polymer_ALLSCOPES_POLYMER: typeof ALLSCOPES_POLYMER;
5482
+ declare const polymer_ALL_SCOPES_3_POLYMER: typeof ALL_SCOPES_3_POLYMER;
5483
+ declare const polymer_BUSINESS_TRAVEL_POLYMER: typeof BUSINESS_TRAVEL_POLYMER;
5484
+ declare const polymer_EMPLOYEE_COMMUTING_POLYMER: typeof EMPLOYEE_COMMUTING_POLYMER;
5485
+ declare const polymer_FIRE_EXTINGUISHER_PRODUCTS_POLYMER: typeof FIRE_EXTINGUISHER_PRODUCTS_POLYMER;
5486
+ declare const polymer_FUEL_COMBUSTION_PRODUCTS_POLYMER: typeof FUEL_COMBUSTION_PRODUCTS_POLYMER;
5487
+ declare const polymer_FUEL_ENERGY_RELATED_POLYMER: typeof FUEL_ENERGY_RELATED_POLYMER;
5488
+ declare const polymer_LPG_USAGE_PRODUCTS_POLYMER: typeof LPG_USAGE_PRODUCTS_POLYMER;
5489
+ declare const polymer_PURCHASED_GOODS_AND_SERVICES_POLYMER: typeof PURCHASED_GOODS_AND_SERVICES_POLYMER;
5490
+ declare const polymer_REFRIGERANT_PRODUCTS_POLYMER: typeof REFRIGERANT_PRODUCTS_POLYMER;
5491
+ declare const polymer_SCOPE1_POLYMER: typeof SCOPE1_POLYMER;
5492
+ declare const polymer_SCOPE2_POLYMER: typeof SCOPE2_POLYMER;
5493
+ declare const polymer_SF6_USAGE_PRODUCTS_POLYMER: typeof SF6_USAGE_PRODUCTS_POLYMER;
5494
+ declare const polymer_UPSTREAM_TRANSPORTATION_POLYMER: typeof UPSTREAM_TRANSPORTATION_POLYMER;
5495
+ declare const polymer_WASTE_OPERATIONS_POLYMER: typeof WASTE_OPERATIONS_POLYMER;
5496
+ declare const polymer_WATER_USAGE_POLYMER: typeof WATER_USAGE_POLYMER;
5497
+ declare namespace polymer {
5498
+ export {
5499
+ polymer_ALLSCOPES_POLYMER as ALLSCOPES_POLYMER,
5500
+ polymer_ALL_SCOPES_3_POLYMER as ALL_SCOPES_3_POLYMER,
5501
+ polymer_BUSINESS_TRAVEL_POLYMER as BUSINESS_TRAVEL_POLYMER,
5502
+ polymer_EMPLOYEE_COMMUTING_POLYMER as EMPLOYEE_COMMUTING_POLYMER,
5503
+ polymer_FIRE_EXTINGUISHER_PRODUCTS_POLYMER as FIRE_EXTINGUISHER_PRODUCTS_POLYMER,
5504
+ polymer_FUEL_COMBUSTION_PRODUCTS_POLYMER as FUEL_COMBUSTION_PRODUCTS_POLYMER,
5505
+ polymer_FUEL_ENERGY_RELATED_POLYMER as FUEL_ENERGY_RELATED_POLYMER,
5506
+ polymer_LPG_USAGE_PRODUCTS_POLYMER as LPG_USAGE_PRODUCTS_POLYMER,
5507
+ polymer_PURCHASED_GOODS_AND_SERVICES_POLYMER as PURCHASED_GOODS_AND_SERVICES_POLYMER,
5508
+ polymer_REFRIGERANT_PRODUCTS_POLYMER as REFRIGERANT_PRODUCTS_POLYMER,
5509
+ polymer_SCOPE1_POLYMER as SCOPE1_POLYMER,
5510
+ polymer_SCOPE2_POLYMER as SCOPE2_POLYMER,
5511
+ polymer_SF6_USAGE_PRODUCTS_POLYMER as SF6_USAGE_PRODUCTS_POLYMER,
5512
+ polymer_UPSTREAM_TRANSPORTATION_POLYMER as UPSTREAM_TRANSPORTATION_POLYMER,
5513
+ polymer_WASTE_OPERATIONS_POLYMER as WASTE_OPERATIONS_POLYMER,
5514
+ polymer_WATER_USAGE_POLYMER as WATER_USAGE_POLYMER,
5515
+ };
5516
+ }
5517
+
5518
+ declare const FUEL_COMBUSTION_PRODUCTS$4: {
5519
+ name: string;
5520
+ unit: string;
5521
+ type: string;
5522
+ calorificValue: number;
5523
+ emissionFactor: number;
5524
+ }[];
5525
+ declare const REFRIGERANT_PRODUCTS$4: {
5526
+ name: string;
5527
+ unit: string;
5528
+ type: string;
5529
+ calorificValue: number;
5530
+ emissionFactor: number;
5531
+ }[];
5532
+ declare const FIRE_EXTINGUISHER_PRODUCTS$4: {
5533
+ name: string;
5534
+ unit: string;
5535
+ type: string;
5536
+ calorificValue: number;
5537
+ emissionFactor: number;
5538
+ }[];
5539
+ declare const LPG_USAGE_PRODUCTS$4: {
5540
+ name: string;
5541
+ unit: string;
5542
+ type: string;
5543
+ calorificValue: number;
5544
+ emissionFactor: number;
5545
+ }[];
5546
+ declare const SF6_USAGE_PRODUCTS$4: {
5547
+ name: string;
5548
+ unit: string;
5549
+ type: string;
5550
+ calorificValue: number;
5551
+ emissionFactor: number;
5552
+ }[];
3698
5553
  declare const SCOPE1_REAL_ESTATE: {
3699
5554
  name: string;
3700
5555
  icon: react_icons_lib.IconType;
@@ -3709,6 +5564,22 @@ declare const SCOPE1_REAL_ESTATE: {
3709
5564
  }[];
3710
5565
  desc: string;
3711
5566
  }[];
5567
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$4: {
5568
+ name: string;
5569
+ unit: string;
5570
+ type: string;
5571
+ renewable: boolean;
5572
+ calorificValue: number;
5573
+ emissionFactor: number;
5574
+ }[];
5575
+ declare const RENEWABLE_ENERGY_PRODUCTS$4: {
5576
+ name: string;
5577
+ unit: string;
5578
+ type: string;
5579
+ renewable: boolean;
5580
+ calorificValue: number;
5581
+ emissionFactor: number;
5582
+ }[];
3712
5583
  declare const SCOPE2_REAL_ESTATE: {
3713
5584
  name: string;
3714
5585
  icon: react_icons_lib.IconType;
@@ -3734,6 +5605,13 @@ type EmissionCategory$3 = {
3734
5605
  items: EmissionItem$4[];
3735
5606
  };
3736
5607
  type Emissions$3 = EmissionCategory$3[];
5608
+ declare const PURCHASED_GOODS_AND_SERVICES$4: Emissions$3;
5609
+ declare const FUEL_ENERGY_RELATED$3: Emissions$3;
5610
+ declare const UPSTREAM_TRANSPORTATION$4: Emissions$3;
5611
+ declare const WASTE_OPERATIONS$3: Emissions$3;
5612
+ declare const EMPLOYEE_COMMUTING$4: Emissions$3;
5613
+ declare const BUSINESS_TRAVEL$4: Emissions$3;
5614
+ declare const WATER_USAGE$3: Emissions$3;
3737
5615
  declare const ALL_SCOPES_3_REAL_ESTATE: {
3738
5616
  name: string;
3739
5617
  displayName: string;
@@ -3766,6 +5644,68 @@ declare const ALLSCOPES_REAL_ESTATE: ({
3766
5644
  desc: string;
3767
5645
  })[];
3768
5646
 
5647
+ declare const realestate_ALLSCOPES_REAL_ESTATE: typeof ALLSCOPES_REAL_ESTATE;
5648
+ declare const realestate_ALL_SCOPES_3_REAL_ESTATE: typeof ALL_SCOPES_3_REAL_ESTATE;
5649
+ declare const realestate_SCOPE1_REAL_ESTATE: typeof SCOPE1_REAL_ESTATE;
5650
+ declare const realestate_SCOPE2_REAL_ESTATE: typeof SCOPE2_REAL_ESTATE;
5651
+ declare namespace realestate {
5652
+ export {
5653
+ realestate_ALLSCOPES_REAL_ESTATE as ALLSCOPES_REAL_ESTATE,
5654
+ realestate_ALL_SCOPES_3_REAL_ESTATE as ALL_SCOPES_3_REAL_ESTATE,
5655
+ BUSINESS_TRAVEL$4 as BUSINESS_TRAVEL,
5656
+ EMPLOYEE_COMMUTING$4 as EMPLOYEE_COMMUTING,
5657
+ FIRE_EXTINGUISHER_PRODUCTS$4 as FIRE_EXTINGUISHER_PRODUCTS,
5658
+ FUEL_COMBUSTION_PRODUCTS$4 as FUEL_COMBUSTION_PRODUCTS,
5659
+ FUEL_ENERGY_RELATED$3 as FUEL_ENERGY_RELATED,
5660
+ LPG_USAGE_PRODUCTS$4 as LPG_USAGE_PRODUCTS,
5661
+ PURCHASED_ELECTRICITY_PRODUCTS$4 as PURCHASED_ELECTRICITY_PRODUCTS,
5662
+ PURCHASED_GOODS_AND_SERVICES$4 as PURCHASED_GOODS_AND_SERVICES,
5663
+ REFRIGERANT_PRODUCTS$4 as REFRIGERANT_PRODUCTS,
5664
+ RENEWABLE_ENERGY_PRODUCTS$4 as RENEWABLE_ENERGY_PRODUCTS,
5665
+ realestate_SCOPE1_REAL_ESTATE as SCOPE1_REAL_ESTATE,
5666
+ realestate_SCOPE2_REAL_ESTATE as SCOPE2_REAL_ESTATE,
5667
+ SF6_USAGE_PRODUCTS$4 as SF6_USAGE_PRODUCTS,
5668
+ UPSTREAM_TRANSPORTATION$4 as UPSTREAM_TRANSPORTATION,
5669
+ WASTE_OPERATIONS$3 as WASTE_OPERATIONS,
5670
+ WATER_USAGE$3 as WATER_USAGE,
5671
+ };
5672
+ }
5673
+
5674
+ declare const FUEL_COMBUSTION_PRODUCTS$3: {
5675
+ name: string;
5676
+ unit: string;
5677
+ type: string;
5678
+ calorificValue: number;
5679
+ emissionFactor: number;
5680
+ }[];
5681
+ declare const REFRIGERANT_PRODUCTS$3: {
5682
+ name: string;
5683
+ unit: string;
5684
+ type: string;
5685
+ calorificValue: number;
5686
+ emissionFactor: number;
5687
+ }[];
5688
+ declare const FIRE_EXTINGUISHER_PRODUCTS$3: {
5689
+ name: string;
5690
+ unit: string;
5691
+ type: string;
5692
+ calorificValue: number;
5693
+ emissionFactor: number;
5694
+ }[];
5695
+ declare const LPG_USAGE_PRODUCTS$3: {
5696
+ name: string;
5697
+ unit: string;
5698
+ type: string;
5699
+ calorificValue: number;
5700
+ emissionFactor: number;
5701
+ }[];
5702
+ declare const SF6_USAGE_PRODUCTS$3: {
5703
+ name: string;
5704
+ unit: string;
5705
+ type: string;
5706
+ calorificValue: number;
5707
+ emissionFactor: number;
5708
+ }[];
3769
5709
  declare const SCOPE1_SHIPPING: {
3770
5710
  name: string;
3771
5711
  icon: react_icons_lib.IconType;
@@ -3780,6 +5720,22 @@ declare const SCOPE1_SHIPPING: {
3780
5720
  }[];
3781
5721
  desc: string;
3782
5722
  }[];
5723
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$3: {
5724
+ name: string;
5725
+ unit: string;
5726
+ type: string;
5727
+ renewable: boolean;
5728
+ calorificValue: number;
5729
+ emissionFactor: number;
5730
+ }[];
5731
+ declare const RENEWABLE_ENERGY_PRODUCTS$3: {
5732
+ name: string;
5733
+ unit: string;
5734
+ type: string;
5735
+ renewable: boolean;
5736
+ calorificValue: number;
5737
+ emissionFactor: number;
5738
+ }[];
3783
5739
  declare const SCOPE2_SHIPPING: {
3784
5740
  name: string;
3785
5741
  icon: react_icons_lib.IconType;
@@ -3806,6 +5762,13 @@ type EmissionCategory$2 = {
3806
5762
  items: EmissionItem$3[];
3807
5763
  };
3808
5764
  type Emissions$2 = EmissionCategory$2[];
5765
+ declare const PURCHASED_GOODS_AND_SERVICES$3: Emissions$2;
5766
+ declare const FUEL_ENERGY_RELATED$2: Emissions$2;
5767
+ declare const UPSTREAM_TRANSPORTATION$3: Emissions$2;
5768
+ declare const WASTE_OPERATIONS$2: Emissions$2;
5769
+ declare const EMPLOYEE_COMMUTING$3: Emissions$2;
5770
+ declare const BUSINESS_TRAVEL$3: Emissions$2;
5771
+ declare const WATER_USAGE$2: Emissions$2;
3809
5772
  declare const ALL_SCOPES_3_SHIPPING: {
3810
5773
  name: string;
3811
5774
  displayName: string;
@@ -3815,8 +5778,7 @@ declare const ALL_SCOPES_3_SHIPPING: {
3815
5778
  subProducts: Emissions$2;
3816
5779
  desc: string;
3817
5780
  }[];
3818
-
3819
- declare const SCOPE1_STEEL: {
5781
+ declare const ALLSCOPES_LOGISTICS$2: ({
3820
5782
  name: string;
3821
5783
  icon: react_icons_lib.IconType;
3822
5784
  scope: string;
@@ -3829,36 +5791,175 @@ declare const SCOPE1_STEEL: {
3829
5791
  emissionFactor: number;
3830
5792
  }[];
3831
5793
  desc: string;
3832
- }[];
3833
- declare const SCOPE2_STEEL: {
5794
+ } | {
3834
5795
  name: string;
5796
+ displayName: string;
3835
5797
  icon: react_icons_lib.IconType;
3836
5798
  scope: string;
3837
5799
  unit: string;
3838
- subProducts: {
3839
- name: string;
3840
- unit: string;
3841
- type: string;
3842
- renewable: boolean;
3843
- calorificValue: number;
3844
- emissionFactor: number;
3845
- }[];
5800
+ subProducts: Emissions$2;
3846
5801
  desc: string;
3847
- }[];
3848
- declare const ALLSCOPES_STEEL: {
5802
+ })[];
5803
+
5804
+ declare const shipping_ALL_SCOPES_3_SHIPPING: typeof ALL_SCOPES_3_SHIPPING;
5805
+ declare const shipping_SCOPE1_SHIPPING: typeof SCOPE1_SHIPPING;
5806
+ declare const shipping_SCOPE2_SHIPPING: typeof SCOPE2_SHIPPING;
5807
+ declare namespace shipping {
5808
+ export {
5809
+ ALLSCOPES_LOGISTICS$2 as ALLSCOPES_LOGISTICS,
5810
+ shipping_ALL_SCOPES_3_SHIPPING as ALL_SCOPES_3_SHIPPING,
5811
+ BUSINESS_TRAVEL$3 as BUSINESS_TRAVEL,
5812
+ EMPLOYEE_COMMUTING$3 as EMPLOYEE_COMMUTING,
5813
+ FIRE_EXTINGUISHER_PRODUCTS$3 as FIRE_EXTINGUISHER_PRODUCTS,
5814
+ FUEL_COMBUSTION_PRODUCTS$3 as FUEL_COMBUSTION_PRODUCTS,
5815
+ FUEL_ENERGY_RELATED$2 as FUEL_ENERGY_RELATED,
5816
+ LPG_USAGE_PRODUCTS$3 as LPG_USAGE_PRODUCTS,
5817
+ PURCHASED_ELECTRICITY_PRODUCTS$3 as PURCHASED_ELECTRICITY_PRODUCTS,
5818
+ PURCHASED_GOODS_AND_SERVICES$3 as PURCHASED_GOODS_AND_SERVICES,
5819
+ REFRIGERANT_PRODUCTS$3 as REFRIGERANT_PRODUCTS,
5820
+ RENEWABLE_ENERGY_PRODUCTS$3 as RENEWABLE_ENERGY_PRODUCTS,
5821
+ shipping_SCOPE1_SHIPPING as SCOPE1_SHIPPING,
5822
+ shipping_SCOPE2_SHIPPING as SCOPE2_SHIPPING,
5823
+ SF6_USAGE_PRODUCTS$3 as SF6_USAGE_PRODUCTS,
5824
+ UPSTREAM_TRANSPORTATION$3 as UPSTREAM_TRANSPORTATION,
5825
+ WASTE_OPERATIONS$2 as WASTE_OPERATIONS,
5826
+ WATER_USAGE$2 as WATER_USAGE,
5827
+ };
5828
+ }
5829
+
5830
+ declare const ELECTRIC_PRODUCTS: {
3849
5831
  name: string;
3850
- icon: react_icons_lib.IconType;
5832
+ unit: string;
5833
+ type: string;
5834
+ renewable: boolean;
5835
+ calorificValue: number;
5836
+ emissionFactor: number;
5837
+ }[];
5838
+ declare const WATER_PRODUCTS: {
5839
+ name: string;
5840
+ unit: string;
5841
+ type: string;
5842
+ calorificValue: number;
5843
+ emissionFactor: number;
5844
+ }[];
5845
+ declare const WASTE_PRODUCTS: {
5846
+ name: string;
5847
+ unit: string;
5848
+ type: string;
5849
+ calorificValue: number;
5850
+ emissionFactor: number;
5851
+ }[];
5852
+ declare const REFRIGERANTS: {
5853
+ name: string;
5854
+ unit: string;
5855
+ type: string;
5856
+ calorificValue: number;
5857
+ emissionFactor: number;
5858
+ }[];
5859
+ declare const SCOPE1_STEEL: {
5860
+ name: string;
5861
+ icon: react_icons_lib.IconType;
5862
+ scope: string;
5863
+ unit: string;
5864
+ subProducts: {
5865
+ name: string;
5866
+ unit: string;
5867
+ type: string;
5868
+ calorificValue: number;
5869
+ emissionFactor: number;
5870
+ }[];
5871
+ desc: string;
5872
+ }[];
5873
+ declare const SCOPE2_STEEL: {
5874
+ name: string;
5875
+ icon: react_icons_lib.IconType;
3851
5876
  scope: string;
3852
5877
  unit: string;
3853
5878
  subProducts: {
3854
5879
  name: string;
3855
5880
  unit: string;
3856
5881
  type: string;
5882
+ renewable: boolean;
3857
5883
  calorificValue: number;
3858
5884
  emissionFactor: number;
3859
5885
  }[];
3860
5886
  desc: string;
3861
5887
  }[];
5888
+ declare const ALLSCOPES_STEEL: {
5889
+ name: string;
5890
+ icon: react_icons_lib.IconType;
5891
+ scope: string;
5892
+ unit: string;
5893
+ subProducts: {
5894
+ name: string;
5895
+ unit: string;
5896
+ type: string;
5897
+ calorificValue: number;
5898
+ emissionFactor: number;
5899
+ }[];
5900
+ desc: string;
5901
+ }[];
5902
+ declare const PURCHASED_GOODS_AND_SERVICES$2: {
5903
+ category: string;
5904
+ items: {
5905
+ item: string;
5906
+ emissionFactor: number;
5907
+ unit: string;
5908
+ }[];
5909
+ }[];
5910
+ declare const HOTEL_EQUIPMENT_EMISSIONS: never[];
5911
+ declare const UPSTREAM_EMISSIONS_PURCHASED_FUELS: {
5912
+ category: string;
5913
+ items: {
5914
+ item: string;
5915
+ emissionFactor: number;
5916
+ unit: string;
5917
+ }[];
5918
+ }[];
5919
+ declare const UPSTREAM_TRANSPORTATION$2: {
5920
+ category: string;
5921
+ items: {
5922
+ item: string;
5923
+ emissionFactor: number;
5924
+ unit: string;
5925
+ }[];
5926
+ }[];
5927
+ declare const RAW_MATERIAL_TRANSPORTATION: {
5928
+ category: string;
5929
+ items: {
5930
+ item: string;
5931
+ emissionFactor: number;
5932
+ unit: string;
5933
+ }[];
5934
+ }[];
5935
+ declare const WASTE_DISPOSAL_EMISSIONS: {
5936
+ category: string;
5937
+ items: {
5938
+ item: string;
5939
+ emissionFactor: number;
5940
+ unit: string;
5941
+ }[];
5942
+ }[];
5943
+ declare const EMPLOYEE_COMMUTING$2: {
5944
+ category: string;
5945
+ items: {
5946
+ item: string;
5947
+ emissionFactor: number;
5948
+ unit: string;
5949
+ }[];
5950
+ }[];
5951
+ declare const BUSINESS_TRAVEL$2: {
5952
+ category: string;
5953
+ items: {
5954
+ item: string;
5955
+ emissionFactor: number;
5956
+ unit: string;
5957
+ }[];
5958
+ }[];
5959
+ declare const TOTAL_DOWNSTREAM_EMISSIONS: never[];
5960
+ declare const PROCESSING_OF_SOLD_PRODUCTS: never[];
5961
+ declare const USE_OF_SOLD_PRODUCTS: never[];
5962
+ declare const END_OF_LIFE_TREATMENT: never[];
3862
5963
  declare const WATER_MANAGEMENT_STEEL: {
3863
5964
  name: string;
3864
5965
  icon: react_icons_lib.IconType;
@@ -3890,6 +5991,100 @@ declare const ALL_SCOPES_3_STEEL: {
3890
5991
  desc: string;
3891
5992
  }[];
3892
5993
 
5994
+ declare const steel_ALLSCOPES_STEEL: typeof ALLSCOPES_STEEL;
5995
+ declare const steel_ALL_SCOPES_3_STEEL: typeof ALL_SCOPES_3_STEEL;
5996
+ declare const steel_ELECTRIC_PRODUCTS: typeof ELECTRIC_PRODUCTS;
5997
+ declare const steel_END_OF_LIFE_TREATMENT: typeof END_OF_LIFE_TREATMENT;
5998
+ declare const steel_HOTEL_EQUIPMENT_EMISSIONS: typeof HOTEL_EQUIPMENT_EMISSIONS;
5999
+ declare const steel_PROCESSING_OF_SOLD_PRODUCTS: typeof PROCESSING_OF_SOLD_PRODUCTS;
6000
+ declare const steel_RAW_MATERIAL_TRANSPORTATION: typeof RAW_MATERIAL_TRANSPORTATION;
6001
+ declare const steel_REFRIGERANTS: typeof REFRIGERANTS;
6002
+ declare const steel_SCOPE1_STEEL: typeof SCOPE1_STEEL;
6003
+ declare const steel_SCOPE2_STEEL: typeof SCOPE2_STEEL;
6004
+ declare const steel_TOTAL_DOWNSTREAM_EMISSIONS: typeof TOTAL_DOWNSTREAM_EMISSIONS;
6005
+ declare const steel_UPSTREAM_EMISSIONS_PURCHASED_FUELS: typeof UPSTREAM_EMISSIONS_PURCHASED_FUELS;
6006
+ declare const steel_USE_OF_SOLD_PRODUCTS: typeof USE_OF_SOLD_PRODUCTS;
6007
+ declare const steel_WASTE_DISPOSAL_EMISSIONS: typeof WASTE_DISPOSAL_EMISSIONS;
6008
+ declare const steel_WASTE_PRODUCTS: typeof WASTE_PRODUCTS;
6009
+ declare const steel_WATER_MANAGEMENT_STEEL: typeof WATER_MANAGEMENT_STEEL;
6010
+ declare const steel_WATER_PRODUCTS: typeof WATER_PRODUCTS;
6011
+ declare namespace steel {
6012
+ export {
6013
+ steel_ALLSCOPES_STEEL as ALLSCOPES_STEEL,
6014
+ steel_ALL_SCOPES_3_STEEL as ALL_SCOPES_3_STEEL,
6015
+ BUSINESS_TRAVEL$2 as BUSINESS_TRAVEL,
6016
+ steel_ELECTRIC_PRODUCTS as ELECTRIC_PRODUCTS,
6017
+ EMPLOYEE_COMMUTING$2 as EMPLOYEE_COMMUTING,
6018
+ steel_END_OF_LIFE_TREATMENT as END_OF_LIFE_TREATMENT,
6019
+ steel_HOTEL_EQUIPMENT_EMISSIONS as HOTEL_EQUIPMENT_EMISSIONS,
6020
+ steel_PROCESSING_OF_SOLD_PRODUCTS as PROCESSING_OF_SOLD_PRODUCTS,
6021
+ PURCHASED_GOODS_AND_SERVICES$2 as PURCHASED_GOODS_AND_SERVICES,
6022
+ steel_RAW_MATERIAL_TRANSPORTATION as RAW_MATERIAL_TRANSPORTATION,
6023
+ steel_REFRIGERANTS as REFRIGERANTS,
6024
+ steel_SCOPE1_STEEL as SCOPE1_STEEL,
6025
+ steel_SCOPE2_STEEL as SCOPE2_STEEL,
6026
+ steel_TOTAL_DOWNSTREAM_EMISSIONS as TOTAL_DOWNSTREAM_EMISSIONS,
6027
+ steel_UPSTREAM_EMISSIONS_PURCHASED_FUELS as UPSTREAM_EMISSIONS_PURCHASED_FUELS,
6028
+ UPSTREAM_TRANSPORTATION$2 as UPSTREAM_TRANSPORTATION,
6029
+ steel_USE_OF_SOLD_PRODUCTS as USE_OF_SOLD_PRODUCTS,
6030
+ steel_WASTE_DISPOSAL_EMISSIONS as WASTE_DISPOSAL_EMISSIONS,
6031
+ steel_WASTE_PRODUCTS as WASTE_PRODUCTS,
6032
+ steel_WATER_MANAGEMENT_STEEL as WATER_MANAGEMENT_STEEL,
6033
+ steel_WATER_PRODUCTS as WATER_PRODUCTS,
6034
+ };
6035
+ }
6036
+
6037
+ declare const FUEL_COMBUSTION_PRODUCTS$2: {
6038
+ name: string;
6039
+ unit: string;
6040
+ type: string;
6041
+ calorificValue: number;
6042
+ emissionFactor: number;
6043
+ }[];
6044
+ declare const REFRIGERANT_PRODUCTS$2: {
6045
+ name: string;
6046
+ unit: string;
6047
+ type: string;
6048
+ calorificValue: number;
6049
+ emissionFactor: number;
6050
+ }[];
6051
+ declare const FIRE_EXTINGUISHER_PRODUCTS$2: {
6052
+ name: string;
6053
+ unit: string;
6054
+ type: string;
6055
+ calorificValue: number;
6056
+ emissionFactor: number;
6057
+ }[];
6058
+ declare const LPG_USAGE_PRODUCTS$2: {
6059
+ name: string;
6060
+ unit: string;
6061
+ type: string;
6062
+ calorificValue: number;
6063
+ emissionFactor: number;
6064
+ }[];
6065
+ declare const SF6_USAGE_PRODUCTS$2: {
6066
+ name: string;
6067
+ unit: string;
6068
+ type: string;
6069
+ calorificValue: number;
6070
+ emissionFactor: number;
6071
+ }[];
6072
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$2: {
6073
+ name: string;
6074
+ unit: string;
6075
+ type: string;
6076
+ renewable: boolean;
6077
+ calorificValue: number;
6078
+ emissionFactor: number;
6079
+ }[];
6080
+ declare const RENEWABLE_ENERGY_PRODUCTS$2: {
6081
+ name: string;
6082
+ unit: string;
6083
+ type: string;
6084
+ renewable: boolean;
6085
+ calorificValue: number;
6086
+ emissionFactor: number;
6087
+ }[];
3893
6088
  declare const SCOPE1_TELECOMMUNICATIONS: {
3894
6089
  name: string;
3895
6090
  icon: react_icons_lib.IconType;
@@ -3953,6 +6148,61 @@ declare const ALLSCOPES_TELECOMMUNICATIONS: ({
3953
6148
  desc: string;
3954
6149
  } | Scope3Product)[];
3955
6150
 
6151
+ declare const telecommunications_ALLSCOPES_TELECOMMUNICATIONS: typeof ALLSCOPES_TELECOMMUNICATIONS;
6152
+ declare const telecommunications_ALL_SCOPES_3_TELECOMMUNICATIONS: typeof ALL_SCOPES_3_TELECOMMUNICATIONS;
6153
+ declare const telecommunications_SCOPE1_TELECOMMUNICATIONS: typeof SCOPE1_TELECOMMUNICATIONS;
6154
+ declare const telecommunications_SCOPE2_TELECOMMUNICATIONS: typeof SCOPE2_TELECOMMUNICATIONS;
6155
+ declare namespace telecommunications {
6156
+ export {
6157
+ telecommunications_ALLSCOPES_TELECOMMUNICATIONS as ALLSCOPES_TELECOMMUNICATIONS,
6158
+ telecommunications_ALL_SCOPES_3_TELECOMMUNICATIONS as ALL_SCOPES_3_TELECOMMUNICATIONS,
6159
+ FIRE_EXTINGUISHER_PRODUCTS$2 as FIRE_EXTINGUISHER_PRODUCTS,
6160
+ FUEL_COMBUSTION_PRODUCTS$2 as FUEL_COMBUSTION_PRODUCTS,
6161
+ LPG_USAGE_PRODUCTS$2 as LPG_USAGE_PRODUCTS,
6162
+ PURCHASED_ELECTRICITY_PRODUCTS$2 as PURCHASED_ELECTRICITY_PRODUCTS,
6163
+ REFRIGERANT_PRODUCTS$2 as REFRIGERANT_PRODUCTS,
6164
+ RENEWABLE_ENERGY_PRODUCTS$2 as RENEWABLE_ENERGY_PRODUCTS,
6165
+ telecommunications_SCOPE1_TELECOMMUNICATIONS as SCOPE1_TELECOMMUNICATIONS,
6166
+ telecommunications_SCOPE2_TELECOMMUNICATIONS as SCOPE2_TELECOMMUNICATIONS,
6167
+ SF6_USAGE_PRODUCTS$2 as SF6_USAGE_PRODUCTS,
6168
+ };
6169
+ }
6170
+
6171
+ declare const FUEL_COMBUSTION_PRODUCTS$1: {
6172
+ name: string;
6173
+ unit: string;
6174
+ type: string;
6175
+ calorificValue: number;
6176
+ emissionFactor: number;
6177
+ }[];
6178
+ declare const REFRIGERANT_PRODUCTS$1: {
6179
+ name: string;
6180
+ unit: string;
6181
+ type: string;
6182
+ calorificValue: number;
6183
+ emissionFactor: number;
6184
+ }[];
6185
+ declare const FIRE_EXTINGUISHER_PRODUCTS$1: {
6186
+ name: string;
6187
+ unit: string;
6188
+ type: string;
6189
+ calorificValue: number;
6190
+ emissionFactor: number;
6191
+ }[];
6192
+ declare const LPG_USAGE_PRODUCTS$1: {
6193
+ name: string;
6194
+ unit: string;
6195
+ type: string;
6196
+ calorificValue: number;
6197
+ emissionFactor: number;
6198
+ }[];
6199
+ declare const SF6_USAGE_PRODUCTS$1: {
6200
+ name: string;
6201
+ unit: string;
6202
+ type: string;
6203
+ calorificValue: number;
6204
+ emissionFactor: number;
6205
+ }[];
3956
6206
  declare const SCOPE1_TEXTILE: {
3957
6207
  name: string;
3958
6208
  icon: react_icons_lib.IconType;
@@ -3967,6 +6217,22 @@ declare const SCOPE1_TEXTILE: {
3967
6217
  }[];
3968
6218
  desc: string;
3969
6219
  }[];
6220
+ declare const PURCHASED_ELECTRICITY_PRODUCTS$1: {
6221
+ name: string;
6222
+ unit: string;
6223
+ type: string;
6224
+ renewable: boolean;
6225
+ calorificValue: number;
6226
+ emissionFactor: number;
6227
+ }[];
6228
+ declare const RENEWABLE_ENERGY_PRODUCTS$1: {
6229
+ name: string;
6230
+ unit: string;
6231
+ type: string;
6232
+ renewable: boolean;
6233
+ calorificValue: number;
6234
+ emissionFactor: number;
6235
+ }[];
3970
6236
  declare const SCOPE2_TEXTILE: {
3971
6237
  name: string;
3972
6238
  icon: react_icons_lib.IconType;
@@ -3992,6 +6258,13 @@ type EmissionCategory$1 = {
3992
6258
  items: EmissionItem$1[];
3993
6259
  };
3994
6260
  type Emissions$1 = EmissionCategory$1[];
6261
+ declare const PURCHASED_GOODS_AND_SERVICES$1: Emissions$1;
6262
+ declare const FUEL_ENERGY_RELATED$1: Emissions$1;
6263
+ declare const UPSTREAM_TRANSPORTATION$1: Emissions$1;
6264
+ declare const WASTE_OPERATIONS$1: Emissions$1;
6265
+ declare const EMPLOYEE_COMMUTING$1: Emissions$1;
6266
+ declare const BUSINESS_TRAVEL$1: Emissions$1;
6267
+ declare const WATER_USAGE$1: Emissions$1;
3995
6268
  declare const ALL_SCOPES_3_TEXTILE: {
3996
6269
  name: string;
3997
6270
  displayName: string;
@@ -4001,7 +6274,90 @@ declare const ALL_SCOPES_3_TEXTILE: {
4001
6274
  subProducts: Emissions$1;
4002
6275
  desc: string;
4003
6276
  }[];
6277
+ declare const ALLSCOPES_LOGISTICS$1: ({
6278
+ name: string;
6279
+ icon: react_icons_lib.IconType;
6280
+ scope: string;
6281
+ unit: string;
6282
+ subProducts: {
6283
+ name: string;
6284
+ unit: string;
6285
+ type: string;
6286
+ calorificValue: number;
6287
+ emissionFactor: number;
6288
+ }[];
6289
+ desc: string;
6290
+ } | {
6291
+ name: string;
6292
+ displayName: string;
6293
+ icon: react_icons_lib.IconType;
6294
+ scope: string;
6295
+ unit: string;
6296
+ subProducts: Emissions$1;
6297
+ desc: string;
6298
+ })[];
6299
+
6300
+ declare const textile_ALL_SCOPES_3_TEXTILE: typeof ALL_SCOPES_3_TEXTILE;
6301
+ declare const textile_SCOPE1_TEXTILE: typeof SCOPE1_TEXTILE;
6302
+ declare const textile_SCOPE2_TEXTILE: typeof SCOPE2_TEXTILE;
6303
+ declare namespace textile {
6304
+ export {
6305
+ ALLSCOPES_LOGISTICS$1 as ALLSCOPES_LOGISTICS,
6306
+ textile_ALL_SCOPES_3_TEXTILE as ALL_SCOPES_3_TEXTILE,
6307
+ BUSINESS_TRAVEL$1 as BUSINESS_TRAVEL,
6308
+ EMPLOYEE_COMMUTING$1 as EMPLOYEE_COMMUTING,
6309
+ FIRE_EXTINGUISHER_PRODUCTS$1 as FIRE_EXTINGUISHER_PRODUCTS,
6310
+ FUEL_COMBUSTION_PRODUCTS$1 as FUEL_COMBUSTION_PRODUCTS,
6311
+ FUEL_ENERGY_RELATED$1 as FUEL_ENERGY_RELATED,
6312
+ LPG_USAGE_PRODUCTS$1 as LPG_USAGE_PRODUCTS,
6313
+ PURCHASED_ELECTRICITY_PRODUCTS$1 as PURCHASED_ELECTRICITY_PRODUCTS,
6314
+ PURCHASED_GOODS_AND_SERVICES$1 as PURCHASED_GOODS_AND_SERVICES,
6315
+ REFRIGERANT_PRODUCTS$1 as REFRIGERANT_PRODUCTS,
6316
+ RENEWABLE_ENERGY_PRODUCTS$1 as RENEWABLE_ENERGY_PRODUCTS,
6317
+ textile_SCOPE1_TEXTILE as SCOPE1_TEXTILE,
6318
+ textile_SCOPE2_TEXTILE as SCOPE2_TEXTILE,
6319
+ SF6_USAGE_PRODUCTS$1 as SF6_USAGE_PRODUCTS,
6320
+ UPSTREAM_TRANSPORTATION$1 as UPSTREAM_TRANSPORTATION,
6321
+ WASTE_OPERATIONS$1 as WASTE_OPERATIONS,
6322
+ WATER_USAGE$1 as WATER_USAGE,
6323
+ };
6324
+ }
4004
6325
 
6326
+ declare const FUEL_COMBUSTION_PRODUCTS: {
6327
+ name: string;
6328
+ unit: string;
6329
+ type: string;
6330
+ calorificValue: number;
6331
+ emissionFactor: number;
6332
+ }[];
6333
+ declare const REFRIGERANT_PRODUCTS: {
6334
+ name: string;
6335
+ unit: string;
6336
+ type: string;
6337
+ calorificValue: number;
6338
+ emissionFactor: number;
6339
+ }[];
6340
+ declare const FIRE_EXTINGUISHER_PRODUCTS: {
6341
+ name: string;
6342
+ unit: string;
6343
+ type: string;
6344
+ calorificValue: number;
6345
+ emissionFactor: number;
6346
+ }[];
6347
+ declare const LPG_USAGE_PRODUCTS: {
6348
+ name: string;
6349
+ unit: string;
6350
+ type: string;
6351
+ calorificValue: number;
6352
+ emissionFactor: number;
6353
+ }[];
6354
+ declare const SF6_USAGE_PRODUCTS: {
6355
+ name: string;
6356
+ unit: string;
6357
+ type: string;
6358
+ calorificValue: number;
6359
+ emissionFactor: number;
6360
+ }[];
4005
6361
  declare const SCOPE1_UTILITIES: {
4006
6362
  name: string;
4007
6363
  icon: react_icons_lib.IconType;
@@ -4016,6 +6372,22 @@ declare const SCOPE1_UTILITIES: {
4016
6372
  }[];
4017
6373
  desc: string;
4018
6374
  }[];
6375
+ declare const PURCHASED_ELECTRICITY_PRODUCTS: {
6376
+ name: string;
6377
+ unit: string;
6378
+ type: string;
6379
+ renewable: boolean;
6380
+ calorificValue: number;
6381
+ emissionFactor: number;
6382
+ }[];
6383
+ declare const RENEWABLE_ENERGY_PRODUCTS: {
6384
+ name: string;
6385
+ unit: string;
6386
+ type: string;
6387
+ renewable: boolean;
6388
+ calorificValue: number;
6389
+ emissionFactor: number;
6390
+ }[];
4019
6391
  declare const SCOPE2_UTILITIES: {
4020
6392
  name: string;
4021
6393
  icon: react_icons_lib.IconType;
@@ -4041,6 +6413,13 @@ type EmissionCategory = {
4041
6413
  items: EmissionItem[];
4042
6414
  };
4043
6415
  type Emissions = EmissionCategory[];
6416
+ declare const PURCHASED_GOODS_AND_SERVICES: Emissions;
6417
+ declare const FUEL_ENERGY_RELATED: Emissions;
6418
+ declare const UPSTREAM_TRANSPORTATION: Emissions;
6419
+ declare const WASTE_OPERATIONS: Emissions;
6420
+ declare const EMPLOYEE_COMMUTING: Emissions;
6421
+ declare const BUSINESS_TRAVEL: Emissions;
6422
+ declare const WATER_USAGE: Emissions;
4044
6423
  declare const ALL_SCOPES_3_UTILITIES: {
4045
6424
  name: string;
4046
6425
  displayName: string;
@@ -4050,347 +6429,103 @@ declare const ALL_SCOPES_3_UTILITIES: {
4050
6429
  subProducts: Emissions;
4051
6430
  desc: string;
4052
6431
  }[];
6432
+ declare const ALLSCOPES_LOGISTICS: ({
6433
+ name: string;
6434
+ icon: react_icons_lib.IconType;
6435
+ scope: string;
6436
+ unit: string;
6437
+ subProducts: {
6438
+ name: string;
6439
+ unit: string;
6440
+ type: string;
6441
+ calorificValue: number;
6442
+ emissionFactor: number;
6443
+ }[];
6444
+ desc: string;
6445
+ } | {
6446
+ name: string;
6447
+ displayName: string;
6448
+ icon: react_icons_lib.IconType;
6449
+ scope: string;
6450
+ unit: string;
6451
+ subProducts: Emissions;
6452
+ desc: string;
6453
+ })[];
6454
+
6455
+ declare const utilities_ALLSCOPES_LOGISTICS: typeof ALLSCOPES_LOGISTICS;
6456
+ declare const utilities_ALL_SCOPES_3_UTILITIES: typeof ALL_SCOPES_3_UTILITIES;
6457
+ declare const utilities_BUSINESS_TRAVEL: typeof BUSINESS_TRAVEL;
6458
+ declare const utilities_EMPLOYEE_COMMUTING: typeof EMPLOYEE_COMMUTING;
6459
+ declare const utilities_FIRE_EXTINGUISHER_PRODUCTS: typeof FIRE_EXTINGUISHER_PRODUCTS;
6460
+ declare const utilities_FUEL_COMBUSTION_PRODUCTS: typeof FUEL_COMBUSTION_PRODUCTS;
6461
+ declare const utilities_FUEL_ENERGY_RELATED: typeof FUEL_ENERGY_RELATED;
6462
+ declare const utilities_LPG_USAGE_PRODUCTS: typeof LPG_USAGE_PRODUCTS;
6463
+ declare const utilities_PURCHASED_ELECTRICITY_PRODUCTS: typeof PURCHASED_ELECTRICITY_PRODUCTS;
6464
+ declare const utilities_PURCHASED_GOODS_AND_SERVICES: typeof PURCHASED_GOODS_AND_SERVICES;
6465
+ declare const utilities_REFRIGERANT_PRODUCTS: typeof REFRIGERANT_PRODUCTS;
6466
+ declare const utilities_RENEWABLE_ENERGY_PRODUCTS: typeof RENEWABLE_ENERGY_PRODUCTS;
6467
+ declare const utilities_SCOPE1_UTILITIES: typeof SCOPE1_UTILITIES;
6468
+ declare const utilities_SCOPE2_UTILITIES: typeof SCOPE2_UTILITIES;
6469
+ declare const utilities_SF6_USAGE_PRODUCTS: typeof SF6_USAGE_PRODUCTS;
6470
+ declare const utilities_UPSTREAM_TRANSPORTATION: typeof UPSTREAM_TRANSPORTATION;
6471
+ declare const utilities_WASTE_OPERATIONS: typeof WASTE_OPERATIONS;
6472
+ declare const utilities_WATER_USAGE: typeof WATER_USAGE;
6473
+ declare namespace utilities {
6474
+ export {
6475
+ utilities_ALLSCOPES_LOGISTICS as ALLSCOPES_LOGISTICS,
6476
+ utilities_ALL_SCOPES_3_UTILITIES as ALL_SCOPES_3_UTILITIES,
6477
+ utilities_BUSINESS_TRAVEL as BUSINESS_TRAVEL,
6478
+ utilities_EMPLOYEE_COMMUTING as EMPLOYEE_COMMUTING,
6479
+ utilities_FIRE_EXTINGUISHER_PRODUCTS as FIRE_EXTINGUISHER_PRODUCTS,
6480
+ utilities_FUEL_COMBUSTION_PRODUCTS as FUEL_COMBUSTION_PRODUCTS,
6481
+ utilities_FUEL_ENERGY_RELATED as FUEL_ENERGY_RELATED,
6482
+ utilities_LPG_USAGE_PRODUCTS as LPG_USAGE_PRODUCTS,
6483
+ utilities_PURCHASED_ELECTRICITY_PRODUCTS as PURCHASED_ELECTRICITY_PRODUCTS,
6484
+ utilities_PURCHASED_GOODS_AND_SERVICES as PURCHASED_GOODS_AND_SERVICES,
6485
+ utilities_REFRIGERANT_PRODUCTS as REFRIGERANT_PRODUCTS,
6486
+ utilities_RENEWABLE_ENERGY_PRODUCTS as RENEWABLE_ENERGY_PRODUCTS,
6487
+ utilities_SCOPE1_UTILITIES as SCOPE1_UTILITIES,
6488
+ utilities_SCOPE2_UTILITIES as SCOPE2_UTILITIES,
6489
+ utilities_SF6_USAGE_PRODUCTS as SF6_USAGE_PRODUCTS,
6490
+ utilities_UPSTREAM_TRANSPORTATION as UPSTREAM_TRANSPORTATION,
6491
+ utilities_WASTE_OPERATIONS as WASTE_OPERATIONS,
6492
+ utilities_WATER_USAGE as WATER_USAGE,
6493
+ };
6494
+ }
4053
6495
 
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
6496
  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
6497
  declare const index_getRCOConfigByName: typeof getRCOConfigByName;
4222
6498
  declare namespace index {
4223
6499
  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
6500
  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,
6501
+ alloy as Alloy,
6502
+ aluminum as Aluminum,
6503
+ automobile as Automobile,
6504
+ aviation as Aviation,
6505
+ battery_ev as BatteryEv,
6506
+ cement as Cement,
6507
+ cementGaslab as CementGaslab,
6508
+ chemical as Chemical,
6509
+ construction as Construction,
6510
+ electricalEquipments as ElectricalEquipments,
6511
+ food as Food,
6512
+ hospitality as Hospitality,
6513
+ logistics as Logistics,
6514
+ manufacturing as Manufacturing,
6515
+ metal as Metal,
6516
+ packaging as Packaging,
6517
+ petro as Petro,
6518
+ pharma as Pharma,
6519
+ polymer as Polymer,
6520
+ realestate as RealEstate,
6521
+ shipping as Shipping,
6522
+ steel as Steel,
6523
+ telecommunications as Telecommunications,
6524
+ textile as Textile,
6525
+ utilities as Utilities,
4391
6526
  index_getRCOConfigByName as getRCOConfigByName,
4392
6527
  };
4393
6528
  }
4394
6529
 
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 };
6530
+ 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, extractBulkBillAgentProfileCandidates, 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 };
6531
+ 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, BulkBillAgentProfileCandidate, BulkBillAgentProfileExtractionInput, BulkBillAgentProfileGroup, BulkBillAgentProfileId, BulkBillAgentProfilePage, 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 };