fluid-framework 2.63.0-359461 → 2.63.0-359962

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/lib/public.d.ts CHANGED
@@ -83,6 +83,7 @@ export {
83
83
  NodeKind,
84
84
  NodeSchemaMetadata,
85
85
  NodeSchemaOptions,
86
+ NumberKeys,
86
87
  ObjectFromSchemaRecord,
87
88
  Off,
88
89
  ReadonlyArrayNode,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fluid-framework",
3
- "version": "2.63.0-359461",
3
+ "version": "2.63.0-359962",
4
4
  "description": "The main entry point into Fluid Framework public packages",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -57,17 +57,17 @@
57
57
  "main": "lib/index.js",
58
58
  "types": "lib/public.d.ts",
59
59
  "dependencies": {
60
- "@fluidframework/container-definitions": "2.63.0-359461",
61
- "@fluidframework/container-loader": "2.63.0-359461",
62
- "@fluidframework/core-interfaces": "2.63.0-359461",
63
- "@fluidframework/core-utils": "2.63.0-359461",
64
- "@fluidframework/driver-definitions": "2.63.0-359461",
65
- "@fluidframework/fluid-static": "2.63.0-359461",
66
- "@fluidframework/map": "2.63.0-359461",
67
- "@fluidframework/runtime-utils": "2.63.0-359461",
68
- "@fluidframework/sequence": "2.63.0-359461",
69
- "@fluidframework/shared-object-base": "2.63.0-359461",
70
- "@fluidframework/tree": "2.63.0-359461"
60
+ "@fluidframework/container-definitions": "2.63.0-359962",
61
+ "@fluidframework/container-loader": "2.63.0-359962",
62
+ "@fluidframework/core-interfaces": "2.63.0-359962",
63
+ "@fluidframework/core-utils": "2.63.0-359962",
64
+ "@fluidframework/driver-definitions": "2.63.0-359962",
65
+ "@fluidframework/fluid-static": "2.63.0-359962",
66
+ "@fluidframework/map": "2.63.0-359962",
67
+ "@fluidframework/runtime-utils": "2.63.0-359962",
68
+ "@fluidframework/sequence": "2.63.0-359962",
69
+ "@fluidframework/shared-object-base": "2.63.0-359962",
70
+ "@fluidframework/tree": "2.63.0-359962"
71
71
  },
72
72
  "devDependencies": {
73
73
  "@arethetypeswrong/cli": "^0.17.1",
package/src/index.ts CHANGED
@@ -61,6 +61,8 @@ export type {
61
61
  Off,
62
62
  /* eslint-enable import/export */
63
63
  } from "@fluidframework/core-interfaces";
64
+ export type { ErasedBaseType } from "@fluidframework/core-interfaces/internal";
65
+
64
66
  // This is an alpha API, but this package doesn't have an alpha entry point so its imported from "internal".
65
67
  export { onAssertionFailure } from "@fluidframework/core-utils/internal";
66
68