@fluidframework/fluid-static 2.0.0-dev-rc.5.0.0.271045 → 2.0.0-dev-rc.5.0.0.271717
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/api-report/fluid-static.alpha.api.md +7 -7
- package/api-report/fluid-static.beta.api.md +7 -7
- package/api-report/fluid-static.public.api.md +7 -7
- package/dist/fluidContainer.d.ts +2 -2
- package/dist/fluidContainer.d.ts.map +1 -1
- package/dist/fluidContainer.js +16 -18
- package/dist/fluidContainer.js.map +1 -1
- package/dist/rootDataObject.d.ts +1 -1
- package/dist/rootDataObject.d.ts.map +1 -1
- package/dist/rootDataObject.js +5 -4
- package/dist/rootDataObject.js.map +1 -1
- package/dist/serviceAudience.d.ts +3 -3
- package/dist/serviceAudience.d.ts.map +1 -1
- package/dist/serviceAudience.js +18 -24
- package/dist/serviceAudience.js.map +1 -1
- package/dist/types.d.ts +3 -3
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/dist/utils.d.ts +4 -4
- package/dist/utils.d.ts.map +1 -1
- package/dist/utils.js.map +1 -1
- package/lib/fluidContainer.d.ts +2 -2
- package/lib/fluidContainer.d.ts.map +1 -1
- package/lib/fluidContainer.js +16 -18
- package/lib/fluidContainer.js.map +1 -1
- package/lib/rootDataObject.d.ts +1 -1
- package/lib/rootDataObject.d.ts.map +1 -1
- package/lib/rootDataObject.js +5 -4
- package/lib/rootDataObject.js.map +1 -1
- package/lib/serviceAudience.d.ts +3 -3
- package/lib/serviceAudience.d.ts.map +1 -1
- package/lib/serviceAudience.js +18 -24
- package/lib/serviceAudience.js.map +1 -1
- package/lib/types.d.ts +3 -3
- package/lib/types.d.ts.map +1 -1
- package/lib/types.js.map +1 -1
- package/lib/utils.d.ts +4 -4
- package/lib/utils.d.ts.map +1 -1
- package/lib/utils.js.map +1 -1
- package/package.json +18 -18
- package/src/fluidContainer.ts +2 -6
- package/src/rootDataObject.ts +8 -8
- package/src/serviceAudience.ts +5 -10
- package/src/types.ts +3 -7
- package/src/utils.ts +4 -4
package/src/rootDataObject.ts
CHANGED
|
@@ -8,16 +8,16 @@ import {
|
|
|
8
8
|
DataObject,
|
|
9
9
|
DataObjectFactory,
|
|
10
10
|
} from "@fluidframework/aqueduct/internal";
|
|
11
|
-
import {
|
|
11
|
+
import type { IRuntimeFactory } from "@fluidframework/container-definitions/internal";
|
|
12
12
|
import type { ContainerRuntime } from "@fluidframework/container-runtime/internal";
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
13
|
+
import type { IContainerRuntime } from "@fluidframework/container-runtime-definitions/internal";
|
|
14
|
+
import type {
|
|
15
|
+
FluidObject,
|
|
16
|
+
IFluidLoadable,
|
|
17
|
+
IRequest,
|
|
18
|
+
IResponse,
|
|
19
19
|
} from "@fluidframework/core-interfaces";
|
|
20
|
-
import {
|
|
20
|
+
import type { IDirectory } from "@fluidframework/map/internal";
|
|
21
21
|
import { RequestParser } from "@fluidframework/runtime-utils/internal";
|
|
22
22
|
import type { SharedObjectKind } from "@fluidframework/shared-object-base";
|
|
23
23
|
import type { ISharedObjectKind } from "@fluidframework/shared-object-base/internal";
|
package/src/serviceAudience.ts
CHANGED
|
@@ -4,16 +4,11 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { TypedEventEmitter } from "@fluid-internal/client-utils";
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
type IMember,
|
|
13
|
-
type IServiceAudience,
|
|
14
|
-
type IServiceAudienceEvents,
|
|
15
|
-
type Myself,
|
|
16
|
-
} from "./types.js";
|
|
7
|
+
import type { IAudience } from "@fluidframework/container-definitions";
|
|
8
|
+
import type { IContainer } from "@fluidframework/container-definitions/internal";
|
|
9
|
+
import type { IClient } from "@fluidframework/driver-definitions";
|
|
10
|
+
|
|
11
|
+
import type { IMember, IServiceAudience, IServiceAudienceEvents, Myself } from "./types.js";
|
|
17
12
|
|
|
18
13
|
/**
|
|
19
14
|
* Creates a service audience for the provided container.
|
package/src/types.ts
CHANGED
|
@@ -3,14 +3,10 @@
|
|
|
3
3
|
* Licensed under the MIT License.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
import {
|
|
7
|
-
type IEvent,
|
|
8
|
-
type IEventProvider,
|
|
9
|
-
type IFluidLoadable,
|
|
10
|
-
} from "@fluidframework/core-interfaces";
|
|
6
|
+
import type { IEvent, IEventProvider, IFluidLoadable } from "@fluidframework/core-interfaces";
|
|
11
7
|
import type { IFluidDataStoreFactory } from "@fluidframework/runtime-definitions/internal";
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
8
|
+
import type { SharedObjectKind } from "@fluidframework/shared-object-base";
|
|
9
|
+
import type { ISharedObjectKind } from "@fluidframework/shared-object-base/internal";
|
|
14
10
|
|
|
15
11
|
/**
|
|
16
12
|
* Valid compatibility modes that may be specified when creating a DOProviderContainerRuntimeFactory.
|
package/src/utils.ts
CHANGED
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
* Licensed under the MIT License.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
6
|
+
import type { IFluidLoadable } from "@fluidframework/core-interfaces";
|
|
7
|
+
import type { IChannelFactory } from "@fluidframework/datastore-definitions/internal";
|
|
8
|
+
import type { NamedFluidDataStoreRegistryEntry } from "@fluidframework/runtime-definitions/internal";
|
|
9
9
|
import type { ISharedObjectKind } from "@fluidframework/shared-object-base/internal";
|
|
10
10
|
import { UsageError } from "@fluidframework/telemetry-utils/internal";
|
|
11
11
|
|
|
12
|
-
import {
|
|
12
|
+
import type { ContainerSchema, DataObjectClass, LoadableObjectClass } from "./types.js";
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
15
|
* Runtime check to determine if a class is a DataObject type.
|