fluid-framework 2.0.0-internal.7.3.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 CHANGED
@@ -1,5 +1,37 @@
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
+
19
+ ## 2.0.0-internal.7.4.0
20
+
21
+ ### Minor Changes
22
+
23
+ - azure-client: Deprecated FluidStatic Classes ([#18402](https://github.com/microsoft/FluidFramework/issues/18402)) [589ec39de5](https://github.com/microsoft/FluidFramework/commits/589ec39de52116c7f782319e6f6aa61bc5aa9964)
24
+
25
+ Several FluidStatic classes were unnecessarily exposed. They have been replaced with creation functions. This helps us
26
+ keep implementations decoupled from usage which is easier to maintain and extend. It has very minimal impact on the
27
+ public surface area of downstream packages. The deprecated classes are as follows:
28
+
29
+ - `AzureAudience` (use `IAzureAudience` instead)
30
+ - `TinyliciousAudience` (use `ITinyliciousAudience` instead)
31
+ - `DOProviderContainerRuntimeFactory`
32
+ - `FluidContainer`
33
+ - `ServiceAudience`
34
+
3
35
  ## 2.0.0-internal.7.3.0
4
36
 
5
37
  Dependency updates only.
@@ -0,0 +1,13 @@
1
+ {
2
+ "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
3
+ "extends": "../../../common/build/build-common/api-extractor-lint.json",
4
+ "messages": {
5
+ "extractorMessageReporting": {
6
+ // TODO: remove once base config has this enabled as an error
7
+ "ae-incompatible-release-tags": {
8
+ "logLevel": "error",
9
+ "addToApiReportFile": false
10
+ }
11
+ }
12
+ }
13
+ }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
3
- "extends": "@fluidframework/build-common/api-extractor-base.json"
3
+ "extends": "../../../common/build/build-common/api-extractor-base.json"
4
4
  }
@@ -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 }
@@ -0,0 +1,236 @@
1
+ /**
2
+ * The **fluid-framework** package bundles a collection of Fluid Framework client libraries for easy use
3
+ * when paired with a corresponding service client library (for example,
4
+ * `\@fluidframework/azure-client` or `\@fluidframework/tinylicious-client`).
5
+ *
6
+ * @packageDocumentation
7
+ */
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 { DriverErrorType } from '@fluidframework/driver-definitions';
17
+ import { getTextAndMarkers } from '@fluidframework/sequence';
18
+ import { IConnection } from '@fluidframework/fluid-static';
19
+ import { ICriticalContainerError } from '@fluidframework/container-definitions';
20
+ import { IDirectory } from '@fluidframework/map';
21
+ import { IDirectoryClearOperation } from '@fluidframework/map';
22
+ import { IDirectoryCreateSubDirectoryOperation } from '@fluidframework/map';
23
+ import { IDirectoryDataObject } from '@fluidframework/map';
24
+ import { IDirectoryDeleteOperation } from '@fluidframework/map';
25
+ import { IDirectoryDeleteSubDirectoryOperation } from '@fluidframework/map';
26
+ import { IDirectoryEvents } from '@fluidframework/map';
27
+ import { IDirectoryKeyOperation } from '@fluidframework/map';
28
+ import { IDirectoryNewStorageFormat } from '@fluidframework/map';
29
+ import { IDirectoryOperation } from '@fluidframework/map';
30
+ import { IDirectorySetOperation } from '@fluidframework/map';
31
+ import { IDirectoryStorageOperation } from '@fluidframework/map';
32
+ import { IDirectorySubDirectoryOperation } from '@fluidframework/map';
33
+ import { IDirectoryValueChanged } from '@fluidframework/map';
34
+ import { IFluidContainer } from '@fluidframework/fluid-static';
35
+ import { IFluidContainerEvents } from '@fluidframework/fluid-static';
36
+ import { IInterval } from '@fluidframework/sequence';
37
+ import { IIntervalCollection } from '@fluidframework/sequence';
38
+ import { IIntervalCollectionEvent } from '@fluidframework/sequence';
39
+ import { IIntervalHelpers } from '@fluidframework/sequence';
40
+ import { IJSONRunSegment } from '@fluidframework/sequence';
41
+ import { ILocalValue } from '@fluidframework/map';
42
+ import { IMapMessageLocalMetadata } from '@fluidframework/sequence';
43
+ import { IMember } from '@fluidframework/fluid-static';
44
+ import { Interval } from '@fluidframework/sequence';
45
+ import { IntervalLocator } from '@fluidframework/sequence';
46
+ import { intervalLocatorFromEndpoint } from '@fluidframework/sequence';
47
+ import { IntervalType } from '@fluidframework/sequence';
48
+ import { IRootDataObject } from '@fluidframework/fluid-static';
49
+ import { ISequenceDeltaRange } from '@fluidframework/sequence';
50
+ import { ISerializableInterval } from '@fluidframework/sequence';
51
+ import { ISerializableValue } from '@fluidframework/map';
52
+ import { ISerializedInterval } from '@fluidframework/sequence';
53
+ import { ISerializedValue } from '@fluidframework/map';
54
+ import { IServiceAudience } from '@fluidframework/fluid-static';
55
+ import { IServiceAudienceEvents } from '@fluidframework/fluid-static';
56
+ import { ISharedDirectory } from '@fluidframework/map';
57
+ import { ISharedDirectoryEvents } from '@fluidframework/map';
58
+ import { ISharedIntervalCollection } from '@fluidframework/sequence';
59
+ import { ISharedMap } from '@fluidframework/map';
60
+ import { ISharedMapEvents } from '@fluidframework/map';
61
+ import { ISharedSegmentSequenceEvents } from '@fluidframework/sequence';
62
+ import { ISharedString } from '@fluidframework/sequence';
63
+ import { IValueChanged } from '@fluidframework/map';
64
+ import { IValueOpEmitter } from '@fluidframework/sequence';
65
+ import { LoadableObjectClass } from '@fluidframework/fluid-static';
66
+ import { LoadableObjectClassRecord } from '@fluidframework/fluid-static';
67
+ import { LoadableObjectCtor } from '@fluidframework/fluid-static';
68
+ import { LoadableObjectRecord } from '@fluidframework/fluid-static';
69
+ import { LocalValueMaker } from '@fluidframework/map';
70
+ import { MapFactory } from '@fluidframework/map';
71
+ import { MemberChangedListener } from '@fluidframework/fluid-static';
72
+ import { SequenceDeltaEvent } from '@fluidframework/sequence';
73
+ import { SequenceEvent } from '@fluidframework/sequence';
74
+ import { SequenceInterval } from '@fluidframework/sequence';
75
+ import { SequenceMaintenanceEvent } from '@fluidframework/sequence';
76
+ import { SerializedIntervalDelta } from '@fluidframework/sequence';
77
+ import { SharedDirectory } from '@fluidframework/map';
78
+ import { SharedIntervalCollection } from '@fluidframework/sequence';
79
+ import { SharedIntervalCollectionFactory } from '@fluidframework/sequence';
80
+ import { SharedMap } from '@fluidframework/map';
81
+ import { SharedObjectClass } from '@fluidframework/fluid-static';
82
+ import { SharedSegmentSequence } from '@fluidframework/sequence';
83
+ import { SharedSequence } from '@fluidframework/sequence';
84
+ import { SharedString } from '@fluidframework/sequence';
85
+ import { SharedStringFactory } from '@fluidframework/sequence';
86
+ import { SharedStringSegment } from '@fluidframework/sequence';
87
+ import { SubSequence } from '@fluidframework/sequence';
88
+
89
+ export { AttachState }
90
+
91
+ /* Excluded from this release type: ConnectionState */
92
+
93
+ /* Excluded from this release type: ContainerErrorType */
94
+ export { ContainerSchema }
95
+
96
+ export { DataObjectClass }
97
+
98
+ export { DeserializeCallback }
99
+
100
+ export { DirectoryFactory }
101
+
102
+ export { DriverErrorType }
103
+
104
+ /* Excluded from this release type: getTextAndMarkers */
105
+ export { IConnection }
106
+
107
+ export { ICriticalContainerError }
108
+
109
+ export { IDirectory }
110
+
111
+ export { IDirectoryClearOperation }
112
+
113
+ export { IDirectoryCreateSubDirectoryOperation }
114
+
115
+ export { IDirectoryDataObject }
116
+
117
+ export { IDirectoryDeleteOperation }
118
+
119
+ export { IDirectoryDeleteSubDirectoryOperation }
120
+
121
+ export { IDirectoryEvents }
122
+
123
+ export { IDirectoryKeyOperation }
124
+
125
+ /* Excluded from this release type: IDirectoryNewStorageFormat */
126
+ export { IDirectoryOperation }
127
+
128
+ export { IDirectorySetOperation }
129
+
130
+ export { IDirectoryStorageOperation }
131
+
132
+ export { IDirectorySubDirectoryOperation }
133
+
134
+ export { IDirectoryValueChanged }
135
+
136
+ export { IFluidContainer }
137
+
138
+ export { IFluidContainerEvents }
139
+
140
+ export { IInterval }
141
+
142
+ export { IIntervalCollection }
143
+
144
+ export { IIntervalCollectionEvent }
145
+
146
+ /* Excluded from this release type: IIntervalHelpers */
147
+
148
+ /* Excluded from this release type: IJSONRunSegment */
149
+ export { ILocalValue }
150
+
151
+ /* Excluded from this release type: IMapMessageLocalMetadata */
152
+ export { IMember }
153
+
154
+ /* Excluded from this release type: Interval */
155
+
156
+ /* Excluded from this release type: IntervalLocator */
157
+
158
+ /* Excluded from this release type: intervalLocatorFromEndpoint */
159
+ export { IntervalType }
160
+
161
+ /* Excluded from this release type: IRootDataObject */
162
+ export { ISequenceDeltaRange }
163
+
164
+ export { ISerializableInterval }
165
+
166
+ export { ISerializableValue }
167
+
168
+ export { ISerializedInterval }
169
+
170
+ export { ISerializedValue }
171
+
172
+ export { IServiceAudience }
173
+
174
+ export { IServiceAudienceEvents }
175
+
176
+ export { ISharedDirectory }
177
+
178
+ export { ISharedDirectoryEvents }
179
+
180
+ export { ISharedIntervalCollection }
181
+
182
+ export { ISharedMap }
183
+
184
+ export { ISharedMapEvents }
185
+
186
+ export { ISharedSegmentSequenceEvents }
187
+
188
+ export { ISharedString }
189
+
190
+ export { IValueChanged }
191
+
192
+ /* Excluded from this release type: IValueOpEmitter */
193
+ export { LoadableObjectClass }
194
+
195
+ export { LoadableObjectClassRecord }
196
+
197
+ export { LoadableObjectCtor }
198
+
199
+ export { LoadableObjectRecord }
200
+
201
+ export { LocalValueMaker }
202
+
203
+ export { MapFactory }
204
+
205
+ export { MemberChangedListener }
206
+
207
+ export { SequenceDeltaEvent }
208
+
209
+ export { SequenceEvent }
210
+
211
+ export { SequenceInterval }
212
+
213
+ export { SequenceMaintenanceEvent }
214
+
215
+ /* Excluded from this release type: SerializedIntervalDelta */
216
+ export { SharedDirectory }
217
+
218
+ /* Excluded from this release type: SharedIntervalCollection */
219
+
220
+ /* Excluded from this release type: SharedIntervalCollectionFactory */
221
+ export { SharedMap }
222
+
223
+ export { SharedObjectClass }
224
+
225
+ export { SharedSegmentSequence }
226
+
227
+ /* Excluded from this release type: SharedSequence */
228
+ export { SharedString }
229
+
230
+ export { SharedStringFactory }
231
+
232
+ export { SharedStringSegment }
233
+
234
+ /* Excluded from this release type: SubSequence */
235
+
236
+ export { }
@@ -0,0 +1,247 @@
1
+ /**
2
+ * The **fluid-framework** package bundles a collection of Fluid Framework client libraries for easy use
3
+ * when paired with a corresponding service client library (for example,
4
+ * `\@fluidframework/azure-client` or `\@fluidframework/tinylicious-client`).
5
+ *
6
+ * @packageDocumentation
7
+ */
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 { DriverErrorType } from '@fluidframework/driver-definitions';
17
+ import { getTextAndMarkers } from '@fluidframework/sequence';
18
+ import { IConnection } from '@fluidframework/fluid-static';
19
+ import { ICriticalContainerError } from '@fluidframework/container-definitions';
20
+ import { IDirectory } from '@fluidframework/map';
21
+ import { IDirectoryClearOperation } from '@fluidframework/map';
22
+ import { IDirectoryCreateSubDirectoryOperation } from '@fluidframework/map';
23
+ import { IDirectoryDataObject } from '@fluidframework/map';
24
+ import { IDirectoryDeleteOperation } from '@fluidframework/map';
25
+ import { IDirectoryDeleteSubDirectoryOperation } from '@fluidframework/map';
26
+ import { IDirectoryEvents } from '@fluidframework/map';
27
+ import { IDirectoryKeyOperation } from '@fluidframework/map';
28
+ import { IDirectoryNewStorageFormat } from '@fluidframework/map';
29
+ import { IDirectoryOperation } from '@fluidframework/map';
30
+ import { IDirectorySetOperation } from '@fluidframework/map';
31
+ import { IDirectoryStorageOperation } from '@fluidframework/map';
32
+ import { IDirectorySubDirectoryOperation } from '@fluidframework/map';
33
+ import { IDirectoryValueChanged } from '@fluidframework/map';
34
+ import { IFluidContainer } from '@fluidframework/fluid-static';
35
+ import { IFluidContainerEvents } from '@fluidframework/fluid-static';
36
+ import { IInterval } from '@fluidframework/sequence';
37
+ import { IIntervalCollection } from '@fluidframework/sequence';
38
+ import { IIntervalCollectionEvent } from '@fluidframework/sequence';
39
+ import { IIntervalHelpers } from '@fluidframework/sequence';
40
+ import { IJSONRunSegment } from '@fluidframework/sequence';
41
+ import { ILocalValue } from '@fluidframework/map';
42
+ import { IMapMessageLocalMetadata } from '@fluidframework/sequence';
43
+ import { IMember } from '@fluidframework/fluid-static';
44
+ import { Interval } from '@fluidframework/sequence';
45
+ import { IntervalLocator } from '@fluidframework/sequence';
46
+ import { intervalLocatorFromEndpoint } from '@fluidframework/sequence';
47
+ import { IntervalType } from '@fluidframework/sequence';
48
+ import { IRootDataObject } from '@fluidframework/fluid-static';
49
+ import { ISequenceDeltaRange } from '@fluidframework/sequence';
50
+ import { ISerializableInterval } from '@fluidframework/sequence';
51
+ import { ISerializableValue } from '@fluidframework/map';
52
+ import { ISerializedInterval } from '@fluidframework/sequence';
53
+ import { ISerializedValue } from '@fluidframework/map';
54
+ import { IServiceAudience } from '@fluidframework/fluid-static';
55
+ import { IServiceAudienceEvents } from '@fluidframework/fluid-static';
56
+ import { ISharedDirectory } from '@fluidframework/map';
57
+ import { ISharedDirectoryEvents } from '@fluidframework/map';
58
+ import { ISharedIntervalCollection } from '@fluidframework/sequence';
59
+ import { ISharedMap } from '@fluidframework/map';
60
+ import { ISharedMapEvents } from '@fluidframework/map';
61
+ import { ISharedSegmentSequenceEvents } from '@fluidframework/sequence';
62
+ import { ISharedString } from '@fluidframework/sequence';
63
+ import { IValueChanged } from '@fluidframework/map';
64
+ import { IValueOpEmitter } from '@fluidframework/sequence';
65
+ import { LoadableObjectClass } from '@fluidframework/fluid-static';
66
+ import { LoadableObjectClassRecord } from '@fluidframework/fluid-static';
67
+ import { LoadableObjectCtor } from '@fluidframework/fluid-static';
68
+ import { LoadableObjectRecord } from '@fluidframework/fluid-static';
69
+ import { LocalValueMaker } from '@fluidframework/map';
70
+ import { MapFactory } from '@fluidframework/map';
71
+ import { MemberChangedListener } from '@fluidframework/fluid-static';
72
+ import { SequenceDeltaEvent } from '@fluidframework/sequence';
73
+ import { SequenceEvent } from '@fluidframework/sequence';
74
+ import { SequenceInterval } from '@fluidframework/sequence';
75
+ import { SequenceMaintenanceEvent } from '@fluidframework/sequence';
76
+ import { SerializedIntervalDelta } from '@fluidframework/sequence';
77
+ import { SharedDirectory } from '@fluidframework/map';
78
+ import { SharedIntervalCollection } from '@fluidframework/sequence';
79
+ import { SharedIntervalCollectionFactory } from '@fluidframework/sequence';
80
+ import { SharedMap } from '@fluidframework/map';
81
+ import { SharedObjectClass } from '@fluidframework/fluid-static';
82
+ import { SharedSegmentSequence } from '@fluidframework/sequence';
83
+ import { SharedSequence } from '@fluidframework/sequence';
84
+ import { SharedString } from '@fluidframework/sequence';
85
+ import { SharedStringFactory } from '@fluidframework/sequence';
86
+ import { SharedStringSegment } from '@fluidframework/sequence';
87
+ import { SubSequence } from '@fluidframework/sequence';
88
+
89
+ /* Excluded from this release type: AttachState */
90
+
91
+ /* Excluded from this release type: ConnectionState */
92
+
93
+ /* Excluded from this release type: ContainerErrorType */
94
+
95
+ /* Excluded from this release type: ContainerSchema */
96
+
97
+ /* Excluded from this release type: DataObjectClass */
98
+
99
+ /* Excluded from this release type: DeserializeCallback */
100
+
101
+ /* Excluded from this release type: DirectoryFactory */
102
+
103
+ /* Excluded from this release type: DriverErrorType */
104
+
105
+ /* Excluded from this release type: getTextAndMarkers */
106
+
107
+ /* Excluded from this release type: IConnection */
108
+
109
+ /* Excluded from this release type: ICriticalContainerError */
110
+
111
+ /* Excluded from this release type: IDirectory */
112
+
113
+ /* Excluded from this release type: IDirectoryClearOperation */
114
+
115
+ /* Excluded from this release type: IDirectoryCreateSubDirectoryOperation */
116
+
117
+ /* Excluded from this release type: IDirectoryDataObject */
118
+
119
+ /* Excluded from this release type: IDirectoryDeleteOperation */
120
+
121
+ /* Excluded from this release type: IDirectoryDeleteSubDirectoryOperation */
122
+
123
+ /* Excluded from this release type: IDirectoryEvents */
124
+
125
+ /* Excluded from this release type: IDirectoryKeyOperation */
126
+
127
+ /* Excluded from this release type: IDirectoryNewStorageFormat */
128
+
129
+ /* Excluded from this release type: IDirectoryOperation */
130
+
131
+ /* Excluded from this release type: IDirectorySetOperation */
132
+
133
+ /* Excluded from this release type: IDirectoryStorageOperation */
134
+
135
+ /* Excluded from this release type: IDirectorySubDirectoryOperation */
136
+
137
+ /* Excluded from this release type: IDirectoryValueChanged */
138
+
139
+ /* Excluded from this release type: IFluidContainer */
140
+
141
+ /* Excluded from this release type: IFluidContainerEvents */
142
+
143
+ /* Excluded from this release type: IInterval */
144
+
145
+ /* Excluded from this release type: IIntervalCollection */
146
+
147
+ /* Excluded from this release type: IIntervalCollectionEvent */
148
+
149
+ /* Excluded from this release type: IIntervalHelpers */
150
+
151
+ /* Excluded from this release type: IJSONRunSegment */
152
+
153
+ /* Excluded from this release type: ILocalValue */
154
+
155
+ /* Excluded from this release type: IMapMessageLocalMetadata */
156
+
157
+ /* Excluded from this release type: IMember */
158
+
159
+ /* Excluded from this release type: Interval */
160
+
161
+ /* Excluded from this release type: IntervalLocator */
162
+
163
+ /* Excluded from this release type: intervalLocatorFromEndpoint */
164
+
165
+ /* Excluded from this release type: IntervalType */
166
+
167
+ /* Excluded from this release type: IRootDataObject */
168
+
169
+ /* Excluded from this release type: ISequenceDeltaRange */
170
+
171
+ /* Excluded from this release type: ISerializableInterval */
172
+
173
+ /* Excluded from this release type: ISerializableValue */
174
+
175
+ /* Excluded from this release type: ISerializedInterval */
176
+
177
+ /* Excluded from this release type: ISerializedValue */
178
+
179
+ /* Excluded from this release type: IServiceAudience */
180
+
181
+ /* Excluded from this release type: IServiceAudienceEvents */
182
+
183
+ /* Excluded from this release type: ISharedDirectory */
184
+
185
+ /* Excluded from this release type: ISharedDirectoryEvents */
186
+
187
+ /* Excluded from this release type: ISharedIntervalCollection */
188
+
189
+ /* Excluded from this release type: ISharedMap */
190
+
191
+ /* Excluded from this release type: ISharedMapEvents */
192
+
193
+ /* Excluded from this release type: ISharedSegmentSequenceEvents */
194
+
195
+ /* Excluded from this release type: ISharedString */
196
+
197
+ /* Excluded from this release type: IValueChanged */
198
+
199
+ /* Excluded from this release type: IValueOpEmitter */
200
+
201
+ /* Excluded from this release type: LoadableObjectClass */
202
+
203
+ /* Excluded from this release type: LoadableObjectClassRecord */
204
+
205
+ /* Excluded from this release type: LoadableObjectCtor */
206
+
207
+ /* Excluded from this release type: LoadableObjectRecord */
208
+
209
+ /* Excluded from this release type: LocalValueMaker */
210
+
211
+ /* Excluded from this release type: MapFactory */
212
+
213
+ /* Excluded from this release type: MemberChangedListener */
214
+
215
+ /* Excluded from this release type: SequenceDeltaEvent */
216
+
217
+ /* Excluded from this release type: SequenceEvent */
218
+
219
+ /* Excluded from this release type: SequenceInterval */
220
+
221
+ /* Excluded from this release type: SequenceMaintenanceEvent */
222
+
223
+ /* Excluded from this release type: SerializedIntervalDelta */
224
+
225
+ /* Excluded from this release type: SharedDirectory */
226
+
227
+ /* Excluded from this release type: SharedIntervalCollection */
228
+
229
+ /* Excluded from this release type: SharedIntervalCollectionFactory */
230
+
231
+ /* Excluded from this release type: SharedMap */
232
+
233
+ /* Excluded from this release type: SharedObjectClass */
234
+
235
+ /* Excluded from this release type: SharedSegmentSequence */
236
+
237
+ /* Excluded from this release type: SharedSequence */
238
+
239
+ /* Excluded from this release type: SharedString */
240
+
241
+ /* Excluded from this release type: SharedStringFactory */
242
+
243
+ /* Excluded from this release type: SharedStringSegment */
244
+
245
+ /* Excluded from this release type: SubSequence */
246
+
247
+ export { }