@fluidframework/odsp-driver-definitions 2.0.0-rc.5.0.0 → 2.1.0-274160

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.
@@ -0,0 +1,4 @@
1
+ {
2
+ "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
3
+ "extends": "<projectFolder>/../../../common/build/build-common/api-extractor-base.esm.legacy.json"
4
+ }
@@ -4,11 +4,6 @@
4
4
 
5
5
  ```ts
6
6
 
7
- import { DriverError } from '@fluidframework/driver-definitions/internal';
8
- import { FiveDaysMs } from '@fluidframework/driver-definitions/internal';
9
- import { IDriverErrorBase } from '@fluidframework/driver-definitions/internal';
10
- import { IResolvedUrl } from '@fluidframework/driver-definitions/internal';
11
-
12
7
  // @alpha (undocumented)
13
8
  export type CacheContentType = "snapshot" | "ops";
14
9
 
@@ -4,11 +4,6 @@
4
4
 
5
5
  ```ts
6
6
 
7
- import { DriverError } from '@fluidframework/driver-definitions/internal';
8
- import { FiveDaysMs } from '@fluidframework/driver-definitions/internal';
9
- import { IDriverErrorBase } from '@fluidframework/driver-definitions/internal';
10
- import { IResolvedUrl } from '@fluidframework/driver-definitions/internal';
11
-
12
7
  // (No @packageDocumentation comment for this package)
13
8
 
14
9
  ```
@@ -4,11 +4,6 @@
4
4
 
5
5
  ```ts
6
6
 
7
- import { DriverError } from '@fluidframework/driver-definitions/internal';
8
- import { FiveDaysMs } from '@fluidframework/driver-definitions/internal';
9
- import { IDriverErrorBase } from '@fluidframework/driver-definitions/internal';
10
- import { IResolvedUrl } from '@fluidframework/driver-definitions/internal';
11
-
12
7
  // (No @packageDocumentation comment for this package)
13
8
 
14
9
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/odsp-driver-definitions",
3
- "version": "2.0.0-rc.5.0.0",
3
+ "version": "2.1.0-274160",
4
4
  "description": "Socket storage implementation for SPO and ODC",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -57,7 +57,7 @@
57
57
  "main": "lib/index.js",
58
58
  "types": "lib/public.d.ts",
59
59
  "dependencies": {
60
- "@fluidframework/driver-definitions": ">=2.0.0-rc.5.0.0 <2.0.0-rc.5.1.0"
60
+ "@fluidframework/driver-definitions": "2.1.0-274160"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@arethetypeswrong/cli": "^0.15.2",
@@ -66,7 +66,7 @@
66
66
  "@fluidframework/build-common": "^2.0.3",
67
67
  "@fluidframework/build-tools": "^0.39.0",
68
68
  "@fluidframework/eslint-config-fluid": "^5.3.0",
69
- "@fluidframework/odsp-driver-definitions-previous": "npm:@fluidframework/odsp-driver-definitions@2.0.0-rc.4.0.0",
69
+ "@fluidframework/odsp-driver-definitions-previous": "npm:@fluidframework/odsp-driver-definitions@2.0.0-rc.5.0.0",
70
70
  "@microsoft/api-extractor": "^7.45.1",
71
71
  "concurrently": "^8.2.1",
72
72
  "copyfiles": "^2.4.1",
@@ -86,7 +86,9 @@
86
86
  "build": "fluid-build . --task build",
87
87
  "build:commonjs": "fluid-build . --task commonjs",
88
88
  "build:compile": "fluid-build . --task compile",
89
- "build:docs": "api-extractor run --local",
89
+ "build:docs": "concurrently \"npm:build:docs:*\"",
90
+ "build:docs:current": "api-extractor run --local",
91
+ "build:docs:legacy": "api-extractor run --local --config api-extractor/api-extractor.legacy.json",
90
92
  "build:esnext": "tsc --project ./tsconfig.json",
91
93
  "build:test": "npm run build:test:esm && npm run build:test:cjs",
92
94
  "build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
@@ -103,7 +105,9 @@
103
105
  "check:exports:esm:public": "api-extractor run --config api-extractor/api-extractor-lint-public.esm.json",
104
106
  "check:format": "npm run check:biome",
105
107
  "check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
106
- "ci:build:docs": "api-extractor run",
108
+ "ci:build:docs": "concurrently \"npm:ci:build:docs:*\"",
109
+ "ci:build:docs:current": "api-extractor run",
110
+ "ci:build:docs:legacy": "api-extractor run --config api-extractor/api-extractor.legacy.json",
107
111
  "clean": "rimraf --glob dist lib \"*.d.ts\" \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
108
112
  "eslint": "eslint --format stylish src",
109
113
  "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
@@ -113,7 +117,7 @@
113
117
  "lint": "fluid-build . --task lint",
114
118
  "lint:fix": "fluid-build . --task eslint:fix --task format",
115
119
  "tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist",
116
- "typetests:gen": "flub generate typetests --dir . -v --publicFallback",
120
+ "typetests:gen": "flub generate typetests --dir . -v",
117
121
  "typetests:prepare": "flub typetests --dir . --reset --previous --normalize"
118
122
  }
119
123
  }