fluid-framework 2.61.0 → 2.62.0-356644

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.
@@ -765,8 +765,10 @@ export interface ITree extends ViewableTree, IFluidLoadable {
765
765
 
766
766
  // @alpha @sealed
767
767
  export interface ITreeAlpha extends ITree {
768
+ createSharedBranch(): string;
768
769
  exportSimpleSchema(): SimpleTreeSchema;
769
770
  exportVerbose(): VerboseTree | undefined;
771
+ viewSharedBranchWith<TRoot extends ImplicitFieldSchema>(branchId: string, config: TreeViewConfiguration<TRoot>): TreeView<TRoot>;
770
772
  }
771
773
 
772
774
  // @public
@@ -1296,6 +1298,7 @@ export const SharedTreeFormatVersion: {
1296
1298
  readonly v2: 2;
1297
1299
  readonly v3: 3;
1298
1300
  readonly v5: 5;
1301
+ readonly vSharedBranches: 100;
1299
1302
  };
1300
1303
 
1301
1304
  // @alpha
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fluid-framework",
3
- "version": "2.61.0",
3
+ "version": "2.62.0-356644",
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",
61
- "@fluidframework/container-loader": "~2.61.0",
62
- "@fluidframework/core-interfaces": "~2.61.0",
63
- "@fluidframework/core-utils": "~2.61.0",
64
- "@fluidframework/driver-definitions": "~2.61.0",
65
- "@fluidframework/fluid-static": "~2.61.0",
66
- "@fluidframework/map": "~2.61.0",
67
- "@fluidframework/runtime-utils": "~2.61.0",
68
- "@fluidframework/sequence": "~2.61.0",
69
- "@fluidframework/shared-object-base": "~2.61.0",
70
- "@fluidframework/tree": "~2.61.0"
60
+ "@fluidframework/container-definitions": "2.62.0-356644",
61
+ "@fluidframework/container-loader": "2.62.0-356644",
62
+ "@fluidframework/core-interfaces": "2.62.0-356644",
63
+ "@fluidframework/core-utils": "2.62.0-356644",
64
+ "@fluidframework/driver-definitions": "2.62.0-356644",
65
+ "@fluidframework/fluid-static": "2.62.0-356644",
66
+ "@fluidframework/map": "2.62.0-356644",
67
+ "@fluidframework/runtime-utils": "2.62.0-356644",
68
+ "@fluidframework/sequence": "2.62.0-356644",
69
+ "@fluidframework/shared-object-base": "2.62.0-356644",
70
+ "@fluidframework/tree": "2.62.0-356644"
71
71
  },
72
72
  "devDependencies": {
73
73
  "@arethetypeswrong/cli": "^0.17.1",