@fluidframework/runtime-definitions 2.0.0-internal.7.0.1 → 2.0.0-internal.7.1.1
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/CHANGELOG.md +4 -0
- package/api-extractor.json +9 -1
- package/api-report/runtime-definitions.api.md +532 -0
- package/dist/dataStoreContext.d.ts +1 -1
- package/dist/dataStoreContext.d.ts.map +1 -1
- package/dist/dataStoreContext.js.map +1 -1
- package/dist/runtime-definitions-alpha.d.ts +1189 -0
- package/dist/runtime-definitions-beta.d.ts +1126 -0
- package/dist/runtime-definitions-public.d.ts +1126 -0
- package/dist/runtime-definitions.d.ts +1193 -0
- package/dist/tsdoc-metadata.json +1 -1
- package/package.json +15 -28
- package/src/dataStoreContext.ts +1 -1
package/dist/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/runtime-definitions",
|
|
3
|
-
"version": "2.0.0-internal.7.
|
|
3
|
+
"version": "2.0.0-internal.7.1.1",
|
|
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.
|
|
18
|
-
"@fluidframework/core-interfaces": ">=2.0.0-internal.7.
|
|
19
|
-
"@fluidframework/driver-definitions": ">=2.0.0-internal.7.
|
|
17
|
+
"@fluidframework/container-definitions": ">=2.0.0-internal.7.1.1 <2.0.0-internal.7.2.0",
|
|
18
|
+
"@fluidframework/core-interfaces": ">=2.0.0-internal.7.1.1 <2.0.0-internal.7.2.0",
|
|
19
|
+
"@fluidframework/driver-definitions": ">=2.0.0-internal.7.1.1 <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
|
-
"@fluidframework/build-common": "^2.0.
|
|
25
|
-
"@fluidframework/build-tools": "^0.
|
|
26
|
-
"@fluidframework/eslint-config-fluid": "^
|
|
27
|
-
"@fluidframework/runtime-definitions-previous": "npm:@fluidframework/runtime-definitions@2.0.0-internal.
|
|
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.1.0",
|
|
28
28
|
"@microsoft/api-extractor": "^7.37.0",
|
|
29
29
|
"copyfiles": "^2.4.1",
|
|
30
|
-
"eslint": "~8.
|
|
31
|
-
"eslint-plugin-deprecation": "~
|
|
32
|
-
"prettier": "~
|
|
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
|
|
42
|
+
"build:docs": "api-extractor run --local",
|
|
56
43
|
"build:test": "tsc --project ./src/test/tsconfig.json",
|
|
57
|
-
"ci:build:docs": "api-extractor run
|
|
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",
|
package/src/dataStoreContext.ts
CHANGED
|
@@ -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);
|