@fluidframework/fluid-static 2.0.0-dev.2.2.0.111723 → 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 (49) 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 +19 -5
  6. package/dist/fluidContainer.d.ts.map +1 -1
  7. package/dist/fluidContainer.js +13 -0
  8. package/dist/fluidContainer.js.map +1 -1
  9. package/dist/index.d.ts +1 -1
  10. package/dist/index.d.ts.map +1 -1
  11. package/dist/index.js.map +1 -1
  12. package/dist/rootDataObject.d.ts.map +1 -1
  13. package/dist/rootDataObject.js +3 -1
  14. package/dist/rootDataObject.js.map +1 -1
  15. package/dist/serviceAudience.d.ts.map +1 -1
  16. package/dist/serviceAudience.js.map +1 -1
  17. package/dist/types.d.ts.map +1 -1
  18. package/dist/types.js.map +1 -1
  19. package/dist/utils.d.ts.map +1 -1
  20. package/dist/utils.js +1 -4
  21. package/dist/utils.js.map +1 -1
  22. package/lib/fluidContainer.d.ts +19 -5
  23. package/lib/fluidContainer.d.ts.map +1 -1
  24. package/lib/fluidContainer.js +13 -0
  25. package/lib/fluidContainer.js.map +1 -1
  26. package/lib/index.d.ts +1 -1
  27. package/lib/index.d.ts.map +1 -1
  28. package/lib/index.js +1 -1
  29. package/lib/index.js.map +1 -1
  30. package/lib/rootDataObject.d.ts.map +1 -1
  31. package/lib/rootDataObject.js +3 -1
  32. package/lib/rootDataObject.js.map +1 -1
  33. package/lib/serviceAudience.d.ts.map +1 -1
  34. package/lib/serviceAudience.js.map +1 -1
  35. package/lib/types.d.ts.map +1 -1
  36. package/lib/types.js.map +1 -1
  37. package/lib/utils.d.ts.map +1 -1
  38. package/lib/utils.js +1 -4
  39. package/lib/utils.js.map +1 -1
  40. package/package.json +24 -23
  41. package/prettier.config.cjs +1 -1
  42. package/src/fluidContainer.ts +267 -248
  43. package/src/index.ts +6 -2
  44. package/src/rootDataObject.ts +152 -148
  45. package/src/serviceAudience.ts +137 -134
  46. package/src/types.ts +105 -103
  47. package/src/utils.ts +30 -42
  48. package/tsconfig.esnext.json +5 -5
  49. package/tsconfig.json +10 -16
@@ -6,187 +6,188 @@ 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.disconnect}
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
69
- *
70
- * If container was closed due to error (as opposed to an explicit call to
71
- * {@link IFluidContainer.dispose}), optional argument contains further details about the error.
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.
79
77
  * Provides access to the data as well as status on the collaboration session.
78
+ *
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
- * Will throw an error if unsuccessful.
149
- *
150
- * @remarks
151
- *
152
- * This should only be called when the container is in the
153
- * {@link @fluidframework/container-definitions#ConnectionState.Disconnected} state.
154
- *
155
- * This can be determined by observing {@link IFluidContainer.connectionState}.
156
- */
157
- 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;
158
159
 
159
- /**
160
- * Disconnects the container from the delta stream and stops processing operations.
161
- *
162
- * @remarks
163
- *
164
- * This should only be called when the container is in the
165
- * {@link @fluidframework/container-definitions#ConnectionState.Connected} state.
166
- *
167
- * This can be determined by observing {@link IFluidContainer.connectionState}.
168
- */
169
- 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;
170
171
 
171
- /**
172
- * Create a new data object or Distributed Data Store (DDS) of the specified type.
173
- *
174
- * @remarks
175
- *
176
- * In order to share the data object or DDS with other
177
- * collaborators and retrieve it later, store its handle in a collection like a SharedDirectory from your
178
- * initialObjects.
179
- *
180
- * @param objectClass - The class of the `DataObject` or `SharedObject` to create.
181
- *
182
- * @typeParam T - The class of the `DataObject` or `SharedObject`.
183
- */
184
- 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>;
185
186
 
186
- /**
187
- * Dispose of the container instance, permanently disabling it.
188
- */
189
- dispose(): void;
187
+ /**
188
+ * Dispose of the container instance, permanently disabling it.
189
+ */
190
+ dispose(): void;
190
191
  }
191
192
 
192
193
  /**
@@ -197,109 +198,127 @@ export interface IFluidContainer extends IEventProvider<IFluidContainerEvents> {
197
198
  * Note: this implementation is not complete. Consumers who rely on {@link IFluidContainer.attach}
198
199
  * will need to utilize or provide a service-specific implementation of this type that implements that method.
199
200
  */
200
- export class FluidContainer extends TypedEventEmitter<IFluidContainerEvents> implements IFluidContainer {
201
- private readonly connectedHandler = () => this.emit("connected");
202
- private readonly disconnectedHandler = () => this.emit("disconnected");
203
- private readonly disposedHandler = (error?: ICriticalContainerError) => this.emit("disposed", error);
204
- private readonly savedHandler = () => this.emit("saved");
205
- 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");
211
+
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
+ }
206
223
 
207
- public constructor(
208
- private readonly container: IContainer,
209
- private readonly rootDataObject: IRootDataObject,
210
- ) {
211
- super();
212
- container.on("connected", this.connectedHandler);
213
- container.on("closed", this.disposedHandler);
214
- container.on("disconnected", this.disconnectedHandler);
215
- container.on("saved", this.savedHandler);
216
- container.on("dirty", this.dirtyHandler);
217
- }
224
+ /**
225
+ * {@inheritDoc IFluidContainer.isDirty}
226
+ */
227
+ public get isDirty(): boolean {
228
+ return this.container.isDirty;
229
+ }
218
230
 
219
- /**
220
- * {@inheritDoc IFluidContainer.isDirty}
221
- */
222
- public get isDirty(): boolean {
223
- return this.container.isDirty;
224
- }
231
+ /**
232
+ * {@inheritDoc IFluidContainer.attachState}
233
+ */
234
+ public get attachState(): AttachState {
235
+ return this.container.attachState;
236
+ }
225
237
 
226
- /**
227
- * {@inheritDoc IFluidContainer.attachState}
228
- */
229
- public get attachState(): AttachState {
230
- return this.container.attachState;
231
- }
238
+ /**
239
+ * {@inheritDoc IFluidContainer.disposed}
240
+ */
241
+ public get disposed() {
242
+ return this.container.closed;
243
+ }
232
244
 
233
- /**
234
- * {@inheritDoc IFluidContainer.disposed}
235
- */
236
- public get disposed() {
237
- return this.container.closed;
238
- }
245
+ /**
246
+ * {@inheritDoc IFluidContainer.connectionState}
247
+ */
248
+ public get connectionState(): ConnectionState {
249
+ return this.container.connectionState;
250
+ }
239
251
 
240
- /**
241
- * {@inheritDoc IFluidContainer.connectionState}
242
- */
243
- public get connectionState(): ConnectionState {
244
- return this.container.connectionState;
245
- }
252
+ /**
253
+ * {@inheritDoc IFluidContainer.initialObjects}
254
+ */
255
+ public get initialObjects() {
256
+ return this.rootDataObject.initialObjects;
257
+ }
246
258
 
247
- /**
248
- * {@inheritDoc IFluidContainer.initialObjects}
249
- */
250
- public get initialObjects() {
251
- return this.rootDataObject.initialObjects;
252
- }
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
+ }
253
277
 
254
- /**
255
- * Incomplete base implementation of {@link IFluidContainer.attach}.
256
- *
257
- * @remarks
258
- *
259
- * Note: this implementation will unconditionally throw.
260
- * Consumers who rely on this will need to utilize or provide a service specific implementation of this base type
261
- * that provides an implementation of this method.
262
- *
263
- * The reason is because externally we are presenting a separation between the service and the `FluidContainer`,
264
- * but internally this separation is not there.
265
- */
266
- public async attach(): Promise<string> {
267
- if (this.container.attachState !== AttachState.Detached) {
268
- throw new Error("Cannot attach container. Container is not in detached state.");
269
- }
270
- throw new Error("Cannot attach container. Attach method not provided.");
271
- }
278
+ /**
279
+ * {@inheritDoc IFluidContainer.connect}
280
+ */
281
+ public async connect(): Promise<void> {
282
+ this.container.connect?.();
283
+ }
272
284
 
273
- /**
274
- * {@inheritDoc IFluidContainer.connect}
275
- */
276
- public async connect(): Promise<void> {
277
- this.container.connect?.();
278
- }
285
+ /**
286
+ * {@inheritDoc IFluidContainer.connect}
287
+ */
288
+ public async disconnect(): Promise<void> {
289
+ this.container.disconnect?.();
290
+ }
279
291
 
280
- /**
281
- * {@inheritDoc IFluidContainer.connect}
282
- */
283
- public async disconnect(): Promise<void> {
284
- this.container.disconnect?.();
285
- }
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
+ }
286
298
 
287
- /**
288
- * {@inheritDoc IFluidContainer.create}
289
- */
290
- public async create<T extends IFluidLoadable>(objectClass: LoadableObjectClass<T>): Promise<T> {
291
- return this.rootDataObject.create(objectClass);
292
- }
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
+ }
293
310
 
294
- /**
295
- * {@inheritDoc IFluidContainer.dispose}
296
- */
297
- public dispose() {
298
- this.container.close();
299
- this.container.off("connected", this.connectedHandler);
300
- this.container.off("closed", this.disposedHandler);
301
- this.container.off("disconnected", this.disconnectedHandler);
302
- this.container.off("saved", this.savedHandler);
303
- this.container.off("dirty", this.dirtyHandler);
304
- }
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
+ };
305
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";