@fluidframework/container-runtime 2.115.0 → 2.116.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 +61 -0
- package/README.md +5 -3
- package/api-report/container-runtime.legacy.alpha.api.md +6 -4
- package/api-report/container-runtime.legacy.beta.api.md +30 -1
- package/container-runtime.test-files.tar +0 -0
- package/dist/channelCollection.d.ts +2 -2
- package/dist/channelCollection.d.ts.map +1 -1
- package/dist/channelCollection.js +3 -3
- package/dist/channelCollection.js.map +1 -1
- package/dist/containerCompatibility.d.ts +3 -3
- package/dist/containerCompatibility.d.ts.map +1 -1
- package/dist/containerCompatibility.js +3 -3
- package/dist/containerCompatibility.js.map +1 -1
- package/dist/containerRuntime.d.ts +40 -16
- package/dist/containerRuntime.d.ts.map +1 -1
- package/dist/containerRuntime.js +33 -10
- package/dist/containerRuntime.js.map +1 -1
- package/dist/dataStoreContext.d.ts +2 -2
- package/dist/dataStoreContext.d.ts.map +1 -1
- package/dist/dataStoreContext.js.map +1 -1
- package/dist/legacy.d.ts +3 -0
- package/dist/legacyAlpha.d.ts +3 -3
- package/dist/packageVersion.d.ts +1 -1
- package/dist/packageVersion.js +1 -1
- package/dist/packageVersion.js.map +1 -1
- package/dist/runtimeLayerCompatState.d.ts +1 -1
- package/dist/summary/documentSchema.d.ts +3 -3
- package/dist/summary/documentSchema.js.map +1 -1
- package/dist/versionMarks/versionMarkResolver.d.ts +3 -3
- package/dist/versionMarks/versionMarkResolver.js.map +1 -1
- package/lib/channelCollection.d.ts +2 -2
- package/lib/channelCollection.d.ts.map +1 -1
- package/lib/channelCollection.js +4 -4
- package/lib/channelCollection.js.map +1 -1
- package/lib/containerCompatibility.d.ts +3 -3
- package/lib/containerCompatibility.d.ts.map +1 -1
- package/lib/containerCompatibility.js +3 -3
- package/lib/containerCompatibility.js.map +1 -1
- package/lib/containerRuntime.d.ts +40 -16
- package/lib/containerRuntime.d.ts.map +1 -1
- package/lib/containerRuntime.js +33 -10
- package/lib/containerRuntime.js.map +1 -1
- package/lib/dataStoreContext.d.ts +2 -2
- package/lib/dataStoreContext.d.ts.map +1 -1
- package/lib/dataStoreContext.js.map +1 -1
- package/lib/legacy.d.ts +3 -0
- package/lib/legacyAlpha.d.ts +3 -3
- package/lib/packageVersion.d.ts +1 -1
- package/lib/packageVersion.js +1 -1
- package/lib/packageVersion.js.map +1 -1
- package/lib/runtimeLayerCompatState.d.ts +1 -1
- package/lib/summary/documentSchema.d.ts +3 -3
- package/lib/summary/documentSchema.js.map +1 -1
- package/lib/versionMarks/versionMarkResolver.d.ts +3 -3
- package/lib/versionMarks/versionMarkResolver.js.map +1 -1
- package/package.json +22 -22
- package/src/channelCollection.ts +6 -6
- package/src/containerCompatibility.ts +6 -6
- package/src/containerRuntime.ts +69 -25
- package/src/dataStoreContext.ts +2 -2
- package/src/packageVersion.ts +1 -1
- package/src/summary/documentSchema.ts +3 -3
- package/src/versionMarks/versionMarkResolver.ts +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,66 @@
|
|
|
1
1
|
# @fluidframework/container-runtime
|
|
2
2
|
|
|
3
|
+
## 2.116.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Rename minVersionForCollab to oldestSupportedClient ([#27806](https://github.com/microsoft/FluidFramework/pull/27806)) [86b912170c](https://github.com/microsoft/FluidFramework/commit/86b912170c0e12ebeb481c5201f923c72bf94498)
|
|
8
|
+
|
|
9
|
+
The cross-client compatibility parameter has new names:
|
|
10
|
+
- The
|
|
11
|
+
[`MinimumVersionForCollab`](https://fluidframework.com/docs/api/runtime-definitions/minimumversionforcollab-typealias)
|
|
12
|
+
type is now
|
|
13
|
+
[`OldestSupportedClientVersion`](https://fluidframework.com/docs/api/runtime-definitions/oldestsupportedclientversion-typealias).
|
|
14
|
+
- [`LoadContainerRuntimeParams.minVersionForCollab`](https://fluidframework.com/docs/api/container-runtime/loadcontainerruntimeparams-interface#minversionforcollab-propertysignature)
|
|
15
|
+
is now
|
|
16
|
+
[`LoadContainerRuntimeParams.oldestSupportedClient`](https://fluidframework.com/docs/api/container-runtime/loadcontainerruntimeparams-interface#oldestsupportedclient-propertysignature).
|
|
17
|
+
- [`BaseContainerRuntimeFactoryProps.minVersionForCollab`](https://fluidframework.com/docs/api/aqueduct/basecontainerruntimefactoryprops-interface#minversionforcollab-propertysignature)
|
|
18
|
+
is now
|
|
19
|
+
[`BaseContainerRuntimeFactoryProps.oldestSupportedClient`](https://fluidframework.com/docs/api/aqueduct/basecontainerruntimefactoryprops-interface#oldestsupportedclient-propertysignature).
|
|
20
|
+
- [`createTreeContainerRuntimeFactory`](https://fluidframework.com/docs/api/fluid-static/#createtreecontainerruntimefactory-function)
|
|
21
|
+
now accepts `oldestSupportedClient`.
|
|
22
|
+
`minVersionForCollaboration` remains available as a deprecated overload.
|
|
23
|
+
- `@fluidframework/driver-definitions` now exports its minor-only version type as
|
|
24
|
+
[`OldestSupportedServiceClientVersion`](https://fluidframework.com/docs/api/driver-definitions/oldestsupportedserviceclientversion-typealias),
|
|
25
|
+
and
|
|
26
|
+
[`ServiceOptions.oldestSupportedClient`](https://fluidframework.com/docs/api/driver-definitions/serviceoptions-interface#oldestsupportedclient-propertysignature)
|
|
27
|
+
is available.
|
|
28
|
+
- [`AzureClient`](https://fluidframework.com/docs/api/azure-client/azureclient-class),
|
|
29
|
+
[`OdspClient`](https://fluidframework.com/docs/api/odsp-client/odspclient-class),
|
|
30
|
+
and
|
|
31
|
+
[`TinyliciousClient`](https://fluidframework.com/docs/api/tinylicious-client/tinyliciousclient-class)
|
|
32
|
+
methods now use `oldestSupportedClient` and
|
|
33
|
+
[`OldestSupportedClientVersion`](https://fluidframework.com/docs/api/runtime-definitions/oldestsupportedclientversion-typealias)
|
|
34
|
+
in their signatures.
|
|
35
|
+
|
|
36
|
+
The previous property and type names in `@fluidframework/runtime-definitions`,
|
|
37
|
+
`@fluidframework/container-runtime`, `@fluidframework/aqueduct`, and
|
|
38
|
+
`@fluidframework/fluid-static` are deprecated and will be removed in future
|
|
39
|
+
releases. Where both old and new property names remain available, specifying both
|
|
40
|
+
is an error. The alpha `MinimumVersionForCollaboration` type and
|
|
41
|
+
`ServiceOptions.minVersionForCollaboration` property are replaced directly rather
|
|
42
|
+
than retained as aliases.
|
|
43
|
+
|
|
44
|
+
```typescript
|
|
45
|
+
// Before
|
|
46
|
+
const runtime = await loadContainerRuntime({
|
|
47
|
+
context,
|
|
48
|
+
registryEntries,
|
|
49
|
+
provideEntryPoint,
|
|
50
|
+
minVersionForCollab: "2.40.0",
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
// After
|
|
54
|
+
const runtime = await loadContainerRuntime({
|
|
55
|
+
context,
|
|
56
|
+
registryEntries,
|
|
57
|
+
provideEntryPoint,
|
|
58
|
+
oldestSupportedClient: "2.40.0",
|
|
59
|
+
});
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Telemetry property names are unchanged.
|
|
63
|
+
|
|
3
64
|
## 2.115.0
|
|
4
65
|
|
|
5
66
|
Dependency updates only.
|
package/README.md
CHANGED
|
@@ -142,7 +142,7 @@ There are many ways to [contribute](https://github.com/microsoft/FluidFramework/
|
|
|
142
142
|
- Review the [source code changes](https://github.com/microsoft/FluidFramework/pulls).
|
|
143
143
|
- [Contribute bug fixes](https://github.com/microsoft/FluidFramework/blob/main/CONTRIBUTING.md).
|
|
144
144
|
|
|
145
|
-
Detailed instructions for working in the repo can be found in the [Wiki](https://github.com/microsoft/FluidFramework/
|
|
145
|
+
Detailed instructions for working in the repo can be found in the [Wiki](https://github.com/microsoft/FluidFramework/blob/main/docs/content/Home.md).
|
|
146
146
|
|
|
147
147
|
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
|
|
148
148
|
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
|
|
@@ -153,9 +153,11 @@ Use of Microsoft trademarks or logos in modified versions of this project must n
|
|
|
153
153
|
|
|
154
154
|
## Help
|
|
155
155
|
|
|
156
|
-
Not finding what you're looking for in this README?
|
|
156
|
+
Not finding what you're looking for in this README?
|
|
157
|
+
Check out [fluidframework.com](https://fluidframework.com/docs/).
|
|
157
158
|
|
|
158
|
-
Still not finding what you're looking for?
|
|
159
|
+
Still not finding what you're looking for?
|
|
160
|
+
Please [file an issue](https://github.com/microsoft/FluidFramework/blob/main/docs/content/Contributing/Submitting-Bugs-and-Feature-Requests.md).
|
|
159
161
|
|
|
160
162
|
Thank you!
|
|
161
163
|
|
|
@@ -338,7 +338,7 @@ export interface IUploadSummaryResult extends Omit<IGenerateSummaryTreeResult, "
|
|
|
338
338
|
readonly uploadDuration: number;
|
|
339
339
|
}
|
|
340
340
|
|
|
341
|
-
// @
|
|
341
|
+
// @beta @legacy
|
|
342
342
|
export interface IVersionMarkResolver {
|
|
343
343
|
onBatchSequenced(listener: (batchId: string, sequenceNumber: number) => void): () => void;
|
|
344
344
|
resolve(batchId: string, sequenceNumberLowerBound: number): Promise<ResolveResult>;
|
|
@@ -358,7 +358,9 @@ export interface LoadContainerRuntimeParams {
|
|
|
358
358
|
containerScope?: FluidObject;
|
|
359
359
|
context: IContainerContext;
|
|
360
360
|
existing: boolean;
|
|
361
|
-
|
|
361
|
+
// @deprecated
|
|
362
|
+
minVersionForCollab?: OldestSupportedClientVersion;
|
|
363
|
+
oldestSupportedClient?: OldestSupportedClientVersion;
|
|
362
364
|
provideEntryPoint: (containerRuntime: IContainerRuntime) => Promise<FluidObject>;
|
|
363
365
|
registryEntries: NamedFluidDataStoreRegistryEntries;
|
|
364
366
|
// @deprecated
|
|
@@ -378,7 +380,7 @@ export type OpActionEventName = MessageType.Summarize | MessageType.SummaryAck |
|
|
|
378
380
|
// @beta @deprecated @legacy
|
|
379
381
|
export type ReadFluidDataStoreAttributes = IFluidDataStoreAttributes0 | IFluidDataStoreAttributes1 | IFluidDataStoreAttributes2;
|
|
380
382
|
|
|
381
|
-
// @
|
|
383
|
+
// @beta @legacy
|
|
382
384
|
export type ResolveResult = {
|
|
383
385
|
readonly kind: "resolved";
|
|
384
386
|
readonly sequenceNumber: number;
|
|
@@ -438,7 +440,7 @@ export type SummaryStage = SubmitSummaryResult["stage"] | "unknown";
|
|
|
438
440
|
// @beta @legacy
|
|
439
441
|
export const TombstoneResponseHeaderKey = "isTombstoned";
|
|
440
442
|
|
|
441
|
-
// @
|
|
443
|
+
// @beta @legacy
|
|
442
444
|
export type VersionMarkCapture = {
|
|
443
445
|
readonly kind: "pending";
|
|
444
446
|
readonly batchId: string;
|
|
@@ -338,6 +338,13 @@ export interface IUploadSummaryResult extends Omit<IGenerateSummaryTreeResult, "
|
|
|
338
338
|
readonly uploadDuration: number;
|
|
339
339
|
}
|
|
340
340
|
|
|
341
|
+
// @beta @legacy
|
|
342
|
+
export interface IVersionMarkResolver {
|
|
343
|
+
onBatchSequenced(listener: (batchId: string, sequenceNumber: number) => void): () => void;
|
|
344
|
+
resolve(batchId: string, sequenceNumberLowerBound: number): Promise<ResolveResult>;
|
|
345
|
+
sealAndCaptureVersionMark(): VersionMarkCapture;
|
|
346
|
+
}
|
|
347
|
+
|
|
341
348
|
// @beta @legacy
|
|
342
349
|
export function loadContainerRuntime(params: LoadContainerRuntimeParams): Promise<IContainerRuntime & IRuntime>;
|
|
343
350
|
|
|
@@ -346,7 +353,9 @@ export interface LoadContainerRuntimeParams {
|
|
|
346
353
|
containerScope?: FluidObject;
|
|
347
354
|
context: IContainerContext;
|
|
348
355
|
existing: boolean;
|
|
349
|
-
|
|
356
|
+
// @deprecated
|
|
357
|
+
minVersionForCollab?: OldestSupportedClientVersion;
|
|
358
|
+
oldestSupportedClient?: OldestSupportedClientVersion;
|
|
350
359
|
provideEntryPoint: (containerRuntime: IContainerRuntime) => Promise<FluidObject>;
|
|
351
360
|
registryEntries: NamedFluidDataStoreRegistryEntries;
|
|
352
361
|
// @deprecated
|
|
@@ -366,6 +375,16 @@ export type OpActionEventName = MessageType.Summarize | MessageType.SummaryAck |
|
|
|
366
375
|
// @beta @deprecated @legacy
|
|
367
376
|
export type ReadFluidDataStoreAttributes = IFluidDataStoreAttributes0 | IFluidDataStoreAttributes1 | IFluidDataStoreAttributes2;
|
|
368
377
|
|
|
378
|
+
// @beta @legacy
|
|
379
|
+
export type ResolveResult = {
|
|
380
|
+
readonly kind: "resolved";
|
|
381
|
+
readonly sequenceNumber: number;
|
|
382
|
+
} | {
|
|
383
|
+
readonly kind: "pending";
|
|
384
|
+
} | {
|
|
385
|
+
readonly kind: "unresolvable";
|
|
386
|
+
};
|
|
387
|
+
|
|
369
388
|
// @beta @legacy
|
|
370
389
|
export interface SubmitSummaryFailureData {
|
|
371
390
|
// (undocumented)
|
|
@@ -416,6 +435,16 @@ export type SummaryStage = SubmitSummaryResult["stage"] | "unknown";
|
|
|
416
435
|
// @beta @legacy
|
|
417
436
|
export const TombstoneResponseHeaderKey = "isTombstoned";
|
|
418
437
|
|
|
438
|
+
// @beta @legacy
|
|
439
|
+
export type VersionMarkCapture = {
|
|
440
|
+
readonly kind: "pending";
|
|
441
|
+
readonly batchId: string;
|
|
442
|
+
readonly sequenceNumberLowerBound: number;
|
|
443
|
+
} | {
|
|
444
|
+
readonly kind: "resolved";
|
|
445
|
+
readonly sequenceNumber: number;
|
|
446
|
+
};
|
|
447
|
+
|
|
419
448
|
// (No @packageDocumentation comment for this package)
|
|
420
449
|
|
|
421
450
|
```
|
|
Binary file
|
|
@@ -6,7 +6,7 @@ import { AttachState } from "@fluidframework/container-definitions";
|
|
|
6
6
|
import type { FluidObject, IDisposable, IRequest, IResponse, ITelemetryBaseLogger } from "@fluidframework/core-interfaces";
|
|
7
7
|
import type { IFluidHandleInternal, ISignalEnvelope } from "@fluidframework/core-interfaces/internal";
|
|
8
8
|
import type { ISnapshot, ISnapshotTree } from "@fluidframework/driver-definitions/internal";
|
|
9
|
-
import type { AliasResult, ContainerExtensionProvider, FluidDataStoreMessage, IEnvelope, IFluidDataStoreChannel, IFluidDataStoreContext, IFluidDataStoreContextDetached, IFluidDataStoreFactory, IFluidDataStoreRegistry, IFluidParentContext, IGarbageCollectionData, IInboundSignalMessage, IRuntimeMessageCollection, ISummaryTreeWithStats, ITelemetryContext,
|
|
9
|
+
import type { AliasResult, ContainerExtensionProvider, FluidDataStoreMessage, IEnvelope, IFluidDataStoreChannel, IFluidDataStoreContext, IFluidDataStoreContextDetached, IFluidDataStoreFactory, IFluidDataStoreRegistry, IFluidParentContext, IGarbageCollectionData, IInboundSignalMessage, IRuntimeMessageCollection, ISummaryTreeWithStats, ITelemetryContext, OldestSupportedClientVersion, NamedFluidDataStoreRegistryEntries } from "@fluidframework/runtime-definitions/internal";
|
|
10
10
|
import { type MonitoringContext } from "@fluidframework/telemetry-utils/internal";
|
|
11
11
|
import { type RuntimeHeaderData } from "./containerRuntime.js";
|
|
12
12
|
import { type IFluidDataStoreContextPrivate, type ILocalDetachedFluidDataStoreContextProps, LocalFluidDataStoreContext } from "./dataStoreContext.js";
|
|
@@ -39,7 +39,7 @@ export type AddressedUnsequencedSignalEnvelope = IEnvelope<ISignalEnvelope["cont
|
|
|
39
39
|
*/
|
|
40
40
|
export interface IFluidParentContextPrivate extends IFluidParentContext, ContainerExtensionProvider {
|
|
41
41
|
readonly isReadOnly: () => boolean;
|
|
42
|
-
readonly minVersionForCollab:
|
|
42
|
+
readonly minVersionForCollab: OldestSupportedClientVersion;
|
|
43
43
|
}
|
|
44
44
|
/**
|
|
45
45
|
* Kin of {@link @fluidframework/runtime-definitions#IFluidParentContext} with alternate
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"channelCollection.d.ts","sourceRoot":"","sources":["../src/channelCollection.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC;AACpE,OAAO,KAAK,EACX,WAAW,EACX,WAAW,EACX,QAAQ,EACR,SAAS,EACT,oBAAoB,EACpB,MAAM,iCAAiC,CAAC;AACzC,OAAO,KAAK,EACX,oBAAoB,EACpB,eAAe,EACf,MAAM,0CAA0C,CAAC;AAGlD,OAAO,KAAK,EACX,SAAS,EACT,aAAa,EAEb,MAAM,6CAA6C,CAAC;AAMrD,OAAO,KAAK,EACX,WAAW,EACX,0BAA0B,EAC1B,qBAAqB,EAErB,SAAS,EACT,sBAAsB,EACtB,sBAAsB,EACtB,8BAA8B,EAC9B,sBAAsB,EACtB,uBAAuB,EACvB,mBAAmB,EACnB,sBAAsB,EACtB,qBAAqB,EAErB,yBAAyB,EAGzB,qBAAqB,EACrB,iBAAiB,EACjB,
|
|
1
|
+
{"version":3,"file":"channelCollection.d.ts","sourceRoot":"","sources":["../src/channelCollection.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC;AACpE,OAAO,KAAK,EACX,WAAW,EACX,WAAW,EACX,QAAQ,EACR,SAAS,EACT,oBAAoB,EACpB,MAAM,iCAAiC,CAAC;AACzC,OAAO,KAAK,EACX,oBAAoB,EACpB,eAAe,EACf,MAAM,0CAA0C,CAAC;AAGlD,OAAO,KAAK,EACX,SAAS,EACT,aAAa,EAEb,MAAM,6CAA6C,CAAC;AAMrD,OAAO,KAAK,EACX,WAAW,EACX,0BAA0B,EAC1B,qBAAqB,EAErB,SAAS,EACT,sBAAsB,EACtB,sBAAsB,EACtB,8BAA8B,EAC9B,sBAAsB,EACtB,uBAAuB,EACvB,mBAAmB,EACnB,sBAAsB,EACtB,qBAAqB,EAErB,yBAAyB,EAGzB,qBAAqB,EACrB,iBAAiB,EACjB,4BAA4B,EAC5B,kCAAkC,EAClC,MAAM,8CAA8C,CAAC;AAsBtD,OAAO,EAIN,KAAK,iBAAiB,EAMtB,MAAM,0CAA0C,CAAC;AAGlD,OAAO,EAEN,KAAK,iBAAiB,EAEtB,MAAM,uBAAuB,CAAC;AAM/B,OAAO,EAEN,KAAK,6BAA6B,EAClC,KAAK,wCAAwC,EAE7C,0BAA0B,EAG1B,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAE3D,OAAO,EAAE,UAAU,EAAE,KAAK,mBAAmB,EAAmB,MAAM,eAAe,CAAC;AACtF,OAAO,KAAK,EACX,4BAA4B,EAC5B,kCAAkC,EAClC,qCAAqC,EACrC,MAAM,mBAAmB,CAAC;AAG3B,OAAO,EACN,KAAK,yBAAyB,EAG9B,MAAM,oBAAoB,CAAC;AAE5B;;;GAGG;AACH,eAAO,MAAM,8BAA8B,mBAAmB,CAAC;AAI/D;;;;;;;;GAQG;AACH,MAAM,MAAM,kCAAkC,GAAG,SAAS,CAAC,eAAe,CAAC,UAAU,CAAC,CAAC,CAAC;AAExF;;;;;;;GAOG;AACH,MAAM,WAAW,0BAChB,SAAQ,mBAAmB,EAC1B,0BAA0B;IAC3B,QAAQ,CAAC,UAAU,EAAE,MAAM,OAAO,CAAC;IACnC,QAAQ,CAAC,mBAAmB,EAAE,4BAA4B,CAAC;CAC3D;AAED;;;;;;;;;GASG;AACH,MAAM,WAAW,8BAChB,SAAQ,IAAI,CAAC,0BAA0B,EAAE,eAAe,GAAG,cAAc,CAAC;IAC1E;;;;;;;OAOG;IACH,QAAQ,CAAC,aAAa,EAAE,CACvB,uBAAuB,EACpB,kCAAkC,GAClC,qCAAqC,GACrC,4BAA4B,EAC/B,eAAe,EAAE,OAAO,KACpB,IAAI,CAAC;IACV;;;;OAIG;IACH,QAAQ,CAAC,YAAY,EAAE,CACtB,QAAQ,EAAE,kCAAkC,EAC5C,cAAc,CAAC,EAAE,MAAM,KACnB,IAAI,CAAC;CACV;AAED,KAAK,UAAU,GAAG,eAAe,GAAG,cAAc,CAAC;AAEnD;;;;GAIG;AACH,wBAAgB,iBAAiB,CAChC,CAAC,SAAS,0BAA0B,GAAG,8BAA8B,EAErE,OAAO,EAAE,IAAI,CAAC,0BAA0B,GAAG,8BAA8B,EAAE,UAAU,CAAC,EACtF,SAAS,EAAE,IAAI,CAAC,CAAC,EAAE,UAAU,CAAC,GAC5B,IAAI,CAAC,0BAA0B,GAAG,8BAA8B,EAAE,UAAU,CAAC,GAC/E,IAAI,CAAC,CAAC,EAAE,UAAU,CAAC,CA+DnB;AAqCD;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,cAAc,EAAE,0BAA0B,GAAG,MAAM,CAExF;AAED;;;;GAIG;AACH,qBAAa,iBACZ,YAAW,IAAI,CAAC,sBAAsB,EAAE,YAAY,GAAG,UAAU,GAAG,UAAU,CAAC,EAAE,WAAW;IA4B3F,SAAS,CAAC,QAAQ,CAAC,YAAY,EAAE,aAAa,GAAG,SAAS,GAAG,SAAS;aACtD,aAAa,EAAE,8BAA8B;IAE7D,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IACnC,OAAO,CAAC,QAAQ,CAAC,QAAQ;IA9B1B,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAqC;IAEnE,SAAgB,yBAAyB,cAAqB;IAE9D,SAAS,CAAC,QAAQ,CAAC,EAAE,EAAE,iBAAiB,CAAC;IAGzC,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAiD;IAE7E,SAAgB,kBAAkB,EAAE;QAEnC,QAAQ,CAAC,2BAA2B,EAAE,MAAM,CAAC;QAE7C,QAAQ,CAAC,wBAAwB,EAAE,MAAM,CAAC;KAC1C,CAAC;IAEF,OAAO,CAAC,QAAQ,CAAC,eAAe,CAG5B;IAEJ,SAAS,CAAC,QAAQ,CAAC,QAAQ,EAAE,iBAAiB,CAAC;IAC/C,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAc;gBAG5B,YAAY,EAAE,aAAa,GAAG,SAAS,GAAG,SAAS,EACtD,aAAa,EAAE,8BAA8B,EAC7D,UAAU,EAAE,oBAAoB,EACf,aAAa,EAAE,CAAC,KAAK,EAAE,mBAAmB,KAAK,IAAI,EACnD,kBAAkB,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,OAAO,EACjD,QAAQ,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC;IAsE/C,IAAW,OAAO,IAAI,WAAW,CAAC,MAAM,EAAE,MAAM,CAAC,CAEhD;IAED,IAAW,cAAc,IAAI,GAAG,CAAC,MAAM,EAAE,OAAO,CAAC,WAAW,CAAC,CAAC,CAE7D;IAEY,kBAAkB,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,CAAC;IAKzE;;OAEG;IACH,OAAO,CAAC,mBAAmB,CAAQ;IAEnC,SAAS,CAAC,0BAA0B,CAAC,EAAE,EAAE,MAAM,GAAG,0BAA0B;IAI5E;;;;OAIG;IACI,yBAAyB,IAAI,IAAI;IAIxC,OAAO,CAAC,qBAAqB;IAsH7B,OAAO,CAAC,oBAAoB;IAsBrB,uBAAuB,CAC7B,UAAU,EAAE,MAAM,EAClB,KAAK,EAAE,MAAM,EACb,kBAAkB,CAAC,EAAE,MAAM,GACzB,OAAO;IAgCV,OAAO,CAAC,gBAAgB;IAIxB;;OAEG;IACH,OAAO,CAAC,qBAAqB;IAkB7B;;;;OAIG;IACH,OAAO,CAAC,2BAA2B;IAiBnC,SAAS,CAAC,qBAAqB,CAAC,YAAY,EAAE,0BAA0B,GAAG,IAAI;IAU/E;;;;;;;;;;;;;;;OAeG;IACH,SAAS,CAAC,iBAAiB,IAAI,MAAM;IAwB9B,uBAAuB,CAC7B,GAAG,EAAE,SAAS,MAAM,EAAE,EACtB,cAAc,CAAC,EAAE,MAAM,GACrB,8BAA8B;IAS1B,sBAAsB,CAC5B,GAAG,EAAE,SAAS,MAAM,EAAE,EACtB,cAAc,CAAC,EAAE,MAAM,GACrB,6BAA6B;IAShC,SAAS,CAAC,aAAa,CAAC,CAAC,SAAS,0BAA0B,EAC3D,EAAE,EAAE,MAAM,EACV,GAAG,EAAE,SAAS,MAAM,EAAE,EACtB,WAAW,EAAE,KAAK,KAAK,EAAE,wCAAwC,KAAK,CAAC,EACvE,cAAc,CAAC,EAAE,MAAM,GACrB,CAAC;IA2BJ,IAAW,QAAQ,IAAI,OAAO,CAE7B;IACM,OAAO,IAAI,IAAI;IAItB,SAAgB,wBAAwB,YAEpC,kCAAkC,GAClC,qCAAqC,GACrC,4BAA4B,mBACd,OAAO,UAChB,OAAO,KACb,IAAI,CAcL;IAEF,SAAS,CAAC,QAAQ,CAAC,mBAAmB,aAC3B,UAAU,qBAAqB,CAAC,mBACzB,OAAO,UAChB,OAAO,KACb,IAAI,CAcL;IAEF,SAAgB,mBAAmB,aACxB,UAAU,qBAAqB,CAAC,mBACzB,OAAO,KACtB,IAAI,CAcL;IAEW,cAAc,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC;cAkB/C,4BAA4B,CAAC,QAAQ,EAAE,SAAS,GAAG,OAAO,CAAC,OAAO,CAAC;YAWrE,oBAAoB;IA8ClC;;;OAGG;IACI,eAAe,CAAC,iBAAiB,EAAE,yBAAyB,GAAG,IAAI;IAoB1E;;;;OAIG;IACH,OAAO,CAAC,sBAAsB;YAwFhB,YAAY;IAkC1B;;OAEG;IACU,uBAAuB,CACnC,EAAE,EAAE,MAAM,EACV,iBAAiB,EAAE,iBAAiB,GAClC,OAAO,CAAC,6BAA6B,GAAG,SAAS,CAAC;IAqBrD;;;;;;;;;OASG;IACH,OAAO,CAAC,oBAAoB;IA2DrB,aAAa,CAAC,UAAU,EAAE,qBAAqB,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI;IA2BtE,kBAAkB,CAAC,UAAU,EAAE,OAAO,EAAE,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI;IAuBvE;;OAEG;IACI,mBAAmB,CAAC,QAAQ,EAAE,OAAO,GAAG,IAAI;IAsBnD;;;;OAIG;IACI,iBAAiB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI;IAqBzC,cAAc,CAAC,WAAW,EAAE,WAAW,CAAC,SAAS,GAAG,WAAW,CAAC,QAAQ,GAAG,IAAI;IAStF,IAAW,IAAI,IAAI,MAAM,CAExB;IAED;;OAEG;IACI,gBAAgB,CAAC,gBAAgB,CAAC,EAAE,iBAAiB,GAAG,qBAAqB;IAwBpF;;OAEG;IACI,eAAe,CAAC,gBAAgB,CAAC,EAAE,iBAAiB,GAAG,sBAAsB;IAepF;;;OAGG;IACH,OAAO,CAAC,mCAAmC;IAgC3C;;;OAGG;YACW,0BAA0B;IAuC3B,SAAS,CACrB,QAAQ,EAAE,OAAO,EACjB,UAAU,EAAE,OAAO,EACnB,gBAAgB,CAAC,EAAE,iBAAiB,GAClC,OAAO,CAAC,qBAAqB,CAAC;IAYjC;;;;;;;;;;;;OAYG;IACU,SAAS,CAAC,MAAM,GAAE,OAAe,GAAG,OAAO,CAAC,sBAAsB,CAAC;IAiBhF;;;OAGG;IACI,gBAAgB,CAAC,UAAU,EAAE,SAAS,MAAM,EAAE,GAAG,IAAI;IAkBrD,WAAW,CAAC,WAAW,EAAE,MAAM,GAAG,IAAI;IAwB7C;;;;;OAKG;IACI,qBAAqB,CAC3B,yBAAyB,EAAE,SAAS,MAAM,EAAE,GAC1C,SAAS,MAAM,EAAE;IAgCpB;;;;;;;OAOG;IACI,sBAAsB,CAAC,gBAAgB,EAAE,SAAS,MAAM,EAAE,GAAG,IAAI;IAmBxE;;;OAGG;YACW,iBAAiB;IAY/B;;OAEG;IACU,uBAAuB,CACnC,QAAQ,EAAE,MAAM,GACd,OAAO,CAAC,SAAS,MAAM,EAAE,GAAG,SAAS,CAAC;IAQzC;;;OAGG;IAEI,aAAa,CAAC,QAAQ,EAAE,MAAM,GAAG,UAAU,GAAG,SAAS;IAevD,UAAU,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM;IAIhC,OAAO,CAAC,OAAO,EAAE,QAAQ,GAAG,OAAO,CAAC,SAAS,CAAC;CAqD3D;AAED,wBAAgB,uBAAuB,CACtC,QAAQ,EAAE,aAAa,GAAG,SAAS,EAEnC,QAAQ,CAAC,EAAE,yBAAyB,GAClC,aAAa,GAAG,SAAS,CAsB3B;AAED;;;;GAIG;AACH,wBAAgB,wBAAwB,CACvC,OAAO,EAAE,MAAM,EACf,QAAQ,EAAE,OAAO,EACjB,sBAAsB,EAAE,CAAC,YAAY,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,KAAK,IAAI,GACxE,IAAI,CAiCN;AAKD;;GAEG;AACH,qBAAa,2BACZ,SAAQ,iBACR,YAAW,sBAAsB;IAEjC,SAAgB,UAAU,EAAE,oBAAoB,CAAC,WAAW,CAAC,CAAC;gBAG7D,YAAY,EAAE,aAAa,GAAG,SAAS,GAAG,SAAS,EACnD,aAAa,EAAE,0BAA0B,EACzC,UAAU,EAAE,oBAAoB,EAChC,aAAa,EAAE,CAAC,KAAK,EAAE,mBAAmB,KAAK,IAAI,EACnD,kBAAkB,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,OAAO,EACjD,QAAQ,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,EAC7B,iBAAiB,EAAE,CAAC,OAAO,EAAE,2BAA2B,KAAK,OAAO,CAAC,WAAW,CAAC;IAiD3E,QAAQ,CACd,IAAI,EAAE,MAAM,EACZ,OAAO,EAAE,OAAO,EAChB,eAAe,EAAE,OAAO,EACxB,MAAM,EAAE,OAAO,GACb,IAAI;IAcA,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,eAAe,EAAE,OAAO,GAAG,IAAI;CAI/E;AAED;;;;GAIG;AACH,qBAAa,wBAAyB,YAAW,sBAAsB;IAQrE,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAPnC,SAAgB,IAAI,8BAA8B;IAE3C,uBAAuB,EAAE,uBAAuB,CAAC;gBAGvD,eAAe,EAAE,kCAAkC,EAElC,iBAAiB,EAAE,CACnC,OAAO,EAAE,sBAAsB,KAC3B,OAAO,CAAC,WAAW,CAAC;IAK1B,IAAW,sBAAsB,IAAI,wBAAwB,CAE5D;IAEY,oBAAoB,CAChC,OAAO,EAAE,sBAAsB,EAC/B,SAAS,EAAE,OAAO,GAChB,OAAO,CAAC,sBAAsB,CAAC;CA6BlC"}
|
|
@@ -165,7 +165,7 @@ class ChannelCollection {
|
|
|
165
165
|
return this.resubmitDataStoreOp(message.contents, localOpMetadata, squash);
|
|
166
166
|
}
|
|
167
167
|
default: {
|
|
168
|
-
(0, internal_1.
|
|
168
|
+
(0, internal_1.fail)(0x907 /* unknown op type */);
|
|
169
169
|
}
|
|
170
170
|
}
|
|
171
171
|
};
|
|
@@ -544,7 +544,7 @@ class ChannelCollection {
|
|
|
544
544
|
return this.applyStashedChannelChannelOp(opContents.contents);
|
|
545
545
|
}
|
|
546
546
|
default: {
|
|
547
|
-
(0, internal_1.
|
|
547
|
+
(0, internal_1.fail)(0x908 /* unknon type of op */);
|
|
548
548
|
}
|
|
549
549
|
}
|
|
550
550
|
}
|
|
@@ -615,7 +615,7 @@ class ChannelCollection {
|
|
|
615
615
|
break;
|
|
616
616
|
}
|
|
617
617
|
default: {
|
|
618
|
-
(0, internal_1.
|
|
618
|
+
(0, internal_1.fail)(0x8e9 /* unreached */);
|
|
619
619
|
}
|
|
620
620
|
}
|
|
621
621
|
}
|