@zerocarbon/erp-config-sdk 1.0.15 → 1.0.17
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/README.md +528 -74
- package/dist/index.d.ts +141 -42
- package/dist/index.esm.js +1176 -763
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1174 -759
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -144,7 +144,7 @@ interface ApiEndpointConfig {
|
|
|
144
144
|
description: string;
|
|
145
145
|
mappingFunction: (data: StrapiItem<any>[]) => ProcessedEmissionItem[];
|
|
146
146
|
}
|
|
147
|
-
interface IndustryConfig {
|
|
147
|
+
interface IndustryConfig$1 {
|
|
148
148
|
industry: string;
|
|
149
149
|
displayName: string;
|
|
150
150
|
apiEndpoints: ApiEndpointConfig[];
|
|
@@ -900,35 +900,50 @@ interface ErrorResponse {
|
|
|
900
900
|
declare function hasIntensities(response: any): response is DetailedCarbonIntensityResponse;
|
|
901
901
|
declare const INTENSITY_FIELD_LABELS: Record<string, string>;
|
|
902
902
|
|
|
903
|
+
type EmissionItem$l = {
|
|
904
|
+
item: string;
|
|
905
|
+
emissionFactor: number;
|
|
906
|
+
unit: string;
|
|
907
|
+
};
|
|
908
|
+
type EquipmentCategory$7 = {
|
|
909
|
+
category: string;
|
|
910
|
+
items: EmissionItem$l[];
|
|
911
|
+
};
|
|
912
|
+
type Scope3Item$3 = {
|
|
913
|
+
name: string;
|
|
914
|
+
displayName: string;
|
|
915
|
+
icon: any;
|
|
916
|
+
scope: string;
|
|
917
|
+
unit: string;
|
|
918
|
+
subProducts: EquipmentCategory$7[];
|
|
919
|
+
desc: string;
|
|
920
|
+
};
|
|
921
|
+
declare const ALL_SCOPES_3_RCO: Scope3Item$3[];
|
|
922
|
+
declare const getRCOConfigByName: (name: string) => Scope3Item$3 | undefined;
|
|
923
|
+
|
|
903
924
|
declare const getUserNameScopeConfig: <T = any>(scopeKey: "scope1" | "scope2" | "scope3" | "waterManagement", username?: string, defaultScope?: T) => T;
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
additionalScopes?: {
|
|
910
|
-
[key: string]: Array<{
|
|
911
|
-
type: "scope1" | "scope2" | "scope3";
|
|
912
|
-
route: string;
|
|
913
|
-
name: string;
|
|
914
|
-
scope: Scope | Scope3Item$2;
|
|
915
|
-
}>;
|
|
916
|
-
};
|
|
917
|
-
};
|
|
925
|
+
type IndustryAdditionalScopeItem = {
|
|
926
|
+
type: "scope1" | "scope2" | "scope3";
|
|
927
|
+
route: string;
|
|
928
|
+
name: string;
|
|
929
|
+
scope: Scope | Scope3Item$2;
|
|
918
930
|
};
|
|
919
|
-
|
|
931
|
+
type IndustryConfig = {
|
|
920
932
|
scope1: Scope[];
|
|
921
933
|
scope2: Scope[];
|
|
922
934
|
scope3: Scope3Item$2[];
|
|
935
|
+
rco?: Scope3Item$2[];
|
|
923
936
|
additionalScopes?: {
|
|
924
|
-
[key: string]:
|
|
925
|
-
type: "scope1" | "scope2" | "scope3";
|
|
926
|
-
route: string;
|
|
927
|
-
name: string;
|
|
928
|
-
scope: Scope | Scope3Item$2;
|
|
929
|
-
}>;
|
|
937
|
+
[key: string]: IndustryAdditionalScopeItem[];
|
|
930
938
|
};
|
|
931
939
|
};
|
|
940
|
+
declare const INDUSTRIES_CONFIG: {
|
|
941
|
+
[key: string]: IndustryConfig;
|
|
942
|
+
};
|
|
943
|
+
type IndustryConfigWithRCO = IndustryConfig & {
|
|
944
|
+
rco: Scope3Item$2[];
|
|
945
|
+
};
|
|
946
|
+
declare const getIndustryConfig$1: (industry: string, username?: string) => IndustryConfigWithRCO;
|
|
932
947
|
type Product = {
|
|
933
948
|
name: string;
|
|
934
949
|
unit: string;
|
|
@@ -1013,6 +1028,7 @@ type BackendIndustryConfig = {
|
|
|
1013
1028
|
scope1: BackendScope[];
|
|
1014
1029
|
scope2: BackendScope[];
|
|
1015
1030
|
scope3: BackendScope3Item[];
|
|
1031
|
+
rco: BackendScope3Item[];
|
|
1016
1032
|
additionalScopes?: {
|
|
1017
1033
|
[key: string]: BackendAdditionalScopeItem[];
|
|
1018
1034
|
};
|
|
@@ -1336,19 +1352,28 @@ declare const CCTS_SF6_PRODUCTS: {
|
|
|
1336
1352
|
emissionFactorUnit: string;
|
|
1337
1353
|
type: string;
|
|
1338
1354
|
}[];
|
|
1339
|
-
declare const CCTS_ELECTRICITY_PRODUCTS: {
|
|
1355
|
+
declare const CCTS_ELECTRICITY_PRODUCTS: ({
|
|
1340
1356
|
name: string;
|
|
1341
1357
|
unit: string;
|
|
1342
1358
|
emissionFactor: number;
|
|
1343
1359
|
emissionFactorUnit: string;
|
|
1344
1360
|
type: string;
|
|
1345
|
-
|
|
1361
|
+
source: string;
|
|
1362
|
+
} | {
|
|
1363
|
+
name: string;
|
|
1364
|
+
unit: string;
|
|
1365
|
+
emissionFactor: number;
|
|
1366
|
+
emissionFactorUnit: string;
|
|
1367
|
+
type: string;
|
|
1368
|
+
source?: undefined;
|
|
1369
|
+
})[];
|
|
1346
1370
|
declare const CCTS_PURCHASED_ELECTRICITY: {
|
|
1347
1371
|
name: string;
|
|
1348
1372
|
unit: string;
|
|
1349
1373
|
emissionFactor: number;
|
|
1350
1374
|
emissionFactorUnit: string;
|
|
1351
1375
|
type: string;
|
|
1376
|
+
source: string;
|
|
1352
1377
|
}[];
|
|
1353
1378
|
declare const CCTS_SCOPE1_CEMENT: ({
|
|
1354
1379
|
name: string;
|
|
@@ -1422,13 +1447,21 @@ declare const CCTS_SCOPE2_CEMENT: {
|
|
|
1422
1447
|
icon: react_icons_lib.IconType;
|
|
1423
1448
|
scope: string;
|
|
1424
1449
|
unit: string;
|
|
1425
|
-
subProducts: {
|
|
1450
|
+
subProducts: ({
|
|
1426
1451
|
name: string;
|
|
1427
1452
|
unit: string;
|
|
1428
1453
|
emissionFactor: number;
|
|
1429
1454
|
emissionFactorUnit: string;
|
|
1430
1455
|
type: string;
|
|
1431
|
-
|
|
1456
|
+
source: string;
|
|
1457
|
+
} | {
|
|
1458
|
+
name: string;
|
|
1459
|
+
unit: string;
|
|
1460
|
+
emissionFactor: number;
|
|
1461
|
+
emissionFactorUnit: string;
|
|
1462
|
+
type: string;
|
|
1463
|
+
source?: undefined;
|
|
1464
|
+
})[];
|
|
1432
1465
|
desc: string;
|
|
1433
1466
|
group: string;
|
|
1434
1467
|
}[];
|
|
@@ -2337,16 +2370,29 @@ declare const ALLSCOPES_BATTERY_EV: ({
|
|
|
2337
2370
|
desc: string;
|
|
2338
2371
|
})[];
|
|
2339
2372
|
|
|
2340
|
-
declare const FUEL_COMBUSTION_PYRO_PROCESS_PRODUCTS: {
|
|
2373
|
+
declare const FUEL_COMBUSTION_PYRO_PROCESS_PRODUCTS: ({
|
|
2341
2374
|
name: string;
|
|
2342
2375
|
unit: string;
|
|
2343
2376
|
emissionFactor: number;
|
|
2344
2377
|
calorificValue: number;
|
|
2345
2378
|
type: string;
|
|
2379
|
+
ncv: number;
|
|
2380
|
+
ncvUnit: string;
|
|
2346
2381
|
energyConversionFactor: number;
|
|
2347
2382
|
ch4EmissionFactor: number;
|
|
2348
2383
|
n2oEmissionFactor: number;
|
|
2349
|
-
}
|
|
2384
|
+
} | {
|
|
2385
|
+
name: string;
|
|
2386
|
+
unit: string;
|
|
2387
|
+
emissionFactor: number;
|
|
2388
|
+
calorificValue: number;
|
|
2389
|
+
type: string;
|
|
2390
|
+
ch4EmissionFactor: number;
|
|
2391
|
+
n2oEmissionFactor: number;
|
|
2392
|
+
ncv?: undefined;
|
|
2393
|
+
ncvUnit?: undefined;
|
|
2394
|
+
energyConversionFactor?: undefined;
|
|
2395
|
+
})[];
|
|
2350
2396
|
declare const CALCINATION_PROCESS_PRODUCTS: {
|
|
2351
2397
|
name: string;
|
|
2352
2398
|
unit: string;
|
|
@@ -2354,30 +2400,61 @@ declare const CALCINATION_PROCESS_PRODUCTS: {
|
|
|
2354
2400
|
calorificValue: number;
|
|
2355
2401
|
type: string;
|
|
2356
2402
|
}[];
|
|
2357
|
-
declare const MINING_OPERATIONS_PRODUCTS: {
|
|
2403
|
+
declare const MINING_OPERATIONS_PRODUCTS: ({
|
|
2358
2404
|
name: string;
|
|
2359
2405
|
unit: string;
|
|
2360
2406
|
emissionFactor: number;
|
|
2361
2407
|
calorificValue: number;
|
|
2362
2408
|
type: string;
|
|
2409
|
+
ncv: number;
|
|
2410
|
+
ncvUnit: string;
|
|
2363
2411
|
energyConversionFactor: number;
|
|
2364
|
-
}
|
|
2365
|
-
|
|
2412
|
+
} | {
|
|
2413
|
+
name: string;
|
|
2414
|
+
unit: string;
|
|
2415
|
+
emissionFactor: number;
|
|
2416
|
+
calorificValue: number;
|
|
2417
|
+
type: string;
|
|
2418
|
+
ncv?: undefined;
|
|
2419
|
+
ncvUnit?: undefined;
|
|
2420
|
+
energyConversionFactor?: undefined;
|
|
2421
|
+
})[];
|
|
2422
|
+
declare const ON_SITE_POWER_PRODUCTS: ({
|
|
2366
2423
|
name: string;
|
|
2367
2424
|
unit: string;
|
|
2368
2425
|
emissionFactor: number;
|
|
2369
2426
|
calorificValue: number;
|
|
2370
2427
|
type: string;
|
|
2428
|
+
ncv: number;
|
|
2429
|
+
ncvUnit: string;
|
|
2371
2430
|
energyConversionFactor: number;
|
|
2372
|
-
}
|
|
2373
|
-
declare const ELECTRICITY_CONSUMED_PRODUCTS: {
|
|
2431
|
+
} | {
|
|
2374
2432
|
name: string;
|
|
2375
2433
|
unit: string;
|
|
2376
2434
|
emissionFactor: number;
|
|
2377
2435
|
calorificValue: number;
|
|
2378
2436
|
type: string;
|
|
2379
2437
|
energyConversionFactor: number;
|
|
2380
|
-
|
|
2438
|
+
ncv?: undefined;
|
|
2439
|
+
ncvUnit?: undefined;
|
|
2440
|
+
})[];
|
|
2441
|
+
declare const ELECTRICITY_CONSUMED_PRODUCTS: ({
|
|
2442
|
+
name: string;
|
|
2443
|
+
unit: string;
|
|
2444
|
+
emissionFactor: number;
|
|
2445
|
+
calorificValue: number;
|
|
2446
|
+
type: string;
|
|
2447
|
+
energyConversionFactor: number;
|
|
2448
|
+
source: string;
|
|
2449
|
+
} | {
|
|
2450
|
+
name: string;
|
|
2451
|
+
unit: string;
|
|
2452
|
+
emissionFactor: number;
|
|
2453
|
+
calorificValue: number;
|
|
2454
|
+
type: string;
|
|
2455
|
+
energyConversionFactor: number;
|
|
2456
|
+
source?: undefined;
|
|
2457
|
+
})[];
|
|
2381
2458
|
declare const LPG_PRODUCTS: {
|
|
2382
2459
|
name: string;
|
|
2383
2460
|
unit: string;
|
|
@@ -2422,14 +2499,23 @@ declare const SCOPE2_CEMENT: {
|
|
|
2422
2499
|
icon: react_icons_lib.IconType;
|
|
2423
2500
|
scope: string;
|
|
2424
2501
|
unit: string;
|
|
2425
|
-
subProducts: {
|
|
2502
|
+
subProducts: ({
|
|
2426
2503
|
name: string;
|
|
2427
2504
|
unit: string;
|
|
2428
2505
|
type: string;
|
|
2429
2506
|
renewable: boolean;
|
|
2430
2507
|
calorificValue: number;
|
|
2431
2508
|
emissionFactor: number;
|
|
2432
|
-
|
|
2509
|
+
source: string;
|
|
2510
|
+
} | {
|
|
2511
|
+
name: string;
|
|
2512
|
+
unit: string;
|
|
2513
|
+
type: string;
|
|
2514
|
+
renewable: boolean;
|
|
2515
|
+
calorificValue: number;
|
|
2516
|
+
emissionFactor: number;
|
|
2517
|
+
source?: undefined;
|
|
2518
|
+
})[];
|
|
2433
2519
|
desc: string;
|
|
2434
2520
|
}[];
|
|
2435
2521
|
declare const ALLSCOPES_CEMENT: ({
|
|
@@ -2465,14 +2551,23 @@ declare const ALLSCOPES_CEMENT: ({
|
|
|
2465
2551
|
icon: react_icons_lib.IconType;
|
|
2466
2552
|
scope: string;
|
|
2467
2553
|
unit: string;
|
|
2468
|
-
subProducts: {
|
|
2554
|
+
subProducts: ({
|
|
2469
2555
|
name: string;
|
|
2470
2556
|
unit: string;
|
|
2471
2557
|
type: string;
|
|
2472
2558
|
renewable: boolean;
|
|
2473
2559
|
calorificValue: number;
|
|
2474
2560
|
emissionFactor: number;
|
|
2475
|
-
|
|
2561
|
+
source: string;
|
|
2562
|
+
} | {
|
|
2563
|
+
name: string;
|
|
2564
|
+
unit: string;
|
|
2565
|
+
type: string;
|
|
2566
|
+
renewable: boolean;
|
|
2567
|
+
calorificValue: number;
|
|
2568
|
+
emissionFactor: number;
|
|
2569
|
+
source?: undefined;
|
|
2570
|
+
})[];
|
|
2476
2571
|
desc: string;
|
|
2477
2572
|
})[];
|
|
2478
2573
|
type EmissionItem$g = {
|
|
@@ -2563,8 +2658,8 @@ declare const WATER_MANAGEMENT_SCOPE: {
|
|
|
2563
2658
|
}[];
|
|
2564
2659
|
desc: string;
|
|
2565
2660
|
};
|
|
2566
|
-
declare const CEMENT_INDUSTRY_CONFIG: IndustryConfig;
|
|
2567
|
-
declare const getIndustryConfig: (industry: string) => IndustryConfig | null;
|
|
2661
|
+
declare const CEMENT_INDUSTRY_CONFIG: IndustryConfig$1;
|
|
2662
|
+
declare const getIndustryConfig: (industry: string) => IndustryConfig$1 | null;
|
|
2568
2663
|
declare const getEndpointConfig: (industry: string, endpointName: string) => ApiEndpointConfig | undefined;
|
|
2569
2664
|
|
|
2570
2665
|
type EmissionItem$f = {
|
|
@@ -3813,6 +3908,7 @@ declare const index_ALL_SCOPES_3_PACKAGING: typeof ALL_SCOPES_3_PACKAGING;
|
|
|
3813
3908
|
declare const index_ALL_SCOPES_3_PETRO_CHEMICAL: typeof ALL_SCOPES_3_PETRO_CHEMICAL;
|
|
3814
3909
|
declare const index_ALL_SCOPES_3_PHARMA: typeof ALL_SCOPES_3_PHARMA;
|
|
3815
3910
|
declare const index_ALL_SCOPES_3_POLYMER: typeof ALL_SCOPES_3_POLYMER;
|
|
3911
|
+
declare const index_ALL_SCOPES_3_RCO: typeof ALL_SCOPES_3_RCO;
|
|
3816
3912
|
declare const index_ALL_SCOPES_3_REAL_ESTATE: typeof ALL_SCOPES_3_REAL_ESTATE;
|
|
3817
3913
|
declare const index_ALL_SCOPES_3_SHIPPING: typeof ALL_SCOPES_3_SHIPPING;
|
|
3818
3914
|
declare const index_ALL_SCOPES_3_STEEL: typeof ALL_SCOPES_3_STEEL;
|
|
@@ -3942,6 +4038,7 @@ declare const index_WATER_USAGE_PRODUCTS: typeof WATER_USAGE_PRODUCTS;
|
|
|
3942
4038
|
declare const index_WELDING_PRODUCTS_GAS_LAB: typeof WELDING_PRODUCTS_GAS_LAB;
|
|
3943
4039
|
declare const index_getEndpointConfig: typeof getEndpointConfig;
|
|
3944
4040
|
declare const index_getIndustryConfig: typeof getIndustryConfig;
|
|
4041
|
+
declare const index_getRCOConfigByName: typeof getRCOConfigByName;
|
|
3945
4042
|
declare namespace index {
|
|
3946
4043
|
export {
|
|
3947
4044
|
index_ALLSCOPES_ALLOY as ALLSCOPES_ALLOY,
|
|
@@ -3976,6 +4073,7 @@ declare namespace index {
|
|
|
3976
4073
|
index_ALL_SCOPES_3_PETRO_CHEMICAL as ALL_SCOPES_3_PETRO_CHEMICAL,
|
|
3977
4074
|
index_ALL_SCOPES_3_PHARMA as ALL_SCOPES_3_PHARMA,
|
|
3978
4075
|
index_ALL_SCOPES_3_POLYMER as ALL_SCOPES_3_POLYMER,
|
|
4076
|
+
index_ALL_SCOPES_3_RCO as ALL_SCOPES_3_RCO,
|
|
3979
4077
|
index_ALL_SCOPES_3_REAL_ESTATE as ALL_SCOPES_3_REAL_ESTATE,
|
|
3980
4078
|
index_ALL_SCOPES_3_SHIPPING as ALL_SCOPES_3_SHIPPING,
|
|
3981
4079
|
index_ALL_SCOPES_3_STEEL as ALL_SCOPES_3_STEEL,
|
|
@@ -4105,8 +4203,9 @@ declare namespace index {
|
|
|
4105
4203
|
index_WELDING_PRODUCTS_GAS_LAB as WELDING_PRODUCTS_GAS_LAB,
|
|
4106
4204
|
index_getEndpointConfig as getEndpointConfig,
|
|
4107
4205
|
index_getIndustryConfig as getIndustryConfig,
|
|
4206
|
+
index_getRCOConfigByName as getRCOConfigByName,
|
|
4108
4207
|
};
|
|
4109
4208
|
}
|
|
4110
4209
|
|
|
4111
|
-
export { 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, 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, getPlantNameConfig, getScope3ConfigByName, getUserNameBackendConfig, getUserNameScopeConfig, hasIntensities, isUIFeatureEnabled, mapIndustryToApiType, sanitizeNumber, supportsIntensityCalculations, validateCarbonIntensityData };
|
|
4112
|
-
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, 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, UserData, UtilitiesRequest, UtilitiesResponse, ValidationError, VehicleEmission, VehicleEmissionAttributes, VehicleEmissionsResponse };
|
|
4210
|
+
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, 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, getPlantNameConfig, getRCOConfigByName, getScope3ConfigByName, getUserNameBackendConfig, getUserNameScopeConfig, hasIntensities, isUIFeatureEnabled, mapIndustryToApiType, sanitizeNumber, supportsIntensityCalculations, validateCarbonIntensityData };
|
|
4211
|
+
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, UserData, UtilitiesRequest, UtilitiesResponse, ValidationError, VehicleEmission, VehicleEmissionAttributes, VehicleEmissionsResponse };
|