@fluidframework/odsp-driver-definitions 2.0.0-dev-rc.5.0.0.270401 → 2.0.0-dev-rc.5.0.0.270987

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/biome.jsonc ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
3
+ "extends": ["../../../biome.jsonc"]
4
+ }
package/dist/legacy.d.ts CHANGED
@@ -9,9 +9,6 @@
9
9
  */
10
10
 
11
11
  export {
12
- // @beta APIs
13
- TokenResponse,
14
-
15
12
  // @alpha APIs
16
13
  CacheContentType,
17
14
  HostStoragePolicy,
package/lib/legacy.d.ts CHANGED
@@ -9,9 +9,6 @@
9
9
  */
10
10
 
11
11
  export {
12
- // @beta APIs
13
- TokenResponse,
14
-
15
12
  // @alpha APIs
16
13
  CacheContentType,
17
14
  HostStoragePolicy,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/odsp-driver-definitions",
3
- "version": "2.0.0-dev-rc.5.0.0.270401",
3
+ "version": "2.0.0-dev-rc.5.0.0.270987",
4
4
  "description": "Socket storage implementation for SPO and ODC",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -57,14 +57,14 @@
57
57
  "main": "lib/index.js",
58
58
  "types": "lib/public.d.ts",
59
59
  "dependencies": {
60
- "@fluidframework/driver-definitions": "2.0.0-dev-rc.5.0.0.270401"
60
+ "@fluidframework/driver-definitions": "2.0.0-dev-rc.5.0.0.270987"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@arethetypeswrong/cli": "^0.15.2",
64
64
  "@biomejs/biome": "^1.7.3",
65
- "@fluid-tools/build-cli": "^0.39.0-264124",
65
+ "@fluid-tools/build-cli": "^0.39.0",
66
66
  "@fluidframework/build-common": "^2.0.3",
67
- "@fluidframework/build-tools": "^0.39.0-264124",
67
+ "@fluidframework/build-tools": "^0.39.0",
68
68
  "@fluidframework/eslint-config-fluid": "^5.3.0",
69
69
  "@fluidframework/odsp-driver-definitions-previous": "npm:@fluidframework/odsp-driver-definitions@2.0.0-rc.4.0.0",
70
70
  "@microsoft/api-extractor": "^7.45.1",
@@ -91,13 +91,16 @@
91
91
  "build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
92
92
  "build:test:esm": "tsc --project ./src/test/tsconfig.json",
93
93
  "check:are-the-types-wrong": "attw --pack .",
94
+ "check:biome": "biome check . --formatter-enabled=true",
95
+ "check:format": "npm run check:prettier",
94
96
  "check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
95
97
  "check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json",
96
98
  "ci:build:docs": "api-extractor run",
97
99
  "clean": "rimraf --glob dist lib \"*.d.ts\" \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
98
100
  "eslint": "eslint --format stylish src",
99
101
  "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
100
- "format": "fluid-build --task format .",
102
+ "format": "npm run format:prettier",
103
+ "format:biome": "biome check . --formatter-enabled=true --apply",
101
104
  "format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
102
105
  "lint": "fluid-build . --task lint",
103
106
  "lint:fix": "fluid-build . --task eslint:fix --task format",