@fluidframework/test-utils 2.0.0-dev.7.4.0.217212 → 2.0.0-dev.7.4.0.217884
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/dist/packageVersion.d.ts +1 -1
- package/dist/packageVersion.js +1 -1
- package/dist/packageVersion.js.map +1 -1
- package/dist/test-utils-alpha.d.ts +22 -44
- package/lib/test-utils-alpha.d.ts +22 -44
- package/package.json +23 -23
- package/src/packageVersion.ts +1 -1
package/dist/packageVersion.d.ts
CHANGED
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
|
|
6
6
|
*/
|
|
7
7
|
export declare const pkgName = "@fluidframework/test-utils";
|
|
8
|
-
export declare const pkgVersion = "2.0.0-dev.7.4.0.
|
|
8
|
+
export declare const pkgVersion = "2.0.0-dev.7.4.0.217884";
|
|
9
9
|
//# sourceMappingURL=packageVersion.d.ts.map
|
package/dist/packageVersion.js
CHANGED
|
@@ -8,5 +8,5 @@
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
9
|
exports.pkgVersion = exports.pkgName = void 0;
|
|
10
10
|
exports.pkgName = "@fluidframework/test-utils";
|
|
11
|
-
exports.pkgVersion = "2.0.0-dev.7.4.0.
|
|
11
|
+
exports.pkgVersion = "2.0.0-dev.7.4.0.217884";
|
|
12
12
|
//# sourceMappingURL=packageVersion.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,4BAA4B,CAAC;AACvC,QAAA,UAAU,GAAG,wBAAwB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/test-utils\";\nexport const pkgVersion = \"2.0.0-dev.7.4.0.
|
|
1
|
+
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,4BAA4B,CAAC;AACvC,QAAA,UAAU,GAAG,wBAAwB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/test-utils\";\nexport const pkgVersion = \"2.0.0-dev.7.4.0.217884\";\n"]}
|
|
@@ -1,13 +1,32 @@
|
|
|
1
|
+
import { ConfigTypes } from '@fluidframework/core-interfaces';
|
|
2
|
+
import { ContainerRuntime } from '@fluidframework/container-runtime';
|
|
3
|
+
import { FluidDataStoreRuntime } from '@fluidframework/datastore';
|
|
1
4
|
import { FluidObject } from '@fluidframework/core-interfaces';
|
|
5
|
+
import { IChannelFactory } from '@fluidframework/datastore-definitions';
|
|
6
|
+
import { IConfigProviderBase } from '@fluidframework/core-interfaces';
|
|
2
7
|
import { IContainer } from '@fluidframework/container-definitions';
|
|
3
8
|
import { IContainerContext } from '@fluidframework/container-definitions';
|
|
9
|
+
import { IContainerRuntime } from '@fluidframework/container-runtime-definitions';
|
|
10
|
+
import { IContainerRuntimeOptions } from '@fluidframework/container-runtime';
|
|
11
|
+
import { IDataStore } from '@fluidframework/runtime-definitions';
|
|
4
12
|
import { IDocumentService } from '@fluidframework/driver-definitions';
|
|
5
13
|
import { IDocumentServiceFactory } from '@fluidframework/driver-definitions';
|
|
6
14
|
import { IDocumentStorageService } from '@fluidframework/driver-definitions';
|
|
7
15
|
import { IFluidCodeDetails } from '@fluidframework/container-definitions';
|
|
16
|
+
import { IFluidDataStoreChannel } from '@fluidframework/runtime-definitions';
|
|
17
|
+
import { IFluidDataStoreContext } from '@fluidframework/runtime-definitions';
|
|
18
|
+
import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions';
|
|
19
|
+
import { IFluidDataStoreRuntime } from '@fluidframework/datastore-definitions';
|
|
20
|
+
import { IFluidHandle } from '@fluidframework/core-interfaces';
|
|
21
|
+
import { IFluidLoadable } from '@fluidframework/core-interfaces';
|
|
8
22
|
import { IFluidModule } from '@fluidframework/container-definitions';
|
|
23
|
+
import { IHostLoader } from '@fluidframework/container-definitions';
|
|
9
24
|
import { ILoaderOptions } from '@fluidframework/container-definitions';
|
|
25
|
+
import { ILoaderProps } from '@fluidframework/container-loader';
|
|
26
|
+
import { IOnDemandSummarizeOptions } from '@fluidframework/container-runtime';
|
|
10
27
|
import { IProvideFluidCodeDetailsComparer } from '@fluidframework/container-definitions';
|
|
28
|
+
import { IProvideFluidDataStoreFactory } from '@fluidframework/runtime-definitions';
|
|
29
|
+
import { IProvideFluidDataStoreRegistry } from '@fluidframework/runtime-definitions';
|
|
11
30
|
import { IProvideRuntimeFactory } from '@fluidframework/container-definitions';
|
|
12
31
|
import { IRequest } from '@fluidframework/core-interfaces';
|
|
13
32
|
import { IRequestHeader } from '@fluidframework/core-interfaces';
|
|
@@ -18,14 +37,13 @@ import { ISummaryContext } from '@fluidframework/driver-definitions';
|
|
|
18
37
|
import { ISummaryTree } from '@fluidframework/protocol-definitions';
|
|
19
38
|
import { ITelemetryBaseEvent } from '@fluidframework/core-interfaces';
|
|
20
39
|
import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
40
|
+
import { ITelemetryGenericEvent } from '@fluidframework/core-interfaces';
|
|
21
41
|
import { IUrlResolver } from '@fluidframework/driver-definitions';
|
|
42
|
+
import { Loader } from '@fluidframework/container-loader';
|
|
43
|
+
import { NamedFluidDataStoreRegistryEntries } from '@fluidframework/runtime-definitions';
|
|
22
44
|
|
|
23
45
|
/* Excluded from this release type: ChannelFactoryRegistry */
|
|
24
46
|
|
|
25
|
-
/* Excluded from this release type: ConfigTypes */
|
|
26
|
-
|
|
27
|
-
/* Excluded from this release type: ContainerRuntime */
|
|
28
|
-
|
|
29
47
|
/* Excluded from this release type: ContainerRuntimeFactoryWithDefaultDataStore */
|
|
30
48
|
|
|
31
49
|
/* Excluded from this release type: createAndAttachContainer */
|
|
@@ -48,8 +66,6 @@ import { IUrlResolver } from '@fluidframework/driver-definitions';
|
|
|
48
66
|
|
|
49
67
|
/* Excluded from this release type: EventAndErrorTrackingLogger */
|
|
50
68
|
|
|
51
|
-
/* Excluded from this release type: FluidDataStoreRuntime */
|
|
52
|
-
|
|
53
69
|
/* Excluded from this release type: fluidEntryPoint */
|
|
54
70
|
|
|
55
71
|
/* Excluded from this release type: getContainerEntryPointBackCompat */
|
|
@@ -58,54 +74,20 @@ import { IUrlResolver } from '@fluidframework/driver-definitions';
|
|
|
58
74
|
|
|
59
75
|
/* Excluded from this release type: getUnexpectedLogErrorException */
|
|
60
76
|
|
|
61
|
-
/* Excluded from this release type: IChannelFactory */
|
|
62
|
-
|
|
63
77
|
/* Excluded from this release type: ICodeDetailsLoader */
|
|
64
78
|
|
|
65
|
-
/* Excluded from this release type: IConfigProviderBase */
|
|
66
|
-
|
|
67
|
-
/* Excluded from this release type: IContainerRuntime */
|
|
68
|
-
|
|
69
|
-
/* Excluded from this release type: IContainerRuntimeOptions */
|
|
70
|
-
|
|
71
|
-
/* Excluded from this release type: IDataStore */
|
|
72
|
-
|
|
73
79
|
/* Excluded from this release type: IDocumentIdStrategy */
|
|
74
80
|
|
|
75
|
-
/* Excluded from this release type: IFluidDataStoreChannel */
|
|
76
|
-
|
|
77
|
-
/* Excluded from this release type: IFluidDataStoreContext */
|
|
78
|
-
|
|
79
|
-
/* Excluded from this release type: IFluidDataStoreFactory */
|
|
80
|
-
|
|
81
|
-
/* Excluded from this release type: IFluidDataStoreRuntime */
|
|
82
|
-
|
|
83
|
-
/* Excluded from this release type: IFluidHandle */
|
|
84
|
-
|
|
85
|
-
/* Excluded from this release type: IFluidLoadable */
|
|
86
|
-
|
|
87
81
|
/* Excluded from this release type: IFluidModuleWithDetails */
|
|
88
82
|
|
|
89
|
-
/* Excluded from this release type: IHostLoader */
|
|
90
|
-
|
|
91
|
-
/* Excluded from this release type: ILoaderProps */
|
|
92
|
-
|
|
93
|
-
/* Excluded from this release type: IOnDemandSummarizeOptions */
|
|
94
|
-
|
|
95
83
|
/* Excluded from this release type: IOpProcessingController */
|
|
96
84
|
|
|
97
|
-
/* Excluded from this release type: IProvideFluidDataStoreFactory */
|
|
98
|
-
|
|
99
|
-
/* Excluded from this release type: IProvideFluidDataStoreRegistry */
|
|
100
|
-
|
|
101
85
|
/* Excluded from this release type: IProvideTestFluidObject */
|
|
102
86
|
|
|
103
87
|
/* Excluded from this release type: ISharedMap */
|
|
104
88
|
|
|
105
89
|
/* Excluded from this release type: ISummarizer */
|
|
106
90
|
|
|
107
|
-
/* Excluded from this release type: ITelemetryGenericEvent */
|
|
108
|
-
|
|
109
91
|
/* Excluded from this release type: ITestContainerConfig */
|
|
110
92
|
|
|
111
93
|
/* Excluded from this release type: ITestDriver */
|
|
@@ -114,16 +96,12 @@ import { IUrlResolver } from '@fluidframework/driver-definitions';
|
|
|
114
96
|
|
|
115
97
|
/* Excluded from this release type: ITestObjectProvider */
|
|
116
98
|
|
|
117
|
-
/* Excluded from this release type: Loader */
|
|
118
|
-
|
|
119
99
|
/* Excluded from this release type: LoaderContainerTracker */
|
|
120
100
|
|
|
121
101
|
/* Excluded from this release type: LocalCodeLoader */
|
|
122
102
|
|
|
123
103
|
/* Excluded from this release type: mockConfigProvider */
|
|
124
104
|
|
|
125
|
-
/* Excluded from this release type: NamedFluidDataStoreRegistryEntries */
|
|
126
|
-
|
|
127
105
|
/* Excluded from this release type: retryWithEventualValue */
|
|
128
106
|
|
|
129
107
|
/* Excluded from this release type: RuntimeRequestHandler */
|
|
@@ -1,13 +1,32 @@
|
|
|
1
|
+
import { ConfigTypes } from '@fluidframework/core-interfaces';
|
|
2
|
+
import { ContainerRuntime } from '@fluidframework/container-runtime';
|
|
3
|
+
import { FluidDataStoreRuntime } from '@fluidframework/datastore';
|
|
1
4
|
import { FluidObject } from '@fluidframework/core-interfaces';
|
|
5
|
+
import { IChannelFactory } from '@fluidframework/datastore-definitions';
|
|
6
|
+
import { IConfigProviderBase } from '@fluidframework/core-interfaces';
|
|
2
7
|
import { IContainer } from '@fluidframework/container-definitions';
|
|
3
8
|
import { IContainerContext } from '@fluidframework/container-definitions';
|
|
9
|
+
import { IContainerRuntime } from '@fluidframework/container-runtime-definitions';
|
|
10
|
+
import { IContainerRuntimeOptions } from '@fluidframework/container-runtime';
|
|
11
|
+
import { IDataStore } from '@fluidframework/runtime-definitions';
|
|
4
12
|
import { IDocumentService } from '@fluidframework/driver-definitions';
|
|
5
13
|
import { IDocumentServiceFactory } from '@fluidframework/driver-definitions';
|
|
6
14
|
import { IDocumentStorageService } from '@fluidframework/driver-definitions';
|
|
7
15
|
import { IFluidCodeDetails } from '@fluidframework/container-definitions';
|
|
16
|
+
import { IFluidDataStoreChannel } from '@fluidframework/runtime-definitions';
|
|
17
|
+
import { IFluidDataStoreContext } from '@fluidframework/runtime-definitions';
|
|
18
|
+
import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions';
|
|
19
|
+
import { IFluidDataStoreRuntime } from '@fluidframework/datastore-definitions';
|
|
20
|
+
import { IFluidHandle } from '@fluidframework/core-interfaces';
|
|
21
|
+
import { IFluidLoadable } from '@fluidframework/core-interfaces';
|
|
8
22
|
import { IFluidModule } from '@fluidframework/container-definitions';
|
|
23
|
+
import { IHostLoader } from '@fluidframework/container-definitions';
|
|
9
24
|
import { ILoaderOptions } from '@fluidframework/container-definitions';
|
|
25
|
+
import { ILoaderProps } from '@fluidframework/container-loader';
|
|
26
|
+
import { IOnDemandSummarizeOptions } from '@fluidframework/container-runtime';
|
|
10
27
|
import { IProvideFluidCodeDetailsComparer } from '@fluidframework/container-definitions';
|
|
28
|
+
import { IProvideFluidDataStoreFactory } from '@fluidframework/runtime-definitions';
|
|
29
|
+
import { IProvideFluidDataStoreRegistry } from '@fluidframework/runtime-definitions';
|
|
11
30
|
import { IProvideRuntimeFactory } from '@fluidframework/container-definitions';
|
|
12
31
|
import { IRequest } from '@fluidframework/core-interfaces';
|
|
13
32
|
import { IRequestHeader } from '@fluidframework/core-interfaces';
|
|
@@ -18,14 +37,13 @@ import { ISummaryContext } from '@fluidframework/driver-definitions';
|
|
|
18
37
|
import { ISummaryTree } from '@fluidframework/protocol-definitions';
|
|
19
38
|
import { ITelemetryBaseEvent } from '@fluidframework/core-interfaces';
|
|
20
39
|
import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
40
|
+
import { ITelemetryGenericEvent } from '@fluidframework/core-interfaces';
|
|
21
41
|
import { IUrlResolver } from '@fluidframework/driver-definitions';
|
|
42
|
+
import { Loader } from '@fluidframework/container-loader';
|
|
43
|
+
import { NamedFluidDataStoreRegistryEntries } from '@fluidframework/runtime-definitions';
|
|
22
44
|
|
|
23
45
|
/* Excluded from this release type: ChannelFactoryRegistry */
|
|
24
46
|
|
|
25
|
-
/* Excluded from this release type: ConfigTypes */
|
|
26
|
-
|
|
27
|
-
/* Excluded from this release type: ContainerRuntime */
|
|
28
|
-
|
|
29
47
|
/* Excluded from this release type: ContainerRuntimeFactoryWithDefaultDataStore */
|
|
30
48
|
|
|
31
49
|
/* Excluded from this release type: createAndAttachContainer */
|
|
@@ -48,8 +66,6 @@ import { IUrlResolver } from '@fluidframework/driver-definitions';
|
|
|
48
66
|
|
|
49
67
|
/* Excluded from this release type: EventAndErrorTrackingLogger */
|
|
50
68
|
|
|
51
|
-
/* Excluded from this release type: FluidDataStoreRuntime */
|
|
52
|
-
|
|
53
69
|
/* Excluded from this release type: fluidEntryPoint */
|
|
54
70
|
|
|
55
71
|
/* Excluded from this release type: getContainerEntryPointBackCompat */
|
|
@@ -58,54 +74,20 @@ import { IUrlResolver } from '@fluidframework/driver-definitions';
|
|
|
58
74
|
|
|
59
75
|
/* Excluded from this release type: getUnexpectedLogErrorException */
|
|
60
76
|
|
|
61
|
-
/* Excluded from this release type: IChannelFactory */
|
|
62
|
-
|
|
63
77
|
/* Excluded from this release type: ICodeDetailsLoader */
|
|
64
78
|
|
|
65
|
-
/* Excluded from this release type: IConfigProviderBase */
|
|
66
|
-
|
|
67
|
-
/* Excluded from this release type: IContainerRuntime */
|
|
68
|
-
|
|
69
|
-
/* Excluded from this release type: IContainerRuntimeOptions */
|
|
70
|
-
|
|
71
|
-
/* Excluded from this release type: IDataStore */
|
|
72
|
-
|
|
73
79
|
/* Excluded from this release type: IDocumentIdStrategy */
|
|
74
80
|
|
|
75
|
-
/* Excluded from this release type: IFluidDataStoreChannel */
|
|
76
|
-
|
|
77
|
-
/* Excluded from this release type: IFluidDataStoreContext */
|
|
78
|
-
|
|
79
|
-
/* Excluded from this release type: IFluidDataStoreFactory */
|
|
80
|
-
|
|
81
|
-
/* Excluded from this release type: IFluidDataStoreRuntime */
|
|
82
|
-
|
|
83
|
-
/* Excluded from this release type: IFluidHandle */
|
|
84
|
-
|
|
85
|
-
/* Excluded from this release type: IFluidLoadable */
|
|
86
|
-
|
|
87
81
|
/* Excluded from this release type: IFluidModuleWithDetails */
|
|
88
82
|
|
|
89
|
-
/* Excluded from this release type: IHostLoader */
|
|
90
|
-
|
|
91
|
-
/* Excluded from this release type: ILoaderProps */
|
|
92
|
-
|
|
93
|
-
/* Excluded from this release type: IOnDemandSummarizeOptions */
|
|
94
|
-
|
|
95
83
|
/* Excluded from this release type: IOpProcessingController */
|
|
96
84
|
|
|
97
|
-
/* Excluded from this release type: IProvideFluidDataStoreFactory */
|
|
98
|
-
|
|
99
|
-
/* Excluded from this release type: IProvideFluidDataStoreRegistry */
|
|
100
|
-
|
|
101
85
|
/* Excluded from this release type: IProvideTestFluidObject */
|
|
102
86
|
|
|
103
87
|
/* Excluded from this release type: ISharedMap */
|
|
104
88
|
|
|
105
89
|
/* Excluded from this release type: ISummarizer */
|
|
106
90
|
|
|
107
|
-
/* Excluded from this release type: ITelemetryGenericEvent */
|
|
108
|
-
|
|
109
91
|
/* Excluded from this release type: ITestContainerConfig */
|
|
110
92
|
|
|
111
93
|
/* Excluded from this release type: ITestDriver */
|
|
@@ -114,16 +96,12 @@ import { IUrlResolver } from '@fluidframework/driver-definitions';
|
|
|
114
96
|
|
|
115
97
|
/* Excluded from this release type: ITestObjectProvider */
|
|
116
98
|
|
|
117
|
-
/* Excluded from this release type: Loader */
|
|
118
|
-
|
|
119
99
|
/* Excluded from this release type: LoaderContainerTracker */
|
|
120
100
|
|
|
121
101
|
/* Excluded from this release type: LocalCodeLoader */
|
|
122
102
|
|
|
123
103
|
/* Excluded from this release type: mockConfigProvider */
|
|
124
104
|
|
|
125
|
-
/* Excluded from this release type: NamedFluidDataStoreRegistryEntries */
|
|
126
|
-
|
|
127
105
|
/* Excluded from this release type: retryWithEventualValue */
|
|
128
106
|
|
|
129
107
|
/* Excluded from this release type: RuntimeRequestHandler */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/test-utils",
|
|
3
|
-
"version": "2.0.0-dev.7.4.0.
|
|
3
|
+
"version": "2.0.0-dev.7.4.0.217884",
|
|
4
4
|
"description": "Utilities for Fluid tests",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -34,27 +34,27 @@
|
|
|
34
34
|
"temp-directory": "nyc/.nyc_output"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@fluidframework/aqueduct": "2.0.0-dev.7.4.0.
|
|
38
|
-
"@fluidframework/container-definitions": "2.0.0-dev.7.4.0.
|
|
39
|
-
"@fluidframework/container-loader": "2.0.0-dev.7.4.0.
|
|
40
|
-
"@fluidframework/container-runtime": "2.0.0-dev.7.4.0.
|
|
41
|
-
"@fluidframework/container-runtime-definitions": "2.0.0-dev.7.4.0.
|
|
42
|
-
"@fluidframework/core-interfaces": "2.0.0-dev.7.4.0.
|
|
43
|
-
"@fluidframework/core-utils": "2.0.0-dev.7.4.0.
|
|
44
|
-
"@fluidframework/datastore": "2.0.0-dev.7.4.0.
|
|
45
|
-
"@fluidframework/datastore-definitions": "2.0.0-dev.7.4.0.
|
|
46
|
-
"@fluidframework/driver-definitions": "2.0.0-dev.7.4.0.
|
|
47
|
-
"@fluidframework/driver-utils": "2.0.0-dev.7.4.0.
|
|
48
|
-
"@fluidframework/local-driver": "2.0.0-dev.7.4.0.
|
|
49
|
-
"@fluidframework/map": "2.0.0-dev.7.4.0.
|
|
37
|
+
"@fluidframework/aqueduct": "2.0.0-dev.7.4.0.217884",
|
|
38
|
+
"@fluidframework/container-definitions": "2.0.0-dev.7.4.0.217884",
|
|
39
|
+
"@fluidframework/container-loader": "2.0.0-dev.7.4.0.217884",
|
|
40
|
+
"@fluidframework/container-runtime": "2.0.0-dev.7.4.0.217884",
|
|
41
|
+
"@fluidframework/container-runtime-definitions": "2.0.0-dev.7.4.0.217884",
|
|
42
|
+
"@fluidframework/core-interfaces": "2.0.0-dev.7.4.0.217884",
|
|
43
|
+
"@fluidframework/core-utils": "2.0.0-dev.7.4.0.217884",
|
|
44
|
+
"@fluidframework/datastore": "2.0.0-dev.7.4.0.217884",
|
|
45
|
+
"@fluidframework/datastore-definitions": "2.0.0-dev.7.4.0.217884",
|
|
46
|
+
"@fluidframework/driver-definitions": "2.0.0-dev.7.4.0.217884",
|
|
47
|
+
"@fluidframework/driver-utils": "2.0.0-dev.7.4.0.217884",
|
|
48
|
+
"@fluidframework/local-driver": "2.0.0-dev.7.4.0.217884",
|
|
49
|
+
"@fluidframework/map": "2.0.0-dev.7.4.0.217884",
|
|
50
50
|
"@fluidframework/protocol-definitions": "^3.0.0",
|
|
51
|
-
"@fluidframework/request-handler": "2.0.0-dev.7.4.0.
|
|
52
|
-
"@fluidframework/routerlicious-driver": "2.0.0-dev.7.4.0.
|
|
53
|
-
"@fluidframework/runtime-definitions": "2.0.0-dev.7.4.0.
|
|
54
|
-
"@fluidframework/runtime-utils": "2.0.0-dev.7.4.0.
|
|
55
|
-
"@fluidframework/telemetry-utils": "2.0.0-dev.7.4.0.
|
|
56
|
-
"@fluidframework/test-driver-definitions": "2.0.0-dev.7.4.0.
|
|
57
|
-
"@fluidframework/test-runtime-utils": "2.0.0-dev.7.4.0.
|
|
51
|
+
"@fluidframework/request-handler": "2.0.0-dev.7.4.0.217884",
|
|
52
|
+
"@fluidframework/routerlicious-driver": "2.0.0-dev.7.4.0.217884",
|
|
53
|
+
"@fluidframework/runtime-definitions": "2.0.0-dev.7.4.0.217884",
|
|
54
|
+
"@fluidframework/runtime-utils": "2.0.0-dev.7.4.0.217884",
|
|
55
|
+
"@fluidframework/telemetry-utils": "2.0.0-dev.7.4.0.217884",
|
|
56
|
+
"@fluidframework/test-driver-definitions": "2.0.0-dev.7.4.0.217884",
|
|
57
|
+
"@fluidframework/test-runtime-utils": "2.0.0-dev.7.4.0.217884",
|
|
58
58
|
"best-random": "^1.0.0",
|
|
59
59
|
"debug": "^4.3.4",
|
|
60
60
|
"uuid": "^9.0.0"
|
|
@@ -64,13 +64,13 @@
|
|
|
64
64
|
"@fluidframework/build-common": "^2.0.3",
|
|
65
65
|
"@fluidframework/build-tools": "^0.28.0",
|
|
66
66
|
"@fluidframework/eslint-config-fluid": "^3.1.0",
|
|
67
|
-
"@fluidframework/mocha-test-setup": "2.0.0-dev.7.4.0.
|
|
67
|
+
"@fluidframework/mocha-test-setup": "2.0.0-dev.7.4.0.217884",
|
|
68
68
|
"@fluidframework/test-utils-previous": "npm:@fluidframework/test-utils@2.0.0-internal.7.2.0",
|
|
69
69
|
"@microsoft/api-extractor": "^7.38.3",
|
|
70
70
|
"@types/debug": "^4.1.5",
|
|
71
71
|
"@types/diff": "^3.5.1",
|
|
72
72
|
"@types/mocha": "^9.1.1",
|
|
73
|
-
"@types/node": "^
|
|
73
|
+
"@types/node": "^18.19.0",
|
|
74
74
|
"@types/uuid": "^9.0.2",
|
|
75
75
|
"c8": "^7.7.1",
|
|
76
76
|
"copyfiles": "^2.4.1",
|
package/src/packageVersion.ts
CHANGED