Skip to content

Commit fd8a406

Browse files
feat: add User Attribute Profiles, Connected Accounts, Sessions Update APIs and improvements (#1222)
Co-authored-by: fern-api[bot] <115122769+fern-api[bot]@users.noreply.github.com>
1 parent c26c8ac commit fd8a406

File tree

2,198 files changed

+20060
-32454
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,198 files changed

+20060
-32454
lines changed

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ tests
55
.github
66
.fernignore
77
.prettierrc.yml
8+
biome.json
89
tsconfig.json
910
yarn.lock
1011
pnpm-lock.yaml

package.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,18 @@
4747
],
4848
"scripts": {
4949
"format": "prettier . --write --ignore-unknown",
50+
"format:check": "prettier . --check --ignore-unknown",
51+
"lint": "eslint . --ext .js,.ts,.tsx",
52+
"lint:fix": "eslint . --ext .js,.ts,.tsx --fix",
53+
"check": "yarn format:check && yarn lint",
54+
"check:fix": "yarn format && yarn lint:fix",
5055
"build": "yarn build:cjs && yarn build:esm",
5156
"build:cjs": "tsc --project ./tsconfig.cjs.json",
5257
"build:esm": "tsc --project ./tsconfig.esm.json && node scripts/rename-to-esm-files.js dist/esm",
5358
"test": "jest --config jest.config.mjs",
5459
"test:unit": "jest --selectProjects unit",
55-
"test:browser": "jest --selectProjects browser",
5660
"test:wire": "jest --selectProjects wire",
5761
"prepare": "husky",
58-
"lint": "eslint . --ext .js,.ts,.tsx",
59-
"lint:fix": "eslint . --ext .js,.ts,.tsx --fix",
6062
"lint:check": "eslint . --ext .js,.ts,.tsx",
6163
"lint:package": "publint --pack npm",
6264
"test:coverage": "jest --config jest.config.mjs --coverage",
@@ -77,10 +79,10 @@
7779
"@types/jest": "^29.5.14",
7880
"ts-jest": "^29.3.4",
7981
"jest-environment-jsdom": "^29.7.0",
80-
"msw": "^2.8.4",
82+
"msw": "2.11.2",
8183
"@types/node": "^18.19.70",
82-
"prettier": "^3.4.2",
8384
"typescript": "~5.7.2",
85+
"prettier": "3.4.2",
8486
"typedoc": "^0.28.7",
8587
"typedoc-plugin-missing-exports": "^4.0.0",
8688
"nock": "^14.0.6",

0 commit comments

Comments
 (0)