@fluidframework/aqueduct 2.33.0-333010 → 2.33.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.
- package/CHANGELOG.md +4 -0
- package/api-report/aqueduct.legacy.alpha.api.md +10 -10
- package/lib/tsdoc-metadata.json +1 -1
- package/package.json +20 -21
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
```ts
|
|
6
6
|
|
|
7
|
-
// @alpha
|
|
7
|
+
// @alpha @legacy
|
|
8
8
|
export class BaseContainerRuntimeFactory extends RuntimeFactoryHelper implements IProvideFluidDataStoreRegistry {
|
|
9
9
|
constructor(props: BaseContainerRuntimeFactoryProps);
|
|
10
10
|
protected containerHasInitialized(runtime: IContainerRuntime): Promise<void>;
|
|
@@ -15,7 +15,7 @@ export class BaseContainerRuntimeFactory extends RuntimeFactoryHelper implements
|
|
|
15
15
|
preInitialize(context: IContainerContext, existing: boolean): Promise<IContainerRuntime & IRuntime>;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
// @alpha
|
|
18
|
+
// @alpha @legacy
|
|
19
19
|
export interface BaseContainerRuntimeFactoryProps {
|
|
20
20
|
// @deprecated (undocumented)
|
|
21
21
|
dependencyContainer?: IFluidDependencySynthesizer;
|
|
@@ -26,7 +26,7 @@ export interface BaseContainerRuntimeFactoryProps {
|
|
|
26
26
|
runtimeOptions?: IContainerRuntimeOptions;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
// @alpha
|
|
29
|
+
// @alpha @legacy
|
|
30
30
|
export class ContainerRuntimeFactoryWithDefaultDataStore extends BaseContainerRuntimeFactory {
|
|
31
31
|
constructor(props: ContainerRuntimeFactoryWithDefaultDataStoreProps);
|
|
32
32
|
protected containerInitializingFirstTime(runtime: IContainerRuntime): Promise<void>;
|
|
@@ -36,7 +36,7 @@ export class ContainerRuntimeFactoryWithDefaultDataStore extends BaseContainerRu
|
|
|
36
36
|
protected readonly defaultFactory: IFluidDataStoreFactory;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
// @alpha
|
|
39
|
+
// @alpha @legacy
|
|
40
40
|
export interface ContainerRuntimeFactoryWithDefaultDataStoreProps {
|
|
41
41
|
// (undocumented)
|
|
42
42
|
defaultFactory: IFluidDataStoreFactory;
|
|
@@ -49,26 +49,26 @@ export interface ContainerRuntimeFactoryWithDefaultDataStoreProps {
|
|
|
49
49
|
runtimeOptions?: IContainerRuntimeOptions;
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
-
// @alpha
|
|
52
|
+
// @alpha @legacy
|
|
53
53
|
export abstract class DataObject<I extends DataObjectTypes = DataObjectTypes> extends PureDataObject<I> {
|
|
54
54
|
protected getUninitializedErrorString(item: string): string;
|
|
55
55
|
initializeInternal(existing: boolean): Promise<void>;
|
|
56
56
|
protected get root(): ISharedDirectory;
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
-
// @alpha
|
|
59
|
+
// @alpha @legacy
|
|
60
60
|
export class DataObjectFactory<TObj extends DataObject<I>, I extends DataObjectTypes = DataObjectTypes> extends PureDataObjectFactory<TObj, I> {
|
|
61
61
|
constructor(type: string, ctor: new (props: IDataObjectProps<I>) => TObj, sharedObjects: readonly IChannelFactory<unknown>[] | undefined, optionalProviders: FluidObjectSymbolProvider<I["OptionalProviders"]>, registryEntries?: NamedFluidDataStoreRegistryEntries, runtimeFactory?: typeof FluidDataStoreRuntime);
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
-
// @alpha
|
|
64
|
+
// @alpha @legacy
|
|
65
65
|
export interface DataObjectTypes {
|
|
66
66
|
Events?: IEvent;
|
|
67
67
|
InitialState?: any;
|
|
68
68
|
OptionalProviders?: FluidObject;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
-
// @alpha (undocumented)
|
|
71
|
+
// @alpha @legacy (undocumented)
|
|
72
72
|
export interface IDataObjectProps<I extends DataObjectTypes = DataObjectTypes> {
|
|
73
73
|
// (undocumented)
|
|
74
74
|
readonly context: IFluidDataStoreContext;
|
|
@@ -80,7 +80,7 @@ export interface IDataObjectProps<I extends DataObjectTypes = DataObjectTypes> {
|
|
|
80
80
|
readonly runtime: IFluidDataStoreRuntime;
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
-
// @alpha
|
|
83
|
+
// @alpha @legacy
|
|
84
84
|
export abstract class PureDataObject<I extends DataObjectTypes = DataObjectTypes> extends TypedEventEmitter<I["Events"] & IEvent> implements IFluidLoadable, IProvideFluidHandle {
|
|
85
85
|
constructor(props: IDataObjectProps<I>);
|
|
86
86
|
protected readonly context: IFluidDataStoreContext;
|
|
@@ -105,7 +105,7 @@ export abstract class PureDataObject<I extends DataObjectTypes = DataObjectTypes
|
|
|
105
105
|
protected readonly runtime: IFluidDataStoreRuntime;
|
|
106
106
|
}
|
|
107
107
|
|
|
108
|
-
// @alpha
|
|
108
|
+
// @alpha @legacy
|
|
109
109
|
export class PureDataObjectFactory<TObj extends PureDataObject<I>, I extends DataObjectTypes = DataObjectTypes> implements IFluidDataStoreFactory, Partial<IProvideFluidDataStoreRegistry> {
|
|
110
110
|
constructor(
|
|
111
111
|
type: string, ctor: new (props: IDataObjectProps<I>) => TObj, sharedObjects: readonly IChannelFactory[], optionalProviders: FluidObjectSymbolProvider<I["OptionalProviders"]>, registryEntries?: NamedFluidDataStoreRegistryEntries, runtimeClass?: typeof FluidDataStoreRuntime);
|
package/lib/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/aqueduct",
|
|
3
|
-
"version": "2.33.
|
|
3
|
+
"version": "2.33.1",
|
|
4
4
|
"description": "A set of implementations for Fluid Framework interfaces.",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -69,33 +69,33 @@
|
|
|
69
69
|
"temp-directory": "nyc/.nyc_output"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@fluid-internal/client-utils": "2.33.
|
|
73
|
-
"@fluidframework/container-definitions": "2.33.
|
|
74
|
-
"@fluidframework/container-runtime": "2.33.
|
|
75
|
-
"@fluidframework/container-runtime-definitions": "2.33.
|
|
76
|
-
"@fluidframework/core-interfaces": "2.33.
|
|
77
|
-
"@fluidframework/core-utils": "2.33.
|
|
78
|
-
"@fluidframework/datastore": "2.33.
|
|
79
|
-
"@fluidframework/datastore-definitions": "2.33.
|
|
80
|
-
"@fluidframework/map": "2.33.
|
|
81
|
-
"@fluidframework/request-handler": "2.33.
|
|
82
|
-
"@fluidframework/runtime-definitions": "2.33.
|
|
83
|
-
"@fluidframework/runtime-utils": "2.33.
|
|
84
|
-
"@fluidframework/shared-object-base": "2.33.
|
|
85
|
-
"@fluidframework/synthesize": "2.33.
|
|
86
|
-
"@fluidframework/telemetry-utils": "2.33.
|
|
87
|
-
"@fluidframework/tree": "2.33.
|
|
72
|
+
"@fluid-internal/client-utils": "~2.33.1",
|
|
73
|
+
"@fluidframework/container-definitions": "~2.33.1",
|
|
74
|
+
"@fluidframework/container-runtime": "~2.33.1",
|
|
75
|
+
"@fluidframework/container-runtime-definitions": "~2.33.1",
|
|
76
|
+
"@fluidframework/core-interfaces": "~2.33.1",
|
|
77
|
+
"@fluidframework/core-utils": "~2.33.1",
|
|
78
|
+
"@fluidframework/datastore": "~2.33.1",
|
|
79
|
+
"@fluidframework/datastore-definitions": "~2.33.1",
|
|
80
|
+
"@fluidframework/map": "~2.33.1",
|
|
81
|
+
"@fluidframework/request-handler": "~2.33.1",
|
|
82
|
+
"@fluidframework/runtime-definitions": "~2.33.1",
|
|
83
|
+
"@fluidframework/runtime-utils": "~2.33.1",
|
|
84
|
+
"@fluidframework/shared-object-base": "~2.33.1",
|
|
85
|
+
"@fluidframework/synthesize": "~2.33.1",
|
|
86
|
+
"@fluidframework/telemetry-utils": "~2.33.1",
|
|
87
|
+
"@fluidframework/tree": "~2.33.1"
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|
|
90
90
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
91
91
|
"@biomejs/biome": "~1.9.3",
|
|
92
|
-
"@fluid-internal/mocha-test-setup": "2.33.
|
|
92
|
+
"@fluid-internal/mocha-test-setup": "~2.33.1",
|
|
93
93
|
"@fluid-tools/build-cli": "^0.55.0",
|
|
94
|
-
"@fluidframework/aqueduct-previous": "npm:@fluidframework/aqueduct@2.
|
|
94
|
+
"@fluidframework/aqueduct-previous": "npm:@fluidframework/aqueduct@2.33.0",
|
|
95
95
|
"@fluidframework/build-common": "^2.0.3",
|
|
96
96
|
"@fluidframework/build-tools": "^0.55.0",
|
|
97
97
|
"@fluidframework/eslint-config-fluid": "^5.7.3",
|
|
98
|
-
"@microsoft/api-extractor": "7.
|
|
98
|
+
"@microsoft/api-extractor": "7.52.5",
|
|
99
99
|
"@types/mocha": "^10.0.10",
|
|
100
100
|
"@types/node": "^18.19.0",
|
|
101
101
|
"c8": "^8.0.1",
|
|
@@ -105,7 +105,6 @@
|
|
|
105
105
|
"eslint": "~8.55.0",
|
|
106
106
|
"mocha": "^10.8.2",
|
|
107
107
|
"mocha-multi-reporters": "^1.5.1",
|
|
108
|
-
"moment": "^2.21.0",
|
|
109
108
|
"rimraf": "^4.4.0",
|
|
110
109
|
"typescript": "~5.4.5"
|
|
111
110
|
},
|