@fluidframework/fluid-static 2.0.0-dev.2.3.0.115467 → 2.0.0-dev.3.1.0.125672

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