@fluidframework/runtime-definitions 2.0.0-rc.4.0.6 → 2.0.0-rc.5.0.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 +51 -0
- package/api-extractor/api-extractor-lint-bundle.json +5 -0
- package/api-extractor/api-extractor-lint-legacy.cjs.json +5 -0
- package/api-extractor/api-extractor-lint-legacy.esm.json +5 -0
- package/api-extractor/api-extractor-lint-public.cjs.json +5 -0
- package/api-extractor/api-extractor-lint-public.esm.json +5 -0
- package/api-extractor.json +1 -1
- package/api-report/{runtime-definitions.api.md → runtime-definitions.alpha.api.md} +34 -82
- package/api-report/runtime-definitions.beta.api.md +37 -0
- package/api-report/runtime-definitions.public.api.md +37 -0
- package/biome.jsonc +4 -0
- package/dist/attribution.d.ts +1 -1
- package/dist/attribution.d.ts.map +1 -1
- package/dist/attribution.js.map +1 -1
- package/dist/dataStoreContext.d.ts +17 -33
- package/dist/dataStoreContext.d.ts.map +1 -1
- package/dist/dataStoreContext.js.map +1 -1
- package/dist/dataStoreFactory.d.ts.map +1 -1
- package/dist/dataStoreFactory.js.map +1 -1
- package/dist/garbageCollectionDefinitions.d.ts +1 -1
- package/dist/garbageCollectionDefinitions.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/legacy.d.ts +6 -8
- package/dist/protocol.d.ts +3 -3
- package/dist/protocol.d.ts.map +1 -1
- package/dist/protocol.js.map +1 -1
- package/dist/public.d.ts +2 -9
- package/dist/summary.d.ts +27 -22
- package/dist/summary.d.ts.map +1 -1
- package/dist/summary.js.map +1 -1
- package/lib/attribution.d.ts +1 -1
- package/lib/attribution.d.ts.map +1 -1
- package/lib/attribution.js.map +1 -1
- package/lib/dataStoreContext.d.ts +17 -33
- package/lib/dataStoreContext.d.ts.map +1 -1
- package/lib/dataStoreContext.js.map +1 -1
- package/lib/dataStoreFactory.d.ts.map +1 -1
- package/lib/dataStoreFactory.js.map +1 -1
- package/lib/garbageCollectionDefinitions.d.ts +1 -1
- package/lib/garbageCollectionDefinitions.js.map +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js.map +1 -1
- package/lib/legacy.d.ts +6 -8
- package/lib/protocol.d.ts +3 -3
- package/lib/protocol.d.ts.map +1 -1
- package/lib/protocol.js.map +1 -1
- package/lib/public.d.ts +2 -9
- package/lib/summary.d.ts +27 -22
- package/lib/summary.d.ts.map +1 -1
- package/lib/summary.js.map +1 -1
- package/lib/tsdoc-metadata.json +1 -1
- package/package.json +46 -17
- package/src/attribution.ts +1 -1
- package/src/dataStoreContext.ts +31 -46
- package/src/dataStoreFactory.ts +2 -1
- package/src/garbageCollectionDefinitions.ts +1 -1
- package/src/index.ts +1 -0
- package/src/protocol.ts +3 -3
- package/src/summary.ts +32 -24
- package/tsconfig.json +1 -0
- package/tsdoc.json +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,56 @@
|
|
|
1
1
|
# @fluidframework/runtime-definitions
|
|
2
2
|
|
|
3
|
+
## 2.0.0-rc.5.0.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- fluid-framework: Type Erase ISharedObjectKind ([#21081](https://github.com/microsoft/FluidFramework/pull/21081)) [78f228e370](https://github.com/microsoft/FluidFramework/commit/78f228e37055bd4d9a8f02b3a1eefebf4da9c59c)
|
|
8
|
+
|
|
9
|
+
A new type, `SharedObjectKind` is added as a type erased version of `ISharedObjectKind` and `DataObjectClass`.
|
|
10
|
+
|
|
11
|
+
This type fills the role of both `ISharedObjectKind` and `DataObjectClass` in the `@public` "declarative API" exposed in the `fluid-framework` package.
|
|
12
|
+
|
|
13
|
+
This allows several types referenced by `ISharedObjectKind` to be made `@alpha` as they should only need to be used by legacy code and users of the unstable/alpha/legacy "encapsulated API".
|
|
14
|
+
|
|
15
|
+
Access to these now less public types should not be required for users of the `@public` "declarative API" exposed in the `fluid-framework` package, but can still be accessed for those who need them under the `/legacy` import paths.
|
|
16
|
+
The full list of such types is:
|
|
17
|
+
|
|
18
|
+
- `SharedTree` as exported from `@fluidframwork/tree`: It is still exported as `@public` from `fluid-framework` as `SharedObjectKind`.
|
|
19
|
+
- `ISharedObjectKind`: See new `SharedObjectKind` type for use in `@public` APIs.
|
|
20
|
+
`ISharedObject`
|
|
21
|
+
- `IChannel`
|
|
22
|
+
- `IChannelAttributes`
|
|
23
|
+
- `IChannelFactory`
|
|
24
|
+
- `IExperimentalIncrementalSummaryContext`
|
|
25
|
+
- `IGarbageCollectionData`
|
|
26
|
+
- `ISummaryStats`
|
|
27
|
+
- `ISummaryTreeWithStats`
|
|
28
|
+
- `ITelemetryContext`
|
|
29
|
+
- `IDeltaManagerErased`
|
|
30
|
+
- `IFluidDataStoreRuntimeEvents`
|
|
31
|
+
- `IFluidHandleContext`
|
|
32
|
+
- `IProvideFluidHandleContext`
|
|
33
|
+
|
|
34
|
+
Removed APIs:
|
|
35
|
+
|
|
36
|
+
- `DataObjectClass`: Usages replaced with `SharedObjectKind`.
|
|
37
|
+
- `LoadableObjectClass`: Replaced with `SharedObjectKind`.
|
|
38
|
+
- `LoadableObjectClassRecord`: Replaced with `Record<string, SharedObjectKind>`.
|
|
39
|
+
-
|
|
40
|
+
|
|
41
|
+
- Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6)
|
|
42
|
+
|
|
43
|
+
Update package implementations to use TypeScript 5.4.5.
|
|
44
|
+
|
|
45
|
+
- runtime-definitions: Remove deprecated 'get' and 'serialize' members on the ITelemetryContext interface ([#21009](https://github.com/microsoft/FluidFramework/pull/21009)) [c0483b49a3](https://github.com/microsoft/FluidFramework/commit/c0483b49a31df87b3a7d3eafd4175efd5eb1762f)
|
|
46
|
+
|
|
47
|
+
The `ITelemetryContext` interface was not intended to allow getting properties that had been added to it, so it is now "write-only". Internal usage within FluidFramework should use the new `ITelemetryContextExt`.
|
|
48
|
+
|
|
49
|
+
- runtime-definitions: Make IInboundSignalMessage alpha and readonly ([#21226](https://github.com/microsoft/FluidFramework/pull/21226)) [1df91dd844](https://github.com/microsoft/FluidFramework/commit/1df91dd844bebcb6c837370827b244a01eca8295)
|
|
50
|
+
|
|
51
|
+
Users of `IInboundSignalMessage` will need to import it from the `/legacy` scope and should not mutate it.
|
|
52
|
+
Only users of existing `@alpha` APIs like `IFluidDataStoreRuntime` should be able to use this type, so it should not introduce new `/legacy` usage.
|
|
53
|
+
|
|
3
54
|
## 2.0.0-rc.4.0.0
|
|
4
55
|
|
|
5
56
|
### Minor Changes
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
|
|
3
|
+
"extends": "<projectFolder>/../../../common/build/build-common/api-extractor-lint.entrypoint.json",
|
|
4
|
+
"mainEntryPointFilePath": "<projectFolder>/dist/legacy.d.ts"
|
|
5
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
|
|
3
|
+
"extends": "<projectFolder>/../../../common/build/build-common/api-extractor-lint.entrypoint.json",
|
|
4
|
+
"mainEntryPointFilePath": "<projectFolder>/lib/legacy.d.ts"
|
|
5
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
|
|
3
|
+
"extends": "<projectFolder>/../../../common/build/build-common/api-extractor-lint.entrypoint.json",
|
|
4
|
+
"mainEntryPointFilePath": "<projectFolder>/dist/public.d.ts"
|
|
5
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
|
|
3
|
+
"extends": "<projectFolder>/../../../common/build/build-common/api-extractor-lint.entrypoint.json",
|
|
4
|
+
"mainEntryPointFilePath": "<projectFolder>/lib/public.d.ts"
|
|
5
|
+
}
|
package/api-extractor.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
|
|
3
|
-
"extends": "../../../common/build/build-common/api-extractor-base.esm.
|
|
3
|
+
"extends": "../../../common/build/build-common/api-extractor-base.esm.current.json"
|
|
4
4
|
}
|
|
@@ -1,35 +1,36 @@
|
|
|
1
|
-
## API Report File for "@fluidframework/runtime-definitions"
|
|
1
|
+
## Alpha API Report File for "@fluidframework/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
|
import type { AttachState } from '@fluidframework/container-definitions';
|
|
8
|
-
import type { FluidObject } from '@fluidframework/core-interfaces
|
|
8
|
+
import type { FluidObject } from '@fluidframework/core-interfaces';
|
|
9
9
|
import type { IAudience } from '@fluidframework/container-definitions';
|
|
10
|
-
import type { IClientDetails } from '@fluidframework/
|
|
10
|
+
import type { IClientDetails } from '@fluidframework/driver-definitions';
|
|
11
11
|
import type { IDeltaManager } from '@fluidframework/container-definitions/internal';
|
|
12
|
-
import type { IDisposable } from '@fluidframework/core-interfaces
|
|
13
|
-
import type { IDocumentMessage } from '@fluidframework/
|
|
12
|
+
import type { IDisposable } from '@fluidframework/core-interfaces';
|
|
13
|
+
import type { IDocumentMessage } from '@fluidframework/driver-definitions/internal';
|
|
14
14
|
import type { IDocumentStorageService } from '@fluidframework/driver-definitions/internal';
|
|
15
|
-
import type { IEvent } from '@fluidframework/core-interfaces
|
|
16
|
-
import type { IEventProvider } from '@fluidframework/core-interfaces
|
|
17
|
-
import type { IFluidHandle } from '@fluidframework/core-interfaces
|
|
15
|
+
import type { IEvent } from '@fluidframework/core-interfaces';
|
|
16
|
+
import type { IEventProvider } from '@fluidframework/core-interfaces';
|
|
17
|
+
import type { IFluidHandle } from '@fluidframework/core-interfaces';
|
|
18
18
|
import type { IFluidHandleInternal } from '@fluidframework/core-interfaces/internal';
|
|
19
19
|
import type { IIdCompressor } from '@fluidframework/id-compressor';
|
|
20
20
|
import type { IProvideFluidHandleContext } from '@fluidframework/core-interfaces/internal';
|
|
21
|
-
import type { IQuorumClients } from '@fluidframework/
|
|
22
|
-
import type { IRequest } from '@fluidframework/core-interfaces
|
|
23
|
-
import type { IResponse } from '@fluidframework/core-interfaces
|
|
24
|
-
import type { ISequencedDocumentMessage } from '@fluidframework/
|
|
25
|
-
import type { ISignalMessage } from '@fluidframework/
|
|
26
|
-
import type { ISnapshotTree } from '@fluidframework/
|
|
27
|
-
import type { ISummaryTree } from '@fluidframework/
|
|
28
|
-
import type { ITelemetryBaseLogger } from '@fluidframework/core-interfaces
|
|
29
|
-
import type { ITree } from '@fluidframework/
|
|
30
|
-
import type { IUser } from '@fluidframework/
|
|
31
|
-
import type { SummaryTree } from '@fluidframework/
|
|
21
|
+
import type { IQuorumClients } from '@fluidframework/driver-definitions';
|
|
22
|
+
import type { IRequest } from '@fluidframework/core-interfaces';
|
|
23
|
+
import type { IResponse } from '@fluidframework/core-interfaces';
|
|
24
|
+
import type { ISequencedDocumentMessage } from '@fluidframework/driver-definitions/internal';
|
|
25
|
+
import type { ISignalMessage } from '@fluidframework/driver-definitions/internal';
|
|
26
|
+
import type { ISnapshotTree } from '@fluidframework/driver-definitions/internal';
|
|
27
|
+
import type { ISummaryTree } from '@fluidframework/driver-definitions';
|
|
28
|
+
import type { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
29
|
+
import type { ITree } from '@fluidframework/driver-definitions/internal';
|
|
30
|
+
import type { IUser } from '@fluidframework/driver-definitions';
|
|
31
|
+
import type { SummaryTree } from '@fluidframework/driver-definitions/internal';
|
|
32
32
|
import type { TelemetryBaseEventPropertyType } from '@fluidframework/core-interfaces';
|
|
33
|
+
import type { TelemetryEventPropertyTypeExt } from '@fluidframework/telemetry-utils/internal';
|
|
33
34
|
|
|
34
35
|
// @alpha
|
|
35
36
|
export type AliasResult = "Success" | "Conflict" | "AlreadyAliased";
|
|
@@ -43,12 +44,6 @@ export interface AttributionInfo {
|
|
|
43
44
|
// @alpha
|
|
44
45
|
export type AttributionKey = OpAttributionKey | DetachedAttributionKey | LocalAttributionKey;
|
|
45
46
|
|
|
46
|
-
// @internal (undocumented)
|
|
47
|
-
export const blobCountPropertyName = "BlobCount";
|
|
48
|
-
|
|
49
|
-
// @internal (undocumented)
|
|
50
|
-
export const channelsTreeName = ".channels";
|
|
51
|
-
|
|
52
47
|
// @alpha (undocumented)
|
|
53
48
|
export type CreateChildSummarizerNodeFn = (summarizeInternal: SummarizeInternalFn, getGCDataFn: (fullGC?: boolean) => Promise<IGarbageCollectionData>,
|
|
54
49
|
getBaseGCDetailsFn?: () => Promise<IGarbageCollectionDetailsBase>) => ISummarizerNodeWithGC;
|
|
@@ -91,26 +86,6 @@ export enum FlushMode {
|
|
|
91
86
|
TurnBased = 1
|
|
92
87
|
}
|
|
93
88
|
|
|
94
|
-
// @internal (undocumented)
|
|
95
|
-
export enum FlushModeExperimental {
|
|
96
|
-
Async = 2
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
// @internal
|
|
100
|
-
export const gcBlobPrefix = "__gc";
|
|
101
|
-
|
|
102
|
-
// @internal
|
|
103
|
-
export const gcDataBlobKey = ".gcdata";
|
|
104
|
-
|
|
105
|
-
// @internal
|
|
106
|
-
export const gcDeletedBlobKey = "__deletedNodes";
|
|
107
|
-
|
|
108
|
-
// @internal
|
|
109
|
-
export const gcTombstoneBlobKey = "__tombstones";
|
|
110
|
-
|
|
111
|
-
// @internal
|
|
112
|
-
export const gcTreeKey = "gc";
|
|
113
|
-
|
|
114
89
|
// @alpha
|
|
115
90
|
export interface IAttachMessage {
|
|
116
91
|
id: string;
|
|
@@ -120,6 +95,8 @@ export interface IAttachMessage {
|
|
|
120
95
|
|
|
121
96
|
// @alpha
|
|
122
97
|
export interface IContainerRuntimeBase extends IEventProvider<IContainerRuntimeBaseEvents> {
|
|
98
|
+
// (undocumented)
|
|
99
|
+
readonly baseLogger: ITelemetryBaseLogger;
|
|
123
100
|
// (undocumented)
|
|
124
101
|
readonly clientDetails: IClientDetails;
|
|
125
102
|
createDataStore(pkg: Readonly<string | string[]>, loadingGroupId?: string): Promise<IDataStore>;
|
|
@@ -136,8 +113,6 @@ export interface IContainerRuntimeBase extends IEventProvider<IContainerRuntimeB
|
|
|
136
113
|
snapshotTree: ISnapshotTree;
|
|
137
114
|
sequenceNumber: number;
|
|
138
115
|
}>;
|
|
139
|
-
// (undocumented)
|
|
140
|
-
readonly logger: ITelemetryBaseLogger;
|
|
141
116
|
orderSequentially(callback: () => void): void;
|
|
142
117
|
submitSignal: (type: string, content: unknown, targetClientId?: string) => void;
|
|
143
118
|
// (undocumented)
|
|
@@ -170,7 +145,7 @@ export interface IEnvelope {
|
|
|
170
145
|
contents: any;
|
|
171
146
|
}
|
|
172
147
|
|
|
173
|
-
// @
|
|
148
|
+
// @alpha
|
|
174
149
|
export interface IExperimentalIncrementalSummaryContext {
|
|
175
150
|
latestSummarySequenceNumber: number;
|
|
176
151
|
summaryPath: string;
|
|
@@ -182,11 +157,11 @@ export interface IFluidDataStoreChannel extends IDisposable {
|
|
|
182
157
|
// (undocumented)
|
|
183
158
|
applyStashedOp(content: any): Promise<unknown>;
|
|
184
159
|
readonly entryPoint: IFluidHandleInternal<FluidObject>;
|
|
185
|
-
getAttachGCData
|
|
160
|
+
getAttachGCData(telemetryContext?: ITelemetryContext): IGarbageCollectionData;
|
|
186
161
|
getAttachSummary(telemetryContext?: ITelemetryContext): ISummaryTreeWithStats;
|
|
187
162
|
getGCData(fullGC?: boolean): Promise<IGarbageCollectionData>;
|
|
188
163
|
makeVisibleAndAttachGraph(): void;
|
|
189
|
-
process(message: ISequencedDocumentMessage, local: boolean, localOpMetadata: unknown
|
|
164
|
+
process(message: ISequencedDocumentMessage, local: boolean, localOpMetadata: unknown): void;
|
|
190
165
|
processSignal(message: IInboundSignalMessage, local: boolean): void;
|
|
191
166
|
// (undocumented)
|
|
192
167
|
request(request: IRequest): Promise<IResponse>;
|
|
@@ -201,7 +176,6 @@ export interface IFluidDataStoreChannel extends IDisposable {
|
|
|
201
176
|
|
|
202
177
|
// @alpha
|
|
203
178
|
export interface IFluidDataStoreContext extends IFluidParentContext {
|
|
204
|
-
addedGCOutboundRoute?(fromPath: string, toPath: string): void;
|
|
205
179
|
// (undocumented)
|
|
206
180
|
readonly baseSnapshot: ISnapshotTree | undefined;
|
|
207
181
|
// @deprecated (undocumented)
|
|
@@ -239,14 +213,11 @@ export interface IFluidDataStoreRegistry extends IProvideFluidDataStoreRegistry
|
|
|
239
213
|
|
|
240
214
|
// @alpha
|
|
241
215
|
export interface IFluidParentContext extends IProvideFluidHandleContext, Partial<IProvideFluidDataStoreRegistry> {
|
|
242
|
-
|
|
243
|
-
addedGCOutboundReference?(srcHandle: {
|
|
244
|
-
absolutePath: string;
|
|
245
|
-
}, outboundHandle: {
|
|
246
|
-
absolutePath: string;
|
|
247
|
-
}): void;
|
|
216
|
+
addedGCOutboundRoute(fromPath: string, toPath: string, messageTimestampMs?: number): void;
|
|
248
217
|
readonly attachState: AttachState;
|
|
249
218
|
// (undocumented)
|
|
219
|
+
readonly baseLogger: ITelemetryBaseLogger;
|
|
220
|
+
// (undocumented)
|
|
250
221
|
readonly clientDetails: IClientDetails;
|
|
251
222
|
// (undocumented)
|
|
252
223
|
readonly clientId: string | undefined;
|
|
@@ -274,8 +245,6 @@ export interface IFluidParentContext extends IProvideFluidHandleContext, Partial
|
|
|
274
245
|
// (undocumented)
|
|
275
246
|
readonly idCompressor?: IIdCompressor;
|
|
276
247
|
readonly loadingGroupId?: string;
|
|
277
|
-
// (undocumented)
|
|
278
|
-
readonly logger: ITelemetryBaseLogger;
|
|
279
248
|
makeLocallyVisible(): void;
|
|
280
249
|
// (undocumented)
|
|
281
250
|
readonly options: Record<string | number, any>;
|
|
@@ -289,7 +258,7 @@ export interface IFluidParentContext extends IProvideFluidHandleContext, Partial
|
|
|
289
258
|
uploadBlob(blob: ArrayBufferLike, signal?: AbortSignal): Promise<IFluidHandleInternal<ArrayBufferLike>>;
|
|
290
259
|
}
|
|
291
260
|
|
|
292
|
-
// @
|
|
261
|
+
// @alpha
|
|
293
262
|
export interface IGarbageCollectionData {
|
|
294
263
|
gcNodes: {
|
|
295
264
|
[id: string]: string[];
|
|
@@ -302,10 +271,10 @@ export interface IGarbageCollectionDetailsBase {
|
|
|
302
271
|
usedRoutes?: string[];
|
|
303
272
|
}
|
|
304
273
|
|
|
305
|
-
// @
|
|
274
|
+
// @alpha
|
|
306
275
|
export interface IInboundSignalMessage extends ISignalMessage {
|
|
307
276
|
// (undocumented)
|
|
308
|
-
type: string;
|
|
277
|
+
readonly type: string;
|
|
309
278
|
}
|
|
310
279
|
|
|
311
280
|
// @alpha
|
|
@@ -325,16 +294,6 @@ export interface IProvideFluidDataStoreRegistry {
|
|
|
325
294
|
readonly IFluidDataStoreRegistry: IFluidDataStoreRegistry;
|
|
326
295
|
}
|
|
327
296
|
|
|
328
|
-
// @internal @deprecated (undocumented)
|
|
329
|
-
export interface ISignalEnvelope {
|
|
330
|
-
address?: string;
|
|
331
|
-
clientSignalSequenceNumber: number;
|
|
332
|
-
contents: {
|
|
333
|
-
type: string;
|
|
334
|
-
content: any;
|
|
335
|
-
};
|
|
336
|
-
}
|
|
337
|
-
|
|
338
297
|
// @alpha
|
|
339
298
|
export interface ISummarizeInternalResult extends ISummarizeResult {
|
|
340
299
|
// (undocumented)
|
|
@@ -395,7 +354,7 @@ export interface ISummarizerNodeWithGC extends ISummarizerNode {
|
|
|
395
354
|
updateUsedRoutes(usedRoutes: string[]): void;
|
|
396
355
|
}
|
|
397
356
|
|
|
398
|
-
// @
|
|
357
|
+
// @alpha
|
|
399
358
|
export interface ISummaryStats {
|
|
400
359
|
// (undocumented)
|
|
401
360
|
blobNodeCount: number;
|
|
@@ -409,18 +368,14 @@ export interface ISummaryStats {
|
|
|
409
368
|
unreferencedBlobSize: number;
|
|
410
369
|
}
|
|
411
370
|
|
|
412
|
-
// @
|
|
371
|
+
// @alpha
|
|
413
372
|
export interface ISummaryTreeWithStats {
|
|
414
373
|
stats: ISummaryStats;
|
|
415
374
|
summary: ISummaryTree;
|
|
416
375
|
}
|
|
417
376
|
|
|
418
|
-
// @
|
|
377
|
+
// @alpha
|
|
419
378
|
export interface ITelemetryContext {
|
|
420
|
-
// @deprecated
|
|
421
|
-
get(prefix: string, property: string): TelemetryBaseEventPropertyType;
|
|
422
|
-
// @deprecated
|
|
423
|
-
serialize(): string;
|
|
424
379
|
set(prefix: string, property: string, value: TelemetryBaseEventPropertyType): void;
|
|
425
380
|
setMultiple(prefix: string, property: string, values: Record<string, TelemetryBaseEventPropertyType>): void;
|
|
426
381
|
}
|
|
@@ -446,9 +401,6 @@ export interface OpAttributionKey {
|
|
|
446
401
|
// @alpha (undocumented)
|
|
447
402
|
export type SummarizeInternalFn = (fullTree: boolean, trackState: boolean, telemetryContext?: ITelemetryContext, incrementalSummaryContext?: IExperimentalIncrementalSummaryContext) => Promise<ISummarizeInternalResult>;
|
|
448
403
|
|
|
449
|
-
// @internal (undocumented)
|
|
450
|
-
export const totalBlobSizePropertyName = "TotalBlobSize";
|
|
451
|
-
|
|
452
404
|
// @alpha
|
|
453
405
|
export const VisibilityState: {
|
|
454
406
|
NotVisible: string;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
## Beta API Report File for "@fluidframework/runtime-definitions"
|
|
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 type { AttachState } from '@fluidframework/container-definitions';
|
|
8
|
+
import type { FluidObject } from '@fluidframework/core-interfaces';
|
|
9
|
+
import type { IAudience } from '@fluidframework/container-definitions';
|
|
10
|
+
import type { IClientDetails } from '@fluidframework/driver-definitions';
|
|
11
|
+
import type { IDeltaManager } from '@fluidframework/container-definitions/internal';
|
|
12
|
+
import type { IDisposable } from '@fluidframework/core-interfaces';
|
|
13
|
+
import type { IDocumentMessage } from '@fluidframework/driver-definitions/internal';
|
|
14
|
+
import type { IDocumentStorageService } from '@fluidframework/driver-definitions/internal';
|
|
15
|
+
import type { IEvent } from '@fluidframework/core-interfaces';
|
|
16
|
+
import type { IEventProvider } from '@fluidframework/core-interfaces';
|
|
17
|
+
import type { IFluidHandle } from '@fluidframework/core-interfaces';
|
|
18
|
+
import type { IFluidHandleInternal } from '@fluidframework/core-interfaces/internal';
|
|
19
|
+
import type { IIdCompressor } from '@fluidframework/id-compressor';
|
|
20
|
+
import type { IProvideFluidHandleContext } from '@fluidframework/core-interfaces/internal';
|
|
21
|
+
import type { IQuorumClients } from '@fluidframework/driver-definitions';
|
|
22
|
+
import type { IRequest } from '@fluidframework/core-interfaces';
|
|
23
|
+
import type { IResponse } from '@fluidframework/core-interfaces';
|
|
24
|
+
import type { ISequencedDocumentMessage } from '@fluidframework/driver-definitions/internal';
|
|
25
|
+
import type { ISignalMessage } from '@fluidframework/driver-definitions/internal';
|
|
26
|
+
import type { ISnapshotTree } from '@fluidframework/driver-definitions/internal';
|
|
27
|
+
import type { ISummaryTree } from '@fluidframework/driver-definitions';
|
|
28
|
+
import type { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
29
|
+
import type { ITree } from '@fluidframework/driver-definitions/internal';
|
|
30
|
+
import type { IUser } from '@fluidframework/driver-definitions';
|
|
31
|
+
import type { SummaryTree } from '@fluidframework/driver-definitions/internal';
|
|
32
|
+
import type { TelemetryBaseEventPropertyType } from '@fluidframework/core-interfaces';
|
|
33
|
+
import type { TelemetryEventPropertyTypeExt } from '@fluidframework/telemetry-utils/internal';
|
|
34
|
+
|
|
35
|
+
// (No @packageDocumentation comment for this package)
|
|
36
|
+
|
|
37
|
+
```
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
## Public API Report File for "@fluidframework/runtime-definitions"
|
|
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 type { AttachState } from '@fluidframework/container-definitions';
|
|
8
|
+
import type { FluidObject } from '@fluidframework/core-interfaces';
|
|
9
|
+
import type { IAudience } from '@fluidframework/container-definitions';
|
|
10
|
+
import type { IClientDetails } from '@fluidframework/driver-definitions';
|
|
11
|
+
import type { IDeltaManager } from '@fluidframework/container-definitions/internal';
|
|
12
|
+
import type { IDisposable } from '@fluidframework/core-interfaces';
|
|
13
|
+
import type { IDocumentMessage } from '@fluidframework/driver-definitions/internal';
|
|
14
|
+
import type { IDocumentStorageService } from '@fluidframework/driver-definitions/internal';
|
|
15
|
+
import type { IEvent } from '@fluidframework/core-interfaces';
|
|
16
|
+
import type { IEventProvider } from '@fluidframework/core-interfaces';
|
|
17
|
+
import type { IFluidHandle } from '@fluidframework/core-interfaces';
|
|
18
|
+
import type { IFluidHandleInternal } from '@fluidframework/core-interfaces/internal';
|
|
19
|
+
import type { IIdCompressor } from '@fluidframework/id-compressor';
|
|
20
|
+
import type { IProvideFluidHandleContext } from '@fluidframework/core-interfaces/internal';
|
|
21
|
+
import type { IQuorumClients } from '@fluidframework/driver-definitions';
|
|
22
|
+
import type { IRequest } from '@fluidframework/core-interfaces';
|
|
23
|
+
import type { IResponse } from '@fluidframework/core-interfaces';
|
|
24
|
+
import type { ISequencedDocumentMessage } from '@fluidframework/driver-definitions/internal';
|
|
25
|
+
import type { ISignalMessage } from '@fluidframework/driver-definitions/internal';
|
|
26
|
+
import type { ISnapshotTree } from '@fluidframework/driver-definitions/internal';
|
|
27
|
+
import type { ISummaryTree } from '@fluidframework/driver-definitions';
|
|
28
|
+
import type { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
29
|
+
import type { ITree } from '@fluidframework/driver-definitions/internal';
|
|
30
|
+
import type { IUser } from '@fluidframework/driver-definitions';
|
|
31
|
+
import type { SummaryTree } from '@fluidframework/driver-definitions/internal';
|
|
32
|
+
import type { TelemetryBaseEventPropertyType } from '@fluidframework/core-interfaces';
|
|
33
|
+
import type { TelemetryEventPropertyTypeExt } from '@fluidframework/telemetry-utils/internal';
|
|
34
|
+
|
|
35
|
+
// (No @packageDocumentation comment for this package)
|
|
36
|
+
|
|
37
|
+
```
|
package/biome.jsonc
ADDED
package/dist/attribution.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
|
|
3
3
|
* Licensed under the MIT License.
|
|
4
4
|
*/
|
|
5
|
-
import type { IUser } from "@fluidframework/
|
|
5
|
+
import type { IUser } from "@fluidframework/driver-definitions";
|
|
6
6
|
/**
|
|
7
7
|
* AttributionKey representing a reference to some op in the op stream.
|
|
8
8
|
* Content associated with this key aligns with content modified by that op.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"attribution.d.ts","sourceRoot":"","sources":["../src/attribution.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"attribution.d.ts","sourceRoot":"","sources":["../src/attribution.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,oCAAoC,CAAC;AAEhE;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAChC;;;;;OAKG;IACH,IAAI,EAAE,IAAI,CAAC;IAEX;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;CACZ;AAED;;;;;;;;GAQG;AACH,MAAM,WAAW,sBAAsB;IACtC,IAAI,EAAE,UAAU,CAAC;IAEjB;;;;;;;OAOG;IACH,EAAE,EAAE,CAAC,CAAC;CACN;AAED;;;GAGG;AACH,MAAM,WAAW,mBAAmB;IACnC,IAAI,EAAE,OAAO,CAAC;CACd;AAED;;;GAGG;AACH,MAAM,MAAM,cAAc,GAAG,gBAAgB,GAAG,sBAAsB,GAAG,mBAAmB,CAAC;AAE7F;;;GAGG;AACH,MAAM,WAAW,eAAe;IAC/B;;OAEG;IACH,IAAI,EAAE,KAAK,CAAC;IACZ;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;CAClB"}
|
package/dist/attribution.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"attribution.js","sourceRoot":"","sources":["../src/attribution.ts"],"names":[],"mappings":";AAAA;;;GAGG","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport type { IUser } from \"@fluidframework/
|
|
1
|
+
{"version":3,"file":"attribution.js","sourceRoot":"","sources":["../src/attribution.ts"],"names":[],"mappings":";AAAA;;;GAGG","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport type { IUser } from \"@fluidframework/driver-definitions\";\n\n/**\n * AttributionKey representing a reference to some op in the op stream.\n * Content associated with this key aligns with content modified by that op.\n * @alpha\n */\nexport interface OpAttributionKey {\n\t/**\n\t * The type of attribution this key corresponds to.\n\t *\n\t * Keys currently all represent op-based attribution, so have the form `{ type: \"op\", key: sequenceNumber }`.\n\t * Thus, they can be used with an `OpStreamAttributor` to recover timestamp/user information.\n\t */\n\ttype: \"op\";\n\n\t/**\n\t * The sequenceNumber of the op this attribution key is for.\n\t */\n\tseq: number;\n}\n\n/**\n * AttributionKey associated with content that was inserted while the container was in a detached state.\n *\n * @remarks Retrieving an {@link AttributionInfo} from content associated with detached attribution keys\n * is currently unsupported, as applications can effectively modify content anonymously while detached.\n * The runtime has no mechanism for reliably obtaining the user. It would be reasonable to start supporting\n * this functionality if the host provided additional context to their attributor or attach calls.\n * @alpha\n */\nexport interface DetachedAttributionKey {\n\ttype: \"detached\";\n\n\t/**\n\t * Arbitrary discriminator associated with content inserted while detached.\n\t *\n\t * @remarks For now, the runtime assumes all content created while detached is associated\n\t * with the same user/timestamp.\n\t * We could weaken this assumption in the future with further API support and\n\t * allow arbitrary strings or numbers as part of this key.\n\t */\n\tid: 0;\n}\n\n/**\n * AttributionKey associated with content that has been made locally but not yet acked by the server.\n * @alpha\n */\nexport interface LocalAttributionKey {\n\ttype: \"local\";\n}\n\n/**\n * Can be indexed into the ContainerRuntime in order to retrieve {@link AttributionInfo}.\n * @alpha\n */\nexport type AttributionKey = OpAttributionKey | DetachedAttributionKey | LocalAttributionKey;\n\n/**\n * Attribution information associated with a change.\n * @alpha\n */\nexport interface AttributionInfo {\n\t/**\n\t * The user that performed the change.\n\t */\n\tuser: IUser;\n\t/**\n\t * When the change happened.\n\t */\n\ttimestamp: number;\n}\n"]}
|
|
@@ -4,10 +4,11 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import type { AttachState, IAudience } from "@fluidframework/container-definitions";
|
|
6
6
|
import type { IDeltaManager } from "@fluidframework/container-definitions/internal";
|
|
7
|
-
import type { FluidObject, IDisposable, IEvent, IEventProvider, IFluidHandle,
|
|
8
|
-
import type {
|
|
7
|
+
import type { FluidObject, IDisposable, IEvent, IEventProvider, IFluidHandle, IRequest, IResponse, ITelemetryBaseLogger } from "@fluidframework/core-interfaces";
|
|
8
|
+
import type { IFluidHandleInternal, IProvideFluidHandleContext } from "@fluidframework/core-interfaces/internal";
|
|
9
|
+
import type { IClientDetails, IQuorumClients } from "@fluidframework/driver-definitions";
|
|
10
|
+
import type { IDocumentStorageService, IDocumentMessage, ISnapshotTree, ISequencedDocumentMessage } from "@fluidframework/driver-definitions/internal";
|
|
9
11
|
import type { IIdCompressor } from "@fluidframework/id-compressor";
|
|
10
|
-
import type { IClientDetails, IDocumentMessage, IQuorumClients, ISequencedDocumentMessage, ISnapshotTree } from "@fluidframework/protocol-definitions";
|
|
11
12
|
import type { IProvideFluidDataStoreFactory } from "./dataStoreFactory.js";
|
|
12
13
|
import type { IProvideFluidDataStoreRegistry } from "./dataStoreRegistry.js";
|
|
13
14
|
import type { IGarbageCollectionData, IGarbageCollectionDetailsBase } from "./garbageCollectionDefinitions.js";
|
|
@@ -131,7 +132,7 @@ export interface IDataStore {
|
|
|
131
132
|
* @alpha
|
|
132
133
|
*/
|
|
133
134
|
export interface IContainerRuntimeBase extends IEventProvider<IContainerRuntimeBaseEvents> {
|
|
134
|
-
readonly
|
|
135
|
+
readonly baseLogger: ITelemetryBaseLogger;
|
|
135
136
|
readonly clientDetails: IClientDetails;
|
|
136
137
|
readonly disposed: boolean;
|
|
137
138
|
/**
|
|
@@ -231,11 +232,11 @@ export interface IFluidDataStoreChannel extends IDisposable {
|
|
|
231
232
|
/**
|
|
232
233
|
* Synchronously retrieves GC Data (representing the outbound routes present) for the initial state of the DataStore
|
|
233
234
|
*/
|
|
234
|
-
getAttachGCData
|
|
235
|
+
getAttachGCData(telemetryContext?: ITelemetryContext): IGarbageCollectionData;
|
|
235
236
|
/**
|
|
236
237
|
* Processes the op.
|
|
237
238
|
*/
|
|
238
|
-
process(message: ISequencedDocumentMessage, local: boolean, localOpMetadata: unknown
|
|
239
|
+
process(message: ISequencedDocumentMessage, local: boolean, localOpMetadata: unknown): void;
|
|
239
240
|
/**
|
|
240
241
|
* Processes the signal.
|
|
241
242
|
*/
|
|
@@ -311,7 +312,7 @@ export interface IFluidParentContext extends IProvideFluidHandleContext, Partial
|
|
|
311
312
|
readonly connected: boolean;
|
|
312
313
|
readonly deltaManager: IDeltaManager<ISequencedDocumentMessage, IDocumentMessage>;
|
|
313
314
|
readonly storage: IDocumentStorageService;
|
|
314
|
-
readonly
|
|
315
|
+
readonly baseLogger: ITelemetryBaseLogger;
|
|
315
316
|
readonly clientDetails: IClientDetails;
|
|
316
317
|
readonly idCompressor?: IIdCompressor;
|
|
317
318
|
/**
|
|
@@ -391,27 +392,20 @@ export interface IFluidParentContext extends IProvideFluidHandleContext, Partial
|
|
|
391
392
|
createParam: CreateChildSummarizerNodeParam): CreateChildSummarizerNodeFn;
|
|
392
393
|
deleteChildSummarizerNode(id: string): void;
|
|
393
394
|
uploadBlob(blob: ArrayBufferLike, signal?: AbortSignal): Promise<IFluidHandleInternal<ArrayBufferLike>>;
|
|
394
|
-
/**
|
|
395
|
-
* @deprecated There is no replacement for this, its functionality is no longer needed at this layer.
|
|
396
|
-
* It will be removed in a future release, sometime after 2.0.0-internal.8.0.0
|
|
397
|
-
*
|
|
398
|
-
* Similar capability is exposed with from/to string paths instead of handles via @see addedGCOutboundRoute
|
|
399
|
-
*
|
|
400
|
-
* Called when a new outbound reference is added to another node. This is used by garbage collection to identify
|
|
401
|
-
* all references added in the system.
|
|
402
|
-
* @param srcHandle - The handle of the node that added the reference.
|
|
403
|
-
* @param outboundHandle - The handle of the outbound node that is referenced.
|
|
404
|
-
*/
|
|
405
|
-
addedGCOutboundReference?(srcHandle: {
|
|
406
|
-
absolutePath: string;
|
|
407
|
-
}, outboundHandle: {
|
|
408
|
-
absolutePath: string;
|
|
409
|
-
}): void;
|
|
410
395
|
/**
|
|
411
396
|
* Called by IFluidDataStoreChannel, indicates that a channel is dirty and needs to be part of the summary.
|
|
412
397
|
* @param address - The address of the channel that is dirty.
|
|
413
398
|
*/
|
|
414
399
|
setChannelDirty(address: string): void;
|
|
400
|
+
/**
|
|
401
|
+
* Called when a new outbound reference is added to another node. This is used by garbage collection to identify
|
|
402
|
+
* all references added in the system.
|
|
403
|
+
*
|
|
404
|
+
* @param fromPath - The absolute path of the node that added the reference.
|
|
405
|
+
* @param toPath - The absolute path of the outbound node that is referenced.
|
|
406
|
+
* @param messageTimestampMs - The timestamp of the message that added the reference.
|
|
407
|
+
*/
|
|
408
|
+
addedGCOutboundRoute(fromPath: string, toPath: string, messageTimestampMs?: number): void;
|
|
415
409
|
}
|
|
416
410
|
/**
|
|
417
411
|
* Represents the context for the data store. It is used by the data store runtime to
|
|
@@ -445,16 +439,6 @@ export interface IFluidDataStoreContext extends IFluidParentContext {
|
|
|
445
439
|
* and its children with the GC details from the previous summary.
|
|
446
440
|
*/
|
|
447
441
|
getBaseGCDetails(): Promise<IGarbageCollectionDetailsBase>;
|
|
448
|
-
/**
|
|
449
|
-
* (Same as @see addedGCOutboundReference, but with string paths instead of handles)
|
|
450
|
-
*
|
|
451
|
-
* Called when a new outbound reference is added to another node. This is used by garbage collection to identify
|
|
452
|
-
* all references added in the system.
|
|
453
|
-
*
|
|
454
|
-
* @param fromPath - The absolute path of the node that added the reference.
|
|
455
|
-
* @param toPath - The absolute path of the outbound node that is referenced.
|
|
456
|
-
*/
|
|
457
|
-
addedGCOutboundRoute?(fromPath: string, toPath: string): void;
|
|
458
442
|
}
|
|
459
443
|
/**
|
|
460
444
|
* @alpha
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dataStoreContext.d.ts","sourceRoot":"","sources":["../src/dataStoreContext.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,uCAAuC,CAAC;AACpF,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gDAAgD,CAAC;AACpF,OAAO,KAAK,EACX,WAAW,EACX,WAAW,EACX,MAAM,EACN,cAAc,EACd,YAAY,EACZ,
|
|
1
|
+
{"version":3,"file":"dataStoreContext.d.ts","sourceRoot":"","sources":["../src/dataStoreContext.ts"],"names":[],"mappings":"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"}
|