fluid-framework 2.0.0-internal.7.4.0 → 2.0.0-internal.8.0.0
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 +16 -0
- package/api-report/fluid-framework.api.md +0 -9
- package/dist/fluid-framework-alpha.d.ts +0 -8
- package/dist/fluid-framework-beta.d.ts +0 -9
- package/dist/fluid-framework-public.d.ts +0 -9
- package/dist/fluid-framework-untrimmed.d.ts +0 -9
- package/dist/index.cjs +1 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.d.ts.map +1 -1
- package/lib/fluid-framework-alpha.d.ts +0 -8
- package/lib/fluid-framework-beta.d.ts +0 -9
- package/lib/fluid-framework-public.d.ts +0 -9
- package/lib/fluid-framework-untrimmed.d.ts +0 -9
- package/lib/index.d.ts +0 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.mjs +0 -1
- package/lib/index.mjs.map +1 -1
- package/package.json +7 -7
- package/src/index.ts +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# fluid-framework
|
|
2
2
|
|
|
3
|
+
## 2.0.0-internal.8.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- azure-client: Removed deprecated FluidStatic classes [9a451d4946](https://github.com/microsoft/FluidFramework/commits/9a451d4946b5c51a52e4d1ab5bf51e7b285b0d74)
|
|
8
|
+
|
|
9
|
+
Several FluidStatic classes were unnecessarily exposed and were deprecated in an earlier release. They have been replaced with creation functions. This helps us
|
|
10
|
+
keep implementations decoupled from usage which is easier to maintain and extend. It has very minimal impact on the
|
|
11
|
+
public surface area of downstream packages. The removed classes are as follows:
|
|
12
|
+
|
|
13
|
+
- `AzureAudience` (use `IAzureAudience` instead)
|
|
14
|
+
- `TinyliciousAudience` (use `ITinyliciousAudience` instead)
|
|
15
|
+
- `DOProviderContainerRuntimeFactory`
|
|
16
|
+
- `FluidContainer`
|
|
17
|
+
- `ServiceAudience`
|
|
18
|
+
|
|
3
19
|
## 2.0.0-internal.7.4.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
|
@@ -11,9 +11,7 @@ import { ContainerSchema } from '@fluidframework/fluid-static';
|
|
|
11
11
|
import { DataObjectClass } from '@fluidframework/fluid-static';
|
|
12
12
|
import { DeserializeCallback } from '@fluidframework/sequence';
|
|
13
13
|
import { DirectoryFactory } from '@fluidframework/map';
|
|
14
|
-
import { DOProviderContainerRuntimeFactory } from '@fluidframework/fluid-static';
|
|
15
14
|
import { DriverErrorType } from '@fluidframework/driver-definitions';
|
|
16
|
-
import { FluidContainer } from '@fluidframework/fluid-static';
|
|
17
15
|
import { getTextAndMarkers } from '@fluidframework/sequence';
|
|
18
16
|
import { IConnection } from '@fluidframework/fluid-static';
|
|
19
17
|
import { ICriticalContainerError } from '@fluidframework/container-definitions';
|
|
@@ -74,7 +72,6 @@ import { SequenceEvent } from '@fluidframework/sequence';
|
|
|
74
72
|
import { SequenceInterval } from '@fluidframework/sequence';
|
|
75
73
|
import { SequenceMaintenanceEvent } from '@fluidframework/sequence';
|
|
76
74
|
import { SerializedIntervalDelta } from '@fluidframework/sequence';
|
|
77
|
-
import { ServiceAudience } from '@fluidframework/fluid-static';
|
|
78
75
|
import { SharedDirectory } from '@fluidframework/map';
|
|
79
76
|
import { SharedIntervalCollection } from '@fluidframework/sequence';
|
|
80
77
|
import { SharedIntervalCollectionFactory } from '@fluidframework/sequence';
|
|
@@ -101,12 +98,8 @@ export { DeserializeCallback }
|
|
|
101
98
|
|
|
102
99
|
export { DirectoryFactory }
|
|
103
100
|
|
|
104
|
-
export { DOProviderContainerRuntimeFactory }
|
|
105
|
-
|
|
106
101
|
export { DriverErrorType }
|
|
107
102
|
|
|
108
|
-
export { FluidContainer }
|
|
109
|
-
|
|
110
103
|
export { getTextAndMarkers }
|
|
111
104
|
|
|
112
105
|
export { IConnection }
|
|
@@ -227,8 +220,6 @@ export { SequenceMaintenanceEvent }
|
|
|
227
220
|
|
|
228
221
|
export { SerializedIntervalDelta }
|
|
229
222
|
|
|
230
|
-
export { ServiceAudience }
|
|
231
|
-
|
|
232
223
|
export { SharedDirectory }
|
|
233
224
|
|
|
234
225
|
export { SharedIntervalCollection }
|
|
@@ -13,9 +13,7 @@ import { ContainerSchema } from '@fluidframework/fluid-static';
|
|
|
13
13
|
import { DataObjectClass } from '@fluidframework/fluid-static';
|
|
14
14
|
import { DeserializeCallback } from '@fluidframework/sequence';
|
|
15
15
|
import { DirectoryFactory } from '@fluidframework/map';
|
|
16
|
-
import { DOProviderContainerRuntimeFactory } from '@fluidframework/fluid-static';
|
|
17
16
|
import { DriverErrorType } from '@fluidframework/driver-definitions';
|
|
18
|
-
import { FluidContainer } from '@fluidframework/fluid-static';
|
|
19
17
|
import { getTextAndMarkers } from '@fluidframework/sequence';
|
|
20
18
|
import { IConnection } from '@fluidframework/fluid-static';
|
|
21
19
|
import { ICriticalContainerError } from '@fluidframework/container-definitions';
|
|
@@ -76,7 +74,6 @@ import { SequenceEvent } from '@fluidframework/sequence';
|
|
|
76
74
|
import { SequenceInterval } from '@fluidframework/sequence';
|
|
77
75
|
import { SequenceMaintenanceEvent } from '@fluidframework/sequence';
|
|
78
76
|
import { SerializedIntervalDelta } from '@fluidframework/sequence';
|
|
79
|
-
import { ServiceAudience } from '@fluidframework/fluid-static';
|
|
80
77
|
import { SharedDirectory } from '@fluidframework/map';
|
|
81
78
|
import { SharedIntervalCollection } from '@fluidframework/sequence';
|
|
82
79
|
import { SharedIntervalCollectionFactory } from '@fluidframework/sequence';
|
|
@@ -102,11 +99,8 @@ export { DeserializeCallback }
|
|
|
102
99
|
|
|
103
100
|
export { DirectoryFactory }
|
|
104
101
|
|
|
105
|
-
/* Excluded from this release type: DOProviderContainerRuntimeFactory */
|
|
106
102
|
export { DriverErrorType }
|
|
107
103
|
|
|
108
|
-
/* Excluded from this release type: FluidContainer */
|
|
109
|
-
|
|
110
104
|
/* Excluded from this release type: getTextAndMarkers */
|
|
111
105
|
export { IConnection }
|
|
112
106
|
|
|
@@ -219,8 +213,6 @@ export { SequenceInterval }
|
|
|
219
213
|
export { SequenceMaintenanceEvent }
|
|
220
214
|
|
|
221
215
|
/* Excluded from this release type: SerializedIntervalDelta */
|
|
222
|
-
|
|
223
|
-
/* Excluded from this release type: ServiceAudience */
|
|
224
216
|
export { SharedDirectory }
|
|
225
217
|
|
|
226
218
|
/* Excluded from this release type: SharedIntervalCollection */
|
|
@@ -13,9 +13,7 @@ import { ContainerSchema } from '@fluidframework/fluid-static';
|
|
|
13
13
|
import { DataObjectClass } from '@fluidframework/fluid-static';
|
|
14
14
|
import { DeserializeCallback } from '@fluidframework/sequence';
|
|
15
15
|
import { DirectoryFactory } from '@fluidframework/map';
|
|
16
|
-
import { DOProviderContainerRuntimeFactory } from '@fluidframework/fluid-static';
|
|
17
16
|
import { DriverErrorType } from '@fluidframework/driver-definitions';
|
|
18
|
-
import { FluidContainer } from '@fluidframework/fluid-static';
|
|
19
17
|
import { getTextAndMarkers } from '@fluidframework/sequence';
|
|
20
18
|
import { IConnection } from '@fluidframework/fluid-static';
|
|
21
19
|
import { ICriticalContainerError } from '@fluidframework/container-definitions';
|
|
@@ -76,7 +74,6 @@ import { SequenceEvent } from '@fluidframework/sequence';
|
|
|
76
74
|
import { SequenceInterval } from '@fluidframework/sequence';
|
|
77
75
|
import { SequenceMaintenanceEvent } from '@fluidframework/sequence';
|
|
78
76
|
import { SerializedIntervalDelta } from '@fluidframework/sequence';
|
|
79
|
-
import { ServiceAudience } from '@fluidframework/fluid-static';
|
|
80
77
|
import { SharedDirectory } from '@fluidframework/map';
|
|
81
78
|
import { SharedIntervalCollection } from '@fluidframework/sequence';
|
|
82
79
|
import { SharedIntervalCollectionFactory } from '@fluidframework/sequence';
|
|
@@ -103,12 +100,8 @@ import { SubSequence } from '@fluidframework/sequence';
|
|
|
103
100
|
|
|
104
101
|
/* Excluded from this release type: DirectoryFactory */
|
|
105
102
|
|
|
106
|
-
/* Excluded from this release type: DOProviderContainerRuntimeFactory */
|
|
107
|
-
|
|
108
103
|
/* Excluded from this release type: DriverErrorType */
|
|
109
104
|
|
|
110
|
-
/* Excluded from this release type: FluidContainer */
|
|
111
|
-
|
|
112
105
|
/* Excluded from this release type: getTextAndMarkers */
|
|
113
106
|
|
|
114
107
|
/* Excluded from this release type: IConnection */
|
|
@@ -229,8 +222,6 @@ import { SubSequence } from '@fluidframework/sequence';
|
|
|
229
222
|
|
|
230
223
|
/* Excluded from this release type: SerializedIntervalDelta */
|
|
231
224
|
|
|
232
|
-
/* Excluded from this release type: ServiceAudience */
|
|
233
|
-
|
|
234
225
|
/* Excluded from this release type: SharedDirectory */
|
|
235
226
|
|
|
236
227
|
/* Excluded from this release type: SharedIntervalCollection */
|
|
@@ -13,9 +13,7 @@ import { ContainerSchema } from '@fluidframework/fluid-static';
|
|
|
13
13
|
import { DataObjectClass } from '@fluidframework/fluid-static';
|
|
14
14
|
import { DeserializeCallback } from '@fluidframework/sequence';
|
|
15
15
|
import { DirectoryFactory } from '@fluidframework/map';
|
|
16
|
-
import { DOProviderContainerRuntimeFactory } from '@fluidframework/fluid-static';
|
|
17
16
|
import { DriverErrorType } from '@fluidframework/driver-definitions';
|
|
18
|
-
import { FluidContainer } from '@fluidframework/fluid-static';
|
|
19
17
|
import { getTextAndMarkers } from '@fluidframework/sequence';
|
|
20
18
|
import { IConnection } from '@fluidframework/fluid-static';
|
|
21
19
|
import { ICriticalContainerError } from '@fluidframework/container-definitions';
|
|
@@ -76,7 +74,6 @@ import { SequenceEvent } from '@fluidframework/sequence';
|
|
|
76
74
|
import { SequenceInterval } from '@fluidframework/sequence';
|
|
77
75
|
import { SequenceMaintenanceEvent } from '@fluidframework/sequence';
|
|
78
76
|
import { SerializedIntervalDelta } from '@fluidframework/sequence';
|
|
79
|
-
import { ServiceAudience } from '@fluidframework/fluid-static';
|
|
80
77
|
import { SharedDirectory } from '@fluidframework/map';
|
|
81
78
|
import { SharedIntervalCollection } from '@fluidframework/sequence';
|
|
82
79
|
import { SharedIntervalCollectionFactory } from '@fluidframework/sequence';
|
|
@@ -103,12 +100,8 @@ import { SubSequence } from '@fluidframework/sequence';
|
|
|
103
100
|
|
|
104
101
|
/* Excluded from this release type: DirectoryFactory */
|
|
105
102
|
|
|
106
|
-
/* Excluded from this release type: DOProviderContainerRuntimeFactory */
|
|
107
|
-
|
|
108
103
|
/* Excluded from this release type: DriverErrorType */
|
|
109
104
|
|
|
110
|
-
/* Excluded from this release type: FluidContainer */
|
|
111
|
-
|
|
112
105
|
/* Excluded from this release type: getTextAndMarkers */
|
|
113
106
|
|
|
114
107
|
/* Excluded from this release type: IConnection */
|
|
@@ -229,8 +222,6 @@ import { SubSequence } from '@fluidframework/sequence';
|
|
|
229
222
|
|
|
230
223
|
/* Excluded from this release type: SerializedIntervalDelta */
|
|
231
224
|
|
|
232
|
-
/* Excluded from this release type: ServiceAudience */
|
|
233
|
-
|
|
234
225
|
/* Excluded from this release type: SharedDirectory */
|
|
235
226
|
|
|
236
227
|
/* Excluded from this release type: SharedIntervalCollection */
|
|
@@ -13,9 +13,7 @@ import { ContainerSchema } from '@fluidframework/fluid-static';
|
|
|
13
13
|
import { DataObjectClass } from '@fluidframework/fluid-static';
|
|
14
14
|
import { DeserializeCallback } from '@fluidframework/sequence';
|
|
15
15
|
import { DirectoryFactory } from '@fluidframework/map';
|
|
16
|
-
import { DOProviderContainerRuntimeFactory } from '@fluidframework/fluid-static';
|
|
17
16
|
import { DriverErrorType } from '@fluidframework/driver-definitions';
|
|
18
|
-
import { FluidContainer } from '@fluidframework/fluid-static';
|
|
19
17
|
import { getTextAndMarkers } from '@fluidframework/sequence';
|
|
20
18
|
import { IConnection } from '@fluidframework/fluid-static';
|
|
21
19
|
import { ICriticalContainerError } from '@fluidframework/container-definitions';
|
|
@@ -76,7 +74,6 @@ import { SequenceEvent } from '@fluidframework/sequence';
|
|
|
76
74
|
import { SequenceInterval } from '@fluidframework/sequence';
|
|
77
75
|
import { SequenceMaintenanceEvent } from '@fluidframework/sequence';
|
|
78
76
|
import { SerializedIntervalDelta } from '@fluidframework/sequence';
|
|
79
|
-
import { ServiceAudience } from '@fluidframework/fluid-static';
|
|
80
77
|
import { SharedDirectory } from '@fluidframework/map';
|
|
81
78
|
import { SharedIntervalCollection } from '@fluidframework/sequence';
|
|
82
79
|
import { SharedIntervalCollectionFactory } from '@fluidframework/sequence';
|
|
@@ -103,12 +100,8 @@ export { DeserializeCallback }
|
|
|
103
100
|
|
|
104
101
|
export { DirectoryFactory }
|
|
105
102
|
|
|
106
|
-
export { DOProviderContainerRuntimeFactory }
|
|
107
|
-
|
|
108
103
|
export { DriverErrorType }
|
|
109
104
|
|
|
110
|
-
export { FluidContainer }
|
|
111
|
-
|
|
112
105
|
export { getTextAndMarkers }
|
|
113
106
|
|
|
114
107
|
export { IConnection }
|
|
@@ -229,8 +222,6 @@ export { SequenceMaintenanceEvent }
|
|
|
229
222
|
|
|
230
223
|
export { SerializedIntervalDelta }
|
|
231
224
|
|
|
232
|
-
export { ServiceAudience }
|
|
233
|
-
|
|
234
225
|
export { SharedDirectory }
|
|
235
226
|
|
|
236
227
|
export { SharedIntervalCollection }
|
package/dist/index.cjs
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Licensed under the MIT License.
|
|
5
5
|
*/
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.SubSequence = exports.SharedStringFactory = exports.SharedString = exports.SharedSequence = exports.SharedSegmentSequence = exports.SharedIntervalCollectionFactory = exports.SharedIntervalCollection = exports.SequenceMaintenanceEvent = exports.SequenceInterval = exports.SequenceEvent = exports.SequenceDeltaEvent = exports.IntervalType = exports.intervalLocatorFromEndpoint = exports.Interval = exports.getTextAndMarkers = exports.SharedMap = exports.SharedDirectory = exports.MapFactory = exports.LocalValueMaker = exports.DirectoryFactory = exports.
|
|
7
|
+
exports.SubSequence = exports.SharedStringFactory = exports.SharedString = exports.SharedSequence = exports.SharedSegmentSequence = exports.SharedIntervalCollectionFactory = exports.SharedIntervalCollection = exports.SequenceMaintenanceEvent = exports.SequenceInterval = exports.SequenceEvent = exports.SequenceDeltaEvent = exports.IntervalType = exports.intervalLocatorFromEndpoint = exports.Interval = exports.getTextAndMarkers = exports.SharedMap = exports.SharedDirectory = exports.MapFactory = exports.LocalValueMaker = exports.DirectoryFactory = exports.ConnectionState = exports.DriverErrorType = exports.ContainerErrorType = exports.AttachState = void 0;
|
|
8
8
|
var container_definitions_1 = require("@fluidframework/container-definitions");
|
|
9
9
|
Object.defineProperty(exports, "AttachState", { enumerable: true, get: function () { return container_definitions_1.AttachState; } });
|
|
10
10
|
Object.defineProperty(exports, "ContainerErrorType", { enumerable: true, get: function () { return container_definitions_1.ContainerErrorType; } });
|
|
@@ -12,10 +12,6 @@ var driver_definitions_1 = require("@fluidframework/driver-definitions");
|
|
|
12
12
|
Object.defineProperty(exports, "DriverErrorType", { enumerable: true, get: function () { return driver_definitions_1.DriverErrorType; } });
|
|
13
13
|
var container_loader_1 = require("@fluidframework/container-loader");
|
|
14
14
|
Object.defineProperty(exports, "ConnectionState", { enumerable: true, get: function () { return container_loader_1.ConnectionState; } });
|
|
15
|
-
var fluid_static_1 = require("@fluidframework/fluid-static");
|
|
16
|
-
Object.defineProperty(exports, "DOProviderContainerRuntimeFactory", { enumerable: true, get: function () { return fluid_static_1.DOProviderContainerRuntimeFactory; } });
|
|
17
|
-
Object.defineProperty(exports, "FluidContainer", { enumerable: true, get: function () { return fluid_static_1.FluidContainer; } });
|
|
18
|
-
Object.defineProperty(exports, "ServiceAudience", { enumerable: true, get: function () { return fluid_static_1.ServiceAudience; } });
|
|
19
15
|
var map_1 = require("@fluidframework/map");
|
|
20
16
|
Object.defineProperty(exports, "DirectoryFactory", { enumerable: true, get: function () { return map_1.DirectoryFactory; } });
|
|
21
17
|
Object.defineProperty(exports, "LocalValueMaker", { enumerable: true, get: function () { return map_1.LocalValueMaker; } });
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAWH,+EAAwF;AAA/E,oHAAA,WAAW,OAAA;AAAE,2HAAA,kBAAkB,OAAA;AACxC,yEAAqE;AAA5D,qHAAA,eAAe,OAAA;AACxB,qEAAmE;AAA1D,mHAAA,eAAe,OAAA;
|
|
1
|
+
{"version":3,"file":"index.cjs","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAWH,+EAAwF;AAA/E,oHAAA,WAAW,OAAA;AAAE,2HAAA,kBAAkB,OAAA;AACxC,yEAAqE;AAA5D,qHAAA,eAAe,OAAA;AACxB,qEAAmE;AAA1D,mHAAA,eAAe,OAAA;AA0CxB,2CAM6B;AAL5B,uGAAA,gBAAgB,OAAA;AAChB,sGAAA,eAAe,OAAA;AACf,iGAAA,UAAU,OAAA;AACV,sGAAA,eAAe,OAAA;AACf,gGAAA,SAAS,OAAA;AAqBV,qDAgBkC;AAfjC,6GAAA,iBAAiB,OAAA;AACjB,oGAAA,QAAQ,OAAA;AACR,uHAAA,2BAA2B,OAAA;AAC3B,wGAAA,YAAY,OAAA;AACZ,8GAAA,kBAAkB,OAAA;AAClB,yGAAA,aAAa,OAAA;AACb,4GAAA,gBAAgB,OAAA;AAChB,oHAAA,wBAAwB,OAAA;AACxB,oHAAA,wBAAwB,OAAA;AACxB,2HAAA,+BAA+B,OAAA;AAC/B,iHAAA,qBAAqB,OAAA;AACrB,0GAAA,cAAc,OAAA;AACd,wGAAA,YAAY,OAAA;AACZ,+GAAA,mBAAmB,OAAA;AACnB,uGAAA,WAAW,OAAA","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\n/**\n * The **fluid-framework** package bundles a collection of Fluid Framework client libraries for easy use\n * when paired with a corresponding service client library (for example,\n * `\\@fluidframework/azure-client` or `\\@fluidframework/tinylicious-client`).\n *\n * @packageDocumentation\n */\n\nexport type { ICriticalContainerError } from \"@fluidframework/container-definitions\";\nexport { AttachState, ContainerErrorType } from \"@fluidframework/container-definitions\";\nexport { DriverErrorType } from \"@fluidframework/driver-definitions\";\nexport { ConnectionState } from \"@fluidframework/container-loader\";\nexport type {\n\tContainerSchema,\n\tDataObjectClass,\n\tIConnection,\n\tIFluidContainer,\n\tIFluidContainerEvents,\n\tIMember,\n\tIRootDataObject,\n\tIServiceAudience,\n\tIServiceAudienceEvents,\n\tLoadableObjectClass,\n\tLoadableObjectClassRecord,\n\tLoadableObjectCtor,\n\tLoadableObjectRecord,\n\tMemberChangedListener,\n\tSharedObjectClass,\n} from \"@fluidframework/fluid-static\";\nexport type {\n\tIDirectory,\n\tIDirectoryClearOperation,\n\tIDirectoryCreateSubDirectoryOperation,\n\tIDirectoryDataObject,\n\tIDirectoryDeleteOperation,\n\tIDirectoryDeleteSubDirectoryOperation,\n\tIDirectoryEvents,\n\tIDirectoryKeyOperation,\n\tIDirectoryNewStorageFormat,\n\tIDirectoryOperation,\n\tIDirectorySetOperation,\n\tIDirectoryStorageOperation,\n\tIDirectorySubDirectoryOperation,\n\tIDirectoryValueChanged,\n\tILocalValue,\n\tISerializableValue,\n\tISerializedValue,\n\tISharedDirectory,\n\tISharedDirectoryEvents,\n\tISharedMap,\n\tISharedMapEvents,\n\tIValueChanged,\n} from \"@fluidframework/map\";\nexport {\n\tDirectoryFactory,\n\tLocalValueMaker,\n\tMapFactory,\n\tSharedDirectory,\n\tSharedMap,\n} from \"@fluidframework/map\";\nexport type {\n\tDeserializeCallback,\n\tIInterval,\n\tIIntervalCollectionEvent,\n\tIIntervalHelpers,\n\tIJSONRunSegment,\n\tIMapMessageLocalMetadata,\n\tIIntervalCollection,\n\tIntervalLocator,\n\tISequenceDeltaRange,\n\tISerializableInterval,\n\tISerializedInterval,\n\tISharedIntervalCollection,\n\tISharedSegmentSequenceEvents,\n\tISharedString,\n\tIValueOpEmitter,\n\tSerializedIntervalDelta,\n\tSharedStringSegment,\n} from \"@fluidframework/sequence\";\nexport {\n\tgetTextAndMarkers,\n\tInterval,\n\tintervalLocatorFromEndpoint,\n\tIntervalType,\n\tSequenceDeltaEvent,\n\tSequenceEvent,\n\tSequenceInterval,\n\tSequenceMaintenanceEvent,\n\tSharedIntervalCollection,\n\tSharedIntervalCollectionFactory,\n\tSharedSegmentSequence,\n\tSharedSequence,\n\tSharedString,\n\tSharedStringFactory,\n\tSubSequence,\n} from \"@fluidframework/sequence\";\n"]}
|
package/dist/index.d.ts
CHANGED
|
@@ -14,7 +14,6 @@ export { AttachState, ContainerErrorType } from "@fluidframework/container-defin
|
|
|
14
14
|
export { DriverErrorType } from "@fluidframework/driver-definitions";
|
|
15
15
|
export { ConnectionState } from "@fluidframework/container-loader";
|
|
16
16
|
export type { ContainerSchema, DataObjectClass, IConnection, IFluidContainer, IFluidContainerEvents, IMember, IRootDataObject, IServiceAudience, IServiceAudienceEvents, LoadableObjectClass, LoadableObjectClassRecord, LoadableObjectCtor, LoadableObjectRecord, MemberChangedListener, SharedObjectClass, } from "@fluidframework/fluid-static";
|
|
17
|
-
export { DOProviderContainerRuntimeFactory, FluidContainer, ServiceAudience, } from "@fluidframework/fluid-static";
|
|
18
17
|
export type { IDirectory, IDirectoryClearOperation, IDirectoryCreateSubDirectoryOperation, IDirectoryDataObject, IDirectoryDeleteOperation, IDirectoryDeleteSubDirectoryOperation, IDirectoryEvents, IDirectoryKeyOperation, IDirectoryNewStorageFormat, IDirectoryOperation, IDirectorySetOperation, IDirectoryStorageOperation, IDirectorySubDirectoryOperation, IDirectoryValueChanged, ILocalValue, ISerializableValue, ISerializedValue, ISharedDirectory, ISharedDirectoryEvents, ISharedMap, ISharedMapEvents, IValueChanged, } from "@fluidframework/map";
|
|
19
18
|
export { DirectoryFactory, LocalValueMaker, MapFactory, SharedDirectory, SharedMap, } from "@fluidframework/map";
|
|
20
19
|
export type { DeserializeCallback, IInterval, IIntervalCollectionEvent, IIntervalHelpers, IJSONRunSegment, IMapMessageLocalMetadata, IIntervalCollection, IntervalLocator, ISequenceDeltaRange, ISerializableInterval, ISerializedInterval, ISharedIntervalCollection, ISharedSegmentSequenceEvents, ISharedString, IValueOpEmitter, SerializedIntervalDelta, SharedStringSegment, } from "@fluidframework/sequence";
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;GAMG;AAEH,YAAY,EAAE,uBAAuB,EAAE,MAAM,uCAAuC,CAAC;AACrF,OAAO,EAAE,WAAW,EAAE,kBAAkB,EAAE,MAAM,uCAAuC,CAAC;AACxF,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AACrE,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AACnE,YAAY,EACX,eAAe,EACf,eAAe,EACf,WAAW,EACX,eAAe,EACf,qBAAqB,EACrB,OAAO,EACP,eAAe,EACf,gBAAgB,EAChB,sBAAsB,EACtB,mBAAmB,EACnB,yBAAyB,EACzB,kBAAkB,EAClB,oBAAoB,EACpB,qBAAqB,EACrB,iBAAiB,GACjB,MAAM,8BAA8B,CAAC;AACtC,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;GAMG;AAEH,YAAY,EAAE,uBAAuB,EAAE,MAAM,uCAAuC,CAAC;AACrF,OAAO,EAAE,WAAW,EAAE,kBAAkB,EAAE,MAAM,uCAAuC,CAAC;AACxF,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AACrE,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AACnE,YAAY,EACX,eAAe,EACf,eAAe,EACf,WAAW,EACX,eAAe,EACf,qBAAqB,EACrB,OAAO,EACP,eAAe,EACf,gBAAgB,EAChB,sBAAsB,EACtB,mBAAmB,EACnB,yBAAyB,EACzB,kBAAkB,EAClB,oBAAoB,EACpB,qBAAqB,EACrB,iBAAiB,GACjB,MAAM,8BAA8B,CAAC;AACtC,YAAY,EACX,UAAU,EACV,wBAAwB,EACxB,qCAAqC,EACrC,oBAAoB,EACpB,yBAAyB,EACzB,qCAAqC,EACrC,gBAAgB,EAChB,sBAAsB,EACtB,0BAA0B,EAC1B,mBAAmB,EACnB,sBAAsB,EACtB,0BAA0B,EAC1B,+BAA+B,EAC/B,sBAAsB,EACtB,WAAW,EACX,kBAAkB,EAClB,gBAAgB,EAChB,gBAAgB,EAChB,sBAAsB,EACtB,UAAU,EACV,gBAAgB,EAChB,aAAa,GACb,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACN,gBAAgB,EAChB,eAAe,EACf,UAAU,EACV,eAAe,EACf,SAAS,GACT,MAAM,qBAAqB,CAAC;AAC7B,YAAY,EACX,mBAAmB,EACnB,SAAS,EACT,wBAAwB,EACxB,gBAAgB,EAChB,eAAe,EACf,wBAAwB,EACxB,mBAAmB,EACnB,eAAe,EACf,mBAAmB,EACnB,qBAAqB,EACrB,mBAAmB,EACnB,yBAAyB,EACzB,4BAA4B,EAC5B,aAAa,EACb,eAAe,EACf,uBAAuB,EACvB,mBAAmB,GACnB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EACN,iBAAiB,EACjB,QAAQ,EACR,2BAA2B,EAC3B,YAAY,EACZ,kBAAkB,EAClB,aAAa,EACb,gBAAgB,EAChB,wBAAwB,EACxB,wBAAwB,EACxB,+BAA+B,EAC/B,qBAAqB,EACrB,cAAc,EACd,YAAY,EACZ,mBAAmB,EACnB,WAAW,GACX,MAAM,0BAA0B,CAAC"}
|
|
@@ -13,9 +13,7 @@ import { ContainerSchema } from '@fluidframework/fluid-static';
|
|
|
13
13
|
import { DataObjectClass } from '@fluidframework/fluid-static';
|
|
14
14
|
import { DeserializeCallback } from '@fluidframework/sequence';
|
|
15
15
|
import { DirectoryFactory } from '@fluidframework/map';
|
|
16
|
-
import { DOProviderContainerRuntimeFactory } from '@fluidframework/fluid-static';
|
|
17
16
|
import { DriverErrorType } from '@fluidframework/driver-definitions';
|
|
18
|
-
import { FluidContainer } from '@fluidframework/fluid-static';
|
|
19
17
|
import { getTextAndMarkers } from '@fluidframework/sequence';
|
|
20
18
|
import { IConnection } from '@fluidframework/fluid-static';
|
|
21
19
|
import { ICriticalContainerError } from '@fluidframework/container-definitions';
|
|
@@ -76,7 +74,6 @@ import { SequenceEvent } from '@fluidframework/sequence';
|
|
|
76
74
|
import { SequenceInterval } from '@fluidframework/sequence';
|
|
77
75
|
import { SequenceMaintenanceEvent } from '@fluidframework/sequence';
|
|
78
76
|
import { SerializedIntervalDelta } from '@fluidframework/sequence';
|
|
79
|
-
import { ServiceAudience } from '@fluidframework/fluid-static';
|
|
80
77
|
import { SharedDirectory } from '@fluidframework/map';
|
|
81
78
|
import { SharedIntervalCollection } from '@fluidframework/sequence';
|
|
82
79
|
import { SharedIntervalCollectionFactory } from '@fluidframework/sequence';
|
|
@@ -102,11 +99,8 @@ export { DeserializeCallback }
|
|
|
102
99
|
|
|
103
100
|
export { DirectoryFactory }
|
|
104
101
|
|
|
105
|
-
/* Excluded from this release type: DOProviderContainerRuntimeFactory */
|
|
106
102
|
export { DriverErrorType }
|
|
107
103
|
|
|
108
|
-
/* Excluded from this release type: FluidContainer */
|
|
109
|
-
|
|
110
104
|
/* Excluded from this release type: getTextAndMarkers */
|
|
111
105
|
export { IConnection }
|
|
112
106
|
|
|
@@ -219,8 +213,6 @@ export { SequenceInterval }
|
|
|
219
213
|
export { SequenceMaintenanceEvent }
|
|
220
214
|
|
|
221
215
|
/* Excluded from this release type: SerializedIntervalDelta */
|
|
222
|
-
|
|
223
|
-
/* Excluded from this release type: ServiceAudience */
|
|
224
216
|
export { SharedDirectory }
|
|
225
217
|
|
|
226
218
|
/* Excluded from this release type: SharedIntervalCollection */
|
|
@@ -13,9 +13,7 @@ import { ContainerSchema } from '@fluidframework/fluid-static';
|
|
|
13
13
|
import { DataObjectClass } from '@fluidframework/fluid-static';
|
|
14
14
|
import { DeserializeCallback } from '@fluidframework/sequence';
|
|
15
15
|
import { DirectoryFactory } from '@fluidframework/map';
|
|
16
|
-
import { DOProviderContainerRuntimeFactory } from '@fluidframework/fluid-static';
|
|
17
16
|
import { DriverErrorType } from '@fluidframework/driver-definitions';
|
|
18
|
-
import { FluidContainer } from '@fluidframework/fluid-static';
|
|
19
17
|
import { getTextAndMarkers } from '@fluidframework/sequence';
|
|
20
18
|
import { IConnection } from '@fluidframework/fluid-static';
|
|
21
19
|
import { ICriticalContainerError } from '@fluidframework/container-definitions';
|
|
@@ -76,7 +74,6 @@ import { SequenceEvent } from '@fluidframework/sequence';
|
|
|
76
74
|
import { SequenceInterval } from '@fluidframework/sequence';
|
|
77
75
|
import { SequenceMaintenanceEvent } from '@fluidframework/sequence';
|
|
78
76
|
import { SerializedIntervalDelta } from '@fluidframework/sequence';
|
|
79
|
-
import { ServiceAudience } from '@fluidframework/fluid-static';
|
|
80
77
|
import { SharedDirectory } from '@fluidframework/map';
|
|
81
78
|
import { SharedIntervalCollection } from '@fluidframework/sequence';
|
|
82
79
|
import { SharedIntervalCollectionFactory } from '@fluidframework/sequence';
|
|
@@ -103,12 +100,8 @@ import { SubSequence } from '@fluidframework/sequence';
|
|
|
103
100
|
|
|
104
101
|
/* Excluded from this release type: DirectoryFactory */
|
|
105
102
|
|
|
106
|
-
/* Excluded from this release type: DOProviderContainerRuntimeFactory */
|
|
107
|
-
|
|
108
103
|
/* Excluded from this release type: DriverErrorType */
|
|
109
104
|
|
|
110
|
-
/* Excluded from this release type: FluidContainer */
|
|
111
|
-
|
|
112
105
|
/* Excluded from this release type: getTextAndMarkers */
|
|
113
106
|
|
|
114
107
|
/* Excluded from this release type: IConnection */
|
|
@@ -229,8 +222,6 @@ import { SubSequence } from '@fluidframework/sequence';
|
|
|
229
222
|
|
|
230
223
|
/* Excluded from this release type: SerializedIntervalDelta */
|
|
231
224
|
|
|
232
|
-
/* Excluded from this release type: ServiceAudience */
|
|
233
|
-
|
|
234
225
|
/* Excluded from this release type: SharedDirectory */
|
|
235
226
|
|
|
236
227
|
/* Excluded from this release type: SharedIntervalCollection */
|
|
@@ -13,9 +13,7 @@ import { ContainerSchema } from '@fluidframework/fluid-static';
|
|
|
13
13
|
import { DataObjectClass } from '@fluidframework/fluid-static';
|
|
14
14
|
import { DeserializeCallback } from '@fluidframework/sequence';
|
|
15
15
|
import { DirectoryFactory } from '@fluidframework/map';
|
|
16
|
-
import { DOProviderContainerRuntimeFactory } from '@fluidframework/fluid-static';
|
|
17
16
|
import { DriverErrorType } from '@fluidframework/driver-definitions';
|
|
18
|
-
import { FluidContainer } from '@fluidframework/fluid-static';
|
|
19
17
|
import { getTextAndMarkers } from '@fluidframework/sequence';
|
|
20
18
|
import { IConnection } from '@fluidframework/fluid-static';
|
|
21
19
|
import { ICriticalContainerError } from '@fluidframework/container-definitions';
|
|
@@ -76,7 +74,6 @@ import { SequenceEvent } from '@fluidframework/sequence';
|
|
|
76
74
|
import { SequenceInterval } from '@fluidframework/sequence';
|
|
77
75
|
import { SequenceMaintenanceEvent } from '@fluidframework/sequence';
|
|
78
76
|
import { SerializedIntervalDelta } from '@fluidframework/sequence';
|
|
79
|
-
import { ServiceAudience } from '@fluidframework/fluid-static';
|
|
80
77
|
import { SharedDirectory } from '@fluidframework/map';
|
|
81
78
|
import { SharedIntervalCollection } from '@fluidframework/sequence';
|
|
82
79
|
import { SharedIntervalCollectionFactory } from '@fluidframework/sequence';
|
|
@@ -103,12 +100,8 @@ import { SubSequence } from '@fluidframework/sequence';
|
|
|
103
100
|
|
|
104
101
|
/* Excluded from this release type: DirectoryFactory */
|
|
105
102
|
|
|
106
|
-
/* Excluded from this release type: DOProviderContainerRuntimeFactory */
|
|
107
|
-
|
|
108
103
|
/* Excluded from this release type: DriverErrorType */
|
|
109
104
|
|
|
110
|
-
/* Excluded from this release type: FluidContainer */
|
|
111
|
-
|
|
112
105
|
/* Excluded from this release type: getTextAndMarkers */
|
|
113
106
|
|
|
114
107
|
/* Excluded from this release type: IConnection */
|
|
@@ -229,8 +222,6 @@ import { SubSequence } from '@fluidframework/sequence';
|
|
|
229
222
|
|
|
230
223
|
/* Excluded from this release type: SerializedIntervalDelta */
|
|
231
224
|
|
|
232
|
-
/* Excluded from this release type: ServiceAudience */
|
|
233
|
-
|
|
234
225
|
/* Excluded from this release type: SharedDirectory */
|
|
235
226
|
|
|
236
227
|
/* Excluded from this release type: SharedIntervalCollection */
|
|
@@ -13,9 +13,7 @@ import { ContainerSchema } from '@fluidframework/fluid-static';
|
|
|
13
13
|
import { DataObjectClass } from '@fluidframework/fluid-static';
|
|
14
14
|
import { DeserializeCallback } from '@fluidframework/sequence';
|
|
15
15
|
import { DirectoryFactory } from '@fluidframework/map';
|
|
16
|
-
import { DOProviderContainerRuntimeFactory } from '@fluidframework/fluid-static';
|
|
17
16
|
import { DriverErrorType } from '@fluidframework/driver-definitions';
|
|
18
|
-
import { FluidContainer } from '@fluidframework/fluid-static';
|
|
19
17
|
import { getTextAndMarkers } from '@fluidframework/sequence';
|
|
20
18
|
import { IConnection } from '@fluidframework/fluid-static';
|
|
21
19
|
import { ICriticalContainerError } from '@fluidframework/container-definitions';
|
|
@@ -76,7 +74,6 @@ import { SequenceEvent } from '@fluidframework/sequence';
|
|
|
76
74
|
import { SequenceInterval } from '@fluidframework/sequence';
|
|
77
75
|
import { SequenceMaintenanceEvent } from '@fluidframework/sequence';
|
|
78
76
|
import { SerializedIntervalDelta } from '@fluidframework/sequence';
|
|
79
|
-
import { ServiceAudience } from '@fluidframework/fluid-static';
|
|
80
77
|
import { SharedDirectory } from '@fluidframework/map';
|
|
81
78
|
import { SharedIntervalCollection } from '@fluidframework/sequence';
|
|
82
79
|
import { SharedIntervalCollectionFactory } from '@fluidframework/sequence';
|
|
@@ -103,12 +100,8 @@ export { DeserializeCallback }
|
|
|
103
100
|
|
|
104
101
|
export { DirectoryFactory }
|
|
105
102
|
|
|
106
|
-
export { DOProviderContainerRuntimeFactory }
|
|
107
|
-
|
|
108
103
|
export { DriverErrorType }
|
|
109
104
|
|
|
110
|
-
export { FluidContainer }
|
|
111
|
-
|
|
112
105
|
export { getTextAndMarkers }
|
|
113
106
|
|
|
114
107
|
export { IConnection }
|
|
@@ -229,8 +222,6 @@ export { SequenceMaintenanceEvent }
|
|
|
229
222
|
|
|
230
223
|
export { SerializedIntervalDelta }
|
|
231
224
|
|
|
232
|
-
export { ServiceAudience }
|
|
233
|
-
|
|
234
225
|
export { SharedDirectory }
|
|
235
226
|
|
|
236
227
|
export { SharedIntervalCollection }
|
package/lib/index.d.ts
CHANGED
|
@@ -7,7 +7,6 @@ export { AttachState, ContainerErrorType } from "@fluidframework/container-defin
|
|
|
7
7
|
export { DriverErrorType } from "@fluidframework/driver-definitions";
|
|
8
8
|
export { ConnectionState } from "@fluidframework/container-loader";
|
|
9
9
|
export type { ContainerSchema, DataObjectClass, IConnection, IFluidContainer, IFluidContainerEvents, IMember, IRootDataObject, IServiceAudience, IServiceAudienceEvents, LoadableObjectClass, LoadableObjectClassRecord, LoadableObjectCtor, LoadableObjectRecord, MemberChangedListener, SharedObjectClass, } from "@fluidframework/fluid-static";
|
|
10
|
-
export { DOProviderContainerRuntimeFactory, FluidContainer, ServiceAudience, } from "@fluidframework/fluid-static";
|
|
11
10
|
export type { IDirectory, IDirectoryClearOperation, IDirectoryCreateSubDirectoryOperation, IDirectoryDataObject, IDirectoryDeleteOperation, IDirectoryDeleteSubDirectoryOperation, IDirectoryEvents, IDirectoryKeyOperation, IDirectoryNewStorageFormat, IDirectoryOperation, IDirectorySetOperation, IDirectoryStorageOperation, IDirectorySubDirectoryOperation, IDirectoryValueChanged, ILocalValue, ISerializableValue, ISerializedValue, ISharedDirectory, ISharedDirectoryEvents, ISharedMap, ISharedMapEvents, IValueChanged, } from "@fluidframework/map";
|
|
12
11
|
export { DirectoryFactory, LocalValueMaker, MapFactory, SharedDirectory, SharedMap, } from "@fluidframework/map";
|
|
13
12
|
export type { DeserializeCallback, IInterval, IIntervalCollectionEvent, IIntervalHelpers, IJSONRunSegment, IMapMessageLocalMetadata, IIntervalCollection, IntervalLocator, ISequenceDeltaRange, ISerializableInterval, ISerializedInterval, ISharedIntervalCollection, ISharedSegmentSequenceEvents, ISharedString, IValueOpEmitter, SerializedIntervalDelta, SharedStringSegment, } from "@fluidframework/sequence";
|
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;YAUS,EAAE,uBAAuB,EAAE,MAAM,uCAAuC;OAC7E,EAAE,WAAW,EAAE,kBAAkB,EAAE,MAAM,uCAAuC;OAChF,EAAE,eAAe,EAAE,MAAM,oCAAoC;OAC7D,EAAE,eAAe,EAAE,MAAM,kCAAkC;YACtD,EACX,eAAe,EACf,eAAe,EACf,WAAW,EACX,eAAe,EACf,qBAAqB,EACrB,OAAO,EACP,eAAe,EACf,gBAAgB,EAChB,sBAAsB,EACtB,mBAAmB,EACnB,yBAAyB,EACzB,kBAAkB,EAClB,oBAAoB,EACpB,qBAAqB,EACrB,iBAAiB,GACjB,MAAM,8BAA8B;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;YAUS,EAAE,uBAAuB,EAAE,MAAM,uCAAuC;OAC7E,EAAE,WAAW,EAAE,kBAAkB,EAAE,MAAM,uCAAuC;OAChF,EAAE,eAAe,EAAE,MAAM,oCAAoC;OAC7D,EAAE,eAAe,EAAE,MAAM,kCAAkC;YACtD,EACX,eAAe,EACf,eAAe,EACf,WAAW,EACX,eAAe,EACf,qBAAqB,EACrB,OAAO,EACP,eAAe,EACf,gBAAgB,EAChB,sBAAsB,EACtB,mBAAmB,EACnB,yBAAyB,EACzB,kBAAkB,EAClB,oBAAoB,EACpB,qBAAqB,EACrB,iBAAiB,GACjB,MAAM,8BAA8B;YACzB,EACX,UAAU,EACV,wBAAwB,EACxB,qCAAqC,EACrC,oBAAoB,EACpB,yBAAyB,EACzB,qCAAqC,EACrC,gBAAgB,EAChB,sBAAsB,EACtB,0BAA0B,EAC1B,mBAAmB,EACnB,sBAAsB,EACtB,0BAA0B,EAC1B,+BAA+B,EAC/B,sBAAsB,EACtB,WAAW,EACX,kBAAkB,EAClB,gBAAgB,EAChB,gBAAgB,EAChB,sBAAsB,EACtB,UAAU,EACV,gBAAgB,EAChB,aAAa,GACb,MAAM,qBAAqB;OACrB,EACN,gBAAgB,EAChB,eAAe,EACf,UAAU,EACV,eAAe,EACf,SAAS,GACT,MAAM,qBAAqB;YAChB,EACX,mBAAmB,EACnB,SAAS,EACT,wBAAwB,EACxB,gBAAgB,EAChB,eAAe,EACf,wBAAwB,EACxB,mBAAmB,EACnB,eAAe,EACf,mBAAmB,EACnB,qBAAqB,EACrB,mBAAmB,EACnB,yBAAyB,EACzB,4BAA4B,EAC5B,aAAa,EACb,eAAe,EACf,uBAAuB,EACvB,mBAAmB,GACnB,MAAM,0BAA0B;OAC1B,EACN,iBAAiB,EACjB,QAAQ,EACR,2BAA2B,EAC3B,YAAY,EACZ,kBAAkB,EAClB,aAAa,EACb,gBAAgB,EAChB,wBAAwB,EACxB,wBAAwB,EACxB,+BAA+B,EAC/B,qBAAqB,EACrB,cAAc,EACd,YAAY,EACZ,mBAAmB,EACnB,WAAW,GACX,MAAM,0BAA0B"}
|
package/lib/index.mjs
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
export { AttachState, ContainerErrorType } from "@fluidframework/container-definitions";
|
|
6
6
|
export { DriverErrorType } from "@fluidframework/driver-definitions";
|
|
7
7
|
export { ConnectionState } from "@fluidframework/container-loader";
|
|
8
|
-
export { DOProviderContainerRuntimeFactory, FluidContainer, ServiceAudience, } from "@fluidframework/fluid-static";
|
|
9
8
|
export { DirectoryFactory, LocalValueMaker, MapFactory, SharedDirectory, SharedMap, } from "@fluidframework/map";
|
|
10
9
|
export { getTextAndMarkers, Interval, intervalLocatorFromEndpoint, IntervalType, SequenceDeltaEvent, SequenceEvent, SequenceInterval, SequenceMaintenanceEvent, SharedIntervalCollection, SharedIntervalCollectionFactory, SharedSegmentSequence, SharedSequence, SharedString, SharedStringFactory, SubSequence, } from "@fluidframework/sequence";
|
|
11
10
|
//# sourceMappingURL=index.mjs.map
|
package/lib/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;OAWI,EAAE,WAAW,EAAE,kBAAkB,EAAE,MAAM,uCAAuC;OAChF,EAAE,eAAe,EAAE,MAAM,oCAAoC;OAC7D,EAAE,eAAe,EAAE,MAAM,kCAAkC;
|
|
1
|
+
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;OAWI,EAAE,WAAW,EAAE,kBAAkB,EAAE,MAAM,uCAAuC;OAChF,EAAE,eAAe,EAAE,MAAM,oCAAoC;OAC7D,EAAE,eAAe,EAAE,MAAM,kCAAkC;OA0C3D,EACN,gBAAgB,EAChB,eAAe,EACf,UAAU,EACV,eAAe,EACf,SAAS,GACT,MAAM,qBAAqB;OAoBrB,EACN,iBAAiB,EACjB,QAAQ,EACR,2BAA2B,EAC3B,YAAY,EACZ,kBAAkB,EAClB,aAAa,EACb,gBAAgB,EAChB,wBAAwB,EACxB,wBAAwB,EACxB,+BAA+B,EAC/B,qBAAqB,EACrB,cAAc,EACd,YAAY,EACZ,mBAAmB,EACnB,WAAW,GACX,MAAM,0BAA0B","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\n/**\n * The **fluid-framework** package bundles a collection of Fluid Framework client libraries for easy use\n * when paired with a corresponding service client library (for example,\n * `\\@fluidframework/azure-client` or `\\@fluidframework/tinylicious-client`).\n *\n * @packageDocumentation\n */\n\nexport type { ICriticalContainerError } from \"@fluidframework/container-definitions\";\nexport { AttachState, ContainerErrorType } from \"@fluidframework/container-definitions\";\nexport { DriverErrorType } from \"@fluidframework/driver-definitions\";\nexport { ConnectionState } from \"@fluidframework/container-loader\";\nexport type {\n\tContainerSchema,\n\tDataObjectClass,\n\tIConnection,\n\tIFluidContainer,\n\tIFluidContainerEvents,\n\tIMember,\n\tIRootDataObject,\n\tIServiceAudience,\n\tIServiceAudienceEvents,\n\tLoadableObjectClass,\n\tLoadableObjectClassRecord,\n\tLoadableObjectCtor,\n\tLoadableObjectRecord,\n\tMemberChangedListener,\n\tSharedObjectClass,\n} from \"@fluidframework/fluid-static\";\nexport type {\n\tIDirectory,\n\tIDirectoryClearOperation,\n\tIDirectoryCreateSubDirectoryOperation,\n\tIDirectoryDataObject,\n\tIDirectoryDeleteOperation,\n\tIDirectoryDeleteSubDirectoryOperation,\n\tIDirectoryEvents,\n\tIDirectoryKeyOperation,\n\tIDirectoryNewStorageFormat,\n\tIDirectoryOperation,\n\tIDirectorySetOperation,\n\tIDirectoryStorageOperation,\n\tIDirectorySubDirectoryOperation,\n\tIDirectoryValueChanged,\n\tILocalValue,\n\tISerializableValue,\n\tISerializedValue,\n\tISharedDirectory,\n\tISharedDirectoryEvents,\n\tISharedMap,\n\tISharedMapEvents,\n\tIValueChanged,\n} from \"@fluidframework/map\";\nexport {\n\tDirectoryFactory,\n\tLocalValueMaker,\n\tMapFactory,\n\tSharedDirectory,\n\tSharedMap,\n} from \"@fluidframework/map\";\nexport type {\n\tDeserializeCallback,\n\tIInterval,\n\tIIntervalCollectionEvent,\n\tIIntervalHelpers,\n\tIJSONRunSegment,\n\tIMapMessageLocalMetadata,\n\tIIntervalCollection,\n\tIntervalLocator,\n\tISequenceDeltaRange,\n\tISerializableInterval,\n\tISerializedInterval,\n\tISharedIntervalCollection,\n\tISharedSegmentSequenceEvents,\n\tISharedString,\n\tIValueOpEmitter,\n\tSerializedIntervalDelta,\n\tSharedStringSegment,\n} from \"@fluidframework/sequence\";\nexport {\n\tgetTextAndMarkers,\n\tInterval,\n\tintervalLocatorFromEndpoint,\n\tIntervalType,\n\tSequenceDeltaEvent,\n\tSequenceEvent,\n\tSequenceInterval,\n\tSequenceMaintenanceEvent,\n\tSharedIntervalCollection,\n\tSharedIntervalCollectionFactory,\n\tSharedSegmentSequence,\n\tSharedSequence,\n\tSharedString,\n\tSharedStringFactory,\n\tSubSequence,\n} from \"@fluidframework/sequence\";\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fluid-framework",
|
|
3
|
-
"version": "2.0.0-internal.
|
|
3
|
+
"version": "2.0.0-internal.8.0.0",
|
|
4
4
|
"description": "The main entry point into Fluid Framework public packages",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
"module": "lib/index.mjs",
|
|
16
16
|
"types": "dist/index.d.ts",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@fluidframework/container-definitions": ">=2.0.0-internal.
|
|
19
|
-
"@fluidframework/container-loader": ">=2.0.0-internal.
|
|
20
|
-
"@fluidframework/driver-definitions": ">=2.0.0-internal.
|
|
21
|
-
"@fluidframework/fluid-static": ">=2.0.0-internal.
|
|
22
|
-
"@fluidframework/map": ">=2.0.0-internal.
|
|
23
|
-
"@fluidframework/sequence": ">=2.0.0-internal.
|
|
18
|
+
"@fluidframework/container-definitions": ">=2.0.0-internal.8.0.0 <2.0.0-internal.8.1.0",
|
|
19
|
+
"@fluidframework/container-loader": ">=2.0.0-internal.8.0.0 <2.0.0-internal.8.1.0",
|
|
20
|
+
"@fluidframework/driver-definitions": ">=2.0.0-internal.8.0.0 <2.0.0-internal.8.1.0",
|
|
21
|
+
"@fluidframework/fluid-static": ">=2.0.0-internal.8.0.0 <2.0.0-internal.8.1.0",
|
|
22
|
+
"@fluidframework/map": ">=2.0.0-internal.8.0.0 <2.0.0-internal.8.1.0",
|
|
23
|
+
"@fluidframework/sequence": ">=2.0.0-internal.8.0.0 <2.0.0-internal.8.1.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@arethetypeswrong/cli": "^0.13.3",
|
package/src/index.ts
CHANGED
|
@@ -32,11 +32,6 @@ export type {
|
|
|
32
32
|
MemberChangedListener,
|
|
33
33
|
SharedObjectClass,
|
|
34
34
|
} from "@fluidframework/fluid-static";
|
|
35
|
-
export {
|
|
36
|
-
DOProviderContainerRuntimeFactory,
|
|
37
|
-
FluidContainer,
|
|
38
|
-
ServiceAudience,
|
|
39
|
-
} from "@fluidframework/fluid-static";
|
|
40
35
|
export type {
|
|
41
36
|
IDirectory,
|
|
42
37
|
IDirectoryClearOperation,
|