fluid-framework 2.63.0-358419 → 2.63.0-359286
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/api-report/fluid-framework.alpha.api.md +31 -5
- package/api-report/fluid-framework.beta.api.md +26 -0
- package/api-report/fluid-framework.legacy.beta.api.md +26 -0
- package/dist/alpha.d.ts +4 -3
- package/dist/beta.d.ts +3 -0
- package/dist/legacy.d.ts +3 -0
- package/lib/alpha.d.ts +4 -3
- package/lib/beta.d.ts +3 -0
- package/lib/legacy.d.ts +3 -0
- package/package.json +12 -12
|
@@ -325,6 +325,28 @@ export type FluidObject<T = unknown> = {
|
|
|
325
325
|
// @public
|
|
326
326
|
export type FluidObjectProviderKeys<T, TProp extends keyof T = keyof T> = string extends TProp ? never : number extends TProp ? never : TProp extends keyof Required<T>[TProp] ? Required<T>[TProp] extends Required<Required<T>[TProp]>[TProp] ? TProp : never : never;
|
|
327
327
|
|
|
328
|
+
// @alpha
|
|
329
|
+
export namespace FluidSerializableAsTree {
|
|
330
|
+
// @sealed
|
|
331
|
+
export class Array extends _APIExtractorWorkaroundArrayBase {
|
|
332
|
+
}
|
|
333
|
+
const Tree: readonly [() => typeof FluidSerializableObject, () => typeof Array, LeafSchema_2<"string", string>, LeafSchema_2<"number", number>, LeafSchema_2<"boolean", boolean>, LeafSchema_2<"null", null>, LeafSchema_2<"handle", IFluidHandle<unknown>>];
|
|
334
|
+
export type Data = JsonCompatible<IFluidHandle>;
|
|
335
|
+
const // @system
|
|
336
|
+
_APIExtractorWorkaroundObjectBase: TreeNodeSchemaClass_2<"com.fluidframework.serializable.object", NodeKind_2.Record, TreeRecordNodeUnsafe_2<readonly [() => typeof FluidSerializableObject, () => typeof Array, LeafSchema_2<"string", string>, LeafSchema_2<"number", number>, LeafSchema_2<"boolean", boolean>, LeafSchema_2<"null", null>, LeafSchema_2<"handle", IFluidHandle<unknown>>]> & WithType_2<"com.fluidframework.serializable.object", NodeKind_2.Record, unknown>, {
|
|
337
|
+
readonly [x: string]: string | number | IFluidHandle<unknown> | System_Unsafe_2.InsertableTypedNodeUnsafe<LeafSchema_2<"boolean", boolean>, LeafSchema_2<"boolean", boolean>> | FluidSerializableObject | Array | null;
|
|
338
|
+
}, false, readonly [() => typeof FluidSerializableObject, () => typeof Array, LeafSchema_2<"string", string>, LeafSchema_2<"number", number>, LeafSchema_2<"boolean", boolean>, LeafSchema_2<"null", null>, LeafSchema_2<"handle", IFluidHandle<unknown>>], undefined, unknown>;
|
|
339
|
+
// @sealed
|
|
340
|
+
export class FluidSerializableObject extends _APIExtractorWorkaroundObjectBase {
|
|
341
|
+
}
|
|
342
|
+
// @system
|
|
343
|
+
export type _RecursiveArrayWorkaroundJsonArray = FixRecursiveArraySchema<typeof Array>;
|
|
344
|
+
const // @system
|
|
345
|
+
_APIExtractorWorkaroundArrayBase: ArrayNodeCustomizableSchemaUnsafe_2<"com.fluidframework.serializable.array", readonly [() => typeof FluidSerializableObject, () => typeof Array, LeafSchema_2<"string", string>, LeafSchema_2<"number", number>, LeafSchema_2<"boolean", boolean>, LeafSchema_2<"null", null>, LeafSchema_2<"handle", IFluidHandle<unknown>>], unknown>;
|
|
346
|
+
// (undocumented)
|
|
347
|
+
export type Tree = TreeNodeFromImplicitAllowedTypes<typeof Tree>;
|
|
348
|
+
}
|
|
349
|
+
|
|
328
350
|
// @beta @input
|
|
329
351
|
export interface ForestOptions {
|
|
330
352
|
readonly forest?: ForestType;
|
|
@@ -1062,7 +1084,7 @@ TSchema
|
|
|
1062
1084
|
export interface RecordNodeCustomizableSchema<out TName extends string = string, in out T extends ImplicitAnnotatedAllowedTypes = ImplicitAnnotatedAllowedTypes, out ImplicitlyConstructable extends boolean = true, out TCustomMetadata = unknown> extends TreeNodeSchemaClass<TName, NodeKind.Record, TreeRecordNode<UnannotateImplicitAllowedTypes<T>> & WithType<TName, NodeKind.Record, T>, RecordNodeInsertableData<UnannotateImplicitAllowedTypes<T>>, ImplicitlyConstructable, T, never, TCustomMetadata>, SimpleRecordNodeSchema<TCustomMetadata> {
|
|
1063
1085
|
}
|
|
1064
1086
|
|
|
1065
|
-
// @
|
|
1087
|
+
// @beta @system
|
|
1066
1088
|
export type RecordNodeInsertableData<T extends ImplicitAllowedTypes> = RestrictiveStringRecord<InsertableTreeNodeFromImplicitAllowedTypes<T>>;
|
|
1067
1089
|
|
|
1068
1090
|
// @alpha @sealed @system
|
|
@@ -1213,8 +1235,6 @@ export class SchemaFactoryAlpha<out TScope extends string | undefined = string |
|
|
|
1213
1235
|
};
|
|
1214
1236
|
static readonly optionalRecursive: <const T extends System_Unsafe.ImplicitAllowedTypesUnsafe, const TCustomMetadata = unknown>(t: T, props?: Omit<FieldPropsAlpha<TCustomMetadata>, "defaultProvider"> | undefined) => FieldSchemaAlphaUnsafe<FieldKind.Optional, T, TCustomMetadata>;
|
|
1215
1237
|
readonly optionalRecursive: <const T extends System_Unsafe.ImplicitAllowedTypesUnsafe, const TCustomMetadata = unknown>(t: T, props?: Omit<FieldPropsAlpha<TCustomMetadata>, "defaultProvider"> | undefined) => FieldSchemaAlphaUnsafe<FieldKind.Optional, T, TCustomMetadata>;
|
|
1216
|
-
record<const T extends TreeNodeSchema | readonly TreeNodeSchema[]>(allowedTypes: T): TreeNodeSchemaNonClass<ScopedSchemaName<TScope, `Record<${string}>`>, NodeKind.Record, TreeRecordNode<T> & WithType<ScopedSchemaName<TScope, `Record<${string}>`>, NodeKind.Record>, RecordNodeInsertableData<T>, true, T, undefined>;
|
|
1217
|
-
record<const Name extends TName, const T extends ImplicitAllowedTypes>(name: Name, allowedTypes: T): TreeNodeSchemaClass<ScopedSchemaName<TScope, Name>, NodeKind.Record, TreeRecordNode<T> & WithType<ScopedSchemaName<TScope, Name>, NodeKind.Record>, RecordNodeInsertableData<T>, true, T, undefined>;
|
|
1218
1238
|
recordAlpha<const Name extends TName, const T extends ImplicitAnnotatedAllowedTypes, const TCustomMetadata = unknown>(name: Name, allowedTypes: T, options?: NodeSchemaOptionsAlpha<TCustomMetadata>): RecordNodeCustomizableSchema<ScopedSchemaName<TScope, Name>, T, true, TCustomMetadata>;
|
|
1219
1239
|
recordRecursive<Name extends TName, const T extends System_Unsafe.ImplicitAllowedTypesUnsafe, const TCustomMetadata = unknown>(name: Name, allowedTypes: T, options?: NodeSchemaOptionsAlpha<TCustomMetadata>): TreeNodeSchemaClass<ScopedSchemaName<TScope, Name>, NodeKind.Record, TreeRecordNodeUnsafe<T> & WithType<ScopedSchemaName<TScope, Name>, NodeKind.Record, unknown>, {
|
|
1220
1240
|
readonly [x: string]: System_Unsafe.InsertableTreeNodeFromImplicitAllowedTypesUnsafe<T>;
|
|
@@ -1236,6 +1256,11 @@ export class SchemaFactoryAlpha<out TScope extends string | undefined = string |
|
|
|
1236
1256
|
|
|
1237
1257
|
// @beta
|
|
1238
1258
|
export class SchemaFactoryBeta<out TScope extends string | undefined = string | undefined, TName extends number | string = string> extends SchemaFactory<TScope, TName> {
|
|
1259
|
+
record<const T extends TreeNodeSchema | readonly TreeNodeSchema[]>(allowedTypes: T): TreeNodeSchemaNonClass<ScopedSchemaName<TScope, `Record<${string}>`>, NodeKind.Record, TreeRecordNode<T> & WithType<ScopedSchemaName<TScope, `Record<${string}>`>, NodeKind.Record>, RecordNodeInsertableData<T>, true, T, undefined>;
|
|
1260
|
+
record<const Name extends TName, const T extends ImplicitAllowedTypes>(name: Name, allowedTypes: T): TreeNodeSchemaClass<ScopedSchemaName<TScope, Name>, NodeKind.Record, TreeRecordNode<T> & WithType<ScopedSchemaName<TScope, Name>, NodeKind.Record>, RecordNodeInsertableData<T>, true, T, undefined>;
|
|
1261
|
+
recordRecursive<Name extends TName, const T extends System_Unsafe.ImplicitAllowedTypesUnsafe, const TCustomMetadata = unknown>(name: Name, allowedTypes: T, options?: NodeSchemaOptions<TCustomMetadata>): TreeNodeSchemaClass<ScopedSchemaName<TScope, Name>, NodeKind.Record, TreeRecordNodeUnsafe<T> & WithType<ScopedSchemaName<TScope, Name>, NodeKind.Record, unknown>, {
|
|
1262
|
+
readonly [x: string]: System_Unsafe.InsertableTreeNodeFromImplicitAllowedTypesUnsafe<T>;
|
|
1263
|
+
}, false, T, undefined, TCustomMetadata>;
|
|
1239
1264
|
scopedFactory<const T extends TName, TNameInner extends number | string = string>(name: T): SchemaFactoryBeta<ScopedSchemaName<TScope, T>, TNameInner>;
|
|
1240
1265
|
}
|
|
1241
1266
|
|
|
@@ -1722,6 +1747,7 @@ export const TreeArrayNode: {
|
|
|
1722
1747
|
// @beta @sealed @system
|
|
1723
1748
|
export interface TreeBeta {
|
|
1724
1749
|
clone<const TSchema extends ImplicitFieldSchema>(node: TreeFieldFromImplicitField<TSchema>): TreeFieldFromImplicitField<TSchema>;
|
|
1750
|
+
create<const TSchema extends ImplicitFieldSchema>(schema: TSchema, data: InsertableTreeFieldFromImplicitField<TSchema>): Unhydrated<TreeFieldFromImplicitField<TSchema>>;
|
|
1725
1751
|
on<K extends keyof TreeChangeEventsBeta<TNode>, TNode extends TreeNode>(node: TNode, eventName: K, listener: NoInfer<TreeChangeEventsBeta<TNode>[K]>): () => void;
|
|
1726
1752
|
}
|
|
1727
1753
|
|
|
@@ -1867,7 +1893,7 @@ export type TreeObjectNode<T extends RestrictiveStringRecord<ImplicitFieldSchema
|
|
|
1867
1893
|
// @alpha @input
|
|
1868
1894
|
export type TreeParsingOptions = TreeEncodingOptions<KeyEncodingOptions.usePropertyKeys | KeyEncodingOptions.knownStoredKeys>;
|
|
1869
1895
|
|
|
1870
|
-
// @
|
|
1896
|
+
// @beta
|
|
1871
1897
|
export interface TreeRecordNode<TAllowedTypes extends ImplicitAllowedTypes = ImplicitAllowedTypes> extends TreeNode, Record<string, TreeNodeFromImplicitAllowedTypes<TAllowedTypes>> {
|
|
1872
1898
|
[Symbol.iterator](): IterableIterator<[
|
|
1873
1899
|
string,
|
|
@@ -1875,7 +1901,7 @@ export interface TreeRecordNode<TAllowedTypes extends ImplicitAllowedTypes = Imp
|
|
|
1875
1901
|
]>;
|
|
1876
1902
|
}
|
|
1877
1903
|
|
|
1878
|
-
// @
|
|
1904
|
+
// @beta @sealed @system
|
|
1879
1905
|
export interface TreeRecordNodeUnsafe<TAllowedTypes extends System_Unsafe.ImplicitAllowedTypesUnsafe> extends Record<string, System_Unsafe.TreeNodeFromImplicitAllowedTypesUnsafe<TAllowedTypes>>, TreeNode {
|
|
1880
1906
|
// (undocumented)
|
|
1881
1907
|
[Symbol.iterator](): IterableIterator<[
|
|
@@ -646,6 +646,9 @@ export type PopUnion<Union, AsOverloadedFunction = UnionToIntersection<Union ext
|
|
|
646
646
|
export interface ReadonlyArrayNode<out T = TreeNode | TreeLeafValue> extends ReadonlyArray<T>, Awaited<TreeNode & WithType<string, NodeKind.Array>> {
|
|
647
647
|
}
|
|
648
648
|
|
|
649
|
+
// @beta @system
|
|
650
|
+
export type RecordNodeInsertableData<T extends ImplicitAllowedTypes> = RestrictiveStringRecord<InsertableTreeNodeFromImplicitAllowedTypes<T>>;
|
|
651
|
+
|
|
649
652
|
// @public
|
|
650
653
|
export type ReplaceIEventThisPlaceHolder<L extends any[], TThis> = L extends any[] ? {
|
|
651
654
|
[K in keyof L]: L[K] extends IEventThisPlaceHolder ? TThis : L[K];
|
|
@@ -739,6 +742,11 @@ export const SchemaFactory_base: SchemaStatics & (new () => SchemaStatics);
|
|
|
739
742
|
|
|
740
743
|
// @beta
|
|
741
744
|
export class SchemaFactoryBeta<out TScope extends string | undefined = string | undefined, TName extends number | string = string> extends SchemaFactory<TScope, TName> {
|
|
745
|
+
record<const T extends TreeNodeSchema | readonly TreeNodeSchema[]>(allowedTypes: T): TreeNodeSchemaNonClass<ScopedSchemaName<TScope, `Record<${string}>`>, NodeKind.Record, TreeRecordNode<T> & WithType<ScopedSchemaName<TScope, `Record<${string}>`>, NodeKind.Record>, RecordNodeInsertableData<T>, true, T, undefined>;
|
|
746
|
+
record<const Name extends TName, const T extends ImplicitAllowedTypes>(name: Name, allowedTypes: T): TreeNodeSchemaClass<ScopedSchemaName<TScope, Name>, NodeKind.Record, TreeRecordNode<T> & WithType<ScopedSchemaName<TScope, Name>, NodeKind.Record>, RecordNodeInsertableData<T>, true, T, undefined>;
|
|
747
|
+
recordRecursive<Name extends TName, const T extends System_Unsafe.ImplicitAllowedTypesUnsafe, const TCustomMetadata = unknown>(name: Name, allowedTypes: T, options?: NodeSchemaOptions<TCustomMetadata>): TreeNodeSchemaClass<ScopedSchemaName<TScope, Name>, NodeKind.Record, TreeRecordNodeUnsafe<T> & WithType<ScopedSchemaName<TScope, Name>, NodeKind.Record, unknown>, {
|
|
748
|
+
readonly [x: string]: System_Unsafe.InsertableTreeNodeFromImplicitAllowedTypesUnsafe<T>;
|
|
749
|
+
}, false, T, undefined, TCustomMetadata>;
|
|
742
750
|
scopedFactory<const T extends TName, TNameInner extends number | string = string>(name: T): SchemaFactoryBeta<ScopedSchemaName<TScope, T>, TNameInner>;
|
|
743
751
|
}
|
|
744
752
|
|
|
@@ -926,6 +934,7 @@ export const TreeArrayNode: {
|
|
|
926
934
|
// @beta @sealed @system
|
|
927
935
|
export interface TreeBeta {
|
|
928
936
|
clone<const TSchema extends ImplicitFieldSchema>(node: TreeFieldFromImplicitField<TSchema>): TreeFieldFromImplicitField<TSchema>;
|
|
937
|
+
create<const TSchema extends ImplicitFieldSchema>(schema: TSchema, data: InsertableTreeFieldFromImplicitField<TSchema>): Unhydrated<TreeFieldFromImplicitField<TSchema>>;
|
|
929
938
|
on<K extends keyof TreeChangeEventsBeta<TNode>, TNode extends TreeNode>(node: TNode, eventName: K, listener: NoInfer<TreeChangeEventsBeta<TNode>[K]>): () => void;
|
|
930
939
|
}
|
|
931
940
|
|
|
@@ -1014,6 +1023,23 @@ export type TreeNodeSchemaNonClass<Name extends string = string, Kind extends No
|
|
|
1014
1023
|
// @public
|
|
1015
1024
|
export type TreeObjectNode<T extends RestrictiveStringRecord<ImplicitFieldSchema>, TypeName extends string = string> = TreeNode & ObjectFromSchemaRecord<T> & WithType<TypeName, NodeKind.Object, T>;
|
|
1016
1025
|
|
|
1026
|
+
// @beta
|
|
1027
|
+
export interface TreeRecordNode<TAllowedTypes extends ImplicitAllowedTypes = ImplicitAllowedTypes> extends TreeNode, Record<string, TreeNodeFromImplicitAllowedTypes<TAllowedTypes>> {
|
|
1028
|
+
[Symbol.iterator](): IterableIterator<[
|
|
1029
|
+
string,
|
|
1030
|
+
TreeNodeFromImplicitAllowedTypes<TAllowedTypes>
|
|
1031
|
+
]>;
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
// @beta @sealed @system
|
|
1035
|
+
export interface TreeRecordNodeUnsafe<TAllowedTypes extends System_Unsafe.ImplicitAllowedTypesUnsafe> extends Record<string, System_Unsafe.TreeNodeFromImplicitAllowedTypesUnsafe<TAllowedTypes>>, TreeNode {
|
|
1036
|
+
// (undocumented)
|
|
1037
|
+
[Symbol.iterator](): IterableIterator<[
|
|
1038
|
+
string,
|
|
1039
|
+
System_Unsafe.TreeNodeFromImplicitAllowedTypesUnsafe<TAllowedTypes>
|
|
1040
|
+
]>;
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1017
1043
|
// @public
|
|
1018
1044
|
export enum TreeStatus {
|
|
1019
1045
|
Deleted = 2,
|
|
@@ -924,6 +924,9 @@ export type PopUnion<Union, AsOverloadedFunction = UnionToIntersection<Union ext
|
|
|
924
924
|
export interface ReadonlyArrayNode<out T = TreeNode | TreeLeafValue> extends ReadonlyArray<T>, Awaited<TreeNode & WithType<string, NodeKind.Array>> {
|
|
925
925
|
}
|
|
926
926
|
|
|
927
|
+
// @beta @system
|
|
928
|
+
export type RecordNodeInsertableData<T extends ImplicitAllowedTypes> = RestrictiveStringRecord<InsertableTreeNodeFromImplicitAllowedTypes<T>>;
|
|
929
|
+
|
|
927
930
|
// @public
|
|
928
931
|
export type ReplaceIEventThisPlaceHolder<L extends any[], TThis> = L extends any[] ? {
|
|
929
932
|
[K in keyof L]: L[K] extends IEventThisPlaceHolder ? TThis : L[K];
|
|
@@ -1017,6 +1020,11 @@ export const SchemaFactory_base: SchemaStatics & (new () => SchemaStatics);
|
|
|
1017
1020
|
|
|
1018
1021
|
// @beta
|
|
1019
1022
|
export class SchemaFactoryBeta<out TScope extends string | undefined = string | undefined, TName extends number | string = string> extends SchemaFactory<TScope, TName> {
|
|
1023
|
+
record<const T extends TreeNodeSchema | readonly TreeNodeSchema[]>(allowedTypes: T): TreeNodeSchemaNonClass<ScopedSchemaName<TScope, `Record<${string}>`>, NodeKind.Record, TreeRecordNode<T> & WithType<ScopedSchemaName<TScope, `Record<${string}>`>, NodeKind.Record>, RecordNodeInsertableData<T>, true, T, undefined>;
|
|
1024
|
+
record<const Name extends TName, const T extends ImplicitAllowedTypes>(name: Name, allowedTypes: T): TreeNodeSchemaClass<ScopedSchemaName<TScope, Name>, NodeKind.Record, TreeRecordNode<T> & WithType<ScopedSchemaName<TScope, Name>, NodeKind.Record>, RecordNodeInsertableData<T>, true, T, undefined>;
|
|
1025
|
+
recordRecursive<Name extends TName, const T extends System_Unsafe.ImplicitAllowedTypesUnsafe, const TCustomMetadata = unknown>(name: Name, allowedTypes: T, options?: NodeSchemaOptions<TCustomMetadata>): TreeNodeSchemaClass<ScopedSchemaName<TScope, Name>, NodeKind.Record, TreeRecordNodeUnsafe<T> & WithType<ScopedSchemaName<TScope, Name>, NodeKind.Record, unknown>, {
|
|
1026
|
+
readonly [x: string]: System_Unsafe.InsertableTreeNodeFromImplicitAllowedTypesUnsafe<T>;
|
|
1027
|
+
}, false, T, undefined, TCustomMetadata>;
|
|
1020
1028
|
scopedFactory<const T extends TName, TNameInner extends number | string = string>(name: T): SchemaFactoryBeta<ScopedSchemaName<TScope, T>, TNameInner>;
|
|
1021
1029
|
}
|
|
1022
1030
|
|
|
@@ -1284,6 +1292,7 @@ export const TreeArrayNode: {
|
|
|
1284
1292
|
// @beta @sealed @system
|
|
1285
1293
|
export interface TreeBeta {
|
|
1286
1294
|
clone<const TSchema extends ImplicitFieldSchema>(node: TreeFieldFromImplicitField<TSchema>): TreeFieldFromImplicitField<TSchema>;
|
|
1295
|
+
create<const TSchema extends ImplicitFieldSchema>(schema: TSchema, data: InsertableTreeFieldFromImplicitField<TSchema>): Unhydrated<TreeFieldFromImplicitField<TSchema>>;
|
|
1287
1296
|
on<K extends keyof TreeChangeEventsBeta<TNode>, TNode extends TreeNode>(node: TNode, eventName: K, listener: NoInfer<TreeChangeEventsBeta<TNode>[K]>): () => void;
|
|
1288
1297
|
}
|
|
1289
1298
|
|
|
@@ -1372,6 +1381,23 @@ export type TreeNodeSchemaNonClass<Name extends string = string, Kind extends No
|
|
|
1372
1381
|
// @public
|
|
1373
1382
|
export type TreeObjectNode<T extends RestrictiveStringRecord<ImplicitFieldSchema>, TypeName extends string = string> = TreeNode & ObjectFromSchemaRecord<T> & WithType<TypeName, NodeKind.Object, T>;
|
|
1374
1383
|
|
|
1384
|
+
// @beta
|
|
1385
|
+
export interface TreeRecordNode<TAllowedTypes extends ImplicitAllowedTypes = ImplicitAllowedTypes> extends TreeNode, Record<string, TreeNodeFromImplicitAllowedTypes<TAllowedTypes>> {
|
|
1386
|
+
[Symbol.iterator](): IterableIterator<[
|
|
1387
|
+
string,
|
|
1388
|
+
TreeNodeFromImplicitAllowedTypes<TAllowedTypes>
|
|
1389
|
+
]>;
|
|
1390
|
+
}
|
|
1391
|
+
|
|
1392
|
+
// @beta @sealed @system
|
|
1393
|
+
export interface TreeRecordNodeUnsafe<TAllowedTypes extends System_Unsafe.ImplicitAllowedTypesUnsafe> extends Record<string, System_Unsafe.TreeNodeFromImplicitAllowedTypesUnsafe<TAllowedTypes>>, TreeNode {
|
|
1394
|
+
// (undocumented)
|
|
1395
|
+
[Symbol.iterator](): IterableIterator<[
|
|
1396
|
+
string,
|
|
1397
|
+
System_Unsafe.TreeNodeFromImplicitAllowedTypesUnsafe<TAllowedTypes>
|
|
1398
|
+
]>;
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1375
1401
|
// @public
|
|
1376
1402
|
export enum TreeStatus {
|
|
1377
1403
|
Deleted = 2,
|
package/dist/alpha.d.ts
CHANGED
|
@@ -143,10 +143,13 @@ export {
|
|
|
143
143
|
ForestTypeReference,
|
|
144
144
|
NodeChangedData,
|
|
145
145
|
PopUnion,
|
|
146
|
+
RecordNodeInsertableData,
|
|
146
147
|
SchemaFactoryBeta,
|
|
147
148
|
SharedTreeOptionsBeta,
|
|
148
149
|
TreeBeta,
|
|
149
150
|
TreeChangeEventsBeta,
|
|
151
|
+
TreeRecordNode,
|
|
152
|
+
TreeRecordNodeUnsafe,
|
|
150
153
|
UnionToTuple,
|
|
151
154
|
adaptEnum,
|
|
152
155
|
configuredSharedTreeBeta,
|
|
@@ -175,6 +178,7 @@ export {
|
|
|
175
178
|
FieldSchemaAlphaUnsafe,
|
|
176
179
|
FixRecursiveArraySchema,
|
|
177
180
|
FluidClientVersion,
|
|
181
|
+
FluidSerializableAsTree,
|
|
178
182
|
FormatValidator,
|
|
179
183
|
FormatValidatorBasic,
|
|
180
184
|
FormatValidatorNoOp,
|
|
@@ -220,7 +224,6 @@ export {
|
|
|
220
224
|
ReadSchema,
|
|
221
225
|
ReadableField,
|
|
222
226
|
RecordNodeCustomizableSchema,
|
|
223
|
-
RecordNodeInsertableData,
|
|
224
227
|
RecordNodePojoEmulationSchema,
|
|
225
228
|
RecordNodeSchema,
|
|
226
229
|
RevertibleAlpha,
|
|
@@ -262,8 +265,6 @@ export {
|
|
|
262
265
|
TreeIndexKey,
|
|
263
266
|
TreeIndexNodes,
|
|
264
267
|
TreeParsingOptions,
|
|
265
|
-
TreeRecordNode,
|
|
266
|
-
TreeRecordNodeUnsafe,
|
|
267
268
|
TreeSchema,
|
|
268
269
|
TreeSchemaEncodingOptions,
|
|
269
270
|
TreeViewAlpha,
|
package/dist/beta.d.ts
CHANGED
|
@@ -143,10 +143,13 @@ export {
|
|
|
143
143
|
ForestTypeReference,
|
|
144
144
|
NodeChangedData,
|
|
145
145
|
PopUnion,
|
|
146
|
+
RecordNodeInsertableData,
|
|
146
147
|
SchemaFactoryBeta,
|
|
147
148
|
SharedTreeOptionsBeta,
|
|
148
149
|
TreeBeta,
|
|
149
150
|
TreeChangeEventsBeta,
|
|
151
|
+
TreeRecordNode,
|
|
152
|
+
TreeRecordNodeUnsafe,
|
|
150
153
|
UnionToTuple,
|
|
151
154
|
adaptEnum,
|
|
152
155
|
configuredSharedTreeBeta,
|
package/dist/legacy.d.ts
CHANGED
|
@@ -150,10 +150,13 @@ export {
|
|
|
150
150
|
ForestTypeReference,
|
|
151
151
|
NodeChangedData,
|
|
152
152
|
PopUnion,
|
|
153
|
+
RecordNodeInsertableData,
|
|
153
154
|
SchemaFactoryBeta,
|
|
154
155
|
SharedTreeOptionsBeta,
|
|
155
156
|
TreeBeta,
|
|
156
157
|
TreeChangeEventsBeta,
|
|
158
|
+
TreeRecordNode,
|
|
159
|
+
TreeRecordNodeUnsafe,
|
|
157
160
|
UnionToTuple,
|
|
158
161
|
adaptEnum,
|
|
159
162
|
configuredSharedTreeBeta,
|
package/lib/alpha.d.ts
CHANGED
|
@@ -143,10 +143,13 @@ export {
|
|
|
143
143
|
ForestTypeReference,
|
|
144
144
|
NodeChangedData,
|
|
145
145
|
PopUnion,
|
|
146
|
+
RecordNodeInsertableData,
|
|
146
147
|
SchemaFactoryBeta,
|
|
147
148
|
SharedTreeOptionsBeta,
|
|
148
149
|
TreeBeta,
|
|
149
150
|
TreeChangeEventsBeta,
|
|
151
|
+
TreeRecordNode,
|
|
152
|
+
TreeRecordNodeUnsafe,
|
|
150
153
|
UnionToTuple,
|
|
151
154
|
adaptEnum,
|
|
152
155
|
configuredSharedTreeBeta,
|
|
@@ -175,6 +178,7 @@ export {
|
|
|
175
178
|
FieldSchemaAlphaUnsafe,
|
|
176
179
|
FixRecursiveArraySchema,
|
|
177
180
|
FluidClientVersion,
|
|
181
|
+
FluidSerializableAsTree,
|
|
178
182
|
FormatValidator,
|
|
179
183
|
FormatValidatorBasic,
|
|
180
184
|
FormatValidatorNoOp,
|
|
@@ -220,7 +224,6 @@ export {
|
|
|
220
224
|
ReadSchema,
|
|
221
225
|
ReadableField,
|
|
222
226
|
RecordNodeCustomizableSchema,
|
|
223
|
-
RecordNodeInsertableData,
|
|
224
227
|
RecordNodePojoEmulationSchema,
|
|
225
228
|
RecordNodeSchema,
|
|
226
229
|
RevertibleAlpha,
|
|
@@ -262,8 +265,6 @@ export {
|
|
|
262
265
|
TreeIndexKey,
|
|
263
266
|
TreeIndexNodes,
|
|
264
267
|
TreeParsingOptions,
|
|
265
|
-
TreeRecordNode,
|
|
266
|
-
TreeRecordNodeUnsafe,
|
|
267
268
|
TreeSchema,
|
|
268
269
|
TreeSchemaEncodingOptions,
|
|
269
270
|
TreeViewAlpha,
|
package/lib/beta.d.ts
CHANGED
|
@@ -143,10 +143,13 @@ export {
|
|
|
143
143
|
ForestTypeReference,
|
|
144
144
|
NodeChangedData,
|
|
145
145
|
PopUnion,
|
|
146
|
+
RecordNodeInsertableData,
|
|
146
147
|
SchemaFactoryBeta,
|
|
147
148
|
SharedTreeOptionsBeta,
|
|
148
149
|
TreeBeta,
|
|
149
150
|
TreeChangeEventsBeta,
|
|
151
|
+
TreeRecordNode,
|
|
152
|
+
TreeRecordNodeUnsafe,
|
|
150
153
|
UnionToTuple,
|
|
151
154
|
adaptEnum,
|
|
152
155
|
configuredSharedTreeBeta,
|
package/lib/legacy.d.ts
CHANGED
|
@@ -150,10 +150,13 @@ export {
|
|
|
150
150
|
ForestTypeReference,
|
|
151
151
|
NodeChangedData,
|
|
152
152
|
PopUnion,
|
|
153
|
+
RecordNodeInsertableData,
|
|
153
154
|
SchemaFactoryBeta,
|
|
154
155
|
SharedTreeOptionsBeta,
|
|
155
156
|
TreeBeta,
|
|
156
157
|
TreeChangeEventsBeta,
|
|
158
|
+
TreeRecordNode,
|
|
159
|
+
TreeRecordNodeUnsafe,
|
|
157
160
|
UnionToTuple,
|
|
158
161
|
adaptEnum,
|
|
159
162
|
configuredSharedTreeBeta,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fluid-framework",
|
|
3
|
-
"version": "2.63.0-
|
|
3
|
+
"version": "2.63.0-359286",
|
|
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-
|
|
61
|
-
"@fluidframework/container-loader": "2.63.0-
|
|
62
|
-
"@fluidframework/core-interfaces": "2.63.0-
|
|
63
|
-
"@fluidframework/core-utils": "2.63.0-
|
|
64
|
-
"@fluidframework/driver-definitions": "2.63.0-
|
|
65
|
-
"@fluidframework/fluid-static": "2.63.0-
|
|
66
|
-
"@fluidframework/map": "2.63.0-
|
|
67
|
-
"@fluidframework/runtime-utils": "2.63.0-
|
|
68
|
-
"@fluidframework/sequence": "2.63.0-
|
|
69
|
-
"@fluidframework/shared-object-base": "2.63.0-
|
|
70
|
-
"@fluidframework/tree": "2.63.0-
|
|
60
|
+
"@fluidframework/container-definitions": "2.63.0-359286",
|
|
61
|
+
"@fluidframework/container-loader": "2.63.0-359286",
|
|
62
|
+
"@fluidframework/core-interfaces": "2.63.0-359286",
|
|
63
|
+
"@fluidframework/core-utils": "2.63.0-359286",
|
|
64
|
+
"@fluidframework/driver-definitions": "2.63.0-359286",
|
|
65
|
+
"@fluidframework/fluid-static": "2.63.0-359286",
|
|
66
|
+
"@fluidframework/map": "2.63.0-359286",
|
|
67
|
+
"@fluidframework/runtime-utils": "2.63.0-359286",
|
|
68
|
+
"@fluidframework/sequence": "2.63.0-359286",
|
|
69
|
+
"@fluidframework/shared-object-base": "2.63.0-359286",
|
|
70
|
+
"@fluidframework/tree": "2.63.0-359286"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"@arethetypeswrong/cli": "^0.17.1",
|