@fluidframework/fluid-static 2.0.0-internal.3.0.5 → 2.0.0-internal.3.1.1

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.
Files changed (45) hide show
  1. package/.eslintrc.js +8 -10
  2. package/.mocharc.js +2 -2
  3. package/CHANGELOG.md +48 -51
  4. package/api-extractor.json +2 -2
  5. package/dist/fluidContainer.d.ts.map +1 -1
  6. package/dist/fluidContainer.js.map +1 -1
  7. package/dist/index.d.ts +1 -1
  8. package/dist/index.d.ts.map +1 -1
  9. package/dist/index.js.map +1 -1
  10. package/dist/rootDataObject.d.ts.map +1 -1
  11. package/dist/rootDataObject.js +3 -1
  12. package/dist/rootDataObject.js.map +1 -1
  13. package/dist/serviceAudience.d.ts.map +1 -1
  14. package/dist/serviceAudience.js.map +1 -1
  15. package/dist/types.d.ts.map +1 -1
  16. package/dist/types.js.map +1 -1
  17. package/dist/utils.d.ts.map +1 -1
  18. package/dist/utils.js +1 -4
  19. package/dist/utils.js.map +1 -1
  20. package/lib/fluidContainer.d.ts.map +1 -1
  21. package/lib/fluidContainer.js.map +1 -1
  22. package/lib/index.d.ts +1 -1
  23. package/lib/index.d.ts.map +1 -1
  24. package/lib/index.js +1 -1
  25. package/lib/index.js.map +1 -1
  26. package/lib/rootDataObject.d.ts.map +1 -1
  27. package/lib/rootDataObject.js +3 -1
  28. package/lib/rootDataObject.js.map +1 -1
  29. package/lib/serviceAudience.d.ts.map +1 -1
  30. package/lib/serviceAudience.js.map +1 -1
  31. package/lib/types.d.ts.map +1 -1
  32. package/lib/types.js.map +1 -1
  33. package/lib/utils.d.ts.map +1 -1
  34. package/lib/utils.js +1 -4
  35. package/lib/utils.js.map +1 -1
  36. package/package.json +105 -104
  37. package/prettier.config.cjs +1 -1
  38. package/src/fluidContainer.ts +264 -260
  39. package/src/index.ts +6 -2
  40. package/src/rootDataObject.ts +152 -148
  41. package/src/serviceAudience.ts +137 -134
  42. package/src/types.ts +105 -101
  43. package/src/utils.ts +30 -42
  44. package/tsconfig.esnext.json +5 -5
  45. package/tsconfig.json +10 -16
@@ -6,10 +6,10 @@ import { TypedEventEmitter } from "@fluidframework/common-utils";
6
6
  import { IFluidLoadable } from "@fluidframework/core-interfaces";
7
7
  import { IEvent, IEventProvider } from "@fluidframework/common-definitions";
8
8
  import {
9
- AttachState,
10
- IContainer,
11
- ICriticalContainerError,
12
- ConnectionState,
9
+ AttachState,
10
+ IContainer,
11
+ ICriticalContainerError,
12
+ ConnectionState,
13
13
  } from "@fluidframework/container-definitions";
14
14
  import type { IRootDataObject, LoadableObjectClass, LoadableObjectRecord } from "./types";
15
15
 
@@ -17,59 +17,59 @@ import type { IRootDataObject, LoadableObjectClass, LoadableObjectRecord } from
17
17
  * Events emitted from {@link IFluidContainer}.
18
18
  */
19
19
  export interface IFluidContainerEvents extends IEvent {
20
- /**
21
- * Emitted when the {@link IFluidContainer} completes connecting to the Fluid service.
22
- *
23
- * @remarks Reflects connection state changes against the (delta) service acknowledging ops/edits.
24
- *
25
- * @see
26
- *
27
- * - {@link IFluidContainer.connectionState}
28
- *
29
- * - {@link IFluidContainer.connect}
30
- */
31
- (event: "connected", listener: () => void): void;
20
+ /**
21
+ * Emitted when the {@link IFluidContainer} completes connecting to the Fluid service.
22
+ *
23
+ * @remarks Reflects connection state changes against the (delta) service acknowledging ops/edits.
24
+ *
25
+ * @see
26
+ *
27
+ * - {@link IFluidContainer.connectionState}
28
+ *
29
+ * - {@link IFluidContainer.connect}
30
+ */
31
+ (event: "connected", listener: () => void): void;
32
32
 
33
- /**
34
- * Emitted when the {@link IFluidContainer} becomes disconnected from the Fluid service.
35
- *
36
- * @remarks Reflects connection state changes against the (delta) service acknowledging ops/edits.
37
- *
38
- * @see
39
- *
40
- * - {@link IFluidContainer.connectionState}
41
- *
42
- * - {@link IFluidContainer.disconnect}
43
- */
44
- (event: "disconnected", listener: () => void): void;
33
+ /**
34
+ * Emitted when the {@link IFluidContainer} becomes disconnected from the Fluid service.
35
+ *
36
+ * @remarks Reflects connection state changes against the (delta) service acknowledging ops/edits.
37
+ *
38
+ * @see
39
+ *
40
+ * - {@link IFluidContainer.connectionState}
41
+ *
42
+ * - {@link IFluidContainer.disconnect}
43
+ */
44
+ (event: "disconnected", listener: () => void): void;
45
45
 
46
- /**
47
- * Emitted when all local changes/edits have been acknowledged by the service.
48
- *
49
- * @remarks "dirty" event will be emitted when the next local change has been made.
50
- *
51
- * @see {@link IFluidContainer.isDirty}
52
- */
53
- (event: "saved", listener: () => void): void;
46
+ /**
47
+ * Emitted when all local changes/edits have been acknowledged by the service.
48
+ *
49
+ * @remarks "dirty" event will be emitted when the next local change has been made.
50
+ *
51
+ * @see {@link IFluidContainer.isDirty}
52
+ */
53
+ (event: "saved", listener: () => void): void;
54
54
 
55
- /**
56
- * Emitted when the first local change has been made, following a "saved" event.
57
- *
58
- * @remarks "saved" event will be emitted once all local changes have been acknowledged by the service.
59
- *
60
- * @see {@link IFluidContainer.isDirty}
61
- */
62
- (event: "dirty", listener: () => void): void;
55
+ /**
56
+ * Emitted when the first local change has been made, following a "saved" event.
57
+ *
58
+ * @remarks "saved" event will be emitted once all local changes have been acknowledged by the service.
59
+ *
60
+ * @see {@link IFluidContainer.isDirty}
61
+ */
62
+ (event: "dirty", listener: () => void): void;
63
63
 
64
- /**
65
- * Emitted when the {@link IFluidContainer} is closed, which permanently disables it.
66
- *
67
- * @remarks Listener parameters:
68
- *
69
- * - `error`: If the container was closed due to error (as opposed to an explicit call to
70
- * {@link IFluidContainer.dispose}), this will contain details about the error that caused it.
71
- */
72
- (event: "disposed", listener: (error?: ICriticalContainerError) => void);
64
+ /**
65
+ * Emitted when the {@link IFluidContainer} is closed, which permanently disables it.
66
+ *
67
+ * @remarks Listener parameters:
68
+ *
69
+ * - `error`: If the container was closed due to error (as opposed to an explicit call to
70
+ * {@link IFluidContainer.dispose}), this will contain details about the error that caused it.
71
+ */
72
+ (event: "disposed", listener: (error?: ICriticalContainerError) => void);
73
73
  }
74
74
 
75
75
  /**
@@ -79,115 +79,115 @@ export interface IFluidContainerEvents extends IEvent {
79
79
  * @remarks Note: external implementations of this interface are not supported.
80
80
  */
81
81
  export interface IFluidContainer extends IEventProvider<IFluidContainerEvents> {
82
- /**
83
- * Provides the current connected state of the container
84
- */
85
- readonly connectionState: ConnectionState;
82
+ /**
83
+ * Provides the current connected state of the container
84
+ */
85
+ readonly connectionState: ConnectionState;
86
86
 
87
- /**
88
- * A container is considered **dirty** if it has local changes that have not yet been acknowledged by the service.
89
- *
90
- * @remarks
91
- *
92
- * You should always check the `isDirty` flag before closing the container or navigating away from the page.
93
- * Closing the container while `isDirty === true` may result in the loss of operations that have not yet been
94
- * acknowledged by the service.
95
- *
96
- * A container is considered dirty in the following cases:
97
- *
98
- * 1. The container has been created in the detached state, and either it has not been attached yet or it is
99
- * in the process of being attached (container is in `attaching` state). If container is closed prior to being
100
- * attached, host may never know if the file was created or not.
101
- *
102
- * 2. The container was attached, but it has local changes that have not yet been saved to service endpoint.
103
- * This occurs as part of normal op flow where pending operation (changes) are awaiting acknowledgement from the
104
- * service. In some cases this can be due to lack of network connection. If the network connection is down,
105
- * it needs to be restored for the pending changes to be acknowledged.
106
- */
107
- readonly isDirty: boolean;
87
+ /**
88
+ * A container is considered **dirty** if it has local changes that have not yet been acknowledged by the service.
89
+ *
90
+ * @remarks
91
+ *
92
+ * You should always check the `isDirty` flag before closing the container or navigating away from the page.
93
+ * Closing the container while `isDirty === true` may result in the loss of operations that have not yet been
94
+ * acknowledged by the service.
95
+ *
96
+ * A container is considered dirty in the following cases:
97
+ *
98
+ * 1. The container has been created in the detached state, and either it has not been attached yet or it is
99
+ * in the process of being attached (container is in `attaching` state). If container is closed prior to being
100
+ * attached, host may never know if the file was created or not.
101
+ *
102
+ * 2. The container was attached, but it has local changes that have not yet been saved to service endpoint.
103
+ * This occurs as part of normal op flow where pending operation (changes) are awaiting acknowledgement from the
104
+ * service. In some cases this can be due to lack of network connection. If the network connection is down,
105
+ * it needs to be restored for the pending changes to be acknowledged.
106
+ */
107
+ readonly isDirty: boolean;
108
108
 
109
- /**
110
- * Whether or not the container is disposed, which permanently disables it.
111
- */
112
- readonly disposed: boolean;
109
+ /**
110
+ * Whether or not the container is disposed, which permanently disables it.
111
+ */
112
+ readonly disposed: boolean;
113
113
 
114
- /**
115
- * The collection of data objects and Distributed Data Stores (DDSes) that were specified by the schema.
116
- *
117
- * @remarks These data objects and DDSes exist for the lifetime of the container.
118
- */
119
- readonly initialObjects: LoadableObjectRecord;
114
+ /**
115
+ * The collection of data objects and Distributed Data Stores (DDSes) that were specified by the schema.
116
+ *
117
+ * @remarks These data objects and DDSes exist for the lifetime of the container.
118
+ */
119
+ readonly initialObjects: LoadableObjectRecord;
120
120
 
121
- /**
122
- * The current attachment state of the container.
123
- *
124
- * @remarks
125
- *
126
- * Once a container has been attached, it remains attached.
127
- * When loading an existing container, it will already be attached.
128
- */
129
- readonly attachState: AttachState;
121
+ /**
122
+ * The current attachment state of the container.
123
+ *
124
+ * @remarks
125
+ *
126
+ * Once a container has been attached, it remains attached.
127
+ * When loading an existing container, it will already be attached.
128
+ */
129
+ readonly attachState: AttachState;
130
130
 
131
- /**
132
- * A newly created container starts detached from the collaborative service.
133
- * Calling `attach()` uploads the new container to the service and connects to the collaborative service.
134
- *
135
- * @remarks
136
- *
137
- * This should only be called when the container is in the
138
- * {@link @fluidframework/container-definitions#AttachState.Detatched} state.
139
- *
140
- * This can be determined by observing {@link IFluidContainer.attachState}.
141
- *
142
- * @returns A promise which resolves when the attach is complete, with the string identifier of the container.
143
- */
144
- attach(): Promise<string>;
131
+ /**
132
+ * A newly created container starts detached from the collaborative service.
133
+ * Calling `attach()` uploads the new container to the service and connects to the collaborative service.
134
+ *
135
+ * @remarks
136
+ *
137
+ * This should only be called when the container is in the
138
+ * {@link @fluidframework/container-definitions#AttachState.Detatched} state.
139
+ *
140
+ * This can be determined by observing {@link IFluidContainer.attachState}.
141
+ *
142
+ * @returns A promise which resolves when the attach is complete, with the string identifier of the container.
143
+ */
144
+ attach(): Promise<string>;
145
145
 
146
- /**
147
- * Attempts to connect the container to the delta stream and process operations.
148
- *
149
- * @throws Will throw an error if connection is unsuccessful.
150
- *
151
- * @remarks
152
- *
153
- * This should only be called when the container is in the
154
- * {@link @fluidframework/container-definitions#ConnectionState.Disconnected} state.
155
- *
156
- * This can be determined by observing {@link IFluidContainer.connectionState}.
157
- */
158
- connect(): void;
146
+ /**
147
+ * Attempts to connect the container to the delta stream and process operations.
148
+ *
149
+ * @throws Will throw an error if connection is unsuccessful.
150
+ *
151
+ * @remarks
152
+ *
153
+ * This should only be called when the container is in the
154
+ * {@link @fluidframework/container-definitions#ConnectionState.Disconnected} state.
155
+ *
156
+ * This can be determined by observing {@link IFluidContainer.connectionState}.
157
+ */
158
+ connect(): void;
159
159
 
160
- /**
161
- * Disconnects the container from the delta stream and stops processing operations.
162
- *
163
- * @remarks
164
- *
165
- * This should only be called when the container is in the
166
- * {@link @fluidframework/container-definitions#ConnectionState.Connected} state.
167
- *
168
- * This can be determined by observing {@link IFluidContainer.connectionState}.
169
- */
170
- disconnect(): void;
160
+ /**
161
+ * Disconnects the container from the delta stream and stops processing operations.
162
+ *
163
+ * @remarks
164
+ *
165
+ * This should only be called when the container is in the
166
+ * {@link @fluidframework/container-definitions#ConnectionState.Connected} state.
167
+ *
168
+ * This can be determined by observing {@link IFluidContainer.connectionState}.
169
+ */
170
+ disconnect(): void;
171
171
 
172
- /**
173
- * Create a new data object or Distributed Data Store (DDS) of the specified type.
174
- *
175
- * @remarks
176
- *
177
- * In order to share the data object or DDS with other
178
- * collaborators and retrieve it later, store its handle in a collection like a SharedDirectory from your
179
- * initialObjects.
180
- *
181
- * @param objectClass - The class of the `DataObject` or `SharedObject` to create.
182
- *
183
- * @typeParam T - The class of the `DataObject` or `SharedObject`.
184
- */
185
- create<T extends IFluidLoadable>(objectClass: LoadableObjectClass<T>): Promise<T>;
172
+ /**
173
+ * Create a new data object or Distributed Data Store (DDS) of the specified type.
174
+ *
175
+ * @remarks
176
+ *
177
+ * In order to share the data object or DDS with other
178
+ * collaborators and retrieve it later, store its handle in a collection like a SharedDirectory from your
179
+ * initialObjects.
180
+ *
181
+ * @param objectClass - The class of the `DataObject` or `SharedObject` to create.
182
+ *
183
+ * @typeParam T - The class of the `DataObject` or `SharedObject`.
184
+ */
185
+ create<T extends IFluidLoadable>(objectClass: LoadableObjectClass<T>): Promise<T>;
186
186
 
187
- /**
188
- * Dispose of the container instance, permanently disabling it.
189
- */
190
- dispose(): void;
187
+ /**
188
+ * Dispose of the container instance, permanently disabling it.
189
+ */
190
+ dispose(): void;
191
191
  }
192
192
 
193
193
  /**
@@ -198,123 +198,127 @@ export interface IFluidContainer extends IEventProvider<IFluidContainerEvents> {
198
198
  * Note: this implementation is not complete. Consumers who rely on {@link IFluidContainer.attach}
199
199
  * will need to utilize or provide a service-specific implementation of this type that implements that method.
200
200
  */
201
- export class FluidContainer extends TypedEventEmitter<IFluidContainerEvents> implements IFluidContainer {
202
- private readonly connectedHandler = () => this.emit("connected");
203
- private readonly disconnectedHandler = () => this.emit("disconnected");
204
- private readonly disposedHandler = (error?: ICriticalContainerError) => this.emit("disposed", error);
205
- private readonly savedHandler = () => this.emit("saved");
206
- private readonly dirtyHandler = () => this.emit("dirty");
201
+ export class FluidContainer
202
+ extends TypedEventEmitter<IFluidContainerEvents>
203
+ implements IFluidContainer
204
+ {
205
+ private readonly connectedHandler = () => this.emit("connected");
206
+ private readonly disconnectedHandler = () => this.emit("disconnected");
207
+ private readonly disposedHandler = (error?: ICriticalContainerError) =>
208
+ this.emit("disposed", error);
209
+ private readonly savedHandler = () => this.emit("saved");
210
+ private readonly dirtyHandler = () => this.emit("dirty");
207
211
 
208
- public constructor(
209
- private readonly container: IContainer,
210
- private readonly rootDataObject: IRootDataObject,
211
- ) {
212
- super();
213
- container.on("connected", this.connectedHandler);
214
- container.on("closed", this.disposedHandler);
215
- container.on("disconnected", this.disconnectedHandler);
216
- container.on("saved", this.savedHandler);
217
- container.on("dirty", this.dirtyHandler);
218
- }
212
+ public constructor(
213
+ private readonly container: IContainer,
214
+ private readonly rootDataObject: IRootDataObject,
215
+ ) {
216
+ super();
217
+ container.on("connected", this.connectedHandler);
218
+ container.on("closed", this.disposedHandler);
219
+ container.on("disconnected", this.disconnectedHandler);
220
+ container.on("saved", this.savedHandler);
221
+ container.on("dirty", this.dirtyHandler);
222
+ }
219
223
 
220
- /**
221
- * {@inheritDoc IFluidContainer.isDirty}
222
- */
223
- public get isDirty(): boolean {
224
- return this.container.isDirty;
225
- }
224
+ /**
225
+ * {@inheritDoc IFluidContainer.isDirty}
226
+ */
227
+ public get isDirty(): boolean {
228
+ return this.container.isDirty;
229
+ }
226
230
 
227
- /**
228
- * {@inheritDoc IFluidContainer.attachState}
229
- */
230
- public get attachState(): AttachState {
231
- return this.container.attachState;
232
- }
231
+ /**
232
+ * {@inheritDoc IFluidContainer.attachState}
233
+ */
234
+ public get attachState(): AttachState {
235
+ return this.container.attachState;
236
+ }
233
237
 
234
- /**
235
- * {@inheritDoc IFluidContainer.disposed}
236
- */
237
- public get disposed() {
238
- return this.container.closed;
239
- }
238
+ /**
239
+ * {@inheritDoc IFluidContainer.disposed}
240
+ */
241
+ public get disposed() {
242
+ return this.container.closed;
243
+ }
240
244
 
241
- /**
242
- * {@inheritDoc IFluidContainer.connectionState}
243
- */
244
- public get connectionState(): ConnectionState {
245
- return this.container.connectionState;
246
- }
245
+ /**
246
+ * {@inheritDoc IFluidContainer.connectionState}
247
+ */
248
+ public get connectionState(): ConnectionState {
249
+ return this.container.connectionState;
250
+ }
247
251
 
248
- /**
249
- * {@inheritDoc IFluidContainer.initialObjects}
250
- */
251
- public get initialObjects() {
252
- return this.rootDataObject.initialObjects;
253
- }
252
+ /**
253
+ * {@inheritDoc IFluidContainer.initialObjects}
254
+ */
255
+ public get initialObjects() {
256
+ return this.rootDataObject.initialObjects;
257
+ }
254
258
 
255
- /**
256
- * Incomplete base implementation of {@link IFluidContainer.attach}.
257
- *
258
- * @remarks
259
- *
260
- * Note: this implementation will unconditionally throw.
261
- * Consumers who rely on this will need to utilize or provide a service specific implementation of this base type
262
- * that provides an implementation of this method.
263
- *
264
- * The reason is because externally we are presenting a separation between the service and the `FluidContainer`,
265
- * but internally this separation is not there.
266
- */
267
- public async attach(): Promise<string> {
268
- if (this.container.attachState !== AttachState.Detached) {
269
- throw new Error("Cannot attach container. Container is not in detached state.");
270
- }
271
- throw new Error("Cannot attach container. Attach method not provided.");
272
- }
259
+ /**
260
+ * Incomplete base implementation of {@link IFluidContainer.attach}.
261
+ *
262
+ * @remarks
263
+ *
264
+ * Note: this implementation will unconditionally throw.
265
+ * Consumers who rely on this will need to utilize or provide a service specific implementation of this base type
266
+ * that provides an implementation of this method.
267
+ *
268
+ * The reason is because externally we are presenting a separation between the service and the `FluidContainer`,
269
+ * but internally this separation is not there.
270
+ */
271
+ public async attach(): Promise<string> {
272
+ if (this.container.attachState !== AttachState.Detached) {
273
+ throw new Error("Cannot attach container. Container is not in detached state.");
274
+ }
275
+ throw new Error("Cannot attach container. Attach method not provided.");
276
+ }
273
277
 
274
- /**
275
- * {@inheritDoc IFluidContainer.connect}
276
- */
277
- public async connect(): Promise<void> {
278
- this.container.connect?.();
279
- }
278
+ /**
279
+ * {@inheritDoc IFluidContainer.connect}
280
+ */
281
+ public async connect(): Promise<void> {
282
+ this.container.connect?.();
283
+ }
280
284
 
281
- /**
282
- * {@inheritDoc IFluidContainer.connect}
283
- */
284
- public async disconnect(): Promise<void> {
285
- this.container.disconnect?.();
286
- }
285
+ /**
286
+ * {@inheritDoc IFluidContainer.connect}
287
+ */
288
+ public async disconnect(): Promise<void> {
289
+ this.container.disconnect?.();
290
+ }
287
291
 
288
- /**
289
- * {@inheritDoc IFluidContainer.create}
290
- */
291
- public async create<T extends IFluidLoadable>(objectClass: LoadableObjectClass<T>): Promise<T> {
292
- return this.rootDataObject.create(objectClass);
293
- }
292
+ /**
293
+ * {@inheritDoc IFluidContainer.create}
294
+ */
295
+ public async create<T extends IFluidLoadable>(objectClass: LoadableObjectClass<T>): Promise<T> {
296
+ return this.rootDataObject.create(objectClass);
297
+ }
294
298
 
295
- /**
296
- * {@inheritDoc IFluidContainer.dispose}
297
- */
298
- public dispose() {
299
- this.container.close();
300
- this.container.off("connected", this.connectedHandler);
301
- this.container.off("closed", this.disposedHandler);
302
- this.container.off("disconnected", this.disconnectedHandler);
303
- this.container.off("saved", this.savedHandler);
304
- this.container.off("dirty", this.dirtyHandler);
305
- }
299
+ /**
300
+ * {@inheritDoc IFluidContainer.dispose}
301
+ */
302
+ public dispose() {
303
+ this.container.close();
304
+ this.container.off("connected", this.connectedHandler);
305
+ this.container.off("closed", this.disposedHandler);
306
+ this.container.off("disconnected", this.disconnectedHandler);
307
+ this.container.off("saved", this.savedHandler);
308
+ this.container.off("dirty", this.dirtyHandler);
309
+ }
306
310
 
307
- /**
308
- * FOR INTERNAL USE ONLY. NOT FOR EXTERNAL USE.
309
- * We make no stability guarantees here whatsoever.
310
- *
311
- * Gets the underlying {@link @fluidframework/container-definitions#IContainer}.
312
- *
313
- * @remarks Used to power debug tooling.
314
- *
315
- * @internal
316
- */
317
- public readonly INTERNAL_CONTAINER_DO_NOT_USE?: () => IContainer = () => {
318
- return this.container;
319
- }
311
+ /**
312
+ * FOR INTERNAL USE ONLY. NOT FOR EXTERNAL USE.
313
+ * We make no stability guarantees here whatsoever.
314
+ *
315
+ * Gets the underlying {@link @fluidframework/container-definitions#IContainer}.
316
+ *
317
+ * @remarks Used to power debug tooling.
318
+ *
319
+ * @internal
320
+ */
321
+ public readonly INTERNAL_CONTAINER_DO_NOT_USE?: () => IContainer = () => {
322
+ return this.container;
323
+ };
320
324
  }
package/src/index.ts CHANGED
@@ -10,7 +10,11 @@
10
10
  */
11
11
 
12
12
  export { FluidContainer, IFluidContainer, IFluidContainerEvents } from "./fluidContainer";
13
- export { DOProviderContainerRuntimeFactory, RootDataObject, RootDataObjectProps } from "./rootDataObject";
13
+ export {
14
+ DOProviderContainerRuntimeFactory,
15
+ RootDataObject,
16
+ RootDataObjectProps,
17
+ } from "./rootDataObject";
14
18
  export { ServiceAudience } from "./serviceAudience";
15
19
  export {
16
20
  ContainerSchema,
@@ -26,5 +30,5 @@ export {
26
30
  LoadableObjectRecord,
27
31
  MemberChangedListener,
28
32
  SharedObjectClass,
29
- Myself,
33
+ Myself,
30
34
  } from "./types";