@experian-ecs/connected-api-sdk 1.1.1 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/package.json +6 -7
package/dist/index.d.ts CHANGED
@@ -310,7 +310,7 @@ type SimulationCategoryType = 'GENERAL_CREDIT' | 'REVOLVING_CREDIT' | 'MORTGAGE_
310
310
  type ImpactType = 'positive' | 'negative';
311
311
  interface CreditScoreSimulatorPostRequest {
312
312
  scenario: string;
313
- variations: FicoScenarioVariation[];
313
+ variations: Omit<FicoScenarioVariation, 'slider_min_value' | 'slider_max_value'>[];
314
314
  }
315
315
  interface CreditScoreSimulatorPostResponse {
316
316
  simulated_score: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experian-ecs/connected-api-sdk",
3
- "version": "1.1.1",
3
+ "version": "1.2.0",
4
4
  "description": "Connected Experience API SDK ",
5
5
  "author": "Experian",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -33,8 +33,8 @@
33
33
  "build": "npm run build:clean && npm run build:lib && node ./scripts/writeLicenseToBundleFiles.mjs",
34
34
  "build:lib": "npm run build:umd && npm run build:esm && npm run build:types",
35
35
  "build:clean": "rm -rf dist",
36
- "build:esm": "npx vite build --config config/build/esm.ts",
37
- "build:umd": "npx vite build --config config/build/umd.ts",
36
+ "build:esm": "set \"VITE_CJS_TRACE=true\" && npx vite build --config config/build/esm.ts",
37
+ "build:umd": "set \"VITE_CJS_TRACE=true\" && npx vite build --config config/build/umd.ts",
38
38
  "build:types": "npx tsup src/index.ts --dts-only",
39
39
  "format": "npx biome format . --write",
40
40
  "gen:service": "sh ./_templates/gen-service.sh",
@@ -42,10 +42,10 @@
42
42
  "lint:check": "npx biome check .",
43
43
  "prepare": "husky",
44
44
  "pre-commit": "lint-staged",
45
- "test": "cross-env DEBUG_PRINT_LIMIT=\"10000000\" vitest run --coverage",
45
+ "test": "set \"VITE_CJS_TRACE=true\" && cross-env DEBUG_PRINT_LIMIT=\"10000000\" vitest run --coverage",
46
46
  "test:types": "npx tsc --noEmit",
47
47
  "test:pr": "npm run build && npm run lint:check && npm run test:types && npm run test",
48
- "test:watch": "cross-env DEBUG_PRINT_LIMIT=\"10000000\" vitest watch"
48
+ "test:watch": "set \"VITE_CJS_TRACE=true\" && cross-env DEBUG_PRINT_LIMIT=\"10000000\" vitest watch"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@biomejs/biome": "^1.9.4",
@@ -88,6 +88,5 @@
88
88
  "tinyglobby": {
89
89
  "picomatch": "4.0.2"
90
90
  }
91
- },
92
- "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
91
+ }
93
92
  }