This commit is contained in:
Sonali Deshpande 2023-01-17 13:06:57 -06:00
Родитель a85ad77445 1e6e03c786
Коммит bc078bb776
354 изменённых файлов: 5490 добавлений и 6099 удалений

1
.github/CODEOWNERS поставляемый
Просмотреть файл

@ -73,7 +73,6 @@ api-report/experimental-tree.api.md @micro
api-report/file-driver.api.md @microsoft/fluid-cr-drivers
api-report/fluid-static.api.md @microsoft/fluid-cr-framework
api-report/garbage-collector.api.md @microsoft/fluid-cr-runtime
api-report/iframe-driver.api.md @microsoft/fluid-cr-drivers
api-report/ink.api.md @microsoft/fluid-cr-dds
api-report/location-redirection-utils.api.md @microsoft/fluid-cr-loader
api-report/map.api.md @microsoft/fluid-cr-dds

Просмотреть файл

@ -15,6 +15,67 @@ It's important to communicate breaking changes to our stakeholders. To write a g
- Avoid using code formatting in the title (it's fine to use in the body).
- To explain the benefit of your change, use the [What's New](https://fluidframework.com/docs/updates/v1.0.0/) section on FluidFramework.com.
# 2.0.0-internal.3.0.0
## 2.0.0-internal.3.0.0 Upcoming changes
- [Deprecated IPendingFlush](#Deprecated-IPendingFlush)
### Deprecated IPendingFlush
`IPendingFlush` has been deprecated. Use batch metadata on `IPendingMessage` instead to indicate the end of a batch.
## 2.0.0-internal.3.0.0 Breaking changes
- [Existing flag is now required in IRuntimeFactory](#existing-parameter-is-now-required-in-iruntimefactory)
- [Remove iframe-driver](#remove-iframe-driver)
- [Remove Deprecated Fields from ISummaryRuntimeOptions](#Remove-Deprecated-Fields-from-ISummaryRuntimeOptions)
- [Op reentry will no longer be supported](#op-reentry-will-no-longer-be-supported)
- [Remove ISummarizerRuntime batchEnd listener](#Remove-ISummarizerRuntime-batchEnd-listener)
- [Remove ISummaryBaseConfiguration.summarizerClientElection](#Remove-ISummaryBaseConfigurationsummarizerClientElection)
### existing parameter is now required in IRuntimeFactory::instantiateRuntime
The `existing` flag was added as optional in client version 0.44 and has been updated to be expected
and required in the `IRuntimeFactory.instantiateRuntime` function. This flag is used to determine whether the runtime should
be created for the first time or from an existing context. Similarly, the `load` function in containerRuntime
is being deprecated and replaced with `loadRuntime`, in which `existing` is a required parameter.
### Remove iframe-driver
The iframe-driver package was deprecated in 2.0.0-internal.1.3.0 and has now been removed.
### Remove Deprecated Fields from ISummaryRuntimeOptions
The following fields are being removed from `ISummaryRuntimeOptions` as they became properties from `ISummaryConfiguration`:
`ISummaryRuntimeOptions.disableSummaries`
`ISummaryRuntimeOptions.maxOpsSinceLastSummary`
`ISummaryRuntimeOptions.summarizerClientElection`
`ISummaryRuntimeOptions.summarizerOptions`
### Op reentry will no longer be supported
Submitting an op while processing an op will no longer be supported as it can lead to inconsistencies in the document and to DDS change events observing out-of-order changes. An example scenario is changing a DDS inside the handler for the `valueChanged` event of a DDS.
The functionality is currently disabled but it can be enabled using the `IContainerRuntimeOptions.enableOpReentryCheck` property, which will eventually become the default. If the option is enabled, the functionality can be disabled at runtime using the `Fluid.ContainerRuntime.DisableOpReentryCheck` feature gate.
With the feature enabled, If the runtime detects an op which was submitted in this manner, an error will be thrown and the current container will close.
```ts
sharedMap.on("valueChanged", (changed) => {
if (changed.key !== "key2") {
sharedMap.set("key2", "2");
}
});
sharedMap.set("key1", "1"); // executing this statement will cause an exception to be thrown
```
Other clients will not be affected.
**As we are planning to enable this feature by default, we are advising our partners to use the `IContainerRuntimeOptions.enableOpReentryCheck` option to identify existing code using this pattern and to let us know in case the proposed API behavior is problematic.**
### Remove ISummarizerRuntime batchEnd listener
The `"batchEnd"` listener in `ISummarizerRuntime` has been removed. Please remove all usage and implementations of `ISummarizerRuntime.on("batchEnd", ...)` and `ISummarizerRuntime.removeListener("batchEnd", ...)`.
If these methods are needed, please refer to the `IContainerRuntimeBase` interface.
### Remove-ISummaryBaseConfigurationsummarizerClientElection
`ISummaryBaseConfiguration.summarizerClientElection` was deprecated and is now being removed.
There will be no replacement for this property.'
# 2.0.0-internal.2.2.0
## 2.0.0-internal.2.2.0 Upcoming changes

Просмотреть файл

@ -81,7 +81,7 @@ The dependencies between layers are enforced by the layer-check command._
| Packages | Layer Dependencies |
| --- | --- |
| - [@fluidframework/debugger](/packages/drivers/debugger)</br>- [@fluidframework/driver-base](/packages/drivers/driver-base)</br>- [@fluidframework/driver-web-cache](/packages/drivers/driver-web-cache)</br>- [@fluidframework/file-driver](/packages/drivers/file-driver)</br>- [@fluid-tools/fluidapp-odsp-urlresolver](/packages/drivers/fluidapp-odsp-urlResolver)</br>- [@fluidframework/iframe-driver](/packages/drivers/iframe-driver)</br>- [@fluidframework/odsp-driver](/packages/drivers/odsp-driver)</br>- [@fluidframework/odsp-urlresolver](/packages/drivers/odsp-urlResolver)</br>- [@fluidframework/replay-driver](/packages/drivers/replay-driver) | - [Base-Definitions](#Base-Definitions)</br>- [Protocol-Definitions](#Protocol-Definitions)</br>- [Driver-Definitions](#Driver-Definitions)</br>- [Base-Utils](#Base-Utils)</br>- [Protocol-Utils](#Protocol-Utils)</br>- [Telemetry-Utils](#Telemetry-Utils)</br>- [Driver-Utils](#Driver-Utils)</br>- [Other-Utils](#Other-Utils)</br>&nbsp; |
| - [@fluidframework/debugger](/packages/drivers/debugger)</br>- [@fluidframework/driver-base](/packages/drivers/driver-base)</br>- [@fluidframework/driver-web-cache](/packages/drivers/driver-web-cache)</br>- [@fluidframework/file-driver](/packages/drivers/file-driver)</br>- [@fluid-tools/fluidapp-odsp-urlresolver](/packages/drivers/fluidapp-odsp-urlResolver)</br>- [@fluidframework/odsp-driver](/packages/drivers/odsp-driver)</br>- [@fluidframework/odsp-urlresolver](/packages/drivers/odsp-urlResolver)</br>- [@fluidframework/replay-driver](/packages/drivers/replay-driver) | - [Base-Definitions](#Base-Definitions)</br>- [Protocol-Definitions](#Protocol-Definitions)</br>- [Driver-Definitions](#Driver-Definitions)</br>- [Base-Utils](#Base-Utils)</br>- [Protocol-Utils](#Protocol-Utils)</br>- [Telemetry-Utils](#Telemetry-Utils)</br>- [Driver-Utils](#Driver-Utils)</br>- [Other-Utils](#Other-Utils) |
### Loader

Просмотреть файл

@ -491,7 +491,7 @@ export const IRuntimeFactory: keyof IProvideRuntimeFactory;
// @public
export interface IRuntimeFactory extends IProvideRuntimeFactory {
instantiateRuntime(context: IContainerContext, existing?: boolean): Promise<IRuntime>;
instantiateRuntime(context: IContainerContext, existing: boolean): Promise<IRuntime>;
}
// @public

Просмотреть файл

@ -124,6 +124,7 @@ export class ContainerRuntime extends TypedEventEmitter<IContainerRuntimeEvents>
get disposed(): boolean;
// (undocumented)
readonly enqueueSummarize: ISummarizer["enqueueSummarize"];
ensureNoDataModelChanges<T>(callback: () => T): T;
// (undocumented)
get flushMode(): FlushMode;
// (undocumented)
@ -152,7 +153,17 @@ export class ContainerRuntime extends TypedEventEmitter<IContainerRuntimeEvents>
// (undocumented)
get IFluidTokenProvider(): IFluidTokenProvider | undefined;
get isDirty(): boolean;
// @deprecated (undocumented)
static load(context: IContainerContext, registryEntries: NamedFluidDataStoreRegistryEntries, requestHandler?: (request: IRequest, runtime: IContainerRuntime) => Promise<IResponse>, runtimeOptions?: IContainerRuntimeOptions, containerScope?: FluidObject, existing?: boolean, containerRuntimeCtor?: typeof ContainerRuntime): Promise<ContainerRuntime>;
static loadRuntime(params: {
context: IContainerContext;
registryEntries: NamedFluidDataStoreRegistryEntries;
existing: boolean;
requestHandler?: (request: IRequest, runtime: IContainerRuntime) => Promise<IResponse>;
runtimeOptions?: IContainerRuntimeOptions;
containerScope?: FluidObject;
containerRuntimeCtor?: typeof ContainerRuntime;
}): Promise<ContainerRuntime>;
// (undocumented)
readonly logger: ITelemetryLogger;
// (undocumented)
@ -403,7 +414,7 @@ export interface IOnDemandSummarizeOptions extends ISummarizeOptions {
readonly reason: string;
}
// @public
// @public @deprecated
export interface IPendingFlush {
// (undocumented)
type: "flush";
@ -516,10 +527,6 @@ export interface ISummarizerRuntime extends IConnectableRuntime {
closeFn(): void;
// (undocumented)
readonly logger: ITelemetryLogger;
// @deprecated (undocumented)
on(event: "batchEnd", listener: (error: any, op: ISequencedDocumentMessage) => void): this;
// @deprecated (undocumented)
removeListener(event: "batchEnd", listener: (error: any, op: ISequencedDocumentMessage) => void): this;
readonly summarizerClientId: string | undefined;
}
@ -556,8 +563,6 @@ export interface ISummaryBaseConfiguration {
initialSummarizerDelayMs: number;
maxAckWaitTime: number;
maxOpsSinceLastSummary: number;
// @deprecated (undocumented)
summarizerClientElection: boolean;
}
// @public (undocumented)
@ -616,18 +621,8 @@ export interface ISummaryOpMessage extends ISequencedDocumentMessage {
// @public (undocumented)
export interface ISummaryRuntimeOptions {
// @deprecated
disableSummaries?: boolean;
// @deprecated
initialSummarizerDelayMs?: number;
// @deprecated (undocumented)
maxOpsSinceLastSummary?: number;
// @deprecated
summarizerClientElection?: boolean;
// Warning: (ae-forgotten-export) The symbol "ISummarizerOptions" needs to be exported by the entry point index.d.ts
//
// @deprecated
summarizerOptions?: Readonly<Partial<ISummarizerOptions>>;
summaryConfigOverrides?: ISummaryConfiguration;
}

Просмотреть файл

@ -102,6 +102,7 @@ export interface IFluidDataStoreRuntime extends IFluidRouter, IEventProvider<IFl
createChannel(id: string | undefined, type: string): IChannel;
// (undocumented)
readonly deltaManager: IDeltaManager<ISequencedDocumentMessage, IDocumentMessage>;
ensureNoDataModelChanges<T>(callback: () => T): T;
readonly entryPoint?: IFluidHandle<FluidObject>;
getAudience(): IAudience;
getChannel(id: string): Promise<IChannel>;

Просмотреть файл

@ -70,6 +70,7 @@ export class FluidDataStoreRuntime extends TypedEventEmitter<IFluidDataStoreRunt
dispose(): void;
// (undocumented)
get disposed(): boolean;
ensureNoDataModelChanges<T>(callback: () => T): T;
// (undocumented)
readonly entryPoint?: IFluidHandle<FluidObject>;
// (undocumented)

Просмотреть файл

@ -1,207 +0,0 @@
## API Report File for "@fluidframework/iframe-driver"
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
import * as Comlink from 'comlink';
import { ConnectionMode } from '@fluidframework/protocol-definitions';
import { Deferred } from '@fluidframework/common-utils';
import { IClient } from '@fluidframework/protocol-definitions';
import { IClientConfiguration } from '@fluidframework/protocol-definitions';
import { IConnected } from '@fluidframework/protocol-definitions';
import { IContainerPackageInfo } from '@fluidframework/driver-definitions';
import { IDisposable } from '@fluidframework/common-definitions';
import { IDocumentDeltaConnection } from '@fluidframework/driver-definitions';
import { IDocumentDeltaConnectionEvents } from '@fluidframework/driver-definitions';
import { IDocumentDeltaStorageService } from '@fluidframework/driver-definitions';
import { IDocumentMessage } from '@fluidframework/protocol-definitions';
import { IDocumentService } from '@fluidframework/driver-definitions';
import { IDocumentServiceFactory } from '@fluidframework/driver-definitions';
import { IDocumentStorageService } from '@fluidframework/driver-definitions';
import { IRequest } from '@fluidframework/core-interfaces';
import { IResolvedUrl } from '@fluidframework/driver-definitions';
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
import { ISignalClient } from '@fluidframework/protocol-definitions';
import { ISignalMessage } from '@fluidframework/protocol-definitions';
import { ISummaryTree } from '@fluidframework/protocol-definitions';
import { ITelemetryBaseLogger } from '@fluidframework/common-definitions';
import { ITokenClaims } from '@fluidframework/protocol-definitions';
import { IUrlResolver } from '@fluidframework/driver-definitions';
import { TypedEventEmitter } from '@fluidframework/common-utils';
// @public @deprecated
export class DocumentServiceFactoryProxy implements IDocumentServiceFactoryProxy {
// @deprecated
constructor(documentServiceFactory: IDocumentServiceFactory, options: any);
// @deprecated (undocumented)
get clients(): {
[clientId: string]: ICombinedDriver;
} & Comlink.ProxyMarked;
// @deprecated (undocumented)
connected(): Promise<void>;
// @deprecated (undocumented)
createContainer(createNewSummaryFn: () => Promise<ISummaryTree>, resolvedUrlFn: () => Promise<IResolvedUrl>): Promise<string>;
// @deprecated (undocumented)
createDocumentService(resolvedUrlFn: () => Promise<IResolvedUrl>): Promise<string>;
// @deprecated (undocumented)
createProxy(): IDocumentServiceFactoryProxy;
}
// @public @deprecated (undocumented)
export interface ICombinedDriver {
// @deprecated (undocumented)
clientId: string;
// @deprecated (undocumented)
deltaStorage: IDocumentDeltaStorageService;
// @deprecated (undocumented)
logger: ITelemetryBaseLogger;
// @deprecated (undocumented)
storage: IDocumentStorageService;
// @deprecated (undocumented)
stream: IOuterDocumentDeltaConnectionProxy;
}
// @public @deprecated (undocumented)
export interface IDocumentServiceFactoryProxy {
// @deprecated (undocumented)
clients: {
[clientId: string]: ICombinedDriver;
};
// @deprecated (undocumented)
connected(): Promise<void>;
// @deprecated (undocumented)
createContainer(createNewSummaryFn: () => Promise<ISummaryTree>, resolvedUrlFn: () => Promise<IResolvedUrl>): Promise<string>;
// @deprecated (undocumented)
createDocumentService(resolvedUrlFn: () => Promise<IResolvedUrl>): Promise<string>;
}
// @public @deprecated (undocumented)
export const IDocumentServiceFactoryProxyKey = "IDocumentServiceFactoryProxy";
// @public @deprecated
export class InnerDocumentDeltaConnection extends TypedEventEmitter<IDocumentDeltaConnectionEvents> implements IDocumentDeltaConnection, IDisposable {
// @deprecated
get claims(): ITokenClaims;
// @deprecated
get clientId(): string;
// @deprecated
static create(connection: IConnected, outerProxy: IOuterDocumentDeltaConnectionProxy): Promise<IDocumentDeltaConnection>;
// @deprecated (undocumented)
details: IConnected;
// @deprecated (undocumented)
dispose(): void;
// @deprecated (undocumented)
get disposed(): boolean;
// @deprecated
get existing(): boolean;
// @deprecated
get initialClients(): ISignalClient[];
// @deprecated
get initialMessages(): ISequencedDocumentMessage[];
// @deprecated
get initialSignals(): ISignalMessage[];
// @deprecated (undocumented)
get lastKnownOpNumber(): any;
// @deprecated
get maxMessageSize(): number;
// @deprecated
get mode(): ConnectionMode;
// @deprecated (undocumented)
outerProxy: IOuterDocumentDeltaConnectionProxy;
// @deprecated
get serviceConfiguration(): IClientConfiguration;
// @deprecated
submit(messages: IDocumentMessage[]): void;
// @deprecated
submitSignal(message: IDocumentMessage): void;
// @deprecated
get version(): string;
}
// @public @deprecated
export class InnerDocumentService implements IDocumentService {
// @deprecated (undocumented)
clientId: string;
// @deprecated
connectToDeltaStorage(): Promise<IDocumentDeltaStorageService>;
// @deprecated
connectToDeltaStream(client: IClient): Promise<IDocumentDeltaConnection>;
// @deprecated
connectToStorage(): Promise<IDocumentStorageService>;
// @deprecated
static create(proxyObject: ICombinedDriver, resolvedUrl: IResolvedUrl, logger?: ITelemetryBaseLogger): Promise<InnerDocumentService>;
// @deprecated (undocumented)
dispose(): void;
// @deprecated (undocumented)
readonly resolvedUrl: IResolvedUrl;
}
// @public @deprecated
export class InnerDocumentServiceFactory implements IDocumentServiceFactory {
// @deprecated (undocumented)
static create(outerPort: MessagePort): Promise<InnerDocumentServiceFactory>;
// @deprecated (undocumented)
createContainer(createNewSummary: ISummaryTree, resolvedUrl: IResolvedUrl, logger?: ITelemetryBaseLogger, clientIsSummarizer?: boolean): Promise<IDocumentService>;
// @deprecated (undocumented)
createDocumentService(resolvedUrl: IResolvedUrl, logger?: ITelemetryBaseLogger, clientIsSummarizer?: boolean): Promise<IDocumentService>;
// @deprecated (undocumented)
static readonly protocolName = "fluid:";
// @deprecated (undocumented)
readonly protocolName = "fluid:";
}
// @public @deprecated (undocumented)
export class InnerUrlResolver implements IUrlResolver {
// @deprecated
constructor(outerProxy: IUrlResolverProxy);
// @deprecated (undocumented)
static create(outerPort: MessagePort): Promise<InnerUrlResolver>;
// @deprecated (undocumented)
getAbsoluteUrl(resolvedUrl: IResolvedUrl, relativeUrl: string, packageInfoSource?: IContainerPackageInfo): Promise<string>;
// @deprecated (undocumented)
resolve(request: IRequest): Promise<IResolvedUrl | undefined>;
}
// @public @deprecated (undocumented)
export interface IOuterDocumentDeltaConnectionProxy {
// @deprecated (undocumented)
getDetails(): Promise<IConnected>;
// @deprecated (undocumented)
handshake: Deferred<any>;
// @deprecated (undocumented)
submit(messages: IDocumentMessage[]): Promise<void>;
// @deprecated (undocumented)
submitSignal(message: IDocumentMessage): Promise<void>;
}
// @public @deprecated (undocumented)
export interface IUrlResolverProxy {
// @deprecated (undocumented)
connected(): Promise<void>;
// @deprecated (undocumented)
getAbsoluteUrl(resolvedUrlFn: () => Promise<IResolvedUrl>, relativeUrl: string, packageInfoFn: () => Promise<IContainerPackageInfo | undefined>): Promise<string>;
// @deprecated (undocumented)
resolve(request: IRequest): Promise<() => Promise<IResolvedUrl | undefined>>;
}
// @public @deprecated (undocumented)
export const IUrlResolverProxyKey = "IUrlResolverProxy";
// @public @deprecated (undocumented)
export class OuterUrlResolver {
// @deprecated
constructor(urlResolver: IUrlResolver);
// @deprecated (undocumented)
connected(): Promise<void>;
// @deprecated (undocumented)
createProxy(): IUrlResolverProxy;
// @deprecated (undocumented)
getAbsoluteUrl(resolvedUrlFn: () => Promise<IResolvedUrl>, relativeUrl: string, packageInfoFn: () => Promise<IContainerPackageInfo | undefined>): Promise<string>;
// @deprecated (undocumented)
resolve(request: IRequest): Promise<() => Promise<IResolvedUrl | undefined>>;
}
// (No @packageDocumentation comment for this package)
```

Просмотреть файл

@ -5,12 +5,14 @@
```ts
import { IChannelStorageService } from '@fluidframework/datastore-definitions';
import type { IEventThisPlaceHolder } from '@fluidframework/common-definitions';
import { IFluidDataStoreRuntime } from '@fluidframework/datastore-definitions';
import { IFluidHandle } from '@fluidframework/core-interfaces';
import { IFluidSerializer } from '@fluidframework/shared-object-base';
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
import { ISummaryTreeWithStats } from '@fluidframework/runtime-definitions';
import { ITelemetryLogger } from '@fluidframework/common-definitions';
import type { ITelemetryLogger } from '@fluidframework/common-definitions';
import { TypedEventEmitter } from '@fluidframework/common-utils';
// @public (undocumented)
export function addProperties(oldProps: PropertySet | undefined, newProps: PropertySet, op?: ICombiningOp, seq?: number): PropertySet;
@ -91,8 +93,10 @@ export interface BlockUpdateActions {
child: (block: IMergeBlock, index: number) => void;
}
// Warning: (ae-forgotten-export) The symbol "IClientEvents" needs to be exported by the entry point index.d.ts
//
// @public (undocumented)
export class Client {
export class Client extends TypedEventEmitter<IClientEvents> {
constructor(specToSegment: (spec: IJSONSegment) => ISegment, logger: ITelemetryLogger, options?: PropertySet);
// (undocumented)
accumOps: number;
@ -120,7 +124,7 @@ export class Client {
createLocalReferencePosition(segment: ISegment, offset: number | undefined, refType: ReferenceType, properties: PropertySet | undefined): LocalReferencePosition;
// (undocumented)
createTextHelper(): IMergeTreeTextHelper;
protected findReconnectionPosition(segment: ISegment, localSeq: number): number;
findReconnectionPosition(segment: ISegment, localSeq: number): number;
// (undocumented)
findTile(startPos: number, tileLabel: string, preceding?: boolean): {
tile: ReferencePosition;
@ -131,7 +135,7 @@ export class Client {
// (undocumented)
getCollabWindow(): CollaborationWindow;
// (undocumented)
getContainingSegment<T extends ISegment>(pos: number, op?: ISequencedDocumentMessage, localSeq?: number): {
getContainingSegment<T extends ISegment>(pos: number, sequenceArgs?: Pick<ISequencedDocumentMessage, "referenceSequenceNumber" | "clientId">, localSeq?: number): {
segment: T | undefined;
offset: number | undefined;
};
@ -187,16 +191,8 @@ export class Client {
maxWindowTime: number;
// (undocumented)
measureOps: boolean;
// (undocumented)
get mergeTreeDeltaCallback(): MergeTreeDeltaCallback | undefined;
set mergeTreeDeltaCallback(callback: MergeTreeDeltaCallback | undefined);
// (undocumented)
get mergeTreeMaintenanceCallback(): MergeTreeMaintenanceCallback | undefined;
set mergeTreeMaintenanceCallback(callback: MergeTreeMaintenanceCallback | undefined);
peekPendingSegmentGroups(count?: number): SegmentGroup | SegmentGroup[] | undefined;
posFromRelativePos(relativePos: IRelativePosition): number;
rebasePosition(pos: number, seqNumberFrom: number, localSeq: number): number;
rebasePositionWithoutSegmentSlide(pos: number, seqNumberFrom: number, localSeq: number): number | undefined;
regeneratePendingOp(resetOp: IMergeTreeOp, segmentGroup: SegmentGroup | SegmentGroup[]): IMergeTreeOp;
removeLocalReferencePosition(lref: LocalReferencePosition): LocalReferencePosition | undefined;
removeRangeLocal(start: number, end: number): IMergeTreeRemoveMsg;
@ -1194,6 +1190,8 @@ export interface SegmentGroup {
// (undocumented)
previousProps?: PropertySet[];
// (undocumented)
refSeq: number;
// (undocumented)
segments: ISegment[];
}

Просмотреть файл

@ -4,14 +4,15 @@
```ts
/// <reference types="mocha" />
// @public (undocumented)
export const mochaHooks: {
beforeAll(): void;
beforeEach(): void;
afterEach(): void;
beforeEach(this: Mocha.Context): void;
afterEach(this: Mocha.Context): void;
};
// (No @packageDocumentation comment for this package)
```

Просмотреть файл

@ -187,6 +187,7 @@ export interface IFluidDataStoreContext extends IEventProvider<IFluidDataStoreCo
readonly createProps?: any;
// (undocumented)
readonly deltaManager: IDeltaManager<ISequencedDocumentMessage, IDocumentMessage>;
ensureNoDataModelChanges<T>(callback: () => T): T;
getAbsoluteUrl(relativeUrl: string): Promise<string | undefined>;
getAudience(): IAudience;
getBaseGCDetails(): Promise<IGarbageCollectionDetailsBase>;

Просмотреть файл

@ -180,7 +180,7 @@ export abstract class RuntimeFactoryHelper<T = IContainerRuntime> implements IRu
// (undocumented)
instantiateFromExisting(_runtime: T): Promise<void>;
// (undocumented)
instantiateRuntime(context: IContainerContext, existing?: boolean): Promise<IRuntime>;
instantiateRuntime(context: IContainerContext, existing: boolean): Promise<IRuntime>;
// (undocumented)
get IRuntimeFactory(): this;
// (undocumented)

Просмотреть файл

@ -142,9 +142,9 @@ export class IntervalCollection<TInterval extends ISerializableInterval> extends
// @internal
constructor(helpers: IIntervalHelpers<TInterval>, requiresClient: boolean, emitter: IValueOpEmitter, serializedIntervals: ISerializedInterval[] | ISerializedIntervalCollectionV2);
// @internal (undocumented)
ackAdd(serializedInterval: ISerializedInterval, local: boolean, op: ISequencedDocumentMessage): TInterval | undefined;
ackAdd(serializedInterval: ISerializedInterval, local: boolean, op: ISequencedDocumentMessage, localOpMetadata: IMapMessageLocalMetadata | undefined): TInterval | undefined;
// @internal (undocumented)
ackChange(serializedInterval: ISerializedInterval, local: boolean, op: ISequencedDocumentMessage): void;
ackChange(serializedInterval: ISerializedInterval, local: boolean, op: ISequencedDocumentMessage, localOpMetadata: IMapMessageLocalMetadata | undefined): void;
// @internal (undocumented)
ackDelete(serializedInterval: ISerializedInterval, local: boolean, op: ISequencedDocumentMessage): void;
add(start: number, end: number, intervalType: IntervalType, props?: PropertySet): TInterval;

Просмотреть файл

@ -234,12 +234,14 @@ export class MockLogger extends TelemetryLogger implements ITelemetryLogger {
assertMatch(expectedEvents: Omit<ITelemetryBaseEvent, "category">[], message?: string): void;
assertMatchAny(expectedEvents: Omit<ITelemetryBaseEvent, "category">[], message?: string): void;
assertMatchNone(disallowedEvents: Omit<ITelemetryBaseEvent, "category">[], message?: string): void;
assertMatchStrict(expectedEvents: Omit<ITelemetryBaseEvent, "category">[], message?: string): void;
// (undocumented)
clear(): void;
// (undocumented)
events: ITelemetryBaseEvent[];
matchAnyEvent(expectedEvents: Omit<ITelemetryBaseEvent, "category">[]): boolean;
matchEvents(expectedEvents: Omit<ITelemetryBaseEvent, "category">[]): boolean;
matchEventStrict(expectedEvents: Omit<ITelemetryBaseEvent, "category">[]): boolean;
// (undocumented)
send(event: ITelemetryBaseEvent): void;
}

Просмотреть файл

@ -293,6 +293,8 @@ export class MockFluidDataStoreContext implements IFluidDataStoreContext {
// (undocumented)
deltaManager: IDeltaManager<ISequencedDocumentMessage, IDocumentMessage>;
// (undocumented)
ensureNoDataModelChanges<T>(callback: () => T): T;
// (undocumented)
readonly existing: boolean;
// (undocumented)
getAbsoluteUrl(relativeUrl: string): Promise<string | undefined>;
@ -379,6 +381,8 @@ export class MockFluidDataStoreRuntime extends EventEmitter implements IFluidDat
// (undocumented)
readonly documentId: string;
// (undocumented)
ensureNoDataModelChanges<T>(callback: () => T): T;
// (undocumented)
readonly entryPoint?: IFluidHandle<FluidObject>;
// (undocumented)
readonly existing: boolean;

Просмотреть файл

@ -91,7 +91,7 @@ export const createTestContainerRuntimeFactory: (containerRuntimeCtor: typeof Co
instantiateFromExisting(runtime: ContainerRuntime): Promise<void>;
preInitialize(context: IContainerContext, existing: boolean): Promise<IRuntime & IContainerRuntime>;
readonly IRuntimeFactory: any;
instantiateRuntime(context: IContainerContext, existing?: boolean | undefined): Promise<IRuntime>;
instantiateRuntime(context: IContainerContext, existing: boolean): Promise<IRuntime>;
hasInitialized(_runtime: IContainerRuntime): Promise<void>;
};
};
@ -256,7 +256,7 @@ export const TestContainerRuntimeFactory: {
instantiateFromExisting(runtime: ContainerRuntime): Promise<void>;
preInitialize(context: IContainerContext, existing: boolean): Promise<IRuntime & IContainerRuntime>;
readonly IRuntimeFactory: any;
instantiateRuntime(context: IContainerContext, existing?: boolean | undefined): Promise<IRuntime>;
instantiateRuntime(context: IContainerContext, existing: boolean): Promise<IRuntime>;
hasInitialized(_runtime: IContainerRuntime): Promise<void>;
};
};
@ -347,7 +347,6 @@ export function timeoutPromise<T = void>(executor: (resolve: (value: T | Promise
// @public (undocumented)
export interface TimeoutWithError {
// (undocumented)
durationMs?: number;
// (undocumented)
errorMsg?: string;
@ -357,7 +356,6 @@ export interface TimeoutWithError {
// @public (undocumented)
export interface TimeoutWithValue<T = void> {
// (undocumented)
durationMs?: number;
// (undocumented)
reject: false;

214
common/lib/common-definitions/package-lock.json сгенерированный
Просмотреть файл

@ -87,9 +87,9 @@
}
},
"@fluid-tools/version-tools": {
"version": "0.6.0-109663",
"resolved": "https://registry.npmjs.org/@fluid-tools/version-tools/-/version-tools-0.6.0-109663.tgz",
"integrity": "sha512-04hUL6TLyQI0d43ULENmF7smmUY+DCH0bKhnDHsDlQNZxFBT02TXf68M8kXJixrRPu/9TGa7SBNyay0UNthzOQ==",
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/@fluid-tools/version-tools/-/version-tools-0.7.0.tgz",
"integrity": "sha512-BMovOIobnm1IiH2kp+lkbh3nkcT9kOjkozEKvYSqHpSwn8ooR9XmxcfBx69pZIpgmr4CKkhOnNe0Kg2FwHCgEQ==",
"dev": true,
"requires": {
"@oclif/core": "^1.9.5",
@ -137,15 +137,15 @@
"dev": true
},
"@fluidframework/build-tools": {
"version": "0.6.0-109663",
"resolved": "https://registry.npmjs.org/@fluidframework/build-tools/-/build-tools-0.6.0-109663.tgz",
"integrity": "sha512-s6NpL/pLNMvHew3T8IIUW80QIhfmNRmV1h4ROoBlQiwj12rPa/cxdkFZl/c6XX4fUQCJDbW4p3EOOR3iYrkakA==",
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/@fluidframework/build-tools/-/build-tools-0.7.0.tgz",
"integrity": "sha512-9hR+3BH16Kai06aS/Sr+F/mKpDbBfzkujlG16sWAbcBrkmRz5PILaEXHEe1ln39O98zDkRQMh341qYpwhKKvJA==",
"dev": true,
"requires": {
"@fluid-tools/version-tools": "0.6.0-109663",
"@fluidframework/bundle-size-tools": "0.6.0-109663",
"@fluid-tools/version-tools": "^0.7.0",
"@fluidframework/bundle-size-tools": "^0.7.0",
"@rushstack/node-core-library": "^3.51.1",
"async": "^3.2.0",
"async": "^3.2.2",
"chalk": "^2.4.2",
"commander": "^6.2.1",
"danger": "^10.9.0",
@ -170,9 +170,9 @@
},
"dependencies": {
"@rushstack/node-core-library": {
"version": "3.53.2",
"resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.53.2.tgz",
"integrity": "sha512-FggLe5DQs0X9MNFeJN3/EXwb+8hyZUTEp2i+V1e8r4Va4JgkjBNY0BuEaQI+3DW6S4apV3UtXU3im17MSY00DA==",
"version": "3.53.3",
"resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.53.3.tgz",
"integrity": "sha512-H0+T5koi5MFhJUd5ND3dI3bwLhvlABetARl78L3lWftJVQEPyzcgTStvTTRiIM5mCltyTM8VYm6BuCtNUuxD0Q==",
"dev": true,
"requires": {
"@types/node": "12.20.24",
@ -288,9 +288,9 @@
}
},
"@fluidframework/bundle-size-tools": {
"version": "0.6.0-109663",
"resolved": "https://registry.npmjs.org/@fluidframework/bundle-size-tools/-/bundle-size-tools-0.6.0-109663.tgz",
"integrity": "sha512-OPz35ffI7qaUoYMo6R8PVQWm8qF6G8q33FTPKhrpnplkFFlwsq+jkVHL8+F2DgLHrAd2FsT8pA524JQU5aMSBg==",
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/@fluidframework/bundle-size-tools/-/bundle-size-tools-0.7.0.tgz",
"integrity": "sha512-XDKYtTd/n78p1aX5nGYfySVlinCdDKqhHnPhphULQ9yOjfr3BGbz8/968DNopLMaMTrYyEyQouxcBAmvH8blmQ==",
"dev": true,
"requires": {
"azure-devops-node-api": "^11.2.0",
@ -648,9 +648,9 @@
}
},
"@oclif/core": {
"version": "1.20.4",
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-1.20.4.tgz",
"integrity": "sha512-giug32M4YhSYNYKQwE1L57/+k5gp1+Bq3/0vKNQmzAY1tizFGhvBJc6GIRZasHjU+xtZLutQvrVrJo7chX3hxg==",
"version": "1.21.0",
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-1.21.0.tgz",
"integrity": "sha512-B/AKYfHcNRAbb6Xz2kj0FlH9gWEi8aFS4iEr7EzguP3E2DpDk4wcf7eOMOfJYEmhuVd9sOpVWSnI2yP+FL/3Sg==",
"dev": true,
"requires": {
"@oclif/linewrap": "^1.0.0",
@ -783,9 +783,9 @@
"dev": true
},
"ignore": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz",
"integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==",
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.1.tgz",
"integrity": "sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==",
"dev": true
},
"js-yaml": {
@ -889,12 +889,12 @@
"dev": true
},
"@oclif/plugin-autocomplete": {
"version": "1.3.6",
"resolved": "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-1.3.6.tgz",
"integrity": "sha512-XmSuuVohfGPAi2ouoCbWbVUjaaxprK+4KsNOkUafK2rqCMmmoK/VuAQvv539yMpM9IhSvARwS7NnGvFY9HmZVw==",
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-1.3.7.tgz",
"integrity": "sha512-bJMf/ieHhnU5+2IPCFZl85ym/XVJ4IIN891R80pNs9KvUdOdE4RwFrYv+nCOp5k+aqteY903tIWmV1xI6A8YgA==",
"dev": true,
"requires": {
"@oclif/core": "^1.20.4",
"@oclif/core": "^1.21.0",
"chalk": "^4.1.0",
"debug": "^4.3.4",
"fs-extra": "^9.0.1"
@ -999,12 +999,12 @@
}
},
"@oclif/plugin-help": {
"version": "5.1.19",
"resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-5.1.19.tgz",
"integrity": "sha512-eQVRCFJOwRj8Tbqz8Lzd9GN38egwLCg+ohJ0xfg12CoXml03WqkfcFiAWkVwSWmLVrZUlUVrxfXKKkmpUaXZHg==",
"version": "5.1.20",
"resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-5.1.20.tgz",
"integrity": "sha512-N8xRxE/isFcdBDI8cobixEZA5toxIK5jbxpwALNTr4s8KNAtBA3ORQrSiY0fWGkcv0sCGMwZw7rJ0Izh18JPsw==",
"dev": true,
"requires": {
"@oclif/core": "^1.20.4"
"@oclif/core": "^1.21.0"
}
},
"@oclif/plugin-not-found": {
@ -1031,13 +1031,13 @@
}
},
"@oclif/plugin-plugins": {
"version": "2.1.7",
"resolved": "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-2.1.7.tgz",
"integrity": "sha512-z3nJWFskBKSimw8HUmlYyoaGEJlbjoFRT0xuiip4x7bccWn/Jyp4OWUzXcEdas6mnzmtBpNcQ5VxLaHIfad70Q==",
"version": "2.1.8",
"resolved": "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-2.1.8.tgz",
"integrity": "sha512-n6avDtvkQ5RbaG4e7FGe7gAQSzzXJ8ocrwubQbuqhtHkbxuFazps8rpkizR2ILgJLxCQdjGvHbXeVJ2Ui6yCPg==",
"dev": true,
"requires": {
"@oclif/color": "^1.0.1",
"@oclif/core": "^1.20.0",
"@oclif/core": "^1.21.0",
"chalk": "^4.1.2",
"debug": "^4.3.4",
"fs-extra": "^9.0",
@ -1174,13 +1174,13 @@
"dev": true
},
"@oclif/test": {
"version": "2.2.10",
"resolved": "https://registry.npmjs.org/@oclif/test/-/test-2.2.10.tgz",
"integrity": "sha512-tz6tH79F0Kw1kWv/8BgTov+WtIeFDdq1PNUkW43U0Rh4HOA1SafPbXCpzhM9A6O7YXS+tq8ayuZdkyOXXJY6Ww==",
"version": "2.2.15",
"resolved": "https://registry.npmjs.org/@oclif/test/-/test-2.2.15.tgz",
"integrity": "sha512-IItdu34/nIn46qYg2PxeAA7fgW+y3KTUM+UCEaRvaFxEfQiHG173ohFJu7HPVsMfAS+RuTQfmAd/c0xKVQLGUQ==",
"dev": true,
"requires": {
"@oclif/core": "^1.20.3",
"fancy-test": "^2.0.6"
"@oclif/core": "^1.21.0",
"fancy-test": "^2.0.9"
}
},
"@octokit/auth-token": {
@ -1852,9 +1852,9 @@
"dev": true
},
"@types/lodash": {
"version": "4.14.189",
"resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.189.tgz",
"integrity": "sha512-kb9/98N6X8gyME9Cf7YaqIMvYGnBSWqEci6tiettE6iJWH1XdJz/PO8LB0GtLCG7x8dU3KWhZT+lA1a35127tA==",
"version": "4.14.191",
"resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.191.tgz",
"integrity": "sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ==",
"dev": true
},
"@types/minimatch": {
@ -1870,9 +1870,9 @@
"dev": true
},
"@types/node": {
"version": "18.11.9",
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.9.tgz",
"integrity": "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==",
"version": "18.11.15",
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.15.tgz",
"integrity": "sha512-VkhBbVo2+2oozlkdHXLrb3zjsRkpdnaU2bXmX8Wgle3PUi569eLRaHGlgETQHR7lLL1w7GiG3h9SnePhxNDecw==",
"dev": true
},
"@types/normalize-package-data": {
@ -1881,12 +1881,6 @@
"integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==",
"dev": true
},
"@types/parse-json": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz",
"integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==",
"dev": true
},
"@types/sinon": {
"version": "10.0.13",
"resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-10.0.13.tgz",
@ -2747,10 +2741,13 @@
"dev": true
},
"builtins": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz",
"integrity": "sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==",
"dev": true
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz",
"integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==",
"dev": true,
"requires": {
"semver": "^7.0.0"
}
},
"call-bind": {
"version": "1.0.2",
@ -2786,9 +2783,9 @@
}
},
"caniuse-lite": {
"version": "1.0.30001431",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001431.tgz",
"integrity": "sha512-zBUoFU0ZcxpvSt9IU66dXVT/3ctO1cy4y9cscs1szkPlcWb6pasYM144GqrUygUbT+k7cmUCW61cvskjcv0enQ==",
"version": "1.0.30001439",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001439.tgz",
"integrity": "sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==",
"dev": true
},
"cardinal": {
@ -3060,24 +3057,15 @@
"dev": true
},
"cosmiconfig": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
"integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
"version": "8.0.0",
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.0.0.tgz",
"integrity": "sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==",
"dev": true,
"requires": {
"@types/parse-json": "^4.0.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.0",
"parse-json": "^5.0.0",
"path-type": "^4.0.0",
"yaml": "^1.10.0"
},
"dependencies": {
"yaml": {
"version": "1.10.2",
"resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
"integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
"dev": true
}
"path-type": "^4.0.0"
}
},
"cross-spawn": {
@ -3337,9 +3325,9 @@
}
},
"enhanced-resolve": {
"version": "5.10.0",
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz",
"integrity": "sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==",
"version": "5.12.0",
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz",
"integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==",
"dev": true,
"requires": {
"graceful-fs": "^4.2.4",
@ -4105,9 +4093,9 @@
}
},
"fancy-test": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/fancy-test/-/fancy-test-2.0.7.tgz",
"integrity": "sha512-E9qiHMi/Wf3y0PLwoRbgr8SRTcvQY+6gx9d/qaVNT6N5AQ79iZr08ftY2Ki5KRC5LS02GoVD/CYT4t/KwwC/Pw==",
"version": "2.0.9",
"resolved": "https://registry.npmjs.org/fancy-test/-/fancy-test-2.0.9.tgz",
"integrity": "sha512-sQ/tAoUiEcNkwg454GCCGWZaERQ48AV6WJZDJzRLwBI4k5M0OrzWME98Cqv3Vribnbe9rJlVb5hOcQmyZjrOBg==",
"dev": true,
"requires": {
"@types/chai": "*",
@ -5835,9 +5823,9 @@
}
},
"node-releases": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz",
"integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==",
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.7.tgz",
"integrity": "sha512-EJ3rzxL9pTWPjk5arA0s0dgXpnyiAbJDE6wHT62g7VsgrgQgmmZ+Ru++M1BFofncWja+Pnn3rEr3fieRySAdKQ==",
"dev": true
},
"noms": {
@ -5871,28 +5859,28 @@
}
},
"npm-package-json-lint": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/npm-package-json-lint/-/npm-package-json-lint-6.3.0.tgz",
"integrity": "sha512-wOCWHSssQUzNvo85NYZweec5SNr9LtkB9tQzjOHjucoABJivtkOLcH/A/cfp6X+cPAC8UNzRC0K08HCm7G+rTA==",
"version": "6.4.0",
"resolved": "https://registry.npmjs.org/npm-package-json-lint/-/npm-package-json-lint-6.4.0.tgz",
"integrity": "sha512-cuXAJJB1Rdqz0UO6w524matlBqDBjcNt7Ru+RDIu4y6RI1gVqiWBnylrK8sPRk81gGBA0X8hJbDXolVOoTc+sA==",
"dev": true,
"requires": {
"ajv": "^6.12.6",
"ajv-errors": "^1.0.1",
"chalk": "^4.1.2",
"cosmiconfig": "^7.0.1",
"cosmiconfig": "^8.0.0",
"debug": "^4.3.4",
"globby": "^11.1.0",
"ignore": "^5.2.0",
"is-plain-obj": "^3.0.0",
"jsonc-parser": "^3.0.0",
"jsonc-parser": "^3.2.0",
"log-symbols": "^4.1.0",
"meow": "^9.0.0",
"plur": "^4.0.0",
"semver": "^7.3.5",
"semver": "^7.3.8",
"slash": "^3.0.0",
"strip-json-comments": "^3.1.1",
"type-fest": "^2.12.0",
"validate-npm-package-name": "^3.0.0"
"type-fest": "^3.2.0",
"validate-npm-package-name": "^5.0.0"
},
"dependencies": {
"ansi-styles": {
@ -5972,11 +5960,20 @@
"dev": true
},
"ignore": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz",
"integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==",
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.1.tgz",
"integrity": "sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==",
"dev": true
},
"lru-cache": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
"dev": true,
"requires": {
"yallist": "^4.0.0"
}
},
"micromatch": {
"version": "4.0.5",
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
@ -5993,6 +5990,15 @@
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
"dev": true
},
"semver": {
"version": "7.3.8",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz",
"integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==",
"dev": true,
"requires": {
"lru-cache": "^6.0.0"
}
},
"supports-color": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
@ -6003,9 +6009,15 @@
}
},
"type-fest": {
"version": "2.19.0",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz",
"integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==",
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.4.0.tgz",
"integrity": "sha512-PEPg6RHlB9cFwoTMNENNrQFL0cXX04voWr2UPwQBJ3pVs7Mt8Y1oLWdUeMdGEwZE8HFFlujq8gS9enmyiQ8pLg==",
"dev": true
},
"yallist": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
"dev": true
}
}
@ -7349,9 +7361,9 @@
"dev": true
},
"terser": {
"version": "5.15.1",
"resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz",
"integrity": "sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==",
"version": "5.16.1",
"resolved": "https://registry.npmjs.org/terser/-/terser-5.16.1.tgz",
"integrity": "sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==",
"dev": true,
"requires": {
"@jridgewell/source-map": "^0.3.2",
@ -7658,12 +7670,12 @@
}
},
"validate-npm-package-name": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz",
"integrity": "sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==",
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz",
"integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==",
"dev": true,
"requires": {
"builtins": "^1.0.3"
"builtins": "^5.0.0"
}
},
"validator": {

Просмотреть файл

@ -43,7 +43,7 @@
"dependencies": {},
"devDependencies": {
"@fluidframework/build-common": "^1.0.0",
"@fluidframework/build-tools": "^0.6.0-109663",
"@fluidframework/build-tools": "^0.7.0",
"@fluidframework/common-definitions-previous": "npm:@fluidframework/common-definitions@0.20.1",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@microsoft/api-extractor": "^7.22.2",

219
common/lib/common-utils/package-lock.json сгенерированный
Просмотреть файл

@ -461,9 +461,9 @@
}
},
"@fluid-tools/version-tools": {
"version": "0.6.0-109663",
"resolved": "https://registry.npmjs.org/@fluid-tools/version-tools/-/version-tools-0.6.0-109663.tgz",
"integrity": "sha512-04hUL6TLyQI0d43ULENmF7smmUY+DCH0bKhnDHsDlQNZxFBT02TXf68M8kXJixrRPu/9TGa7SBNyay0UNthzOQ==",
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/@fluid-tools/version-tools/-/version-tools-0.7.0.tgz",
"integrity": "sha512-BMovOIobnm1IiH2kp+lkbh3nkcT9kOjkozEKvYSqHpSwn8ooR9XmxcfBx69pZIpgmr4CKkhOnNe0Kg2FwHCgEQ==",
"dev": true,
"requires": {
"@oclif/core": "^1.9.5",
@ -511,15 +511,15 @@
"dev": true
},
"@fluidframework/build-tools": {
"version": "0.6.0-109663",
"resolved": "https://registry.npmjs.org/@fluidframework/build-tools/-/build-tools-0.6.0-109663.tgz",
"integrity": "sha512-s6NpL/pLNMvHew3T8IIUW80QIhfmNRmV1h4ROoBlQiwj12rPa/cxdkFZl/c6XX4fUQCJDbW4p3EOOR3iYrkakA==",
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/@fluidframework/build-tools/-/build-tools-0.7.0.tgz",
"integrity": "sha512-9hR+3BH16Kai06aS/Sr+F/mKpDbBfzkujlG16sWAbcBrkmRz5PILaEXHEe1ln39O98zDkRQMh341qYpwhKKvJA==",
"dev": true,
"requires": {
"@fluid-tools/version-tools": "0.6.0-109663",
"@fluidframework/bundle-size-tools": "0.6.0-109663",
"@fluid-tools/version-tools": "^0.7.0",
"@fluidframework/bundle-size-tools": "^0.7.0",
"@rushstack/node-core-library": "^3.51.1",
"async": "^3.2.0",
"async": "^3.2.2",
"chalk": "^2.4.2",
"commander": "^6.2.1",
"danger": "^10.9.0",
@ -544,9 +544,9 @@
},
"dependencies": {
"@rushstack/node-core-library": {
"version": "3.53.2",
"resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.53.2.tgz",
"integrity": "sha512-FggLe5DQs0X9MNFeJN3/EXwb+8hyZUTEp2i+V1e8r4Va4JgkjBNY0BuEaQI+3DW6S4apV3UtXU3im17MSY00DA==",
"version": "3.53.3",
"resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.53.3.tgz",
"integrity": "sha512-H0+T5koi5MFhJUd5ND3dI3bwLhvlABetARl78L3lWftJVQEPyzcgTStvTTRiIM5mCltyTM8VYm6BuCtNUuxD0Q==",
"dev": true,
"requires": {
"@types/node": "12.20.24",
@ -647,9 +647,9 @@
}
},
"@fluidframework/bundle-size-tools": {
"version": "0.6.0-109663",
"resolved": "https://registry.npmjs.org/@fluidframework/bundle-size-tools/-/bundle-size-tools-0.6.0-109663.tgz",
"integrity": "sha512-OPz35ffI7qaUoYMo6R8PVQWm8qF6G8q33FTPKhrpnplkFFlwsq+jkVHL8+F2DgLHrAd2FsT8pA524JQU5aMSBg==",
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/@fluidframework/bundle-size-tools/-/bundle-size-tools-0.7.0.tgz",
"integrity": "sha512-XDKYtTd/n78p1aX5nGYfySVlinCdDKqhHnPhphULQ9yOjfr3BGbz8/968DNopLMaMTrYyEyQouxcBAmvH8blmQ==",
"dev": true,
"requires": {
"azure-devops-node-api": "^11.2.0",
@ -1683,9 +1683,9 @@
}
},
"@oclif/core": {
"version": "1.20.4",
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-1.20.4.tgz",
"integrity": "sha512-giug32M4YhSYNYKQwE1L57/+k5gp1+Bq3/0vKNQmzAY1tizFGhvBJc6GIRZasHjU+xtZLutQvrVrJo7chX3hxg==",
"version": "1.21.0",
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-1.21.0.tgz",
"integrity": "sha512-B/AKYfHcNRAbb6Xz2kj0FlH9gWEi8aFS4iEr7EzguP3E2DpDk4wcf7eOMOfJYEmhuVd9sOpVWSnI2yP+FL/3Sg==",
"dev": true,
"requires": {
"@oclif/linewrap": "^1.0.0",
@ -1842,9 +1842,9 @@
"dev": true
},
"ignore": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz",
"integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==",
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.1.tgz",
"integrity": "sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==",
"dev": true
},
"js-yaml": {
@ -1984,12 +1984,12 @@
"dev": true
},
"@oclif/plugin-autocomplete": {
"version": "1.3.6",
"resolved": "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-1.3.6.tgz",
"integrity": "sha512-XmSuuVohfGPAi2ouoCbWbVUjaaxprK+4KsNOkUafK2rqCMmmoK/VuAQvv539yMpM9IhSvARwS7NnGvFY9HmZVw==",
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-1.3.7.tgz",
"integrity": "sha512-bJMf/ieHhnU5+2IPCFZl85ym/XVJ4IIN891R80pNs9KvUdOdE4RwFrYv+nCOp5k+aqteY903tIWmV1xI6A8YgA==",
"dev": true,
"requires": {
"@oclif/core": "^1.20.4",
"@oclif/core": "^1.21.0",
"chalk": "^4.1.0",
"debug": "^4.3.4",
"fs-extra": "^9.0.1"
@ -2094,12 +2094,12 @@
}
},
"@oclif/plugin-help": {
"version": "5.1.19",
"resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-5.1.19.tgz",
"integrity": "sha512-eQVRCFJOwRj8Tbqz8Lzd9GN38egwLCg+ohJ0xfg12CoXml03WqkfcFiAWkVwSWmLVrZUlUVrxfXKKkmpUaXZHg==",
"version": "5.1.20",
"resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-5.1.20.tgz",
"integrity": "sha512-N8xRxE/isFcdBDI8cobixEZA5toxIK5jbxpwALNTr4s8KNAtBA3ORQrSiY0fWGkcv0sCGMwZw7rJ0Izh18JPsw==",
"dev": true,
"requires": {
"@oclif/core": "^1.20.4"
"@oclif/core": "^1.21.0"
}
},
"@oclif/plugin-not-found": {
@ -2126,13 +2126,13 @@
}
},
"@oclif/plugin-plugins": {
"version": "2.1.7",
"resolved": "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-2.1.7.tgz",
"integrity": "sha512-z3nJWFskBKSimw8HUmlYyoaGEJlbjoFRT0xuiip4x7bccWn/Jyp4OWUzXcEdas6mnzmtBpNcQ5VxLaHIfad70Q==",
"version": "2.1.8",
"resolved": "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-2.1.8.tgz",
"integrity": "sha512-n6avDtvkQ5RbaG4e7FGe7gAQSzzXJ8ocrwubQbuqhtHkbxuFazps8rpkizR2ILgJLxCQdjGvHbXeVJ2Ui6yCPg==",
"dev": true,
"requires": {
"@oclif/color": "^1.0.1",
"@oclif/core": "^1.20.0",
"@oclif/core": "^1.21.0",
"chalk": "^4.1.2",
"debug": "^4.3.4",
"fs-extra": "^9.0",
@ -2284,13 +2284,13 @@
"dev": true
},
"@oclif/test": {
"version": "2.2.10",
"resolved": "https://registry.npmjs.org/@oclif/test/-/test-2.2.10.tgz",
"integrity": "sha512-tz6tH79F0Kw1kWv/8BgTov+WtIeFDdq1PNUkW43U0Rh4HOA1SafPbXCpzhM9A6O7YXS+tq8ayuZdkyOXXJY6Ww==",
"version": "2.2.15",
"resolved": "https://registry.npmjs.org/@oclif/test/-/test-2.2.15.tgz",
"integrity": "sha512-IItdu34/nIn46qYg2PxeAA7fgW+y3KTUM+UCEaRvaFxEfQiHG173ohFJu7HPVsMfAS+RuTQfmAd/c0xKVQLGUQ==",
"dev": true,
"requires": {
"@oclif/core": "^1.20.3",
"fancy-test": "^2.0.6"
"@oclif/core": "^1.21.0",
"fancy-test": "^2.0.9"
}
},
"@octokit/auth-token": {
@ -3237,9 +3237,9 @@
"dev": true
},
"@types/lodash": {
"version": "4.14.189",
"resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.189.tgz",
"integrity": "sha512-kb9/98N6X8gyME9Cf7YaqIMvYGnBSWqEci6tiettE6iJWH1XdJz/PO8LB0GtLCG7x8dU3KWhZT+lA1a35127tA==",
"version": "4.14.191",
"resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.191.tgz",
"integrity": "sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ==",
"dev": true
},
"@types/mime-types": {
@ -3278,12 +3278,6 @@
"integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==",
"dev": true
},
"@types/parse-json": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz",
"integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==",
"dev": true
},
"@types/prettier": {
"version": "2.1.6",
"resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.1.6.tgz",
@ -4595,10 +4589,39 @@
"dev": true
},
"builtins": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz",
"integrity": "sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==",
"dev": true
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz",
"integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==",
"dev": true,
"requires": {
"semver": "^7.0.0"
},
"dependencies": {
"lru-cache": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
"dev": true,
"requires": {
"yallist": "^4.0.0"
}
},
"semver": {
"version": "7.3.8",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz",
"integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==",
"dev": true,
"requires": {
"lru-cache": "^6.0.0"
}
},
"yallist": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
"dev": true
}
}
},
"cache-base": {
"version": "1.0.1",
@ -4663,9 +4686,9 @@
}
},
"caniuse-lite": {
"version": "1.0.30001431",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001431.tgz",
"integrity": "sha512-zBUoFU0ZcxpvSt9IU66dXVT/3ctO1cy4y9cscs1szkPlcWb6pasYM144GqrUygUbT+k7cmUCW61cvskjcv0enQ==",
"version": "1.0.30001439",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001439.tgz",
"integrity": "sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==",
"dev": true
},
"capture-exit": {
@ -5174,23 +5197,31 @@
"dev": true
},
"cosmiconfig": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
"integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
"version": "8.0.0",
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.0.0.tgz",
"integrity": "sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==",
"dev": true,
"requires": {
"@types/parse-json": "^4.0.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.0",
"parse-json": "^5.0.0",
"path-type": "^4.0.0",
"yaml": "^1.10.0"
"path-type": "^4.0.0"
},
"dependencies": {
"yaml": {
"version": "1.10.2",
"resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
"integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
"argparse": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
"dev": true
},
"js-yaml": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
"dev": true,
"requires": {
"argparse": "^2.0.1"
}
}
}
},
@ -5669,9 +5700,9 @@
}
},
"enhanced-resolve": {
"version": "5.10.0",
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz",
"integrity": "sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==",
"version": "5.12.0",
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz",
"integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==",
"dev": true,
"requires": {
"graceful-fs": "^4.2.4",
@ -6771,9 +6802,9 @@
"dev": true
},
"fancy-test": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/fancy-test/-/fancy-test-2.0.7.tgz",
"integrity": "sha512-E9qiHMi/Wf3y0PLwoRbgr8SRTcvQY+6gx9d/qaVNT6N5AQ79iZr08ftY2Ki5KRC5LS02GoVD/CYT4t/KwwC/Pw==",
"version": "2.0.9",
"resolved": "https://registry.npmjs.org/fancy-test/-/fancy-test-2.0.9.tgz",
"integrity": "sha512-sQ/tAoUiEcNkwg454GCCGWZaERQ48AV6WJZDJzRLwBI4k5M0OrzWME98Cqv3Vribnbe9rJlVb5hOcQmyZjrOBg==",
"dev": true,
"requires": {
"@types/chai": "*",
@ -11761,9 +11792,9 @@
}
},
"node-releases": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz",
"integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==",
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.7.tgz",
"integrity": "sha512-EJ3rzxL9pTWPjk5arA0s0dgXpnyiAbJDE6wHT62g7VsgrgQgmmZ+Ru++M1BFofncWja+Pnn3rEr3fieRySAdKQ==",
"dev": true
},
"noms": {
@ -11803,28 +11834,28 @@
"dev": true
},
"npm-package-json-lint": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/npm-package-json-lint/-/npm-package-json-lint-6.3.0.tgz",
"integrity": "sha512-wOCWHSssQUzNvo85NYZweec5SNr9LtkB9tQzjOHjucoABJivtkOLcH/A/cfp6X+cPAC8UNzRC0K08HCm7G+rTA==",
"version": "6.4.0",
"resolved": "https://registry.npmjs.org/npm-package-json-lint/-/npm-package-json-lint-6.4.0.tgz",
"integrity": "sha512-cuXAJJB1Rdqz0UO6w524matlBqDBjcNt7Ru+RDIu4y6RI1gVqiWBnylrK8sPRk81gGBA0X8hJbDXolVOoTc+sA==",
"dev": true,
"requires": {
"ajv": "^6.12.6",
"ajv-errors": "^1.0.1",
"chalk": "^4.1.2",
"cosmiconfig": "^7.0.1",
"cosmiconfig": "^8.0.0",
"debug": "^4.3.4",
"globby": "^11.1.0",
"ignore": "^5.2.0",
"is-plain-obj": "^3.0.0",
"jsonc-parser": "^3.0.0",
"jsonc-parser": "^3.2.0",
"log-symbols": "^4.1.0",
"meow": "^9.0.0",
"plur": "^4.0.0",
"semver": "^7.3.5",
"semver": "^7.3.8",
"slash": "^3.0.0",
"strip-json-comments": "^3.1.1",
"type-fest": "^2.12.0",
"validate-npm-package-name": "^3.0.0"
"type-fest": "^3.2.0",
"validate-npm-package-name": "^5.0.0"
},
"dependencies": {
"ajv": {
@ -11916,9 +11947,9 @@
"dev": true
},
"ignore": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz",
"integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==",
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.1.tgz",
"integrity": "sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==",
"dev": true
},
"is-plain-obj": {
@ -11971,9 +12002,9 @@
}
},
"type-fest": {
"version": "2.19.0",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz",
"integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==",
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.4.0.tgz",
"integrity": "sha512-PEPg6RHlB9cFwoTMNENNrQFL0cXX04voWr2UPwQBJ3pVs7Mt8Y1oLWdUeMdGEwZE8HFFlujq8gS9enmyiQ8pLg==",
"dev": true
},
"yallist": {
@ -14680,9 +14711,9 @@
}
},
"terser": {
"version": "5.15.1",
"resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz",
"integrity": "sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==",
"version": "5.16.1",
"resolved": "https://registry.npmjs.org/terser/-/terser-5.16.1.tgz",
"integrity": "sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==",
"dev": true,
"requires": {
"@jridgewell/source-map": "^0.3.2",
@ -15350,12 +15381,12 @@
}
},
"validate-npm-package-name": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz",
"integrity": "sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==",
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz",
"integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==",
"dev": true,
"requires": {
"builtins": "^1.0.3"
"builtins": "^5.0.0"
}
},
"validator": {

Просмотреть файл

@ -87,7 +87,7 @@
},
"devDependencies": {
"@fluidframework/build-common": "^1.0.0",
"@fluidframework/build-tools": "^0.6.0-109663",
"@fluidframework/build-tools": "^0.7.0",
"@fluidframework/common-utils-previous": "npm:@fluidframework/common-utils@1.0.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@microsoft/api-extractor": "^7.22.2",

205
common/lib/protocol-definitions/package-lock.json сгенерированный
Просмотреть файл

@ -87,9 +87,9 @@
}
},
"@fluid-tools/version-tools": {
"version": "0.6.0-109663",
"resolved": "https://registry.npmjs.org/@fluid-tools/version-tools/-/version-tools-0.6.0-109663.tgz",
"integrity": "sha512-04hUL6TLyQI0d43ULENmF7smmUY+DCH0bKhnDHsDlQNZxFBT02TXf68M8kXJixrRPu/9TGa7SBNyay0UNthzOQ==",
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/@fluid-tools/version-tools/-/version-tools-0.7.0.tgz",
"integrity": "sha512-BMovOIobnm1IiH2kp+lkbh3nkcT9kOjkozEKvYSqHpSwn8ooR9XmxcfBx69pZIpgmr4CKkhOnNe0Kg2FwHCgEQ==",
"dev": true,
"requires": {
"@oclif/core": "^1.9.5",
@ -122,15 +122,15 @@
"dev": true
},
"@fluidframework/build-tools": {
"version": "0.6.0-109663",
"resolved": "https://registry.npmjs.org/@fluidframework/build-tools/-/build-tools-0.6.0-109663.tgz",
"integrity": "sha512-s6NpL/pLNMvHew3T8IIUW80QIhfmNRmV1h4ROoBlQiwj12rPa/cxdkFZl/c6XX4fUQCJDbW4p3EOOR3iYrkakA==",
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/@fluidframework/build-tools/-/build-tools-0.7.0.tgz",
"integrity": "sha512-9hR+3BH16Kai06aS/Sr+F/mKpDbBfzkujlG16sWAbcBrkmRz5PILaEXHEe1ln39O98zDkRQMh341qYpwhKKvJA==",
"dev": true,
"requires": {
"@fluid-tools/version-tools": "0.6.0-109663",
"@fluidframework/bundle-size-tools": "0.6.0-109663",
"@fluid-tools/version-tools": "^0.7.0",
"@fluidframework/bundle-size-tools": "^0.7.0",
"@rushstack/node-core-library": "^3.51.1",
"async": "^3.2.0",
"async": "^3.2.2",
"chalk": "^2.4.2",
"commander": "^6.2.1",
"danger": "^10.9.0",
@ -155,9 +155,9 @@
},
"dependencies": {
"@rushstack/node-core-library": {
"version": "3.53.2",
"resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.53.2.tgz",
"integrity": "sha512-FggLe5DQs0X9MNFeJN3/EXwb+8hyZUTEp2i+V1e8r4Va4JgkjBNY0BuEaQI+3DW6S4apV3UtXU3im17MSY00DA==",
"version": "3.53.3",
"resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.53.3.tgz",
"integrity": "sha512-H0+T5koi5MFhJUd5ND3dI3bwLhvlABetARl78L3lWftJVQEPyzcgTStvTTRiIM5mCltyTM8VYm6BuCtNUuxD0Q==",
"dev": true,
"requires": {
"@types/node": "12.20.24",
@ -258,9 +258,9 @@
}
},
"@fluidframework/bundle-size-tools": {
"version": "0.6.0-109663",
"resolved": "https://registry.npmjs.org/@fluidframework/bundle-size-tools/-/bundle-size-tools-0.6.0-109663.tgz",
"integrity": "sha512-OPz35ffI7qaUoYMo6R8PVQWm8qF6G8q33FTPKhrpnplkFFlwsq+jkVHL8+F2DgLHrAd2FsT8pA524JQU5aMSBg==",
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/@fluidframework/bundle-size-tools/-/bundle-size-tools-0.7.0.tgz",
"integrity": "sha512-XDKYtTd/n78p1aX5nGYfySVlinCdDKqhHnPhphULQ9yOjfr3BGbz8/968DNopLMaMTrYyEyQouxcBAmvH8blmQ==",
"dev": true,
"requires": {
"azure-devops-node-api": "^11.2.0",
@ -648,9 +648,9 @@
}
},
"@oclif/core": {
"version": "1.20.4",
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-1.20.4.tgz",
"integrity": "sha512-giug32M4YhSYNYKQwE1L57/+k5gp1+Bq3/0vKNQmzAY1tizFGhvBJc6GIRZasHjU+xtZLutQvrVrJo7chX3hxg==",
"version": "1.21.0",
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-1.21.0.tgz",
"integrity": "sha512-B/AKYfHcNRAbb6Xz2kj0FlH9gWEi8aFS4iEr7EzguP3E2DpDk4wcf7eOMOfJYEmhuVd9sOpVWSnI2yP+FL/3Sg==",
"dev": true,
"requires": {
"@oclif/linewrap": "^1.0.0",
@ -783,9 +783,9 @@
"dev": true
},
"ignore": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz",
"integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==",
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.1.tgz",
"integrity": "sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==",
"dev": true
},
"js-yaml": {
@ -847,12 +847,12 @@
"dev": true
},
"@oclif/plugin-autocomplete": {
"version": "1.3.6",
"resolved": "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-1.3.6.tgz",
"integrity": "sha512-XmSuuVohfGPAi2ouoCbWbVUjaaxprK+4KsNOkUafK2rqCMmmoK/VuAQvv539yMpM9IhSvARwS7NnGvFY9HmZVw==",
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-1.3.7.tgz",
"integrity": "sha512-bJMf/ieHhnU5+2IPCFZl85ym/XVJ4IIN891R80pNs9KvUdOdE4RwFrYv+nCOp5k+aqteY903tIWmV1xI6A8YgA==",
"dev": true,
"requires": {
"@oclif/core": "^1.20.4",
"@oclif/core": "^1.21.0",
"chalk": "^4.1.0",
"debug": "^4.3.4",
"fs-extra": "^9.0.1"
@ -957,12 +957,12 @@
}
},
"@oclif/plugin-help": {
"version": "5.1.19",
"resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-5.1.19.tgz",
"integrity": "sha512-eQVRCFJOwRj8Tbqz8Lzd9GN38egwLCg+ohJ0xfg12CoXml03WqkfcFiAWkVwSWmLVrZUlUVrxfXKKkmpUaXZHg==",
"version": "5.1.20",
"resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-5.1.20.tgz",
"integrity": "sha512-N8xRxE/isFcdBDI8cobixEZA5toxIK5jbxpwALNTr4s8KNAtBA3ORQrSiY0fWGkcv0sCGMwZw7rJ0Izh18JPsw==",
"dev": true,
"requires": {
"@oclif/core": "^1.20.4"
"@oclif/core": "^1.21.0"
}
},
"@oclif/plugin-not-found": {
@ -989,13 +989,13 @@
}
},
"@oclif/plugin-plugins": {
"version": "2.1.7",
"resolved": "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-2.1.7.tgz",
"integrity": "sha512-z3nJWFskBKSimw8HUmlYyoaGEJlbjoFRT0xuiip4x7bccWn/Jyp4OWUzXcEdas6mnzmtBpNcQ5VxLaHIfad70Q==",
"version": "2.1.8",
"resolved": "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-2.1.8.tgz",
"integrity": "sha512-n6avDtvkQ5RbaG4e7FGe7gAQSzzXJ8ocrwubQbuqhtHkbxuFazps8rpkizR2ILgJLxCQdjGvHbXeVJ2Ui6yCPg==",
"dev": true,
"requires": {
"@oclif/color": "^1.0.1",
"@oclif/core": "^1.20.0",
"@oclif/core": "^1.21.0",
"chalk": "^4.1.2",
"debug": "^4.3.4",
"fs-extra": "^9.0",
@ -1117,13 +1117,13 @@
"dev": true
},
"@oclif/test": {
"version": "2.2.10",
"resolved": "https://registry.npmjs.org/@oclif/test/-/test-2.2.10.tgz",
"integrity": "sha512-tz6tH79F0Kw1kWv/8BgTov+WtIeFDdq1PNUkW43U0Rh4HOA1SafPbXCpzhM9A6O7YXS+tq8ayuZdkyOXXJY6Ww==",
"version": "2.2.15",
"resolved": "https://registry.npmjs.org/@oclif/test/-/test-2.2.15.tgz",
"integrity": "sha512-IItdu34/nIn46qYg2PxeAA7fgW+y3KTUM+UCEaRvaFxEfQiHG173ohFJu7HPVsMfAS+RuTQfmAd/c0xKVQLGUQ==",
"dev": true,
"requires": {
"@oclif/core": "^1.20.3",
"fancy-test": "^2.0.6"
"@oclif/core": "^1.21.0",
"fancy-test": "^2.0.9"
}
},
"@octokit/auth-token": {
@ -1795,9 +1795,9 @@
"dev": true
},
"@types/lodash": {
"version": "4.14.189",
"resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.189.tgz",
"integrity": "sha512-kb9/98N6X8gyME9Cf7YaqIMvYGnBSWqEci6tiettE6iJWH1XdJz/PO8LB0GtLCG7x8dU3KWhZT+lA1a35127tA==",
"version": "4.14.191",
"resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.191.tgz",
"integrity": "sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ==",
"dev": true
},
"@types/minimatch": {
@ -1813,9 +1813,9 @@
"dev": true
},
"@types/node": {
"version": "18.11.9",
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.9.tgz",
"integrity": "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==",
"version": "18.11.15",
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.15.tgz",
"integrity": "sha512-VkhBbVo2+2oozlkdHXLrb3zjsRkpdnaU2bXmX8Wgle3PUi569eLRaHGlgETQHR7lLL1w7GiG3h9SnePhxNDecw==",
"dev": true
},
"@types/normalize-package-data": {
@ -1824,12 +1824,6 @@
"integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==",
"dev": true
},
"@types/parse-json": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz",
"integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==",
"dev": true
},
"@types/sinon": {
"version": "10.0.13",
"resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-10.0.13.tgz",
@ -2681,10 +2675,13 @@
"dev": true
},
"builtins": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz",
"integrity": "sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==",
"dev": true
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz",
"integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==",
"dev": true,
"requires": {
"semver": "^7.0.0"
}
},
"call-bind": {
"version": "1.0.2",
@ -2720,9 +2717,9 @@
}
},
"caniuse-lite": {
"version": "1.0.30001431",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001431.tgz",
"integrity": "sha512-zBUoFU0ZcxpvSt9IU66dXVT/3ctO1cy4y9cscs1szkPlcWb6pasYM144GqrUygUbT+k7cmUCW61cvskjcv0enQ==",
"version": "1.0.30001439",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001439.tgz",
"integrity": "sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==",
"dev": true
},
"cardinal": {
@ -3117,24 +3114,15 @@
"dev": true
},
"cosmiconfig": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
"integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
"version": "8.0.0",
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.0.0.tgz",
"integrity": "sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==",
"dev": true,
"requires": {
"@types/parse-json": "^4.0.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.0",
"parse-json": "^5.0.0",
"path-type": "^4.0.0",
"yaml": "^1.10.0"
},
"dependencies": {
"yaml": {
"version": "1.10.2",
"resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
"integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
"dev": true
}
"path-type": "^4.0.0"
}
},
"cross-spawn": {
@ -3394,9 +3382,9 @@
}
},
"enhanced-resolve": {
"version": "5.10.0",
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz",
"integrity": "sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==",
"version": "5.12.0",
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz",
"integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==",
"dev": true,
"requires": {
"graceful-fs": "^4.2.4",
@ -4096,9 +4084,9 @@
}
},
"fancy-test": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/fancy-test/-/fancy-test-2.0.7.tgz",
"integrity": "sha512-E9qiHMi/Wf3y0PLwoRbgr8SRTcvQY+6gx9d/qaVNT6N5AQ79iZr08ftY2Ki5KRC5LS02GoVD/CYT4t/KwwC/Pw==",
"version": "2.0.9",
"resolved": "https://registry.npmjs.org/fancy-test/-/fancy-test-2.0.9.tgz",
"integrity": "sha512-sQ/tAoUiEcNkwg454GCCGWZaERQ48AV6WJZDJzRLwBI4k5M0OrzWME98Cqv3Vribnbe9rJlVb5hOcQmyZjrOBg==",
"dev": true,
"requires": {
"@types/chai": "*",
@ -4192,9 +4180,9 @@
}
},
"minimatch": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz",
"integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==",
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.1.tgz",
"integrity": "sha512-362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g==",
"dev": true,
"requires": {
"brace-expansion": "^2.0.1"
@ -5803,9 +5791,9 @@
}
},
"node-releases": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz",
"integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==",
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.7.tgz",
"integrity": "sha512-EJ3rzxL9pTWPjk5arA0s0dgXpnyiAbJDE6wHT62g7VsgrgQgmmZ+Ru++M1BFofncWja+Pnn3rEr3fieRySAdKQ==",
"dev": true
},
"noms": {
@ -5839,28 +5827,28 @@
}
},
"npm-package-json-lint": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/npm-package-json-lint/-/npm-package-json-lint-6.3.0.tgz",
"integrity": "sha512-wOCWHSssQUzNvo85NYZweec5SNr9LtkB9tQzjOHjucoABJivtkOLcH/A/cfp6X+cPAC8UNzRC0K08HCm7G+rTA==",
"version": "6.4.0",
"resolved": "https://registry.npmjs.org/npm-package-json-lint/-/npm-package-json-lint-6.4.0.tgz",
"integrity": "sha512-cuXAJJB1Rdqz0UO6w524matlBqDBjcNt7Ru+RDIu4y6RI1gVqiWBnylrK8sPRk81gGBA0X8hJbDXolVOoTc+sA==",
"dev": true,
"requires": {
"ajv": "^6.12.6",
"ajv-errors": "^1.0.1",
"chalk": "^4.1.2",
"cosmiconfig": "^7.0.1",
"cosmiconfig": "^8.0.0",
"debug": "^4.3.4",
"globby": "^11.1.0",
"ignore": "^5.2.0",
"is-plain-obj": "^3.0.0",
"jsonc-parser": "^3.0.0",
"jsonc-parser": "^3.2.0",
"log-symbols": "^4.1.0",
"meow": "^9.0.0",
"plur": "^4.0.0",
"semver": "^7.3.5",
"semver": "^7.3.8",
"slash": "^3.0.0",
"strip-json-comments": "^3.1.1",
"type-fest": "^2.12.0",
"validate-npm-package-name": "^3.0.0"
"type-fest": "^3.2.0",
"validate-npm-package-name": "^5.0.0"
},
"dependencies": {
"ansi-styles": {
@ -5940,11 +5928,20 @@
"dev": true
},
"ignore": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz",
"integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==",
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.1.tgz",
"integrity": "sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==",
"dev": true
},
"semver": {
"version": "7.3.8",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz",
"integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==",
"dev": true,
"requires": {
"lru-cache": "^6.0.0"
}
},
"supports-color": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
@ -5955,9 +5952,9 @@
}
},
"type-fest": {
"version": "2.19.0",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz",
"integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==",
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.4.0.tgz",
"integrity": "sha512-PEPg6RHlB9cFwoTMNENNrQFL0cXX04voWr2UPwQBJ3pVs7Mt8Y1oLWdUeMdGEwZE8HFFlujq8gS9enmyiQ8pLg==",
"dev": true
}
}
@ -7260,9 +7257,9 @@
"dev": true
},
"terser": {
"version": "5.15.1",
"resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz",
"integrity": "sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==",
"version": "5.16.1",
"resolved": "https://registry.npmjs.org/terser/-/terser-5.16.1.tgz",
"integrity": "sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==",
"dev": true,
"requires": {
"@jridgewell/source-map": "^0.3.2",
@ -7579,12 +7576,12 @@
}
},
"validate-npm-package-name": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz",
"integrity": "sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==",
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz",
"integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==",
"dev": true,
"requires": {
"builtins": "^1.0.3"
"builtins": "^5.0.0"
}
},
"validator": {

Просмотреть файл

@ -45,7 +45,7 @@
},
"devDependencies": {
"@fluidframework/build-common": "^1.0.0",
"@fluidframework/build-tools": "^0.6.0-109663",
"@fluidframework/build-tools": "^0.7.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/protocol-definitions-previous": "npm:@fluidframework/protocol-definitions@1.1.0",
"@microsoft/api-extractor": "^7.22.2",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/collaborative-textarea",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "A minimal example using the react collaborative-textarea",
"homepage": "https://fluidframework.com",
@ -39,16 +39,16 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/example-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/react-inputs": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/react-inputs": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"css-loader": "^1.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
@ -59,7 +59,7 @@
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/test-tools": "^0.2.3074",
"@fluidframework/test-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/test-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@rushstack/eslint-config": "^2.5.1",
"@types/expect-puppeteer": "2.2.1",
"@types/jest": "22.2.3",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/contact-collection",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Example of using a Fluid Object as a collection of items",
"homepage": "https://fluidframework.com",
@ -38,13 +38,13 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/example-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"css-loader": "^1.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/data-object-grid",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Data object grid creates child data objects from a registry and lays them out in a grid.",
"homepage": "https://fluidframework.com",
@ -41,22 +41,22 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/clicker": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/codemirror": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/collaborative-textarea": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/multiview-coordinate-model": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/multiview-slider-coordinate-view": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/prosemirror": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/clicker": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-example/codemirror": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-example/collaborative-textarea": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-example/multiview-coordinate-model": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-example/multiview-slider-coordinate-view": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-example/prosemirror": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-adapters": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/view-adapters": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"office-ui-fabric-react": "^7.189.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/odspsnapshotfetch-perftestapp",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Simple markdown editor",
"homepage": "https://fluidframework.com",
@ -33,12 +33,12 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-tools/fluidapp-odsp-urlresolver": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/fluidapp-odsp-urlresolver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/odsp-doclib-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/odsp-driver": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/odsp-driver-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/telemetry-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/odsp-doclib-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/odsp-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/odsp-driver-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/telemetry-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"express": "^4.16.3",
"nconf": "^0.12.0",
"webpack-dev-server": "~4.6.0"

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/view-framework-sampler",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Example of integrating a Fluid data object with a variety of view frameworks.",
"homepage": "https://fluidframework.com",
@ -39,12 +39,12 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/example-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"css-loader": "^1.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/canvas",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Fluid ink canvas",
"homepage": "https://fluidframework.com",
@ -43,15 +43,15 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/example-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/ink": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/ink": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"react": "^17.0.1"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/test-tools": "^0.2.3074",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/clicker",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Minimal Fluid component sample to implement a collaborative counter.",
"homepage": "https://fluidframework.com",
@ -43,21 +43,21 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/example-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/counter": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/task-manager": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/counter": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/task-manager": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"react": "^17.0.1"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/test-tools": "^0.2.3074",
"@fluidframework/test-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/test-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@rushstack/eslint-config": "^2.5.1",
"@types/expect-puppeteer": "2.2.1",
"@types/jest": "22.2.3",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/codemirror",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Simple markdown editor",
"homepage": "https://fluidframework.com",
@ -41,26 +41,26 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-adapters": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/view-adapters": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@types/codemirror": "0.0.76",
"codemirror": "^5.48.4"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@rushstack/eslint-config": "^2.5.1",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/diceroller",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Minimal Fluid Container & Object sample to implement a collaborative dice roller.",
"homepage": "https://fluidframework.com",
@ -43,15 +43,15 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/example-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/map": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"react": "^17.0.1"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/test-tools": "^0.2.3074",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/monaco",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Monaco code editor",
"homepage": "https://fluidframework.com",
@ -41,19 +41,19 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/example-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@types/node": "^14.18.0",
"monaco-editor": "^0.30.0",
"react": "^17.0.1"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@rushstack/eslint-config": "^2.5.1",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/multiview-constellation-model",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Constellation model for multiview sample",
"homepage": "https://fluidframework.com",
@ -42,15 +42,15 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/multiview-coordinate-model": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-example/multiview-coordinate-model": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0"
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/test-tools": "^0.2.3074",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/multiview-constellation-view",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "View for multiview sample",
"homepage": "https://fluidframework.com",
@ -43,12 +43,12 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/multiview-slider-coordinate-view": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-example/multiview-slider-coordinate-view": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"react": "^17.0.1"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/test-tools": "^0.2.3074",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/multiview-container",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Container for multiview sample",
"homepage": "https://fluidframework.com",
@ -43,23 +43,23 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/multiview-constellation-model": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/multiview-constellation-view": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/multiview-coordinate-model": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/multiview-plot-coordinate-view": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/multiview-slider-coordinate-view": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/multiview-triangle-view": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-adapters": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/multiview-constellation-model": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-example/multiview-constellation-view": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-example/multiview-coordinate-model": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-example/multiview-plot-coordinate-view": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-example/multiview-slider-coordinate-view": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-example/multiview-triangle-view": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/view-adapters": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"react": "^17.0.1"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/test-tools": "^0.2.3074",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/multiview-coordinate-model",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Coordinate model for multiview sample",
"homepage": "https://fluidframework.com",
@ -42,13 +42,13 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/map": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0"
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/test-tools": "^0.2.3074",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/multiview-coordinate-interface",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Interface for multiview sample",
"homepage": "https://fluidframework.com",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/multiview-plot-coordinate-view",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "View for multiview sample",
"homepage": "https://fluidframework.com",
@ -43,11 +43,11 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"react": "^17.0.1"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/test-tools": "^0.2.3074",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/multiview-slider-coordinate-view",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "View for multiview sample",
"homepage": "https://fluidframework.com",
@ -43,11 +43,11 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"react": "^17.0.1"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/test-tools": "^0.2.3074",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/multiview-triangle-view",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "View for multiview sample",
"homepage": "https://fluidframework.com",
@ -43,11 +43,11 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/multiview-coordinate-interface": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"react": "^17.0.1"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/test-tools": "^0.2.3074",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/presence-tracker",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Example Data Object that tracks page focus for Audience members using signals.",
"homepage": "https://fluidframework.com",
@ -38,11 +38,11 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-experimental/data-objects": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/data-objects": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/tinylicious-client": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"fluid-framework": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0"
"@fluidframework/tinylicious-client": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"fluid-framework": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0"
},
"devDependencies": {
"@fluid-tools/build-cli": "^0.7.0",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/prosemirror",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "ProseMirror",
"homepage": "https://fluidframework.com",
@ -41,22 +41,22 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-adapters": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/view-adapters": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"orderedmap": "^2.1.0",
"prosemirror-example-setup": "^1.2.1",
"prosemirror-history": "^1.3.0",
@ -69,7 +69,7 @@
"prosemirror-view": "^1.28.3"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@rushstack/eslint-config": "^2.5.1",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/shared-text",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Shared text",
"homepage": "https://fluidframework.com",
@ -43,30 +43,30 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/example-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/request-handler": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/undo-redo": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/undo-redo": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"bootstrap": "^3.3.7",
"debug": "^4.1.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/test-tools": "^0.2.3074",
"@rushstack/eslint-config": "^2.5.1",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/smde",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Simple markdown editor",
"homepage": "https://fluidframework.com",
@ -40,25 +40,25 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"marked": "^2.0.3",
"simplemde": "^1.11.2"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@rushstack/eslint-config": "^2.5.1",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/table-document",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "Chaincode component containing a table's data",
"homepage": "https://fluidframework.com",
"repository": {
@ -53,28 +53,28 @@
"temp-directory": "nyc/.nyc_output"
},
"dependencies": {
"@fluid-experimental/sequence-deprecated": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/sequence-deprecated": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/request-handler": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"debug": "^4.1.1"
},
"devDependencies": {
"@fluid-tools/build-cli": "^0.7.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/test-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/test-version-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/test-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/test-version-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@rushstack/eslint-config": "^2.5.1",
"@types/debug": "^4.1.5",
"@types/mocha": "^9.1.1",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/table-view",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Chaincode component that provides a view for a table-document.",
"homepage": "https://fluidframework.com",
@ -44,23 +44,23 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/example-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/table-document": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-example/table-document": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/matrix": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/matrix": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@tiny-calc/micro": "0.0.0-alpha.5",
"react": "^17.0.1",
"source-map-loader": "^2.0.0",
"url-loader": "^2.1.0"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@rushstack/eslint-config": "^2.5.1",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/task-selection",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Example demonstrating selecting a unique task amongst connected Fluid clients",
"homepage": "https://fluidframework.com",
@ -39,17 +39,17 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/example-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/oldest-client-observer": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/oldest-client-observer": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/task-manager": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/task-manager": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"css-loader": "^1.0.0",
"style-loader": "^1.0.0"
},

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/todo",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Simple todo canvas.",
"homepage": "https://fluidframework.com",
@ -43,24 +43,24 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-experimental/react-inputs": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-adapters": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/react-inputs": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/view-adapters": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"uuid": "^8.3.1"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/test-tools": "^0.2.3074",
"@fluidframework/test-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/test-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@rushstack/eslint-config": "^2.5.1",
"@types/expect-puppeteer": "2.2.1",
"@types/jest": "22.2.3",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/webflow",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Collaborative markdown editor.",
"homepage": "https://fluidframework.com",
@ -75,29 +75,29 @@
"temp-directory": "nyc/.nyc_output"
},
"dependencies": {
"@fluid-example/example-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/data-object-base": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/data-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"debug": "^4.1.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/test-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/test-version-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/test-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/test-version-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@rushstack/eslint-config": "^2.5.1",
"@types/debug": "^4.1.5",
"@types/mocha": "^9.1.1",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/app-integration-container-views",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Minimal Fluid Container & data store sample to implement a collaborative dice roller as a standalone app.",
"homepage": "https://fluidframework.com",
@ -38,17 +38,17 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/example-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-adapters": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/view-adapters": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/app-integration-external-data",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Integrating an external data source with Fluid data.",
"homepage": "https://fluidframework.com",
@ -49,28 +49,28 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/example-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/quorum": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/react-inputs": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/cell": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/quorum": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/react-inputs": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/cell": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/driver-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/driver-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/register-collection": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/task-manager": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/telemetry-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/driver-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/driver-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/register-collection": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/task-manager": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/telemetry-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"cors": "^2.8.4",
"css-loader": "^1.0.0",
"express": "^4.16.3",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/app-integration-external-views",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Minimal Fluid Container & Data Object sample to implement a collaborative dice roller as a standalone app.",
"homepage": "https://fluidframework.com",
@ -39,12 +39,12 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/example-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"css-loader": "^1.0.0",
"style-loader": "^1.0.0"
},

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/app-integration-schema-upgrade",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Using external data to initialize the container state and serialize out afterwards.",
"homepage": "https://fluidframework.com",
@ -39,28 +39,28 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/example-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/quorum": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/react-inputs": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/cell": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/quorum": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/react-inputs": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/cell": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/driver-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/driver-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/register-collection": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/task-manager": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/telemetry-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/driver-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/driver-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/register-collection": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/task-manager": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/telemetry-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"css-loader": "^1.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-internal/hosts-sample",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Sample Fluid container host",
"homepage": "https://fluidframework.com",
@ -31,17 +31,17 @@
"webpack": "webpack --config webpack.config.js"
},
"dependencies": {
"@fluid-example/example-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/driver-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/driver-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/web-code-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/web-code-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"react": "^17.0.1",
"semver": "^7.3.4"
},

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/bundle-size-tests",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "A package for understanding the bundle size of Fluid Framework",
"homepage": "https://fluidframework.com",
@ -29,13 +29,13 @@
"webpack:profile": "npm run webpack"
},
"dependencies": {
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/matrix": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/odsp-driver": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/matrix": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/odsp-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"source-map-loader": "^2.0.0"
},
"devDependencies": {

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/example-utils",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Shared utilities used by examples.",
"homepage": "https://fluidframework.com",
@ -34,26 +34,26 @@
"tsc": "tsc"
},
"dependencies": {
"@fluid-experimental/quorum": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/quorum": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/driver-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/driver-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/local-driver": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/register-collection": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/server-local-server": "^0.1038.2000",
"@fluidframework/task-manager": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-adapters": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/driver-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/driver-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/local-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/register-collection": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/server-local-server": "^0.1038.2000-98212",
"@fluidframework/task-manager": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/view-adapters": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"uuid": "^8.3.1"
},
"devDependencies": {

Просмотреть файл

@ -34,7 +34,7 @@ export abstract class ModelContainerRuntimeFactory<ModelType> implements IRuntim
public async instantiateRuntime(
context: IContainerContext,
existing?: boolean,
existing: boolean,
): Promise<IRuntime> {
const fromExisting = existing ?? context.existing ?? false;
const runtime = await ContainerRuntime.load(

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-experimental/partial-checkout",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "A sample using property-dds and property-binder to create a reactive application.",
"homepage": "https://fluidframework.com",
"repository": {
@ -38,38 +38,38 @@
"webpack": "webpack --color --no-stats"
},
"dependencies": {
"@fluid-example/example-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-binder": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-changeset": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-common": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-dds": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-inspector-table": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-properties": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-proxy": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/schemas": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-binder": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-changeset": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-common": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-dds": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-inspector-table": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-properties": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-proxy": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/schemas": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/data-object-base": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/driver-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/driver-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/data-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/driver-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/driver-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/request-handler": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/shared-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@types/uuid": "^8.3.0",
"events": "^3.1.0",
"jsonwebtoken": "^8.4.0",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-experimental/property-inspector",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "TreeTable representation for property-dds which allow browsing, editing and searching.",
"homepage": "https://fluidframework.com",
"repository": {
@ -38,36 +38,36 @@
"webpack": "webpack --color --no-stats"
},
"dependencies": {
"@fluid-example/example-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-binder": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-changeset": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-common": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-dds": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-inspector-table": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-properties": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-proxy": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/schemas": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-binder": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-changeset": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-common": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-dds": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-inspector-table": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-properties": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-proxy": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/schemas": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/data-object-base": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/data-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/request-handler": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/shared-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@hig/fonts": "^1.0.2",
"@material-ui/core": "4.12.4",
"@material-ui/lab": "4.0.0-alpha.61",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-experimental/schemas",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "Centralized package for storing schemas used by the samples.",
"homepage": "https://fluidframework.com",
"repository": {

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-experimental/property-binder",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "Data Binder for Fluid PropertyDDS",
"keywords": [],
"homepage": "https://fluidframework.com",
@ -68,9 +68,9 @@
},
"dependencies": {
"@babel/runtime": "^7.13.7",
"@fluid-experimental/property-changeset": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-dds": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-properties": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-changeset": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-dds": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-properties": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
@ -80,8 +80,8 @@
"@babel/preset-env": "^7.2.0",
"@fluid-experimental/property-binder-previous": "npm:@fluid-experimental/property-binder@2.0.0-internal.2.1.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/test-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/test-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@rushstack/eslint-config": "^2.5.1",
"@types/jest": "22.2.3",
"async": "^3.2.2",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-experimental/property-changeset",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "property changeset definitions and related functionalities",
"homepage": "https://fluidframework.com",
"repository": {
@ -62,7 +62,7 @@
"temp-directory": "nyc/.nyc_output"
},
"dependencies": {
"@fluid-experimental/property-common": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-common": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"ajv": "7.1.1",
"ajv-keywords": "4.0.0",
"async": "^3.2.2",
@ -74,7 +74,7 @@
"devDependencies": {
"@fluid-experimental/property-changeset-previous": "npm:@fluid-experimental/property-changeset@2.0.0-internal.2.1.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@rushstack/eslint-config": "^2.5.1",
"@types/lodash": "^4.14.118",
"@types/mocha": "^9.1.1",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-experimental/property-common",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "common functions used in properties",
"homepage": "https://fluidframework.com",
"repository": {
@ -72,7 +72,7 @@
"@fluid-experimental/property-common-previous": "npm:@fluid-experimental/property-common@2.0.0-internal.2.1.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@microsoft/api-extractor": "^7.22.2",
"@rushstack/eslint-config": "^2.5.1",
"@types/debug": "^4.1.5",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-internal/platform-dependent",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Helper package that separates code for browser and server.",
"homepage": "https://fluidframework.com",

Просмотреть файл

@ -6,4 +6,4 @@
*/
export const pkgName = "@fluid-experimental/property-common";
export const pkgVersion = "2.0.0-internal.2.3.0";
export const pkgVersion = "2.0.0-internal.3.0.0";

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-experimental/property-dds",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "definition of the property distributed data store",
"homepage": "https://fluidframework.com",
"repository": {
@ -38,16 +38,16 @@
"tsc": "tsc"
},
"dependencies": {
"@fluid-experimental/property-changeset": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-properties": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-changeset": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-properties": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/shared-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"axios": "^0.26.0",
"fastest-json-copy": "^1.0.1",
"lodash": "^4.17.21",
@ -57,17 +57,16 @@
"uuid": "^8.3.1"
},
"devDependencies": {
"@fluid-experimental/property-common": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-dds-previous": "npm:@fluid-experimental/property-dds@2.0.0-internal.2.1.0",
"@fluid-experimental/property-common": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/driver-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/driver-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/local-driver": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/server-local-server": "^0.1038.2000",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/test-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/local-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/server-local-server": "^0.1038.2000-98212",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/test-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@microsoft/api-extractor": "^7.22.2",
"@rushstack/eslint-config": "^2.5.1",
"@types/mocha": "^9.1.1",

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-experimental/property-inspector-table",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "Property Inspector Table component",
"homepage": "https://fluidframework.com",
"repository": {
@ -55,13 +55,12 @@
"react-virtualized-auto-sizer": "^1.0.6"
},
"devDependencies": {
"@fluid-experimental/property-binder": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-changeset": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-dds": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-inspector-table-previous": "npm:@fluid-experimental/property-inspector-table@2.0.0-internal.2.1.0",
"@fluid-experimental/property-properties": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-proxy": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-binder": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-changeset": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-dds": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-properties": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-proxy": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@rushstack/eslint-config": "^2.5.1",
"@storybook/addon-actions": "^6.4.22",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-experimental/property-properties",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "definitions of properties",
"homepage": "https://fluidframework.com",
"repository": {
@ -62,8 +62,8 @@
"temp-directory": "nyc/.nyc_output"
},
"dependencies": {
"@fluid-experimental/property-changeset": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-common": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-changeset": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-common": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"ajv": "7.1.1",
"async": "^3.2.2",
"fastest-json-copy": "^1.0.1",
@ -74,7 +74,7 @@
},
"devDependencies": {
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@types/mocha": "^9.1.1",
"chai": "^4.2.0",
"concurrently": "^6.2.0",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-experimental/property-proxy",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "Proxify PropertyTree to interact with them in a JavaScript like manner",
"homepage": "https://fluidframework.com",
"repository": {
@ -39,8 +39,8 @@
"tsc": "tsc"
},
"dependencies": {
"@fluid-experimental/property-changeset": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-properties": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0"
"@fluid-experimental/property-changeset": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-properties": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
@ -75,4 +75,4 @@
"baselineVersion": "2.0.0-internal.2.1.0",
"broken": {}
}
}
}

Просмотреть файл

@ -6,4 +6,4 @@
*/
export const pkgName = "@fluid-experimental/property-proxy";
export const pkgVersion = "2.0.0-internal.2.3.0";
export const pkgVersion = "2.0.0-internal.3.0.0";

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-experimental/property-query",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "QueryService implementation",
"homepage": "https://fluidframework.com",
"repository": {
@ -21,8 +21,8 @@
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha"
},
"dependencies": {
"@fluid-experimental/property-changeset": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-common": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-changeset": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-common": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"ajv": "7.1.1",
"async": "^3.2.2",
"http-status": "1.3.2",
@ -35,9 +35,8 @@
"traverse": "0.6.6"
},
"devDependencies": {
"@fluid-experimental/property-properties": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-query-previous": "npm:@fluid-experimental/property-query@2.0.0-internal.2.1.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-properties": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"mocha": "^10.0.0",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-experimental/property-query-service",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Moira service",
"homepage": "https://fluidframework.com",
@ -42,10 +42,10 @@
"tempDirectory": "coverage/tmp"
},
"dependencies": {
"@fluid-experimental/property-changeset": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-common": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-properties": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-query": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-changeset": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-common": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-properties": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/property-query": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"async": "^3.2.2",
"basicauth-middleware": "2.0.0",
"body-parser": "^1.18.3",
@ -68,13 +68,13 @@
"sleep-promise": "8.0.1"
},
"devDependencies": {
"@fluid-experimental/property-dds": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-dds": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/local-driver": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/server-local-server": "^0.1038.2000",
"@fluidframework/test-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/local-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/server-local-server": "^0.1038.2000-98212",
"@fluidframework/test-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@rushstack/eslint-config": "^2.5.1",
"aws-sdk": "2.547.0",
"chai": "^4.2.0",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-experimental/ot",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "Distributed data structure for hosting ottypes",
"homepage": "https://fluidframework.com",
"repository": {
@ -61,18 +61,18 @@
},
"dependencies": {
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0"
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/shared-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0"
},
"devDependencies": {
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@microsoft/api-extractor": "^7.22.2",
"@rushstack/eslint-config": "^2.5.1",
"@types/mocha": "^9.1.1",

Просмотреть файл

@ -6,4 +6,4 @@
*/
export const pkgName = "@fluid-experimental/ot";
export const pkgVersion = "2.0.0-internal.2.3.0";
export const pkgVersion = "2.0.0-internal.3.0.0";

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-experimental/sharejs-json1",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "Distributed data structure for hosting ottypes",
"homepage": "https://fluidframework.com",
"repository": {
@ -61,20 +61,20 @@
"temp-directory": "nyc/.nyc_output"
},
"dependencies": {
"@fluid-experimental/ot": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/ot": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/shared-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"ot-json1": "^1.0.1"
},
"devDependencies": {
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@microsoft/api-extractor": "^7.22.2",
"@rushstack/eslint-config": "^2.5.1",
"@types/mocha": "^9.1.1",

Просмотреть файл

@ -6,4 +6,4 @@
*/
export const pkgName = "@fluid-experimental/sharejs-json1";
export const pkgVersion = "2.0.0-internal.2.3.0";
export const pkgVersion = "2.0.0-internal.3.0.0";

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-experimental/sequence-deprecated",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "Deprecated distributed sequences",
"homepage": "https://fluidframework.com",
"repository": {
@ -63,20 +63,20 @@
},
"dependencies": {
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0"
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/shared-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0"
},
"devDependencies": {
"@fluid-experimental/sequence-deprecated-previous": "npm:@fluid-experimental/sequence-deprecated@2.0.0-internal.2.0.0",
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/build-tools": "^0.7.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@microsoft/api-extractor": "^7.22.2",
"@rushstack/eslint-config": "^2.5.1",
"@types/diff": "^3.5.1",
@ -95,7 +95,7 @@
},
"typeValidation": {
"disabled": true,
"version": "2.0.0-internal.2.1.0",
"version": "2.0.0-internal.3.0.0",
"broken": {}
}
}

Просмотреть файл

@ -6,4 +6,4 @@
*/
export const pkgName = "@fluid-experimental/sequence-deprecated";
export const pkgVersion = "2.0.0-internal.2.3.0";
export const pkgVersion = "2.0.0-internal.3.0.0";

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-experimental/tree-graphql",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "Prototype using GraphQL to access a distributed tree",
"homepage": "https://fluidframework.com",
"repository": {
@ -37,7 +37,7 @@
"tsc": "tsc"
},
"dependencies": {
"@fluid-experimental/tree": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-utils": "^1.0.0",
"@graphql-codegen/plugin-helpers": "^1.18.2",
"@graphql-codegen/visitor-plugin-common": "^1.18.2",
@ -47,8 +47,8 @@
"devDependencies": {
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@graphql-codegen/cli": "1.20.1",
"@graphql-codegen/typescript": "1.20.2",
"@microsoft/api-extractor": "^7.22.2",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-experimental/tree",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "Distributed tree",
"homepage": "https://fluidframework.com",
"repository": {
@ -43,13 +43,13 @@
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/telemetry-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/shared-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/telemetry-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"buffer": "^6.0.3",
"denque": "^1.5.1",
"lru-cache": "^6.0.0",
@ -57,19 +57,19 @@
"uuid": "^8.3.1"
},
"devDependencies": {
"@fluid-internal/stochastic-test-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-internal/stochastic-test-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-tools/benchmark": "^0.45.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/container-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/test-driver-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/test-drivers": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/test-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/undo-redo": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/test-driver-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/test-drivers": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/test-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/undo-redo": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@microsoft/api-extractor": "^7.22.2",
"@rushstack/eslint-config": "^2.5.1",
"@types/lru-cache": "^5.1.0",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/bubblebench-baseline",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Bubblemark inspired DDS benchmark",
"homepage": "https://fluidframework.com",
@ -43,18 +43,18 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/bubblebench-common": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/bubblebench-common": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"react": "^17.0.1"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/test-tools": "^0.2.3074",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/bubblebench-common",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Bubblemark inspired DDS benchmark",
"homepage": "https://fluidframework.com",
@ -55,13 +55,13 @@
"temp-directory": "nyc/.nyc_output"
},
"dependencies": {
"@fluid-experimental/tree": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"best-random": "^1.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
@ -71,7 +71,7 @@
"@fluid-tools/build-cli": "^0.7.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/test-tools": "^0.2.3074",
"@rushstack/eslint-config": "^2.5.1",
"@types/mocha": "^9.1.1",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/bubblebench-ot",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Bubblemark inspired DDS benchmark",
"homepage": "https://fluidframework.com",
@ -43,20 +43,20 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/bubblebench-common": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/sharejs-json1": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/bubblebench-common": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/sharejs-json1": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"ot-json1": "^1.0.1",
"react": "^17.0.1"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/test-tools": "^0.2.3074",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-example/bubblebench-sharedtree",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"private": true,
"description": "Bubblemark inspired DDS benchmark",
"homepage": "https://fluidframework.com",
@ -43,19 +43,19 @@
"webpack:dev": "webpack --env development"
},
"dependencies": {
"@fluid-example/bubblebench-common": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/tree": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-example/bubblebench-common": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-example/example-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluid-experimental/tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"react": "^17.0.1"
},
"devDependencies": {
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/webpack-fluid-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/test-tools": "^0.2.3074",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-experimental/data-objects",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "A collection of ready to use Fluid Data Objects",
"homepage": "https://fluidframework.com",
"repository": {
@ -32,12 +32,12 @@
"tsc": "tsc"
},
"dependencies": {
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/map": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"events": "^3.1.0"
},
"devDependencies": {

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-experimental/get-container",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "Tool for getting a container for testing app scenarios",
"homepage": "https://fluidframework.com",
"repository": {
@ -31,17 +31,17 @@
"tsc": "tsc"
},
"dependencies": {
"@fluidframework/container-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/driver-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/driver-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/local-driver": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/driver-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/driver-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/local-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/server-local-server": "^0.1038.2000",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/server-local-server": "^0.1038.2000-98212",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/tinylicious-driver": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"jsonwebtoken": "^8.4.0"
},
"devDependencies": {

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-experimental/last-edited",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "Tracks the last edited information in the Container.",
"homepage": "https://fluidframework.com",
"repository": {
@ -55,20 +55,20 @@
"temp-directory": "nyc/.nyc_output"
},
"dependencies": {
"@fluidframework/aqueduct": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/aqueduct": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-runtime": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/shared-summary-block": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0"
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/shared-summary-block": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0"
},
"devDependencies": {
"@fluid-tools/build-cli": "^0.7.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@microsoft/api-extractor": "^7.22.2",
"@rushstack/eslint-config": "^2.5.1",
"@types/mocha": "^9.1.1",

Просмотреть файл

@ -6,4 +6,4 @@
*/
export const pkgName = "@fluid-experimental/last-edited";
export const pkgVersion = "2.0.0-internal.2.3.0";
export const pkgVersion = "2.0.0-internal.3.0.0";

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluid-experimental/react-inputs",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "React support for the Aqueduct framework.",
"homepage": "https://fluidframework.com",
"repository": {
@ -33,11 +33,11 @@
"tsc": "tsc"
},
"dependencies": {
"@fluidframework/cell": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/cell": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/merge-tree": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/sequence": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"react": "^17.0.1"
},
"devDependencies": {

274
lerna-package-lock.json сгенерированный
Просмотреть файл

@ -2477,49 +2477,6 @@
"uuid": "^8.3.1"
}
},
"@fluid-experimental/property-dds-previous": {
"version": "npm:@fluid-experimental/property-dds@2.0.0-internal.2.1.0",
"resolved": "https://registry.npmjs.org/@fluid-experimental/property-dds/-/property-dds-2.0.0-internal.2.1.0.tgz",
"integrity": "sha512-uwwAqIuB669T711A8tDGqtafHOhvKfpeh8xRn/nt7qQ7rLjLg7nzYrN2jhUNG44wpkH6xLsNUv8XHO8dLwNbRg==",
"requires": {
"@fluid-experimental/property-changeset": ">=2.0.0-internal.2.1.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-properties": ">=2.0.0-internal.2.1.0 <2.0.0-internal.3.0.0",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.1.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.1.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.1.0 <2.0.0-internal.3.0.0",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.1.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.1.0 <2.0.0-internal.3.0.0",
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.1.0 <2.0.0-internal.3.0.0",
"axios": "^0.26.0",
"fastest-json-copy": "^1.0.1",
"lodash": "^4.17.21",
"lz4js": "^0.2.0",
"msgpackr": "^1.4.7",
"pako": "^2.0.4",
"uuid": "^8.3.1"
}
},
"@fluid-experimental/property-inspector-table-previous": {
"version": "npm:@fluid-experimental/property-inspector-table@2.0.0-internal.2.1.0",
"resolved": "https://registry.npmjs.org/@fluid-experimental/property-inspector-table/-/property-inspector-table-2.0.0-internal.2.1.0.tgz",
"integrity": "sha512-t19bc4V26KmcseFp8SsJkwVD3LNRu3wK7xLyLM1PhjFg0Bg13Xl104Rz1U+oWrtV+Ic49YgxcyHc8pDJH5y8rg==",
"requires": {
"@hig/fonts": "^1.0.2",
"@material-ui/core": "4.12.4",
"@material-ui/lab": "4.0.0-alpha.61",
"@material-ui/styles": "4.11.5",
"base64-js": "1.3.0",
"classnames": "^2.3.1",
"lodash.debounce": "^4.0.8",
"memoize-one": "^5.0.0",
"react-base-table": "1.13.2",
"react-loading-skeleton": "^3.1.0",
"react-select": "^2.4.3",
"react-virtualized-auto-sizer": "^1.0.6"
}
},
"@fluid-experimental/property-properties": {
"version": "2.0.0-internal.2.2.1",
"resolved": "https://registry.npmjs.org/@fluid-experimental/property-properties/-/property-properties-2.0.0-internal.2.2.1.tgz",
@ -2545,25 +2502,6 @@
"@fluid-experimental/property-properties": ">=2.0.0-internal.2.1.0 <2.0.0-internal.3.0.0"
}
},
"@fluid-experimental/property-query-previous": {
"version": "npm:@fluid-experimental/property-query@2.0.0-internal.2.1.0",
"resolved": "https://registry.npmjs.org/@fluid-experimental/property-query/-/property-query-2.0.0-internal.2.1.0.tgz",
"integrity": "sha512-Ddz4tn/H43ARlWnyNi9eYb0rBdtg59tW3jXo3a/lbK8dYgxQgjq2UX0f/XDDkxXITsSdG46ZN0b2Bd3YChbf5A==",
"requires": {
"@fluid-experimental/property-changeset": ">=2.0.0-internal.2.1.0 <2.0.0-internal.3.0.0",
"@fluid-experimental/property-common": ">=2.0.0-internal.2.1.0 <2.0.0-internal.3.0.0",
"ajv": "7.1.1",
"async": "^3.2.0",
"http-status": "1.3.2",
"http-status-codes": "1.3.0",
"joi": "14.3.1",
"lodash": "^4.17.21",
"long": "^4.0.0",
"lru-cache": "^6.0.0",
"semver": "^7.3.4",
"traverse": "0.6.6"
}
},
"@fluid-experimental/sequence-deprecated": {
"version": "2.0.0-internal.2.2.1",
"resolved": "https://registry.npmjs.org/@fluid-experimental/sequence-deprecated/-/sequence-deprecated-2.0.0-internal.2.2.1.tgz",
@ -2590,20 +2528,20 @@
}
},
"@fluid-experimental/task-manager-previous": {
"version": "npm:@fluid-experimental/task-manager@2.0.0-internal.2.1.0",
"resolved": "https://registry.npmjs.org/@fluid-experimental/task-manager/-/task-manager-2.0.0-internal.2.1.0.tgz",
"integrity": "sha512-cBlR9htG2w9xz7ujfbs5tWTLOGBY07bWzNLVhxpdq0ZSMC6GHnBSO+g2lmGaQAgLxkA6awNsFq8omDDyMkhGMg==",
"version": "npm:@fluid-experimental/task-manager@2.0.0-internal.2.1.1",
"resolved": "https://registry.npmjs.org/@fluid-experimental/task-manager/-/task-manager-2.0.0-internal.2.1.1.tgz",
"integrity": "sha512-7oRVdnok0F5ijo2DftLzae68KsFT3KlyhSKgfjwBlV5T14TqdkJTUXSDbmMtGPOy7MiHqlPmlHaNLQip0jtVSw==",
"requires": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.1.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.1.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.1.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.1.0 <2.0.0-internal.3.0.0",
"@fluidframework/driver-utils": ">=2.0.0-internal.2.1.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/driver-utils": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.1.0 <2.0.0-internal.3.0.0",
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.1.0 <2.0.0-internal.3.0.0"
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0"
}
},
"@fluid-tools/benchmark": {
@ -2712,15 +2650,15 @@
}
},
"@fluid-tools/fluidapp-odsp-urlresolver-previous": {
"version": "npm:@fluid-tools/fluidapp-odsp-urlresolver@2.0.0-internal.2.2.0",
"resolved": "https://registry.npmjs.org/@fluid-tools/fluidapp-odsp-urlresolver/-/fluidapp-odsp-urlresolver-2.0.0-internal.2.2.0.tgz",
"integrity": "sha512-+3jP5hGxHlMsoI0Be0JGW1PZBMeb9tvxImMTDCotYQujPkBEEkrg/XSr8hIbBG3+Dc++UUyNquNJNS2kmXZ0TA==",
"version": "npm:@fluid-tools/fluidapp-odsp-urlresolver@2.0.0-internal.2.1.1",
"resolved": "https://registry.npmjs.org/@fluid-tools/fluidapp-odsp-urlresolver/-/fluidapp-odsp-urlresolver-2.0.0-internal.2.1.1.tgz",
"integrity": "sha512-ydY6VjoGdxEjJEgqI/Eg+BvaXUFkqOA4nQ0rk8wTHqobDskM8PFkJY/e1XRAjrIr/VC2O0n6I8QT7ryobhRw9A==",
"requires": {
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/driver-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/odsp-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/odsp-driver-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0"
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/driver-definitions": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/odsp-driver": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/odsp-driver-definitions": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0"
}
},
"@fluid-tools/version-tools": {
@ -2800,55 +2738,91 @@
}
},
"@fluid-tools/webpack-fluid-loader-previous": {
"version": "npm:@fluid-tools/webpack-fluid-loader@2.0.0-internal.2.2.0",
"resolved": "https://registry.npmjs.org/@fluid-tools/webpack-fluid-loader/-/webpack-fluid-loader-2.0.0-internal.2.2.0.tgz",
"integrity": "sha512-8qXfA+nGBqZ+BAxTC10jpoBfhBPhM5uiirwmqU3t+iNWzH8/x1/q9gULem1OcZ/NGfETjCYG6GXSSw8/jb9KeA==",
"version": "npm:@fluid-tools/webpack-fluid-loader@2.0.0-internal.2.1.1",
"resolved": "https://registry.npmjs.org/@fluid-tools/webpack-fluid-loader/-/webpack-fluid-loader-2.0.0-internal.2.1.1.tgz",
"integrity": "sha512-G1nq2ATaKTV0K+oEEBXUTbZLNU1EZ9ylqfKSB4j6FUWpV0Uj1Q04DNhnqiGhDj6rN/Hsu641UjYUY0rnv+87UQ==",
"requires": {
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/driver-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/driver-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/local-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/odsp-doclib-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/odsp-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/odsp-driver-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/driver-definitions": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/driver-utils": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/local-driver": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/odsp-doclib-utils": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/odsp-driver": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/odsp-driver-definitions": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/server-local-server": "^0.1038.2000",
"@fluidframework/server-services-client": "^0.1038.2000",
"@fluidframework/telemetry-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/tool-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-adapters": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/web-code-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/telemetry-utils": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/tool-utils": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/view-adapters": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/web-code-loader": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"axios": "^0.26.0",
"buffer": "^6.0.3",
"express": "^4.16.3",
"nconf": "^0.12.0",
"nconf": "^0.11.4",
"sillyname": "^0.1.0",
"uuid": "^8.3.1",
"webpack-dev-server": "~4.6.0"
},
"dependencies": {
"async": {
"version": "1.5.2",
"resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
"integrity": "sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w=="
},
"ini": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz",
"integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA=="
},
"nconf": {
"version": "0.11.4",
"resolved": "https://registry.npmjs.org/nconf/-/nconf-0.11.4.tgz",
"integrity": "sha512-YaDR846q11JnG1vTrhJ0QIlhiGY6+W1bgWtReG9SS3vkTl3AoNwFvUItdhG6/ZjGCfWpUVuRTNEBTDAQ3nWhGw==",
"requires": {
"async": "^1.4.0",
"ini": "^2.0.0",
"secure-keys": "^1.0.0",
"yargs": "^16.1.1"
}
},
"yargs": {
"version": "16.2.0",
"resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
"integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
"requires": {
"cliui": "^7.0.2",
"escalade": "^3.1.1",
"get-caller-file": "^2.0.5",
"require-directory": "^2.1.1",
"string-width": "^4.2.0",
"y18n": "^5.0.5",
"yargs-parser": "^20.2.2"
}
}
}
},
"@fluidframework/agent-scheduler-previous": {
"version": "npm:@fluidframework/agent-scheduler@2.0.0-internal.2.2.0",
"resolved": "https://registry.npmjs.org/@fluidframework/agent-scheduler/-/agent-scheduler-2.0.0-internal.2.2.0.tgz",
"integrity": "sha512-4z/LuZbszW5+muRQiwQs9OTGziy/j/KGI968JXVb1AlELmvYpsetvK855GrS8dHyvOjdK967IpQW+nhZYWp6uw==",
"version": "npm:@fluidframework/agent-scheduler@2.0.0-internal.2.1.1",
"resolved": "https://registry.npmjs.org/@fluidframework/agent-scheduler/-/agent-scheduler-2.0.0-internal.2.1.1.tgz",
"integrity": "sha512-m1t00P4fDpMB7e3zVdjBO0G+TQ2EKAHuiBgNR4+dGr+Sx7Vs2/uc6A5LBeIGtDVRaxqs8LbCfWTaCgQPhXeeGg==",
"requires": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/register-collection": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/datastore": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/register-collection": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"uuid": "^8.3.1"
}
},
@ -2876,25 +2850,25 @@
}
},
"@fluidframework/aqueduct-previous": {
"version": "npm:@fluidframework/aqueduct@2.0.0-internal.2.2.0",
"resolved": "https://registry.npmjs.org/@fluidframework/aqueduct/-/aqueduct-2.0.0-internal.2.2.0.tgz",
"integrity": "sha512-PAEnL928V5eJH3Z8A2GBMRe5OMQ4gYmlBxJvL5NBX7xKoyEmFPvfMQi8qfGYWQAQRKJN3+r+U+z2QUlQGHkHPA==",
"version": "npm:@fluidframework/aqueduct@2.0.0-internal.2.1.1",
"resolved": "https://registry.npmjs.org/@fluidframework/aqueduct/-/aqueduct-2.0.0-internal.2.1.1.tgz",
"integrity": "sha512-FRJnHhS+AQlx3l6C4w6ReCyiQKfJTimplFXkM/3nC6VWzMDq1PkIKmJF+BiEFtCf5JqEElRgQUd663u55eNkvA==",
"requires": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/synthesize": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/container-loader": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/datastore": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/map": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/request-handler": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/synthesize": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/view-interfaces": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"uuid": "^8.3.1"
}
},
@ -3599,21 +3573,6 @@
"resolved": "https://registry.npmjs.org/@fluidframework/gitresources/-/gitresources-0.1038.2000.tgz",
"integrity": "sha512-cbxiG5ygZtGHHXqvkaeGzPbE6fKZcuCo5ZgOPstpH7hvZsUdikohx9h2z0q0KwiW8oV/54S++UOaRAmKTPoh8w=="
},
"@fluidframework/iframe-driver-previous": {
"version": "npm:@fluidframework/iframe-driver@2.0.0-internal.2.2.0",
"resolved": "https://registry.npmjs.org/@fluidframework/iframe-driver/-/iframe-driver-2.0.0-internal.2.2.0.tgz",
"integrity": "sha512-wgQRjN6eLTl4gIU6kgdWeuF/Zho+OMrKCXl5WFBqy+7UJeg8IXt501Mg7FGxDJIg0fVLdXZ7i2tytHHjGL5/cQ==",
"requires": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/driver-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/driver-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/telemetry-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"comlink": "^4.3.0"
}
},
"@fluidframework/ink": {
"version": "2.0.0-internal.2.2.1",
"resolved": "https://registry.npmjs.org/@fluidframework/ink/-/ink-2.0.0-internal.2.2.1.tgz",
@ -5050,15 +5009,15 @@
}
},
"@fluidframework/tinylicious-driver-previous": {
"version": "npm:@fluidframework/tinylicious-driver@2.0.0-internal.2.2.0",
"resolved": "https://registry.npmjs.org/@fluidframework/tinylicious-driver/-/tinylicious-driver-2.0.0-internal.2.2.0.tgz",
"integrity": "sha512-CUGTvw2x8N1WQo7EdCcSgUkQnbFHEJlmVeSRVGtOVB+Fb0BiFEbLmfXJEHONXt8IKuQtfw/ZB4UHQL8EF6NoSA==",
"version": "npm:@fluidframework/tinylicious-driver@2.0.0-internal.2.1.1",
"resolved": "https://registry.npmjs.org/@fluidframework/tinylicious-driver/-/tinylicious-driver-2.0.0-internal.2.1.1.tgz",
"integrity": "sha512-BDX2wLnyn0UYc2UfzOCGBvtRfTQrVuzhdwZeE3Na5PtH3ypuyItJ21EYiUqHjEKjEV2MDDf0IFeu/FeAkMYzfQ==",
"requires": {
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/driver-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/driver-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/driver-definitions": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/driver-utils": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/routerlicious-driver": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/server-services-client": "^0.1038.2000",
"jsrsasign": "^10.5.25",
"uuid": "^8.3.1"
@ -5154,12 +5113,12 @@
}
},
"@fluidframework/web-code-loader-previous": {
"version": "npm:@fluidframework/web-code-loader@2.0.0-internal.2.2.0",
"resolved": "https://registry.npmjs.org/@fluidframework/web-code-loader/-/web-code-loader-2.0.0-internal.2.2.0.tgz",
"integrity": "sha512-mmmiCg29wlkN1NYEKYTg+zFSpyCKGS6DeL5UNwMSiJN7kjY0ypRFWTis6WG1mDOSU9qFQBT5eEj/6LA8lTyqaQ==",
"version": "npm:@fluidframework/web-code-loader@2.0.0-internal.2.1.1",
"resolved": "https://registry.npmjs.org/@fluidframework/web-code-loader/-/web-code-loader-2.0.0-internal.2.1.1.tgz",
"integrity": "sha512-I+Whj5q77X82exkZCuRABGV0emuonAn3A9TUdFRSKsWrLR6VQzw+O+ixNun7Dzu4RHEo/tvIOIgJAvBiMfIJKQ==",
"requires": {
"@fluidframework/container-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
"@fluidframework/container-definitions": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
"isomorphic-fetch": "^3.0.0"
}
},
@ -24781,11 +24740,6 @@
"delayed-stream": "~1.0.0"
}
},
"comlink": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/comlink/-/comlink-4.3.1.tgz",
"integrity": "sha512-+YbhUdNrpBZggBAHWcgQMLPLH1KDF3wJpeqrCKieWQ8RL7atmgsgTQko1XEBK6PsecfopWNntopJ+ByYG1lRaA=="
},
"comma-separated-tokens": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz",

Просмотреть файл

@ -4,5 +4,5 @@
"experimental/**",
"packages/**"
],
"version": "2.0.0-internal.2.3.0"
"version": "2.0.0-internal.3.0.0"
}

4
package-lock.json сгенерированный
Просмотреть файл

@ -14873,7 +14873,7 @@
"parse-json": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz",
"integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==",
"integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=",
"dev": true,
"requires": {
"error-ex": "^1.3.1",
@ -16368,7 +16368,7 @@
"strip-bom": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
"integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
"integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=",
"dev": true
},
"strip-bom-buf": {

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluidframework/container-definitions",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "Fluid container definitions",
"homepage": "https://fluidframework.com",
"repository": {
@ -41,8 +41,8 @@
},
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/driver-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/driver-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/protocol-definitions": "^1.1.0",
"events": "^3.1.0"
},
@ -63,8 +63,8 @@
"typescript": "~4.5.5"
},
"typeValidation": {
"version": "2.0.0-internal.2.3.0",
"baselineRange": ">=2.0.0-internal.2.2.0 <2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"baselineRange": ">=2.0.0-internal.2.0.0 <2.0.0-internal.3.0.0",
"baselineVersion": "2.0.0-internal.2.2.0",
"broken": {}
}

Просмотреть файл

@ -68,7 +68,6 @@ export interface IDeltaSender {
/**
* Events emitted by {@link IDeltaManager}.
*/
/* eslint-disable @typescript-eslint/unified-signatures */
export interface IDeltaManagerEvents extends IEvent {
/**
* @deprecated No replacement API recommended.
@ -146,7 +145,6 @@ export interface IDeltaManagerEvents extends IEvent {
*/
(event: "readonly", listener: (readonly: boolean) => void);
}
/* eslint-enable @typescript-eslint/unified-signatures */
/**
* Manages the transmission of ops between the runtime and storage.
@ -206,7 +204,6 @@ export interface IDeltaManager<T, U> extends IEventProvider<IDeltaManagerEvents>
/**
* Events emitted by {@link IDeltaQueue}.
*/
/* eslint-disable @typescript-eslint/unified-signatures */
export interface IDeltaQueueEvents<T> extends IErrorEvent {
/**
* Emitted when a task is enqueued.
@ -245,7 +242,6 @@ export interface IDeltaQueueEvents<T> extends IErrorEvent {
*/
(event: "idle", listener: (count: number, duration: number) => void);
}
/* eslint-enable @typescript-eslint/unified-signatures */
/**
* Queue of ops to be sent to or processed from storage

Просмотреть файл

@ -104,7 +104,6 @@ export interface ICodeAllowList {
/**
* Events emitted by the {@link IContainer} "upwards" to the Loader and Host.
*/
/* eslint-disable @typescript-eslint/unified-signatures */
export interface IContainerEvents extends IEvent {
/**
* Emitted when the readonly state of the container changes.
@ -238,7 +237,6 @@ export interface IContainerEvents extends IEvent {
*/
(event: "saved", listener: (dirty: boolean) => void);
}
/* eslint-enable @typescript-eslint/unified-signatures */
/**
* Namespace for the different connection states a container can be in.

Просмотреть файл

@ -203,5 +203,5 @@ export interface IRuntimeFactory extends IProvideRuntimeFactory {
* @param context - container context to be supplied to the runtime
* @param existing - whether to instantiate for the first time or from an existing context
*/
instantiateRuntime(context: IContainerContext, existing?: boolean): Promise<IRuntime>;
instantiateRuntime(context: IContainerContext, existing: boolean): Promise<IRuntime>;
}

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluidframework/core-interfaces",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "Fluid object interfaces",
"homepage": "https://fluidframework.com",
"repository": {
@ -55,9 +55,9 @@
"typescript": "~4.5.5"
},
"typeValidation": {
"version": "2.0.0-internal.2.3.0",
"baselineRange": ">=2.0.0-internal.2.2.0 <2.0.0-internal.2.3.0",
"baselineVersion": "2.0.0-internal.2.2.0",
"version": "2.0.0-internal.3.0.0",
"baselineRange": ">=2.0.0-internal.2.0.0 <2.0.0-internal.3.0.0",
"baselineVersion": "2.0.0-internal.2.1.1",
"broken": {}
}
}

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluidframework/driver-definitions",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "Fluid driver definitions",
"homepage": "https://fluidframework.com",
"repository": {
@ -40,7 +40,7 @@
},
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/protocol-definitions": "^1.1.0"
},
"devDependencies": {
@ -59,9 +59,9 @@
"typescript": "~4.5.5"
},
"typeValidation": {
"version": "2.0.0-internal.2.3.0",
"baselineRange": ">=2.0.0-internal.2.2.0 <2.0.0-internal.2.3.0",
"baselineVersion": "2.0.0-internal.2.2.0",
"version": "2.0.0-internal.3.0.0",
"baselineRange": ">=2.0.0-internal.2.0.0 <2.0.0-internal.3.0.0",
"baselineVersion": "2.0.0-internal.2.1.1",
"broken": {}
}
}

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@fluidframework/cell",
"version": "2.0.0-internal.2.3.0",
"version": "2.0.0-internal.3.0.0",
"description": "Distributed data structure for a single value",
"homepage": "https://fluidframework.com",
"repository": {
@ -63,22 +63,21 @@
},
"dependencies": {
"@fluidframework/common-utils": "^1.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/driver-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/driver-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/protocol-definitions": "^1.1.0",
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0"
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/shared-object-base": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0"
},
"devDependencies": {
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluid-tools/build-cli": "^0.7.0",
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/build-tools": "^0.7.0",
"@fluidframework/cell-previous": "npm:@fluidframework/cell@2.0.0-internal.2.2.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.3.0 <2.0.0-internal.3.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.3.0.0 <2.0.0-internal.4.0.0",
"@microsoft/api-extractor": "^7.22.2",
"@rushstack/eslint-config": "^2.5.1",
"@types/mocha": "^9.1.1",
@ -94,9 +93,9 @@
"typescript": "~4.5.5"
},
"typeValidation": {
"version": "2.0.0-internal.2.3.0",
"baselineRange": ">=2.0.0-internal.2.2.0 <2.0.0-internal.2.3.0",
"baselineVersion": "2.0.0-internal.2.2.0",
"version": "2.0.0-internal.3.0.0",
"baselineRange": ">=2.0.0-internal.2.0.0 <2.0.0-internal.3.0.0",
"baselineVersion": "2.0.0-internal.2.1.1",
"broken": {}
}
}

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше