@fluidframework/runtime-definitions 2.0.0-internal.7.0.0 → 2.0.0-internal.7.1.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.
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.37.0"
8
+ "packageVersion": "7.38.0"
9
9
  }
10
10
  ]
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/runtime-definitions",
3
- "version": "2.0.0-internal.7.0.0",
3
+ "version": "2.0.0-internal.7.1.0",
4
4
  "description": "Fluid Runtime definitions",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -14,47 +14,34 @@
14
14
  "main": "dist/index.js",
15
15
  "types": "dist/index.d.ts",
16
16
  "dependencies": {
17
- "@fluidframework/container-definitions": ">=2.0.0-internal.7.0.0 <2.0.0-internal.7.1.0",
18
- "@fluidframework/core-interfaces": ">=2.0.0-internal.7.0.0 <2.0.0-internal.7.1.0",
19
- "@fluidframework/driver-definitions": ">=2.0.0-internal.7.0.0 <2.0.0-internal.7.1.0",
17
+ "@fluidframework/container-definitions": ">=2.0.0-internal.7.1.0 <2.0.0-internal.7.2.0",
18
+ "@fluidframework/core-interfaces": ">=2.0.0-internal.7.1.0 <2.0.0-internal.7.2.0",
19
+ "@fluidframework/driver-definitions": ">=2.0.0-internal.7.1.0 <2.0.0-internal.7.2.0",
20
20
  "@fluidframework/protocol-definitions": "^3.0.0"
21
21
  },
22
22
  "devDependencies": {
23
- "@fluid-tools/build-cli": "^0.24.0",
24
- "@fluidframework/build-common": "^2.0.0",
25
- "@fluidframework/build-tools": "^0.24.0",
26
- "@fluidframework/eslint-config-fluid": "^2.1.0",
27
- "@fluidframework/runtime-definitions-previous": "npm:@fluidframework/runtime-definitions@2.0.0-internal.6.3.0",
23
+ "@fluid-tools/build-cli": "^0.25.0",
24
+ "@fluidframework/build-common": "^2.0.1",
25
+ "@fluidframework/build-tools": "^0.25.0",
26
+ "@fluidframework/eslint-config-fluid": "^3.0.0",
27
+ "@fluidframework/runtime-definitions-previous": "npm:@fluidframework/runtime-definitions@2.0.0-internal.7.0.0",
28
28
  "@microsoft/api-extractor": "^7.37.0",
29
29
  "copyfiles": "^2.4.1",
30
- "eslint": "~8.6.0",
31
- "eslint-plugin-deprecation": "~1.5.0",
32
- "prettier": "~2.6.2",
30
+ "eslint": "~8.50.0",
31
+ "eslint-plugin-deprecation": "~2.0.0",
32
+ "prettier": "~3.0.3",
33
33
  "rimraf": "^4.4.0",
34
34
  "typescript": "~5.1.6"
35
35
  },
36
36
  "typeValidation": {
37
- "broken": {
38
- "InterfaceDeclaration_IDataStore": {
39
- "forwardCompat": false
40
- },
41
- "InterfaceDeclaration_IFluidDataStoreChannel": {
42
- "forwardCompat": false
43
- },
44
- "InterfaceDeclaration_IFluidDataStoreContextDetached": {
45
- "backCompat": false
46
- },
47
- "InterfaceDeclaration_IFluidDataStoreContext": {
48
- "backCompat": false
49
- }
50
- }
37
+ "broken": {}
51
38
  },
52
39
  "scripts": {
53
40
  "build": "fluid-build . --task build",
54
41
  "build:compile": "fluid-build . --task compile",
55
- "build:docs": "api-extractor run --local --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
42
+ "build:docs": "api-extractor run --local",
56
43
  "build:test": "tsc --project ./src/test/tsconfig.json",
57
- "ci:build:docs": "api-extractor run --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/* ../../../_api-extractor-temp/",
44
+ "ci:build:docs": "api-extractor run",
58
45
  "clean": "rimraf --glob 'dist' '*.tsbuildinfo' '*.build.log' '_api-extractor-temp'",
59
46
  "eslint": "eslint --format stylish src",
60
47
  "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
@@ -101,7 +101,7 @@ export const VisibilityState = {
101
101
  */
102
102
  GloballyVisible: "GloballyVisible",
103
103
  };
104
- export type VisibilityState = typeof VisibilityState[keyof typeof VisibilityState];
104
+ export type VisibilityState = (typeof VisibilityState)[keyof typeof VisibilityState];
105
105
 
106
106
  export interface IContainerRuntimeBaseEvents extends IEvent {
107
107
  (event: "batchBegin", listener: (op: ISequencedDocumentMessage) => void);