fluid-framework 2.61.0-355934 → 2.61.0-356132

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.
@@ -1665,6 +1665,14 @@ export interface TreeAlpha {
1665
1665
  importConcise<const TSchema extends ImplicitFieldSchema | UnsafeUnknownSchema>(schema: UnsafeUnknownSchema extends TSchema ? ImplicitFieldSchema : TSchema & ImplicitFieldSchema, data: ConciseTree | undefined): Unhydrated<TSchema extends ImplicitFieldSchema ? TreeFieldFromImplicitField<TSchema> : TreeNode | TreeLeafValue | undefined>;
1666
1666
  importVerbose<const TSchema extends ImplicitFieldSchema>(schema: TSchema, data: VerboseTree | undefined, options?: TreeParsingOptions): Unhydrated<TreeFieldFromImplicitField<TSchema>>;
1667
1667
  key2(node: TreeNode): string | number | undefined;
1668
+ trackObservations<TResult>(onInvalidation: () => void, trackDuring: () => TResult): {
1669
+ result: TResult;
1670
+ unsubscribe: () => void;
1671
+ };
1672
+ trackObservationsOnce<TResult>(onInvalidation: () => void, trackDuring: () => TResult): {
1673
+ result: TResult;
1674
+ unsubscribe: () => void;
1675
+ };
1668
1676
  }
1669
1677
 
1670
1678
  // @alpha
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fluid-framework",
3
- "version": "2.61.0-355934",
3
+ "version": "2.61.0-356132",
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.61.0-355934",
61
- "@fluidframework/container-loader": "2.61.0-355934",
62
- "@fluidframework/core-interfaces": "2.61.0-355934",
63
- "@fluidframework/core-utils": "2.61.0-355934",
64
- "@fluidframework/driver-definitions": "2.61.0-355934",
65
- "@fluidframework/fluid-static": "2.61.0-355934",
66
- "@fluidframework/map": "2.61.0-355934",
67
- "@fluidframework/runtime-utils": "2.61.0-355934",
68
- "@fluidframework/sequence": "2.61.0-355934",
69
- "@fluidframework/shared-object-base": "2.61.0-355934",
70
- "@fluidframework/tree": "2.61.0-355934"
60
+ "@fluidframework/container-definitions": "2.61.0-356132",
61
+ "@fluidframework/container-loader": "2.61.0-356132",
62
+ "@fluidframework/core-interfaces": "2.61.0-356132",
63
+ "@fluidframework/core-utils": "2.61.0-356132",
64
+ "@fluidframework/driver-definitions": "2.61.0-356132",
65
+ "@fluidframework/fluid-static": "2.61.0-356132",
66
+ "@fluidframework/map": "2.61.0-356132",
67
+ "@fluidframework/runtime-utils": "2.61.0-356132",
68
+ "@fluidframework/sequence": "2.61.0-356132",
69
+ "@fluidframework/shared-object-base": "2.61.0-356132",
70
+ "@fluidframework/tree": "2.61.0-356132"
71
71
  },
72
72
  "devDependencies": {
73
73
  "@arethetypeswrong/cli": "^0.17.1",