@fluidframework/debugger 2.53.1 → 2.61.0-355054

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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # @fluidframework/debugger
2
2
 
3
+ ## 2.60.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.53.0
4
8
 
5
9
  Dependency updates only.
@@ -1,10 +1,10 @@
1
- ## Alpha API Report File for "@fluidframework/debugger"
1
+ ## Beta API Report File for "@fluidframework/debugger"
2
2
 
3
3
  > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
4
 
5
5
  ```ts
6
6
 
7
- // @alpha @legacy (undocumented)
7
+ // @beta @legacy (undocumented)
8
8
  export namespace FluidDebugger {
9
9
  // @legacy (undocumented)
10
10
  export function createFromServiceFactory(documentServiceFactory: IDocumentServiceFactory): Promise<IDocumentServiceFactory>;
@@ -5,7 +5,7 @@
5
5
  import { IDocumentService, IDocumentServiceFactory } from "@fluidframework/driver-definitions/internal";
6
6
  /**
7
7
  * @legacy
8
- * @alpha
8
+ * @beta
9
9
  */
10
10
  export declare namespace FluidDebugger {
11
11
  /**
@@ -18,7 +18,7 @@ export declare namespace FluidDebugger {
18
18
  function createFromService(documentService: IDocumentService): Promise<IDocumentService>;
19
19
  /**
20
20
  * @legacy
21
- * @alpha
21
+ * @beta
22
22
  */
23
23
  function createFromServiceFactory(documentServiceFactory: IDocumentServiceFactory): Promise<IDocumentServiceFactory>;
24
24
  }
@@ -10,7 +10,7 @@ const fluidDebuggerController_js_1 = require("./fluidDebuggerController.js");
10
10
  const fluidDebuggerUi_js_1 = require("./fluidDebuggerUi.js");
11
11
  /**
12
12
  * @legacy
13
- * @alpha
13
+ * @beta
14
14
  */
15
15
  // eslint-disable-next-line @typescript-eslint/no-namespace
16
16
  var FluidDebugger;
@@ -32,7 +32,7 @@ var FluidDebugger;
32
32
  FluidDebugger.createFromService = createFromService;
33
33
  /**
34
34
  * @legacy
35
- * @alpha
35
+ * @beta
36
36
  */
37
37
  async function createFromServiceFactory(documentServiceFactory) {
38
38
  const controller = createFluidDebugger();
@@ -1 +1 @@
1
- {"version":3,"file":"fluidDebugger.js","sourceRoot":"","sources":["../src/fluidDebugger.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAMH,qEAGgD;AAEhD,6EAAqE;AACrE,6DAAkD;AAElD;;;GAGG;AACH,2DAA2D;AAC3D,IAAiB,aAAa,CAsC7B;AAtCD,WAAiB,aAAa;IAC7B;;;;;;OAMG;IACI,KAAK,UAAU,iBAAiB,CACtC,eAAiC;QAEjC,MAAM,UAAU,GAAG,mBAAmB,EAAE,CAAC;QACzC,IAAI,CAAC,UAAU,EAAE,CAAC;YACjB,OAAO,eAAe,CAAC;QACxB,CAAC;QACD,OAAO,gCAAqB,CAAC,MAAM,CAAC,eAAe,EAAE,UAAU,CAAC,CAAC;IAClE,CAAC;IARqB,+BAAiB,oBAQtC,CAAA;IAED;;;OAGG;IACI,KAAK,UAAU,wBAAwB,CAC7C,sBAA+C;QAE/C,MAAM,UAAU,GAAG,mBAAmB,EAAE,CAAC;QACzC,IAAI,CAAC,UAAU,EAAE,CAAC;YACjB,OAAO,sBAAsB,CAAC;QAC/B,CAAC;QACD,OAAO,IAAI,uCAA4B,CAAC,sBAAsB,EAAE,UAAU,CAAC,CAAC;IAC7E,CAAC;IARqB,sCAAwB,2BAQ7C,CAAA;IAED;;;OAGG;IACH,MAAM,mBAAmB,GAAG,GAAG,EAAE,CAChC,kDAAqB,CAAC,MAAM,CAAC,CAAC,UAAU,EAAE,EAAE,CAAC,+BAAU,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,CAAC;AAC9E,CAAC,EAtCgB,aAAa,6BAAb,aAAa,QAsC7B","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport {\n\tIDocumentService,\n\tIDocumentServiceFactory,\n} from \"@fluidframework/driver-definitions/internal\";\nimport {\n\tReplayDocumentService,\n\tReplayDocumentServiceFactory,\n} from \"@fluidframework/replay-driver/internal\";\n\nimport { DebugReplayController } from \"./fluidDebuggerController.js\";\nimport { DebuggerUI } from \"./fluidDebuggerUi.js\";\n\n/**\n * @legacy\n * @alpha\n */\n// eslint-disable-next-line @typescript-eslint/no-namespace\nexport namespace FluidDebugger {\n\t/**\n\t * Creates document service wrapper that pops up Debugger window and allows user to play ops one by one.\n\t * User can chose to start with any snapshot\n\t * If pop-ups are disabled, we continue without debugger.\n\t * @param documentService - original document service to use to fetch ops / snapshots.\n\t * @internal\n\t */\n\texport async function createFromService(\n\t\tdocumentService: IDocumentService,\n\t): Promise<IDocumentService> {\n\t\tconst controller = createFluidDebugger();\n\t\tif (!controller) {\n\t\t\treturn documentService;\n\t\t}\n\t\treturn ReplayDocumentService.create(documentService, controller);\n\t}\n\n\t/**\n\t * @legacy\n\t * @alpha\n\t */\n\texport async function createFromServiceFactory(\n\t\tdocumentServiceFactory: IDocumentServiceFactory,\n\t): Promise<IDocumentServiceFactory> {\n\t\tconst controller = createFluidDebugger();\n\t\tif (!controller) {\n\t\t\treturn documentServiceFactory;\n\t\t}\n\t\treturn new ReplayDocumentServiceFactory(documentServiceFactory, controller);\n\t}\n\n\t/**\n\t * Binds DebuggerUI & DebugReplayController together\n\t * These classes do not know each other and talk through interfaces\n\t */\n\tconst createFluidDebugger = () =>\n\t\tDebugReplayController.create((controller) => DebuggerUI.create(controller));\n}\n"]}
1
+ {"version":3,"file":"fluidDebugger.js","sourceRoot":"","sources":["../src/fluidDebugger.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAMH,qEAGgD;AAEhD,6EAAqE;AACrE,6DAAkD;AAElD;;;GAGG;AACH,2DAA2D;AAC3D,IAAiB,aAAa,CAsC7B;AAtCD,WAAiB,aAAa;IAC7B;;;;;;OAMG;IACI,KAAK,UAAU,iBAAiB,CACtC,eAAiC;QAEjC,MAAM,UAAU,GAAG,mBAAmB,EAAE,CAAC;QACzC,IAAI,CAAC,UAAU,EAAE,CAAC;YACjB,OAAO,eAAe,CAAC;QACxB,CAAC;QACD,OAAO,gCAAqB,CAAC,MAAM,CAAC,eAAe,EAAE,UAAU,CAAC,CAAC;IAClE,CAAC;IARqB,+BAAiB,oBAQtC,CAAA;IAED;;;OAGG;IACI,KAAK,UAAU,wBAAwB,CAC7C,sBAA+C;QAE/C,MAAM,UAAU,GAAG,mBAAmB,EAAE,CAAC;QACzC,IAAI,CAAC,UAAU,EAAE,CAAC;YACjB,OAAO,sBAAsB,CAAC;QAC/B,CAAC;QACD,OAAO,IAAI,uCAA4B,CAAC,sBAAsB,EAAE,UAAU,CAAC,CAAC;IAC7E,CAAC;IARqB,sCAAwB,2BAQ7C,CAAA;IAED;;;OAGG;IACH,MAAM,mBAAmB,GAAG,GAAG,EAAE,CAChC,kDAAqB,CAAC,MAAM,CAAC,CAAC,UAAU,EAAE,EAAE,CAAC,+BAAU,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,CAAC;AAC9E,CAAC,EAtCgB,aAAa,6BAAb,aAAa,QAsC7B","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport {\n\tIDocumentService,\n\tIDocumentServiceFactory,\n} from \"@fluidframework/driver-definitions/internal\";\nimport {\n\tReplayDocumentService,\n\tReplayDocumentServiceFactory,\n} from \"@fluidframework/replay-driver/internal\";\n\nimport { DebugReplayController } from \"./fluidDebuggerController.js\";\nimport { DebuggerUI } from \"./fluidDebuggerUi.js\";\n\n/**\n * @legacy\n * @beta\n */\n// eslint-disable-next-line @typescript-eslint/no-namespace\nexport namespace FluidDebugger {\n\t/**\n\t * Creates document service wrapper that pops up Debugger window and allows user to play ops one by one.\n\t * User can chose to start with any snapshot\n\t * If pop-ups are disabled, we continue without debugger.\n\t * @param documentService - original document service to use to fetch ops / snapshots.\n\t * @internal\n\t */\n\texport async function createFromService(\n\t\tdocumentService: IDocumentService,\n\t): Promise<IDocumentService> {\n\t\tconst controller = createFluidDebugger();\n\t\tif (!controller) {\n\t\t\treturn documentService;\n\t\t}\n\t\treturn ReplayDocumentService.create(documentService, controller);\n\t}\n\n\t/**\n\t * @legacy\n\t * @beta\n\t */\n\texport async function createFromServiceFactory(\n\t\tdocumentServiceFactory: IDocumentServiceFactory,\n\t): Promise<IDocumentServiceFactory> {\n\t\tconst controller = createFluidDebugger();\n\t\tif (!controller) {\n\t\t\treturn documentServiceFactory;\n\t\t}\n\t\treturn new ReplayDocumentServiceFactory(documentServiceFactory, controller);\n\t}\n\n\t/**\n\t * Binds DebuggerUI & DebugReplayController together\n\t * These classes do not know each other and talk through interfaces\n\t */\n\tconst createFluidDebugger = () =>\n\t\tDebugReplayController.create((controller) => DebuggerUI.create(controller));\n}\n"]}
package/dist/legacy.d.ts CHANGED
@@ -9,6 +9,7 @@
9
9
  */
10
10
 
11
11
  export {
12
- // @legacy APIs
12
+ // #region @legacyBeta APIs
13
13
  FluidDebugger
14
+ // #endregion
14
15
  } from "./index.js";
package/internal.d.ts CHANGED
@@ -8,4 +8,4 @@
8
8
  * Generated by "flub generate entrypoints" in @fluid-tools/build-cli.
9
9
  */
10
10
 
11
- export * from "./lib/index.js";
11
+ export * from "lib/index.js";
package/legacy.d.ts CHANGED
@@ -8,4 +8,4 @@
8
8
  * Generated by "flub generate entrypoints" in @fluid-tools/build-cli.
9
9
  */
10
10
 
11
- export * from "./lib/legacy.js";
11
+ export * from "lib/legacy.js";
@@ -5,7 +5,7 @@
5
5
  import { IDocumentService, IDocumentServiceFactory } from "@fluidframework/driver-definitions/internal";
6
6
  /**
7
7
  * @legacy
8
- * @alpha
8
+ * @beta
9
9
  */
10
10
  export declare namespace FluidDebugger {
11
11
  /**
@@ -18,7 +18,7 @@ export declare namespace FluidDebugger {
18
18
  function createFromService(documentService: IDocumentService): Promise<IDocumentService>;
19
19
  /**
20
20
  * @legacy
21
- * @alpha
21
+ * @beta
22
22
  */
23
23
  function createFromServiceFactory(documentServiceFactory: IDocumentServiceFactory): Promise<IDocumentServiceFactory>;
24
24
  }
@@ -7,7 +7,7 @@ import { DebugReplayController } from "./fluidDebuggerController.js";
7
7
  import { DebuggerUI } from "./fluidDebuggerUi.js";
8
8
  /**
9
9
  * @legacy
10
- * @alpha
10
+ * @beta
11
11
  */
12
12
  // eslint-disable-next-line @typescript-eslint/no-namespace
13
13
  export var FluidDebugger;
@@ -29,7 +29,7 @@ export var FluidDebugger;
29
29
  FluidDebugger.createFromService = createFromService;
30
30
  /**
31
31
  * @legacy
32
- * @alpha
32
+ * @beta
33
33
  */
34
34
  async function createFromServiceFactory(documentServiceFactory) {
35
35
  const controller = createFluidDebugger();
@@ -1 +1 @@
1
- {"version":3,"file":"fluidDebugger.js","sourceRoot":"","sources":["../src/fluidDebugger.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAMH,OAAO,EACN,qBAAqB,EACrB,4BAA4B,GAC5B,MAAM,wCAAwC,CAAC;AAEhD,OAAO,EAAE,qBAAqB,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD;;;GAGG;AACH,2DAA2D;AAC3D,MAAM,KAAW,aAAa,CAsC7B;AAtCD,WAAiB,aAAa;IAC7B;;;;;;OAMG;IACI,KAAK,UAAU,iBAAiB,CACtC,eAAiC;QAEjC,MAAM,UAAU,GAAG,mBAAmB,EAAE,CAAC;QACzC,IAAI,CAAC,UAAU,EAAE,CAAC;YACjB,OAAO,eAAe,CAAC;QACxB,CAAC;QACD,OAAO,qBAAqB,CAAC,MAAM,CAAC,eAAe,EAAE,UAAU,CAAC,CAAC;IAClE,CAAC;IARqB,+BAAiB,oBAQtC,CAAA;IAED;;;OAGG;IACI,KAAK,UAAU,wBAAwB,CAC7C,sBAA+C;QAE/C,MAAM,UAAU,GAAG,mBAAmB,EAAE,CAAC;QACzC,IAAI,CAAC,UAAU,EAAE,CAAC;YACjB,OAAO,sBAAsB,CAAC;QAC/B,CAAC;QACD,OAAO,IAAI,4BAA4B,CAAC,sBAAsB,EAAE,UAAU,CAAC,CAAC;IAC7E,CAAC;IARqB,sCAAwB,2BAQ7C,CAAA;IAED;;;OAGG;IACH,MAAM,mBAAmB,GAAG,GAAG,EAAE,CAChC,qBAAqB,CAAC,MAAM,CAAC,CAAC,UAAU,EAAE,EAAE,CAAC,UAAU,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,CAAC;AAC9E,CAAC,EAtCgB,aAAa,KAAb,aAAa,QAsC7B","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport {\n\tIDocumentService,\n\tIDocumentServiceFactory,\n} from \"@fluidframework/driver-definitions/internal\";\nimport {\n\tReplayDocumentService,\n\tReplayDocumentServiceFactory,\n} from \"@fluidframework/replay-driver/internal\";\n\nimport { DebugReplayController } from \"./fluidDebuggerController.js\";\nimport { DebuggerUI } from \"./fluidDebuggerUi.js\";\n\n/**\n * @legacy\n * @alpha\n */\n// eslint-disable-next-line @typescript-eslint/no-namespace\nexport namespace FluidDebugger {\n\t/**\n\t * Creates document service wrapper that pops up Debugger window and allows user to play ops one by one.\n\t * User can chose to start with any snapshot\n\t * If pop-ups are disabled, we continue without debugger.\n\t * @param documentService - original document service to use to fetch ops / snapshots.\n\t * @internal\n\t */\n\texport async function createFromService(\n\t\tdocumentService: IDocumentService,\n\t): Promise<IDocumentService> {\n\t\tconst controller = createFluidDebugger();\n\t\tif (!controller) {\n\t\t\treturn documentService;\n\t\t}\n\t\treturn ReplayDocumentService.create(documentService, controller);\n\t}\n\n\t/**\n\t * @legacy\n\t * @alpha\n\t */\n\texport async function createFromServiceFactory(\n\t\tdocumentServiceFactory: IDocumentServiceFactory,\n\t): Promise<IDocumentServiceFactory> {\n\t\tconst controller = createFluidDebugger();\n\t\tif (!controller) {\n\t\t\treturn documentServiceFactory;\n\t\t}\n\t\treturn new ReplayDocumentServiceFactory(documentServiceFactory, controller);\n\t}\n\n\t/**\n\t * Binds DebuggerUI & DebugReplayController together\n\t * These classes do not know each other and talk through interfaces\n\t */\n\tconst createFluidDebugger = () =>\n\t\tDebugReplayController.create((controller) => DebuggerUI.create(controller));\n}\n"]}
1
+ {"version":3,"file":"fluidDebugger.js","sourceRoot":"","sources":["../src/fluidDebugger.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAMH,OAAO,EACN,qBAAqB,EACrB,4BAA4B,GAC5B,MAAM,wCAAwC,CAAC;AAEhD,OAAO,EAAE,qBAAqB,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD;;;GAGG;AACH,2DAA2D;AAC3D,MAAM,KAAW,aAAa,CAsC7B;AAtCD,WAAiB,aAAa;IAC7B;;;;;;OAMG;IACI,KAAK,UAAU,iBAAiB,CACtC,eAAiC;QAEjC,MAAM,UAAU,GAAG,mBAAmB,EAAE,CAAC;QACzC,IAAI,CAAC,UAAU,EAAE,CAAC;YACjB,OAAO,eAAe,CAAC;QACxB,CAAC;QACD,OAAO,qBAAqB,CAAC,MAAM,CAAC,eAAe,EAAE,UAAU,CAAC,CAAC;IAClE,CAAC;IARqB,+BAAiB,oBAQtC,CAAA;IAED;;;OAGG;IACI,KAAK,UAAU,wBAAwB,CAC7C,sBAA+C;QAE/C,MAAM,UAAU,GAAG,mBAAmB,EAAE,CAAC;QACzC,IAAI,CAAC,UAAU,EAAE,CAAC;YACjB,OAAO,sBAAsB,CAAC;QAC/B,CAAC;QACD,OAAO,IAAI,4BAA4B,CAAC,sBAAsB,EAAE,UAAU,CAAC,CAAC;IAC7E,CAAC;IARqB,sCAAwB,2BAQ7C,CAAA;IAED;;;OAGG;IACH,MAAM,mBAAmB,GAAG,GAAG,EAAE,CAChC,qBAAqB,CAAC,MAAM,CAAC,CAAC,UAAU,EAAE,EAAE,CAAC,UAAU,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,CAAC;AAC9E,CAAC,EAtCgB,aAAa,KAAb,aAAa,QAsC7B","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport {\n\tIDocumentService,\n\tIDocumentServiceFactory,\n} from \"@fluidframework/driver-definitions/internal\";\nimport {\n\tReplayDocumentService,\n\tReplayDocumentServiceFactory,\n} from \"@fluidframework/replay-driver/internal\";\n\nimport { DebugReplayController } from \"./fluidDebuggerController.js\";\nimport { DebuggerUI } from \"./fluidDebuggerUi.js\";\n\n/**\n * @legacy\n * @beta\n */\n// eslint-disable-next-line @typescript-eslint/no-namespace\nexport namespace FluidDebugger {\n\t/**\n\t * Creates document service wrapper that pops up Debugger window and allows user to play ops one by one.\n\t * User can chose to start with any snapshot\n\t * If pop-ups are disabled, we continue without debugger.\n\t * @param documentService - original document service to use to fetch ops / snapshots.\n\t * @internal\n\t */\n\texport async function createFromService(\n\t\tdocumentService: IDocumentService,\n\t): Promise<IDocumentService> {\n\t\tconst controller = createFluidDebugger();\n\t\tif (!controller) {\n\t\t\treturn documentService;\n\t\t}\n\t\treturn ReplayDocumentService.create(documentService, controller);\n\t}\n\n\t/**\n\t * @legacy\n\t * @beta\n\t */\n\texport async function createFromServiceFactory(\n\t\tdocumentServiceFactory: IDocumentServiceFactory,\n\t): Promise<IDocumentServiceFactory> {\n\t\tconst controller = createFluidDebugger();\n\t\tif (!controller) {\n\t\t\treturn documentServiceFactory;\n\t\t}\n\t\treturn new ReplayDocumentServiceFactory(documentServiceFactory, controller);\n\t}\n\n\t/**\n\t * Binds DebuggerUI & DebugReplayController together\n\t * These classes do not know each other and talk through interfaces\n\t */\n\tconst createFluidDebugger = () =>\n\t\tDebugReplayController.create((controller) => DebuggerUI.create(controller));\n}\n"]}
package/lib/legacy.d.ts CHANGED
@@ -9,6 +9,7 @@
9
9
  */
10
10
 
11
11
  export {
12
- // @legacy APIs
12
+ // #region @legacyBeta APIs
13
13
  FluidDebugger
14
+ // #endregion
14
15
  } from "./index.js";
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.52.8"
8
+ "packageVersion": "7.52.11"
9
9
  }
10
10
  ]
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/debugger",
3
- "version": "2.53.1",
3
+ "version": "2.61.0-355054",
4
4
  "description": "Fluid Debugger - a tool to play through history of a file",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -47,21 +47,21 @@
47
47
  "main": "lib/index.js",
48
48
  "types": "lib/public.d.ts",
49
49
  "dependencies": {
50
- "@fluidframework/core-utils": "~2.53.1",
51
- "@fluidframework/driver-definitions": "~2.53.1",
52
- "@fluidframework/driver-utils": "~2.53.1",
53
- "@fluidframework/replay-driver": "~2.53.1",
50
+ "@fluidframework/core-utils": "2.61.0-355054",
51
+ "@fluidframework/driver-definitions": "2.61.0-355054",
52
+ "@fluidframework/driver-utils": "2.61.0-355054",
53
+ "@fluidframework/replay-driver": "2.61.0-355054",
54
54
  "jsonschema": "^1.2.6"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@arethetypeswrong/cli": "^0.17.1",
58
58
  "@biomejs/biome": "~1.9.3",
59
- "@fluid-tools/build-cli": "^0.57.0",
59
+ "@fluid-tools/build-cli": "^0.58.2",
60
60
  "@fluidframework/build-common": "^2.0.3",
61
- "@fluidframework/build-tools": "^0.57.0",
62
- "@fluidframework/debugger-previous": "npm:@fluidframework/debugger@2.53.0",
63
- "@fluidframework/eslint-config-fluid": "^5.7.4",
64
- "@microsoft/api-extractor": "7.52.8",
61
+ "@fluidframework/build-tools": "^0.58.2",
62
+ "@fluidframework/debugger-previous": "npm:@fluidframework/debugger@2.60.0",
63
+ "@fluidframework/eslint-config-fluid": "^6.0.0",
64
+ "@microsoft/api-extractor": "7.52.11",
65
65
  "@types/node": "^18.19.0",
66
66
  "concurrently": "^8.2.1",
67
67
  "copyfiles": "^2.4.1",
@@ -87,8 +87,8 @@
87
87
  },
88
88
  "scripts": {
89
89
  "api": "fluid-build . --task api",
90
- "api-extractor:commonjs": "flub generate entrypoints --outDir ./dist",
91
- "api-extractor:esnext": "flub generate entrypoints --outDir ./lib --node10TypeCompat",
90
+ "api-extractor:commonjs": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./dist",
91
+ "api-extractor:esnext": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat",
92
92
  "build": "fluid-build . --task build",
93
93
  "build:api-reports": "concurrently \"npm:build:api-reports:*\"",
94
94
  "build:api-reports:current": "api-extractor run --local --config api-extractor/api-extractor.current.json",
@@ -17,7 +17,7 @@ import { DebuggerUI } from "./fluidDebuggerUi.js";
17
17
 
18
18
  /**
19
19
  * @legacy
20
- * @alpha
20
+ * @beta
21
21
  */
22
22
  // eslint-disable-next-line @typescript-eslint/no-namespace
23
23
  export namespace FluidDebugger {
@@ -40,7 +40,7 @@ export namespace FluidDebugger {
40
40
 
41
41
  /**
42
42
  * @legacy
43
- * @alpha
43
+ * @beta
44
44
  */
45
45
  export async function createFromServiceFactory(
46
46
  documentServiceFactory: IDocumentServiceFactory,