@fluidframework/aqueduct 2.0.0-dev-rc.5.0.0.267932 → 2.0.0-dev-rc.5.0.0.268409
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## API Report File for "@fluidframework/aqueduct"
|
|
1
|
+
## Alpha API Report File for "@fluidframework/aqueduct"
|
|
2
2
|
|
|
3
3
|
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
4
|
|
|
@@ -85,9 +85,6 @@ export interface ContainerRuntimeFactoryWithDefaultDataStoreProps {
|
|
|
85
85
|
runtimeOptions?: IContainerRuntimeOptions;
|
|
86
86
|
}
|
|
87
87
|
|
|
88
|
-
// @internal
|
|
89
|
-
export function createDataObjectKind<T extends new (...any: any[]) => DataObject>(factory: T): T & SharedObjectKind<InstanceType<T>>;
|
|
90
|
-
|
|
91
88
|
// @alpha
|
|
92
89
|
export abstract class DataObject<I extends DataObjectTypes = DataObjectTypes> extends PureDataObject<I> {
|
|
93
90
|
protected getUninitializedErrorString(item: string): string;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
## Beta API Report File for "@fluidframework/aqueduct"
|
|
2
|
+
|
|
3
|
+
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
+
|
|
5
|
+
```ts
|
|
6
|
+
|
|
7
|
+
import { AsyncFluidObjectProvider } from '@fluidframework/synthesize/internal';
|
|
8
|
+
import { ContainerRuntime } from '@fluidframework/container-runtime/internal';
|
|
9
|
+
import { FluidDataStoreRuntime } from '@fluidframework/datastore/internal';
|
|
10
|
+
import { FluidObject } from '@fluidframework/core-interfaces';
|
|
11
|
+
import { FluidObjectSymbolProvider } from '@fluidframework/synthesize/internal';
|
|
12
|
+
import { IChannelFactory } from '@fluidframework/datastore-definitions/internal';
|
|
13
|
+
import { IContainerContext } from '@fluidframework/container-definitions/internal';
|
|
14
|
+
import { IContainerRuntime } from '@fluidframework/container-runtime-definitions/internal';
|
|
15
|
+
import { IContainerRuntimeBase } from '@fluidframework/runtime-definitions/internal';
|
|
16
|
+
import { IContainerRuntimeOptions } from '@fluidframework/container-runtime/internal';
|
|
17
|
+
import { IDataStore } from '@fluidframework/runtime-definitions/internal';
|
|
18
|
+
import { IEvent } from '@fluidframework/core-interfaces';
|
|
19
|
+
import { IFluidDataStoreChannel } from '@fluidframework/runtime-definitions/internal';
|
|
20
|
+
import { IFluidDataStoreContext } from '@fluidframework/runtime-definitions/internal';
|
|
21
|
+
import { IFluidDataStoreContextDetached } from '@fluidframework/runtime-definitions/internal';
|
|
22
|
+
import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions/internal';
|
|
23
|
+
import { IFluidDataStoreRegistry } from '@fluidframework/runtime-definitions/internal';
|
|
24
|
+
import { IFluidDataStoreRuntime } from '@fluidframework/datastore-definitions/internal';
|
|
25
|
+
import { IFluidDependencySynthesizer } from '@fluidframework/synthesize/internal';
|
|
26
|
+
import type { IFluidHandleInternal } from '@fluidframework/core-interfaces/internal';
|
|
27
|
+
import { IFluidLoadable } from '@fluidframework/core-interfaces';
|
|
28
|
+
import { IProvideFluidDataStoreRegistry } from '@fluidframework/runtime-definitions/internal';
|
|
29
|
+
import type { IProvideFluidHandle } from '@fluidframework/core-interfaces/internal';
|
|
30
|
+
import { IRequest } from '@fluidframework/core-interfaces';
|
|
31
|
+
import { IResponse } from '@fluidframework/core-interfaces';
|
|
32
|
+
import { ISharedDirectory } from '@fluidframework/map/internal';
|
|
33
|
+
import { NamedFluidDataStoreRegistryEntries } from '@fluidframework/runtime-definitions/internal';
|
|
34
|
+
import { NamedFluidDataStoreRegistryEntry } from '@fluidframework/runtime-definitions/internal';
|
|
35
|
+
import { RuntimeFactoryHelper } from '@fluidframework/runtime-utils/internal';
|
|
36
|
+
import { RuntimeRequestHandler } from '@fluidframework/request-handler/internal';
|
|
37
|
+
import type { SharedObjectKind } from '@fluidframework/shared-object-base';
|
|
38
|
+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
|
|
39
|
+
|
|
40
|
+
```
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
## Public API Report File for "@fluidframework/aqueduct"
|
|
2
|
+
|
|
3
|
+
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
+
|
|
5
|
+
```ts
|
|
6
|
+
|
|
7
|
+
import { AsyncFluidObjectProvider } from '@fluidframework/synthesize/internal';
|
|
8
|
+
import { ContainerRuntime } from '@fluidframework/container-runtime/internal';
|
|
9
|
+
import { FluidDataStoreRuntime } from '@fluidframework/datastore/internal';
|
|
10
|
+
import { FluidObject } from '@fluidframework/core-interfaces';
|
|
11
|
+
import { FluidObjectSymbolProvider } from '@fluidframework/synthesize/internal';
|
|
12
|
+
import { IChannelFactory } from '@fluidframework/datastore-definitions/internal';
|
|
13
|
+
import { IContainerContext } from '@fluidframework/container-definitions/internal';
|
|
14
|
+
import { IContainerRuntime } from '@fluidframework/container-runtime-definitions/internal';
|
|
15
|
+
import { IContainerRuntimeBase } from '@fluidframework/runtime-definitions/internal';
|
|
16
|
+
import { IContainerRuntimeOptions } from '@fluidframework/container-runtime/internal';
|
|
17
|
+
import { IDataStore } from '@fluidframework/runtime-definitions/internal';
|
|
18
|
+
import { IEvent } from '@fluidframework/core-interfaces';
|
|
19
|
+
import { IFluidDataStoreChannel } from '@fluidframework/runtime-definitions/internal';
|
|
20
|
+
import { IFluidDataStoreContext } from '@fluidframework/runtime-definitions/internal';
|
|
21
|
+
import { IFluidDataStoreContextDetached } from '@fluidframework/runtime-definitions/internal';
|
|
22
|
+
import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions/internal';
|
|
23
|
+
import { IFluidDataStoreRegistry } from '@fluidframework/runtime-definitions/internal';
|
|
24
|
+
import { IFluidDataStoreRuntime } from '@fluidframework/datastore-definitions/internal';
|
|
25
|
+
import { IFluidDependencySynthesizer } from '@fluidframework/synthesize/internal';
|
|
26
|
+
import type { IFluidHandleInternal } from '@fluidframework/core-interfaces/internal';
|
|
27
|
+
import { IFluidLoadable } from '@fluidframework/core-interfaces';
|
|
28
|
+
import { IProvideFluidDataStoreRegistry } from '@fluidframework/runtime-definitions/internal';
|
|
29
|
+
import type { IProvideFluidHandle } from '@fluidframework/core-interfaces/internal';
|
|
30
|
+
import { IRequest } from '@fluidframework/core-interfaces';
|
|
31
|
+
import { IResponse } from '@fluidframework/core-interfaces';
|
|
32
|
+
import { ISharedDirectory } from '@fluidframework/map/internal';
|
|
33
|
+
import { NamedFluidDataStoreRegistryEntries } from '@fluidframework/runtime-definitions/internal';
|
|
34
|
+
import { NamedFluidDataStoreRegistryEntry } from '@fluidframework/runtime-definitions/internal';
|
|
35
|
+
import { RuntimeFactoryHelper } from '@fluidframework/runtime-utils/internal';
|
|
36
|
+
import { RuntimeRequestHandler } from '@fluidframework/request-handler/internal';
|
|
37
|
+
import type { SharedObjectKind } from '@fluidframework/shared-object-base';
|
|
38
|
+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
|
|
39
|
+
|
|
40
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/aqueduct",
|
|
3
|
-
"version": "2.0.0-dev-rc.5.0.0.
|
|
3
|
+
"version": "2.0.0-dev-rc.5.0.0.268409",
|
|
4
4
|
"description": "A set of implementations for Fluid Framework interfaces.",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -67,30 +67,30 @@
|
|
|
67
67
|
"temp-directory": "nyc/.nyc_output"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@fluid-internal/client-utils": "2.0.0-dev-rc.5.0.0.
|
|
71
|
-
"@fluidframework/container-definitions": "2.0.0-dev-rc.5.0.0.
|
|
72
|
-
"@fluidframework/container-runtime": "2.0.0-dev-rc.5.0.0.
|
|
73
|
-
"@fluidframework/container-runtime-definitions": "2.0.0-dev-rc.5.0.0.
|
|
74
|
-
"@fluidframework/core-interfaces": "2.0.0-dev-rc.5.0.0.
|
|
75
|
-
"@fluidframework/core-utils": "2.0.0-dev-rc.5.0.0.
|
|
76
|
-
"@fluidframework/datastore": "2.0.0-dev-rc.5.0.0.
|
|
77
|
-
"@fluidframework/datastore-definitions": "2.0.0-dev-rc.5.0.0.
|
|
78
|
-
"@fluidframework/map": "2.0.0-dev-rc.5.0.0.
|
|
79
|
-
"@fluidframework/request-handler": "2.0.0-dev-rc.5.0.0.
|
|
80
|
-
"@fluidframework/runtime-definitions": "2.0.0-dev-rc.5.0.0.
|
|
81
|
-
"@fluidframework/runtime-utils": "2.0.0-dev-rc.5.0.0.
|
|
82
|
-
"@fluidframework/shared-object-base": "2.0.0-dev-rc.5.0.0.
|
|
83
|
-
"@fluidframework/synthesize": "2.0.0-dev-rc.5.0.0.
|
|
70
|
+
"@fluid-internal/client-utils": "2.0.0-dev-rc.5.0.0.268409",
|
|
71
|
+
"@fluidframework/container-definitions": "2.0.0-dev-rc.5.0.0.268409",
|
|
72
|
+
"@fluidframework/container-runtime": "2.0.0-dev-rc.5.0.0.268409",
|
|
73
|
+
"@fluidframework/container-runtime-definitions": "2.0.0-dev-rc.5.0.0.268409",
|
|
74
|
+
"@fluidframework/core-interfaces": "2.0.0-dev-rc.5.0.0.268409",
|
|
75
|
+
"@fluidframework/core-utils": "2.0.0-dev-rc.5.0.0.268409",
|
|
76
|
+
"@fluidframework/datastore": "2.0.0-dev-rc.5.0.0.268409",
|
|
77
|
+
"@fluidframework/datastore-definitions": "2.0.0-dev-rc.5.0.0.268409",
|
|
78
|
+
"@fluidframework/map": "2.0.0-dev-rc.5.0.0.268409",
|
|
79
|
+
"@fluidframework/request-handler": "2.0.0-dev-rc.5.0.0.268409",
|
|
80
|
+
"@fluidframework/runtime-definitions": "2.0.0-dev-rc.5.0.0.268409",
|
|
81
|
+
"@fluidframework/runtime-utils": "2.0.0-dev-rc.5.0.0.268409",
|
|
82
|
+
"@fluidframework/shared-object-base": "2.0.0-dev-rc.5.0.0.268409",
|
|
83
|
+
"@fluidframework/synthesize": "2.0.0-dev-rc.5.0.0.268409"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
86
|
"@arethetypeswrong/cli": "^0.15.2",
|
|
87
|
-
"@biomejs/biome": "^1.
|
|
88
|
-
"@fluid-internal/mocha-test-setup": "2.0.0-dev-rc.5.0.0.
|
|
87
|
+
"@biomejs/biome": "^1.7.3",
|
|
88
|
+
"@fluid-internal/mocha-test-setup": "2.0.0-dev-rc.5.0.0.268409",
|
|
89
89
|
"@fluid-tools/build-cli": "^0.39.0-264124",
|
|
90
90
|
"@fluidframework/aqueduct-previous": "npm:@fluidframework/aqueduct@2.0.0-rc.4.0.0",
|
|
91
91
|
"@fluidframework/build-common": "^2.0.3",
|
|
92
92
|
"@fluidframework/build-tools": "^0.39.0-264124",
|
|
93
|
-
"@fluidframework/eslint-config-fluid": "^5.
|
|
93
|
+
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
|
94
94
|
"@microsoft/api-extractor": "^7.45.1",
|
|
95
95
|
"@types/mocha": "^9.1.1",
|
|
96
96
|
"@types/node": "^18.19.0",
|