@fluidframework/container-runtime-definitions 2.53.0 → 2.60.0
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/{container-runtime-definitions.legacy.alpha.api.md → container-runtime-definitions.legacy.beta.api.md} +9 -9
- package/dist/containerRuntime.d.ts +8 -16
- package/dist/containerRuntime.d.ts.map +1 -1
- package/lib/containerRuntime.d.ts +8 -16
- package/lib/containerRuntime.d.ts.map +1 -1
- package/package.json +8 -8
- package/src/containerRuntime.ts +8 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
##
|
|
1
|
+
## Beta API Report File for "@fluidframework/container-runtime-definitions"
|
|
2
2
|
|
|
3
3
|
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
4
|
|
|
5
5
|
```ts
|
|
6
6
|
|
|
7
|
-
// @
|
|
7
|
+
// @beta @sealed @legacy
|
|
8
8
|
export interface IContainerRuntime extends IProvideFluidDataStoreRegistry, IContainerRuntimeBaseWithCombinedEvents {
|
|
9
9
|
readonly attachState: AttachState;
|
|
10
10
|
// (undocumented)
|
|
@@ -27,10 +27,10 @@ export interface IContainerRuntime extends IProvideFluidDataStoreRegistry, ICont
|
|
|
27
27
|
readonly storage: IContainerStorageService;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
-
// @
|
|
30
|
+
// @beta @sealed @legacy (undocumented)
|
|
31
31
|
export type IContainerRuntimeBaseWithCombinedEvents = IContainerRuntimeBase & IEventProvider<IContainerRuntimeEvents>;
|
|
32
32
|
|
|
33
|
-
// @
|
|
33
|
+
// @beta @sealed @legacy
|
|
34
34
|
export interface IContainerRuntimeEvents extends IContainerRuntimeBaseEvents, ISummarizerEvents {
|
|
35
35
|
// (undocumented)
|
|
36
36
|
(event: "dirty" | "disconnected" | "saved" | "attached", listener: () => void): any;
|
|
@@ -38,7 +38,7 @@ export interface IContainerRuntimeEvents extends IContainerRuntimeBaseEvents, IS
|
|
|
38
38
|
(event: "connected", listener: (clientId: string) => void): any;
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
-
// @
|
|
41
|
+
// @beta @deprecated @legacy (undocumented)
|
|
42
42
|
export interface IContainerRuntimeWithResolveHandle_Deprecated extends IContainerRuntime {
|
|
43
43
|
// (undocumented)
|
|
44
44
|
readonly IFluidHandleContext: IFluidHandleContext;
|
|
@@ -46,7 +46,7 @@ export interface IContainerRuntimeWithResolveHandle_Deprecated extends IContaine
|
|
|
46
46
|
resolveHandle(request: IRequest): Promise<IResponse>;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
// @
|
|
49
|
+
// @beta @sealed @legacy (undocumented)
|
|
50
50
|
export interface ISummarizeEventProps {
|
|
51
51
|
// (undocumented)
|
|
52
52
|
currentAttempt: number;
|
|
@@ -60,7 +60,7 @@ export interface ISummarizeEventProps {
|
|
|
60
60
|
result: "success" | "failure" | "canceled";
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
-
// @
|
|
63
|
+
// @beta @sealed @legacy (undocumented)
|
|
64
64
|
export interface ISummarizerEvents extends IEvent {
|
|
65
65
|
// (undocumented)
|
|
66
66
|
(event: "summarize", listener: (props: ISummarizeEventProps & ISummarizerObservabilityProps) => void): any;
|
|
@@ -81,7 +81,7 @@ export interface ISummarizerEvents extends IEvent {
|
|
|
81
81
|
} & ISummarizerObservabilityProps) => void): any;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
// @
|
|
84
|
+
// @beta @sealed @legacy (undocumented)
|
|
85
85
|
export interface ISummarizerObservabilityProps {
|
|
86
86
|
// (undocumented)
|
|
87
87
|
numUnsummarizedNonRuntimeOps: number;
|
|
@@ -89,7 +89,7 @@ export interface ISummarizerObservabilityProps {
|
|
|
89
89
|
numUnsummarizedRuntimeOps: number;
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
-
// @
|
|
92
|
+
// @beta @sealed @legacy (undocumented)
|
|
93
93
|
export type SummarizerStopReason =
|
|
94
94
|
/**
|
|
95
95
|
* Summarizer client failed to summarize in all attempts.
|
|
@@ -12,8 +12,7 @@ import type { FlushMode, IContainerRuntimeBase, IContainerRuntimeBaseEvents, IPr
|
|
|
12
12
|
import type { ContainerExtensionStore } from "./containerExtension.js";
|
|
13
13
|
/**
|
|
14
14
|
* @deprecated Will be removed in future major release. Migrate all usage of IFluidRouter to the "entryPoint" pattern. Refer to Removing-IFluidRouter.md
|
|
15
|
-
* @legacy
|
|
16
|
-
* @alpha
|
|
15
|
+
* @legacy @beta
|
|
17
16
|
*/
|
|
18
17
|
export interface IContainerRuntimeWithResolveHandle_Deprecated extends IContainerRuntime {
|
|
19
18
|
readonly IFluidHandleContext: IFluidHandleContext;
|
|
@@ -21,8 +20,7 @@ export interface IContainerRuntimeWithResolveHandle_Deprecated extends IContaine
|
|
|
21
20
|
}
|
|
22
21
|
/**
|
|
23
22
|
* Events emitted by {@link IContainerRuntime}.
|
|
24
|
-
* @legacy
|
|
25
|
-
* @alpha
|
|
23
|
+
* @legacy @beta
|
|
26
24
|
* @sealed
|
|
27
25
|
*/
|
|
28
26
|
export interface IContainerRuntimeEvents extends IContainerRuntimeBaseEvents, ISummarizerEvents {
|
|
@@ -30,8 +28,7 @@ export interface IContainerRuntimeEvents extends IContainerRuntimeBaseEvents, IS
|
|
|
30
28
|
(event: "connected", listener: (clientId: string) => void): any;
|
|
31
29
|
}
|
|
32
30
|
/**
|
|
33
|
-
* @legacy
|
|
34
|
-
* @alpha
|
|
31
|
+
* @legacy @beta
|
|
35
32
|
* @sealed
|
|
36
33
|
*/
|
|
37
34
|
export type SummarizerStopReason =
|
|
@@ -68,8 +65,7 @@ export type SummarizerStopReason =
|
|
|
68
65
|
*/
|
|
69
66
|
| "latestSummaryStateStale";
|
|
70
67
|
/**
|
|
71
|
-
* @legacy
|
|
72
|
-
* @alpha
|
|
68
|
+
* @legacy @beta
|
|
73
69
|
* @sealed
|
|
74
70
|
*/
|
|
75
71
|
export interface ISummarizeEventProps {
|
|
@@ -87,8 +83,7 @@ export interface ISummarizeEventProps {
|
|
|
87
83
|
isLastSummary?: boolean;
|
|
88
84
|
}
|
|
89
85
|
/**
|
|
90
|
-
* @legacy
|
|
91
|
-
* @alpha
|
|
86
|
+
* @legacy @beta
|
|
92
87
|
* @sealed
|
|
93
88
|
*/
|
|
94
89
|
export interface ISummarizerObservabilityProps {
|
|
@@ -96,8 +91,7 @@ export interface ISummarizerObservabilityProps {
|
|
|
96
91
|
numUnsummarizedNonRuntimeOps: number;
|
|
97
92
|
}
|
|
98
93
|
/**
|
|
99
|
-
* @legacy
|
|
100
|
-
* @alpha
|
|
94
|
+
* @legacy @beta
|
|
101
95
|
* @sealed
|
|
102
96
|
*/
|
|
103
97
|
export interface ISummarizerEvents extends IEvent {
|
|
@@ -115,15 +109,13 @@ export interface ISummarizerEvents extends IEvent {
|
|
|
115
109
|
} & ISummarizerObservabilityProps) => void): any;
|
|
116
110
|
}
|
|
117
111
|
/**
|
|
118
|
-
* @legacy
|
|
119
|
-
* @alpha
|
|
112
|
+
* @legacy @beta
|
|
120
113
|
* @sealed
|
|
121
114
|
*/
|
|
122
115
|
export type IContainerRuntimeBaseWithCombinedEvents = IContainerRuntimeBase & IEventProvider<IContainerRuntimeEvents>;
|
|
123
116
|
/**
|
|
124
117
|
* Represents the runtime of the container. Contains helper functions/state of the container.
|
|
125
|
-
* @legacy
|
|
126
|
-
* @alpha
|
|
118
|
+
* @legacy @beta
|
|
127
119
|
* @sealed
|
|
128
120
|
*/
|
|
129
121
|
export interface IContainerRuntime extends IProvideFluidDataStoreRegistry, IContainerRuntimeBaseWithCombinedEvents {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"containerRuntime.d.ts","sourceRoot":"","sources":["../src/containerRuntime.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC;AACzE,OAAO,KAAK,EACX,wBAAwB,EACxB,aAAa,EACb,MAAM,gDAAgD,CAAC;AACxD,OAAO,KAAK,EACX,WAAW,EACX,MAAM,EACN,cAAc,EACd,QAAQ,EACR,SAAS,EACT,MAAM,iCAAiC,CAAC;AACzC,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,0CAA0C,CAAC;AACpF,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AACzE,OAAO,KAAK,EACX,gBAAgB,EAChB,yBAAyB,EACzB,MAAM,6CAA6C,CAAC;AACrD,OAAO,KAAK,EACX,SAAS,EACT,qBAAqB,EACrB,2BAA2B,EAC3B,8BAA8B,EAC9B,MAAM,8CAA8C,CAAC;AAEtD,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,yBAAyB,CAAC;AAEvE
|
|
1
|
+
{"version":3,"file":"containerRuntime.d.ts","sourceRoot":"","sources":["../src/containerRuntime.ts"],"names":[],"mappings":"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"}
|
|
@@ -12,8 +12,7 @@ import type { FlushMode, IContainerRuntimeBase, IContainerRuntimeBaseEvents, IPr
|
|
|
12
12
|
import type { ContainerExtensionStore } from "./containerExtension.js";
|
|
13
13
|
/**
|
|
14
14
|
* @deprecated Will be removed in future major release. Migrate all usage of IFluidRouter to the "entryPoint" pattern. Refer to Removing-IFluidRouter.md
|
|
15
|
-
* @legacy
|
|
16
|
-
* @alpha
|
|
15
|
+
* @legacy @beta
|
|
17
16
|
*/
|
|
18
17
|
export interface IContainerRuntimeWithResolveHandle_Deprecated extends IContainerRuntime {
|
|
19
18
|
readonly IFluidHandleContext: IFluidHandleContext;
|
|
@@ -21,8 +20,7 @@ export interface IContainerRuntimeWithResolveHandle_Deprecated extends IContaine
|
|
|
21
20
|
}
|
|
22
21
|
/**
|
|
23
22
|
* Events emitted by {@link IContainerRuntime}.
|
|
24
|
-
* @legacy
|
|
25
|
-
* @alpha
|
|
23
|
+
* @legacy @beta
|
|
26
24
|
* @sealed
|
|
27
25
|
*/
|
|
28
26
|
export interface IContainerRuntimeEvents extends IContainerRuntimeBaseEvents, ISummarizerEvents {
|
|
@@ -30,8 +28,7 @@ export interface IContainerRuntimeEvents extends IContainerRuntimeBaseEvents, IS
|
|
|
30
28
|
(event: "connected", listener: (clientId: string) => void): any;
|
|
31
29
|
}
|
|
32
30
|
/**
|
|
33
|
-
* @legacy
|
|
34
|
-
* @alpha
|
|
31
|
+
* @legacy @beta
|
|
35
32
|
* @sealed
|
|
36
33
|
*/
|
|
37
34
|
export type SummarizerStopReason =
|
|
@@ -68,8 +65,7 @@ export type SummarizerStopReason =
|
|
|
68
65
|
*/
|
|
69
66
|
| "latestSummaryStateStale";
|
|
70
67
|
/**
|
|
71
|
-
* @legacy
|
|
72
|
-
* @alpha
|
|
68
|
+
* @legacy @beta
|
|
73
69
|
* @sealed
|
|
74
70
|
*/
|
|
75
71
|
export interface ISummarizeEventProps {
|
|
@@ -87,8 +83,7 @@ export interface ISummarizeEventProps {
|
|
|
87
83
|
isLastSummary?: boolean;
|
|
88
84
|
}
|
|
89
85
|
/**
|
|
90
|
-
* @legacy
|
|
91
|
-
* @alpha
|
|
86
|
+
* @legacy @beta
|
|
92
87
|
* @sealed
|
|
93
88
|
*/
|
|
94
89
|
export interface ISummarizerObservabilityProps {
|
|
@@ -96,8 +91,7 @@ export interface ISummarizerObservabilityProps {
|
|
|
96
91
|
numUnsummarizedNonRuntimeOps: number;
|
|
97
92
|
}
|
|
98
93
|
/**
|
|
99
|
-
* @legacy
|
|
100
|
-
* @alpha
|
|
94
|
+
* @legacy @beta
|
|
101
95
|
* @sealed
|
|
102
96
|
*/
|
|
103
97
|
export interface ISummarizerEvents extends IEvent {
|
|
@@ -115,15 +109,13 @@ export interface ISummarizerEvents extends IEvent {
|
|
|
115
109
|
} & ISummarizerObservabilityProps) => void): any;
|
|
116
110
|
}
|
|
117
111
|
/**
|
|
118
|
-
* @legacy
|
|
119
|
-
* @alpha
|
|
112
|
+
* @legacy @beta
|
|
120
113
|
* @sealed
|
|
121
114
|
*/
|
|
122
115
|
export type IContainerRuntimeBaseWithCombinedEvents = IContainerRuntimeBase & IEventProvider<IContainerRuntimeEvents>;
|
|
123
116
|
/**
|
|
124
117
|
* Represents the runtime of the container. Contains helper functions/state of the container.
|
|
125
|
-
* @legacy
|
|
126
|
-
* @alpha
|
|
118
|
+
* @legacy @beta
|
|
127
119
|
* @sealed
|
|
128
120
|
*/
|
|
129
121
|
export interface IContainerRuntime extends IProvideFluidDataStoreRegistry, IContainerRuntimeBaseWithCombinedEvents {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"containerRuntime.d.ts","sourceRoot":"","sources":["../src/containerRuntime.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC;AACzE,OAAO,KAAK,EACX,wBAAwB,EACxB,aAAa,EACb,MAAM,gDAAgD,CAAC;AACxD,OAAO,KAAK,EACX,WAAW,EACX,MAAM,EACN,cAAc,EACd,QAAQ,EACR,SAAS,EACT,MAAM,iCAAiC,CAAC;AACzC,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,0CAA0C,CAAC;AACpF,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AACzE,OAAO,KAAK,EACX,gBAAgB,EAChB,yBAAyB,EACzB,MAAM,6CAA6C,CAAC;AACrD,OAAO,KAAK,EACX,SAAS,EACT,qBAAqB,EACrB,2BAA2B,EAC3B,8BAA8B,EAC9B,MAAM,8CAA8C,CAAC;AAEtD,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,yBAAyB,CAAC;AAEvE
|
|
1
|
+
{"version":3,"file":"containerRuntime.d.ts","sourceRoot":"","sources":["../src/containerRuntime.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/container-runtime-definitions",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.60.0",
|
|
4
4
|
"description": "Fluid Runtime definitions",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"main": "",
|
|
42
42
|
"types": "lib/public.d.ts",
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@fluid-internal/client-utils": "~2.
|
|
45
|
-
"@fluidframework/container-definitions": "~2.
|
|
46
|
-
"@fluidframework/core-interfaces": "~2.
|
|
47
|
-
"@fluidframework/driver-definitions": "~2.
|
|
48
|
-
"@fluidframework/runtime-definitions": "~2.
|
|
44
|
+
"@fluid-internal/client-utils": "~2.60.0",
|
|
45
|
+
"@fluidframework/container-definitions": "~2.60.0",
|
|
46
|
+
"@fluidframework/core-interfaces": "~2.60.0",
|
|
47
|
+
"@fluidframework/driver-definitions": "~2.60.0",
|
|
48
|
+
"@fluidframework/runtime-definitions": "~2.60.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
"@fluid-tools/build-cli": "^0.57.0",
|
|
54
54
|
"@fluidframework/build-common": "^2.0.3",
|
|
55
55
|
"@fluidframework/build-tools": "^0.57.0",
|
|
56
|
-
"@fluidframework/container-runtime-definitions-previous": "npm:@fluidframework/container-runtime-definitions@2.
|
|
57
|
-
"@fluidframework/eslint-config-fluid": "^
|
|
56
|
+
"@fluidframework/container-runtime-definitions-previous": "npm:@fluidframework/container-runtime-definitions@2.53.0",
|
|
57
|
+
"@fluidframework/eslint-config-fluid": "^6.0.0",
|
|
58
58
|
"@microsoft/api-extractor": "7.52.8",
|
|
59
59
|
"concurrently": "^8.2.1",
|
|
60
60
|
"copyfiles": "^2.4.1",
|
package/src/containerRuntime.ts
CHANGED
|
@@ -32,8 +32,7 @@ import type { ContainerExtensionStore } from "./containerExtension.js";
|
|
|
32
32
|
|
|
33
33
|
/**
|
|
34
34
|
* @deprecated Will be removed in future major release. Migrate all usage of IFluidRouter to the "entryPoint" pattern. Refer to Removing-IFluidRouter.md
|
|
35
|
-
* @legacy
|
|
36
|
-
* @alpha
|
|
35
|
+
* @legacy @beta
|
|
37
36
|
*/
|
|
38
37
|
export interface IContainerRuntimeWithResolveHandle_Deprecated extends IContainerRuntime {
|
|
39
38
|
readonly IFluidHandleContext: IFluidHandleContext;
|
|
@@ -42,8 +41,7 @@ export interface IContainerRuntimeWithResolveHandle_Deprecated extends IContaine
|
|
|
42
41
|
|
|
43
42
|
/**
|
|
44
43
|
* Events emitted by {@link IContainerRuntime}.
|
|
45
|
-
* @legacy
|
|
46
|
-
* @alpha
|
|
44
|
+
* @legacy @beta
|
|
47
45
|
* @sealed
|
|
48
46
|
*/
|
|
49
47
|
export interface IContainerRuntimeEvents
|
|
@@ -54,8 +52,7 @@ export interface IContainerRuntimeEvents
|
|
|
54
52
|
}
|
|
55
53
|
|
|
56
54
|
/**
|
|
57
|
-
* @legacy
|
|
58
|
-
* @alpha
|
|
55
|
+
* @legacy @beta
|
|
59
56
|
* @sealed
|
|
60
57
|
*/
|
|
61
58
|
export type SummarizerStopReason =
|
|
@@ -93,8 +90,7 @@ export type SummarizerStopReason =
|
|
|
93
90
|
| "latestSummaryStateStale";
|
|
94
91
|
|
|
95
92
|
/**
|
|
96
|
-
* @legacy
|
|
97
|
-
* @alpha
|
|
93
|
+
* @legacy @beta
|
|
98
94
|
* @sealed
|
|
99
95
|
*/
|
|
100
96
|
export interface ISummarizeEventProps {
|
|
@@ -114,8 +110,7 @@ export interface ISummarizeEventProps {
|
|
|
114
110
|
}
|
|
115
111
|
|
|
116
112
|
/**
|
|
117
|
-
* @legacy
|
|
118
|
-
* @alpha
|
|
113
|
+
* @legacy @beta
|
|
119
114
|
* @sealed
|
|
120
115
|
*/
|
|
121
116
|
export interface ISummarizerObservabilityProps {
|
|
@@ -124,8 +119,7 @@ export interface ISummarizerObservabilityProps {
|
|
|
124
119
|
}
|
|
125
120
|
|
|
126
121
|
/**
|
|
127
|
-
* @legacy
|
|
128
|
-
* @alpha
|
|
122
|
+
* @legacy @beta
|
|
129
123
|
* @sealed
|
|
130
124
|
*/
|
|
131
125
|
export interface ISummarizerEvents extends IEvent {
|
|
@@ -159,8 +153,7 @@ export interface ISummarizerEvents extends IEvent {
|
|
|
159
153
|
}
|
|
160
154
|
|
|
161
155
|
/**
|
|
162
|
-
* @legacy
|
|
163
|
-
* @alpha
|
|
156
|
+
* @legacy @beta
|
|
164
157
|
* @sealed
|
|
165
158
|
*/
|
|
166
159
|
export type IContainerRuntimeBaseWithCombinedEvents = IContainerRuntimeBase &
|
|
@@ -168,8 +161,7 @@ export type IContainerRuntimeBaseWithCombinedEvents = IContainerRuntimeBase &
|
|
|
168
161
|
|
|
169
162
|
/**
|
|
170
163
|
* Represents the runtime of the container. Contains helper functions/state of the container.
|
|
171
|
-
* @legacy
|
|
172
|
-
* @alpha
|
|
164
|
+
* @legacy @beta
|
|
173
165
|
* @sealed
|
|
174
166
|
*/
|
|
175
167
|
export interface IContainerRuntime
|