Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: Update type tests for 4.0 release #14785

Merged
merged 3 commits into from
Mar 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
"tsc": "lerna run tsc --stream",
"tsc:fast": "fluid-build --root . -s tsc",
"typetests:gen": "pnpm -r typetests:gen",
"typetests:prepare": "flub generate typetests --prepare --releaseGroup client --pin",
"typetests:prepare": "flub typetests -g client --reset --previous --normalize",
"watch": "concurrently \"npm run watch:tsc\" \"npm run watch:esnext\" \"npm run watch:webpack\"",
"watch:esnext": "lerna run --parallel build:esnext -- --watch",
"watch:tsc": "lerna run --parallel tsc -- --watch",
Expand Down
20 changes: 2 additions & 18 deletions packages/common/container-definitions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"@fluid-tools/build-cli": "^0.13.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/build-tools": "^0.13.0",
"@fluidframework/container-definitions-previous": "npm:@fluidframework/container-definitions@2.0.0-internal.3.2.0",
"@fluidframework/container-definitions-previous": "npm:@fluidframework/container-definitions@2.0.0-internal.4.0.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@microsoft/api-extractor": "^7.34.4",
"@types/events": "^3.0.0",
Expand All @@ -63,22 +63,6 @@
"typescript": "~4.5.5"
},
"typeValidation": {
"broken": {
"InterfaceDeclaration_IConnectionDetails": {
"backCompat": false
},
"RemovedVariableDeclaration_IFluidTokenProvider": {
"backCompat": false,
"forwardCompat": false
},
"RemovedInterfaceDeclaration_IFluidTokenProvider": {
"backCompat": false,
"forwardCompat": false
},
"RemovedInterfaceDeclaration_IProvideFluidTokenProvider": {
"backCompat": false,
"forwardCompat": false
}
}
"broken": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -347,9 +347,32 @@ declare function get_current_InterfaceDeclaration_IConnectionDetails():
declare function use_old_InterfaceDeclaration_IConnectionDetails(
use: TypeOnly<old.IConnectionDetails>);
use_old_InterfaceDeclaration_IConnectionDetails(
// @ts-expect-error compatibility expected to be broken
get_current_InterfaceDeclaration_IConnectionDetails());

/*
* Validate forward compat by using old type in place of current type
* If breaking change required, add in package.json under typeValidation.broken:
* "InterfaceDeclaration_IConnectionDetailsInternal": {"forwardCompat": false}
*/
declare function get_old_InterfaceDeclaration_IConnectionDetailsInternal():
TypeOnly<old.IConnectionDetailsInternal>;
declare function use_current_InterfaceDeclaration_IConnectionDetailsInternal(
use: TypeOnly<current.IConnectionDetailsInternal>);
use_current_InterfaceDeclaration_IConnectionDetailsInternal(
get_old_InterfaceDeclaration_IConnectionDetailsInternal());

/*
* Validate back compat by using current type in place of old type
* If breaking change required, add in package.json under typeValidation.broken:
* "InterfaceDeclaration_IConnectionDetailsInternal": {"backCompat": false}
*/
declare function get_current_InterfaceDeclaration_IConnectionDetailsInternal():
TypeOnly<current.IConnectionDetailsInternal>;
declare function use_old_InterfaceDeclaration_IConnectionDetailsInternal(
use: TypeOnly<old.IConnectionDetailsInternal>);
use_old_InterfaceDeclaration_IConnectionDetailsInternal(
get_current_InterfaceDeclaration_IConnectionDetailsInternal());

/*
* Validate forward compat by using old type in place of current type
* If breaking change required, add in package.json under typeValidation.broken:
Expand Down Expand Up @@ -902,30 +925,6 @@ declare function use_old_InterfaceDeclaration_IFluidPackageEnvironment(
use_old_InterfaceDeclaration_IFluidPackageEnvironment(
get_current_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}
*/

/*
* 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}
*/

/*
* 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}
*/

/*
* 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}
*/

/*
* Validate forward compat by using old type in place of current type
* If breaking change required, add in package.json under typeValidation.broken:
Expand Down Expand Up @@ -1094,18 +1093,6 @@ declare function use_old_InterfaceDeclaration_IProvideFluidCodeDetailsComparer(
use_old_InterfaceDeclaration_IProvideFluidCodeDetailsComparer(
get_current_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}
*/

/*
* 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}
*/

/*
* Validate forward compat by using old type in place of current type
* If breaking change required, add in package.json under typeValidation.broken:
Expand Down
2 changes: 1 addition & 1 deletion packages/common/core-interfaces/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"@fluid-tools/build-cli": "^0.13.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/build-tools": "^0.13.0",
"@fluidframework/core-interfaces-previous": "npm:@fluidframework/core-interfaces@2.0.0-internal.3.2.0",
"@fluidframework/core-interfaces-previous": "npm:@fluidframework/core-interfaces@2.0.0-internal.4.0.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@microsoft/api-extractor": "^7.34.4",
"@types/node": "^14.18.38",
Expand Down
8 changes: 2 additions & 6 deletions packages/common/driver-definitions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"@fluid-tools/build-cli": "^0.13.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/build-tools": "^0.13.0",
"@fluidframework/driver-definitions-previous": "npm:@fluidframework/driver-definitions@2.0.0-internal.3.2.0",
"@fluidframework/driver-definitions-previous": "npm:@fluidframework/driver-definitions@2.0.0-internal.4.0.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@microsoft/api-extractor": "^7.34.4",
"concurrently": "^7.6.0",
Expand All @@ -58,10 +58,6 @@
"typescript": "~4.5.5"
},
"typeValidation": {
"broken": {
"InterfaceDeclaration_IDocumentServiceFactory": {
"backCompat": false
}
}
"broken": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,6 @@ declare function get_current_InterfaceDeclaration_IDocumentServiceFactory():
declare function use_old_InterfaceDeclaration_IDocumentServiceFactory(
use: TypeOnly<old.IDocumentServiceFactory>);
use_old_InterfaceDeclaration_IDocumentServiceFactory(
// @ts-expect-error compatibility expected to be broken
get_current_InterfaceDeclaration_IDocumentServiceFactory());

/*
Expand Down
2 changes: 1 addition & 1 deletion packages/dds/cell/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"@fluid-tools/build-cli": "^0.13.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/build-tools": "^0.13.0",
"@fluidframework/cell-previous": "npm:@fluidframework/cell@2.0.0-internal.3.2.0",
"@fluidframework/cell-previous": "npm:@fluidframework/cell@2.0.0-internal.4.0.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/dds/counter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"@fluid-tools/build-cli": "^0.13.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/build-tools": "^0.13.0",
"@fluidframework/counter-previous": "npm:@fluidframework/counter@2.0.0-internal.3.2.0",
"@fluidframework/counter-previous": "npm:@fluidframework/counter@2.0.0-internal.4.0.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/dds/ink/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/build-tools": "^0.13.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/ink-previous": "npm:@fluidframework/ink@2.0.0-internal.3.2.0",
"@fluidframework/ink-previous": "npm:@fluidframework/ink@2.0.0-internal.4.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@microsoft/api-extractor": "^7.34.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/dds/map/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/build-tools": "^0.13.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/map-previous": "npm:@fluidframework/map@2.0.0-internal.3.2.0",
"@fluidframework/map-previous": "npm:@fluidframework/map@2.0.0-internal.4.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@microsoft/api-extractor": "^7.34.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,30 @@ declare function use_old_ClassDeclaration_DirectoryFactory(
use_old_ClassDeclaration_DirectoryFactory(
get_current_ClassDeclaration_DirectoryFactory());

/*
* Validate forward compat by using old type in place of current type
* If breaking change required, add in package.json under typeValidation.broken:
* "InterfaceDeclaration_ICreateInfo": {"forwardCompat": false}
*/
declare function get_old_InterfaceDeclaration_ICreateInfo():
TypeOnly<old.ICreateInfo>;
declare function use_current_InterfaceDeclaration_ICreateInfo(
use: TypeOnly<current.ICreateInfo>);
use_current_InterfaceDeclaration_ICreateInfo(
get_old_InterfaceDeclaration_ICreateInfo());

/*
* Validate back compat by using current type in place of old type
* If breaking change required, add in package.json under typeValidation.broken:
* "InterfaceDeclaration_ICreateInfo": {"backCompat": false}
*/
declare function get_current_InterfaceDeclaration_ICreateInfo():
TypeOnly<current.ICreateInfo>;
declare function use_old_InterfaceDeclaration_ICreateInfo(
use: TypeOnly<old.ICreateInfo>);
use_old_InterfaceDeclaration_ICreateInfo(
get_current_InterfaceDeclaration_ICreateInfo());

/*
* Validate forward compat by using old type in place of current type
* If breaking change required, add in package.json under typeValidation.broken:
Expand Down
2 changes: 1 addition & 1 deletion packages/dds/matrix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/build-tools": "^0.13.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/matrix-previous": "npm:@fluidframework/matrix@2.0.0-internal.3.2.0",
"@fluidframework/matrix-previous": "npm:@fluidframework/matrix@2.0.0-internal.4.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@microsoft/api-extractor": "^7.34.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/dds/merge-tree/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/build-tools": "^0.13.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/merge-tree-previous": "npm:@fluidframework/merge-tree@2.0.0-internal.3.2.0",
"@fluidframework/merge-tree-previous": "npm:@fluidframework/merge-tree@2.0.0-internal.4.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@microsoft/api-extractor": "^7.34.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/dds/ordered-collection/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
"@fluidframework/build-tools": "^0.13.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@fluidframework/ordered-collection-previous": "npm:@fluidframework/ordered-collection@2.0.0-internal.3.2.0",
"@fluidframework/ordered-collection-previous": "npm:@fluidframework/ordered-collection@2.0.0-internal.4.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@microsoft/api-extractor": "^7.34.4",
"@types/mocha": "^9.1.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/dds/register-collection/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"@fluidframework/build-tools": "^0.13.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@fluidframework/register-collection-previous": "npm:@fluidframework/register-collection@2.0.0-internal.3.2.0",
"@fluidframework/register-collection-previous": "npm:@fluidframework/register-collection@2.0.0-internal.4.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@microsoft/api-extractor": "^7.34.4",
"@types/mocha": "^9.1.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/dds/sequence/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/gitresources": "^0.1038.4000",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@fluidframework/sequence-previous": "npm:@fluidframework/sequence@2.0.0-internal.3.2.0",
"@fluidframework/sequence-previous": "npm:@fluidframework/sequence@2.0.0-internal.4.0.0",
"@fluidframework/server-services-client": "^0.1038.4000",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@microsoft/api-extractor": "^7.34.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/dds/shared-object-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
"@fluidframework/build-tools": "^0.13.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@fluidframework/shared-object-base-previous": "npm:@fluidframework/shared-object-base@2.0.0-internal.3.2.0",
"@fluidframework/shared-object-base-previous": "npm:@fluidframework/shared-object-base@2.0.0-internal.4.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@microsoft/api-extractor": "^7.34.4",
"@types/benchmark": "^2.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/dds/shared-summary-block/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"@fluidframework/build-tools": "^0.13.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@fluidframework/shared-summary-block-previous": "npm:@fluidframework/shared-summary-block@2.0.0-internal.3.2.0",
"@fluidframework/shared-summary-block-previous": "npm:@fluidframework/shared-summary-block@2.0.0-internal.4.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@microsoft/api-extractor": "^7.34.4",
"@types/benchmark": "^2.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/dds/task-manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
"@fluidframework/build-tools": "^0.13.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@fluidframework/task-manager-previous": "npm:@fluidframework/task-manager@2.0.0-internal.3.2.0",
"@fluidframework/task-manager-previous": "npm:@fluidframework/task-manager@2.0.0-internal.4.0.0",
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@microsoft/api-extractor": "^7.34.4",
"@types/mocha": "^9.1.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/drivers/debugger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"@fluid-tools/build-cli": "^0.13.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/build-tools": "^0.13.0",
"@fluidframework/debugger-previous": "npm:@fluidframework/debugger@2.0.0-internal.3.2.0",
"@fluidframework/debugger-previous": "npm:@fluidframework/debugger@2.0.0-internal.4.0.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@microsoft/api-extractor": "^7.34.4",
"@types/mocha": "^9.1.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/drivers/driver-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"@fluid-tools/build-cli": "^0.13.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/build-tools": "^0.13.0",
"@fluidframework/driver-base-previous": "npm:@fluidframework/driver-base@2.0.0-internal.3.2.0",
"@fluidframework/driver-base-previous": "npm:@fluidframework/driver-base@2.0.0-internal.4.0.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@microsoft/api-extractor": "^7.34.4",
"@types/node": "^14.18.38",
Expand Down
2 changes: 1 addition & 1 deletion packages/drivers/driver-web-cache/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"@fluid-tools/build-cli": "^0.13.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/build-tools": "^0.13.0",
"@fluidframework/driver-web-cache-previous": "npm:@fluidframework/driver-web-cache@2.0.0-internal.3.2.0",
"@fluidframework/driver-web-cache-previous": "npm:@fluidframework/driver-web-cache@2.0.0-internal.4.0.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@microsoft/api-extractor": "^7.34.4",
"@types/jest": "22.2.3",
Expand Down
8 changes: 2 additions & 6 deletions packages/drivers/file-driver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/build-tools": "^0.13.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/file-driver-previous": "npm:@fluidframework/file-driver@2.0.0-internal.3.2.0",
"@fluidframework/file-driver-previous": "npm:@fluidframework/file-driver@2.0.0-internal.4.0.0",
"@microsoft/api-extractor": "^7.34.4",
"@types/node": "^14.18.38",
"concurrently": "^7.6.0",
Expand All @@ -58,10 +58,6 @@
"typescript": "~4.5.5"
},
"typeValidation": {
"broken": {
"ClassDeclaration_FileDocumentServiceFactory": {
"backCompat": false
}
}
"broken": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ declare function get_current_ClassDeclaration_FileDocumentServiceFactory():
declare function use_old_ClassDeclaration_FileDocumentServiceFactory(
use: TypeOnly<old.FileDocumentServiceFactory>);
use_old_ClassDeclaration_FileDocumentServiceFactory(
// @ts-expect-error compatibility expected to be broken
get_current_ClassDeclaration_FileDocumentServiceFactory());

/*
Expand Down
2 changes: 1 addition & 1 deletion packages/drivers/fluidapp-odsp-urlResolver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
},
"devDependencies": {
"@fluid-tools/build-cli": "^0.13.0",
"@fluid-tools/fluidapp-odsp-urlresolver-previous": "npm:@fluid-tools/fluidapp-odsp-urlresolver@2.0.0-internal.3.2.0",
"@fluid-tools/fluidapp-odsp-urlresolver-previous": "npm:@fluid-tools/fluidapp-odsp-urlresolver@2.0.0-internal.4.0.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/build-tools": "^0.13.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
Expand Down
8 changes: 2 additions & 6 deletions packages/drivers/local-driver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/build-tools": "^0.13.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@fluidframework/local-driver-previous": "npm:@fluidframework/local-driver@2.0.0-internal.3.2.0",
"@fluidframework/local-driver-previous": "npm:@fluidframework/local-driver@2.0.0-internal.4.0.0",
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.4.0.1 <2.0.0-internal.5.0.0",
"@microsoft/api-extractor": "^7.34.4",
"@types/jsrsasign": "^8.0.8",
Expand All @@ -104,10 +104,6 @@
"typescript": "~4.5.5"
},
"typeValidation": {
"broken": {
"ClassDeclaration_LocalDocumentServiceFactory": {
"backCompat": false
}
}
"broken": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ declare function get_current_ClassDeclaration_LocalDocumentServiceFactory():
declare function use_old_ClassDeclaration_LocalDocumentServiceFactory(
use: TypeOnly<old.LocalDocumentServiceFactory>);
use_old_ClassDeclaration_LocalDocumentServiceFactory(
// @ts-expect-error compatibility expected to be broken
get_current_ClassDeclaration_LocalDocumentServiceFactory());

/*
Expand Down
Loading