@fluidframework/runtime-definitions 2.61.0-356132 → 2.61.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 +21 -0
- package/api-extractor/api-extractor-lint-legacyAlpha.cjs.json +5 -0
- package/api-extractor/api-extractor-lint-legacyAlpha.esm.json +5 -0
- package/api-extractor/api-extractor.legacy.json +5 -1
- package/api-report/runtime-definitions.legacy.alpha.api.md +480 -0
- package/api-report/runtime-definitions.legacy.beta.api.md +3 -5
- package/dist/dataStoreContext.d.ts +0 -52
- package/dist/dataStoreContext.d.ts.map +1 -1
- package/dist/dataStoreContext.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/legacyAlpha.d.ts +73 -0
- package/dist/stagingMode.d.ts +119 -0
- package/dist/stagingMode.d.ts.map +1 -0
- package/dist/stagingMode.js +17 -0
- package/dist/stagingMode.js.map +1 -0
- package/legacy/alpha.d.ts +11 -0
- package/lib/dataStoreContext.d.ts +0 -52
- package/lib/dataStoreContext.d.ts.map +1 -1
- package/lib/dataStoreContext.js.map +1 -1
- package/lib/index.d.ts +2 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -1
- package/lib/legacyAlpha.d.ts +73 -0
- package/lib/stagingMode.d.ts +119 -0
- package/lib/stagingMode.d.ts.map +1 -0
- package/lib/stagingMode.js +13 -0
- package/lib/stagingMode.js.map +1 -0
- package/package.json +20 -8
- package/src/dataStoreContext.ts +0 -54
- package/src/index.ts +9 -3
- package/src/stagingMode.ts +127 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @fluidframework/runtime-definitions
|
|
2
2
|
|
|
3
|
+
## 2.61.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- `minVersionForCollab` is now available on `IFluidDataStoreContext` ([#25130](https://github.com/microsoft/FluidFramework/pull/25130)) [2566772d24](https://github.com/microsoft/FluidFramework/commit/2566772d24a9bcffbb613c6b88517145c2d0ea32)
|
|
8
|
+
|
|
9
|
+
`minVersionForCollab` is now passed down from the `ContainerRuntime` to the Datastore layer where it is made available for
|
|
10
|
+
`SharedObject` construction.
|
|
11
|
+
DDSes may optionally consume this value and use it to determine which sets of feature flags should be enabled.
|
|
12
|
+
|
|
13
|
+
#### Public type changes
|
|
14
|
+
|
|
15
|
+
- **@fluidframework/datastore: `FluidDataStoreRuntime`** - Exposes `minVersionForCollab`.
|
|
16
|
+
- **@fluidframework/runtime-definitions: `IFluidDataStoreContext`** - Exposes optional member `minVersionForCollab`.
|
|
17
|
+
See `FluidDataStoreContext` for an example implementation.
|
|
18
|
+
- **@fluidframework/test-runtime-utils: `MockFluidDataStoreContext`, `MockFluidDataStoreRuntime`** - Exposes `minVersionForCollab`
|
|
19
|
+
either via a getter or as a readonly field.
|
|
20
|
+
|
|
21
|
+
Note that the new implementations are optional fields and in some cases accept `undefined`.
|
|
22
|
+
This is needed for layer compatibility, and in a future release these members will no longer be optional.
|
|
23
|
+
|
|
3
24
|
## 2.60.0
|
|
4
25
|
|
|
5
26
|
Dependency updates only.
|
|
@@ -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/legacyAlpha.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/legacyAlpha.d.ts"
|
|
5
|
+
}
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
|
|
3
|
-
"extends": "<projectFolder>/../../../common/build/build-common/api-extractor-report.esm.legacy.json"
|
|
3
|
+
"extends": "<projectFolder>/../../../common/build/build-common/api-extractor-report.esm.legacy.json",
|
|
4
|
+
"mainEntryPointFilePath": "<projectFolder>/lib/legacyAlpha.d.ts",
|
|
5
|
+
"apiReport": {
|
|
6
|
+
"reportVariants": ["public", "beta", "alpha"]
|
|
7
|
+
}
|
|
4
8
|
}
|
|
@@ -0,0 +1,480 @@
|
|
|
1
|
+
## Alpha 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
|
+
// @beta @legacy
|
|
8
|
+
export type AliasResult = "Success" | "Conflict" | "AlreadyAliased";
|
|
9
|
+
|
|
10
|
+
// @alpha @sealed @legacy
|
|
11
|
+
export function asAlpha(base: IContainerRuntimeBase): ContainerRuntimeBaseAlpha;
|
|
12
|
+
|
|
13
|
+
// @beta @legacy
|
|
14
|
+
export interface AttributionInfo {
|
|
15
|
+
timestamp: number;
|
|
16
|
+
user: IUser;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// @beta @legacy
|
|
20
|
+
export type AttributionKey = OpAttributionKey | DetachedAttributionKey | LocalAttributionKey;
|
|
21
|
+
|
|
22
|
+
// @beta @sealed @deprecated @legacy
|
|
23
|
+
export interface CommitStagedChangesOptionsExperimental {
|
|
24
|
+
squash?: boolean;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
// @alpha @sealed @legacy
|
|
28
|
+
export interface ContainerRuntimeBaseAlpha extends IContainerRuntimeBase {
|
|
29
|
+
enterStagingMode(): StageControlsAlpha;
|
|
30
|
+
readonly inStagingMode: boolean;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
// @beta @legacy (undocumented)
|
|
34
|
+
export type CreateChildSummarizerNodeFn = (summarizeInternal: SummarizeInternalFn, getGCDataFn: (fullGC?: boolean) => Promise<IGarbageCollectionData>,
|
|
35
|
+
getBaseGCDetailsFn?: () => Promise<IGarbageCollectionDetailsBase>) => ISummarizerNodeWithGC;
|
|
36
|
+
|
|
37
|
+
// @beta @legacy (undocumented)
|
|
38
|
+
export type CreateChildSummarizerNodeParam = {
|
|
39
|
+
type: CreateSummarizerNodeSource.FromSummary;
|
|
40
|
+
} | {
|
|
41
|
+
type: CreateSummarizerNodeSource.FromAttach;
|
|
42
|
+
sequenceNumber: number;
|
|
43
|
+
snapshot: ITree;
|
|
44
|
+
} | {
|
|
45
|
+
type: CreateSummarizerNodeSource.Local;
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
// @beta @legacy (undocumented)
|
|
49
|
+
export enum CreateSummarizerNodeSource {
|
|
50
|
+
// (undocumented)
|
|
51
|
+
FromAttach = 1,
|
|
52
|
+
// (undocumented)
|
|
53
|
+
FromSummary = 0,
|
|
54
|
+
// (undocumented)
|
|
55
|
+
Local = 2
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
// @beta @legacy
|
|
59
|
+
export interface DetachedAttributionKey {
|
|
60
|
+
id: 0;
|
|
61
|
+
// (undocumented)
|
|
62
|
+
type: "detached";
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
// @beta @legacy
|
|
66
|
+
export type FluidDataStoreRegistryEntry = Readonly<Partial<IProvideFluidDataStoreRegistry & IProvideFluidDataStoreFactory>>;
|
|
67
|
+
|
|
68
|
+
// @beta @legacy
|
|
69
|
+
export enum FlushMode {
|
|
70
|
+
// @deprecated
|
|
71
|
+
Immediate = 0,
|
|
72
|
+
TurnBased = 1
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
// @beta @legacy
|
|
76
|
+
export interface IAttachMessage {
|
|
77
|
+
id: string;
|
|
78
|
+
snapshot: ITree;
|
|
79
|
+
type: string;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
// @beta @sealed @legacy
|
|
83
|
+
export interface IContainerRuntimeBase extends IEventProvider<IContainerRuntimeBaseEvents> {
|
|
84
|
+
// (undocumented)
|
|
85
|
+
readonly baseLogger: ITelemetryBaseLogger;
|
|
86
|
+
// (undocumented)
|
|
87
|
+
readonly clientDetails: IClientDetails;
|
|
88
|
+
createDataStore(pkg: string | PackagePath, loadingGroupId?: string): Promise<IDataStore>;
|
|
89
|
+
createDetachedDataStore(pkg: Readonly<string[]>, loadingGroupId?: string): IFluidDataStoreContextDetached;
|
|
90
|
+
// (undocumented)
|
|
91
|
+
readonly disposed: boolean;
|
|
92
|
+
generateDocumentUniqueId(): number | string;
|
|
93
|
+
getAbsoluteUrl(relativeUrl: string): Promise<string | undefined>;
|
|
94
|
+
getAliasedDataStoreEntryPoint(alias: string): Promise<IFluidHandle<FluidObject> | undefined>;
|
|
95
|
+
getAudience(): IAudience;
|
|
96
|
+
getQuorum(): IQuorumClients;
|
|
97
|
+
getSnapshotForLoadingGroupId(loadingGroupIds: string[], pathParts: string[]): Promise<{
|
|
98
|
+
snapshotTree: ISnapshotTree;
|
|
99
|
+
sequenceNumber: number;
|
|
100
|
+
}>;
|
|
101
|
+
orderSequentially(callback: () => void): void;
|
|
102
|
+
submitSignal: (type: string, content: unknown, targetClientId?: string) => void;
|
|
103
|
+
// (undocumented)
|
|
104
|
+
uploadBlob(blob: ArrayBufferLike, signal?: AbortSignal): Promise<IFluidHandle<ArrayBufferLike>>;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
// @beta @sealed @legacy (undocumented)
|
|
108
|
+
export interface IContainerRuntimeBaseEvents extends IEvent {
|
|
109
|
+
(event: "batchBegin", listener: (op: Omit<ISequencedDocumentMessage, "contents">) => void): any;
|
|
110
|
+
(event: "batchEnd", listener: (error: unknown, op: Omit<ISequencedDocumentMessage, "contents">) => void): any;
|
|
111
|
+
(event: "op", listener: (op: ISequencedDocumentMessage, runtimeMessage?: boolean) => void): any;
|
|
112
|
+
// (undocumented)
|
|
113
|
+
(event: "signal", listener: (message: IInboundSignalMessage, local: boolean) => void): any;
|
|
114
|
+
// (undocumented)
|
|
115
|
+
(event: "dispose", listener: () => void): any;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
// @beta @sealed @deprecated @legacy
|
|
119
|
+
export interface IContainerRuntimeBaseExperimental extends IContainerRuntimeBase {
|
|
120
|
+
enterStagingMode?(): StageControlsExperimental;
|
|
121
|
+
readonly inStagingMode?: boolean;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
// @beta @legacy
|
|
125
|
+
export interface IDataStore {
|
|
126
|
+
readonly entryPoint: IFluidHandleInternal<FluidObject>;
|
|
127
|
+
trySetAlias(alias: string): Promise<AliasResult>;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
// @beta @legacy
|
|
131
|
+
export interface IEnvelope {
|
|
132
|
+
address: string;
|
|
133
|
+
contents: any;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
// @beta @legacy
|
|
137
|
+
export interface IExperimentalIncrementalSummaryContext {
|
|
138
|
+
readonly latestSummarySequenceNumber: number;
|
|
139
|
+
readonly summaryPath: string;
|
|
140
|
+
readonly summarySequenceNumber: number;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
// @beta @legacy
|
|
144
|
+
export interface IFluidDataStoreChannel extends IDisposable {
|
|
145
|
+
// (undocumented)
|
|
146
|
+
applyStashedOp(content: any): Promise<unknown>;
|
|
147
|
+
readonly entryPoint: IFluidHandleInternal<FluidObject>;
|
|
148
|
+
getAttachGCData(telemetryContext?: ITelemetryContext): IGarbageCollectionData;
|
|
149
|
+
getAttachSummary(telemetryContext?: ITelemetryContext): ISummaryTreeWithStats;
|
|
150
|
+
getGCData(fullGC?: boolean): Promise<IGarbageCollectionData>;
|
|
151
|
+
makeVisibleAndAttachGraph(): void;
|
|
152
|
+
notifyReadOnlyState?(readonly: boolean): void;
|
|
153
|
+
readonly policies?: IFluidDataStorePolicies;
|
|
154
|
+
processMessages(messageCollection: IRuntimeMessageCollection): void;
|
|
155
|
+
processSignal(message: IInboundSignalMessage, local: boolean): void;
|
|
156
|
+
// (undocumented)
|
|
157
|
+
request(request: IRequest): Promise<IResponse>;
|
|
158
|
+
reSubmit(type: string, content: any, localOpMetadata: unknown, squash?: boolean): any;
|
|
159
|
+
rollback?(type: string, content: any, localOpMetadata: unknown): void;
|
|
160
|
+
// (undocumented)
|
|
161
|
+
setAttachState(attachState: AttachState.Attaching | AttachState.Attached): void;
|
|
162
|
+
setConnectionState(connected: boolean, clientId?: string): any;
|
|
163
|
+
summarize(fullTree?: boolean, trackState?: boolean, telemetryContext?: ITelemetryContext): Promise<ISummaryTreeWithStats>;
|
|
164
|
+
updateUsedRoutes(usedRoutes: string[]): void;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
// @beta @legacy
|
|
168
|
+
export interface IFluidDataStoreContext extends IFluidParentContext {
|
|
169
|
+
// (undocumented)
|
|
170
|
+
readonly baseSnapshot: ISnapshotTree | undefined;
|
|
171
|
+
createChildDataStore?<T extends IFluidDataStoreFactory>(childFactory: T): ReturnType<Exclude<T["createDataStore"], undefined>>;
|
|
172
|
+
// @deprecated (undocumented)
|
|
173
|
+
readonly createProps?: any;
|
|
174
|
+
// @deprecated (undocumented)
|
|
175
|
+
getBaseGCDetails(): Promise<IGarbageCollectionDetailsBase>;
|
|
176
|
+
// (undocumented)
|
|
177
|
+
readonly id: string;
|
|
178
|
+
readonly isLocalDataStore: boolean;
|
|
179
|
+
readonly packagePath: PackagePath;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
// @beta @legacy (undocumented)
|
|
183
|
+
export interface IFluidDataStoreContextDetached extends IFluidDataStoreContext {
|
|
184
|
+
attachRuntime(factory: IProvideFluidDataStoreFactory, dataStoreRuntime: IFluidDataStoreChannel): Promise<IDataStore>;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
// @beta @legacy (undocumented)
|
|
188
|
+
export const IFluidDataStoreFactory: keyof IProvideFluidDataStoreFactory;
|
|
189
|
+
|
|
190
|
+
// @beta @legacy
|
|
191
|
+
export interface IFluidDataStoreFactory extends IProvideFluidDataStoreFactory {
|
|
192
|
+
createDataStore?(context: IFluidDataStoreContext): {
|
|
193
|
+
readonly runtime: IFluidDataStoreChannel;
|
|
194
|
+
};
|
|
195
|
+
instantiateDataStore(context: IFluidDataStoreContext, existing: boolean): Promise<IFluidDataStoreChannel>;
|
|
196
|
+
type: string;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
// @beta @legacy
|
|
200
|
+
export interface IFluidDataStorePolicies {
|
|
201
|
+
readonly readonlyInStagingMode: boolean;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
// @beta @legacy (undocumented)
|
|
205
|
+
export const IFluidDataStoreRegistry: keyof IProvideFluidDataStoreRegistry;
|
|
206
|
+
|
|
207
|
+
// @beta @legacy
|
|
208
|
+
export interface IFluidDataStoreRegistry extends IProvideFluidDataStoreRegistry {
|
|
209
|
+
get(name: string): Promise<FluidDataStoreRegistryEntry | undefined>;
|
|
210
|
+
getSync?(name: string): FluidDataStoreRegistryEntry | undefined;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
// @beta @legacy
|
|
214
|
+
export interface IFluidParentContext extends IProvideFluidHandleContext, Partial<IProvideFluidDataStoreRegistry> {
|
|
215
|
+
addedGCOutboundRoute(fromPath: string, toPath: string, messageTimestampMs?: number): void;
|
|
216
|
+
readonly attachState: AttachState;
|
|
217
|
+
// (undocumented)
|
|
218
|
+
readonly baseLogger: ITelemetryBaseLogger;
|
|
219
|
+
// (undocumented)
|
|
220
|
+
readonly clientDetails: IClientDetails;
|
|
221
|
+
// (undocumented)
|
|
222
|
+
readonly clientId: string | undefined;
|
|
223
|
+
// (undocumented)
|
|
224
|
+
readonly connected: boolean;
|
|
225
|
+
// (undocumented)
|
|
226
|
+
readonly containerRuntime: IContainerRuntimeBase;
|
|
227
|
+
// (undocumented)
|
|
228
|
+
deleteChildSummarizerNode(id: string): void;
|
|
229
|
+
// (undocumented)
|
|
230
|
+
readonly deltaManager: IDeltaManager<ISequencedDocumentMessage, IDocumentMessage>;
|
|
231
|
+
// @deprecated (undocumented)
|
|
232
|
+
readonly gcThrowOnTombstoneUsage: boolean;
|
|
233
|
+
// @deprecated (undocumented)
|
|
234
|
+
readonly gcTombstoneEnforcementAllowed: boolean;
|
|
235
|
+
getAbsoluteUrl(relativeUrl: string): Promise<string | undefined>;
|
|
236
|
+
getAudience(): IAudience;
|
|
237
|
+
// (undocumented)
|
|
238
|
+
getCreateChildSummarizerNodeFn(
|
|
239
|
+
id: string,
|
|
240
|
+
createParam: CreateChildSummarizerNodeParam): CreateChildSummarizerNodeFn;
|
|
241
|
+
getQuorum(): IQuorumClients;
|
|
242
|
+
// (undocumented)
|
|
243
|
+
readonly idCompressor?: IIdCompressor;
|
|
244
|
+
readonly isReadOnly?: () => boolean;
|
|
245
|
+
readonly loadingGroupId?: string;
|
|
246
|
+
makeLocallyVisible(): void;
|
|
247
|
+
readonly minVersionForCollab?: MinimumVersionForCollab;
|
|
248
|
+
// (undocumented)
|
|
249
|
+
readonly options: Record<string | number, any>;
|
|
250
|
+
readonly scope: FluidObject;
|
|
251
|
+
setChannelDirty(address: string): void;
|
|
252
|
+
// (undocumented)
|
|
253
|
+
readonly storage: IRuntimeStorageService;
|
|
254
|
+
submitMessage(type: string, content: any, localOpMetadata: unknown): void;
|
|
255
|
+
submitSignal: (type: string, content: unknown, targetClientId?: string) => void;
|
|
256
|
+
// (undocumented)
|
|
257
|
+
uploadBlob(blob: ArrayBufferLike, signal?: AbortSignal): Promise<IFluidHandleInternal<ArrayBufferLike>>;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
// @beta @legacy
|
|
261
|
+
export interface IGarbageCollectionData {
|
|
262
|
+
gcNodes: {
|
|
263
|
+
[id: string]: string[];
|
|
264
|
+
};
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
// @beta @legacy
|
|
268
|
+
export interface IGarbageCollectionDetailsBase {
|
|
269
|
+
gcData?: IGarbageCollectionData;
|
|
270
|
+
usedRoutes?: string[];
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
// @beta @legacy
|
|
274
|
+
export interface IInboundSignalMessage<TMessage extends TypedMessage = TypedMessage> extends ISignalMessage<TMessage> {
|
|
275
|
+
// (undocumented)
|
|
276
|
+
readonly type: TMessage["type"];
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
// @beta @legacy
|
|
280
|
+
export type InboundAttachMessage = Omit<IAttachMessage, "snapshot"> & {
|
|
281
|
+
snapshot: IAttachMessage["snapshot"] | null;
|
|
282
|
+
};
|
|
283
|
+
|
|
284
|
+
// @beta @legacy (undocumented)
|
|
285
|
+
export interface IProvideFluidDataStoreFactory {
|
|
286
|
+
// (undocumented)
|
|
287
|
+
readonly IFluidDataStoreFactory: IFluidDataStoreFactory;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
// @beta @legacy (undocumented)
|
|
291
|
+
export interface IProvideFluidDataStoreRegistry {
|
|
292
|
+
// (undocumented)
|
|
293
|
+
readonly IFluidDataStoreRegistry: IFluidDataStoreRegistry;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
// @beta @sealed @legacy
|
|
297
|
+
export interface IRuntimeMessageCollection {
|
|
298
|
+
readonly envelope: ISequencedMessageEnvelope;
|
|
299
|
+
readonly local: boolean;
|
|
300
|
+
readonly messagesContent: readonly IRuntimeMessagesContent[];
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
// @beta @sealed @legacy
|
|
304
|
+
export interface IRuntimeMessagesContent {
|
|
305
|
+
readonly clientSequenceNumber: number;
|
|
306
|
+
readonly contents: unknown;
|
|
307
|
+
readonly localOpMetadata: unknown;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
// @beta @legacy
|
|
311
|
+
export interface IRuntimeStorageService {
|
|
312
|
+
// @deprecated (undocumented)
|
|
313
|
+
createBlob(file: ArrayBufferLike): Promise<ICreateBlobResponse>;
|
|
314
|
+
// @deprecated
|
|
315
|
+
dispose?(error?: Error): void;
|
|
316
|
+
// @deprecated
|
|
317
|
+
readonly disposed?: boolean;
|
|
318
|
+
// @deprecated (undocumented)
|
|
319
|
+
downloadSummary(handle: ISummaryHandle): Promise<ISummaryTree>;
|
|
320
|
+
// @deprecated (undocumented)
|
|
321
|
+
getSnapshot?(snapshotFetchOptions?: ISnapshotFetchOptions): Promise<ISnapshot>;
|
|
322
|
+
// @deprecated (undocumented)
|
|
323
|
+
getSnapshotTree(version?: IVersion, scenarioName?: string): Promise<ISnapshotTree | null>;
|
|
324
|
+
// @deprecated (undocumented)
|
|
325
|
+
getVersions(versionId: string | null, count: number, scenarioName?: string, fetchSource?: FetchSource): Promise<IVersion[]>;
|
|
326
|
+
// @deprecated (undocumented)
|
|
327
|
+
readonly policies?: IDocumentStorageServicePolicies | undefined;
|
|
328
|
+
readBlob(id: string): Promise<ArrayBufferLike>;
|
|
329
|
+
// @deprecated (undocumented)
|
|
330
|
+
uploadSummaryWithContext(summary: ISummaryTree, context: ISummaryContext): Promise<string>;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
// @beta @legacy
|
|
334
|
+
export type ISequencedMessageEnvelope = Omit<ISequencedDocumentMessage, "contents" | "clientSequenceNumber">;
|
|
335
|
+
|
|
336
|
+
// @beta @legacy
|
|
337
|
+
export interface ISummarizeInternalResult extends ISummarizeResult {
|
|
338
|
+
// (undocumented)
|
|
339
|
+
id: string;
|
|
340
|
+
pathPartsForChildren?: string[];
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
// @beta @legacy
|
|
344
|
+
export interface ISummarizeResult {
|
|
345
|
+
// (undocumented)
|
|
346
|
+
stats: ISummaryStats;
|
|
347
|
+
// (undocumented)
|
|
348
|
+
summary: SummaryTree;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
// @beta @legacy (undocumented)
|
|
352
|
+
export interface ISummarizerNode {
|
|
353
|
+
// (undocumented)
|
|
354
|
+
createChild(
|
|
355
|
+
summarizeInternalFn: SummarizeInternalFn,
|
|
356
|
+
id: string,
|
|
357
|
+
createParam: CreateChildSummarizerNodeParam,
|
|
358
|
+
config?: ISummarizerNodeConfig): ISummarizerNode;
|
|
359
|
+
// (undocumented)
|
|
360
|
+
getChild(id: string): ISummarizerNode | undefined;
|
|
361
|
+
invalidate(sequenceNumber: number): void;
|
|
362
|
+
isSummaryInProgress?(): boolean;
|
|
363
|
+
recordChange(op: ISequencedDocumentMessage): void;
|
|
364
|
+
readonly referenceSequenceNumber: number;
|
|
365
|
+
summarize(fullTree: boolean, trackState?: boolean, telemetryContext?: ITelemetryContext): Promise<ISummarizeResult>;
|
|
366
|
+
// @deprecated
|
|
367
|
+
updateBaseSummaryState(snapshot: ISnapshotTree): void;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
// @beta @legacy (undocumented)
|
|
371
|
+
export interface ISummarizerNodeConfig {
|
|
372
|
+
readonly canReuseHandle?: boolean;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
// @beta @legacy (undocumented)
|
|
376
|
+
export interface ISummarizerNodeConfigWithGC extends ISummarizerNodeConfig {
|
|
377
|
+
readonly gcDisabled?: boolean;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
// @beta @legacy
|
|
381
|
+
export interface ISummarizerNodeWithGC extends ISummarizerNode {
|
|
382
|
+
// (undocumented)
|
|
383
|
+
createChild(
|
|
384
|
+
summarizeInternalFn: SummarizeInternalFn,
|
|
385
|
+
id: string,
|
|
386
|
+
createParam: CreateChildSummarizerNodeParam,
|
|
387
|
+
config?: ISummarizerNodeConfigWithGC, getGCDataFn?: (fullGC?: boolean) => Promise<IGarbageCollectionData>,
|
|
388
|
+
getBaseGCDetailsFn?: () => Promise<IGarbageCollectionDetailsBase>): ISummarizerNodeWithGC;
|
|
389
|
+
deleteChild(id: string): void;
|
|
390
|
+
// (undocumented)
|
|
391
|
+
getChild(id: string): ISummarizerNodeWithGC | undefined;
|
|
392
|
+
getGCData(fullGC?: boolean): Promise<IGarbageCollectionData>;
|
|
393
|
+
isReferenced(): boolean;
|
|
394
|
+
updateUsedRoutes(usedRoutes: string[]): void;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
// @beta @legacy
|
|
398
|
+
export interface ISummaryStats {
|
|
399
|
+
// (undocumented)
|
|
400
|
+
blobNodeCount: number;
|
|
401
|
+
// (undocumented)
|
|
402
|
+
handleNodeCount: number;
|
|
403
|
+
// (undocumented)
|
|
404
|
+
totalBlobSize: number;
|
|
405
|
+
// (undocumented)
|
|
406
|
+
treeNodeCount: number;
|
|
407
|
+
// (undocumented)
|
|
408
|
+
unreferencedBlobSize: number;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
// @beta @legacy
|
|
412
|
+
export interface ISummaryTreeWithStats {
|
|
413
|
+
stats: ISummaryStats;
|
|
414
|
+
summary: ISummaryTree;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
// @beta @legacy
|
|
418
|
+
export interface ITelemetryContext {
|
|
419
|
+
set(prefix: string, property: string, value: TelemetryBaseEventPropertyType): void;
|
|
420
|
+
setMultiple(prefix: string, property: string, values: Record<string, TelemetryBaseEventPropertyType>): void;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
// @beta @legacy
|
|
424
|
+
export interface LocalAttributionKey {
|
|
425
|
+
// (undocumented)
|
|
426
|
+
type: "local";
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
// @beta @legacy
|
|
430
|
+
export type MinimumVersionForCollab = `${1 | 2}.${bigint}.${bigint}` | `${1 | 2}.${bigint}.${bigint}-${string}`;
|
|
431
|
+
|
|
432
|
+
// @beta @legacy
|
|
433
|
+
export type NamedFluidDataStoreRegistryEntries = Iterable<NamedFluidDataStoreRegistryEntry2>;
|
|
434
|
+
|
|
435
|
+
// @beta @legacy
|
|
436
|
+
export type NamedFluidDataStoreRegistryEntry = [string, Promise<FluidDataStoreRegistryEntry>];
|
|
437
|
+
|
|
438
|
+
// @beta @legacy
|
|
439
|
+
export type NamedFluidDataStoreRegistryEntry2 = [
|
|
440
|
+
string,
|
|
441
|
+
Promise<FluidDataStoreRegistryEntry> | FluidDataStoreRegistryEntry
|
|
442
|
+
];
|
|
443
|
+
|
|
444
|
+
// @beta @legacy
|
|
445
|
+
export interface OpAttributionKey {
|
|
446
|
+
seq: number;
|
|
447
|
+
type: "op";
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
// @beta @legacy
|
|
451
|
+
export type PackagePath = readonly string[];
|
|
452
|
+
|
|
453
|
+
// @alpha @sealed @legacy
|
|
454
|
+
export interface StageControlsAlpha {
|
|
455
|
+
readonly commitChanges: () => void;
|
|
456
|
+
readonly discardChanges: () => void;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
// @beta @sealed @deprecated @legacy
|
|
460
|
+
export interface StageControlsExperimental {
|
|
461
|
+
readonly commitChanges: (options?: Partial<CommitStagedChangesOptionsExperimental>) => void;
|
|
462
|
+
readonly discardChanges: () => void;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
// @beta @legacy (undocumented)
|
|
466
|
+
export type SummarizeInternalFn = (fullTree: boolean, trackState: boolean, telemetryContext?: ITelemetryContext, incrementalSummaryContext?: IExperimentalIncrementalSummaryContext) => Promise<ISummarizeInternalResult>;
|
|
467
|
+
|
|
468
|
+
// @beta @legacy
|
|
469
|
+
export const VisibilityState: {
|
|
470
|
+
NotVisible: string;
|
|
471
|
+
LocallyVisible: string;
|
|
472
|
+
GloballyVisible: string;
|
|
473
|
+
};
|
|
474
|
+
|
|
475
|
+
// @beta @legacy (undocumented)
|
|
476
|
+
export type VisibilityState = (typeof VisibilityState)[keyof typeof VisibilityState];
|
|
477
|
+
|
|
478
|
+
// (No @packageDocumentation comment for this package)
|
|
479
|
+
|
|
480
|
+
```
|
|
@@ -16,7 +16,7 @@ export interface AttributionInfo {
|
|
|
16
16
|
// @beta @legacy
|
|
17
17
|
export type AttributionKey = OpAttributionKey | DetachedAttributionKey | LocalAttributionKey;
|
|
18
18
|
|
|
19
|
-
// @beta @sealed @deprecated @legacy
|
|
19
|
+
// @beta @sealed @deprecated @legacy
|
|
20
20
|
export interface CommitStagedChangesOptionsExperimental {
|
|
21
21
|
squash?: boolean;
|
|
22
22
|
}
|
|
@@ -106,11 +106,9 @@ export interface IContainerRuntimeBaseEvents extends IEvent {
|
|
|
106
106
|
(event: "dispose", listener: () => void): any;
|
|
107
107
|
}
|
|
108
108
|
|
|
109
|
-
// @beta @sealed @deprecated @legacy
|
|
109
|
+
// @beta @sealed @deprecated @legacy
|
|
110
110
|
export interface IContainerRuntimeBaseExperimental extends IContainerRuntimeBase {
|
|
111
|
-
// (undocumented)
|
|
112
111
|
enterStagingMode?(): StageControlsExperimental;
|
|
113
|
-
// (undocumented)
|
|
114
112
|
readonly inStagingMode?: boolean;
|
|
115
113
|
}
|
|
116
114
|
|
|
@@ -443,7 +441,7 @@ export interface OpAttributionKey {
|
|
|
443
441
|
// @beta @legacy
|
|
444
442
|
export type PackagePath = readonly string[];
|
|
445
443
|
|
|
446
|
-
// @beta @sealed @deprecated @legacy
|
|
444
|
+
// @beta @sealed @deprecated @legacy
|
|
447
445
|
export interface StageControlsExperimental {
|
|
448
446
|
readonly commitChanges: (options?: Partial<CommitStagedChangesOptionsExperimental>) => void;
|
|
449
447
|
readonly discardChanges: () => void;
|
|
@@ -241,58 +241,6 @@ export interface IContainerRuntimeBase extends IEventProvider<IContainerRuntimeB
|
|
|
241
241
|
sequenceNumber: number;
|
|
242
242
|
}>;
|
|
243
243
|
}
|
|
244
|
-
/**
|
|
245
|
-
* @experimental
|
|
246
|
-
* @deprecated - These APIs are unstable, and can be changed at will. They should only be used with direct agreement with the Fluid Framework.
|
|
247
|
-
* @legacy @beta
|
|
248
|
-
* @sealed
|
|
249
|
-
*/
|
|
250
|
-
export interface CommitStagedChangesOptionsExperimental {
|
|
251
|
-
/**
|
|
252
|
-
* If true, intermediate states created by changes made while in staging mode will be "squashed" out of the
|
|
253
|
-
* ops which were created during staging mode.
|
|
254
|
-
* Defaults to false.
|
|
255
|
-
* @remarks
|
|
256
|
-
* The squash parameter is analogous to `git squash` but differs in a notable way: ops created by a client exiting staging mode
|
|
257
|
-
* are not necessarily coalesced into a single op or something like it.
|
|
258
|
-
* It still does have the desirable property that "unnecessary changes" (such as inserting some content then removing it) will
|
|
259
|
-
* be removed from the set of submitted ops, which means it helps reduce network traffic and the chance of unwanted data being
|
|
260
|
-
* persisted--even if only temporarily--in the document.
|
|
261
|
-
*
|
|
262
|
-
* By not attempting to reduce the set of changes to a single op a la `git squash`, we can better preserve the ordering of
|
|
263
|
-
* changes that remote clients see such that they better align with the client which submitted the changes.
|
|
264
|
-
*/
|
|
265
|
-
squash?: boolean;
|
|
266
|
-
}
|
|
267
|
-
/**
|
|
268
|
-
* @experimental
|
|
269
|
-
* @deprecated - These APIs are unstable, and can be changed at will. They should only be used with direct agreement with the Fluid Framework.
|
|
270
|
-
* @legacy @beta
|
|
271
|
-
* @sealed
|
|
272
|
-
*/
|
|
273
|
-
export interface StageControlsExperimental {
|
|
274
|
-
/**
|
|
275
|
-
* Exit staging mode and commit to any changes made while in staging mode.
|
|
276
|
-
* This will cause them to be sent to the ordering service, and subsequent changes
|
|
277
|
-
* made by this container will additionally flow freely to the ordering service.
|
|
278
|
-
* @param options - Options when committing changes.
|
|
279
|
-
*/
|
|
280
|
-
readonly commitChanges: (options?: Partial<CommitStagedChangesOptionsExperimental>) => void;
|
|
281
|
-
/**
|
|
282
|
-
* Exit staging mode and discard any changes made while in staging mode.
|
|
283
|
-
*/
|
|
284
|
-
readonly discardChanges: () => void;
|
|
285
|
-
}
|
|
286
|
-
/**
|
|
287
|
-
* @experimental
|
|
288
|
-
* @deprecated - These APIs are unstable, and can be changed at will. They should only be used with direct agreement with the Fluid Framework.
|
|
289
|
-
* @legacy @beta
|
|
290
|
-
* @sealed
|
|
291
|
-
*/
|
|
292
|
-
export interface IContainerRuntimeBaseExperimental extends IContainerRuntimeBase {
|
|
293
|
-
enterStagingMode?(): StageControlsExperimental;
|
|
294
|
-
readonly inStagingMode?: boolean;
|
|
295
|
-
}
|
|
296
244
|
/**
|
|
297
245
|
* These policies can be set by the author of the data store via its data store runtime to influence behaviors.
|
|
298
246
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dataStoreContext.d.ts","sourceRoot":"","sources":["../src/dataStoreContext.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"dataStoreContext.d.ts","sourceRoot":"","sources":["../src/dataStoreContext.ts"],"names":[],"mappings":"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"}
|