Move container-definitions, core-interfaces, and driver-definitions into client release group (#10534)

Continuation of Tyler's PR: #10529

Moved the projects using git mv. I just moved them into packages/common but they could be organized differently with no issues.

Moved their API reports to the shared location.
Updated api-extractor config and related npm tasks for the three moved packages.
Updated their versions to 0.60.1000 in package.json.
Updated the client packages to depend on 0.60.1000 (the in-repo version).
Noticed that node types are now needed to compile routerlicious-driver. This seems legitimate because the package is using the querystring package. 😦 I'm not sure how this built before...
Ran policy-check:fix and committed. This could be split into a separate commit.
To do:

Disable Azure Pipelines for the common packages that are now built in client (should be able to do this in ADO UI).
Update GitHub branch protection to no longer require the disabled pipelines.
Notes:

Exporting IFluidTokenProvider seems like a correct change given that other packages (like @fluidframework/container-runtime) are consuming those definitions.
This commit is contained in:
Sasha Simic 2022-06-03 15:36:37 -07:00 коммит произвёл GitHub
Родитель 5ee97d1634
Коммит 3abcd7eb73
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
190 изменённых файлов: 19671 добавлений и 22538 удалений

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

@ -385,6 +385,17 @@ export interface IFluidPackageEnvironment {
};
}
// @public (undocumented)
export const IFluidTokenProvider: keyof IProvideFluidTokenProvider;
// @public (undocumented)
export interface IFluidTokenProvider extends IProvideFluidTokenProvider {
// (undocumented)
intelligence: {
[service: string]: any;
};
}
// @public
export interface IGenericError extends IErrorBase {
// (undocumented)
@ -443,6 +454,12 @@ export interface IProvideFluidCodeDetailsComparer {
readonly IFluidCodeDetailsComparer: IFluidCodeDetailsComparer;
}
// @public (undocumented)
export interface IProvideFluidTokenProvider {
// (undocumented)
readonly IFluidTokenProvider: IFluidTokenProvider;
}
// @public (undocumented)
export interface IProvideLoader {
// (undocumented)

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

@ -734,9 +734,9 @@
},
"dependencies": {
"@fluidframework/protocol-definitions": {
"version": "0.1028.1000",
"resolved": "https://registry.npmjs.org/@fluidframework/protocol-definitions/-/protocol-definitions-0.1028.1000.tgz",
"integrity": "sha512-Gqw9ji/QJsgRu0Bv7hRNxmbGWEQjrGezscTmnEf2S1PEfgdXNd2OFSB2YYsnHOe8/+yz2teqs4U41+V5D6MaEA==",
"version": "0.1028.2000",
"resolved": "https://registry.npmjs.org/@fluidframework/protocol-definitions/-/protocol-definitions-0.1028.2000.tgz",
"integrity": "sha512-ZUPCmPFcK7UAK4RkfVWfzQPAWFvYNm6ywP51V42YC38gCGye+Epvyr3beA+FSaHPIZGxm5+Uw52+ykTvmDb2UA==",
"requires": {
"@fluidframework/common-definitions": "^0.20.1"
}
@ -782,9 +782,9 @@
},
"dependencies": {
"@fluidframework/protocol-definitions": {
"version": "0.1028.1000",
"resolved": "https://registry.npmjs.org/@fluidframework/protocol-definitions/-/protocol-definitions-0.1028.1000.tgz",
"integrity": "sha512-Gqw9ji/QJsgRu0Bv7hRNxmbGWEQjrGezscTmnEf2S1PEfgdXNd2OFSB2YYsnHOe8/+yz2teqs4U41+V5D6MaEA==",
"version": "0.1028.2000",
"resolved": "https://registry.npmjs.org/@fluidframework/protocol-definitions/-/protocol-definitions-0.1028.2000.tgz",
"integrity": "sha512-ZUPCmPFcK7UAK4RkfVWfzQPAWFvYNm6ywP51V42YC38gCGye+Epvyr3beA+FSaHPIZGxm5+Uw52+ykTvmDb2UA==",
"requires": {
"@fluidframework/common-definitions": "^0.20.1"
}

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

@ -1,12 +0,0 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
"extends": "@fluidframework/build-common/api-extractor-common-report.json",
"apiReport": {
"enabled": true,
"reportFolder": "<projectFolder>/api-report/"
},
"docModel": {
"enabled": true,
"apiJsonFilePath": "<projectFolder>/_api-extractor-temp/doc-models/<unscopedPackageName>.api.json"
}
}

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

@ -1,12 +0,0 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
"extends": "@fluidframework/build-common/api-extractor-common-report.json",
"apiReport": {
"enabled": true,
"reportFolder": "<projectFolder>/api-report/"
},
"docModel": {
"enabled": true,
"apiJsonFilePath": "<projectFolder>/_api-extractor-temp/doc-models/<unscopedPackageName>.api.json"
}
}

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

@ -1,12 +0,0 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
"extends": "@fluidframework/build-common/api-extractor-common-report.json",
"apiReport": {
"enabled": true,
"reportFolder": "<projectFolder>/api-report/"
},
"docModel": {
"enabled": true,
"apiJsonFilePath": "<projectFolder>/_api-extractor-temp/doc-models/<unscopedPackageName>.api.json"
}
}

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

@ -42,7 +42,7 @@
"@fluid-experimental/react-inputs": "^0.60.1000",
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/sequence": "^0.60.1000",
"@fluidframework/view-interfaces": "^0.60.1000",
"css-loader": "^1.0.0",

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

@ -42,7 +42,7 @@
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-runtime-definitions": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/runtime-utils": "^0.60.1000",
"css-loader": "^1.0.0",
"react": "^16.10.2",

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

@ -49,7 +49,7 @@
"@fluid-experimental/get-container": "^0.60.1000",
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/datastore-definitions": "^0.60.1000",
"@fluidframework/runtime-definitions": "^0.60.1000",
"@fluidframework/runtime-utils": "^0.60.1000",

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

@ -45,7 +45,7 @@
"@fluid-example/example-utils": "^0.60.1000",
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/ink": "^0.60.1000",
"react": "^16.10.2"
},

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

@ -46,7 +46,7 @@
"@fluid-experimental/task-manager": "^0.60.1000",
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/counter": "^0.60.1000",
"@fluidframework/runtime-definitions": "^0.60.1000",
"react": "^16.10.2"

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

@ -41,10 +41,10 @@
},
"dependencies": {
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/container-definitions": "^0.49.1000-69955",
"@fluidframework/container-definitions": "^0.60.1000",
"@fluidframework/container-runtime": "^0.60.1000",
"@fluidframework/container-runtime-definitions": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/datastore": "^0.60.1000",
"@fluidframework/datastore-definitions": "^0.60.1000",
"@fluidframework/map": "^0.60.1000",

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

@ -42,8 +42,8 @@
"dependencies": {
"@fluid-example/example-utils": "^0.60.1000",
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/container-definitions": "^0.49.1000-69955",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/container-definitions": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/merge-tree": "^0.60.1000",
"@fluidframework/runtime-definitions": "^0.60.1000",
"@fluidframework/sequence": "^0.60.1000",

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

@ -45,7 +45,7 @@
"@fluid-example/multiview-coordinate-model": "^0.60.1000",
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/map": "^0.60.1000"
},
"devDependencies": {

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

@ -42,10 +42,10 @@
"dependencies": {
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/common-utils": "^0.32.1",
"@fluidframework/container-definitions": "^0.49.1000-69955",
"@fluidframework/container-definitions": "^0.60.1000",
"@fluidframework/container-runtime": "^0.60.1000",
"@fluidframework/container-runtime-definitions": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/datastore": "^0.60.1000",
"@fluidframework/datastore-definitions": "^0.60.1000",
"@fluidframework/map": "^0.60.1000",

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

@ -19,13 +19,10 @@ import {
import { SharedString } from "@fluidframework/sequence";
import { buildMenuItems, exampleSetup } from "prosemirror-example-setup";
import { MenuItem } from "prosemirror-menu";
import { DOMSerializer, Fragment, NodeSpec, Schema, Slice } from "prosemirror-model";
import { DOMSerializer, Fragment, Schema, Slice } from "prosemirror-model";
import { addListNodes } from "prosemirror-schema-list";
import { EditorState, NodeSelection, Plugin, Transaction } from "prosemirror-state";
// eslint-disable-next-line @typescript-eslint/no-require-imports
import OrderedMap = require("orderedmap");
import { insertPoint } from "prosemirror-transform";
import { EditorView } from "prosemirror-view";
import { ComponentView } from "./componentView";
@ -68,7 +65,7 @@ export class FluidCollabManager extends EventEmitter implements IRichTextEditor
});
const fluidSchema = new Schema({
nodes: addListNodes(schema.spec.nodes as OrderedMap<NodeSpec>, "paragraph block*", "block"),
nodes: addListNodes(schema.spec.nodes, "paragraph block*", "block"),
marks: schema.spec.marks,
});
this.schema = fluidSchema;
@ -167,8 +164,11 @@ export class FluidCollabManager extends EventEmitter implements IRichTextEditor
}),
},
callback(attrs) {
view.dispatch(view.state.tr.replaceSelectionWith(fluidSchema.nodes.fluid.createAndFill(attrs)));
view.focus();
const node = fluidSchema.nodes.fluid.createAndFill(attrs);
if (node) {
view.dispatch(view.state.tr.replaceSelectionWith(node));
view.focus();
}
},
});
},

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

@ -45,9 +45,9 @@
"@fluid-example/example-utils": "^0.60.1000",
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/common-utils": "^0.32.1",
"@fluidframework/container-definitions": "^0.49.1000-69955",
"@fluidframework/container-definitions": "^0.60.1000",
"@fluidframework/container-runtime": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/datastore": "^0.60.1000",
"@fluidframework/datastore-definitions": "^0.60.1000",
"@fluidframework/map": "^0.60.1000",

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

@ -41,9 +41,9 @@
"dependencies": {
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/common-utils": "^0.32.1",
"@fluidframework/container-definitions": "^0.49.1000-69955",
"@fluidframework/container-definitions": "^0.60.1000",
"@fluidframework/container-runtime": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/datastore": "^0.60.1000",
"@fluidframework/datastore-definitions": "^0.60.1000",
"@fluidframework/map": "^0.60.1000",

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

@ -55,7 +55,7 @@
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.1",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/datastore-definitions": "^0.60.1000",
"@fluidframework/merge-tree": "^0.60.1000",
"@fluidframework/protocol-definitions": "^0.1028.2000-0",

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

@ -45,8 +45,8 @@
"@fluid-example/table-document": "^0.60.1000",
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-definitions": "^0.49.1000-69955",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/container-definitions": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/matrix": "^0.60.1000",
"@fluidframework/runtime-utils": "^0.60.1000",
"@fluidframework/sequence": "^0.60.1000",

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

@ -43,9 +43,9 @@
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.1",
"@fluidframework/container-definitions": "^0.49.1000-69955",
"@fluidframework/container-definitions": "^0.60.1000",
"@fluidframework/container-runtime-definitions": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/request-handler": "^0.60.1000",
"@fluidframework/runtime-utils": "^0.60.1000",
"css-loader": "^1.0.0",

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

@ -45,7 +45,7 @@
"@fluid-experimental/react-inputs": "^0.60.1000",
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/container-runtime-definitions": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/map": "^0.60.1000",
"@fluidframework/runtime-utils": "^0.60.1000",
"@fluidframework/sequence": "^0.60.1000",

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

@ -49,7 +49,7 @@
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-runtime": "^0.60.1000",
"@fluidframework/container-runtime-definitions": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/datastore-definitions": "^0.60.1000",
"@fluidframework/map": "^0.60.1000",
"@fluidframework/protocol-definitions": "^0.1028.2000-0",

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

@ -78,7 +78,7 @@
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.1",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/data-object-base": "^0.60.1000",
"@fluidframework/map": "^0.60.1000",
"@fluidframework/merge-tree": "^0.60.1000",

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

@ -40,10 +40,10 @@
"@fluid-experimental/get-container": "^0.60.1000",
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-definitions": "^0.49.1000-69955",
"@fluidframework/container-definitions": "^0.60.1000",
"@fluidframework/container-loader": "^0.60.1000",
"@fluidframework/container-runtime-definitions": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/map": "^0.60.1000",
"@fluidframework/runtime-utils": "^0.60.1000",
"@fluidframework/view-adapters": "^0.60.1000",

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

@ -45,11 +45,11 @@
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/cell": "^0.60.1000",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-definitions": "^0.49.1000-69955",
"@fluidframework/container-definitions": "^0.60.1000",
"@fluidframework/container-loader": "^0.60.1000",
"@fluidframework/container-runtime-definitions": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/driver-definitions": "^0.47.1000-69949",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/driver-definitions": "^0.60.1000",
"@fluidframework/driver-utils": "^0.60.1000",
"@fluidframework/map": "^0.60.1000",
"@fluidframework/register-collection": "^0.60.1000",

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

@ -32,9 +32,9 @@
"dependencies": {
"@fluid-example/example-utils": "^0.60.1000",
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/container-definitions": "^0.49.1000-69955",
"@fluidframework/container-definitions": "^0.60.1000",
"@fluidframework/container-loader": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/driver-utils": "^0.60.1000",
"@fluidframework/protocol-definitions": "^0.1028.2000-0",
"@fluidframework/routerlicious-driver": "^0.60.1000",

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

@ -40,11 +40,11 @@
"dependencies": {
"@fluid-example/todo": "^0.60.1000",
"@fluid-experimental/get-container": "^0.60.1000",
"@fluidframework/container-definitions": "^0.49.1000-69955",
"@fluidframework/container-definitions": "^0.60.1000",
"@fluidframework/container-loader": "^0.60.1000",
"@fluidframework/container-runtime-definitions": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/driver-definitions": "^0.47.1000-69949",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/driver-definitions": "^0.60.1000",
"@fluidframework/driver-utils": "^0.60.1000",
"@fluidframework/iframe-driver": "^0.60.1000",
"@fluidframework/protocol-definitions": "^0.1028.2000-0",

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

@ -46,14 +46,14 @@
"@fluid-experimental/schemas": "^0.60.1000",
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/common-utils": "^0.32.1",
"@fluidframework/container-definitions": "^0.49.1000-69955",
"@fluidframework/container-definitions": "^0.60.1000",
"@fluidframework/container-loader": "^0.60.1000",
"@fluidframework/container-runtime": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/data-object-base": "^0.60.1000",
"@fluidframework/datastore": "^0.60.1000",
"@fluidframework/datastore-definitions": "^0.60.1000",
"@fluidframework/driver-definitions": "^0.47.1000-69949",
"@fluidframework/driver-definitions": "^0.60.1000",
"@fluidframework/driver-utils": "^0.60.1000",
"@fluidframework/map": "^0.60.1000",
"@fluidframework/merge-tree": "^0.60.1000",

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

@ -46,10 +46,10 @@
"@fluid-experimental/schemas": "^0.60.1000",
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/common-utils": "^0.32.1",
"@fluidframework/container-definitions": "^0.49.1000-69955",
"@fluidframework/container-definitions": "^0.60.1000",
"@fluidframework/container-loader": "^0.60.1000",
"@fluidframework/container-runtime": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/data-object-base": "^0.60.1000",
"@fluidframework/datastore": "^0.60.1000",
"@fluidframework/datastore-definitions": "^0.60.1000",

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

@ -38,8 +38,8 @@
"@fluid-experimental/property-changeset": "^0.60.1000",
"@fluid-experimental/property-properties": "^0.60.1000",
"@fluidframework/common-utils": "^0.32.1",
"@fluidframework/container-definitions": "^0.49.1000-69955",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/container-definitions": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/datastore-definitions": "^0.60.1000",
"@fluidframework/protocol-definitions": "^0.1028.2000-0",
"@fluidframework/runtime-definitions": "^0.60.1000",
@ -54,7 +54,7 @@
"devDependencies": {
"@fluid-experimental/property-common": "^0.60.1000",
"@fluidframework/build-common": "^0.23.0",
"@fluidframework/driver-definitions": "^0.47.1000-69949",
"@fluidframework/driver-definitions": "^0.60.1000",
"@fluidframework/eslint-config-fluid": "^0.28.2000",
"@fluidframework/local-driver": "^0.60.1000",
"@fluidframework/mocha-test-setup": "^0.60.1000",

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

До

Ширина:  |  Высота:  |  Размер: 169 B

После

Ширина:  |  Высота:  |  Размер: 169 B

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

@ -13,9 +13,6 @@ import { ErrorPopup } from "./ErrorPopup";
import { iconHeight, iconWidth } from "./constants";
const useStyles = makeStyles((theme: Theme) => ({
bold: {
fontWeight: theme.typography.fontWeightBold,
},
bottomMargin: {
marginBottom: theme.spacing(1),
},
@ -94,7 +91,7 @@ export const EditReferencePath: React.FunctionComponent<IEditReferencePathProps
height={iconHeight}
svgId="reference-24"
/>
<span className={classes.bold}>
<span>
Modifying the reference path for <span className={classes.italic}>{name}</span>
</span>
</div>

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

@ -972,5 +972,5 @@ class InspectorTable extends React.Component<WithStyles<typeof styles> & IInspec
};
}
const StyledInspectorTable = withStyles(styles, { name: "InspectorTable" })(InspectorTable);
const StyledInspectorTable = withStyles(styles, { name: "InspectorTable" })(InspectorTable as any);
export { StyledInspectorTable as InspectorTable };

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

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

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

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

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

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

@ -60,7 +60,7 @@
},
"dependencies": {
"@fluidframework/common-utils": "^0.32.1",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/datastore-definitions": "^0.60.1000",
"@fluidframework/protocol-definitions": "^0.1028.2000-0",
"@fluidframework/runtime-definitions": "^0.60.1000",

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

@ -62,7 +62,7 @@
"dependencies": {
"@fluid-experimental/ot": "^0.60.1000",
"@fluidframework/common-utils": "^0.32.1",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/datastore-definitions": "^0.60.1000",
"@fluidframework/protocol-definitions": "^0.1028.2000-0",
"@fluidframework/shared-object-base": "^0.60.1000",

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

@ -38,8 +38,8 @@
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.1",
"@fluidframework/container-definitions": "^0.49.1000-69955",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/container-definitions": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/datastore-definitions": "^0.60.1000",
"@fluidframework/protocol-definitions": "^0.1028.2000-0",
"@fluidframework/runtime-definitions": "^0.60.1000",

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

@ -60,7 +60,7 @@
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/common-utils": "^0.32.1",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/datastore-definitions": "^0.60.1000",
"@fluidframework/protocol-base": "^0.1036.4000-0",
"@fluidframework/protocol-definitions": "^0.1028.2000-0",

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

@ -46,8 +46,8 @@
"@fluid-example/example-utils": "^0.60.1000",
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-definitions": "^0.49.1000-69955",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/container-definitions": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/datastore-definitions": "^0.60.1000",
"@fluidframework/map": "^0.60.1000",
"react": "^16.10.2"

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

@ -56,8 +56,8 @@
"dependencies": {
"@fluid-experimental/tree": "^0.60.1000",
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/container-definitions": "^0.49.1000-69955",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/container-definitions": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/datastore-definitions": "^0.60.1000",
"@fluidframework/map": "^0.60.1000",
"@fluidframework/view-interfaces": "^0.60.1000",

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

@ -47,8 +47,8 @@
"@fluid-experimental/sharejs-json1": "^0.60.1000",
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-definitions": "^0.49.1000-69955",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/container-definitions": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/datastore-definitions": "^0.60.1000",
"@fluidframework/map": "^0.60.1000",
"ot-json1": "^1.0.1",

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

@ -47,8 +47,8 @@
"@fluid-experimental/tree": "^0.60.1000",
"@fluidframework/aqueduct": "^0.60.1000",
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-definitions": "^0.49.1000-69955",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/container-definitions": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/datastore-definitions": "^0.60.1000",
"@fluidframework/map": "^0.60.1000",
"react": "^16.10.2"

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

@ -30,10 +30,10 @@
"tsfmt:fix": "tsfmt --replace"
},
"dependencies": {
"@fluidframework/container-definitions": "^0.49.1000-69955",
"@fluidframework/container-definitions": "^0.60.1000",
"@fluidframework/container-loader": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/driver-definitions": "^0.47.1000-69949",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/driver-definitions": "^0.60.1000",
"@fluidframework/driver-utils": "^0.60.1000",
"@fluidframework/local-driver": "^0.60.1000",
"@fluidframework/protocol-definitions": "^0.1028.2000-0",

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

@ -58,7 +58,7 @@
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/container-runtime": "^0.60.1000",
"@fluidframework/container-runtime-definitions": "^0.60.1000",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/protocol-definitions": "^0.1028.2000-0",
"@fluidframework/runtime-utils": "^0.60.1000",
"@fluidframework/shared-summary-block": "^0.60.1000"

17700
lerna-package-lock.json сгенерированный

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

23652
package-lock.json сгенерированный

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

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

@ -127,10 +127,7 @@
"build": "common/build",
"common-def": "common/lib/common-definitions",
"common-utils": "common/lib/common-utils",
"core-interfaces": "common/lib/core-interfaces",
"protocol-def": "common/lib/protocol-definitions",
"driver-def": "common/lib/driver-definitions",
"container-def": "common/lib/container-definitions",
"azure": "azure",
"server": "server/routerlicious",
"client": {

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

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

@ -0,0 +1,4 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
"extends": "@fluidframework/build-common/api-extractor-common-report.json"
}

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

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

@ -1,6 +1,6 @@
{
"name": "@fluidframework/container-definitions",
"version": "0.49.1000",
"version": "0.60.1000",
"description": "Fluid container definitions",
"homepage": "https://fluidframework.com",
"repository": {
@ -18,13 +18,13 @@
"build": "concurrently npm:build:compile npm:lint && npm run build:docs",
"build:commonjs": "npm run tsc && npm run typetests:gen && npm run build:test",
"build:compile": "concurrently npm:build:commonjs npm:build:esnext",
"build:docs": "api-extractor run --local --typescript-compiler-folder ./node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
"build:docs": "api-extractor run --local --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
"build:esnext": "tsc --project ./tsconfig.esnext.json",
"build:full": "npm run build",
"build:full:compile": "npm run build:compile",
"build:test": "tsc --project ./src/test/types/tsconfig.json",
"ci:build": "npm run build:compile",
"ci:build:docs": "api-extractor run --typescript-compiler-folder ./node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
"ci:build:docs": "api-extractor run --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
"ci:test": "echo No test for this package",
"ci:test:coverage": "echo No test for this package",
"clean": "rimraf dist lib *.tsbuildinfo *.build.log",
@ -36,13 +36,12 @@
"tsc:watch": "tsc --watch",
"tsfmt": "tsfmt --verify",
"tsfmt:fix": "tsfmt --replace",
"typetests:gen": "fluid-type-validator -d .",
"typetests:prepare": "fluid-type-validator -d . -p"
"typetests:gen": "fluid-type-validator -g -d ."
},
"dependencies": {
"@fluidframework/common-definitions": "^0.20.1",
"@fluidframework/core-interfaces": "^0.43.1000",
"@fluidframework/driver-definitions": "^0.47.1000-69949",
"@fluidframework/core-interfaces": "^0.60.1000",
"@fluidframework/driver-definitions": "^0.60.1000",
"@fluidframework/protocol-definitions": "^0.1028.2000-0"
},
"devDependencies": {

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

@ -10,3 +10,4 @@ export * from "./loader";
export * from "./fluidModule";
export * from "./fluidPackage";
export * from "./runtime";
export * from "./tokenProvider";

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

@ -899,26 +899,50 @@ use_old_InterfaceDeclaration_IFluidPackageEnvironment(
/*
* Validate forward compat by using old type in place of current type
* If breaking change required, add in package.json under typeValidation.broken:
* "RemovedVariableDeclaration_IFluidTokenProvider": {"forwardCompat": false}
* "VariableDeclaration_IFluidTokenProvider": {"forwardCompat": false}
*/
declare function get_old_VariableDeclaration_IFluidTokenProvider():
TypeOnly<typeof old.IFluidTokenProvider>;
declare function use_current_VariableDeclaration_IFluidTokenProvider(
use: TypeOnly<typeof current.IFluidTokenProvider>);
use_current_VariableDeclaration_IFluidTokenProvider(
get_old_VariableDeclaration_IFluidTokenProvider());
/*
* Validate back compat by using current type in place of old type
* If breaking change required, add in package.json under typeValidation.broken:
* "RemovedVariableDeclaration_IFluidTokenProvider": {"backCompat": false}
* "VariableDeclaration_IFluidTokenProvider": {"backCompat": false}
*/
declare function get_current_VariableDeclaration_IFluidTokenProvider():
TypeOnly<typeof current.IFluidTokenProvider>;
declare function use_old_VariableDeclaration_IFluidTokenProvider(
use: TypeOnly<typeof old.IFluidTokenProvider>);
use_old_VariableDeclaration_IFluidTokenProvider(
get_current_VariableDeclaration_IFluidTokenProvider());
/*
* Validate forward compat by using old type in place of current type
* If breaking change required, add in package.json under typeValidation.broken:
* "RemovedInterfaceDeclaration_IFluidTokenProvider": {"forwardCompat": false}
* "InterfaceDeclaration_IFluidTokenProvider": {"forwardCompat": false}
*/
declare function get_old_InterfaceDeclaration_IFluidTokenProvider():
TypeOnly<old.IFluidTokenProvider>;
declare function use_current_InterfaceDeclaration_IFluidTokenProvider(
use: TypeOnly<current.IFluidTokenProvider>);
use_current_InterfaceDeclaration_IFluidTokenProvider(
get_old_InterfaceDeclaration_IFluidTokenProvider());
/*
* Validate back compat by using current type in place of old type
* If breaking change required, add in package.json under typeValidation.broken:
* "RemovedInterfaceDeclaration_IFluidTokenProvider": {"backCompat": false}
* "InterfaceDeclaration_IFluidTokenProvider": {"backCompat": false}
*/
declare function get_current_InterfaceDeclaration_IFluidTokenProvider():
TypeOnly<current.IFluidTokenProvider>;
declare function use_old_InterfaceDeclaration_IFluidTokenProvider(
use: TypeOnly<old.IFluidTokenProvider>);
use_old_InterfaceDeclaration_IFluidTokenProvider(
get_current_InterfaceDeclaration_IFluidTokenProvider());
/*
* Validate forward compat by using old type in place of current type
@ -1103,14 +1127,26 @@ use_old_InterfaceDeclaration_IProvideFluidCodeDetailsComparer(
/*
* Validate forward compat by using old type in place of current type
* If breaking change required, add in package.json under typeValidation.broken:
* "RemovedInterfaceDeclaration_IProvideFluidTokenProvider": {"forwardCompat": false}
* "InterfaceDeclaration_IProvideFluidTokenProvider": {"forwardCompat": false}
*/
declare function get_old_InterfaceDeclaration_IProvideFluidTokenProvider():
TypeOnly<old.IProvideFluidTokenProvider>;
declare function use_current_InterfaceDeclaration_IProvideFluidTokenProvider(
use: TypeOnly<current.IProvideFluidTokenProvider>);
use_current_InterfaceDeclaration_IProvideFluidTokenProvider(
get_old_InterfaceDeclaration_IProvideFluidTokenProvider());
/*
* Validate back compat by using current type in place of old type
* If breaking change required, add in package.json under typeValidation.broken:
* "RemovedInterfaceDeclaration_IProvideFluidTokenProvider": {"backCompat": false}
* "InterfaceDeclaration_IProvideFluidTokenProvider": {"backCompat": false}
*/
declare function get_current_InterfaceDeclaration_IProvideFluidTokenProvider():
TypeOnly<current.IProvideFluidTokenProvider>;
declare function use_old_InterfaceDeclaration_IProvideFluidTokenProvider(
use: TypeOnly<old.IProvideFluidTokenProvider>);
use_old_InterfaceDeclaration_IProvideFluidTokenProvider(
get_current_InterfaceDeclaration_IProvideFluidTokenProvider());
/*
* Validate forward compat by using old type in place of current type

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

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

@ -0,0 +1,4 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
"extends": "@fluidframework/build-common/api-extractor-common-report.json"
}

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

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

@ -1,6 +1,6 @@
{
"name": "@fluidframework/core-interfaces",
"version": "0.44.1000",
"version": "0.60.1000",
"description": "Fluid object interfaces",
"homepage": "https://fluidframework.com",
"repository": {
@ -17,12 +17,12 @@
"scripts": {
"build": "concurrently npm:build:compile npm:lint && npm run build:docs",
"build:compile": "concurrently npm:typetests:gen npm:tsc npm:build:esnext",
"build:docs": "api-extractor run --local --typescript-compiler-folder ./node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
"build:docs": "api-extractor run --local --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
"build:esnext": "tsc --project ./tsconfig.esnext.json",
"build:full": "npm run build",
"build:full:compile": "npm run build:compile",
"ci:build": "npm run build:compile",
"ci:build:docs": "api-extractor run --typescript-compiler-folder ./node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
"ci:build:docs": "api-extractor run --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
"ci:test": "echo No test for this package",
"ci:test:coverage": "echo No test for this package",
"clean": "rimraf dist lib *.tsbuildinfo *.build.log",
@ -35,8 +35,7 @@
"tsc:watch": "tsc --watch",
"tsfmt": "tsfmt --verify",
"tsfmt:fix": "tsfmt --replace",
"typetests:gen": "fluid-type-validator -d .",
"typetests:prepare": "fluid-type-validator -d . -p"
"typetests:gen": "fluid-type-validator -g -d ."
},
"devDependencies": {
"@fluidframework/build-common": "^0.23.0",

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

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