@fluidframework/core-interfaces 2.60.0 → 2.61.0-355516
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/.mocharc.cjs +10 -0
- package/dist/legacy.d.ts +4 -2
- package/dist/public.d.ts +2 -1
- package/lib/legacy.d.ts +4 -2
- package/lib/public.d.ts +2 -1
- package/lib/tsdoc-metadata.json +1 -1
- package/package.json +10 -10
package/.mocharc.cjs
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
|
|
3
|
+
* Licensed under the MIT License.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
"use strict";
|
|
7
|
+
|
|
8
|
+
// @fluid-internal/mocha-test-setup depends on this package, so we can't use it.
|
|
9
|
+
|
|
10
|
+
module.exports = { recursive: true };
|
package/dist/legacy.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
export {
|
|
12
|
-
// @public APIs
|
|
12
|
+
// #region @public APIs
|
|
13
13
|
ConfigTypes,
|
|
14
14
|
ErasedType,
|
|
15
15
|
ExtendEventProvider,
|
|
@@ -44,8 +44,9 @@ export {
|
|
|
44
44
|
TelemetryBaseEventPropertyType,
|
|
45
45
|
TransformedEvent,
|
|
46
46
|
fluidHandleSymbol,
|
|
47
|
+
// #endregion
|
|
47
48
|
|
|
48
|
-
// @
|
|
49
|
+
// #region @legacyBeta APIs
|
|
49
50
|
FluidErrorTypes,
|
|
50
51
|
IFluidHandleContext,
|
|
51
52
|
IFluidHandleEvents,
|
|
@@ -59,4 +60,5 @@ export {
|
|
|
59
60
|
IThrottlingWarning,
|
|
60
61
|
PayloadState,
|
|
61
62
|
TypedMessage
|
|
63
|
+
// #endregion
|
|
62
64
|
} from "./index.js";
|
package/dist/public.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
export {
|
|
12
|
-
// @public APIs
|
|
12
|
+
// #region @public APIs
|
|
13
13
|
ConfigTypes,
|
|
14
14
|
ErasedType,
|
|
15
15
|
ExtendEventProvider,
|
|
@@ -44,4 +44,5 @@ export {
|
|
|
44
44
|
TelemetryBaseEventPropertyType,
|
|
45
45
|
TransformedEvent,
|
|
46
46
|
fluidHandleSymbol
|
|
47
|
+
// #endregion
|
|
47
48
|
} from "./index.js";
|
package/lib/legacy.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
export {
|
|
12
|
-
// @public APIs
|
|
12
|
+
// #region @public APIs
|
|
13
13
|
ConfigTypes,
|
|
14
14
|
ErasedType,
|
|
15
15
|
ExtendEventProvider,
|
|
@@ -44,8 +44,9 @@ export {
|
|
|
44
44
|
TelemetryBaseEventPropertyType,
|
|
45
45
|
TransformedEvent,
|
|
46
46
|
fluidHandleSymbol,
|
|
47
|
+
// #endregion
|
|
47
48
|
|
|
48
|
-
// @
|
|
49
|
+
// #region @legacyBeta APIs
|
|
49
50
|
FluidErrorTypes,
|
|
50
51
|
IFluidHandleContext,
|
|
51
52
|
IFluidHandleEvents,
|
|
@@ -59,4 +60,5 @@ export {
|
|
|
59
60
|
IThrottlingWarning,
|
|
60
61
|
PayloadState,
|
|
61
62
|
TypedMessage
|
|
63
|
+
// #endregion
|
|
62
64
|
} from "./index.js";
|
package/lib/public.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
export {
|
|
12
|
-
// @public APIs
|
|
12
|
+
// #region @public APIs
|
|
13
13
|
ConfigTypes,
|
|
14
14
|
ErasedType,
|
|
15
15
|
ExtendEventProvider,
|
|
@@ -44,4 +44,5 @@ export {
|
|
|
44
44
|
TelemetryBaseEventPropertyType,
|
|
45
45
|
TransformedEvent,
|
|
46
46
|
fluidHandleSymbol
|
|
47
|
+
// #endregion
|
|
47
48
|
} from "./index.js";
|
package/lib/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/core-interfaces",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.61.0-355516",
|
|
4
4
|
"description": "Fluid object interfaces",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -73,15 +73,15 @@
|
|
|
73
73
|
"devDependencies": {
|
|
74
74
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
75
75
|
"@biomejs/biome": "~1.9.3",
|
|
76
|
-
"@fluid-tools/build-cli": "^0.
|
|
76
|
+
"@fluid-tools/build-cli": "^0.58.1",
|
|
77
77
|
"@fluidframework/build-common": "^2.0.3",
|
|
78
|
-
"@fluidframework/build-tools": "^0.
|
|
79
|
-
"@fluidframework/core-interfaces-previous": "npm:@fluidframework/core-interfaces@2.
|
|
78
|
+
"@fluidframework/build-tools": "^0.58.1",
|
|
79
|
+
"@fluidframework/core-interfaces-previous": "npm:@fluidframework/core-interfaces@2.60.0",
|
|
80
80
|
"@fluidframework/eslint-config-fluid": "^6.0.0",
|
|
81
|
-
"@microsoft/api-extractor": "7.52.
|
|
81
|
+
"@microsoft/api-extractor": "7.52.11",
|
|
82
82
|
"@types/mocha": "^10.0.10",
|
|
83
83
|
"@types/node": "^18.19.0",
|
|
84
|
-
"c8": "^
|
|
84
|
+
"c8": "^10.1.3",
|
|
85
85
|
"concurrently": "^8.2.1",
|
|
86
86
|
"copyfiles": "^2.4.1",
|
|
87
87
|
"cross-env": "^7.0.3",
|
|
@@ -104,8 +104,8 @@
|
|
|
104
104
|
},
|
|
105
105
|
"scripts": {
|
|
106
106
|
"api": "fluid-build . --task api",
|
|
107
|
-
"api-extractor:commonjs": "flub generate entrypoints --outDir ./dist",
|
|
108
|
-
"api-extractor:esnext": "flub generate entrypoints --outDir ./lib --node10TypeCompat",
|
|
107
|
+
"api-extractor:commonjs": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./dist",
|
|
108
|
+
"api-extractor:esnext": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat",
|
|
109
109
|
"build": "fluid-build . --task build",
|
|
110
110
|
"build:api-reports": "concurrently \"npm:build:api-reports:*\"",
|
|
111
111
|
"build:api-reports:current": "api-extractor run --local --config api-extractor/api-extractor.current.json",
|
|
@@ -143,8 +143,8 @@
|
|
|
143
143
|
"test": "npm run test:mocha",
|
|
144
144
|
"test:coverage": "c8 npm test",
|
|
145
145
|
"test:mocha": "npm run test:mocha:esm && echo skipping cjs to avoid overhead - npm run test:mocha:cjs",
|
|
146
|
-
"test:mocha:cjs": "mocha
|
|
147
|
-
"test:mocha:esm": "mocha
|
|
146
|
+
"test:mocha:cjs": "mocha dist/test",
|
|
147
|
+
"test:mocha:esm": "mocha lib/test",
|
|
148
148
|
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
|
|
149
149
|
"tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && npm run place:cjs:package-stub",
|
|
150
150
|
"tsc:watch": "npm run place:cjs:package-stub && fluid-tsc commonjs --project ./tsconfig.cjs.json --watch",
|