@fluidframework/runtime-definitions 2.0.0-dev.7.4.0.215930 → 2.0.0-dev.7.4.0.216897
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/api-extractor-lint.json +13 -0
- package/api-extractor.json +0 -4
- package/api-report/runtime-definitions.api.md +66 -66
- package/dist/attribution.d.ts +5 -8
- package/dist/attribution.d.ts.map +1 -1
- package/dist/attribution.js.map +1 -1
- package/dist/dataStoreContext.d.ts +25 -1
- package/dist/dataStoreContext.d.ts.map +1 -1
- package/dist/dataStoreContext.js +5 -0
- package/dist/dataStoreContext.js.map +1 -1
- package/dist/dataStoreFactory.d.ts +7 -0
- package/dist/dataStoreFactory.d.ts.map +1 -1
- package/dist/dataStoreFactory.js +3 -0
- package/dist/dataStoreFactory.js.map +1 -1
- package/dist/dataStoreRegistry.d.ts +10 -0
- package/dist/dataStoreRegistry.d.ts.map +1 -1
- package/dist/dataStoreRegistry.js +3 -0
- package/dist/dataStoreRegistry.js.map +1 -1
- package/dist/garbageCollection.d.ts +22 -4
- package/dist/garbageCollection.d.ts.map +1 -1
- package/dist/garbageCollection.js +20 -4
- package/dist/garbageCollection.js.map +1 -1
- package/dist/id-compressor/idCompressor.d.ts +4 -1
- package/dist/id-compressor/idCompressor.d.ts.map +1 -1
- package/dist/id-compressor/idCompressor.js.map +1 -1
- package/dist/id-compressor/identifiers.d.ts +4 -0
- package/dist/id-compressor/identifiers.d.ts.map +1 -1
- package/dist/id-compressor/identifiers.js.map +1 -1
- package/dist/id-compressor/persisted-types/0.0.1.d.ts +5 -0
- package/dist/id-compressor/persisted-types/0.0.1.d.ts.map +1 -1
- package/dist/id-compressor/persisted-types/0.0.1.js +1 -0
- package/dist/id-compressor/persisted-types/0.0.1.js.map +1 -1
- package/dist/protocol.d.ts +7 -0
- package/dist/protocol.d.ts.map +1 -1
- package/dist/protocol.js.map +1 -1
- package/dist/runtime-definitions-alpha.d.ts +158 -1174
- package/dist/runtime-definitions-beta.d.ts +139 -1092
- package/dist/runtime-definitions-public.d.ts +139 -1092
- package/dist/runtime-definitions-untrimmed.d.ts +123 -14
- package/dist/summary.d.ts +34 -0
- package/dist/summary.d.ts.map +1 -1
- package/dist/summary.js +12 -0
- package/dist/summary.js.map +1 -1
- package/lib/runtime-definitions-alpha.d.ts +158 -1174
- package/lib/runtime-definitions-beta.d.ts +139 -1092
- package/lib/runtime-definitions-public.d.ts +139 -1092
- package/lib/runtime-definitions-untrimmed.d.ts +123 -14
- package/package.json +6 -5
- package/src/attribution.ts +5 -8
- package/src/dataStoreContext.ts +25 -1
- package/src/dataStoreFactory.ts +7 -0
- package/src/dataStoreRegistry.ts +10 -0
- package/src/garbageCollection.ts +22 -4
- package/src/id-compressor/idCompressor.ts +4 -1
- package/src/id-compressor/identifiers.ts +4 -0
- package/src/id-compressor/persisted-types/0.0.1.ts +5 -0
- package/src/protocol.ts +7 -0
- package/src/summary.ts +34 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
|
|
3
|
+
"extends": "../../../common/build/build-common/api-extractor-lint.json",
|
|
4
|
+
"messages": {
|
|
5
|
+
"extractorMessageReporting": {
|
|
6
|
+
// TODO: remove once base config has this enabled as an error
|
|
7
|
+
"ae-incompatible-release-tags": {
|
|
8
|
+
"logLevel": "error",
|
|
9
|
+
"addToApiReportFile": false
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
package/api-extractor.json
CHANGED
|
@@ -6,10 +6,6 @@
|
|
|
6
6
|
},
|
|
7
7
|
"messages": {
|
|
8
8
|
"extractorMessageReporting": {
|
|
9
|
-
// TODO: Fix violations and remove this rule override
|
|
10
|
-
"ae-missing-release-tag": {
|
|
11
|
-
"logLevel": "none"
|
|
12
|
-
},
|
|
13
9
|
// TODO: Add missing documentation and remove this rule override
|
|
14
10
|
"ae-undocumented": {
|
|
15
11
|
"logLevel": "none"
|
|
@@ -32,29 +32,29 @@ import type { IUser } from '@fluidframework/protocol-definitions';
|
|
|
32
32
|
import { SummaryTree } from '@fluidframework/protocol-definitions';
|
|
33
33
|
import { TelemetryEventPropertyType } from '@fluidframework/core-interfaces';
|
|
34
34
|
|
|
35
|
-
// @
|
|
35
|
+
// @internal
|
|
36
36
|
export type AliasResult = "Success" | "Conflict" | "AlreadyAliased";
|
|
37
37
|
|
|
38
|
-
// @
|
|
38
|
+
// @internal
|
|
39
39
|
export interface AttributionInfo {
|
|
40
40
|
timestamp: number;
|
|
41
41
|
user: IUser;
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
// @
|
|
44
|
+
// @internal
|
|
45
45
|
export type AttributionKey = OpAttributionKey | DetachedAttributionKey | LocalAttributionKey;
|
|
46
46
|
|
|
47
|
-
// @
|
|
47
|
+
// @internal (undocumented)
|
|
48
48
|
export const blobCountPropertyName = "BlobCount";
|
|
49
49
|
|
|
50
|
-
// @
|
|
50
|
+
// @internal (undocumented)
|
|
51
51
|
export const channelsTreeName = ".channels";
|
|
52
52
|
|
|
53
|
-
// @
|
|
53
|
+
// @internal (undocumented)
|
|
54
54
|
export type CreateChildSummarizerNodeFn = (summarizeInternal: SummarizeInternalFn, getGCDataFn: (fullGC?: boolean) => Promise<IGarbageCollectionData>,
|
|
55
55
|
getBaseGCDetailsFn?: () => Promise<IGarbageCollectionDetailsBase>) => ISummarizerNodeWithGC;
|
|
56
56
|
|
|
57
|
-
// @
|
|
57
|
+
// @internal (undocumented)
|
|
58
58
|
export type CreateChildSummarizerNodeParam = {
|
|
59
59
|
type: CreateSummarizerNodeSource.FromSummary;
|
|
60
60
|
} | {
|
|
@@ -65,7 +65,7 @@ export type CreateChildSummarizerNodeParam = {
|
|
|
65
65
|
type: CreateSummarizerNodeSource.Local;
|
|
66
66
|
};
|
|
67
67
|
|
|
68
|
-
// @
|
|
68
|
+
// @internal (undocumented)
|
|
69
69
|
export enum CreateSummarizerNodeSource {
|
|
70
70
|
// (undocumented)
|
|
71
71
|
FromAttach = 1,
|
|
@@ -75,52 +75,52 @@ export enum CreateSummarizerNodeSource {
|
|
|
75
75
|
Local = 2
|
|
76
76
|
}
|
|
77
77
|
|
|
78
|
-
// @
|
|
78
|
+
// @internal
|
|
79
79
|
export interface DetachedAttributionKey {
|
|
80
80
|
id: 0;
|
|
81
81
|
// (undocumented)
|
|
82
82
|
type: "detached";
|
|
83
83
|
}
|
|
84
84
|
|
|
85
|
-
// @
|
|
85
|
+
// @internal
|
|
86
86
|
export type FluidDataStoreRegistryEntry = Readonly<Partial<IProvideFluidDataStoreRegistry & IProvideFluidDataStoreFactory>>;
|
|
87
87
|
|
|
88
|
-
// @
|
|
88
|
+
// @internal
|
|
89
89
|
export enum FlushMode {
|
|
90
90
|
Immediate = 0,
|
|
91
91
|
TurnBased = 1
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
-
// @
|
|
94
|
+
// @internal (undocumented)
|
|
95
95
|
export enum FlushModeExperimental {
|
|
96
96
|
Async = 2
|
|
97
97
|
}
|
|
98
98
|
|
|
99
|
-
// @
|
|
99
|
+
// @internal
|
|
100
100
|
export const gcBlobPrefix = "__gc";
|
|
101
101
|
|
|
102
|
-
// @
|
|
102
|
+
// @internal
|
|
103
103
|
export const gcDeletedBlobKey = "__deletedNodes";
|
|
104
104
|
|
|
105
|
-
// @
|
|
105
|
+
// @internal
|
|
106
106
|
export const gcTombstoneBlobKey = "__tombstones";
|
|
107
107
|
|
|
108
|
-
// @
|
|
108
|
+
// @internal
|
|
109
109
|
export const gcTreeKey = "gc";
|
|
110
110
|
|
|
111
|
-
// @
|
|
111
|
+
// @internal
|
|
112
112
|
export interface IAttachMessage {
|
|
113
113
|
id: string;
|
|
114
114
|
snapshot: ITree;
|
|
115
115
|
type: string;
|
|
116
116
|
}
|
|
117
117
|
|
|
118
|
-
// @
|
|
118
|
+
// @internal
|
|
119
119
|
export interface IContainerRuntimeBase extends IEventProvider<IContainerRuntimeBaseEvents> {
|
|
120
120
|
// (undocumented)
|
|
121
121
|
readonly clientDetails: IClientDetails;
|
|
122
122
|
createDataStore(pkg: string | string[]): Promise<IDataStore>;
|
|
123
|
-
// @
|
|
123
|
+
// @deprecated (undocumented)
|
|
124
124
|
_createDataStoreWithProps(pkg: string | string[], props?: any, id?: string): Promise<IDataStore>;
|
|
125
125
|
createDetachedDataStore(pkg: Readonly<string[]>): IFluidDataStoreContextDetached;
|
|
126
126
|
getAbsoluteUrl(relativeUrl: string): Promise<string | undefined>;
|
|
@@ -138,7 +138,7 @@ export interface IContainerRuntimeBase extends IEventProvider<IContainerRuntimeB
|
|
|
138
138
|
uploadBlob(blob: ArrayBufferLike, signal?: AbortSignal): Promise<IFluidHandle<ArrayBufferLike>>;
|
|
139
139
|
}
|
|
140
140
|
|
|
141
|
-
// @
|
|
141
|
+
// @internal (undocumented)
|
|
142
142
|
export interface IContainerRuntimeBaseEvents extends IEvent {
|
|
143
143
|
// (undocumented)
|
|
144
144
|
(event: "batchBegin", listener: (op: ISequencedDocumentMessage) => void): any;
|
|
@@ -150,7 +150,7 @@ export interface IContainerRuntimeBaseEvents extends IEvent {
|
|
|
150
150
|
(event: "signal", listener: (message: IInboundSignalMessage, local: boolean) => void): any;
|
|
151
151
|
}
|
|
152
152
|
|
|
153
|
-
// @
|
|
153
|
+
// @internal
|
|
154
154
|
export interface IDataStore {
|
|
155
155
|
readonly entryPoint: IFluidHandle<FluidObject>;
|
|
156
156
|
// @deprecated (undocumented)
|
|
@@ -165,7 +165,7 @@ export interface IDataStore {
|
|
|
165
165
|
trySetAlias(alias: string): Promise<AliasResult>;
|
|
166
166
|
}
|
|
167
167
|
|
|
168
|
-
// @
|
|
168
|
+
// @internal
|
|
169
169
|
export interface IdCreationRange {
|
|
170
170
|
// (undocumented)
|
|
171
171
|
readonly ids?: {
|
|
@@ -176,20 +176,20 @@ export interface IdCreationRange {
|
|
|
176
176
|
readonly sessionId: SessionId;
|
|
177
177
|
}
|
|
178
178
|
|
|
179
|
-
// @
|
|
179
|
+
// @internal
|
|
180
180
|
export interface IEnvelope {
|
|
181
181
|
address: string;
|
|
182
182
|
contents: any;
|
|
183
183
|
}
|
|
184
184
|
|
|
185
|
-
// @
|
|
185
|
+
// @internal
|
|
186
186
|
export interface IExperimentalIncrementalSummaryContext {
|
|
187
187
|
latestSummarySequenceNumber: number;
|
|
188
188
|
summaryPath: string;
|
|
189
189
|
summarySequenceNumber: number;
|
|
190
190
|
}
|
|
191
191
|
|
|
192
|
-
// @
|
|
192
|
+
// @internal
|
|
193
193
|
export interface IFluidDataStoreChannel extends IDisposable {
|
|
194
194
|
// (undocumented)
|
|
195
195
|
applyStashedOp(content: any): Promise<unknown>;
|
|
@@ -217,7 +217,7 @@ export interface IFluidDataStoreChannel extends IDisposable {
|
|
|
217
217
|
readonly visibilityState: VisibilityState;
|
|
218
218
|
}
|
|
219
219
|
|
|
220
|
-
// @
|
|
220
|
+
// @internal
|
|
221
221
|
export interface IFluidDataStoreContext extends IEventProvider<IFluidDataStoreContextEvents>, Partial<IProvideFluidDataStoreRegistry>, IProvideFluidHandleContext {
|
|
222
222
|
addedGCOutboundReference?(srcHandle: IFluidHandle, outboundHandle: IFluidHandle): void;
|
|
223
223
|
readonly attachState: AttachState;
|
|
@@ -266,49 +266,49 @@ export interface IFluidDataStoreContext extends IEventProvider<IFluidDataStoreCo
|
|
|
266
266
|
uploadBlob(blob: ArrayBufferLike, signal?: AbortSignal): Promise<IFluidHandle<ArrayBufferLike>>;
|
|
267
267
|
}
|
|
268
268
|
|
|
269
|
-
// @
|
|
269
|
+
// @internal (undocumented)
|
|
270
270
|
export interface IFluidDataStoreContextDetached extends IFluidDataStoreContext {
|
|
271
271
|
attachRuntime(factory: IProvideFluidDataStoreFactory, dataStoreRuntime: IFluidDataStoreChannel): Promise<void>;
|
|
272
272
|
}
|
|
273
273
|
|
|
274
|
-
// @
|
|
274
|
+
// @internal (undocumented)
|
|
275
275
|
export interface IFluidDataStoreContextEvents extends IEvent {
|
|
276
276
|
// (undocumented)
|
|
277
277
|
(event: "attaching" | "attached", listener: () => void): any;
|
|
278
278
|
}
|
|
279
279
|
|
|
280
|
-
// @
|
|
280
|
+
// @internal (undocumented)
|
|
281
281
|
export const IFluidDataStoreFactory: keyof IProvideFluidDataStoreFactory;
|
|
282
282
|
|
|
283
|
-
// @
|
|
283
|
+
// @internal
|
|
284
284
|
export interface IFluidDataStoreFactory extends IProvideFluidDataStoreFactory {
|
|
285
285
|
instantiateDataStore(context: IFluidDataStoreContext, existing: boolean): Promise<IFluidDataStoreChannel>;
|
|
286
286
|
type: string;
|
|
287
287
|
}
|
|
288
288
|
|
|
289
|
-
// @
|
|
289
|
+
// @internal (undocumented)
|
|
290
290
|
export const IFluidDataStoreRegistry: keyof IProvideFluidDataStoreRegistry;
|
|
291
291
|
|
|
292
|
-
// @
|
|
292
|
+
// @internal
|
|
293
293
|
export interface IFluidDataStoreRegistry extends IProvideFluidDataStoreRegistry {
|
|
294
294
|
// (undocumented)
|
|
295
295
|
get(name: string): Promise<FluidDataStoreRegistryEntry | undefined>;
|
|
296
296
|
}
|
|
297
297
|
|
|
298
|
-
// @
|
|
298
|
+
// @internal
|
|
299
299
|
export interface IGarbageCollectionData {
|
|
300
300
|
gcNodes: {
|
|
301
301
|
[id: string]: string[];
|
|
302
302
|
};
|
|
303
303
|
}
|
|
304
304
|
|
|
305
|
-
// @
|
|
305
|
+
// @internal
|
|
306
306
|
export interface IGarbageCollectionDetailsBase {
|
|
307
307
|
gcData?: IGarbageCollectionData;
|
|
308
308
|
usedRoutes?: string[];
|
|
309
309
|
}
|
|
310
310
|
|
|
311
|
-
// @
|
|
311
|
+
// @internal
|
|
312
312
|
export interface IIdCompressor {
|
|
313
313
|
decompress(id: SessionSpaceCompressedId): StableId;
|
|
314
314
|
generateCompressedId(): SessionSpaceCompressedId;
|
|
@@ -320,7 +320,7 @@ export interface IIdCompressor {
|
|
|
320
320
|
tryRecompress(uncompressed: StableId): SessionSpaceCompressedId | undefined;
|
|
321
321
|
}
|
|
322
322
|
|
|
323
|
-
// @
|
|
323
|
+
// @internal (undocumented)
|
|
324
324
|
export interface IIdCompressorCore {
|
|
325
325
|
finalizeCreationRange(range: IdCreationRange): void;
|
|
326
326
|
serialize(withSession: true): SerializedIdCompressorWithOngoingSession;
|
|
@@ -328,33 +328,33 @@ export interface IIdCompressorCore {
|
|
|
328
328
|
takeNextCreationRange(): IdCreationRange;
|
|
329
329
|
}
|
|
330
330
|
|
|
331
|
-
// @
|
|
331
|
+
// @internal
|
|
332
332
|
export interface IInboundSignalMessage extends ISignalMessage {
|
|
333
333
|
// (undocumented)
|
|
334
334
|
type: string;
|
|
335
335
|
}
|
|
336
336
|
|
|
337
|
-
// @
|
|
337
|
+
// @internal
|
|
338
338
|
export type InboundAttachMessage = Omit<IAttachMessage, "snapshot"> & {
|
|
339
339
|
snapshot: IAttachMessage["snapshot"] | null;
|
|
340
340
|
};
|
|
341
341
|
|
|
342
|
-
// @
|
|
342
|
+
// @internal
|
|
343
343
|
export const initialClusterCapacity = 512;
|
|
344
344
|
|
|
345
|
-
// @
|
|
345
|
+
// @internal (undocumented)
|
|
346
346
|
export interface IProvideFluidDataStoreFactory {
|
|
347
347
|
// (undocumented)
|
|
348
348
|
readonly IFluidDataStoreFactory: IFluidDataStoreFactory;
|
|
349
349
|
}
|
|
350
350
|
|
|
351
|
-
// @
|
|
351
|
+
// @internal (undocumented)
|
|
352
352
|
export interface IProvideFluidDataStoreRegistry {
|
|
353
353
|
// (undocumented)
|
|
354
354
|
readonly IFluidDataStoreRegistry: IFluidDataStoreRegistry;
|
|
355
355
|
}
|
|
356
356
|
|
|
357
|
-
// @
|
|
357
|
+
// @internal (undocumented)
|
|
358
358
|
export interface ISignalEnvelope {
|
|
359
359
|
address?: string;
|
|
360
360
|
clientSignalSequenceNumber: number;
|
|
@@ -364,14 +364,14 @@ export interface ISignalEnvelope {
|
|
|
364
364
|
};
|
|
365
365
|
}
|
|
366
366
|
|
|
367
|
-
// @
|
|
367
|
+
// @internal
|
|
368
368
|
export interface ISummarizeInternalResult extends ISummarizeResult {
|
|
369
369
|
// (undocumented)
|
|
370
370
|
id: string;
|
|
371
371
|
pathPartsForChildren?: string[];
|
|
372
372
|
}
|
|
373
373
|
|
|
374
|
-
// @
|
|
374
|
+
// @internal
|
|
375
375
|
export interface ISummarizeResult {
|
|
376
376
|
// (undocumented)
|
|
377
377
|
stats: ISummaryStats;
|
|
@@ -379,7 +379,7 @@ export interface ISummarizeResult {
|
|
|
379
379
|
summary: SummaryTree;
|
|
380
380
|
}
|
|
381
381
|
|
|
382
|
-
// @
|
|
382
|
+
// @internal (undocumented)
|
|
383
383
|
export interface ISummarizerNode {
|
|
384
384
|
// (undocumented)
|
|
385
385
|
createChild(
|
|
@@ -397,18 +397,18 @@ export interface ISummarizerNode {
|
|
|
397
397
|
updateBaseSummaryState(snapshot: ISnapshotTree): void;
|
|
398
398
|
}
|
|
399
399
|
|
|
400
|
-
// @
|
|
400
|
+
// @internal (undocumented)
|
|
401
401
|
export interface ISummarizerNodeConfig {
|
|
402
402
|
readonly canReuseHandle?: boolean;
|
|
403
403
|
readonly throwOnFailure?: true;
|
|
404
404
|
}
|
|
405
405
|
|
|
406
|
-
// @
|
|
406
|
+
// @internal (undocumented)
|
|
407
407
|
export interface ISummarizerNodeConfigWithGC extends ISummarizerNodeConfig {
|
|
408
408
|
readonly gcDisabled?: boolean;
|
|
409
409
|
}
|
|
410
410
|
|
|
411
|
-
// @
|
|
411
|
+
// @internal
|
|
412
412
|
export interface ISummarizerNodeWithGC extends ISummarizerNode {
|
|
413
413
|
// (undocumented)
|
|
414
414
|
createChild(
|
|
@@ -425,7 +425,7 @@ export interface ISummarizerNodeWithGC extends ISummarizerNode {
|
|
|
425
425
|
updateUsedRoutes(usedRoutes: string[]): void;
|
|
426
426
|
}
|
|
427
427
|
|
|
428
|
-
// @
|
|
428
|
+
// @internal
|
|
429
429
|
export interface ISummaryStats {
|
|
430
430
|
// (undocumented)
|
|
431
431
|
blobNodeCount: number;
|
|
@@ -439,13 +439,13 @@ export interface ISummaryStats {
|
|
|
439
439
|
unreferencedBlobSize: number;
|
|
440
440
|
}
|
|
441
441
|
|
|
442
|
-
// @
|
|
442
|
+
// @internal
|
|
443
443
|
export interface ISummaryTreeWithStats {
|
|
444
444
|
stats: ISummaryStats;
|
|
445
445
|
summary: ISummaryTree;
|
|
446
446
|
}
|
|
447
447
|
|
|
448
|
-
// @
|
|
448
|
+
// @internal
|
|
449
449
|
export interface ITelemetryContext {
|
|
450
450
|
get(prefix: string, property: string): TelemetryEventPropertyType;
|
|
451
451
|
serialize(): string;
|
|
@@ -453,73 +453,73 @@ export interface ITelemetryContext {
|
|
|
453
453
|
setMultiple(prefix: string, property: string, values: Record<string, TelemetryEventPropertyType>): void;
|
|
454
454
|
}
|
|
455
455
|
|
|
456
|
-
// @
|
|
456
|
+
// @internal
|
|
457
457
|
export interface LocalAttributionKey {
|
|
458
458
|
// (undocumented)
|
|
459
459
|
type: "local";
|
|
460
460
|
}
|
|
461
461
|
|
|
462
|
-
// @
|
|
462
|
+
// @internal
|
|
463
463
|
export type NamedFluidDataStoreRegistryEntries = Iterable<NamedFluidDataStoreRegistryEntry>;
|
|
464
464
|
|
|
465
|
-
// @
|
|
465
|
+
// @internal
|
|
466
466
|
export type NamedFluidDataStoreRegistryEntry = [string, Promise<FluidDataStoreRegistryEntry>];
|
|
467
467
|
|
|
468
|
-
// @
|
|
468
|
+
// @internal
|
|
469
469
|
export interface OpAttributionKey {
|
|
470
470
|
seq: number;
|
|
471
471
|
type: "op";
|
|
472
472
|
}
|
|
473
473
|
|
|
474
|
-
// @
|
|
474
|
+
// @internal
|
|
475
475
|
export type OpSpaceCompressedId = number & {
|
|
476
476
|
readonly OpNormalized: "9209432d-a959-4df7-b2ad-767ead4dbcae";
|
|
477
477
|
};
|
|
478
478
|
|
|
479
|
-
// @
|
|
479
|
+
// @internal
|
|
480
480
|
export type SerializedIdCompressor = string & {
|
|
481
481
|
readonly _serializedIdCompressor: "8c73c57c-1cf4-4278-8915-6444cb4f6af5";
|
|
482
482
|
};
|
|
483
483
|
|
|
484
|
-
// @
|
|
484
|
+
// @internal
|
|
485
485
|
export type SerializedIdCompressorWithNoSession = SerializedIdCompressor & {
|
|
486
486
|
readonly _noLocalState: "3aa2e1e8-cc28-4ea7-bc1a-a11dc3f26dfb";
|
|
487
487
|
};
|
|
488
488
|
|
|
489
|
-
// @
|
|
489
|
+
// @internal
|
|
490
490
|
export type SerializedIdCompressorWithOngoingSession = SerializedIdCompressor & {
|
|
491
491
|
readonly _hasLocalState: "1281acae-6d14-47e7-bc92-71c8ee0819cb";
|
|
492
492
|
};
|
|
493
493
|
|
|
494
|
-
// @
|
|
494
|
+
// @internal
|
|
495
495
|
export type SessionId = StableId & {
|
|
496
496
|
readonly SessionId: "4498f850-e14e-4be9-8db0-89ec00997e58";
|
|
497
497
|
};
|
|
498
498
|
|
|
499
|
-
// @
|
|
499
|
+
// @internal
|
|
500
500
|
export type SessionSpaceCompressedId = number & {
|
|
501
501
|
readonly SessionUnique: "cea55054-6b82-4cbf-ad19-1fa645ea3b3e";
|
|
502
502
|
};
|
|
503
503
|
|
|
504
|
-
// @
|
|
504
|
+
// @internal
|
|
505
505
|
export type StableId = string & {
|
|
506
506
|
readonly StableId: "53172b0d-a3d5-41ea-bd75-b43839c97f5a";
|
|
507
507
|
};
|
|
508
508
|
|
|
509
|
-
// @
|
|
509
|
+
// @internal (undocumented)
|
|
510
510
|
export type SummarizeInternalFn = (fullTree: boolean, trackState: boolean, telemetryContext?: ITelemetryContext, incrementalSummaryContext?: IExperimentalIncrementalSummaryContext) => Promise<ISummarizeInternalResult>;
|
|
511
511
|
|
|
512
|
-
// @
|
|
512
|
+
// @internal (undocumented)
|
|
513
513
|
export const totalBlobSizePropertyName = "TotalBlobSize";
|
|
514
514
|
|
|
515
|
-
// @
|
|
515
|
+
// @internal
|
|
516
516
|
export const VisibilityState: {
|
|
517
517
|
NotVisible: string;
|
|
518
518
|
LocallyVisible: string;
|
|
519
519
|
GloballyVisible: string;
|
|
520
520
|
};
|
|
521
521
|
|
|
522
|
-
// @
|
|
522
|
+
// @internal (undocumented)
|
|
523
523
|
export type VisibilityState = (typeof VisibilityState)[keyof typeof VisibilityState];
|
|
524
524
|
|
|
525
525
|
// (No @packageDocumentation comment for this package)
|
package/dist/attribution.d.ts
CHANGED
|
@@ -6,8 +6,7 @@ import type { IUser } from "@fluidframework/protocol-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.
|
|
9
|
-
*
|
|
10
|
-
* @alpha
|
|
9
|
+
* @internal
|
|
11
10
|
*/
|
|
12
11
|
export interface OpAttributionKey {
|
|
13
12
|
/**
|
|
@@ -29,8 +28,7 @@ export interface OpAttributionKey {
|
|
|
29
28
|
* is currently unsupported, as applications can effectively modify content anonymously while detached.
|
|
30
29
|
* The runtime has no mechanism for reliably obtaining the user. It would be reasonable to start supporting
|
|
31
30
|
* this functionality if the host provided additional context to their attributor or attach calls.
|
|
32
|
-
*
|
|
33
|
-
* @alpha
|
|
31
|
+
* @internal
|
|
34
32
|
*/
|
|
35
33
|
export interface DetachedAttributionKey {
|
|
36
34
|
type: "detached";
|
|
@@ -46,20 +44,19 @@ export interface DetachedAttributionKey {
|
|
|
46
44
|
}
|
|
47
45
|
/**
|
|
48
46
|
* AttributionKey associated with content that has been made locally but not yet acked by the server.
|
|
49
|
-
*
|
|
50
|
-
* @alpha
|
|
47
|
+
* @internal
|
|
51
48
|
*/
|
|
52
49
|
export interface LocalAttributionKey {
|
|
53
50
|
type: "local";
|
|
54
51
|
}
|
|
55
52
|
/**
|
|
56
53
|
* Can be indexed into the ContainerRuntime in order to retrieve {@link AttributionInfo}.
|
|
57
|
-
* @
|
|
54
|
+
* @internal
|
|
58
55
|
*/
|
|
59
56
|
export type AttributionKey = OpAttributionKey | DetachedAttributionKey | LocalAttributionKey;
|
|
60
57
|
/**
|
|
61
58
|
* Attribution information associated with a change.
|
|
62
|
-
* @
|
|
59
|
+
* @internal
|
|
63
60
|
*/
|
|
64
61
|
export interface AttributionInfo {
|
|
65
62
|
/**
|
|
@@ -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,sCAAsC,CAAC;AAElE
|
|
1
|
+
{"version":3,"file":"attribution.d.ts","sourceRoot":"","sources":["../src/attribution.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,sCAAsC,CAAC;AAElE;;;;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/protocol-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
|
|
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/protocol-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 * @internal\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 * @internal\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 * @internal\n */\nexport interface LocalAttributionKey {\n\ttype: \"local\";\n}\n\n/**\n * Can be indexed into the ContainerRuntime in order to retrieve {@link AttributionInfo}.\n * @internal\n */\nexport type AttributionKey = OpAttributionKey | DetachedAttributionKey | LocalAttributionKey;\n\n/**\n * Attribution information associated with a change.\n * @internal\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"]}
|
|
@@ -14,6 +14,7 @@ import { CreateChildSummarizerNodeParam, ISummarizerNodeWithGC, ISummaryTreeWith
|
|
|
14
14
|
import { IIdCompressor } from "./id-compressor";
|
|
15
15
|
/**
|
|
16
16
|
* Runtime flush mode handling
|
|
17
|
+
* @internal
|
|
17
18
|
*/
|
|
18
19
|
export declare enum FlushMode {
|
|
19
20
|
/**
|
|
@@ -26,6 +27,9 @@ export declare enum FlushMode {
|
|
|
26
27
|
*/
|
|
27
28
|
TurnBased = 1
|
|
28
29
|
}
|
|
30
|
+
/**
|
|
31
|
+
* @internal
|
|
32
|
+
*/
|
|
29
33
|
export declare enum FlushModeExperimental {
|
|
30
34
|
/**
|
|
31
35
|
* When in Async flush mode, the runtime will accumulate all operations across JS turns and send them as a single
|
|
@@ -41,6 +45,7 @@ export declare enum FlushModeExperimental {
|
|
|
41
45
|
/**
|
|
42
46
|
* This tells the visibility state of a Fluid object. It basically tracks whether the object is not visible, visible
|
|
43
47
|
* locally within the container only or visible globally to all clients.
|
|
48
|
+
* @internal
|
|
44
49
|
*/
|
|
45
50
|
export declare const VisibilityState: {
|
|
46
51
|
/**
|
|
@@ -64,7 +69,13 @@ export declare const VisibilityState: {
|
|
|
64
69
|
*/
|
|
65
70
|
GloballyVisible: string;
|
|
66
71
|
};
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
67
75
|
export type VisibilityState = (typeof VisibilityState)[keyof typeof VisibilityState];
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
68
79
|
export interface IContainerRuntimeBaseEvents extends IEvent {
|
|
69
80
|
(event: "batchBegin", listener: (op: ISequencedDocumentMessage) => void): any;
|
|
70
81
|
/**
|
|
@@ -83,6 +94,7 @@ export interface IContainerRuntimeBaseEvents extends IEvent {
|
|
|
83
94
|
* the `IContainerRuntime.getAliasedDataStoreEntryPoint` function. The current datastore should be discarded
|
|
84
95
|
* and will be garbage collected. The current datastore cannot be aliased to a different value.
|
|
85
96
|
* 'AlreadyAliased' - the datastore has already been previously bound to another alias name.
|
|
97
|
+
* @internal
|
|
86
98
|
*/
|
|
87
99
|
export type AliasResult = "Success" | "Conflict" | "AlreadyAliased";
|
|
88
100
|
/**
|
|
@@ -90,6 +102,7 @@ export type AliasResult = "Success" | "Conflict" | "AlreadyAliased";
|
|
|
90
102
|
* - Handle to the data store's entryPoint
|
|
91
103
|
* - Fluid router for the data store
|
|
92
104
|
* - Can be assigned an alias
|
|
105
|
+
* @internal
|
|
93
106
|
*/
|
|
94
107
|
export interface IDataStore {
|
|
95
108
|
/**
|
|
@@ -141,6 +154,7 @@ export interface IDataStore {
|
|
|
141
154
|
/**
|
|
142
155
|
* A reduced set of functionality of IContainerRuntime that a data store context/data store runtime will need
|
|
143
156
|
* TODO: this should be merged into IFluidDataStoreContext
|
|
157
|
+
* @internal
|
|
144
158
|
*/
|
|
145
159
|
export interface IContainerRuntimeBase extends IEventProvider<IContainerRuntimeBaseEvents> {
|
|
146
160
|
readonly logger: ITelemetryBaseLogger;
|
|
@@ -163,7 +177,6 @@ export interface IContainerRuntimeBase extends IEventProvider<IContainerRuntimeB
|
|
|
163
177
|
submitSignal(type: string, content: any): void;
|
|
164
178
|
/**
|
|
165
179
|
* @deprecated 0.16 Issue #1537, #3631
|
|
166
|
-
* @internal
|
|
167
180
|
*/
|
|
168
181
|
_createDataStoreWithProps(pkg: string | string[], props?: any, id?: string): Promise<IDataStore>;
|
|
169
182
|
/**
|
|
@@ -205,6 +218,7 @@ export interface IContainerRuntimeBase extends IEventProvider<IContainerRuntimeB
|
|
|
205
218
|
*
|
|
206
219
|
* Functionality include attach, snapshot, op/signal processing, request routes, expose an entryPoint,
|
|
207
220
|
* and connection state notifications
|
|
221
|
+
* @internal
|
|
208
222
|
*/
|
|
209
223
|
export interface IFluidDataStoreChannel extends IDisposable {
|
|
210
224
|
readonly id: string;
|
|
@@ -287,17 +301,24 @@ export interface IFluidDataStoreChannel extends IDisposable {
|
|
|
287
301
|
*/
|
|
288
302
|
readonly IFluidRouter: IFluidRouter;
|
|
289
303
|
}
|
|
304
|
+
/**
|
|
305
|
+
* @internal
|
|
306
|
+
*/
|
|
290
307
|
export type CreateChildSummarizerNodeFn = (summarizeInternal: SummarizeInternalFn, getGCDataFn: (fullGC?: boolean) => Promise<IGarbageCollectionData>,
|
|
291
308
|
/**
|
|
292
309
|
* @deprecated The functionality to get base GC details has been moved to summarizer node.
|
|
293
310
|
*/
|
|
294
311
|
getBaseGCDetailsFn?: () => Promise<IGarbageCollectionDetailsBase>) => ISummarizerNodeWithGC;
|
|
312
|
+
/**
|
|
313
|
+
* @internal
|
|
314
|
+
*/
|
|
295
315
|
export interface IFluidDataStoreContextEvents extends IEvent {
|
|
296
316
|
(event: "attaching" | "attached", listener: () => void): any;
|
|
297
317
|
}
|
|
298
318
|
/**
|
|
299
319
|
* Represents the context for the data store. It is used by the data store runtime to
|
|
300
320
|
* get information and call functionality to the container.
|
|
321
|
+
* @internal
|
|
301
322
|
*/
|
|
302
323
|
export interface IFluidDataStoreContext extends IEventProvider<IFluidDataStoreContextEvents>, Partial<IProvideFluidDataStoreRegistry>, IProvideFluidHandleContext {
|
|
303
324
|
readonly id: string;
|
|
@@ -413,6 +434,9 @@ export interface IFluidDataStoreContext extends IEventProvider<IFluidDataStoreCo
|
|
|
413
434
|
*/
|
|
414
435
|
addedGCOutboundReference?(srcHandle: IFluidHandle, outboundHandle: IFluidHandle): void;
|
|
415
436
|
}
|
|
437
|
+
/**
|
|
438
|
+
* @internal
|
|
439
|
+
*/
|
|
416
440
|
export interface IFluidDataStoreContextDetached extends IFluidDataStoreContext {
|
|
417
441
|
/**
|
|
418
442
|
* Binds a runtime to the context.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dataStoreContext.d.ts","sourceRoot":"","sources":["../src/dataStoreContext.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EACN,MAAM,EACN,cAAc,EACd,oBAAoB,EACpB,WAAW,EAEX,YAAY,EACZ,0BAA0B,EAC1B,YAAY,EACZ,QAAQ,EACR,SAAS,EACT,WAAW,EACX,mBAAmB,EACnB,MAAM,iCAAiC,CAAC;AACzC,OAAO,EACN,SAAS,EACT,aAAa,EACb,WAAW,EACX,cAAc,EACd,MAAM,uCAAuC,CAAC;AAC/C,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAC;AAC7E,OAAO,EACN,cAAc,EACd,gBAAgB,EAChB,cAAc,EACd,yBAAyB,EACzB,aAAa,EACb,MAAM,sCAAsC,CAAC;AAC9C,OAAO,EAAE,6BAA6B,EAAE,MAAM,oBAAoB,CAAC;AACnE,OAAO,EAAE,8BAA8B,EAAE,MAAM,qBAAqB,CAAC;AACrE,OAAO,EAAE,sBAAsB,EAAE,6BAA6B,EAAE,MAAM,qBAAqB,CAAC;AAC5F,OAAO,EAAE,qBAAqB,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,EACN,8BAA8B,EAC9B,qBAAqB,EACrB,qBAAqB,EACrB,iBAAiB,EACjB,mBAAmB,EACnB,MAAM,WAAW,CAAC;AACnB,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAEhD
|
|
1
|
+
{"version":3,"file":"dataStoreContext.d.ts","sourceRoot":"","sources":["../src/dataStoreContext.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EACN,MAAM,EACN,cAAc,EACd,oBAAoB,EACpB,WAAW,EAEX,YAAY,EACZ,0BAA0B,EAC1B,YAAY,EACZ,QAAQ,EACR,SAAS,EACT,WAAW,EACX,mBAAmB,EACnB,MAAM,iCAAiC,CAAC;AACzC,OAAO,EACN,SAAS,EACT,aAAa,EACb,WAAW,EACX,cAAc,EACd,MAAM,uCAAuC,CAAC;AAC/C,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAC;AAC7E,OAAO,EACN,cAAc,EACd,gBAAgB,EAChB,cAAc,EACd,yBAAyB,EACzB,aAAa,EACb,MAAM,sCAAsC,CAAC;AAC9C,OAAO,EAAE,6BAA6B,EAAE,MAAM,oBAAoB,CAAC;AACnE,OAAO,EAAE,8BAA8B,EAAE,MAAM,qBAAqB,CAAC;AACrE,OAAO,EAAE,sBAAsB,EAAE,6BAA6B,EAAE,MAAM,qBAAqB,CAAC;AAC5F,OAAO,EAAE,qBAAqB,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,EACN,8BAA8B,EAC9B,qBAAqB,EACrB,qBAAqB,EACrB,iBAAiB,EACjB,mBAAmB,EACnB,MAAM,WAAW,CAAC;AACnB,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAEhD;;;GAGG;AACH,oBAAY,SAAS;IACpB;;OAEG;IACH,SAAS,IAAA;IAET;;;OAGG;IACH,SAAS,IAAA;CACT;AAED;;GAEG;AACH,oBAAY,qBAAqB;IAChC;;;;;;;;OAQG;IACH,KAAK,IAAI;CACT;AAED;;;;GAIG;AACH,eAAO,MAAM,eAAe;IAC3B;;OAEG;;IAGH;;;;OAIG;;IAGH;;;;;;;;OAQG;;CAEH,CAAC;AACF;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG,CAAC,OAAO,eAAe,CAAC,CAAC,MAAM,OAAO,eAAe,CAAC,CAAC;AAErF;;GAEG;AACH,MAAM,WAAW,2BAA4B,SAAQ,MAAM;IAC1D,CAAC,KAAK,EAAE,YAAY,EAAE,QAAQ,EAAE,CAAC,EAAE,EAAE,yBAAyB,KAAK,IAAI,OAAE;IACzE;;;OAGG;IACH,CAAC,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC,EAAE,EAAE,yBAAyB,EAAE,cAAc,CAAC,EAAE,OAAO,KAAK,IAAI,OAAE;IAC3F,CAAC,KAAK,EAAE,UAAU,EAAE,QAAQ,EAAE,CAAC,KAAK,EAAE,GAAG,EAAE,EAAE,EAAE,yBAAyB,KAAK,IAAI,OAAE;IACnF,CAAC,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,CAAC,OAAO,EAAE,qBAAqB,EAAE,KAAK,EAAE,OAAO,KAAK,IAAI,OAAE;CACtF;AAED;;;;;;;;;GASG;AACH,MAAM,MAAM,WAAW,GAAG,SAAS,GAAG,UAAU,GAAG,gBAAgB,CAAC;AAEpE;;;;;;GAMG;AACH,MAAM,WAAW,UAAU;IAC1B;;;;;;;OAOG;IACH,WAAW,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,CAAC,CAAC;IAEjD;;;OAGG;IACH,QAAQ,CAAC,UAAU,EAAE,YAAY,CAAC,WAAW,CAAC,CAAC;IAE/C;;;;;;;;;;;OAWG;IACH,OAAO,CAAC,OAAO,EAAE;QAAE,GAAG,EAAE,GAAG,CAAC;QAAC,OAAO,CAAC,EAAE,SAAS,CAAA;KAAE,GAAG,OAAO,CAAC,SAAS,CAAC,CAAC;IAExE;;;;;;;;;OASG;IACH,OAAO,CAAC,OAAO,EAAE,QAAQ,GAAG,OAAO,CAAC,SAAS,CAAC,CAAC;IAE/C;;OAEG;IAEH,QAAQ,CAAC,YAAY,EAAE,YAAY,CAAC;CACpC;AAED;;;;GAIG;AACH,MAAM,WAAW,qBAAsB,SAAQ,cAAc,CAAC,2BAA2B,CAAC;IACzF,QAAQ,CAAC,MAAM,EAAE,oBAAoB,CAAC;IACtC,QAAQ,CAAC,aAAa,EAAE,cAAc,CAAC;IAEvC;;;OAGG;IACH,iBAAiB,CAAC,QAAQ,EAAE,MAAM,IAAI,GAAG,IAAI,CAAC;IAE9C;;;OAGG;IACH,OAAO,CAAC,OAAO,EAAE,QAAQ,GAAG,OAAO,CAAC,SAAS,CAAC,CAAC;IAE/C;;;;OAIG;IACH,YAAY,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,GAAG,IAAI,CAAC;IAE/C;;OAEG;IACH,yBAAyB,CACxB,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,EACtB,KAAK,CAAC,EAAE,GAAG,EACX,EAAE,CAAC,EAAE,MAAM,GACT,OAAO,CAAC,UAAU,CAAC,CAAC;IAEvB;;;;;;;OAOG;IACH,eAAe,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,OAAO,CAAC,UAAU,CAAC,CAAC;IAE7D;;;OAGG;IACH,uBAAuB,CAAC,GAAG,EAAE,QAAQ,CAAC,MAAM,EAAE,CAAC,GAAG,8BAA8B,CAAC;IAEjF;;;;OAIG;IACH,cAAc,CAAC,WAAW,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAEjE,UAAU,CAAC,IAAI,EAAE,eAAe,EAAE,MAAM,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,YAAY,CAAC,eAAe,CAAC,CAAC,CAAC;IAEhG;;OAEG;IACH,SAAS,IAAI,cAAc,CAAC;IAE5B;;OAEG;IACH,WAAW,IAAI,SAAS,CAAC;IAEzB;;OAEG;IACH,QAAQ,CAAC,mBAAmB,EAAE,mBAAmB,CAAC;CAClD;AAED;;;;;;GAMG;AACH,MAAM,WAAW,sBAAuB,SAAQ,WAAW;IAC1D,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,WAAW,CAAC;IAElC,QAAQ,CAAC,eAAe,EAAE,eAAe,CAAC;IAE1C;;;OAGG;IACH,WAAW,IAAI,IAAI,CAAC;IAEpB;;;OAGG;IACH,yBAAyB,IAAI,IAAI,CAAC;IAElC;;OAEG;IACH,gBAAgB,CAAC,gBAAgB,CAAC,EAAE,iBAAiB,GAAG,qBAAqB,CAAC;IAE9E;;OAEG;IACH,OAAO,CAAC,OAAO,EAAE,yBAAyB,EAAE,KAAK,EAAE,OAAO,EAAE,eAAe,EAAE,OAAO,GAAG,IAAI,CAAC;IAE5F;;OAEG;IACH,aAAa,CAAC,OAAO,EAAE,GAAG,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI,CAAC;IAElD;;;;;;OAMG;IACH,SAAS,CACR,QAAQ,CAAC,EAAE,OAAO,EAClB,UAAU,CAAC,EAAE,OAAO,EACpB,gBAAgB,CAAC,EAAE,iBAAiB,GAClC,OAAO,CAAC,qBAAqB,CAAC,CAAC;IAElC;;;;OAIG;IACH,SAAS,CAAC,MAAM,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC,sBAAsB,CAAC,CAAC;IAE7D;;;OAGG;IACH,gBAAgB,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;IAE7C;;;;;OAKG;IACH,kBAAkB,CAAC,SAAS,EAAE,OAAO,EAAE,QAAQ,CAAC,EAAE,MAAM,OAAE;IAE1D;;;;;OAKG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,eAAe,EAAE,OAAO,OAAE;IAE/D,cAAc,CAAC,OAAO,EAAE,GAAG,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IAE/C;;;;;OAKG;IACH,QAAQ,CAAC,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,eAAe,EAAE,OAAO,GAAG,IAAI,CAAC;IAEtE;;;OAGG;IACH,QAAQ,CAAC,UAAU,EAAE,YAAY,CAAC,WAAW,CAAC,CAAC;IAE/C,OAAO,CAAC,OAAO,EAAE,QAAQ,GAAG,OAAO,CAAC,SAAS,CAAC,CAAC;IAE/C;;OAEG;IAEH,QAAQ,CAAC,YAAY,EAAE,YAAY,CAAC;CACpC;AAED;;GAEG;AACH,MAAM,MAAM,2BAA2B,GAAG,CACzC,iBAAiB,EAAE,mBAAmB,EACtC,WAAW,EAAE,CAAC,MAAM,CAAC,EAAE,OAAO,KAAK,OAAO,CAAC,sBAAsB,CAAC;AAClE;;GAEG;AACH,kBAAkB,CAAC,EAAE,MAAM,OAAO,CAAC,6BAA6B,CAAC,KAC7D,qBAAqB,CAAC;AAE3B;;GAEG;AACH,MAAM,WAAW,4BAA6B,SAAQ,MAAM;IAC3D,CAAC,KAAK,EAAE,WAAW,GAAG,UAAU,EAAE,QAAQ,EAAE,MAAM,IAAI,OAAE;CACxD;AAED;;;;GAIG;AACH,MAAM,WAAW,sBAChB,SAAQ,cAAc,CAAC,4BAA4B,CAAC,EACnD,OAAO,CAAC,8BAA8B,CAAC,EACvC,0BAA0B;IAC3B,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB;;;;;;;OAOG;IACH,QAAQ,CAAC,gBAAgB,EAAE,OAAO,CAAC;IACnC;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,SAAS,MAAM,EAAE,CAAC;IACxC,QAAQ,CAAC,OAAO,EAAE,cAAc,CAAC;IACjC,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,SAAS,CAAC;IACtC,QAAQ,CAAC,SAAS,EAAE,OAAO,CAAC;IAC5B,QAAQ,CAAC,YAAY,EAAE,aAAa,CAAC,yBAAyB,EAAE,gBAAgB,CAAC,CAAC;IAClF,QAAQ,CAAC,OAAO,EAAE,uBAAuB,CAAC;IAC1C,QAAQ,CAAC,YAAY,EAAE,aAAa,GAAG,SAAS,CAAC;IACjD,QAAQ,CAAC,MAAM,EAAE,oBAAoB,CAAC;IACtC,QAAQ,CAAC,aAAa,EAAE,cAAc,CAAC;IACvC,QAAQ,CAAC,YAAY,CAAC,EAAE,aAAa,CAAC;IACtC;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,WAAW,CAAC;IAElC,QAAQ,CAAC,gBAAgB,EAAE,qBAAqB,CAAC;IAEjD;;OAEG;IACH,QAAQ,CAAC,WAAW,CAAC,EAAE,GAAG,CAAC;IAE3B;;OAEG;IACH,QAAQ,CAAC,KAAK,EAAE,WAAW,CAAC;IAE5B;;OAEG;IACH,SAAS,IAAI,cAAc,CAAC;IAE5B;;OAEG;IACH,WAAW,IAAI,SAAS,CAAC;IAEzB;;;;;;;OAOG;IACH,wBAAwB,CAAC,CAAC,EAAE,QAAQ,EAAE,MAAM,CAAC,GAAG,CAAC,CAAC;IAElD;;;;;;;OAOG;IACH,aAAa,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,eAAe,EAAE,OAAO,GAAG,IAAI,CAAC;IAE1E;;;;;OAKG;IACH,YAAY,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAExE;;;OAGG;IACH,kBAAkB,IAAI,IAAI,CAAC;IAE3B;;;OAGG;IACH,eAAe,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;IAEvC;;;;OAIG;IACH,cAAc,CAAC,WAAW,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAEjE,8BAA8B;IAC7B;;OAEG;IACH,EAAE,EAAE,MAAM;IACV;;;;;OAKG;IACH,WAAW,EAAE,8BAA8B,GACzC,2BAA2B,CAAC;IAE/B,UAAU,CAAC,IAAI,EAAE,eAAe,EAAE,MAAM,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,YAAY,CAAC,eAAe,CAAC,CAAC,CAAC;IAEhG;;;;;OAKG;IACH,gBAAgB,IAAI,OAAO,CAAC,6BAA6B,CAAC,CAAC;IAE3D;;;;;OAKG;IACH,wBAAwB,CAAC,CAAC,SAAS,EAAE,YAAY,EAAE,cAAc,EAAE,YAAY,GAAG,IAAI,CAAC;CACvF;AAED;;GAEG;AACH,MAAM,WAAW,8BAA+B,SAAQ,sBAAsB;IAC7E;;OAEG;IACH,aAAa,CACZ,OAAO,EAAE,6BAA6B,EACtC,gBAAgB,EAAE,sBAAsB,GACtC,OAAO,CAAC,IAAI,CAAC,CAAC;CACjB"}
|