fluid-framework 2.53.1 → 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/CHANGELOG.md +73 -0
- package/alpha.d.ts +1 -1
- package/api-report/fluid-framework.alpha.api.md +51 -37
- package/api-report/fluid-framework.beta.api.md +16 -2
- package/api-report/{fluid-framework.legacy.alpha.api.md → fluid-framework.legacy.beta.api.md} +103 -61
- package/api-report/fluid-framework.legacy.public.api.md +2 -2
- package/api-report/fluid-framework.public.api.md +2 -2
- package/beta.d.ts +1 -1
- package/dist/alpha.d.ts +17 -7
- package/dist/beta.d.ts +10 -4
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/legacy.d.ts +27 -8
- package/dist/public.d.ts +5 -3
- package/legacy.d.ts +1 -1
- package/lib/alpha.d.ts +17 -7
- package/lib/beta.d.ts +10 -4
- package/lib/index.d.ts +1 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js.map +1 -1
- package/lib/legacy.d.ts +27 -8
- package/lib/public.d.ts +5 -3
- package/lib/tsdoc-metadata.json +1 -1
- package/package.json +18 -18
- package/src/index.ts +0 -1
package/dist/legacy.d.ts
CHANGED
|
@@ -16,10 +16,11 @@
|
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
18
|
export {
|
|
19
|
-
// Unrestricted APIs
|
|
19
|
+
// #region Unrestricted APIs
|
|
20
20
|
InternalTypes,
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
// #endregion
|
|
22
|
+
|
|
23
|
+
// #region @public APIs
|
|
23
24
|
AllowedTypes,
|
|
24
25
|
AttachState,
|
|
25
26
|
CommitKind,
|
|
@@ -131,19 +132,37 @@ export {
|
|
|
131
132
|
isFluidHandle,
|
|
132
133
|
rollback,
|
|
133
134
|
typeSchemaSymbol,
|
|
135
|
+
// #endregion
|
|
134
136
|
|
|
135
|
-
// @
|
|
136
|
-
DeserializeCallback,
|
|
137
|
-
IBranchOrigin,
|
|
137
|
+
// #region @legacyPublic APIs
|
|
138
138
|
IDirectory,
|
|
139
139
|
IDirectoryEvents,
|
|
140
140
|
IDirectoryValueChanged,
|
|
141
|
+
IValueChanged,
|
|
142
|
+
// #endregion
|
|
143
|
+
|
|
144
|
+
// #region @beta APIs
|
|
145
|
+
ForestOptions,
|
|
146
|
+
ForestType,
|
|
147
|
+
NodeChangedData,
|
|
148
|
+
PopUnion,
|
|
149
|
+
SchemaFactoryBeta,
|
|
150
|
+
TreeBeta,
|
|
151
|
+
TreeChangeEventsBeta,
|
|
152
|
+
UnionToTuple,
|
|
153
|
+
adaptEnum,
|
|
154
|
+
enumFromStrings,
|
|
155
|
+
singletonSchema,
|
|
156
|
+
// #endregion
|
|
157
|
+
|
|
158
|
+
// #region @legacyBeta APIs
|
|
159
|
+
DeserializeCallback,
|
|
160
|
+
IBranchOrigin,
|
|
141
161
|
IInterval,
|
|
142
162
|
ISequenceDeltaRange,
|
|
143
163
|
ISequenceIntervalCollection,
|
|
144
164
|
ISequenceIntervalCollectionEvents,
|
|
145
165
|
ISequencedDocumentMessage,
|
|
146
|
-
ISerializableInterval,
|
|
147
166
|
ISerializedInterval,
|
|
148
167
|
ISharedDirectory,
|
|
149
168
|
ISharedDirectoryEvents,
|
|
@@ -155,7 +174,6 @@ export {
|
|
|
155
174
|
ISharedSegmentSequenceEvents,
|
|
156
175
|
ISharedString,
|
|
157
176
|
ITrace,
|
|
158
|
-
IValueChanged,
|
|
159
177
|
InteriorSequencePlace,
|
|
160
178
|
IntervalStickiness,
|
|
161
179
|
IntervalType,
|
|
@@ -170,4 +188,5 @@ export {
|
|
|
170
188
|
SharedString,
|
|
171
189
|
SharedStringSegment,
|
|
172
190
|
Side
|
|
191
|
+
// #endregion
|
|
173
192
|
} from "./index.js";
|
package/dist/public.d.ts
CHANGED
|
@@ -16,10 +16,11 @@
|
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
18
|
export {
|
|
19
|
-
// Unrestricted APIs
|
|
19
|
+
// #region Unrestricted APIs
|
|
20
20
|
InternalTypes,
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
// #endregion
|
|
22
|
+
|
|
23
|
+
// #region @public APIs
|
|
23
24
|
AllowedTypes,
|
|
24
25
|
AttachState,
|
|
25
26
|
CommitKind,
|
|
@@ -131,4 +132,5 @@ export {
|
|
|
131
132
|
isFluidHandle,
|
|
132
133
|
rollback,
|
|
133
134
|
typeSchemaSymbol
|
|
135
|
+
// #endregion
|
|
134
136
|
} from "./index.js";
|
package/legacy.d.ts
CHANGED
package/lib/alpha.d.ts
CHANGED
|
@@ -16,10 +16,11 @@
|
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
18
|
export {
|
|
19
|
-
// Unrestricted APIs
|
|
19
|
+
// #region Unrestricted APIs
|
|
20
20
|
InternalTypes,
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
// #endregion
|
|
22
|
+
|
|
23
|
+
// #region @public APIs
|
|
23
24
|
AllowedTypes,
|
|
24
25
|
AttachState,
|
|
25
26
|
CommitKind,
|
|
@@ -131,18 +132,23 @@ export {
|
|
|
131
132
|
isFluidHandle,
|
|
132
133
|
rollback,
|
|
133
134
|
typeSchemaSymbol,
|
|
135
|
+
// #endregion
|
|
134
136
|
|
|
135
|
-
// @beta APIs
|
|
137
|
+
// #region @beta APIs
|
|
138
|
+
ForestOptions,
|
|
139
|
+
ForestType,
|
|
136
140
|
NodeChangedData,
|
|
137
141
|
PopUnion,
|
|
142
|
+
SchemaFactoryBeta,
|
|
138
143
|
TreeBeta,
|
|
139
144
|
TreeChangeEventsBeta,
|
|
140
145
|
UnionToTuple,
|
|
141
146
|
adaptEnum,
|
|
142
147
|
enumFromStrings,
|
|
143
148
|
singletonSchema,
|
|
149
|
+
// #endregion
|
|
144
150
|
|
|
145
|
-
// @alpha APIs
|
|
151
|
+
// #region @alpha APIs
|
|
146
152
|
AllowedTypeMetadata,
|
|
147
153
|
AllowedTypesMetadata,
|
|
148
154
|
AnnotatedAllowedType,
|
|
@@ -161,11 +167,12 @@ export {
|
|
|
161
167
|
FieldSchemaAlphaUnsafe,
|
|
162
168
|
FixRecursiveArraySchema,
|
|
163
169
|
FluidClientVersion,
|
|
164
|
-
ForestOptions,
|
|
165
|
-
ForestType,
|
|
166
170
|
ForestTypeExpensiveDebug,
|
|
167
171
|
ForestTypeOptimized,
|
|
168
172
|
ForestTypeReference,
|
|
173
|
+
FormatValidator,
|
|
174
|
+
FormatValidatorBasic,
|
|
175
|
+
FormatValidatorNoOp,
|
|
169
176
|
HandleConverter,
|
|
170
177
|
ICodecOptions,
|
|
171
178
|
ITreeAlpha,
|
|
@@ -197,6 +204,7 @@ export {
|
|
|
197
204
|
JsonStringKeyPatternProperties,
|
|
198
205
|
JsonTreeSchema,
|
|
199
206
|
JsonValidator,
|
|
207
|
+
KeyEncodingOptions,
|
|
200
208
|
MapNodeCustomizableSchema,
|
|
201
209
|
MapNodeCustomizableSchemaUnsafe,
|
|
202
210
|
MapNodePojoEmulationSchema,
|
|
@@ -249,6 +257,7 @@ export {
|
|
|
249
257
|
TreeIndex,
|
|
250
258
|
TreeIndexKey,
|
|
251
259
|
TreeIndexNodes,
|
|
260
|
+
TreeParsingOptions,
|
|
252
261
|
TreeRecordNode,
|
|
253
262
|
TreeRecordNodeUnsafe,
|
|
254
263
|
TreeSchema,
|
|
@@ -289,4 +298,5 @@ export {
|
|
|
289
298
|
replaceHandles,
|
|
290
299
|
replaceVerboseTreeHandles,
|
|
291
300
|
typeboxValidator
|
|
301
|
+
// #endregion
|
|
292
302
|
} from "./index.js";
|
package/lib/beta.d.ts
CHANGED
|
@@ -16,10 +16,11 @@
|
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
18
|
export {
|
|
19
|
-
// Unrestricted APIs
|
|
19
|
+
// #region Unrestricted APIs
|
|
20
20
|
InternalTypes,
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
// #endregion
|
|
22
|
+
|
|
23
|
+
// #region @public APIs
|
|
23
24
|
AllowedTypes,
|
|
24
25
|
AttachState,
|
|
25
26
|
CommitKind,
|
|
@@ -131,14 +132,19 @@ export {
|
|
|
131
132
|
isFluidHandle,
|
|
132
133
|
rollback,
|
|
133
134
|
typeSchemaSymbol,
|
|
135
|
+
// #endregion
|
|
134
136
|
|
|
135
|
-
// @beta APIs
|
|
137
|
+
// #region @beta APIs
|
|
138
|
+
ForestOptions,
|
|
139
|
+
ForestType,
|
|
136
140
|
NodeChangedData,
|
|
137
141
|
PopUnion,
|
|
142
|
+
SchemaFactoryBeta,
|
|
138
143
|
TreeBeta,
|
|
139
144
|
TreeChangeEventsBeta,
|
|
140
145
|
UnionToTuple,
|
|
141
146
|
adaptEnum,
|
|
142
147
|
enumFromStrings,
|
|
143
148
|
singletonSchema
|
|
149
|
+
// #endregion
|
|
144
150
|
} from "./index.js";
|
package/lib/index.d.ts
CHANGED
|
@@ -57,7 +57,7 @@ export declare const SharedTree: SharedObjectKind<ITree>;
|
|
|
57
57
|
export declare function configuredSharedTree(options: SharedTreeOptions): SharedObjectKind<ITree>;
|
|
58
58
|
export type { IDirectory, IDirectoryEvents, IDirectoryValueChanged, ISharedDirectory, ISharedDirectoryEvents, ISharedMap, ISharedMapEvents, IValueChanged, } from "@fluidframework/map/internal";
|
|
59
59
|
export { SharedDirectory, SharedMap } from "@fluidframework/map/internal";
|
|
60
|
-
export type { DeserializeCallback, InteriorSequencePlace, IInterval, IntervalStickiness, ISequenceDeltaRange,
|
|
60
|
+
export type { DeserializeCallback, InteriorSequencePlace, IInterval, IntervalStickiness, ISequenceDeltaRange, ISerializedInterval, ISharedSegmentSequenceEvents, ISharedString, SequencePlace, SharedStringSegment, Side, ISharedSegmentSequence, ISequenceIntervalCollection, ISequenceIntervalCollectionEvents, SequenceIntervalIndex, } from "@fluidframework/sequence/internal";
|
|
61
61
|
export type { IntervalType, SequenceDeltaEvent, SequenceEvent, SequenceInterval, SequenceMaintenanceEvent, } from "@fluidframework/sequence/internal";
|
|
62
62
|
export { SharedString } from "@fluidframework/sequence/internal";
|
|
63
63
|
export type { ISharedObject, ISharedObjectEvents, } from "@fluidframework/shared-object-base/internal";
|
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;GAKG;AAMH,YAAY,EACX,eAAe,IAAI,mBAAmB,EAAE,0CAA0C;AAClF,uBAAuB,GACvB,MAAM,uCAAuC,CAAC;AAC/C,OAAO,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC;AACpE,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AACnE,YAAY,EACX,oBAAoB,EACpB,eAAe,EACf,WAAW,EACX,eAAe,EACf,qBAAqB,EACrB,OAAO,EACP,cAAc,EACd,gBAAgB,EAChB,sBAAsB,EACtB,qBAAqB,EACrB,MAAM,GACN,MAAM,8BAA8B,CAAC;AACtC,YAAY,EAAE,gBAAgB,EAAE,MAAM,oCAAoC,CAAC;AAC3E,YAAY,EACX,UAAU,EACV,cAAc,EACd,WAAW,EACX,MAAM,EACN,qBAAqB,EACrB,WAAW,EACX,UAAU,EACV,YAAY,EACZ,cAAc,EACd,wBAAwB,EACxB,iBAAiB,EACjB,qBAAqB,EACrB,kBAAkB,EAClB,gBAAgB,EAChB,8BAA8B,EAC9B,MAAM,EACN,4BAA4B,EAC5B,WAAW,EAAE,wBAAwB;AACrC,uBAAuB,EAAE,sBAAsB;AAE/C,SAAS,EACT,UAAU,EACV,UAAU,EACV,GAAG,GAEH,MAAM,iCAAiC,CAAC;AAEzC,OAAO,EAAE,kBAAkB,EAAE,MAAM,qCAAqC,CAAC;AAEzE,YAAY,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AASnE,cAAc,4BAA4B,CAAC;AAQ3C,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,oCAAoC,CAAC;AAC3E,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAGN,KAAK,iBAAiB,EACtB,MAAM,+BAA+B,CAAC;AAEvC;;;;;;;;;GASG;AACH,eAAO,MAAM,UAAU,EAAE,gBAAgB,CAAC,KAAK,CAAsB,CAAC;AAEtE;;;;;;;;;;;;;;;;;;;GAmBG;AACH,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,iBAAiB,GAAG,gBAAgB,CAAC,KAAK,CAAC,CAExF;AAQD,YAAY,EACX,UAAU,EACV,gBAAgB,EAChB,sBAAsB,EACtB,gBAAgB,EAChB,sBAAsB,EACtB,UAAU,EACV,gBAAgB,EAChB,aAAa,GACb,MAAM,8BAA8B,CAAC;AAEtC,OAAO,EAAE,eAAe,EAAE,SAAS,EAAE,MAAM,8BAA8B,CAAC;AAE1E,YAAY,EACX,mBAAmB,EACnB,qBAAqB,EACrB,SAAS,EACT,kBAAkB,EAClB,mBAAmB,EACnB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;GAKG;AAMH,YAAY,EACX,eAAe,IAAI,mBAAmB,EAAE,0CAA0C;AAClF,uBAAuB,GACvB,MAAM,uCAAuC,CAAC;AAC/C,OAAO,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC;AACpE,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AACnE,YAAY,EACX,oBAAoB,EACpB,eAAe,EACf,WAAW,EACX,eAAe,EACf,qBAAqB,EACrB,OAAO,EACP,cAAc,EACd,gBAAgB,EAChB,sBAAsB,EACtB,qBAAqB,EACrB,MAAM,GACN,MAAM,8BAA8B,CAAC;AACtC,YAAY,EAAE,gBAAgB,EAAE,MAAM,oCAAoC,CAAC;AAC3E,YAAY,EACX,UAAU,EACV,cAAc,EACd,WAAW,EACX,MAAM,EACN,qBAAqB,EACrB,WAAW,EACX,UAAU,EACV,YAAY,EACZ,cAAc,EACd,wBAAwB,EACxB,iBAAiB,EACjB,qBAAqB,EACrB,kBAAkB,EAClB,gBAAgB,EAChB,8BAA8B,EAC9B,MAAM,EACN,4BAA4B,EAC5B,WAAW,EAAE,wBAAwB;AACrC,uBAAuB,EAAE,sBAAsB;AAE/C,SAAS,EACT,UAAU,EACV,UAAU,EACV,GAAG,GAEH,MAAM,iCAAiC,CAAC;AAEzC,OAAO,EAAE,kBAAkB,EAAE,MAAM,qCAAqC,CAAC;AAEzE,YAAY,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAC;AASnE,cAAc,4BAA4B,CAAC;AAQ3C,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,oCAAoC,CAAC;AAC3E,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAGN,KAAK,iBAAiB,EACtB,MAAM,+BAA+B,CAAC;AAEvC;;;;;;;;;GASG;AACH,eAAO,MAAM,UAAU,EAAE,gBAAgB,CAAC,KAAK,CAAsB,CAAC;AAEtE;;;;;;;;;;;;;;;;;;;GAmBG;AACH,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,iBAAiB,GAAG,gBAAgB,CAAC,KAAK,CAAC,CAExF;AAQD,YAAY,EACX,UAAU,EACV,gBAAgB,EAChB,sBAAsB,EACtB,gBAAgB,EAChB,sBAAsB,EACtB,UAAU,EACV,gBAAgB,EAChB,aAAa,GACb,MAAM,8BAA8B,CAAC;AAEtC,OAAO,EAAE,eAAe,EAAE,SAAS,EAAE,MAAM,8BAA8B,CAAC;AAE1E,YAAY,EACX,mBAAmB,EACnB,qBAAqB,EACrB,SAAS,EACT,kBAAkB,EAClB,mBAAmB,EACnB,mBAAmB,EACnB,4BAA4B,EAC5B,aAAa,EACb,aAAa,EACb,mBAAmB,EACnB,IAAI,EACJ,sBAAsB,EACtB,2BAA2B,EAC3B,iCAAiC,EACjC,qBAAqB,GACrB,MAAM,mCAAmC,CAAC;AAE3C,YAAY,EACX,YAAY,EACZ,kBAAkB,EAClB,aAAa,EACb,gBAAgB,EAChB,wBAAwB,GACxB,MAAM,mCAAmC,CAAC;AAE3C,OAAO,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AAEjE,YAAY,EACX,aAAa,EACb,mBAAmB,GACnB,MAAM,6CAA6C,CAAC;AAErD,YAAY,EACX,yBAAyB,EAAE,iCAAiC;AAC5D,aAAa,EAAE,yCAAyC;AACxD,MAAM,GACN,MAAM,6CAA6C,CAAC"}
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAiBH,OAAO,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC;AACpE,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AA0CnE,4GAA4G;AAC5G,OAAO,EAAE,kBAAkB,EAAE,MAAM,qCAAqC,CAAC;AAIzE,mDAAmD;AACnD,4FAA4F;AAC5F;;;;MAIG;AACH,cAAc,4BAA4B,CAAC;AAU3C,OAAO,EACN,UAAU,IAAI,kBAAkB,EAChC,oBAAoB,IAAI,4BAA4B,GAEpD,MAAM,+BAA+B,CAAC;AAEvC;;;;;;;;;GASG;AACH,MAAM,CAAC,MAAM,UAAU,GAA4B,kBAAkB,CAAC;AAEtE;;;;;;;;;;;;;;;;;;;GAmBG;AACH,MAAM,UAAU,oBAAoB,CAAC,OAA0B;IAC9D,OAAO,4BAA4B,CAAC,OAAO,CAAC,CAAC;AAC9C,CAAC;AAmBD,OAAO,EAAE,eAAe,EAAE,SAAS,EAAE,MAAM,8BAA8B,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAiBH,OAAO,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC;AACpE,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AA0CnE,4GAA4G;AAC5G,OAAO,EAAE,kBAAkB,EAAE,MAAM,qCAAqC,CAAC;AAIzE,mDAAmD;AACnD,4FAA4F;AAC5F;;;;MAIG;AACH,cAAc,4BAA4B,CAAC;AAU3C,OAAO,EACN,UAAU,IAAI,kBAAkB,EAChC,oBAAoB,IAAI,4BAA4B,GAEpD,MAAM,+BAA+B,CAAC;AAEvC;;;;;;;;;GASG;AACH,MAAM,CAAC,MAAM,UAAU,GAA4B,kBAAkB,CAAC;AAEtE;;;;;;;;;;;;;;;;;;;GAmBG;AACH,MAAM,UAAU,oBAAoB,CAAC,OAA0B;IAC9D,OAAO,4BAA4B,CAAC,OAAO,CAAC,CAAC;AAC9C,CAAC;AAmBD,OAAO,EAAE,eAAe,EAAE,SAAS,EAAE,MAAM,8BAA8B,CAAC;AA4B1E,OAAO,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AAajE,4BAA4B","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\n/**\n * Bundles a collection of Fluid Framework client libraries for easy use when paired with a corresponding service client\n * package (e.g. `@fluidframework/azure-client`, `@fluidframework/tinylicious-client`, or `@fluidframework/odsp-client (BETA)`).\n *\n * @packageDocumentation\n */\n\n// ===============================================================\n// #region Public, Beta and Alpha (non-legacy) exports\n// #region Basic re-exports\n\nexport type {\n\tConnectionState as ConnectionStateType, // TODO: deduplicate ConnectionState types\n\tICriticalContainerError,\n} from \"@fluidframework/container-definitions\";\nexport { AttachState } from \"@fluidframework/container-definitions\";\nexport { ConnectionState } from \"@fluidframework/container-loader\";\nexport type {\n\tContainerAttachProps,\n\tContainerSchema,\n\tIConnection,\n\tIFluidContainer,\n\tIFluidContainerEvents,\n\tIMember,\n\tInitialObjects,\n\tIServiceAudience,\n\tIServiceAudienceEvents,\n\tMemberChangedListener,\n\tMyself,\n} from \"@fluidframework/fluid-static\";\nexport type { SharedObjectKind } from \"@fluidframework/shared-object-base\";\nexport type {\n\tIErrorBase,\n\tIEventProvider,\n\tIDisposable,\n\tIEvent,\n\tIEventThisPlaceHolder,\n\tIErrorEvent,\n\tErasedType,\n\tIFluidHandle,\n\tIFluidLoadable,\n\tITelemetryBaseProperties,\n\tIEventTransformer,\n\tIProvideFluidLoadable,\n\tIFluidHandleErased,\n\tTransformedEvent,\n\tTelemetryBaseEventPropertyType,\n\tTagged,\n\tReplaceIEventThisPlaceHolder,\n\tFluidObject, // Linked in doc comment\n\tFluidObjectProviderKeys, // Used by FluidObject\n\t/* eslint-disable import/export -- The event APIs are known to conflict, and this is intended as the exports via `@fluidframework/core-interfaces` are preferred over the deprecated ones from `@fluidframework/tree`. */\n\tListeners,\n\tIsListener,\n\tListenable,\n\tOff,\n\t/* eslint-enable import/export */\n} from \"@fluidframework/core-interfaces\";\n// This is an alpha API, but this package doesn't have an alpha entry point so its imported from \"internal\".\nexport { onAssertionFailure } from \"@fluidframework/core-utils/internal\";\n\nexport type { isFluidHandle } from \"@fluidframework/runtime-utils\";\n\n// Let the tree package manage its own API surface.\n// Note: this only surfaces the `@public, @beta and @alpha` API items from the tree package.\n/* eslint-disable-next-line\n\tno-restricted-syntax,\n\timport/no-internal-modules,\n\timport/export -- This re-exports all non-conflicting APIs from `@fluidframework/tree`. In cases where * exports conflict with named exports, the named exports take precedence per https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-getexportednames. This does trigger the `import/export` lint warning (which is intentionally disabled here). This approach ensures that the non-deprecated versions of the event APIs from `@fluidframework/core-interfaces` (provided as named indirect exports) eclipse the deprecated ones from `@fluidframework/tree`. The preferred versions of the event APIs are those exported via `@fluidframework/core-interfaces`.\n\t*/\nexport * from \"@fluidframework/tree/alpha\";\n\n// End of basic public+beta+alpha exports - nothing above this line should\n// depend on an /internal path.\n// #endregion Basic re-exports\n// ---------------------------------------------------------------\n// #region Custom re-exports\n\nimport type { SharedObjectKind } from \"@fluidframework/shared-object-base\";\nimport type { ITree } from \"@fluidframework/tree\";\nimport {\n\tSharedTree as OriginalSharedTree,\n\tconfiguredSharedTree as originalConfiguredSharedTree,\n\ttype SharedTreeOptions,\n} from \"@fluidframework/tree/internal\";\n\n/**\n * A hierarchical data structure for collaboratively editing strongly typed JSON-like trees\n * of objects, arrays, and other data types.\n * @privateRemarks\n * Here we reexport SharedTree, but with the `@alpha` types (`ISharedObjectKind`) removed, just keeping the `SharedObjectKind`.\n * Doing this requires creating this new typed export rather than relying on a reexport directly from the tree package.\n * The tree package itself does not do this because it's API needs to be usable from the encapsulated API which requires `ISharedObjectKind`.\n * This package however is not intended for use by users of the encapsulated API, and therefor it can discard that interface.\n * @public\n */\nexport const SharedTree: SharedObjectKind<ITree> = OriginalSharedTree;\n\n/**\n * {@link SharedTree} but allowing a non-default configuration.\n * @remarks\n * This is useful for debugging and testing to opt into extra validation or see if opting out of some optimizations fixes an issue.\n * @example\n * ```typescript\n * import {\n * \tForestType,\n * \tTreeCompressionStrategy,\n * \tconfiguredSharedTree,\n * \ttypeboxValidator,\n * } from \"@fluid-framework/alpha\";\n * const SharedTree = configuredSharedTree({\n * \tforest: ForestTypeReference,\n * \tjsonValidator: typeboxValidator,\n * \ttreeEncodeType: TreeCompressionStrategy.Uncompressed,\n * });\n * ```\n * @alpha\n */\nexport function configuredSharedTree(options: SharedTreeOptions): SharedObjectKind<ITree> {\n\treturn originalConfiguredSharedTree(options);\n}\n\n// #endregion Custom re-exports\n// #endregion\n\n// ===============================================================\n// #region Legacy exports\n\nexport type {\n\tIDirectory,\n\tIDirectoryEvents,\n\tIDirectoryValueChanged,\n\tISharedDirectory,\n\tISharedDirectoryEvents,\n\tISharedMap,\n\tISharedMapEvents,\n\tIValueChanged,\n} from \"@fluidframework/map/internal\";\n\nexport { SharedDirectory, SharedMap } from \"@fluidframework/map/internal\";\n\nexport type {\n\tDeserializeCallback,\n\tInteriorSequencePlace,\n\tIInterval,\n\tIntervalStickiness,\n\tISequenceDeltaRange,\n\tISerializedInterval,\n\tISharedSegmentSequenceEvents,\n\tISharedString,\n\tSequencePlace,\n\tSharedStringSegment,\n\tSide,\n\tISharedSegmentSequence,\n\tISequenceIntervalCollection,\n\tISequenceIntervalCollectionEvents,\n\tSequenceIntervalIndex,\n} from \"@fluidframework/sequence/internal\";\n\nexport type {\n\tIntervalType,\n\tSequenceDeltaEvent,\n\tSequenceEvent,\n\tSequenceInterval,\n\tSequenceMaintenanceEvent,\n} from \"@fluidframework/sequence/internal\";\n\nexport { SharedString } from \"@fluidframework/sequence/internal\";\n\nexport type {\n\tISharedObject,\n\tISharedObjectEvents,\n} from \"@fluidframework/shared-object-base/internal\";\n\nexport type {\n\tISequencedDocumentMessage, // Leaked via ISharedObjectEvents\n\tIBranchOrigin, // Required for ISequencedDocumentMessage\n\tITrace, // Required for ISequencedDocumentMessage\n} from \"@fluidframework/driver-definitions/internal\";\n\n// #endregion Legacy exports\n"]}
|
package/lib/legacy.d.ts
CHANGED
|
@@ -16,10 +16,11 @@
|
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
18
|
export {
|
|
19
|
-
// Unrestricted APIs
|
|
19
|
+
// #region Unrestricted APIs
|
|
20
20
|
InternalTypes,
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
// #endregion
|
|
22
|
+
|
|
23
|
+
// #region @public APIs
|
|
23
24
|
AllowedTypes,
|
|
24
25
|
AttachState,
|
|
25
26
|
CommitKind,
|
|
@@ -131,19 +132,37 @@ export {
|
|
|
131
132
|
isFluidHandle,
|
|
132
133
|
rollback,
|
|
133
134
|
typeSchemaSymbol,
|
|
135
|
+
// #endregion
|
|
134
136
|
|
|
135
|
-
// @
|
|
136
|
-
DeserializeCallback,
|
|
137
|
-
IBranchOrigin,
|
|
137
|
+
// #region @legacyPublic APIs
|
|
138
138
|
IDirectory,
|
|
139
139
|
IDirectoryEvents,
|
|
140
140
|
IDirectoryValueChanged,
|
|
141
|
+
IValueChanged,
|
|
142
|
+
// #endregion
|
|
143
|
+
|
|
144
|
+
// #region @beta APIs
|
|
145
|
+
ForestOptions,
|
|
146
|
+
ForestType,
|
|
147
|
+
NodeChangedData,
|
|
148
|
+
PopUnion,
|
|
149
|
+
SchemaFactoryBeta,
|
|
150
|
+
TreeBeta,
|
|
151
|
+
TreeChangeEventsBeta,
|
|
152
|
+
UnionToTuple,
|
|
153
|
+
adaptEnum,
|
|
154
|
+
enumFromStrings,
|
|
155
|
+
singletonSchema,
|
|
156
|
+
// #endregion
|
|
157
|
+
|
|
158
|
+
// #region @legacyBeta APIs
|
|
159
|
+
DeserializeCallback,
|
|
160
|
+
IBranchOrigin,
|
|
141
161
|
IInterval,
|
|
142
162
|
ISequenceDeltaRange,
|
|
143
163
|
ISequenceIntervalCollection,
|
|
144
164
|
ISequenceIntervalCollectionEvents,
|
|
145
165
|
ISequencedDocumentMessage,
|
|
146
|
-
ISerializableInterval,
|
|
147
166
|
ISerializedInterval,
|
|
148
167
|
ISharedDirectory,
|
|
149
168
|
ISharedDirectoryEvents,
|
|
@@ -155,7 +174,6 @@ export {
|
|
|
155
174
|
ISharedSegmentSequenceEvents,
|
|
156
175
|
ISharedString,
|
|
157
176
|
ITrace,
|
|
158
|
-
IValueChanged,
|
|
159
177
|
InteriorSequencePlace,
|
|
160
178
|
IntervalStickiness,
|
|
161
179
|
IntervalType,
|
|
@@ -170,4 +188,5 @@ export {
|
|
|
170
188
|
SharedString,
|
|
171
189
|
SharedStringSegment,
|
|
172
190
|
Side
|
|
191
|
+
// #endregion
|
|
173
192
|
} from "./index.js";
|
package/lib/public.d.ts
CHANGED
|
@@ -16,10 +16,11 @@
|
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
18
|
export {
|
|
19
|
-
// Unrestricted APIs
|
|
19
|
+
// #region Unrestricted APIs
|
|
20
20
|
InternalTypes,
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
// #endregion
|
|
22
|
+
|
|
23
|
+
// #region @public APIs
|
|
23
24
|
AllowedTypes,
|
|
24
25
|
AttachState,
|
|
25
26
|
CommitKind,
|
|
@@ -131,4 +132,5 @@ export {
|
|
|
131
132
|
isFluidHandle,
|
|
132
133
|
rollback,
|
|
133
134
|
typeSchemaSymbol
|
|
135
|
+
// #endregion
|
|
134
136
|
} from "./index.js";
|
package/lib/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fluid-framework",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.61.0-355054",
|
|
4
4
|
"description": "The main entry point into Fluid Framework public packages",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -57,26 +57,26 @@
|
|
|
57
57
|
"main": "lib/index.js",
|
|
58
58
|
"types": "lib/public.d.ts",
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@fluidframework/container-definitions": "
|
|
61
|
-
"@fluidframework/container-loader": "
|
|
62
|
-
"@fluidframework/core-interfaces": "
|
|
63
|
-
"@fluidframework/core-utils": "
|
|
64
|
-
"@fluidframework/driver-definitions": "
|
|
65
|
-
"@fluidframework/fluid-static": "
|
|
66
|
-
"@fluidframework/map": "
|
|
67
|
-
"@fluidframework/runtime-utils": "
|
|
68
|
-
"@fluidframework/sequence": "
|
|
69
|
-
"@fluidframework/shared-object-base": "
|
|
70
|
-
"@fluidframework/tree": "
|
|
60
|
+
"@fluidframework/container-definitions": "2.61.0-355054",
|
|
61
|
+
"@fluidframework/container-loader": "2.61.0-355054",
|
|
62
|
+
"@fluidframework/core-interfaces": "2.61.0-355054",
|
|
63
|
+
"@fluidframework/core-utils": "2.61.0-355054",
|
|
64
|
+
"@fluidframework/driver-definitions": "2.61.0-355054",
|
|
65
|
+
"@fluidframework/fluid-static": "2.61.0-355054",
|
|
66
|
+
"@fluidframework/map": "2.61.0-355054",
|
|
67
|
+
"@fluidframework/runtime-utils": "2.61.0-355054",
|
|
68
|
+
"@fluidframework/sequence": "2.61.0-355054",
|
|
69
|
+
"@fluidframework/shared-object-base": "2.61.0-355054",
|
|
70
|
+
"@fluidframework/tree": "2.61.0-355054"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
74
74
|
"@biomejs/biome": "~1.9.3",
|
|
75
|
-
"@fluid-tools/build-cli": "^0.
|
|
75
|
+
"@fluid-tools/build-cli": "^0.58.2",
|
|
76
76
|
"@fluidframework/build-common": "^2.0.3",
|
|
77
|
-
"@fluidframework/build-tools": "^0.
|
|
78
|
-
"@fluidframework/eslint-config-fluid": "^
|
|
79
|
-
"@microsoft/api-extractor": "7.52.
|
|
77
|
+
"@fluidframework/build-tools": "^0.58.2",
|
|
78
|
+
"@fluidframework/eslint-config-fluid": "^6.0.0",
|
|
79
|
+
"@microsoft/api-extractor": "7.52.11",
|
|
80
80
|
"@types/node": "^18.19.0",
|
|
81
81
|
"concurrently": "^8.2.1",
|
|
82
82
|
"copyfiles": "^2.4.1",
|
|
@@ -103,8 +103,8 @@
|
|
|
103
103
|
},
|
|
104
104
|
"scripts": {
|
|
105
105
|
"api": "fluid-build . --task api",
|
|
106
|
-
"api-extractor:commonjs": "flub generate entrypoints --outDir ./dist",
|
|
107
|
-
"api-extractor:esnext": "flub generate entrypoints --outDir ./lib --node10TypeCompat",
|
|
106
|
+
"api-extractor:commonjs": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./dist",
|
|
107
|
+
"api-extractor:esnext": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat",
|
|
108
108
|
"build": "fluid-build . --task build",
|
|
109
109
|
"build:api-reports": "concurrently \"npm:build:api-reports:*\"",
|
|
110
110
|
"build:api-reports:current": "api-extractor run --local --config api-extractor/api-extractor.current.json",
|