@fluidframework/app-insights-logger 2.60.0 → 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/.mocharc.cjs CHANGED
@@ -7,6 +7,5 @@
7
7
 
8
8
  const getFluidTestMochaConfig = require("@fluid-internal/mocha-test-setup/mocharc-common");
9
9
 
10
- const packageDir = __dirname;
11
- const config = getFluidTestMochaConfig(packageDir);
10
+ const config = getFluidTestMochaConfig(__dirname);
12
11
  module.exports = config;
package/beta.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/beta.js";
11
+ export * from "lib/beta.js";
package/dist/beta.d.ts CHANGED
@@ -15,11 +15,12 @@
15
15
  */
16
16
 
17
17
  export {
18
- // @beta APIs
18
+ // #region @beta APIs
19
19
  CategoryFilter,
20
20
  FluidAppInsightsLoggerConfig,
21
21
  NamespaceFilter,
22
22
  TelemetryEventCategory,
23
23
  TelemetryFilter,
24
24
  createLogger
25
+ // #endregion
25
26
  } 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/lib/beta.d.ts CHANGED
@@ -15,11 +15,12 @@
15
15
  */
16
16
 
17
17
  export {
18
- // @beta APIs
18
+ // #region @beta APIs
19
19
  CategoryFilter,
20
20
  FluidAppInsightsLoggerConfig,
21
21
  NamespaceFilter,
22
22
  TelemetryEventCategory,
23
23
  TelemetryFilter,
24
24
  createLogger
25
+ // #endregion
25
26
  } 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/app-insights-logger",
3
- "version": "2.60.0",
3
+ "version": "2.61.0-355054",
4
4
  "description": "Contains a Fluid logging client that sends telemetry events to Azure App Insights",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -47,19 +47,19 @@
47
47
  "main": "lib/index.js",
48
48
  "types": "lib/public.d.ts",
49
49
  "dependencies": {
50
- "@fluidframework/core-interfaces": "~2.60.0",
50
+ "@fluidframework/core-interfaces": "2.61.0-355054",
51
51
  "@microsoft/applicationinsights-web": "^2.8.11",
52
52
  "@ungap/structured-clone": "^1.2.0"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@arethetypeswrong/cli": "^0.17.1",
56
56
  "@biomejs/biome": "~1.9.3",
57
- "@fluid-internal/mocha-test-setup": "~2.60.0",
58
- "@fluid-tools/build-cli": "^0.57.0",
59
- "@fluidframework/app-insights-logger-previous": "npm:@fluidframework/app-insights-logger@2.53.0",
57
+ "@fluid-internal/mocha-test-setup": "2.61.0-355054",
58
+ "@fluid-tools/build-cli": "^0.58.2",
59
+ "@fluidframework/app-insights-logger-previous": "npm:@fluidframework/app-insights-logger@2.60.0",
60
60
  "@fluidframework/build-common": "^2.0.3",
61
- "@fluidframework/build-tools": "^0.57.0",
62
- "@microsoft/api-extractor": "7.52.8",
61
+ "@fluidframework/build-tools": "^0.58.2",
62
+ "@microsoft/api-extractor": "7.52.11",
63
63
  "@types/mocha": "^10.0.10",
64
64
  "@types/node": "^18.19.0",
65
65
  "@types/sinon": "^17.0.3",
@@ -134,8 +134,8 @@
134
134
  "lint:fix": "fluid-build . --task eslint:fix --task format",
135
135
  "test": "npm run test:mocha",
136
136
  "test:mocha": "npm run test:mocha:esm && echo skipping cjs to avoid overhead - npm run test:mocha:cjs",
137
- "test:mocha:cjs": "mocha --recursive \"dist/test/**/*.spec.*js\"",
138
- "test:mocha:esm": "mocha --recursive \"lib/test/**/*.spec.*js\"",
137
+ "test:mocha:cjs": "cross-env MOCHA_SPEC=dist/test mocha",
138
+ "test:mocha:esm": "mocha",
139
139
  "test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
140
140
  "tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../../common/build/build-common/src/cjs/package.json ./dist",
141
141
  "typetests:gen": "flub generate typetests --dir . -v",