fluid-framework 2.0.0-dev.7.4.0.217212 → 2.0.0-dev.7.4.0.221926
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-extractor.json +1 -4
- package/dist/fluid-framework-alpha.d.ts +138 -69
- package/dist/fluid-framework-beta.d.ts +83 -0
- package/dist/fluid-framework-public.d.ts +83 -0
- package/lib/fluid-framework-alpha.d.ts +138 -69
- package/lib/fluid-framework-beta.d.ts +83 -0
- package/lib/fluid-framework-public.d.ts +83 -0
- package/lib/index.d.ts +0 -7
- package/lib/index.d.ts.map +1 -1
- package/package.json +10 -20
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# fluid-framework
|
|
2
2
|
|
|
3
|
+
## 2.0.0-internal.7.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- azure-client: Deprecated FluidStatic Classes ([#18402](https://github.com/microsoft/FluidFramework/issues/18402)) [589ec39de5](https://github.com/microsoft/FluidFramework/commits/589ec39de52116c7f782319e6f6aa61bc5aa9964)
|
|
8
|
+
|
|
9
|
+
Several FluidStatic classes were unnecessarily exposed. 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 deprecated 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.3.0
|
|
4
20
|
|
|
5
21
|
Dependency updates only.
|
package/api-extractor.json
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
|
|
3
|
-
"extends": "../../../common/build/build-common/api-extractor-base.json"
|
|
4
|
-
"dtsRollup": {
|
|
5
|
-
"enabled": true
|
|
6
|
-
}
|
|
3
|
+
"extends": "../../../common/build/build-common/api-extractor-base.json"
|
|
7
4
|
}
|
|
@@ -7,22 +7,100 @@
|
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
import { AttachState } from '@fluidframework/container-definitions';
|
|
10
|
+
import { ConnectionState } from '@fluidframework/container-loader';
|
|
11
|
+
import { ContainerErrorType } from '@fluidframework/container-definitions';
|
|
12
|
+
import { ContainerSchema } from '@fluidframework/fluid-static';
|
|
13
|
+
import { DataObjectClass } from '@fluidframework/fluid-static';
|
|
14
|
+
import { DeserializeCallback } from '@fluidframework/sequence';
|
|
15
|
+
import { DirectoryFactory } from '@fluidframework/map';
|
|
16
|
+
import { DOProviderContainerRuntimeFactory } from '@fluidframework/fluid-static';
|
|
10
17
|
import { DriverErrorType } from '@fluidframework/driver-definitions';
|
|
18
|
+
import { FluidContainer } from '@fluidframework/fluid-static';
|
|
19
|
+
import { getTextAndMarkers } from '@fluidframework/sequence';
|
|
20
|
+
import { IConnection } from '@fluidframework/fluid-static';
|
|
11
21
|
import { ICriticalContainerError } from '@fluidframework/container-definitions';
|
|
22
|
+
import { IDirectory } from '@fluidframework/map';
|
|
23
|
+
import { IDirectoryClearOperation } from '@fluidframework/map';
|
|
24
|
+
import { IDirectoryCreateSubDirectoryOperation } from '@fluidframework/map';
|
|
25
|
+
import { IDirectoryDataObject } from '@fluidframework/map';
|
|
26
|
+
import { IDirectoryDeleteOperation } from '@fluidframework/map';
|
|
27
|
+
import { IDirectoryDeleteSubDirectoryOperation } from '@fluidframework/map';
|
|
28
|
+
import { IDirectoryEvents } from '@fluidframework/map';
|
|
29
|
+
import { IDirectoryKeyOperation } from '@fluidframework/map';
|
|
30
|
+
import { IDirectoryNewStorageFormat } from '@fluidframework/map';
|
|
31
|
+
import { IDirectoryOperation } from '@fluidframework/map';
|
|
32
|
+
import { IDirectorySetOperation } from '@fluidframework/map';
|
|
33
|
+
import { IDirectoryStorageOperation } from '@fluidframework/map';
|
|
34
|
+
import { IDirectorySubDirectoryOperation } from '@fluidframework/map';
|
|
35
|
+
import { IDirectoryValueChanged } from '@fluidframework/map';
|
|
36
|
+
import { IFluidContainer } from '@fluidframework/fluid-static';
|
|
37
|
+
import { IFluidContainerEvents } from '@fluidframework/fluid-static';
|
|
38
|
+
import { IInterval } from '@fluidframework/sequence';
|
|
39
|
+
import { IIntervalCollection } from '@fluidframework/sequence';
|
|
40
|
+
import { IIntervalCollectionEvent } from '@fluidframework/sequence';
|
|
41
|
+
import { IIntervalHelpers } from '@fluidframework/sequence';
|
|
42
|
+
import { IJSONRunSegment } from '@fluidframework/sequence';
|
|
43
|
+
import { ILocalValue } from '@fluidframework/map';
|
|
44
|
+
import { IMapMessageLocalMetadata } from '@fluidframework/sequence';
|
|
45
|
+
import { IMember } from '@fluidframework/fluid-static';
|
|
46
|
+
import { Interval } from '@fluidframework/sequence';
|
|
47
|
+
import { IntervalLocator } from '@fluidframework/sequence';
|
|
48
|
+
import { intervalLocatorFromEndpoint } from '@fluidframework/sequence';
|
|
49
|
+
import { IntervalType } from '@fluidframework/sequence';
|
|
50
|
+
import { IRootDataObject } from '@fluidframework/fluid-static';
|
|
51
|
+
import { ISequenceDeltaRange } from '@fluidframework/sequence';
|
|
52
|
+
import { ISerializableInterval } from '@fluidframework/sequence';
|
|
53
|
+
import { ISerializableValue } from '@fluidframework/map';
|
|
54
|
+
import { ISerializedInterval } from '@fluidframework/sequence';
|
|
55
|
+
import { ISerializedValue } from '@fluidframework/map';
|
|
56
|
+
import { IServiceAudience } from '@fluidframework/fluid-static';
|
|
57
|
+
import { IServiceAudienceEvents } from '@fluidframework/fluid-static';
|
|
58
|
+
import { ISharedDirectory } from '@fluidframework/map';
|
|
59
|
+
import { ISharedDirectoryEvents } from '@fluidframework/map';
|
|
60
|
+
import { ISharedIntervalCollection } from '@fluidframework/sequence';
|
|
61
|
+
import { ISharedMap } from '@fluidframework/map';
|
|
62
|
+
import { ISharedMapEvents } from '@fluidframework/map';
|
|
63
|
+
import { ISharedSegmentSequenceEvents } from '@fluidframework/sequence';
|
|
64
|
+
import { ISharedString } from '@fluidframework/sequence';
|
|
65
|
+
import { IValueChanged } from '@fluidframework/map';
|
|
66
|
+
import { IValueOpEmitter } from '@fluidframework/sequence';
|
|
67
|
+
import { LoadableObjectClass } from '@fluidframework/fluid-static';
|
|
68
|
+
import { LoadableObjectClassRecord } from '@fluidframework/fluid-static';
|
|
69
|
+
import { LoadableObjectCtor } from '@fluidframework/fluid-static';
|
|
70
|
+
import { LoadableObjectRecord } from '@fluidframework/fluid-static';
|
|
71
|
+
import { LocalValueMaker } from '@fluidframework/map';
|
|
72
|
+
import { MapFactory } from '@fluidframework/map';
|
|
73
|
+
import { MemberChangedListener } from '@fluidframework/fluid-static';
|
|
74
|
+
import { SequenceDeltaEvent } from '@fluidframework/sequence';
|
|
75
|
+
import { SequenceEvent } from '@fluidframework/sequence';
|
|
76
|
+
import { SequenceInterval } from '@fluidframework/sequence';
|
|
77
|
+
import { SequenceMaintenanceEvent } from '@fluidframework/sequence';
|
|
78
|
+
import { SerializedIntervalDelta } from '@fluidframework/sequence';
|
|
79
|
+
import { ServiceAudience } from '@fluidframework/fluid-static';
|
|
80
|
+
import { SharedDirectory } from '@fluidframework/map';
|
|
81
|
+
import { SharedIntervalCollection } from '@fluidframework/sequence';
|
|
82
|
+
import { SharedIntervalCollectionFactory } from '@fluidframework/sequence';
|
|
83
|
+
import { SharedMap } from '@fluidframework/map';
|
|
84
|
+
import { SharedObjectClass } from '@fluidframework/fluid-static';
|
|
85
|
+
import { SharedSegmentSequence } from '@fluidframework/sequence';
|
|
86
|
+
import { SharedSequence } from '@fluidframework/sequence';
|
|
87
|
+
import { SharedString } from '@fluidframework/sequence';
|
|
88
|
+
import { SharedStringFactory } from '@fluidframework/sequence';
|
|
89
|
+
import { SharedStringSegment } from '@fluidframework/sequence';
|
|
90
|
+
import { SubSequence } from '@fluidframework/sequence';
|
|
12
91
|
|
|
13
92
|
export { AttachState }
|
|
14
93
|
|
|
15
94
|
/* Excluded from this release type: ConnectionState */
|
|
16
95
|
|
|
17
96
|
/* Excluded from this release type: ContainerErrorType */
|
|
97
|
+
export { ContainerSchema }
|
|
18
98
|
|
|
19
|
-
|
|
99
|
+
export { DataObjectClass }
|
|
20
100
|
|
|
21
|
-
|
|
101
|
+
export { DeserializeCallback }
|
|
22
102
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
/* Excluded from this release type: DirectoryFactory */
|
|
103
|
+
export { DirectoryFactory }
|
|
26
104
|
|
|
27
105
|
/* Excluded from this release type: DOProviderContainerRuntimeFactory */
|
|
28
106
|
export { DriverErrorType }
|
|
@@ -30,145 +108,136 @@ export { DriverErrorType }
|
|
|
30
108
|
/* Excluded from this release type: FluidContainer */
|
|
31
109
|
|
|
32
110
|
/* Excluded from this release type: getTextAndMarkers */
|
|
111
|
+
export { IConnection }
|
|
33
112
|
|
|
34
|
-
/* Excluded from this release type: IConnection */
|
|
35
113
|
export { ICriticalContainerError }
|
|
36
114
|
|
|
37
|
-
|
|
115
|
+
export { IDirectory }
|
|
38
116
|
|
|
39
|
-
|
|
117
|
+
export { IDirectoryClearOperation }
|
|
40
118
|
|
|
41
|
-
|
|
119
|
+
export { IDirectoryCreateSubDirectoryOperation }
|
|
42
120
|
|
|
43
|
-
|
|
121
|
+
export { IDirectoryDataObject }
|
|
44
122
|
|
|
45
|
-
|
|
123
|
+
export { IDirectoryDeleteOperation }
|
|
46
124
|
|
|
47
|
-
|
|
125
|
+
export { IDirectoryDeleteSubDirectoryOperation }
|
|
48
126
|
|
|
49
|
-
|
|
127
|
+
export { IDirectoryEvents }
|
|
50
128
|
|
|
51
|
-
|
|
129
|
+
export { IDirectoryKeyOperation }
|
|
52
130
|
|
|
53
131
|
/* Excluded from this release type: IDirectoryNewStorageFormat */
|
|
132
|
+
export { IDirectoryOperation }
|
|
54
133
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
/* Excluded from this release type: IDirectorySetOperation */
|
|
134
|
+
export { IDirectorySetOperation }
|
|
58
135
|
|
|
59
|
-
|
|
136
|
+
export { IDirectoryStorageOperation }
|
|
60
137
|
|
|
61
|
-
|
|
138
|
+
export { IDirectorySubDirectoryOperation }
|
|
62
139
|
|
|
63
|
-
|
|
140
|
+
export { IDirectoryValueChanged }
|
|
64
141
|
|
|
65
|
-
|
|
142
|
+
export { IFluidContainer }
|
|
66
143
|
|
|
67
|
-
|
|
144
|
+
export { IFluidContainerEvents }
|
|
68
145
|
|
|
69
|
-
|
|
146
|
+
export { IInterval }
|
|
70
147
|
|
|
71
|
-
|
|
148
|
+
export { IIntervalCollection }
|
|
72
149
|
|
|
73
|
-
|
|
150
|
+
export { IIntervalCollectionEvent }
|
|
74
151
|
|
|
75
152
|
/* Excluded from this release type: IIntervalHelpers */
|
|
76
153
|
|
|
77
154
|
/* Excluded from this release type: IJSONRunSegment */
|
|
78
|
-
|
|
79
|
-
/* Excluded from this release type: ILocalValue */
|
|
155
|
+
export { ILocalValue }
|
|
80
156
|
|
|
81
157
|
/* Excluded from this release type: IMapMessageLocalMetadata */
|
|
82
|
-
|
|
83
|
-
/* Excluded from this release type: IMember */
|
|
158
|
+
export { IMember }
|
|
84
159
|
|
|
85
160
|
/* Excluded from this release type: Interval */
|
|
86
161
|
|
|
87
162
|
/* Excluded from this release type: IntervalLocator */
|
|
88
163
|
|
|
89
164
|
/* Excluded from this release type: intervalLocatorFromEndpoint */
|
|
90
|
-
|
|
91
|
-
/* Excluded from this release type: IntervalType */
|
|
165
|
+
export { IntervalType }
|
|
92
166
|
|
|
93
167
|
/* Excluded from this release type: IRootDataObject */
|
|
168
|
+
export { ISequenceDeltaRange }
|
|
94
169
|
|
|
95
|
-
|
|
170
|
+
export { ISerializableInterval }
|
|
96
171
|
|
|
97
|
-
|
|
172
|
+
export { ISerializableValue }
|
|
98
173
|
|
|
99
|
-
|
|
174
|
+
export { ISerializedInterval }
|
|
100
175
|
|
|
101
|
-
|
|
176
|
+
export { ISerializedValue }
|
|
102
177
|
|
|
103
|
-
|
|
178
|
+
export { IServiceAudience }
|
|
104
179
|
|
|
105
|
-
|
|
180
|
+
export { IServiceAudienceEvents }
|
|
106
181
|
|
|
107
|
-
|
|
182
|
+
export { ISharedDirectory }
|
|
108
183
|
|
|
109
|
-
|
|
184
|
+
export { ISharedDirectoryEvents }
|
|
110
185
|
|
|
111
|
-
|
|
186
|
+
export { ISharedIntervalCollection }
|
|
112
187
|
|
|
113
|
-
|
|
188
|
+
export { ISharedMap }
|
|
114
189
|
|
|
115
|
-
|
|
190
|
+
export { ISharedMapEvents }
|
|
116
191
|
|
|
117
|
-
|
|
192
|
+
export { ISharedSegmentSequenceEvents }
|
|
118
193
|
|
|
119
|
-
|
|
194
|
+
export { ISharedString }
|
|
120
195
|
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
/* Excluded from this release type: IValueChanged */
|
|
196
|
+
export { IValueChanged }
|
|
124
197
|
|
|
125
198
|
/* Excluded from this release type: IValueOpEmitter */
|
|
199
|
+
export { LoadableObjectClass }
|
|
126
200
|
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
/* Excluded from this release type: LoadableObjectClassRecord */
|
|
201
|
+
export { LoadableObjectClassRecord }
|
|
130
202
|
|
|
131
|
-
|
|
203
|
+
export { LoadableObjectCtor }
|
|
132
204
|
|
|
133
|
-
|
|
205
|
+
export { LoadableObjectRecord }
|
|
134
206
|
|
|
135
|
-
|
|
207
|
+
export { LocalValueMaker }
|
|
136
208
|
|
|
137
|
-
|
|
209
|
+
export { MapFactory }
|
|
138
210
|
|
|
139
|
-
|
|
211
|
+
export { MemberChangedListener }
|
|
140
212
|
|
|
141
|
-
|
|
213
|
+
export { SequenceDeltaEvent }
|
|
142
214
|
|
|
143
|
-
|
|
215
|
+
export { SequenceEvent }
|
|
144
216
|
|
|
145
|
-
|
|
217
|
+
export { SequenceInterval }
|
|
146
218
|
|
|
147
|
-
|
|
219
|
+
export { SequenceMaintenanceEvent }
|
|
148
220
|
|
|
149
221
|
/* Excluded from this release type: SerializedIntervalDelta */
|
|
150
222
|
|
|
151
223
|
/* Excluded from this release type: ServiceAudience */
|
|
152
|
-
|
|
153
|
-
/* Excluded from this release type: SharedDirectory */
|
|
224
|
+
export { SharedDirectory }
|
|
154
225
|
|
|
155
226
|
/* Excluded from this release type: SharedIntervalCollection */
|
|
156
227
|
|
|
157
228
|
/* Excluded from this release type: SharedIntervalCollectionFactory */
|
|
229
|
+
export { SharedMap }
|
|
158
230
|
|
|
159
|
-
|
|
231
|
+
export { SharedObjectClass }
|
|
160
232
|
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
/* Excluded from this release type: SharedSegmentSequence */
|
|
233
|
+
export { SharedSegmentSequence }
|
|
164
234
|
|
|
165
235
|
/* Excluded from this release type: SharedSequence */
|
|
236
|
+
export { SharedString }
|
|
166
237
|
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
/* Excluded from this release type: SharedStringFactory */
|
|
238
|
+
export { SharedStringFactory }
|
|
170
239
|
|
|
171
|
-
|
|
240
|
+
export { SharedStringSegment }
|
|
172
241
|
|
|
173
242
|
/* Excluded from this release type: SubSequence */
|
|
174
243
|
|
|
@@ -6,6 +6,89 @@
|
|
|
6
6
|
* @packageDocumentation
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
+
import { AttachState } from '@fluidframework/container-definitions';
|
|
10
|
+
import { ConnectionState } from '@fluidframework/container-loader';
|
|
11
|
+
import { ContainerErrorType } from '@fluidframework/container-definitions';
|
|
12
|
+
import { ContainerSchema } from '@fluidframework/fluid-static';
|
|
13
|
+
import { DataObjectClass } from '@fluidframework/fluid-static';
|
|
14
|
+
import { DeserializeCallback } from '@fluidframework/sequence';
|
|
15
|
+
import { DirectoryFactory } from '@fluidframework/map';
|
|
16
|
+
import { DOProviderContainerRuntimeFactory } from '@fluidframework/fluid-static';
|
|
17
|
+
import { DriverErrorType } from '@fluidframework/driver-definitions';
|
|
18
|
+
import { FluidContainer } from '@fluidframework/fluid-static';
|
|
19
|
+
import { getTextAndMarkers } from '@fluidframework/sequence';
|
|
20
|
+
import { IConnection } from '@fluidframework/fluid-static';
|
|
21
|
+
import { ICriticalContainerError } from '@fluidframework/container-definitions';
|
|
22
|
+
import { IDirectory } from '@fluidframework/map';
|
|
23
|
+
import { IDirectoryClearOperation } from '@fluidframework/map';
|
|
24
|
+
import { IDirectoryCreateSubDirectoryOperation } from '@fluidframework/map';
|
|
25
|
+
import { IDirectoryDataObject } from '@fluidframework/map';
|
|
26
|
+
import { IDirectoryDeleteOperation } from '@fluidframework/map';
|
|
27
|
+
import { IDirectoryDeleteSubDirectoryOperation } from '@fluidframework/map';
|
|
28
|
+
import { IDirectoryEvents } from '@fluidframework/map';
|
|
29
|
+
import { IDirectoryKeyOperation } from '@fluidframework/map';
|
|
30
|
+
import { IDirectoryNewStorageFormat } from '@fluidframework/map';
|
|
31
|
+
import { IDirectoryOperation } from '@fluidframework/map';
|
|
32
|
+
import { IDirectorySetOperation } from '@fluidframework/map';
|
|
33
|
+
import { IDirectoryStorageOperation } from '@fluidframework/map';
|
|
34
|
+
import { IDirectorySubDirectoryOperation } from '@fluidframework/map';
|
|
35
|
+
import { IDirectoryValueChanged } from '@fluidframework/map';
|
|
36
|
+
import { IFluidContainer } from '@fluidframework/fluid-static';
|
|
37
|
+
import { IFluidContainerEvents } from '@fluidframework/fluid-static';
|
|
38
|
+
import { IInterval } from '@fluidframework/sequence';
|
|
39
|
+
import { IIntervalCollection } from '@fluidframework/sequence';
|
|
40
|
+
import { IIntervalCollectionEvent } from '@fluidframework/sequence';
|
|
41
|
+
import { IIntervalHelpers } from '@fluidframework/sequence';
|
|
42
|
+
import { IJSONRunSegment } from '@fluidframework/sequence';
|
|
43
|
+
import { ILocalValue } from '@fluidframework/map';
|
|
44
|
+
import { IMapMessageLocalMetadata } from '@fluidframework/sequence';
|
|
45
|
+
import { IMember } from '@fluidframework/fluid-static';
|
|
46
|
+
import { Interval } from '@fluidframework/sequence';
|
|
47
|
+
import { IntervalLocator } from '@fluidframework/sequence';
|
|
48
|
+
import { intervalLocatorFromEndpoint } from '@fluidframework/sequence';
|
|
49
|
+
import { IntervalType } from '@fluidframework/sequence';
|
|
50
|
+
import { IRootDataObject } from '@fluidframework/fluid-static';
|
|
51
|
+
import { ISequenceDeltaRange } from '@fluidframework/sequence';
|
|
52
|
+
import { ISerializableInterval } from '@fluidframework/sequence';
|
|
53
|
+
import { ISerializableValue } from '@fluidframework/map';
|
|
54
|
+
import { ISerializedInterval } from '@fluidframework/sequence';
|
|
55
|
+
import { ISerializedValue } from '@fluidframework/map';
|
|
56
|
+
import { IServiceAudience } from '@fluidframework/fluid-static';
|
|
57
|
+
import { IServiceAudienceEvents } from '@fluidframework/fluid-static';
|
|
58
|
+
import { ISharedDirectory } from '@fluidframework/map';
|
|
59
|
+
import { ISharedDirectoryEvents } from '@fluidframework/map';
|
|
60
|
+
import { ISharedIntervalCollection } from '@fluidframework/sequence';
|
|
61
|
+
import { ISharedMap } from '@fluidframework/map';
|
|
62
|
+
import { ISharedMapEvents } from '@fluidframework/map';
|
|
63
|
+
import { ISharedSegmentSequenceEvents } from '@fluidframework/sequence';
|
|
64
|
+
import { ISharedString } from '@fluidframework/sequence';
|
|
65
|
+
import { IValueChanged } from '@fluidframework/map';
|
|
66
|
+
import { IValueOpEmitter } from '@fluidframework/sequence';
|
|
67
|
+
import { LoadableObjectClass } from '@fluidframework/fluid-static';
|
|
68
|
+
import { LoadableObjectClassRecord } from '@fluidframework/fluid-static';
|
|
69
|
+
import { LoadableObjectCtor } from '@fluidframework/fluid-static';
|
|
70
|
+
import { LoadableObjectRecord } from '@fluidframework/fluid-static';
|
|
71
|
+
import { LocalValueMaker } from '@fluidframework/map';
|
|
72
|
+
import { MapFactory } from '@fluidframework/map';
|
|
73
|
+
import { MemberChangedListener } from '@fluidframework/fluid-static';
|
|
74
|
+
import { SequenceDeltaEvent } from '@fluidframework/sequence';
|
|
75
|
+
import { SequenceEvent } from '@fluidframework/sequence';
|
|
76
|
+
import { SequenceInterval } from '@fluidframework/sequence';
|
|
77
|
+
import { SequenceMaintenanceEvent } from '@fluidframework/sequence';
|
|
78
|
+
import { SerializedIntervalDelta } from '@fluidframework/sequence';
|
|
79
|
+
import { ServiceAudience } from '@fluidframework/fluid-static';
|
|
80
|
+
import { SharedDirectory } from '@fluidframework/map';
|
|
81
|
+
import { SharedIntervalCollection } from '@fluidframework/sequence';
|
|
82
|
+
import { SharedIntervalCollectionFactory } from '@fluidframework/sequence';
|
|
83
|
+
import { SharedMap } from '@fluidframework/map';
|
|
84
|
+
import { SharedObjectClass } from '@fluidframework/fluid-static';
|
|
85
|
+
import { SharedSegmentSequence } from '@fluidframework/sequence';
|
|
86
|
+
import { SharedSequence } from '@fluidframework/sequence';
|
|
87
|
+
import { SharedString } from '@fluidframework/sequence';
|
|
88
|
+
import { SharedStringFactory } from '@fluidframework/sequence';
|
|
89
|
+
import { SharedStringSegment } from '@fluidframework/sequence';
|
|
90
|
+
import { SubSequence } from '@fluidframework/sequence';
|
|
91
|
+
|
|
9
92
|
/* Excluded from this release type: AttachState */
|
|
10
93
|
|
|
11
94
|
/* Excluded from this release type: ConnectionState */
|
|
@@ -6,6 +6,89 @@
|
|
|
6
6
|
* @packageDocumentation
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
+
import { AttachState } from '@fluidframework/container-definitions';
|
|
10
|
+
import { ConnectionState } from '@fluidframework/container-loader';
|
|
11
|
+
import { ContainerErrorType } from '@fluidframework/container-definitions';
|
|
12
|
+
import { ContainerSchema } from '@fluidframework/fluid-static';
|
|
13
|
+
import { DataObjectClass } from '@fluidframework/fluid-static';
|
|
14
|
+
import { DeserializeCallback } from '@fluidframework/sequence';
|
|
15
|
+
import { DirectoryFactory } from '@fluidframework/map';
|
|
16
|
+
import { DOProviderContainerRuntimeFactory } from '@fluidframework/fluid-static';
|
|
17
|
+
import { DriverErrorType } from '@fluidframework/driver-definitions';
|
|
18
|
+
import { FluidContainer } from '@fluidframework/fluid-static';
|
|
19
|
+
import { getTextAndMarkers } from '@fluidframework/sequence';
|
|
20
|
+
import { IConnection } from '@fluidframework/fluid-static';
|
|
21
|
+
import { ICriticalContainerError } from '@fluidframework/container-definitions';
|
|
22
|
+
import { IDirectory } from '@fluidframework/map';
|
|
23
|
+
import { IDirectoryClearOperation } from '@fluidframework/map';
|
|
24
|
+
import { IDirectoryCreateSubDirectoryOperation } from '@fluidframework/map';
|
|
25
|
+
import { IDirectoryDataObject } from '@fluidframework/map';
|
|
26
|
+
import { IDirectoryDeleteOperation } from '@fluidframework/map';
|
|
27
|
+
import { IDirectoryDeleteSubDirectoryOperation } from '@fluidframework/map';
|
|
28
|
+
import { IDirectoryEvents } from '@fluidframework/map';
|
|
29
|
+
import { IDirectoryKeyOperation } from '@fluidframework/map';
|
|
30
|
+
import { IDirectoryNewStorageFormat } from '@fluidframework/map';
|
|
31
|
+
import { IDirectoryOperation } from '@fluidframework/map';
|
|
32
|
+
import { IDirectorySetOperation } from '@fluidframework/map';
|
|
33
|
+
import { IDirectoryStorageOperation } from '@fluidframework/map';
|
|
34
|
+
import { IDirectorySubDirectoryOperation } from '@fluidframework/map';
|
|
35
|
+
import { IDirectoryValueChanged } from '@fluidframework/map';
|
|
36
|
+
import { IFluidContainer } from '@fluidframework/fluid-static';
|
|
37
|
+
import { IFluidContainerEvents } from '@fluidframework/fluid-static';
|
|
38
|
+
import { IInterval } from '@fluidframework/sequence';
|
|
39
|
+
import { IIntervalCollection } from '@fluidframework/sequence';
|
|
40
|
+
import { IIntervalCollectionEvent } from '@fluidframework/sequence';
|
|
41
|
+
import { IIntervalHelpers } from '@fluidframework/sequence';
|
|
42
|
+
import { IJSONRunSegment } from '@fluidframework/sequence';
|
|
43
|
+
import { ILocalValue } from '@fluidframework/map';
|
|
44
|
+
import { IMapMessageLocalMetadata } from '@fluidframework/sequence';
|
|
45
|
+
import { IMember } from '@fluidframework/fluid-static';
|
|
46
|
+
import { Interval } from '@fluidframework/sequence';
|
|
47
|
+
import { IntervalLocator } from '@fluidframework/sequence';
|
|
48
|
+
import { intervalLocatorFromEndpoint } from '@fluidframework/sequence';
|
|
49
|
+
import { IntervalType } from '@fluidframework/sequence';
|
|
50
|
+
import { IRootDataObject } from '@fluidframework/fluid-static';
|
|
51
|
+
import { ISequenceDeltaRange } from '@fluidframework/sequence';
|
|
52
|
+
import { ISerializableInterval } from '@fluidframework/sequence';
|
|
53
|
+
import { ISerializableValue } from '@fluidframework/map';
|
|
54
|
+
import { ISerializedInterval } from '@fluidframework/sequence';
|
|
55
|
+
import { ISerializedValue } from '@fluidframework/map';
|
|
56
|
+
import { IServiceAudience } from '@fluidframework/fluid-static';
|
|
57
|
+
import { IServiceAudienceEvents } from '@fluidframework/fluid-static';
|
|
58
|
+
import { ISharedDirectory } from '@fluidframework/map';
|
|
59
|
+
import { ISharedDirectoryEvents } from '@fluidframework/map';
|
|
60
|
+
import { ISharedIntervalCollection } from '@fluidframework/sequence';
|
|
61
|
+
import { ISharedMap } from '@fluidframework/map';
|
|
62
|
+
import { ISharedMapEvents } from '@fluidframework/map';
|
|
63
|
+
import { ISharedSegmentSequenceEvents } from '@fluidframework/sequence';
|
|
64
|
+
import { ISharedString } from '@fluidframework/sequence';
|
|
65
|
+
import { IValueChanged } from '@fluidframework/map';
|
|
66
|
+
import { IValueOpEmitter } from '@fluidframework/sequence';
|
|
67
|
+
import { LoadableObjectClass } from '@fluidframework/fluid-static';
|
|
68
|
+
import { LoadableObjectClassRecord } from '@fluidframework/fluid-static';
|
|
69
|
+
import { LoadableObjectCtor } from '@fluidframework/fluid-static';
|
|
70
|
+
import { LoadableObjectRecord } from '@fluidframework/fluid-static';
|
|
71
|
+
import { LocalValueMaker } from '@fluidframework/map';
|
|
72
|
+
import { MapFactory } from '@fluidframework/map';
|
|
73
|
+
import { MemberChangedListener } from '@fluidframework/fluid-static';
|
|
74
|
+
import { SequenceDeltaEvent } from '@fluidframework/sequence';
|
|
75
|
+
import { SequenceEvent } from '@fluidframework/sequence';
|
|
76
|
+
import { SequenceInterval } from '@fluidframework/sequence';
|
|
77
|
+
import { SequenceMaintenanceEvent } from '@fluidframework/sequence';
|
|
78
|
+
import { SerializedIntervalDelta } from '@fluidframework/sequence';
|
|
79
|
+
import { ServiceAudience } from '@fluidframework/fluid-static';
|
|
80
|
+
import { SharedDirectory } from '@fluidframework/map';
|
|
81
|
+
import { SharedIntervalCollection } from '@fluidframework/sequence';
|
|
82
|
+
import { SharedIntervalCollectionFactory } from '@fluidframework/sequence';
|
|
83
|
+
import { SharedMap } from '@fluidframework/map';
|
|
84
|
+
import { SharedObjectClass } from '@fluidframework/fluid-static';
|
|
85
|
+
import { SharedSegmentSequence } from '@fluidframework/sequence';
|
|
86
|
+
import { SharedSequence } from '@fluidframework/sequence';
|
|
87
|
+
import { SharedString } from '@fluidframework/sequence';
|
|
88
|
+
import { SharedStringFactory } from '@fluidframework/sequence';
|
|
89
|
+
import { SharedStringSegment } from '@fluidframework/sequence';
|
|
90
|
+
import { SubSequence } from '@fluidframework/sequence';
|
|
91
|
+
|
|
9
92
|
/* Excluded from this release type: AttachState */
|
|
10
93
|
|
|
11
94
|
/* Excluded from this release type: ConnectionState */
|
|
@@ -7,22 +7,100 @@
|
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
import { AttachState } from '@fluidframework/container-definitions';
|
|
10
|
+
import { ConnectionState } from '@fluidframework/container-loader';
|
|
11
|
+
import { ContainerErrorType } from '@fluidframework/container-definitions';
|
|
12
|
+
import { ContainerSchema } from '@fluidframework/fluid-static';
|
|
13
|
+
import { DataObjectClass } from '@fluidframework/fluid-static';
|
|
14
|
+
import { DeserializeCallback } from '@fluidframework/sequence';
|
|
15
|
+
import { DirectoryFactory } from '@fluidframework/map';
|
|
16
|
+
import { DOProviderContainerRuntimeFactory } from '@fluidframework/fluid-static';
|
|
10
17
|
import { DriverErrorType } from '@fluidframework/driver-definitions';
|
|
18
|
+
import { FluidContainer } from '@fluidframework/fluid-static';
|
|
19
|
+
import { getTextAndMarkers } from '@fluidframework/sequence';
|
|
20
|
+
import { IConnection } from '@fluidframework/fluid-static';
|
|
11
21
|
import { ICriticalContainerError } from '@fluidframework/container-definitions';
|
|
22
|
+
import { IDirectory } from '@fluidframework/map';
|
|
23
|
+
import { IDirectoryClearOperation } from '@fluidframework/map';
|
|
24
|
+
import { IDirectoryCreateSubDirectoryOperation } from '@fluidframework/map';
|
|
25
|
+
import { IDirectoryDataObject } from '@fluidframework/map';
|
|
26
|
+
import { IDirectoryDeleteOperation } from '@fluidframework/map';
|
|
27
|
+
import { IDirectoryDeleteSubDirectoryOperation } from '@fluidframework/map';
|
|
28
|
+
import { IDirectoryEvents } from '@fluidframework/map';
|
|
29
|
+
import { IDirectoryKeyOperation } from '@fluidframework/map';
|
|
30
|
+
import { IDirectoryNewStorageFormat } from '@fluidframework/map';
|
|
31
|
+
import { IDirectoryOperation } from '@fluidframework/map';
|
|
32
|
+
import { IDirectorySetOperation } from '@fluidframework/map';
|
|
33
|
+
import { IDirectoryStorageOperation } from '@fluidframework/map';
|
|
34
|
+
import { IDirectorySubDirectoryOperation } from '@fluidframework/map';
|
|
35
|
+
import { IDirectoryValueChanged } from '@fluidframework/map';
|
|
36
|
+
import { IFluidContainer } from '@fluidframework/fluid-static';
|
|
37
|
+
import { IFluidContainerEvents } from '@fluidframework/fluid-static';
|
|
38
|
+
import { IInterval } from '@fluidframework/sequence';
|
|
39
|
+
import { IIntervalCollection } from '@fluidframework/sequence';
|
|
40
|
+
import { IIntervalCollectionEvent } from '@fluidframework/sequence';
|
|
41
|
+
import { IIntervalHelpers } from '@fluidframework/sequence';
|
|
42
|
+
import { IJSONRunSegment } from '@fluidframework/sequence';
|
|
43
|
+
import { ILocalValue } from '@fluidframework/map';
|
|
44
|
+
import { IMapMessageLocalMetadata } from '@fluidframework/sequence';
|
|
45
|
+
import { IMember } from '@fluidframework/fluid-static';
|
|
46
|
+
import { Interval } from '@fluidframework/sequence';
|
|
47
|
+
import { IntervalLocator } from '@fluidframework/sequence';
|
|
48
|
+
import { intervalLocatorFromEndpoint } from '@fluidframework/sequence';
|
|
49
|
+
import { IntervalType } from '@fluidframework/sequence';
|
|
50
|
+
import { IRootDataObject } from '@fluidframework/fluid-static';
|
|
51
|
+
import { ISequenceDeltaRange } from '@fluidframework/sequence';
|
|
52
|
+
import { ISerializableInterval } from '@fluidframework/sequence';
|
|
53
|
+
import { ISerializableValue } from '@fluidframework/map';
|
|
54
|
+
import { ISerializedInterval } from '@fluidframework/sequence';
|
|
55
|
+
import { ISerializedValue } from '@fluidframework/map';
|
|
56
|
+
import { IServiceAudience } from '@fluidframework/fluid-static';
|
|
57
|
+
import { IServiceAudienceEvents } from '@fluidframework/fluid-static';
|
|
58
|
+
import { ISharedDirectory } from '@fluidframework/map';
|
|
59
|
+
import { ISharedDirectoryEvents } from '@fluidframework/map';
|
|
60
|
+
import { ISharedIntervalCollection } from '@fluidframework/sequence';
|
|
61
|
+
import { ISharedMap } from '@fluidframework/map';
|
|
62
|
+
import { ISharedMapEvents } from '@fluidframework/map';
|
|
63
|
+
import { ISharedSegmentSequenceEvents } from '@fluidframework/sequence';
|
|
64
|
+
import { ISharedString } from '@fluidframework/sequence';
|
|
65
|
+
import { IValueChanged } from '@fluidframework/map';
|
|
66
|
+
import { IValueOpEmitter } from '@fluidframework/sequence';
|
|
67
|
+
import { LoadableObjectClass } from '@fluidframework/fluid-static';
|
|
68
|
+
import { LoadableObjectClassRecord } from '@fluidframework/fluid-static';
|
|
69
|
+
import { LoadableObjectCtor } from '@fluidframework/fluid-static';
|
|
70
|
+
import { LoadableObjectRecord } from '@fluidframework/fluid-static';
|
|
71
|
+
import { LocalValueMaker } from '@fluidframework/map';
|
|
72
|
+
import { MapFactory } from '@fluidframework/map';
|
|
73
|
+
import { MemberChangedListener } from '@fluidframework/fluid-static';
|
|
74
|
+
import { SequenceDeltaEvent } from '@fluidframework/sequence';
|
|
75
|
+
import { SequenceEvent } from '@fluidframework/sequence';
|
|
76
|
+
import { SequenceInterval } from '@fluidframework/sequence';
|
|
77
|
+
import { SequenceMaintenanceEvent } from '@fluidframework/sequence';
|
|
78
|
+
import { SerializedIntervalDelta } from '@fluidframework/sequence';
|
|
79
|
+
import { ServiceAudience } from '@fluidframework/fluid-static';
|
|
80
|
+
import { SharedDirectory } from '@fluidframework/map';
|
|
81
|
+
import { SharedIntervalCollection } from '@fluidframework/sequence';
|
|
82
|
+
import { SharedIntervalCollectionFactory } from '@fluidframework/sequence';
|
|
83
|
+
import { SharedMap } from '@fluidframework/map';
|
|
84
|
+
import { SharedObjectClass } from '@fluidframework/fluid-static';
|
|
85
|
+
import { SharedSegmentSequence } from '@fluidframework/sequence';
|
|
86
|
+
import { SharedSequence } from '@fluidframework/sequence';
|
|
87
|
+
import { SharedString } from '@fluidframework/sequence';
|
|
88
|
+
import { SharedStringFactory } from '@fluidframework/sequence';
|
|
89
|
+
import { SharedStringSegment } from '@fluidframework/sequence';
|
|
90
|
+
import { SubSequence } from '@fluidframework/sequence';
|
|
12
91
|
|
|
13
92
|
export { AttachState }
|
|
14
93
|
|
|
15
94
|
/* Excluded from this release type: ConnectionState */
|
|
16
95
|
|
|
17
96
|
/* Excluded from this release type: ContainerErrorType */
|
|
97
|
+
export { ContainerSchema }
|
|
18
98
|
|
|
19
|
-
|
|
99
|
+
export { DataObjectClass }
|
|
20
100
|
|
|
21
|
-
|
|
101
|
+
export { DeserializeCallback }
|
|
22
102
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
/* Excluded from this release type: DirectoryFactory */
|
|
103
|
+
export { DirectoryFactory }
|
|
26
104
|
|
|
27
105
|
/* Excluded from this release type: DOProviderContainerRuntimeFactory */
|
|
28
106
|
export { DriverErrorType }
|
|
@@ -30,145 +108,136 @@ export { DriverErrorType }
|
|
|
30
108
|
/* Excluded from this release type: FluidContainer */
|
|
31
109
|
|
|
32
110
|
/* Excluded from this release type: getTextAndMarkers */
|
|
111
|
+
export { IConnection }
|
|
33
112
|
|
|
34
|
-
/* Excluded from this release type: IConnection */
|
|
35
113
|
export { ICriticalContainerError }
|
|
36
114
|
|
|
37
|
-
|
|
115
|
+
export { IDirectory }
|
|
38
116
|
|
|
39
|
-
|
|
117
|
+
export { IDirectoryClearOperation }
|
|
40
118
|
|
|
41
|
-
|
|
119
|
+
export { IDirectoryCreateSubDirectoryOperation }
|
|
42
120
|
|
|
43
|
-
|
|
121
|
+
export { IDirectoryDataObject }
|
|
44
122
|
|
|
45
|
-
|
|
123
|
+
export { IDirectoryDeleteOperation }
|
|
46
124
|
|
|
47
|
-
|
|
125
|
+
export { IDirectoryDeleteSubDirectoryOperation }
|
|
48
126
|
|
|
49
|
-
|
|
127
|
+
export { IDirectoryEvents }
|
|
50
128
|
|
|
51
|
-
|
|
129
|
+
export { IDirectoryKeyOperation }
|
|
52
130
|
|
|
53
131
|
/* Excluded from this release type: IDirectoryNewStorageFormat */
|
|
132
|
+
export { IDirectoryOperation }
|
|
54
133
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
/* Excluded from this release type: IDirectorySetOperation */
|
|
134
|
+
export { IDirectorySetOperation }
|
|
58
135
|
|
|
59
|
-
|
|
136
|
+
export { IDirectoryStorageOperation }
|
|
60
137
|
|
|
61
|
-
|
|
138
|
+
export { IDirectorySubDirectoryOperation }
|
|
62
139
|
|
|
63
|
-
|
|
140
|
+
export { IDirectoryValueChanged }
|
|
64
141
|
|
|
65
|
-
|
|
142
|
+
export { IFluidContainer }
|
|
66
143
|
|
|
67
|
-
|
|
144
|
+
export { IFluidContainerEvents }
|
|
68
145
|
|
|
69
|
-
|
|
146
|
+
export { IInterval }
|
|
70
147
|
|
|
71
|
-
|
|
148
|
+
export { IIntervalCollection }
|
|
72
149
|
|
|
73
|
-
|
|
150
|
+
export { IIntervalCollectionEvent }
|
|
74
151
|
|
|
75
152
|
/* Excluded from this release type: IIntervalHelpers */
|
|
76
153
|
|
|
77
154
|
/* Excluded from this release type: IJSONRunSegment */
|
|
78
|
-
|
|
79
|
-
/* Excluded from this release type: ILocalValue */
|
|
155
|
+
export { ILocalValue }
|
|
80
156
|
|
|
81
157
|
/* Excluded from this release type: IMapMessageLocalMetadata */
|
|
82
|
-
|
|
83
|
-
/* Excluded from this release type: IMember */
|
|
158
|
+
export { IMember }
|
|
84
159
|
|
|
85
160
|
/* Excluded from this release type: Interval */
|
|
86
161
|
|
|
87
162
|
/* Excluded from this release type: IntervalLocator */
|
|
88
163
|
|
|
89
164
|
/* Excluded from this release type: intervalLocatorFromEndpoint */
|
|
90
|
-
|
|
91
|
-
/* Excluded from this release type: IntervalType */
|
|
165
|
+
export { IntervalType }
|
|
92
166
|
|
|
93
167
|
/* Excluded from this release type: IRootDataObject */
|
|
168
|
+
export { ISequenceDeltaRange }
|
|
94
169
|
|
|
95
|
-
|
|
170
|
+
export { ISerializableInterval }
|
|
96
171
|
|
|
97
|
-
|
|
172
|
+
export { ISerializableValue }
|
|
98
173
|
|
|
99
|
-
|
|
174
|
+
export { ISerializedInterval }
|
|
100
175
|
|
|
101
|
-
|
|
176
|
+
export { ISerializedValue }
|
|
102
177
|
|
|
103
|
-
|
|
178
|
+
export { IServiceAudience }
|
|
104
179
|
|
|
105
|
-
|
|
180
|
+
export { IServiceAudienceEvents }
|
|
106
181
|
|
|
107
|
-
|
|
182
|
+
export { ISharedDirectory }
|
|
108
183
|
|
|
109
|
-
|
|
184
|
+
export { ISharedDirectoryEvents }
|
|
110
185
|
|
|
111
|
-
|
|
186
|
+
export { ISharedIntervalCollection }
|
|
112
187
|
|
|
113
|
-
|
|
188
|
+
export { ISharedMap }
|
|
114
189
|
|
|
115
|
-
|
|
190
|
+
export { ISharedMapEvents }
|
|
116
191
|
|
|
117
|
-
|
|
192
|
+
export { ISharedSegmentSequenceEvents }
|
|
118
193
|
|
|
119
|
-
|
|
194
|
+
export { ISharedString }
|
|
120
195
|
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
/* Excluded from this release type: IValueChanged */
|
|
196
|
+
export { IValueChanged }
|
|
124
197
|
|
|
125
198
|
/* Excluded from this release type: IValueOpEmitter */
|
|
199
|
+
export { LoadableObjectClass }
|
|
126
200
|
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
/* Excluded from this release type: LoadableObjectClassRecord */
|
|
201
|
+
export { LoadableObjectClassRecord }
|
|
130
202
|
|
|
131
|
-
|
|
203
|
+
export { LoadableObjectCtor }
|
|
132
204
|
|
|
133
|
-
|
|
205
|
+
export { LoadableObjectRecord }
|
|
134
206
|
|
|
135
|
-
|
|
207
|
+
export { LocalValueMaker }
|
|
136
208
|
|
|
137
|
-
|
|
209
|
+
export { MapFactory }
|
|
138
210
|
|
|
139
|
-
|
|
211
|
+
export { MemberChangedListener }
|
|
140
212
|
|
|
141
|
-
|
|
213
|
+
export { SequenceDeltaEvent }
|
|
142
214
|
|
|
143
|
-
|
|
215
|
+
export { SequenceEvent }
|
|
144
216
|
|
|
145
|
-
|
|
217
|
+
export { SequenceInterval }
|
|
146
218
|
|
|
147
|
-
|
|
219
|
+
export { SequenceMaintenanceEvent }
|
|
148
220
|
|
|
149
221
|
/* Excluded from this release type: SerializedIntervalDelta */
|
|
150
222
|
|
|
151
223
|
/* Excluded from this release type: ServiceAudience */
|
|
152
|
-
|
|
153
|
-
/* Excluded from this release type: SharedDirectory */
|
|
224
|
+
export { SharedDirectory }
|
|
154
225
|
|
|
155
226
|
/* Excluded from this release type: SharedIntervalCollection */
|
|
156
227
|
|
|
157
228
|
/* Excluded from this release type: SharedIntervalCollectionFactory */
|
|
229
|
+
export { SharedMap }
|
|
158
230
|
|
|
159
|
-
|
|
231
|
+
export { SharedObjectClass }
|
|
160
232
|
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
/* Excluded from this release type: SharedSegmentSequence */
|
|
233
|
+
export { SharedSegmentSequence }
|
|
164
234
|
|
|
165
235
|
/* Excluded from this release type: SharedSequence */
|
|
236
|
+
export { SharedString }
|
|
166
237
|
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
/* Excluded from this release type: SharedStringFactory */
|
|
238
|
+
export { SharedStringFactory }
|
|
170
239
|
|
|
171
|
-
|
|
240
|
+
export { SharedStringSegment }
|
|
172
241
|
|
|
173
242
|
/* Excluded from this release type: SubSequence */
|
|
174
243
|
|
|
@@ -6,6 +6,89 @@
|
|
|
6
6
|
* @packageDocumentation
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
+
import { AttachState } from '@fluidframework/container-definitions';
|
|
10
|
+
import { ConnectionState } from '@fluidframework/container-loader';
|
|
11
|
+
import { ContainerErrorType } from '@fluidframework/container-definitions';
|
|
12
|
+
import { ContainerSchema } from '@fluidframework/fluid-static';
|
|
13
|
+
import { DataObjectClass } from '@fluidframework/fluid-static';
|
|
14
|
+
import { DeserializeCallback } from '@fluidframework/sequence';
|
|
15
|
+
import { DirectoryFactory } from '@fluidframework/map';
|
|
16
|
+
import { DOProviderContainerRuntimeFactory } from '@fluidframework/fluid-static';
|
|
17
|
+
import { DriverErrorType } from '@fluidframework/driver-definitions';
|
|
18
|
+
import { FluidContainer } from '@fluidframework/fluid-static';
|
|
19
|
+
import { getTextAndMarkers } from '@fluidframework/sequence';
|
|
20
|
+
import { IConnection } from '@fluidframework/fluid-static';
|
|
21
|
+
import { ICriticalContainerError } from '@fluidframework/container-definitions';
|
|
22
|
+
import { IDirectory } from '@fluidframework/map';
|
|
23
|
+
import { IDirectoryClearOperation } from '@fluidframework/map';
|
|
24
|
+
import { IDirectoryCreateSubDirectoryOperation } from '@fluidframework/map';
|
|
25
|
+
import { IDirectoryDataObject } from '@fluidframework/map';
|
|
26
|
+
import { IDirectoryDeleteOperation } from '@fluidframework/map';
|
|
27
|
+
import { IDirectoryDeleteSubDirectoryOperation } from '@fluidframework/map';
|
|
28
|
+
import { IDirectoryEvents } from '@fluidframework/map';
|
|
29
|
+
import { IDirectoryKeyOperation } from '@fluidframework/map';
|
|
30
|
+
import { IDirectoryNewStorageFormat } from '@fluidframework/map';
|
|
31
|
+
import { IDirectoryOperation } from '@fluidframework/map';
|
|
32
|
+
import { IDirectorySetOperation } from '@fluidframework/map';
|
|
33
|
+
import { IDirectoryStorageOperation } from '@fluidframework/map';
|
|
34
|
+
import { IDirectorySubDirectoryOperation } from '@fluidframework/map';
|
|
35
|
+
import { IDirectoryValueChanged } from '@fluidframework/map';
|
|
36
|
+
import { IFluidContainer } from '@fluidframework/fluid-static';
|
|
37
|
+
import { IFluidContainerEvents } from '@fluidframework/fluid-static';
|
|
38
|
+
import { IInterval } from '@fluidframework/sequence';
|
|
39
|
+
import { IIntervalCollection } from '@fluidframework/sequence';
|
|
40
|
+
import { IIntervalCollectionEvent } from '@fluidframework/sequence';
|
|
41
|
+
import { IIntervalHelpers } from '@fluidframework/sequence';
|
|
42
|
+
import { IJSONRunSegment } from '@fluidframework/sequence';
|
|
43
|
+
import { ILocalValue } from '@fluidframework/map';
|
|
44
|
+
import { IMapMessageLocalMetadata } from '@fluidframework/sequence';
|
|
45
|
+
import { IMember } from '@fluidframework/fluid-static';
|
|
46
|
+
import { Interval } from '@fluidframework/sequence';
|
|
47
|
+
import { IntervalLocator } from '@fluidframework/sequence';
|
|
48
|
+
import { intervalLocatorFromEndpoint } from '@fluidframework/sequence';
|
|
49
|
+
import { IntervalType } from '@fluidframework/sequence';
|
|
50
|
+
import { IRootDataObject } from '@fluidframework/fluid-static';
|
|
51
|
+
import { ISequenceDeltaRange } from '@fluidframework/sequence';
|
|
52
|
+
import { ISerializableInterval } from '@fluidframework/sequence';
|
|
53
|
+
import { ISerializableValue } from '@fluidframework/map';
|
|
54
|
+
import { ISerializedInterval } from '@fluidframework/sequence';
|
|
55
|
+
import { ISerializedValue } from '@fluidframework/map';
|
|
56
|
+
import { IServiceAudience } from '@fluidframework/fluid-static';
|
|
57
|
+
import { IServiceAudienceEvents } from '@fluidframework/fluid-static';
|
|
58
|
+
import { ISharedDirectory } from '@fluidframework/map';
|
|
59
|
+
import { ISharedDirectoryEvents } from '@fluidframework/map';
|
|
60
|
+
import { ISharedIntervalCollection } from '@fluidframework/sequence';
|
|
61
|
+
import { ISharedMap } from '@fluidframework/map';
|
|
62
|
+
import { ISharedMapEvents } from '@fluidframework/map';
|
|
63
|
+
import { ISharedSegmentSequenceEvents } from '@fluidframework/sequence';
|
|
64
|
+
import { ISharedString } from '@fluidframework/sequence';
|
|
65
|
+
import { IValueChanged } from '@fluidframework/map';
|
|
66
|
+
import { IValueOpEmitter } from '@fluidframework/sequence';
|
|
67
|
+
import { LoadableObjectClass } from '@fluidframework/fluid-static';
|
|
68
|
+
import { LoadableObjectClassRecord } from '@fluidframework/fluid-static';
|
|
69
|
+
import { LoadableObjectCtor } from '@fluidframework/fluid-static';
|
|
70
|
+
import { LoadableObjectRecord } from '@fluidframework/fluid-static';
|
|
71
|
+
import { LocalValueMaker } from '@fluidframework/map';
|
|
72
|
+
import { MapFactory } from '@fluidframework/map';
|
|
73
|
+
import { MemberChangedListener } from '@fluidframework/fluid-static';
|
|
74
|
+
import { SequenceDeltaEvent } from '@fluidframework/sequence';
|
|
75
|
+
import { SequenceEvent } from '@fluidframework/sequence';
|
|
76
|
+
import { SequenceInterval } from '@fluidframework/sequence';
|
|
77
|
+
import { SequenceMaintenanceEvent } from '@fluidframework/sequence';
|
|
78
|
+
import { SerializedIntervalDelta } from '@fluidframework/sequence';
|
|
79
|
+
import { ServiceAudience } from '@fluidframework/fluid-static';
|
|
80
|
+
import { SharedDirectory } from '@fluidframework/map';
|
|
81
|
+
import { SharedIntervalCollection } from '@fluidframework/sequence';
|
|
82
|
+
import { SharedIntervalCollectionFactory } from '@fluidframework/sequence';
|
|
83
|
+
import { SharedMap } from '@fluidframework/map';
|
|
84
|
+
import { SharedObjectClass } from '@fluidframework/fluid-static';
|
|
85
|
+
import { SharedSegmentSequence } from '@fluidframework/sequence';
|
|
86
|
+
import { SharedSequence } from '@fluidframework/sequence';
|
|
87
|
+
import { SharedString } from '@fluidframework/sequence';
|
|
88
|
+
import { SharedStringFactory } from '@fluidframework/sequence';
|
|
89
|
+
import { SharedStringSegment } from '@fluidframework/sequence';
|
|
90
|
+
import { SubSequence } from '@fluidframework/sequence';
|
|
91
|
+
|
|
9
92
|
/* Excluded from this release type: AttachState */
|
|
10
93
|
|
|
11
94
|
/* Excluded from this release type: ConnectionState */
|
|
@@ -6,6 +6,89 @@
|
|
|
6
6
|
* @packageDocumentation
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
+
import { AttachState } from '@fluidframework/container-definitions';
|
|
10
|
+
import { ConnectionState } from '@fluidframework/container-loader';
|
|
11
|
+
import { ContainerErrorType } from '@fluidframework/container-definitions';
|
|
12
|
+
import { ContainerSchema } from '@fluidframework/fluid-static';
|
|
13
|
+
import { DataObjectClass } from '@fluidframework/fluid-static';
|
|
14
|
+
import { DeserializeCallback } from '@fluidframework/sequence';
|
|
15
|
+
import { DirectoryFactory } from '@fluidframework/map';
|
|
16
|
+
import { DOProviderContainerRuntimeFactory } from '@fluidframework/fluid-static';
|
|
17
|
+
import { DriverErrorType } from '@fluidframework/driver-definitions';
|
|
18
|
+
import { FluidContainer } from '@fluidframework/fluid-static';
|
|
19
|
+
import { getTextAndMarkers } from '@fluidframework/sequence';
|
|
20
|
+
import { IConnection } from '@fluidframework/fluid-static';
|
|
21
|
+
import { ICriticalContainerError } from '@fluidframework/container-definitions';
|
|
22
|
+
import { IDirectory } from '@fluidframework/map';
|
|
23
|
+
import { IDirectoryClearOperation } from '@fluidframework/map';
|
|
24
|
+
import { IDirectoryCreateSubDirectoryOperation } from '@fluidframework/map';
|
|
25
|
+
import { IDirectoryDataObject } from '@fluidframework/map';
|
|
26
|
+
import { IDirectoryDeleteOperation } from '@fluidframework/map';
|
|
27
|
+
import { IDirectoryDeleteSubDirectoryOperation } from '@fluidframework/map';
|
|
28
|
+
import { IDirectoryEvents } from '@fluidframework/map';
|
|
29
|
+
import { IDirectoryKeyOperation } from '@fluidframework/map';
|
|
30
|
+
import { IDirectoryNewStorageFormat } from '@fluidframework/map';
|
|
31
|
+
import { IDirectoryOperation } from '@fluidframework/map';
|
|
32
|
+
import { IDirectorySetOperation } from '@fluidframework/map';
|
|
33
|
+
import { IDirectoryStorageOperation } from '@fluidframework/map';
|
|
34
|
+
import { IDirectorySubDirectoryOperation } from '@fluidframework/map';
|
|
35
|
+
import { IDirectoryValueChanged } from '@fluidframework/map';
|
|
36
|
+
import { IFluidContainer } from '@fluidframework/fluid-static';
|
|
37
|
+
import { IFluidContainerEvents } from '@fluidframework/fluid-static';
|
|
38
|
+
import { IInterval } from '@fluidframework/sequence';
|
|
39
|
+
import { IIntervalCollection } from '@fluidframework/sequence';
|
|
40
|
+
import { IIntervalCollectionEvent } from '@fluidframework/sequence';
|
|
41
|
+
import { IIntervalHelpers } from '@fluidframework/sequence';
|
|
42
|
+
import { IJSONRunSegment } from '@fluidframework/sequence';
|
|
43
|
+
import { ILocalValue } from '@fluidframework/map';
|
|
44
|
+
import { IMapMessageLocalMetadata } from '@fluidframework/sequence';
|
|
45
|
+
import { IMember } from '@fluidframework/fluid-static';
|
|
46
|
+
import { Interval } from '@fluidframework/sequence';
|
|
47
|
+
import { IntervalLocator } from '@fluidframework/sequence';
|
|
48
|
+
import { intervalLocatorFromEndpoint } from '@fluidframework/sequence';
|
|
49
|
+
import { IntervalType } from '@fluidframework/sequence';
|
|
50
|
+
import { IRootDataObject } from '@fluidframework/fluid-static';
|
|
51
|
+
import { ISequenceDeltaRange } from '@fluidframework/sequence';
|
|
52
|
+
import { ISerializableInterval } from '@fluidframework/sequence';
|
|
53
|
+
import { ISerializableValue } from '@fluidframework/map';
|
|
54
|
+
import { ISerializedInterval } from '@fluidframework/sequence';
|
|
55
|
+
import { ISerializedValue } from '@fluidframework/map';
|
|
56
|
+
import { IServiceAudience } from '@fluidframework/fluid-static';
|
|
57
|
+
import { IServiceAudienceEvents } from '@fluidframework/fluid-static';
|
|
58
|
+
import { ISharedDirectory } from '@fluidframework/map';
|
|
59
|
+
import { ISharedDirectoryEvents } from '@fluidframework/map';
|
|
60
|
+
import { ISharedIntervalCollection } from '@fluidframework/sequence';
|
|
61
|
+
import { ISharedMap } from '@fluidframework/map';
|
|
62
|
+
import { ISharedMapEvents } from '@fluidframework/map';
|
|
63
|
+
import { ISharedSegmentSequenceEvents } from '@fluidframework/sequence';
|
|
64
|
+
import { ISharedString } from '@fluidframework/sequence';
|
|
65
|
+
import { IValueChanged } from '@fluidframework/map';
|
|
66
|
+
import { IValueOpEmitter } from '@fluidframework/sequence';
|
|
67
|
+
import { LoadableObjectClass } from '@fluidframework/fluid-static';
|
|
68
|
+
import { LoadableObjectClassRecord } from '@fluidframework/fluid-static';
|
|
69
|
+
import { LoadableObjectCtor } from '@fluidframework/fluid-static';
|
|
70
|
+
import { LoadableObjectRecord } from '@fluidframework/fluid-static';
|
|
71
|
+
import { LocalValueMaker } from '@fluidframework/map';
|
|
72
|
+
import { MapFactory } from '@fluidframework/map';
|
|
73
|
+
import { MemberChangedListener } from '@fluidframework/fluid-static';
|
|
74
|
+
import { SequenceDeltaEvent } from '@fluidframework/sequence';
|
|
75
|
+
import { SequenceEvent } from '@fluidframework/sequence';
|
|
76
|
+
import { SequenceInterval } from '@fluidframework/sequence';
|
|
77
|
+
import { SequenceMaintenanceEvent } from '@fluidframework/sequence';
|
|
78
|
+
import { SerializedIntervalDelta } from '@fluidframework/sequence';
|
|
79
|
+
import { ServiceAudience } from '@fluidframework/fluid-static';
|
|
80
|
+
import { SharedDirectory } from '@fluidframework/map';
|
|
81
|
+
import { SharedIntervalCollection } from '@fluidframework/sequence';
|
|
82
|
+
import { SharedIntervalCollectionFactory } from '@fluidframework/sequence';
|
|
83
|
+
import { SharedMap } from '@fluidframework/map';
|
|
84
|
+
import { SharedObjectClass } from '@fluidframework/fluid-static';
|
|
85
|
+
import { SharedSegmentSequence } from '@fluidframework/sequence';
|
|
86
|
+
import { SharedSequence } from '@fluidframework/sequence';
|
|
87
|
+
import { SharedString } from '@fluidframework/sequence';
|
|
88
|
+
import { SharedStringFactory } from '@fluidframework/sequence';
|
|
89
|
+
import { SharedStringSegment } from '@fluidframework/sequence';
|
|
90
|
+
import { SubSequence } from '@fluidframework/sequence';
|
|
91
|
+
|
|
9
92
|
/* Excluded from this release type: AttachState */
|
|
10
93
|
|
|
11
94
|
/* Excluded from this release type: ConnectionState */
|
package/lib/index.d.ts
CHANGED
|
@@ -2,13 +2,6 @@
|
|
|
2
2
|
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
|
|
3
3
|
* Licensed under the MIT License.
|
|
4
4
|
*/
|
|
5
|
-
/**
|
|
6
|
-
* The **fluid-framework** package bundles a collection of Fluid Framework client libraries for easy use
|
|
7
|
-
* when paired with a corresponding service client library (for example,
|
|
8
|
-
* `\@fluidframework/azure-client` or `\@fluidframework/tinylicious-client`).
|
|
9
|
-
*
|
|
10
|
-
* @packageDocumentation
|
|
11
|
-
*/
|
|
12
5
|
export type { ICriticalContainerError } from "@fluidframework/container-definitions";
|
|
13
6
|
export { AttachState, ContainerErrorType } from "@fluidframework/container-definitions";
|
|
14
7
|
export { DriverErrorType } from "@fluidframework/driver-definitions";
|
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;
|
|
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;OAC9B,EACN,iCAAiC,EACjC,cAAc,EACd,eAAe,GACf,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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fluid-framework",
|
|
3
|
-
"version": "2.0.0-dev.7.4.0.
|
|
3
|
+
"version": "2.0.0-dev.7.4.0.221926",
|
|
4
4
|
"description": "The main entry point into Fluid Framework public packages",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -11,36 +11,25 @@
|
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"author": "Microsoft and contributors",
|
|
13
13
|
"sideEffects": false,
|
|
14
|
-
"exports": {
|
|
15
|
-
".": {
|
|
16
|
-
"import": {
|
|
17
|
-
"types": "./lib/index.d.ts",
|
|
18
|
-
"default": "./lib/index.mjs"
|
|
19
|
-
},
|
|
20
|
-
"require": {
|
|
21
|
-
"types": "./dist/index.d.ts",
|
|
22
|
-
"default": "./dist/index.cjs"
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
14
|
"main": "dist/index.cjs",
|
|
27
15
|
"module": "lib/index.mjs",
|
|
28
16
|
"types": "dist/index.d.ts",
|
|
29
17
|
"dependencies": {
|
|
30
|
-
"@fluidframework/container-definitions": "2.0.0-dev.7.4.0.
|
|
31
|
-
"@fluidframework/container-loader": "2.0.0-dev.7.4.0.
|
|
32
|
-
"@fluidframework/driver-definitions": "2.0.0-dev.7.4.0.
|
|
33
|
-
"@fluidframework/fluid-static": "2.0.0-dev.7.4.0.
|
|
34
|
-
"@fluidframework/map": "2.0.0-dev.7.4.0.
|
|
35
|
-
"@fluidframework/sequence": "2.0.0-dev.7.4.0.
|
|
18
|
+
"@fluidframework/container-definitions": "2.0.0-dev.7.4.0.221926",
|
|
19
|
+
"@fluidframework/container-loader": "2.0.0-dev.7.4.0.221926",
|
|
20
|
+
"@fluidframework/driver-definitions": "2.0.0-dev.7.4.0.221926",
|
|
21
|
+
"@fluidframework/fluid-static": "2.0.0-dev.7.4.0.221926",
|
|
22
|
+
"@fluidframework/map": "2.0.0-dev.7.4.0.221926",
|
|
23
|
+
"@fluidframework/sequence": "2.0.0-dev.7.4.0.221926"
|
|
36
24
|
},
|
|
37
25
|
"devDependencies": {
|
|
26
|
+
"@arethetypeswrong/cli": "^0.13.3",
|
|
38
27
|
"@fluid-tools/build-cli": "^0.28.0",
|
|
39
28
|
"@fluidframework/build-common": "^2.0.3",
|
|
40
29
|
"@fluidframework/build-tools": "^0.28.0",
|
|
41
30
|
"@fluidframework/eslint-config-fluid": "^3.1.0",
|
|
42
31
|
"@microsoft/api-extractor": "^7.38.3",
|
|
43
|
-
"@types/node": "^
|
|
32
|
+
"@types/node": "^18.19.0",
|
|
44
33
|
"copyfiles": "^2.4.1",
|
|
45
34
|
"eslint": "~8.50.0",
|
|
46
35
|
"prettier": "~3.0.3",
|
|
@@ -77,6 +66,7 @@
|
|
|
77
66
|
"build:compile": "fluid-build . --task compile",
|
|
78
67
|
"build:docs": "fluid-build . --task api",
|
|
79
68
|
"build:esnext": "tsc-multi --config ../../../common/build/build-common/tsc-multi.esm.json",
|
|
69
|
+
"check:are-the-types-wrong": "attw --pack",
|
|
80
70
|
"check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json",
|
|
81
71
|
"ci:build:docs": "api-extractor run",
|
|
82
72
|
"clean": "rimraf --glob _api-extractor-temp dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\"",
|