Skip to content

Commit

Permalink
build(client): Update typetests after minor release 2.12.0 (microsoft…
Browse files Browse the repository at this point in the history
…#23352)

## Description

build(client): Update typetests after minor release 2.12.0

Co-authored-by: Jatin Garg <[email protected]>
  • Loading branch information
jatgarg and Jatin Garg authored Dec 18, 2024
1 parent 0bf65b5 commit af27b58
Show file tree
Hide file tree
Showing 65 changed files with 896 additions and 740 deletions.
2 changes: 1 addition & 1 deletion azure/packages/azure-service-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
"@arethetypeswrong/cli": "^0.17.1",
"@biomejs/biome": "~1.9.3",
"@fluid-tools/build-cli": "^0.51.0",
"@fluidframework/azure-service-utils-previous": "npm:@fluidframework/azure-service-utils@2.11.0",
"@fluidframework/azure-service-utils-previous": "npm:@fluidframework/azure-service-utils@2.12.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
Expand Down
2 changes: 1 addition & 1 deletion experimental/dds/attributable-map/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.1",
"@biomejs/biome": "~1.9.3",
"@fluid-experimental/attributable-map-previous": "npm:@fluid-experimental/attributable-map@2.11.0",
"@fluid-experimental/attributable-map-previous": "npm:@fluid-experimental/attributable-map@2.12.0",
"@fluid-internal/mocha-test-setup": "workspace:~",
"@fluid-private/stochastic-test-utils": "workspace:~",
"@fluid-private/test-dds-utils": "workspace:~",
Expand Down
2 changes: 1 addition & 1 deletion packages/common/client-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.1",
"@biomejs/biome": "~1.9.3",
"@fluid-internal/client-utils-previous": "npm:@fluid-internal/client-utils@2.11.0",
"@fluid-internal/client-utils-previous": "npm:@fluid-internal/client-utils@2.12.0",
"@fluid-internal/mocha-test-setup": "workspace:~",
"@fluid-tools/build-cli": "^0.51.0",
"@fluidframework/build-common": "^2.0.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/common/container-definitions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
"@fluid-tools/build-cli": "^0.51.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/container-definitions-previous": "npm:@fluidframework/container-definitions@2.11.0",
"@fluidframework/container-definitions-previous": "npm:@fluidframework/container-definitions@2.12.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@microsoft/api-extractor": "7.47.8",
"concurrently": "^8.2.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -708,6 +708,24 @@ declare type old_as_current_for_TypeAlias_ContainerErrorTypes = requireAssignabl
*/
declare type current_as_old_for_TypeAlias_ContainerErrorTypes = requireAssignableTo<TypeOnly<current.ContainerErrorTypes>, TypeOnly<old.ContainerErrorTypes>>

/*
* Validate forward compatibility by using the old type in place of the current type.
* If this test starts failing, it indicates a change that is not forward compatible.
* To acknowledge the breaking change, add the following to package.json under
* typeValidation.broken:
* "TypeAlias_IContainerPolicies": {"forwardCompat": false}
*/
declare type old_as_current_for_TypeAlias_IContainerPolicies = requireAssignableTo<TypeOnly<old.IContainerPolicies>, TypeOnly<current.IContainerPolicies>>

/*
* Validate backward compatibility by using the current type in place of the old type.
* If this test starts failing, it indicates a change that is not backward compatible.
* To acknowledge the breaking change, add the following to package.json under
* typeValidation.broken:
* "TypeAlias_IContainerPolicies": {"backCompat": false}
*/
declare type current_as_old_for_TypeAlias_IContainerPolicies = requireAssignableTo<TypeOnly<current.IContainerPolicies>, TypeOnly<old.IContainerPolicies>>

/*
* Validate forward compatibility by using the old type in place of the current type.
* If this test starts failing, it indicates a change that is not forward compatible.
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 @@ -98,7 +98,7 @@
"@fluid-tools/build-cli": "^0.51.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/core-interfaces-previous": "npm:@fluidframework/core-interfaces@2.11.0",
"@fluidframework/core-interfaces-previous": "npm:@fluidframework/core-interfaces@2.12.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@microsoft/api-extractor": "7.47.8",
"@types/node": "^18.19.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/common/core-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
"@fluid-tools/build-cli": "^0.51.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/core-utils-previous": "npm:@fluidframework/core-utils@2.11.0",
"@fluidframework/core-utils-previous": "npm:@fluidframework/core-utils@2.12.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@microsoft/api-extractor": "7.47.8",
"@types/mocha": "^9.1.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/common/driver-definitions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
"@fluid-tools/build-cli": "^0.51.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/driver-definitions-previous": "npm:@fluidframework/driver-definitions@2.11.0",
"@fluidframework/driver-definitions-previous": "npm:@fluidframework/driver-definitions@2.12.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@microsoft/api-extractor": "7.47.8",
"concurrently": "^8.2.1",
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 @@ -115,7 +115,7 @@
"@fluid-tools/build-cli": "^0.51.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/cell-previous": "npm:@fluidframework/cell@2.11.0",
"@fluidframework/cell-previous": "npm:@fluidframework/cell@2.12.0",
"@fluidframework/container-definitions": "workspace:~",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@fluidframework/test-runtime-utils": "workspace:~",
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 @@ -133,7 +133,7 @@
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/container-definitions": "workspace:~",
"@fluidframework/counter-previous": "npm:@fluidframework/counter@2.11.0",
"@fluidframework/counter-previous": "npm:@fluidframework/counter@2.12.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@fluidframework/test-runtime-utils": "workspace:~",
"@microsoft/api-extractor": "7.47.8",
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 @@ -147,7 +147,7 @@
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/container-definitions": "workspace:~",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@fluidframework/map-previous": "npm:@fluidframework/map@2.11.0",
"@fluidframework/map-previous": "npm:@fluidframework/map@2.12.0",
"@fluidframework/test-runtime-utils": "workspace:~",
"@microsoft/api-extractor": "7.47.8",
"@types/mocha": "^9.1.1",
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 @@ -150,7 +150,7 @@
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/container-definitions": "workspace:~",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@fluidframework/matrix-previous": "npm:@fluidframework/matrix@2.11.0",
"@fluidframework/matrix-previous": "npm:@fluidframework/matrix@2.12.0",
"@fluidframework/test-runtime-utils": "workspace:~",
"@microsoft/api-extractor": "7.47.8",
"@tiny-calc/micro": "0.0.0-alpha.5",
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 @@ -156,7 +156,7 @@
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@fluidframework/merge-tree-previous": "npm:@fluidframework/merge-tree@2.11.0",
"@fluidframework/merge-tree-previous": "npm:@fluidframework/merge-tree@2.12.0",
"@fluidframework/test-runtime-utils": "workspace:~",
"@microsoft/api-extractor": "7.47.8",
"@types/diff": "^3.5.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,15 @@ declare type current_as_old_for_Function_refHasTileLabel = requireAssignableTo<T
*/
declare type current_as_old_for_Function_revertMergeTreeDeltaRevertibles = requireAssignableTo<TypeOnly<typeof current.revertMergeTreeDeltaRevertibles>, TypeOnly<typeof old.revertMergeTreeDeltaRevertibles>>

/*
* Validate backward compatibility by using the current type in place of the old type.
* If this test starts failing, it indicates a change that is not backward compatible.
* To acknowledge the breaking change, add the following to package.json under
* typeValidation.broken:
* "Function_segmentIsRemoved": {"backCompat": false}
*/
declare type current_as_old_for_Function_segmentIsRemoved = requireAssignableTo<TypeOnly<typeof current.segmentIsRemoved>, TypeOnly<typeof old.segmentIsRemoved>>

/*
* Validate forward compatibility by using the old type in place of the current type.
* If this test starts failing, it indicates a change that is not forward compatible.
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 @@ -137,7 +137,7 @@
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@fluidframework/ordered-collection-previous": "npm:@fluidframework/ordered-collection@2.11.0",
"@fluidframework/ordered-collection-previous": "npm:@fluidframework/ordered-collection@2.12.0",
"@fluidframework/test-runtime-utils": "workspace:~",
"@microsoft/api-extractor": "7.47.8",
"@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 @@ -135,7 +135,7 @@
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@fluidframework/register-collection-previous": "npm:@fluidframework/register-collection@2.11.0",
"@fluidframework/register-collection-previous": "npm:@fluidframework/register-collection@2.12.0",
"@fluidframework/test-runtime-utils": "workspace:~",
"@microsoft/api-extractor": "7.47.8",
"@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 @@ -160,7 +160,7 @@
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/container-definitions": "workspace:~",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@fluidframework/sequence-previous": "npm:@fluidframework/sequence@2.11.0",
"@fluidframework/sequence-previous": "npm:@fluidframework/sequence@2.12.0",
"@fluidframework/test-runtime-utils": "workspace:~",
"@microsoft/api-extractor": "7.47.8",
"@types/diff": "^3.5.1",
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 @@ -140,7 +140,7 @@
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@fluidframework/shared-object-base-previous": "npm:@fluidframework/shared-object-base@2.11.0",
"@fluidframework/shared-object-base-previous": "npm:@fluidframework/shared-object-base@2.12.0",
"@fluidframework/test-runtime-utils": "workspace:~",
"@microsoft/api-extractor": "7.47.8",
"@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 @@ -134,7 +134,7 @@
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/container-definitions": "workspace:~",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@fluidframework/shared-summary-block-previous": "npm:@fluidframework/shared-summary-block@2.11.0",
"@fluidframework/shared-summary-block-previous": "npm:@fluidframework/shared-summary-block@2.12.0",
"@fluidframework/test-runtime-utils": "workspace:~",
"@microsoft/api-extractor": "7.47.8",
"@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 @@ -138,7 +138,7 @@
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@fluidframework/task-manager-previous": "npm:@fluidframework/task-manager@2.11.0",
"@fluidframework/task-manager-previous": "npm:@fluidframework/task-manager@2.12.0",
"@fluidframework/test-runtime-utils": "workspace:~",
"@microsoft/api-extractor": "7.47.8",
"@types/mocha": "^9.1.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/dds/tree/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@fluidframework/test-runtime-utils": "workspace:~",
"@fluidframework/test-utils": "workspace:~",
"@fluidframework/tree-previous": "npm:@fluidframework/tree@2.11.0",
"@fluidframework/tree-previous": "npm:@fluidframework/tree@2.12.0",
"@microsoft/api-extractor": "7.47.8",
"@types/diff": "^3.5.1",
"@types/easy-table": "^0.0.32",
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 @@ -96,7 +96,7 @@
"@fluid-tools/build-cli": "^0.51.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/debugger-previous": "npm:@fluidframework/debugger@2.11.0",
"@fluidframework/debugger-previous": "npm:@fluidframework/debugger@2.12.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@microsoft/api-extractor": "7.47.8",
"@types/node": "^18.19.0",
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 @@ -113,7 +113,7 @@
"@fluid-tools/build-cli": "^0.51.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/driver-base-previous": "npm:@fluidframework/driver-base@2.11.0",
"@fluidframework/driver-base-previous": "npm:@fluidframework/driver-base@2.12.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@microsoft/api-extractor": "7.47.8",
"@types/mocha": "^9.1.1",
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 @@ -103,7 +103,7 @@
"@fluid-tools/build-cli": "^0.51.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/driver-web-cache-previous": "npm:@fluidframework/driver-web-cache@2.11.0",
"@fluidframework/driver-web-cache-previous": "npm:@fluidframework/driver-web-cache@2.12.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@microsoft/api-extractor": "7.47.8",
"@types/jest": "29.5.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/drivers/file-driver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@fluidframework/file-driver-previous": "npm:@fluidframework/file-driver@2.11.0",
"@fluidframework/file-driver-previous": "npm:@fluidframework/file-driver@2.12.0",
"@microsoft/api-extractor": "7.47.8",
"@types/node": "^18.19.0",
"concurrently": "^8.2.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/drivers/local-driver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@fluidframework/local-driver-previous": "npm:@fluidframework/local-driver@2.11.0",
"@fluidframework/local-driver-previous": "npm:@fluidframework/local-driver@2.12.0",
"@microsoft/api-extractor": "7.47.8",
"@types/jsrsasign": "^10.5.12",
"@types/mocha": "^9.1.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/drivers/odsp-driver-definitions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@fluidframework/odsp-driver-definitions-previous": "npm:@fluidframework/odsp-driver-definitions@2.11.0",
"@fluidframework/odsp-driver-definitions-previous": "npm:@fluidframework/odsp-driver-definitions@2.12.0",
"@microsoft/api-extractor": "7.47.8",
"concurrently": "^8.2.1",
"copyfiles": "^2.4.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/drivers/odsp-driver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@fluidframework/odsp-driver-previous": "npm:@fluidframework/odsp-driver@2.11.0",
"@fluidframework/odsp-driver-previous": "npm:@fluidframework/odsp-driver@2.12.0",
"@microsoft/api-extractor": "7.47.8",
"@types/mocha": "^9.1.1",
"@types/node": "^18.19.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,15 @@ declare type current_as_old_for_Function_getHashedDocumentId = requireAssignable
*/
declare type current_as_old_for_Function_getLocatorFromOdspUrl = requireAssignableTo<TypeOnly<typeof current.getLocatorFromOdspUrl>, TypeOnly<typeof old.getLocatorFromOdspUrl>>

/*
* Validate backward compatibility by using the current type in place of the old type.
* If this test starts failing, it indicates a change that is not backward compatible.
* To acknowledge the breaking change, add the following to package.json under
* typeValidation.broken:
* "Function_isOdspResolvedUrl": {"backCompat": false}
*/
declare type current_as_old_for_Function_isOdspResolvedUrl = requireAssignableTo<TypeOnly<typeof current.isOdspResolvedUrl>, TypeOnly<typeof old.isOdspResolvedUrl>>

/*
* Validate backward compatibility by using the current type in place of the old type.
* If this test starts failing, it indicates a change that is not backward compatible.
Expand Down
2 changes: 1 addition & 1 deletion packages/drivers/odsp-urlResolver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@fluidframework/odsp-urlresolver-previous": "npm:@fluidframework/odsp-urlresolver@2.11.0",
"@fluidframework/odsp-urlresolver-previous": "npm:@fluidframework/odsp-urlresolver@2.12.0",
"@microsoft/api-extractor": "7.47.8",
"@types/mocha": "^9.1.1",
"@types/node": "^18.19.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/drivers/replay-driver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@fluidframework/replay-driver-previous": "npm:@fluidframework/replay-driver@2.11.0",
"@fluidframework/replay-driver-previous": "npm:@fluidframework/replay-driver@2.12.0",
"@microsoft/api-extractor": "7.47.8",
"@types/nock": "^9.3.0",
"@types/node": "^18.19.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/drivers/routerlicious-driver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@fluidframework/routerlicious-driver-previous": "npm:@fluidframework/routerlicious-driver@2.11.0",
"@fluidframework/routerlicious-driver-previous": "npm:@fluidframework/routerlicious-driver@2.12.0",
"@microsoft/api-extractor": "7.47.8",
"@types/mocha": "^9.1.1",
"@types/nock": "^9.3.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,15 @@ import type * as current from "../../index.js";

declare type MakeUnusedImportErrorsGoAway<T> = TypeOnly<T> | MinimalType<T> | FullType<T> | typeof old | typeof current | requireAssignableTo<true, true>;

/*
* Validate backward compatibility by using the current type in place of the old type.
* If this test starts failing, it indicates a change that is not backward compatible.
* To acknowledge the breaking change, add the following to package.json under
* typeValidation.broken:
* "Function_createRouterliciousDocumentServiceFactory": {"backCompat": false}
*/
declare type current_as_old_for_Function_createRouterliciousDocumentServiceFactory = requireAssignableTo<TypeOnly<typeof current.createRouterliciousDocumentServiceFactory>, TypeOnly<typeof old.createRouterliciousDocumentServiceFactory>>

/*
* Validate forward compatibility by using the old type in place of the current type.
* If this test starts failing, it indicates a change that is not forward compatible.
Expand Down
2 changes: 1 addition & 1 deletion packages/drivers/routerlicious-urlResolver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@fluidframework/routerlicious-urlresolver-previous": "npm:@fluidframework/routerlicious-urlresolver@2.11.0",
"@fluidframework/routerlicious-urlresolver-previous": "npm:@fluidframework/routerlicious-urlresolver@2.12.0",
"@microsoft/api-extractor": "7.47.8",
"@types/mocha": "^9.1.1",
"@types/nconf": "^0.10.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/drivers/tinylicious-driver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@fluidframework/tinylicious-driver-previous": "npm:@fluidframework/tinylicious-driver@2.11.0",
"@fluidframework/tinylicious-driver-previous": "npm:@fluidframework/tinylicious-driver@2.12.0",
"@microsoft/api-extractor": "7.47.8",
"@types/jsrsasign": "^10.5.12",
"@types/mocha": "^9.1.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/framework/agent-scheduler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
"@arethetypeswrong/cli": "^0.17.1",
"@biomejs/biome": "~1.9.3",
"@fluid-tools/build-cli": "^0.51.0",
"@fluidframework/agent-scheduler-previous": "npm:@fluidframework/agent-scheduler@2.11.0",
"@fluidframework/agent-scheduler-previous": "npm:@fluidframework/agent-scheduler@2.12.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/framework/aqueduct/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
"@biomejs/biome": "~1.9.3",
"@fluid-internal/mocha-test-setup": "workspace:~",
"@fluid-tools/build-cli": "^0.51.0",
"@fluidframework/aqueduct-previous": "npm:@fluidframework/aqueduct@2.11.0",
"@fluidframework/aqueduct-previous": "npm:@fluidframework/aqueduct@2.12.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/framework/fluid-static/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.51.0",
"@fluidframework/eslint-config-fluid": "^5.6.0",
"@fluidframework/fluid-static-previous": "npm:@fluidframework/fluid-static@2.11.0",
"@fluidframework/fluid-static-previous": "npm:@fluidframework/fluid-static@2.12.0",
"@fluidframework/map": "workspace:~",
"@fluidframework/sequence": "workspace:~",
"@microsoft/api-extractor": "7.47.8",
Expand Down
Loading

0 comments on commit af27b58

Please sign in to comment.